Commit Graph

2519 Commits

Author SHA1 Message Date
endigo9740
735895c4bc Improved code block line numbers 2023-05-05 12:51:37 -05:00
Luke Hagar
0b1495c560 Update CodeBlock.css 2023-05-04 22:43:20 -05:00
Luke Hagar
4775fb6334 Update +page.svelte 2023-05-04 22:40:30 -05:00
Luke Hagar
f53f3ba9e5 Added LineNumbers Property 2023-05-04 22:29:26 -05:00
Chris Simmons
4abaf292d8 Styled webkit search cancel button (#1433) 2023-05-04 15:43:16 -05:00
Chris Simmons
9fa446c369 SVG filter browser support docs expanded (#1432) 2023-05-04 14:39:25 -05:00
Chris Simmons
524b15aa7b Implement nonce attribute to lightswitch script tag (#1430) 2023-05-04 14:24:24 -05:00
luke-hagar-sp
0d7ef4e576 Fix/avatar fallback (#1427)
* Implemented a Fallback property

The Fallback Property will allow someone to specify a default image for a user, or will fallback to the users initials on Error

* Update +page.svelte

* Update +page.svelte

* Minor updates to the fallback doc copy

---------

Co-authored-by: endigo9740 <gundamx9740@gmail.com>
2023-05-04 14:04:51 -05:00
endigo9740
9d5aa21d26 Minor typography fix 2023-05-04 13:49:26 -05:00
Chris Simmons
372653b4d9 Popup refactor (#1421)
* Popup feature rework

* Getting started added

* Doc improvements

* Popup docs improved

* Implement support for optional middlware

* List focus style improved, Tab key interaction updated

* List focus style improved

* Fixed autocomplete, expanded popup docs

* Improved hover tip

* Modified popup action update logic to be more reactive

* Additional popup doc improvements
2023-05-04 13:44:15 -05:00
Tuni-Soft
86076bcfeb AppRail improvements (#1402)
* Override tag when href is passed

* Simplify AppRailTile state when using anchor links

* Update types

* Add AppRailTile tests

* Fix types

* Open link in a new tab

* Check if selected is not undefined

* Remove unnecessary tag prop occurrences

* Reformat code

* Add AppRail test

---------

Co-authored-by: Chris Simmons <gundamx9740@gmail.com>
2023-05-04 12:49:35 -05:00
Chris Simmons
d5ab1d8d35 Added accordion width prop (#1429) 2023-05-04 11:50:19 -05:00
Chris Simmons
3452654894 Implement new Chat UI block (#1397)
* Implement new Chat UI block documentation

* ...

* Chat documentation implemented

* ...

* Flushed out the chat docs and applied feedback

* Apply opt in typography classes

* ...

* Doc corrections
2023-05-03 11:28:04 -05:00
Chris Simmons
82b064e9ae Migrate docs to opt-in typography system (#1419)
* Migrate headings to opt in system

* Blockquotes to opt in system

* Update code elements to opt in system

* Pre elements to opt in system

* KBD to opt in typography system

* Ins Del to opt in typography system

* Update Anchors to typography opt in system

* Prose styles updated for opt-in system

* Drop usage of unstyled class for doc typography
2023-05-02 10:46:27 -05:00
Hugo Korte
bb10505d19 Fixed naming convention for ModalSettings objects (#1400)
* Changed all let's in examples to const's

* Changed more let's to const's in examples
Changed let's to const's in the code where applicable

* Changed the naming of const d to const modal for modal settings objects throughout the app

* Minor change for consistency

---------

Co-authored-by: endigo9740 <gundamx9740@gmail.com>
2023-05-01 13:30:23 -05:00
Chris Simmons
cde0983491 Improve Typography System (#1374)
* Fix DocsAppBar list markup

* Implement TW Typography plugin, implement default prose styles

* Improved prose docs

* Reorg typography csss

* Update typography structure to format

* Updated typography documentation and provide migration path

* Feedback from Bart implemented

* Revert to all.css as base stylesheet

* ...

* ...
2023-05-01 12:44:03 -05:00
Rhys
b31708beb6 Update settings.ts (#1412) 2023-04-30 22:35:44 -05:00
CheesyPhoenix
80389de227 Fix: Toast position incorrect type (#1404)
* move Toast position prop jsdoc type to TS type

* add jsdoc type to toast position

* remove unnecessary space
2023-04-30 14:15:35 -05:00
Konstantinos Kostarellis
5f2689b4af Fixes TS-Error on filters.test.ts (#1405)
- TS2769: No overload matches this call

No overload matches this call.
  Overload 1 of 2, '(component: Constructor<NoirLight__SvelteComponent_>, componentOptions?: SvelteComponentOptions<NoirLight__SvelteComponent_> | undefined, renderOptions?: Omit<...> | undefined): RenderResult<...>', gave the following error.
    Argument of type 'typeof Noir__SvelteComponent_' is not assignable to parameter of type 'SvelteComponentOptions<NoirLight__SvelteComponent_> | undefined'.
      Type 'typeof Noir__SvelteComponent_' is not assignable to type 'Record<string, never>'.
        Index signature for type 'string' is missing in type 'typeof Noir__SvelteComponent_'.
  Overload 2 of 2, '(component: Constructor<NoirLight__SvelteComponent_>, componentOptions?: SvelteComponentOptions<NoirLight__SvelteComponent_> | undefined, renderOptions?: RenderOptions<...> | undefined): RenderResult<...>', gave the following error.
    Argument of type 'typeof Noir__SvelteComponent_' is not assignable to parameter of type 'SvelteComponentOptions<NoirLight__SvelteComponent_> | undefined'.ts(2769)
2023-04-30 12:04:19 -05:00
Chris Simmons
6d4fe1d706 Documentation - consistent images and example text (#1394)
* Fix Forms doc input dynamic attributes

* Imagery unified for day of dead

* ...

* Implemented Faker and generated fake data
2023-04-28 10:56:58 -05:00
te
654bdcf84f fix typo in modals docs (#1392) 2023-04-27 18:27:59 -05:00
Chris Simmons
085d8fc6e0 Implement autocomplete limit prop (#1390)
* Added autocomplete maxlength prop

* Renamed to be more semantic
2023-04-27 14:45:54 -05:00
Chris Simmons
cb37a6fa99 Fixed mislabeled drawer prop doc (#1389) 2023-04-27 14:31:34 -05:00
Chris Simmons
b056f166bc Implemented gradient variants and docs (#1388) 2023-04-27 14:15:43 -05:00
Chris Simmons
689013c2be Chore/linting and formatting (#1387)
* Prettier formatting pass

* Update vitest test cases
2023-04-27 13:11:02 -05:00
Hugo Korte
d8c05e468f Changed unnecessary let's to const's both in examples and code (#1385)
* Changed all let's in examples to const's

* Changed more let's to const's in examples
Changed let's to const's in the code where applicable
2023-04-27 11:50:26 -05:00
CokaKoala
d3ac01ac91 fixes window undefined during ssr (#1375) 2023-04-25 21:32:24 -05:00
endigo9740
df01ba8625 Merge branch 'dev' of https://github.com/skeletonlabs/skeleton into dev 2023-04-25 11:20:20 -05:00
endigo9740
1aacddce91 Version bump to v1.2.5 2023-04-25 11:20:16 -05:00
Nik
3aafc22436 Removed svelte field from package.json (#1369)
Fixes #1359
2023-04-25 10:22:01 -05:00
Chris Simmons
577bf44544 Input chip events for focus blur added (#1365) 2023-04-24 12:00:38 -05:00
Chris Simmons
e8af2f39dc Design token text fix, toast position note (#1364) 2023-04-24 11:56:31 -05:00
Bart Duisters
75a4ad8870 rename docSell to docShell (#1361) 2023-04-24 10:51:40 -05:00
Bart Duisters
5f60a1c4e1 Apply same height to scrollbars as width (#1360) 2023-04-24 10:43:14 -05:00
Nik
6598cd8040 Merge pull request #1357 from niktek/docs/update-video-in-intro
Updated to show Huntabyte's video
2023-04-24 15:04:57 +10:00
Nik
e1750e6e64 Updated to show Huntabyte's video 2023-04-24 15:02:05 +10:00
Chris Simmons
21c02da993 Set disabled state for Accordion or Item (#1353) 2023-04-21 15:47:11 -05:00
Chris Simmons
5175e277a0 Updated FAQs with import reorder info (#1351) 2023-04-21 15:30:40 -05:00
Ryan Roberts
243ccc3027 Feat/Add onInvalid hook to input chips (#1334)
* add onInvalid hook to input chips

* Modify to use dispatched event

* Small fix to on:invalid JSDocs

---------

Co-authored-by: Ryan Roberts <ryanr@cityhive.net>
Co-authored-by: endigo9740 <gundamx9740@gmail.com>
2023-04-21 12:58:18 -05:00
CokaKoala
4e983bd316 Fix: Stepper form submissions (#1333)
* on click handler is async

* added comment and better solution
2023-04-21 12:34:36 -05:00
Chris Simmons
b4c9acfe95 Master (#1348)
* Resolved font import path (#1227)

* Fixed hide scrollbar in TabGroup (#1347)

---------

Co-authored-by: Benjamin Buhler <2802675+bbuhler@users.noreply.github.com>
2023-04-21 10:50:27 -05:00
Juan Giordana
10c7ce9c6d Remove duplicate class in modal example. (#1346)
Remove duplicate class `btn-icon` in `ModalExampleImage.svelte`.
2023-04-20 10:39:45 -05:00
Luke Hagar
1d18358c27 Adjusted Example to only highlight one tile per selection (#1339) 2023-04-17 15:39:24 -05:00
Luke Hagar
041132e945 Adjusted AppShell example (#1340)
Adjusted the primary labels in the interactive examples to better represent the svelte fragments
Added a section depicting the slot usage to make it more clear how to pass through page data
2023-04-17 15:37:32 -05:00
Chris Simmons
e99897e76e Resolve closeQuery popup logic issue (#1331) 2023-04-14 14:36:29 -05:00
Chris Simmons
f402e494aa Modal component transition content issue (#1330) 2023-04-14 14:27:35 -05:00
Cucumberrbob
24dbf8c886 document cspell (#1329) 2023-04-14 14:16:54 -05:00
endigo9740
ac7b1b1a37 Remove extra pre tags on Autocomplete 2023-04-14 14:00:28 -05:00
endigo9740
65bee4d998 Autocomplete class name fix 2023-04-14 13:59:39 -05:00
endigo9740
6857bba599 Fix autocomplete demo docs 2023-04-14 13:58:40 -05:00