@skeletonlabs/skeleton-common 4.6.1 → 4.7.1
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/dist/classes.d.mts +12 -1
- package/dist/classes.mjs +12 -1
- package/package.json +1 -1
package/dist/classes.d.mts
CHANGED
|
@@ -193,6 +193,17 @@ declare const slider: {
|
|
|
193
193
|
markerGroup: string;
|
|
194
194
|
marker: string;
|
|
195
195
|
};
|
|
196
|
+
declare const steps: {
|
|
197
|
+
root: string;
|
|
198
|
+
list: string;
|
|
199
|
+
item: string;
|
|
200
|
+
trigger: string;
|
|
201
|
+
indicator: string;
|
|
202
|
+
separator: string;
|
|
203
|
+
content: string;
|
|
204
|
+
prevTrigger: string;
|
|
205
|
+
nextTrigger: string;
|
|
206
|
+
};
|
|
196
207
|
declare const switch_: {
|
|
197
208
|
root: string;
|
|
198
209
|
control: string;
|
|
@@ -253,5 +264,5 @@ declare const treeView: {
|
|
|
253
264
|
branchIndentGuide: string;
|
|
254
265
|
};
|
|
255
266
|
//#endregion
|
|
256
|
-
export { accordion, appBar, avatar, collapsible, combobox, datePicker, dialog, fileUpload, floatingPanel, listbox, menu, navigation, pagination, popover, progress, ratingGroup, segmentedControl, slider, switch_ as switch, tabs, tagsInput, toast, toggleGroup, tooltip, treeView };
|
|
267
|
+
export { accordion, appBar, avatar, collapsible, combobox, datePicker, dialog, fileUpload, floatingPanel, listbox, menu, navigation, pagination, popover, progress, ratingGroup, segmentedControl, slider, steps, switch_ as switch, tabs, tagsInput, toast, toggleGroup, tooltip, treeView };
|
|
257
268
|
//# sourceMappingURL=classes.d.mts.map
|
package/dist/classes.mjs
CHANGED
|
@@ -193,6 +193,17 @@ const slider = {
|
|
|
193
193
|
"markerGroup": "",
|
|
194
194
|
"marker": "skb:text-xs skb:text-surface-600-400"
|
|
195
195
|
};
|
|
196
|
+
const steps = {
|
|
197
|
+
"root": "skb:data-[orientation=horizontal]:space-y-4 skb:data-[orientation=vertical]:flex skb:data-[orientation=vertical]:space-x-4",
|
|
198
|
+
"list": "skb:flex skb:gap-2 skb:data-[orientation=horizontal]:items-center skb:data-[orientation=vertical]:flex-col skb:data-[orientation=vertical]:items-start",
|
|
199
|
+
"item": "skb:flex skb:gap-2 skb:grow skb:last:flex-initial skb:data-[orientation=horizontal]:items-center skb:data-[orientation=vertical]:flex-col skb:data-[orientation=vertical]:items-start",
|
|
200
|
+
"trigger": "skb:flex skb:items-center skb:gap-1",
|
|
201
|
+
"indicator": "skb:size-8 skb:rounded-full skb:content-center skb:not-data-complete:not-data-current:preset-outlined-surface-200-800 skb:data-complete:preset-filled-primary-500 skb:data-current:preset-outlined-primary-500",
|
|
202
|
+
"separator": "skb:h-0 skb:border-surface-200-800 skb:grow skb:data-complete:border-primary-500 skb:data-[orientation=horizontal]:border-t skb:data-[orientation=vertical]:border-s skb:data-[orientation=vertical]:ms-4 skb:data-[orientation=vertical]:min-h-4",
|
|
203
|
+
"content": "",
|
|
204
|
+
"prevTrigger": "",
|
|
205
|
+
"nextTrigger": ""
|
|
206
|
+
};
|
|
196
207
|
const switch_ = {
|
|
197
208
|
"root": "skb:cursor-pointer skb:data-disabled:cursor-not-allowed skb:data-disabled:opacity-50 skb:inline-flex skb:gap-2 skb:items-center skb:rounded skb:data-focus-visible:outline-2 skb:data-focus-visible:outline-offset-1 skb:data-focus-visible:outline-surface-950-50",
|
|
198
209
|
"control": "skb:preset-filled-surface-200-800 skb:h-6 skb:w-10 skb:p-0.5 skb:rounded-full skb:flex skb:justify-start skb:data-[state=checked]:preset-filled-primary-500",
|
|
@@ -254,5 +265,5 @@ const treeView = {
|
|
|
254
265
|
};
|
|
255
266
|
|
|
256
267
|
//#endregion
|
|
257
|
-
export { accordion, appBar, avatar, collapsible, combobox, datePicker, dialog, fileUpload, floatingPanel, listbox, menu, navigation, pagination, popover, progress, ratingGroup, segmentedControl, slider, switch_ as switch, tabs, tagsInput, toast, toggleGroup, tooltip, treeView };
|
|
268
|
+
export { accordion, appBar, avatar, collapsible, combobox, datePicker, dialog, fileUpload, floatingPanel, listbox, menu, navigation, pagination, popover, progress, ratingGroup, segmentedControl, slider, steps, switch_ as switch, tabs, tagsInput, toast, toggleGroup, tooltip, treeView };
|
|
258
269
|
//# sourceMappingURL=classes.mjs.map
|