@placeholderco/placeholder-ui 1.0.12 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +134 -130
- package/dist/app.css +178 -0
- package/dist/bootstrap.min.css +3600 -0
- package/dist/cards/GitCard.svelte +115 -0
- package/dist/cards/GitCard.svelte.d.ts +22 -0
- package/dist/display/Avatar.svelte +29 -17
- package/dist/display/Avatar.svelte.d.ts +12 -2
- package/dist/display/LinkCollection.svelte +40 -18
- package/dist/display/LinkCollection.svelte.d.ts +9 -2
- package/dist/display/Paper.svelte +31 -19
- package/dist/display/Paper.svelte.d.ts +12 -3
- package/dist/display/alert/Alert.svelte +129 -0
- package/dist/display/alert/Alert.svelte.d.ts +15 -0
- package/dist/display/alert/AlertVariant.d.ts +1 -0
- package/dist/display/alert/AlertVariant.js +1 -0
- package/dist/display/filetree/FileTree.svelte +259 -0
- package/dist/display/filetree/FileTree.svelte.d.ts +76 -0
- package/dist/display/filetree/FileTreeItem.svelte +396 -0
- package/dist/display/filetree/FileTreeItem.svelte.d.ts +40 -0
- package/dist/display/filetree/FileTreeNode.d.ts +46 -0
- package/dist/display/filetree/FileTreeNode.js +115 -0
- package/dist/display/filetree/index.d.ts +5 -0
- package/dist/display/filetree/index.js +3 -0
- package/dist/editors/CodeMirror.svelte +306 -0
- package/dist/editors/CodeMirror.svelte.d.ts +31 -0
- package/dist/editors/tiptap/LinkActionMenu.svelte +307 -0
- package/dist/editors/tiptap/LinkActionMenu.svelte.d.ts +8 -0
- package/dist/editors/tiptap/TipTap.svelte +856 -0
- package/dist/editors/tiptap/TipTap.svelte.d.ts +54 -0
- package/dist/editors/tiptap/TipTapBubble.svelte +790 -0
- package/dist/editors/tiptap/TipTapBubble.svelte.d.ts +44 -0
- package/dist/editors/tiptap/collaboration.d.ts +55 -0
- package/dist/editors/tiptap/collaboration.js +1 -0
- package/dist/editors/tiptap/extensions/Alert.d.ts +18 -0
- package/dist/editors/tiptap/extensions/Alert.js +72 -0
- package/dist/editors/tiptap/extensions/CodeBlockEditor.d.ts +21 -0
- package/dist/editors/tiptap/extensions/CodeBlockEditor.js +326 -0
- package/dist/editors/tiptap/extensions/Div.d.ts +19 -0
- package/dist/editors/tiptap/extensions/Div.js +89 -0
- package/dist/editors/tiptap/extensions/Span.d.ts +5 -0
- package/dist/editors/tiptap/extensions/Span.js +56 -0
- package/dist/editors/tiptap/extensions/codeBlockEditor.css +236 -0
- package/dist/editors/tiptap/extensions/codeBlockLanguages.d.ts +17 -0
- package/dist/editors/tiptap/extensions/codeBlockLanguages.js +124 -0
- package/dist/editors/tiptap/extensions/index.d.ts +7 -0
- package/dist/editors/tiptap/extensions/index.js +5 -0
- package/dist/editors/tiptap/toolbar/AlertButton.svelte +261 -0
- package/dist/editors/tiptap/toolbar/AlertButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/AlignCenterButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/AlignCenterButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/AlignJustifyButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/AlignJustifyButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/AlignLeftButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/AlignLeftButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/AlignRightButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/AlignRightButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/BoldButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/BoldButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/BulletListButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/BulletListButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/CodeBlockButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/CodeBlockButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/CodeButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/CodeButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/ColorButton.svelte +299 -0
- package/dist/editors/tiptap/toolbar/ColorButton.svelte.d.ts +20 -0
- package/dist/editors/tiptap/toolbar/DocumentButton.svelte +58 -0
- package/dist/editors/tiptap/toolbar/DocumentButton.svelte.d.ts +9 -0
- package/dist/editors/tiptap/toolbar/HeadingButton.svelte +30 -0
- package/dist/editors/tiptap/toolbar/HeadingButton.svelte.d.ts +8 -0
- package/dist/editors/tiptap/toolbar/HtmlButton.svelte +68 -0
- package/dist/editors/tiptap/toolbar/HtmlButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/ImageButton.svelte +54 -0
- package/dist/editors/tiptap/toolbar/ImageButton.svelte.d.ts +8 -0
- package/dist/editors/tiptap/toolbar/ItalicButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/ItalicButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/LinkButton.svelte +257 -0
- package/dist/editors/tiptap/toolbar/LinkButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/OrderedListButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/OrderedListButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/RedoButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/RedoButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/StrikethroughButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/StrikethroughButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/SubscriptButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/SubscriptButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/SuperscriptButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/SuperscriptButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/TableButton.svelte +258 -0
- package/dist/editors/tiptap/toolbar/TableButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/ToolbarButton.svelte +84 -0
- package/dist/editors/tiptap/toolbar/ToolbarButton.svelte.d.ts +10 -0
- package/dist/editors/tiptap/toolbar/UnderlineButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/UnderlineButton.svelte.d.ts +7 -0
- package/dist/editors/tiptap/toolbar/UndoButton.svelte +18 -0
- package/dist/editors/tiptap/toolbar/UndoButton.svelte.d.ts +7 -0
- package/dist/form/Autocomplete.svelte +86 -135
- package/dist/form/Autocomplete.svelte.d.ts +6 -8
- package/dist/form/AutocompleteMulti.svelte +385 -227
- package/dist/form/AutocompleteMulti.svelte.d.ts +59 -10
- package/dist/form/Checkbox.svelte +59 -54
- package/dist/form/Checkbox.svelte.d.ts +14 -5
- package/dist/form/Chips.svelte +29 -13
- package/dist/form/Chips.svelte.d.ts +16 -2
- package/dist/form/ComboBox.svelte +30 -20
- package/dist/form/ComboBox.svelte.d.ts +1 -1
- package/dist/form/ComboBoxItemBuilder.svelte +161 -188
- package/dist/form/ComboBoxItemBuilder.svelte.d.ts +19 -2
- package/dist/form/ComboBoxMulti.svelte +38 -24
- package/dist/form/ComboBoxMulti.svelte.d.ts +1 -1
- package/dist/form/CronBuilder.svelte +84 -67
- package/dist/form/CronBuilder.svelte.d.ts +16 -3
- package/dist/form/DatePicker.svelte +148 -195
- package/dist/form/DateRangePicker.svelte +101 -98
- package/dist/form/DateTimePicker.svelte +167 -208
- package/dist/form/DateTimePicker.svelte.d.ts +10 -2
- package/dist/form/FormGroup.svelte +33 -10
- package/dist/form/FormGroup.svelte.d.ts +12 -2
- package/dist/form/Number.svelte +70 -47
- package/dist/form/Number.svelte.d.ts +36 -6
- package/dist/form/Radio.svelte +18 -18
- package/dist/form/RadioGroup.svelte +23 -12
- package/dist/form/RadioGroup.svelte.d.ts +13 -2
- package/dist/form/SegmentedControl.svelte +76 -56
- package/dist/form/SegmentedControl.svelte.d.ts +9 -4
- package/dist/form/Select.svelte +150 -233
- package/dist/form/Select.svelte.d.ts +29 -5
- package/dist/form/SelectMulti.svelte +163 -277
- package/dist/form/SelectMulti.svelte.d.ts +36 -7
- package/dist/form/Slider.svelte +183 -269
- package/dist/form/Slider.svelte.d.ts +32 -17
- package/dist/form/StringArrayBuilder.svelte +249 -0
- package/dist/form/StringArrayBuilder.svelte.d.ts +15 -0
- package/dist/form/Switch.svelte +164 -106
- package/dist/form/Switch.svelte.d.ts +22 -3
- package/dist/form/TextArea.svelte +49 -29
- package/dist/form/TextArea.svelte.d.ts +23 -3
- package/dist/form/Textbox.svelte +69 -68
- package/dist/form/Textbox.svelte.d.ts +32 -4
- package/dist/form/TimePicker.svelte +42 -47
- package/dist/form/TimePicker.svelte.d.ts +12 -2
- package/dist/form/comboBoxCore.svelte.d.ts +99 -0
- package/dist/form/comboBoxCore.svelte.js +243 -0
- package/dist/icon/Icon.svelte +8 -3
- package/dist/icon/Icon.svelte.d.ts +8 -3
- package/dist/icon/file-type-bmp.svg +1 -0
- package/dist/icon/file-type-csv.svg +1 -0
- package/dist/icon/file-type-doc.svg +1 -0
- package/dist/icon/file-type-docx.svg +1 -0
- package/dist/icon/file-type-jpg.svg +1 -0
- package/dist/icon/file-type-pdf.svg +1 -0
- package/dist/icon/file-type-png.svg +1 -0
- package/dist/icon/file-type-ppt.svg +1 -0
- package/dist/icon/file-type-svg.svg +1 -0
- package/dist/icon/file-type-txt.svg +1 -0
- package/dist/icon/file-type-xls.svg +1 -0
- package/dist/icon/file-type-zip.svg +1 -0
- package/dist/icon/index.d.ts +166 -151
- package/dist/icon/index.js +166 -152
- package/dist/icon/logo-placeholder.svg +6 -0
- package/dist/icon/source-code.svg +1 -0
- package/dist/icon/sun-moon.svg +1 -0
- package/dist/icon/table.svg +6 -0
- package/dist/index.d.ts +87 -26
- package/dist/index.js +25 -28
- package/dist/layout/AppShell.svelte +12 -162
- package/dist/layout/AppShell.svelte.d.ts +6 -27
- package/dist/layout/CustomNavbar.svelte +9 -7
- package/dist/layout/CustomNavbar.svelte.d.ts +4 -2
- package/dist/layout/Navbar.svelte +161 -129
- package/dist/layout/Navbar.svelte.d.ts +29 -15
- package/dist/layout/NavbarItemDisplay.svelte +2 -2
- package/dist/layout/NavbarItemView.svelte +182 -0
- package/dist/layout/NavbarItemView.svelte.d.ts +10 -0
- package/dist/layout/Sidenav.svelte +280 -341
- package/dist/layout/Sidenav.svelte.d.ts +36 -4
- package/dist/models/ComboBoxItem.d.ts +2 -0
- package/dist/models/Employee.d.ts +53 -0
- package/dist/models/Employee.js +23 -0
- package/dist/models/Hyperlink.d.ts +3 -1
- package/dist/models/LinkCollectionItem.d.ts +3 -1
- package/dist/models/NavbarItem.d.ts +6 -2
- package/dist/theme.svelte.d.ts +0 -1
- package/dist/theme.svelte.js +46 -58
- package/dist/ui/Accordion.svelte +81 -242
- package/dist/ui/Accordion.svelte.d.ts +37 -14
- package/dist/ui/AccordionItem.svelte +303 -0
- package/dist/ui/AccordionItem.svelte.d.ts +21 -0
- package/dist/ui/ActionIcon.svelte +25 -21
- package/dist/ui/ActionIcon.svelte.d.ts +15 -2
- package/dist/ui/Badge.svelte +163 -171
- package/dist/ui/Badge.svelte.d.ts +13 -5
- package/dist/ui/Button.svelte +178 -205
- package/dist/ui/Button.svelte.d.ts +19 -2
- package/dist/ui/ButtonVariant.d.ts +15 -1
- package/dist/ui/ContextMenu.svelte +146 -0
- package/dist/ui/ContextMenu.svelte.d.ts +37 -0
- package/dist/ui/ContextMenuList.svelte +188 -0
- package/dist/ui/ContextMenuList.svelte.d.ts +12 -0
- package/dist/ui/Dialog.svelte +183 -111
- package/dist/ui/Dialog.svelte.d.ts +21 -4
- package/dist/ui/Drawer.svelte +237 -184
- package/dist/ui/Drawer.svelte.d.ts +20 -2
- package/dist/ui/Dropdown.svelte +24 -14
- package/dist/ui/Dropdown.svelte.d.ts +11 -2
- package/dist/ui/Dropzone.svelte +159 -57
- package/dist/ui/Dropzone.svelte.d.ts +29 -2
- package/dist/ui/Link.svelte +12 -4
- package/dist/ui/Link.svelte.d.ts +8 -2
- package/dist/ui/Loader.svelte +23 -18
- package/dist/ui/Loader.svelte.d.ts +5 -2
- package/dist/ui/Logo.svelte +37 -0
- package/dist/ui/Logo.svelte.d.ts +16 -0
- package/dist/ui/MultiSortable.svelte +287 -0
- package/dist/ui/MultiSortable.svelte.d.ts +50 -0
- package/dist/ui/Pagination.svelte +15 -9
- package/dist/ui/Pagination.svelte.d.ts +6 -2
- package/dist/ui/Popover.svelte +43 -65
- package/dist/ui/Popover.svelte.d.ts +14 -5
- package/dist/ui/ProgressBar.svelte +28 -30
- package/dist/ui/ProgressBarVariant.d.ts +7 -1
- package/dist/ui/SegmentedControl.svelte +0 -0
- package/dist/ui/SegmentedControl.svelte.d.ts +26 -0
- package/dist/ui/Sortable.svelte +163 -0
- package/dist/ui/Sortable.svelte.d.ts +47 -0
- package/dist/ui/Table.svelte +383 -80
- package/dist/ui/Table.svelte.d.ts +43 -2
- package/dist/ui/Tabs.svelte +22 -18
- package/dist/ui/Tabs.svelte.d.ts +6 -2
- package/dist/ui/ThemeSwitcher.svelte +26 -7
- package/dist/ui/ThemeSwitcher.svelte.d.ts +4 -2
- package/dist/ui/Tooltip.svelte +312 -180
- package/dist/ui/Tooltip.svelte.d.ts +4 -3
- package/dist/uiTheme.svelte.d.ts +86 -0
- package/dist/uiTheme.svelte.js +214 -0
- package/dist/util/DateFunctions.js +1 -1
- package/dist/util/DragDrop.d.ts +50 -0
- package/dist/util/DragDrop.js +154 -0
- package/dist/util/NavigateTo.js +2 -2
- package/dist/util/dayjs.d.ts +4 -0
- package/dist/util/dayjs.js +15 -0
- package/package.json +66 -26
- package/dist/display/Alert.svelte +0 -179
- package/dist/display/Alert.svelte.d.ts +0 -13
- package/dist/form/FileInput.svelte +0 -235
- package/dist/form/FileInput.svelte.d.ts +0 -23
- package/dist/form/PasswordInput.svelte +0 -253
- package/dist/form/PasswordInput.svelte.d.ts +0 -34
- package/dist/form/Rating.svelte +0 -235
- package/dist/form/Rating.svelte.d.ts +0 -21
- package/dist/styles/components.css +0 -199
- package/dist/styles/dark.css +0 -146
- package/dist/styles/index.css +0 -116
- package/dist/styles/reset.css +0 -110
- package/dist/styles/semantic.css +0 -86
- package/dist/styles/tokens.css +0 -203
- package/dist/styles/utilities.css +0 -523
- package/dist/ui/Breadcrumbs.svelte +0 -131
- package/dist/ui/Breadcrumbs.svelte.d.ts +0 -16
- package/dist/ui/LoadingOverlay.svelte +0 -53
- package/dist/ui/LoadingOverlay.svelte.d.ts +0 -11
- package/dist/ui/Progress.svelte +0 -191
- package/dist/ui/Progress.svelte.d.ts +0 -15
- package/dist/ui/RingProgress.svelte +0 -141
- package/dist/ui/RingProgress.svelte.d.ts +0 -18
- package/dist/ui/Skeleton.svelte +0 -85
- package/dist/ui/Skeleton.svelte.d.ts +0 -12
- package/dist/ui/Stepper.svelte +0 -355
- package/dist/ui/Stepper.svelte.d.ts +0 -24
- package/dist/ui/Timeline.svelte +0 -225
- package/dist/ui/Timeline.svelte.d.ts +0 -23
- /package/dist/{actions → util}/ClickOutside.d.ts +0 -0
- /package/dist/{actions → util}/ClickOutside.js +0 -0
- /package/dist/{transitions → util}/Transitions.d.ts +0 -0
- /package/dist/{transitions → util}/Transitions.js +0 -0
package/dist/icon/index.js
CHANGED
|
@@ -1,152 +1,166 @@
|
|
|
1
|
-
export { default as Icon } from
|
|
2
|
-
export { default as iconAlertOctagon } from
|
|
3
|
-
export { default as iconAlertTriangle } from
|
|
4
|
-
export { default as iconAlignCenter } from
|
|
5
|
-
export { default as iconAlignJustified } from
|
|
6
|
-
export { default as iconAlignLeft } from
|
|
7
|
-
export { default as iconAlignRight } from
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as
|
|
13
|
-
export { default as
|
|
14
|
-
export { default as
|
|
15
|
-
export { default as
|
|
16
|
-
export { default as
|
|
17
|
-
export { default as
|
|
18
|
-
export { default as
|
|
19
|
-
export { default as
|
|
20
|
-
export { default as
|
|
21
|
-
export { default as
|
|
22
|
-
export { default as
|
|
23
|
-
export { default as
|
|
24
|
-
export { default as
|
|
25
|
-
export { default as
|
|
26
|
-
export { default as
|
|
27
|
-
export { default as
|
|
28
|
-
export { default as
|
|
29
|
-
export { default as
|
|
30
|
-
export { default as
|
|
31
|
-
export { default as
|
|
32
|
-
export { default as
|
|
33
|
-
export { default as
|
|
34
|
-
export { default as
|
|
35
|
-
export { default as
|
|
36
|
-
export { default as
|
|
37
|
-
export { default as
|
|
38
|
-
export { default as
|
|
39
|
-
export { default as
|
|
40
|
-
export { default as
|
|
41
|
-
export { default as
|
|
42
|
-
export { default as
|
|
43
|
-
export { default as
|
|
44
|
-
export { default as
|
|
45
|
-
export { default as
|
|
46
|
-
export { default as
|
|
47
|
-
export { default as
|
|
48
|
-
export { default as
|
|
49
|
-
export { default as
|
|
50
|
-
export { default as
|
|
51
|
-
export { default as
|
|
52
|
-
export { default as
|
|
53
|
-
export { default as
|
|
54
|
-
export { default as
|
|
55
|
-
export { default as
|
|
56
|
-
export { default as
|
|
57
|
-
export { default as
|
|
58
|
-
export { default as
|
|
59
|
-
export { default as
|
|
60
|
-
export { default as
|
|
61
|
-
export { default as
|
|
62
|
-
export { default as
|
|
63
|
-
export { default as
|
|
64
|
-
export { default as
|
|
65
|
-
export { default as
|
|
66
|
-
export { default as
|
|
67
|
-
export { default as
|
|
68
|
-
export { default as
|
|
69
|
-
export { default as
|
|
70
|
-
export { default as
|
|
71
|
-
export { default as
|
|
72
|
-
export { default as
|
|
73
|
-
export { default as
|
|
74
|
-
export { default as
|
|
75
|
-
export { default as
|
|
76
|
-
export { default as
|
|
77
|
-
export { default as
|
|
78
|
-
export { default as
|
|
79
|
-
export { default as
|
|
80
|
-
export { default as
|
|
81
|
-
export { default as
|
|
82
|
-
export { default as
|
|
83
|
-
export { default as
|
|
84
|
-
export { default as
|
|
85
|
-
export { default as
|
|
86
|
-
export { default as
|
|
87
|
-
export { default as
|
|
88
|
-
export { default as
|
|
89
|
-
export { default as
|
|
90
|
-
export { default as
|
|
91
|
-
export { default as
|
|
92
|
-
export { default as
|
|
93
|
-
export { default as
|
|
94
|
-
export { default as
|
|
95
|
-
|
|
96
|
-
export { default as
|
|
97
|
-
export { default as
|
|
98
|
-
export { default as
|
|
99
|
-
export { default as
|
|
100
|
-
export { default as
|
|
101
|
-
export { default as
|
|
102
|
-
export { default as
|
|
103
|
-
export { default as
|
|
104
|
-
export { default as
|
|
105
|
-
export { default as
|
|
106
|
-
export { default as
|
|
107
|
-
export { default as
|
|
108
|
-
export { default as
|
|
109
|
-
export { default as
|
|
110
|
-
export { default as
|
|
111
|
-
export { default as
|
|
112
|
-
export { default as
|
|
113
|
-
export { default as
|
|
114
|
-
export { default as
|
|
115
|
-
export { default as
|
|
116
|
-
export { default as
|
|
117
|
-
export { default as
|
|
118
|
-
export { default as
|
|
119
|
-
export { default as
|
|
120
|
-
export { default as
|
|
121
|
-
export { default as
|
|
122
|
-
export { default as
|
|
123
|
-
export { default as
|
|
124
|
-
export { default as
|
|
125
|
-
export { default as
|
|
126
|
-
export { default as
|
|
127
|
-
export { default as
|
|
128
|
-
export { default as
|
|
129
|
-
export { default as
|
|
130
|
-
export { default as
|
|
131
|
-
export { default as
|
|
132
|
-
export { default as
|
|
133
|
-
export { default as
|
|
134
|
-
export { default as
|
|
135
|
-
export { default as
|
|
136
|
-
export { default as
|
|
137
|
-
export { default as
|
|
138
|
-
export { default as
|
|
139
|
-
export { default as
|
|
140
|
-
export { default as
|
|
141
|
-
export { default as
|
|
142
|
-
export { default as
|
|
143
|
-
export { default as
|
|
144
|
-
export { default as
|
|
145
|
-
export { default as
|
|
146
|
-
export { default as
|
|
147
|
-
export { default as
|
|
148
|
-
export { default as
|
|
149
|
-
export { default as
|
|
150
|
-
export { default as
|
|
151
|
-
export { default as
|
|
152
|
-
export { default as
|
|
1
|
+
export { default as Icon } from './Icon.svelte';
|
|
2
|
+
export { default as iconAlertOctagon } from './alert-octagon.svg?raw';
|
|
3
|
+
export { default as iconAlertTriangle } from './alert-triangle.svg?raw';
|
|
4
|
+
export { default as iconAlignCenter } from './align-center.svg?raw';
|
|
5
|
+
export { default as iconAlignJustified } from './align-justified.svg?raw';
|
|
6
|
+
export { default as iconAlignLeft } from './align-left.svg?raw';
|
|
7
|
+
export { default as iconAlignRight } from './align-right.svg?raw';
|
|
8
|
+
export { default as iconArchive } from './archive.svg?raw';
|
|
9
|
+
export { default as iconArrowBackUp } from './arrow-back-up.svg?raw';
|
|
10
|
+
export { default as iconArrowDown } from './arrow-down.svg?raw';
|
|
11
|
+
export { default as iconArrowForwardUp } from './arrow-forward-up.svg?raw';
|
|
12
|
+
export { default as iconArrowLeft } from './arrow-left.svg?raw';
|
|
13
|
+
export { default as iconArrowRight } from './arrow-right.svg?raw';
|
|
14
|
+
export { default as iconArrowsDiff } from './arrows-diff.svg?raw';
|
|
15
|
+
export { default as iconArrowsMove } from './arrows-move.svg?raw';
|
|
16
|
+
export { default as iconArrowsSort } from './arrows-sort.svg?raw';
|
|
17
|
+
export { default as iconArrowUp } from './arrow-up.svg?raw';
|
|
18
|
+
export { default as iconAt } from './at.svg?raw';
|
|
19
|
+
export { default as iconBell } from './bell.svg?raw';
|
|
20
|
+
export { default as iconBold } from './bold.svg?raw';
|
|
21
|
+
export { default as iconBookmark } from './bookmark.svg?raw';
|
|
22
|
+
export { default as iconCalendar } from './calendar.svg?raw';
|
|
23
|
+
export { default as iconCamera } from './camera.svg?raw';
|
|
24
|
+
export { default as iconChartBar } from './chart-bar.svg?raw';
|
|
25
|
+
export { default as iconChartLine } from './chart-line.svg?raw';
|
|
26
|
+
export { default as iconChartPie } from './chart-pie.svg?raw';
|
|
27
|
+
export { default as iconCheck } from './check.svg?raw';
|
|
28
|
+
export { default as iconCheckbox } from './checkbox.svg?raw';
|
|
29
|
+
export { default as iconChecklist } from './checklist.svg?raw';
|
|
30
|
+
export { default as iconChevronDown } from './chevron-down.svg?raw';
|
|
31
|
+
export { default as iconChevronLeft } from './chevron-left.svg?raw';
|
|
32
|
+
export { default as iconChevronRight } from './chevron-right.svg?raw';
|
|
33
|
+
export { default as iconChevronUp } from './chevron-up.svg?raw';
|
|
34
|
+
export { default as iconCircleCheck } from './circle-check.svg?raw';
|
|
35
|
+
export { default as iconCircleX } from './circle-x.svg?raw';
|
|
36
|
+
export { default as iconClipboard } from './clipboard.svg?raw';
|
|
37
|
+
export { default as iconClipboardCheck } from './clipboard-check.svg?raw';
|
|
38
|
+
export { default as iconClock } from './clock.svg?raw';
|
|
39
|
+
export { default as iconCloudDownload } from './cloud-download.svg?raw';
|
|
40
|
+
export { default as iconCloudUpload } from './cloud-upload.svg?raw';
|
|
41
|
+
export { default as iconCode } from './code.svg?raw';
|
|
42
|
+
export { default as iconCopy } from './copy.svg?raw';
|
|
43
|
+
export { default as iconCreditCard } from './credit-card.svg?raw';
|
|
44
|
+
export { default as iconCubeSend } from './cube-send.svg?raw';
|
|
45
|
+
export { default as iconDeviceDesktop } from './device-desktop.svg?raw';
|
|
46
|
+
export { default as iconDeviceFloppy } from './device-floppy.svg?raw';
|
|
47
|
+
export { default as iconDots } from './dots.svg?raw';
|
|
48
|
+
export { default as iconDotsVertical } from './dots-vertical.svg?raw';
|
|
49
|
+
export { default as iconDownload } from './download.svg?raw';
|
|
50
|
+
export { default as iconEdit } from './edit.svg?raw';
|
|
51
|
+
export { default as iconExternalLink } from './external-link.svg?raw';
|
|
52
|
+
export { default as iconEye } from './eye.svg?raw';
|
|
53
|
+
export { default as iconEyeOff } from './eye-off.svg?raw';
|
|
54
|
+
export { default as iconFile } from './file.svg?raw';
|
|
55
|
+
export { default as iconFileIsr } from './file-isr.svg?raw';
|
|
56
|
+
export { default as iconFilePlus } from './file-plus.svg?raw';
|
|
57
|
+
export { default as iconFileReport } from './file-report.svg?raw';
|
|
58
|
+
export { default as iconFileTypeBmp } from './file-type-bmp.svg?raw';
|
|
59
|
+
export { default as iconFileTypeCsv } from './file-type-csv.svg?raw';
|
|
60
|
+
export { default as iconFileTypeDoc } from './file-type-doc.svg?raw';
|
|
61
|
+
export { default as iconFileTypeDocx } from './file-type-docx.svg?raw';
|
|
62
|
+
export { default as iconFileTypeJpg } from './file-type-jpg.svg?raw';
|
|
63
|
+
export { default as iconFileTypePdf } from './file-type-pdf.svg?raw';
|
|
64
|
+
export { default as iconFileTypePng } from './file-type-png.svg?raw';
|
|
65
|
+
export { default as iconFileTypePpt } from './file-type-ppt.svg?raw';
|
|
66
|
+
export { default as iconFileTypeSvg } from './file-type-svg.svg?raw';
|
|
67
|
+
export { default as iconFileTypeTxt } from './file-type-txt.svg?raw';
|
|
68
|
+
export { default as iconFileTypeXls } from './file-type-xls.svg?raw';
|
|
69
|
+
export { default as iconFileTypeZip } from './file-type-zip.svg?raw';
|
|
70
|
+
export { default as iconFilter } from './filter.svg?raw';
|
|
71
|
+
export { default as iconFingerprint } from './fingerprint.svg?raw';
|
|
72
|
+
export { default as iconFlag } from './flag.svg?raw';
|
|
73
|
+
export { default as iconFolder } from './folder.svg?raw';
|
|
74
|
+
export { default as iconFolderPlus } from './folder-plus.svg?raw';
|
|
75
|
+
export { default as iconFolderShare } from './folder-share.svg?raw';
|
|
76
|
+
export { default as iconGripHorizontal } from './grip-horizontal.svg?raw';
|
|
77
|
+
export { default as iconGripVertical } from './grip-vertical.svg?raw';
|
|
78
|
+
export { default as iconH1 } from './h-1.svg?raw';
|
|
79
|
+
export { default as iconH2 } from './h-2.svg?raw';
|
|
80
|
+
export { default as iconH3 } from './h-3.svg?raw';
|
|
81
|
+
export { default as iconH4 } from './h-4.svg?raw';
|
|
82
|
+
export { default as iconH5 } from './h-5.svg?raw';
|
|
83
|
+
export { default as iconH6 } from './h-6.svg?raw';
|
|
84
|
+
export { default as iconHamburger } from './hamburger.svg?raw';
|
|
85
|
+
export { default as iconHeading } from './heading.svg?raw';
|
|
86
|
+
export { default as iconHeart } from './heart.svg?raw';
|
|
87
|
+
export { default as iconHelp } from './help.svg?raw';
|
|
88
|
+
export { default as iconHistory } from './history.svg?raw';
|
|
89
|
+
export { default as iconHome } from './home.svg?raw';
|
|
90
|
+
export { default as iconInfoCircle } from './info-circle.svg?raw';
|
|
91
|
+
export { default as iconItalic } from './italic.svg?raw';
|
|
92
|
+
export { default as iconKey } from './key.svg?raw';
|
|
93
|
+
export { default as iconLayoutSidebarLeftCollapse } from './layout-sidebar-left-collapse.svg?raw';
|
|
94
|
+
export { default as iconLayoutSidebarLeftExpand } from './layout-sidebar-left-expand.svg?raw';
|
|
95
|
+
export { default as iconLink } from './link.svg?raw';
|
|
96
|
+
export { default as iconList } from './list.svg?raw';
|
|
97
|
+
export { default as iconListCheck } from './list-check.svg?raw';
|
|
98
|
+
export { default as iconListNumbers } from './list-numbers.svg?raw';
|
|
99
|
+
export { default as iconLoader } from './loader.svg?raw';
|
|
100
|
+
export { default as iconLock } from './lock.svg?raw';
|
|
101
|
+
export { default as iconLockOpen } from './lock-open.svg?raw';
|
|
102
|
+
export { default as iconLogin } from './login.svg?raw';
|
|
103
|
+
export { default as iconLogout } from './logout.svg?raw';
|
|
104
|
+
export { default as iconMail } from './mail.svg?raw';
|
|
105
|
+
export { default as iconMapPin } from './map-pin.svg?raw';
|
|
106
|
+
export { default as iconMaximize } from './maximize.svg?raw';
|
|
107
|
+
export { default as iconMessageCircle } from './message-circle.svg?raw';
|
|
108
|
+
export { default as iconMicrophone } from './microphone.svg?raw';
|
|
109
|
+
export { default as iconMinimize } from './minimize.svg?raw';
|
|
110
|
+
export { default as iconMoon } from './moon.svg?raw';
|
|
111
|
+
export { default as iconNote } from './note.svg?raw';
|
|
112
|
+
export { default as iconNotes } from './notes.svg?raw';
|
|
113
|
+
export { default as iconPalette } from './palette.svg?raw';
|
|
114
|
+
export { default as iconPaperclip } from './paperclip.svg?raw';
|
|
115
|
+
export { default as iconPassword } from './password.svg?raw';
|
|
116
|
+
export { default as iconPhone } from './phone.svg?raw';
|
|
117
|
+
export { default as iconPhoto } from './photo.svg?raw';
|
|
118
|
+
export { default as iconPhotoUp } from './photo-up.svg?raw';
|
|
119
|
+
export { default as iconPlaceholder } from './placeholder.svg?raw';
|
|
120
|
+
export { default as iconPlayerPause } from './player-pause.svg?raw';
|
|
121
|
+
export { default as iconPlayerPlay } from './player-play.svg?raw';
|
|
122
|
+
export { default as iconPlayerStop } from './player-stop.svg?raw';
|
|
123
|
+
export { default as iconPlus } from './plus.svg?raw';
|
|
124
|
+
export { default as iconPrinter } from './printer.svg?raw';
|
|
125
|
+
export { default as iconQrcode } from './qrcode.svg?raw';
|
|
126
|
+
export { default as iconRefresh } from './refresh.svg?raw';
|
|
127
|
+
export { default as iconReorder } from './reorder.svg?raw';
|
|
128
|
+
export { default as iconSearch } from './search.svg?raw';
|
|
129
|
+
export { default as iconSelector } from './selector.svg?raw';
|
|
130
|
+
export { default as iconSend } from './send.svg?raw';
|
|
131
|
+
export { default as iconSettings } from './settings.svg?raw';
|
|
132
|
+
export { default as iconShare } from './share.svg?raw';
|
|
133
|
+
export { default as iconShieldLockFilled } from './shield-lock-filled.svg?raw';
|
|
134
|
+
export { default as iconShoppingCart } from './shopping-cart.svg?raw';
|
|
135
|
+
export { default as iconSortAscending } from './sort-ascending.svg?raw';
|
|
136
|
+
export { default as iconSortDescending } from './sort-descending.svg?raw';
|
|
137
|
+
export { default as iconSourceCode } from './source-code.svg?raw';
|
|
138
|
+
export { default as iconSquareArrowRight } from './square-arrow-right.svg?raw';
|
|
139
|
+
export { default as iconStar } from './star.svg?raw';
|
|
140
|
+
export { default as iconStrikethrough } from './strikethrough.svg?raw';
|
|
141
|
+
export { default as iconSubscript } from './subscript.svg?raw';
|
|
142
|
+
export { default as iconSun } from './sun.svg?raw';
|
|
143
|
+
export { default as iconSunMoon } from './sun-moon.svg?raw';
|
|
144
|
+
export { default as iconSuperscript } from './superscript.svg?raw';
|
|
145
|
+
export { default as iconTable } from './table.svg?raw';
|
|
146
|
+
export { default as iconTag } from './tag.svg?raw';
|
|
147
|
+
export { default as iconThumbDown } from './thumb-down.svg?raw';
|
|
148
|
+
export { default as iconThumbUp } from './thumb-up.svg?raw';
|
|
149
|
+
export { default as iconTrash } from './trash.svg?raw';
|
|
150
|
+
export { default as iconTrendingDown } from './trending-down.svg?raw';
|
|
151
|
+
export { default as iconTrendingUp } from './trending-up.svg?raw';
|
|
152
|
+
export { default as iconUnderline } from './underline.svg?raw';
|
|
153
|
+
export { default as iconUpload } from './upload.svg?raw';
|
|
154
|
+
export { default as iconUser } from './user.svg?raw';
|
|
155
|
+
export { default as iconUserCheck } from './user-check.svg?raw';
|
|
156
|
+
export { default as iconUserDown } from './user-down.svg?raw';
|
|
157
|
+
export { default as iconUserGroup } from './user-group.svg?raw';
|
|
158
|
+
export { default as iconUserPlus } from './user-plus.svg?raw';
|
|
159
|
+
export { default as iconUserSearch } from './user-search.svg?raw';
|
|
160
|
+
export { default as iconVolume } from './volume.svg?raw';
|
|
161
|
+
export { default as iconVolumeOff } from './volume-off.svg?raw';
|
|
162
|
+
export { default as iconWifi } from './wifi.svg?raw';
|
|
163
|
+
export { default as iconWorld } from './world.svg?raw';
|
|
164
|
+
export { default as iconX } from './x.svg?raw';
|
|
165
|
+
export { default as iconZoomIn } from './zoom-in.svg?raw';
|
|
166
|
+
export { default as iconZoomOut } from './zoom-out.svg?raw';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" height="16" viewBox="0 0 140 20" width="112">
|
|
2
|
+
<rect x="0" y="0" width="20" height="20" rx="5"/>
|
|
3
|
+
<rect x="24" y="0" width="20" height="20" rx="5" opacity="0.6"/>
|
|
4
|
+
<rect x="48" y="0" width="20" height="20" rx="5" opacity="0.3"/>
|
|
5
|
+
<text x="76" y="15.5" font-family="ui-sans-serif, system-ui, sans-serif" font-size="15" font-weight="700" letter-spacing="0.5">Logo</text>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-source-code"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-5" /><path d="M6 5l-2 2l2 2" /><path d="M10 9l2 -2l-2 -2" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-sun-moon"><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M9.173 14.83a4 4 0 1 1 5.657 -5.657" /><path d="M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914" /><path d="M3 12h1" /><path d="M12 3v1" /><path d="M5.6 5.6l.7 .7" /><path d="M3 21l18 -18" /></svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-table">
|
|
2
|
+
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
|
3
|
+
<path d="M3 5a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" />
|
|
4
|
+
<path d="M3 10h18" />
|
|
5
|
+
<path d="M10 3v18" />
|
|
6
|
+
</svg>
|
package/dist/index.d.ts
CHANGED
|
@@ -1,82 +1,143 @@
|
|
|
1
|
+
export { default as Accordion } from './ui/Accordion.svelte';
|
|
2
|
+
export type { AccordionProps, AccordionContext, AccordionTitleContext, AccordionSize } from './ui/Accordion.svelte';
|
|
3
|
+
export { default as AccordionItem } from './ui/AccordionItem.svelte';
|
|
4
|
+
export type { AccordionItemProps } from './ui/AccordionItem.svelte';
|
|
1
5
|
export { default as Button } from './ui/Button.svelte';
|
|
6
|
+
export type { ButtonProps } from './ui/Button.svelte';
|
|
2
7
|
export { default as ActionIcon } from './ui/ActionIcon.svelte';
|
|
8
|
+
export type { ActionIconProps } from './ui/ActionIcon.svelte';
|
|
3
9
|
export { default as Badge } from './ui/Badge.svelte';
|
|
10
|
+
export type { BadgeProps } from './ui/Badge.svelte';
|
|
4
11
|
export { default as Dialog } from './ui/Dialog.svelte';
|
|
12
|
+
export type { DialogProps, DialogContext } from './ui/Dialog.svelte';
|
|
5
13
|
export { default as Drawer } from './ui/Drawer.svelte';
|
|
14
|
+
export type { DrawerProps } from './ui/Drawer.svelte';
|
|
6
15
|
export { default as Dropdown } from './ui/Dropdown.svelte';
|
|
16
|
+
export type { DropdownProps } from './ui/Dropdown.svelte';
|
|
7
17
|
export { default as Dropzone } from './ui/Dropzone.svelte';
|
|
18
|
+
export type { DropzoneProps } from './ui/Dropzone.svelte';
|
|
8
19
|
export { default as Link } from './ui/Link.svelte';
|
|
20
|
+
export type { LinkProps } from './ui/Link.svelte';
|
|
9
21
|
export { default as Loader } from './ui/Loader.svelte';
|
|
22
|
+
export type { LoaderProps } from './ui/Loader.svelte';
|
|
23
|
+
export { default as Logo } from './ui/Logo.svelte';
|
|
24
|
+
export type { LogoProps } from './ui/Logo.svelte';
|
|
10
25
|
export { default as Pagination } from './ui/Pagination.svelte';
|
|
26
|
+
export type { PaginationProps } from './ui/Pagination.svelte';
|
|
11
27
|
export { default as Popover } from './ui/Popover.svelte';
|
|
28
|
+
export type { PopoverProps } from './ui/Popover.svelte';
|
|
29
|
+
export { default as ContextMenu } from './ui/ContextMenu.svelte';
|
|
30
|
+
export type { ContextMenuProps, ContextMenuItem } from './ui/ContextMenu.svelte';
|
|
31
|
+
export { default as ProgressBar } from './ui/ProgressBar.svelte';
|
|
32
|
+
export type { ProgressBarProps, ProgressBarSegment } from './ui/ProgressBar.svelte';
|
|
33
|
+
export type { ProgressBarVariant, LegacyProgressBarVariant } from './ui/ProgressBarVariant.js';
|
|
12
34
|
export { default as Tabs } from './ui/Tabs.svelte';
|
|
35
|
+
export type { TabsProps } from './ui/Tabs.svelte';
|
|
13
36
|
export { default as Table } from './ui/Table.svelte';
|
|
14
|
-
export type { Column } from './ui/Table.svelte';
|
|
37
|
+
export type { Column, TableProps } from './ui/Table.svelte';
|
|
15
38
|
export { default as ThemeSwitcher } from './ui/ThemeSwitcher.svelte';
|
|
39
|
+
export type { ThemeSwitcherProps } from './ui/ThemeSwitcher.svelte';
|
|
40
|
+
export { default as Sortable } from './ui/Sortable.svelte';
|
|
41
|
+
export type { SortableProps } from './ui/Sortable.svelte';
|
|
42
|
+
export { default as MultiSortable } from './ui/MultiSortable.svelte';
|
|
43
|
+
export type { MultiSortableProps } from './ui/MultiSortable.svelte';
|
|
16
44
|
export { default as Toaster } from './ui/Toaster.svelte';
|
|
17
45
|
export { default as Tooltip } from './ui/Tooltip.svelte';
|
|
18
|
-
export {
|
|
19
|
-
export
|
|
20
|
-
export type {
|
|
21
|
-
export { default as Progress } from './ui/Progress.svelte';
|
|
22
|
-
export { default as Skeleton } from './ui/Skeleton.svelte';
|
|
23
|
-
export { default as LoadingOverlay } from './ui/LoadingOverlay.svelte';
|
|
24
|
-
export { default as Accordion } from './ui/Accordion.svelte';
|
|
25
|
-
export type { AccordionItem } from './ui/Accordion.svelte';
|
|
26
|
-
export { default as RingProgress } from './ui/RingProgress.svelte';
|
|
27
|
-
export { default as Breadcrumbs } from './ui/Breadcrumbs.svelte';
|
|
28
|
-
export { default as Stepper } from './ui/Stepper.svelte';
|
|
29
|
-
export { default as Timeline } from './ui/Timeline.svelte';
|
|
30
|
-
export { default as Alert } from './display/Alert.svelte';
|
|
46
|
+
export type { TooltipProps, TooltipLocation } from './ui/Tooltip.svelte';
|
|
47
|
+
export { default as Alert } from './display/alert/Alert.svelte';
|
|
48
|
+
export type { AlertProps } from './display/alert/Alert.svelte';
|
|
31
49
|
export { default as LinkCollection } from './display/LinkCollection.svelte';
|
|
32
|
-
export {
|
|
33
|
-
export { default as Avatar } from './display/Avatar.svelte';
|
|
34
|
-
export { default as AppShell } from './layout/AppShell.svelte';
|
|
50
|
+
export type { LinkCollectionProps } from './display/LinkCollection.svelte';
|
|
35
51
|
export { default as Navbar } from './layout/Navbar.svelte';
|
|
52
|
+
export type { NavbarProps, NavbarVariant } from './layout/Navbar.svelte';
|
|
53
|
+
export { default as NavbarItemView } from './layout/NavbarItemView.svelte';
|
|
54
|
+
export type { NavbarItemViewProps } from './layout/NavbarItemView.svelte';
|
|
36
55
|
export { default as CustomNavbar } from './layout/CustomNavbar.svelte';
|
|
56
|
+
export type { CustomNavbarProps } from './layout/CustomNavbar.svelte';
|
|
57
|
+
export { default as AppShell } from './layout/AppShell.svelte';
|
|
58
|
+
export type { AppShellProps } from './layout/AppShell.svelte';
|
|
37
59
|
export { default as Sidenav } from './layout/Sidenav.svelte';
|
|
38
|
-
export type { SidenavItem, SidenavSection } from './layout/Sidenav.svelte';
|
|
60
|
+
export type { SidenavItem, SidenavItemAction, SidenavSection, SidenavProps } from './layout/Sidenav.svelte';
|
|
61
|
+
export { default as Paper } from './display/Paper.svelte';
|
|
62
|
+
export type { PaperProps } from './display/Paper.svelte';
|
|
63
|
+
export { default as Avatar } from './display/Avatar.svelte';
|
|
64
|
+
export type { AvatarProps } from './display/Avatar.svelte';
|
|
39
65
|
export { default as Autocomplete } from './form/Autocomplete.svelte';
|
|
66
|
+
export type { AutocompleteProps } from './form/Autocomplete.svelte';
|
|
40
67
|
export { default as AutocompleteMulti } from './form/AutocompleteMulti.svelte';
|
|
68
|
+
export type { AutocompleteMultiProps } from './form/AutocompleteMulti.svelte';
|
|
41
69
|
export { default as Checkbox } from './form/Checkbox.svelte';
|
|
70
|
+
export type { CheckboxProps } from './form/Checkbox.svelte';
|
|
42
71
|
export { default as ComboBoxItemBuilder } from './form/ComboBoxItemBuilder.svelte';
|
|
72
|
+
export type { ComboBoxItemBuilderProps } from './form/ComboBoxItemBuilder.svelte';
|
|
73
|
+
export { default as StringArrayBuilder } from './form/StringArrayBuilder.svelte';
|
|
74
|
+
export type { StringArrayBuilderProps } from './form/StringArrayBuilder.svelte';
|
|
43
75
|
export { default as CronBuilder } from './form/CronBuilder.svelte';
|
|
76
|
+
export type { CronBuilderProps } from './form/CronBuilder.svelte';
|
|
44
77
|
export { default as DatePicker } from './form/DatePicker.svelte';
|
|
45
78
|
export type { DatePickerProps } from './form/DatePicker.svelte';
|
|
46
79
|
export { default as DateRangePicker } from './form/DateRangePicker.svelte';
|
|
47
80
|
export type { DateRangePickerProps } from './form/DateRangePicker.svelte';
|
|
48
81
|
export { default as TimePicker } from './form/TimePicker.svelte';
|
|
82
|
+
export type { TimePickerProps } from './form/TimePicker.svelte';
|
|
49
83
|
export { default as DateTimePicker } from './form/DateTimePicker.svelte';
|
|
84
|
+
export type { DateTimePickerProps } from './form/DateTimePicker.svelte';
|
|
50
85
|
export { default as FormGroup } from './form/FormGroup.svelte';
|
|
86
|
+
export type { FormGroupProps } from './form/FormGroup.svelte';
|
|
51
87
|
export { default as Number } from './form/Number.svelte';
|
|
88
|
+
export type { NumberProps } from './form/Number.svelte';
|
|
52
89
|
export { default as Radio } from './form/Radio.svelte';
|
|
53
90
|
export type { RadioProps } from './form/Radio.svelte';
|
|
54
91
|
export { default as RadioGroup } from './form/RadioGroup.svelte';
|
|
92
|
+
export type { RadioGroupProps } from './form/RadioGroup.svelte';
|
|
55
93
|
export { default as Select } from './form/Select.svelte';
|
|
94
|
+
export type { SelectProps } from './form/Select.svelte';
|
|
56
95
|
export { default as SelectMulti } from './form/SelectMulti.svelte';
|
|
96
|
+
export type { SelectMultiProps } from './form/SelectMulti.svelte';
|
|
57
97
|
export { default as SegmentedControl } from './form/SegmentedControl.svelte';
|
|
98
|
+
export type { SegmentedControlProps, SegmentedControlSize } from './form/SegmentedControl.svelte';
|
|
58
99
|
export { default as TextArea } from './form/TextArea.svelte';
|
|
100
|
+
export type { TextAreaProps } from './form/TextArea.svelte';
|
|
59
101
|
export { default as Textbox } from './form/Textbox.svelte';
|
|
102
|
+
export type { TextboxProps } from './form/Textbox.svelte';
|
|
103
|
+
export { default as Slider } from './form/Slider.svelte';
|
|
104
|
+
export type { SliderProps } from './form/Slider.svelte';
|
|
60
105
|
export { default as Switch } from './form/Switch.svelte';
|
|
106
|
+
export type { SwitchProps } from './form/Switch.svelte';
|
|
61
107
|
export { default as Chips } from './form/Chips.svelte';
|
|
62
|
-
export {
|
|
63
|
-
export { default as
|
|
64
|
-
export {
|
|
65
|
-
export { default as
|
|
108
|
+
export type { ChipsProps } from './form/Chips.svelte';
|
|
109
|
+
export { default as TipTap } from './editors/tiptap/TipTap.svelte';
|
|
110
|
+
export type { TipTapProps, DocumentUploadResult } from './editors/tiptap/TipTap.svelte';
|
|
111
|
+
export { default as TipTapBubble } from './editors/tiptap/TipTapBubble.svelte';
|
|
112
|
+
export type { TipTapBubbleProps } from './editors/tiptap/TipTapBubble.svelte';
|
|
113
|
+
export type { CollaborationConfig, CollaborationUser } from './editors/tiptap/collaboration.js';
|
|
114
|
+
export { CodeBlockEditor, codeBlockLanguages, resolveCodeBlockLanguage } from './editors/tiptap/extensions/index.js';
|
|
115
|
+
export type { CodeBlocksOptions, CodeBlockEditorOptions, CodeBlockLanguageDef, CodeBlockLanguageId } from './editors/tiptap/extensions/index.js';
|
|
116
|
+
export type { AnyExtension } from '@tiptap/core';
|
|
117
|
+
export { default as CodeMirror } from './editors/CodeMirror.svelte';
|
|
118
|
+
export type { CodeMirrorProps } from './editors/CodeMirror.svelte';
|
|
119
|
+
export { default as GitCard } from './cards/GitCard.svelte';
|
|
120
|
+
export type { GitCardProps } from './cards/GitCard.svelte';
|
|
66
121
|
export * from './icon/index.js';
|
|
67
|
-
export type {
|
|
122
|
+
export type { IconProps } from './icon/Icon.svelte';
|
|
123
|
+
export type { ButtonVariant, LegacyButtonVariant } from './ui/ButtonVariant.js';
|
|
68
124
|
export type { ButtonSize } from './ui/ButtonSize.js';
|
|
69
|
-
export type { SegmentedControlSize } from './form/SegmentedControl.svelte';
|
|
70
125
|
export type { Hyperlink } from './models/Hyperlink.js';
|
|
71
126
|
export type { LinkCollectionItem } from './models/LinkCollectionItem.js';
|
|
127
|
+
export type { Employee, GitEmployee } from './models/Employee.js';
|
|
72
128
|
export * from './models/ComboBoxItem.js';
|
|
73
129
|
export * from './models/NavbarItem.js';
|
|
74
130
|
export * from './models/NotifyModel.js';
|
|
75
|
-
export * from './
|
|
131
|
+
export * from './util/ClickOutside.js';
|
|
76
132
|
export * from './util/CronParser.js';
|
|
133
|
+
export { dayjs } from './util/dayjs.js';
|
|
134
|
+
export type { Dayjs, ConfigType, OpUnitType, QUnitType, UnitType } from './util/dayjs.js';
|
|
77
135
|
export * from './util/DateFunctions.js';
|
|
136
|
+
export * from './util/DragDrop.js';
|
|
137
|
+
export * from './util/Transitions.js';
|
|
78
138
|
export * from './util/interceptLinkClick.js';
|
|
79
|
-
export * from './transitions/Transitions.js';
|
|
80
139
|
export * from './util/NavigateTo.js';
|
|
140
|
+
export * from './display/filetree/index.js';
|
|
81
141
|
export * from './theme.svelte.js';
|
|
142
|
+
export * from './uiTheme.svelte.js';
|
|
82
143
|
export * from './ui/Toast.svelte.js';
|