@sprawlify/vue 0.0.92 → 0.0.94
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/{alert-dialog-anatomy-D3Liireu.d.ts → alert-dialog-anatomy-QuurhLQV.d.ts} +1 -1
- package/dist/{carousel-anatomy-CYo6B4BR.d.ts → carousel-anatomy-CIDLPgZ-.d.ts} +1 -1
- package/dist/{checkbox-anatomy-D_EEk_7M.d.ts → checkbox-anatomy-CqSoosVM.d.ts} +1 -1
- package/dist/{color-picker-anatomy-CCWwwZOI.d.ts → color-picker-anatomy-DL4zMzNi.d.ts} +1 -1
- package/dist/{combobox-anatomy-D_kVPY3I.d.ts → combobox-anatomy-4KaNxLHI.d.ts} +1 -1
- package/dist/components/alert-dialog/index.d.ts +11 -11
- package/dist/components/anatomy.d.ts +9 -9
- package/dist/components/angle-slider/index.d.ts +1 -1
- package/dist/components/bottom-sheet/index.d.ts +4 -4
- package/dist/components/carousel/index.d.ts +1 -1
- package/dist/components/checkbox/index.d.ts +6 -6
- package/dist/components/clipboard/index.d.ts +2 -2
- package/dist/components/collapsible/index.d.ts +2 -2
- package/dist/components/color-picker/index.d.ts +15 -15
- package/dist/components/combobox/index.d.ts +7 -7
- package/dist/components/date-picker/index.d.ts +11 -11
- package/dist/components/dialog/index.d.ts +10 -10
- package/dist/components/dropdown-menu/index.d.ts +12 -12
- package/dist/components/editable/index.d.ts +7 -7
- package/dist/components/field/index.d.ts +2 -2
- package/dist/components/file-upload/index.d.ts +2 -2
- package/dist/components/floating-panel/index.d.ts +5 -5
- package/dist/components/focus-trap/index.d.ts +1 -1
- package/dist/components/hover-card/index.d.ts +5 -5
- package/dist/components/json-tree-view/index.d.ts +2 -2
- package/dist/components/listbox/index.d.ts +1 -1
- package/dist/components/number-input/index.d.ts +5 -5
- package/dist/components/password-input/index.d.ts +3 -3
- package/dist/components/pin-input/index.d.ts +4 -4
- package/dist/components/popover/index.d.ts +9 -9
- package/dist/components/radio-group/index.d.ts +2 -2
- package/dist/components/rating-group/index.d.ts +1 -1
- package/dist/components/segment-group/index.d.ts +1 -1
- package/dist/components/select/index.d.ts +5 -5
- package/dist/components/signature-pad/index.d.ts +1 -1
- package/dist/components/slider/index.d.ts +1 -1
- package/dist/components/splitter/index.d.ts +2 -2
- package/dist/components/switch/index.d.ts +4 -4
- package/dist/components/tabs/index.d.ts +1 -1
- package/dist/components/tags-input/index.d.ts +9 -9
- package/dist/components/toggle-group/index.d.ts +2 -2
- package/dist/components/tooltip/index.d.ts +1 -1
- package/dist/components/tour/index.d.ts +5 -5
- package/dist/components/tree-view/index.d.ts +1 -1
- package/dist/{date-picker-anatomy-DgTujt3i.d.ts → date-picker-anatomy-CS0VZRdN.d.ts} +1 -1
- package/dist/{index-BdracuN0.d.ts → index-CODK2VY0.d.ts} +2 -2
- package/dist/{listbox-anatomy-BCyiKo1T.d.ts → listbox-anatomy-OCPfyyEa.d.ts} +1 -1
- package/dist/{segment-group-anatomy-B6BtDPDj.d.ts → segment-group-anatomy-CACHOtai.d.ts} +1 -1
- package/dist/{tour-anatomy-D9iOfApe.d.ts → tour-anatomy-D9v3xtYJ.d.ts} +1 -1
- package/package.json +2 -2
|
@@ -218,33 +218,33 @@ declare const _default$9: typeof __VLS_export$4;
|
|
|
218
218
|
declare const __VLS_export$4: __VLS_WithSlots$4<vue.DefineComponent<FloatingPanelRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
219
219
|
openChange: (details: floatingPanel.OpenChangeDetails) => any;
|
|
220
220
|
"update:open": (open: boolean) => any;
|
|
221
|
+
"update:size": (details: floatingPanel.Size) => any;
|
|
221
222
|
positionChange: (details: floatingPanel.PositionChangeDetails) => any;
|
|
222
223
|
"update:position": (details: floatingPanel.Point) => any;
|
|
223
224
|
positionChangeEnd: (details: floatingPanel.PositionChangeDetails) => any;
|
|
224
225
|
sizeChange: (details: floatingPanel.SizeChangeDetails) => any;
|
|
225
|
-
"update:size": (details: floatingPanel.Size) => any;
|
|
226
226
|
sizeChangeEnd: (details: floatingPanel.SizeChangeDetails) => any;
|
|
227
227
|
stageChange: (details: floatingPanel.StageChangeDetails) => any;
|
|
228
228
|
}, string, vue.PublicProps, Readonly<FloatingPanelRootProps> & Readonly<{
|
|
229
229
|
onOpenChange?: ((details: floatingPanel.OpenChangeDetails) => any) | undefined;
|
|
230
230
|
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
231
|
+
"onUpdate:size"?: ((details: floatingPanel.Size) => any) | undefined;
|
|
231
232
|
onPositionChange?: ((details: floatingPanel.PositionChangeDetails) => any) | undefined;
|
|
232
233
|
"onUpdate:position"?: ((details: floatingPanel.Point) => any) | undefined;
|
|
233
234
|
onPositionChangeEnd?: ((details: floatingPanel.PositionChangeDetails) => any) | undefined;
|
|
234
235
|
onSizeChange?: ((details: floatingPanel.SizeChangeDetails) => any) | undefined;
|
|
235
|
-
"onUpdate:size"?: ((details: floatingPanel.Size) => any) | undefined;
|
|
236
236
|
onSizeChangeEnd?: ((details: floatingPanel.SizeChangeDetails) => any) | undefined;
|
|
237
237
|
onStageChange?: ((details: floatingPanel.StageChangeDetails) => any) | undefined;
|
|
238
238
|
}>, {
|
|
239
239
|
draggable: boolean;
|
|
240
240
|
disabled: boolean;
|
|
241
|
-
open: boolean;
|
|
242
241
|
defaultOpen: boolean;
|
|
243
|
-
|
|
242
|
+
open: boolean;
|
|
244
243
|
closeOnEscape: boolean;
|
|
244
|
+
allowOverflow: boolean;
|
|
245
|
+
resizable: boolean;
|
|
245
246
|
lockAspectRatio: boolean;
|
|
246
247
|
persistRect: boolean;
|
|
247
|
-
resizable: boolean;
|
|
248
248
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
249
249
|
default?: (props: {}) => any;
|
|
250
250
|
}>;
|
|
@@ -32,7 +32,7 @@ declare const __VLS_export: __VLS_WithSlots<vue.DefineComponent<FocusTrapProps,
|
|
|
32
32
|
onDeactivate?: (() => any) | undefined;
|
|
33
33
|
}>, {
|
|
34
34
|
disabled: boolean;
|
|
35
|
-
initialFocus:
|
|
35
|
+
initialFocus: ((false | (string | (HTMLElement | SVGElement))) | (() => false | (string | (HTMLElement | SVGElement)))) | VoidFunction;
|
|
36
36
|
fallbackFocus: (string | (HTMLElement | SVGElement)) | (() => string | (HTMLElement | SVGElement));
|
|
37
37
|
returnFocusOnDeactivate: boolean;
|
|
38
38
|
setReturnFocus: (false | (string | (HTMLElement | SVGElement))) | ((node: HTMLElement | SVGElement) => false | (string | (HTMLElement | SVGElement)));
|
|
@@ -153,22 +153,22 @@ interface HoverCardRootEmits extends RootEmits {}
|
|
|
153
153
|
declare const _default$5: typeof __VLS_export$1;
|
|
154
154
|
declare const __VLS_export$1: __VLS_WithSlots$1<vue.DefineComponent<HoverCardRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
155
155
|
exitComplete: () => any;
|
|
156
|
+
openChange: (details: hoverCard.OpenChangeDetails) => any;
|
|
157
|
+
"update:open": (open: boolean) => any;
|
|
156
158
|
focusOutside: (event: _sprawlify_primitives_machines_dialog0.FocusOutsideEvent) => any;
|
|
157
159
|
interactOutside: (event: _sprawlify_primitives_machines_dialog0.InteractOutsideEvent) => any;
|
|
158
|
-
openChange: (details: hoverCard.OpenChangeDetails) => any;
|
|
159
160
|
pointerDownOutside: (event: _sprawlify_primitives_machines_dialog0.PointerDownOutsideEvent) => any;
|
|
160
|
-
"update:open": (open: boolean) => any;
|
|
161
161
|
}, string, vue.PublicProps, Readonly<HoverCardRootProps> & Readonly<{
|
|
162
162
|
onExitComplete?: (() => any) | undefined;
|
|
163
|
+
onOpenChange?: ((details: hoverCard.OpenChangeDetails) => any) | undefined;
|
|
164
|
+
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
163
165
|
onFocusOutside?: ((event: _sprawlify_primitives_machines_dialog0.FocusOutsideEvent) => any) | undefined;
|
|
164
166
|
onInteractOutside?: ((event: _sprawlify_primitives_machines_dialog0.InteractOutsideEvent) => any) | undefined;
|
|
165
|
-
onOpenChange?: ((details: hoverCard.OpenChangeDetails) => any) | undefined;
|
|
166
167
|
onPointerDownOutside?: ((event: _sprawlify_primitives_machines_dialog0.PointerDownOutsideEvent) => any) | undefined;
|
|
167
|
-
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
168
168
|
}>, {
|
|
169
169
|
disabled: boolean;
|
|
170
|
-
open: boolean;
|
|
171
170
|
defaultOpen: boolean;
|
|
171
|
+
open: boolean;
|
|
172
172
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
173
173
|
default?: (props: {}) => any;
|
|
174
174
|
}>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { r as PropTypes } from "../../index-ga2m_BD2.js";
|
|
2
|
-
import { C as TreeViewRootProviderProps, g as TreeViewRootBaseProps, m as TreeViewTreeProps, rt as UseTreeViewProps } from "../../index-
|
|
2
|
+
import { C as TreeViewRootProviderProps, g as TreeViewRootBaseProps, m as TreeViewTreeProps, rt as UseTreeViewProps } from "../../index-CODK2VY0.js";
|
|
3
3
|
import * as vue from "vue";
|
|
4
4
|
import { ComputedRef, HTMLAttributes, MaybeRef } from "vue";
|
|
5
5
|
import * as treeView from "@sprawlify/primitives/machines/tree-view";
|
|
@@ -26,8 +26,8 @@ declare const __VLS_export$2: __VLS_WithSlots$2<vue.DefineComponent<JsonTreeView
|
|
|
26
26
|
lazyMount: boolean;
|
|
27
27
|
unmountOnExit: boolean;
|
|
28
28
|
typeahead: boolean;
|
|
29
|
-
expandOnClick: boolean;
|
|
30
29
|
showNonenumerable: boolean;
|
|
30
|
+
expandOnClick: boolean;
|
|
31
31
|
quotesOnKeys: boolean;
|
|
32
32
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
33
33
|
default?: (props: {}) => any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { a as PolymorphicProps } from "../../factory-bfEpUaB3.js";
|
|
2
2
|
import { a as Optional, r as EmitFn$1, t as Assign } from "../../types-CcpL2F4P.js";
|
|
3
3
|
import { r as PropTypes } from "../../index-ga2m_BD2.js";
|
|
4
|
-
import { t as listboxAnatomy } from "../../listbox-anatomy-
|
|
4
|
+
import { t as listboxAnatomy } from "../../listbox-anatomy-OCPfyyEa.js";
|
|
5
5
|
import { _ as CollectionItem, b as createListCollection, y as ListCollection } from "../../index-DuD8fQUF.js";
|
|
6
6
|
import * as vue from "vue";
|
|
7
7
|
import { ComputedRef, HTMLAttributes, InputHTMLAttributes, LabelHTMLAttributes, MaybeRef, SlotsType, UnwrapRef } from "vue";
|
|
@@ -188,20 +188,20 @@ declare const _default$6: typeof __VLS_export$2;
|
|
|
188
188
|
declare const __VLS_export$2: __VLS_WithSlots$2<vue.DefineComponent<NumberInputRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
189
189
|
focusChange: (details: numberInput.FocusChangeDetails) => any;
|
|
190
190
|
valueChange: (details: numberInput.ValueChangeDetails) => any;
|
|
191
|
-
"update:modelValue": (value: string) => any;
|
|
192
191
|
valueInvalid: (details: numberInput.ValueInvalidDetails) => any;
|
|
192
|
+
"update:modelValue": (value: string) => any;
|
|
193
193
|
}, string, vue.PublicProps, Readonly<NumberInputRootProps> & Readonly<{
|
|
194
194
|
onFocusChange?: ((details: numberInput.FocusChangeDetails) => any) | undefined;
|
|
195
195
|
onValueChange?: ((details: numberInput.ValueChangeDetails) => any) | undefined;
|
|
196
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
197
196
|
onValueInvalid?: ((details: numberInput.ValueInvalidDetails) => any) | undefined;
|
|
197
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
198
198
|
}>, {
|
|
199
199
|
disabled: boolean;
|
|
200
|
-
required: boolean;
|
|
201
|
-
readOnly: boolean;
|
|
202
200
|
invalid: boolean;
|
|
203
|
-
|
|
201
|
+
readOnly: boolean;
|
|
202
|
+
required: boolean;
|
|
204
203
|
allowMouseWheel: boolean;
|
|
204
|
+
allowOverflow: boolean;
|
|
205
205
|
clampValueOnBlur: boolean;
|
|
206
206
|
focusInputOnChange: boolean;
|
|
207
207
|
spinOnPress: boolean;
|
|
@@ -154,11 +154,11 @@ declare const __VLS_export$2: __VLS_WithSlots$2<vue.DefineComponent<PasswordInpu
|
|
|
154
154
|
"onUpdate:visible"?: ((visible: boolean) => any) | undefined;
|
|
155
155
|
}>, {
|
|
156
156
|
disabled: boolean;
|
|
157
|
-
required: boolean;
|
|
158
|
-
readOnly: boolean;
|
|
159
|
-
invalid: boolean;
|
|
160
157
|
defaultVisible: boolean;
|
|
161
158
|
ignorePasswordManagers: boolean;
|
|
159
|
+
invalid: boolean;
|
|
160
|
+
readOnly: boolean;
|
|
161
|
+
required: boolean;
|
|
162
162
|
visible: boolean;
|
|
163
163
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
164
164
|
default?: (props: {}) => any;
|
|
@@ -142,21 +142,21 @@ interface PinInputRootEmits extends RootEmits {}
|
|
|
142
142
|
declare const _default$5: typeof __VLS_export$1;
|
|
143
143
|
declare const __VLS_export$1: __VLS_WithSlots$1<vue.DefineComponent<PinInputRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
144
144
|
valueChange: (details: pinInput.ValueChangeDetails) => any;
|
|
145
|
-
"update:modelValue": (value: string[]) => any;
|
|
146
145
|
valueInvalid: (details: pinInput.ValueInvalidDetails) => any;
|
|
146
|
+
"update:modelValue": (value: string[]) => any;
|
|
147
147
|
valueComplete: (details: pinInput.ValueChangeDetails) => any;
|
|
148
148
|
}, string, vue.PublicProps, Readonly<PinInputRootProps> & Readonly<{
|
|
149
149
|
onValueChange?: ((details: pinInput.ValueChangeDetails) => any) | undefined;
|
|
150
|
-
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
151
150
|
onValueInvalid?: ((details: pinInput.ValueInvalidDetails) => any) | undefined;
|
|
151
|
+
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
152
152
|
onValueComplete?: ((details: pinInput.ValueChangeDetails) => any) | undefined;
|
|
153
153
|
}>, {
|
|
154
154
|
mask: boolean;
|
|
155
155
|
disabled: boolean;
|
|
156
|
+
invalid: boolean;
|
|
157
|
+
readOnly: boolean;
|
|
156
158
|
required: boolean;
|
|
157
159
|
autoFocus: boolean;
|
|
158
|
-
readOnly: boolean;
|
|
159
|
-
invalid: boolean;
|
|
160
160
|
blurOnComplete: boolean;
|
|
161
161
|
otp: boolean;
|
|
162
162
|
selectOnFocus: boolean;
|
|
@@ -236,12 +236,12 @@ interface PopoverRootEmits extends RootEmits {}
|
|
|
236
236
|
declare const _default$9: typeof __VLS_export$2;
|
|
237
237
|
declare const __VLS_export$2: __VLS_WithSlots$2<vue.DefineComponent<PopoverRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
238
238
|
exitComplete: () => any;
|
|
239
|
-
focusOutside: (event: _sprawlify_primitives_machines_dialog0.FocusOutsideEvent) => any;
|
|
240
|
-
interactOutside: (event: _sprawlify_primitives_machines_dialog0.InteractOutsideEvent) => any;
|
|
241
239
|
openChange: (details: popover.OpenChangeDetails) => any;
|
|
242
|
-
pointerDownOutside: (event: _sprawlify_primitives_machines_dialog0.PointerDownOutsideEvent) => any;
|
|
243
240
|
"update:open": (open: boolean) => any;
|
|
244
241
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
242
|
+
focusOutside: (event: _sprawlify_primitives_machines_dialog0.FocusOutsideEvent) => any;
|
|
243
|
+
interactOutside: (event: _sprawlify_primitives_machines_dialog0.InteractOutsideEvent) => any;
|
|
244
|
+
pointerDownOutside: (event: _sprawlify_primitives_machines_dialog0.PointerDownOutsideEvent) => any;
|
|
245
245
|
requestDismiss: (event: CustomEvent<{
|
|
246
246
|
originalLayer: HTMLElement;
|
|
247
247
|
targetLayer: HTMLElement | undefined;
|
|
@@ -250,12 +250,12 @@ declare const __VLS_export$2: __VLS_WithSlots$2<vue.DefineComponent<PopoverRootP
|
|
|
250
250
|
}>) => any;
|
|
251
251
|
}, string, vue.PublicProps, Readonly<PopoverRootProps> & Readonly<{
|
|
252
252
|
onExitComplete?: (() => any) | undefined;
|
|
253
|
-
onFocusOutside?: ((event: _sprawlify_primitives_machines_dialog0.FocusOutsideEvent) => any) | undefined;
|
|
254
|
-
onInteractOutside?: ((event: _sprawlify_primitives_machines_dialog0.InteractOutsideEvent) => any) | undefined;
|
|
255
253
|
onOpenChange?: ((details: popover.OpenChangeDetails) => any) | undefined;
|
|
256
|
-
onPointerDownOutside?: ((event: _sprawlify_primitives_machines_dialog0.PointerDownOutsideEvent) => any) | undefined;
|
|
257
254
|
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
258
255
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
256
|
+
onFocusOutside?: ((event: _sprawlify_primitives_machines_dialog0.FocusOutsideEvent) => any) | undefined;
|
|
257
|
+
onInteractOutside?: ((event: _sprawlify_primitives_machines_dialog0.InteractOutsideEvent) => any) | undefined;
|
|
258
|
+
onPointerDownOutside?: ((event: _sprawlify_primitives_machines_dialog0.PointerDownOutsideEvent) => any) | undefined;
|
|
259
259
|
onRequestDismiss?: ((event: CustomEvent<{
|
|
260
260
|
originalLayer: HTMLElement;
|
|
261
261
|
targetLayer: HTMLElement | undefined;
|
|
@@ -263,12 +263,12 @@ declare const __VLS_export$2: __VLS_WithSlots$2<vue.DefineComponent<PopoverRootP
|
|
|
263
263
|
targetIndex: number;
|
|
264
264
|
}>) => any) | undefined;
|
|
265
265
|
}>, {
|
|
266
|
-
open: boolean;
|
|
267
266
|
defaultOpen: boolean;
|
|
268
|
-
|
|
267
|
+
open: boolean;
|
|
269
268
|
closeOnEscape: boolean;
|
|
270
|
-
modal: boolean;
|
|
271
269
|
closeOnInteractOutside: boolean;
|
|
270
|
+
modal: boolean;
|
|
271
|
+
autoFocus: boolean;
|
|
272
272
|
portalled: boolean;
|
|
273
273
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
274
274
|
default?: (props: {}) => any;
|
|
@@ -214,9 +214,9 @@ declare const __VLS_export: __VLS_WithSlots<vue.DefineComponent<RadioGroupRootPr
|
|
|
214
214
|
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
|
|
215
215
|
}>, {
|
|
216
216
|
disabled: boolean;
|
|
217
|
-
required: boolean;
|
|
218
|
-
readOnly: boolean;
|
|
219
217
|
invalid: boolean;
|
|
218
|
+
readOnly: boolean;
|
|
219
|
+
required: boolean;
|
|
220
220
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
221
221
|
default?: (props: {}) => any;
|
|
222
222
|
}>;
|
|
@@ -159,9 +159,9 @@ declare const __VLS_export$1: __VLS_WithSlots$1<vue.DefineComponent<RatingGroupR
|
|
|
159
159
|
onHoverChange?: ((details: ratingGroup.HoverChangeDetails) => any) | undefined;
|
|
160
160
|
}>, {
|
|
161
161
|
disabled: boolean;
|
|
162
|
+
readOnly: boolean;
|
|
162
163
|
required: boolean;
|
|
163
164
|
autoFocus: boolean;
|
|
164
|
-
readOnly: boolean;
|
|
165
165
|
allowHalf: boolean;
|
|
166
166
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
167
167
|
default?: (props: {}) => any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { a as PolymorphicProps } from "../../factory-bfEpUaB3.js";
|
|
2
2
|
import { a as Optional, r as EmitFn$1 } from "../../types-CcpL2F4P.js";
|
|
3
3
|
import { r as PropTypes } from "../../index-ga2m_BD2.js";
|
|
4
|
-
import { t as segmentGroupAnatomy } from "../../segment-group-anatomy-
|
|
4
|
+
import { t as segmentGroupAnatomy } from "../../segment-group-anatomy-CACHOtai.js";
|
|
5
5
|
import * as vue from "vue";
|
|
6
6
|
import { ComputedRef, HTMLAttributes, InputHTMLAttributes, LabelHTMLAttributes, MaybeRef, SlotsType, UnwrapRef } from "vue";
|
|
7
7
|
import * as segmentGroup from "@sprawlify/primitives/machines/radio-group";
|
|
@@ -336,14 +336,14 @@ declare const _default$15: typeof __VLS_export$3;
|
|
|
336
336
|
declare const __VLS_export$3: <T extends CollectionItem>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal$1<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
337
337
|
props: vue.PublicProps & __VLS_PrettifyLocal$1<SelectRootProps<T> & {
|
|
338
338
|
onSelect?: ((details: select.SelectionDetails) => any) | undefined;
|
|
339
|
-
onValueChange?: ((details: select.ValueChangeDetails<T>) => any) | undefined;
|
|
340
|
-
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
341
339
|
onExitComplete?: (() => any) | undefined;
|
|
340
|
+
onOpenChange?: ((details: select.OpenChangeDetails) => any) | undefined;
|
|
341
|
+
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
342
342
|
onFocusOutside?: ((event: _sprawlify_primitives_machines_dialog0.FocusOutsideEvent) => any) | undefined;
|
|
343
343
|
onInteractOutside?: ((event: _sprawlify_primitives_machines_dialog0.InteractOutsideEvent) => any) | undefined;
|
|
344
|
-
onOpenChange?: ((details: select.OpenChangeDetails) => any) | undefined;
|
|
345
344
|
onPointerDownOutside?: ((event: _sprawlify_primitives_machines_dialog0.PointerDownOutsideEvent) => any) | undefined;
|
|
346
|
-
|
|
345
|
+
onValueChange?: ((details: select.ValueChangeDetails<T>) => any) | undefined;
|
|
346
|
+
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
347
347
|
onHighlightChange?: ((details: select.HighlightChangeDetails<T>) => any) | undefined;
|
|
348
348
|
"onUpdate:highlightedValue"?: ((value: string | null) => any) | undefined;
|
|
349
349
|
}> & (typeof globalThis extends {
|
|
@@ -354,7 +354,7 @@ declare const __VLS_export$3: <T extends CollectionItem>(__VLS_props: NonNullabl
|
|
|
354
354
|
slots: {
|
|
355
355
|
default?: (props: {}) => any;
|
|
356
356
|
};
|
|
357
|
-
emit: ((evt: "select", details: select.SelectionDetails) => void) & ((evt: "
|
|
357
|
+
emit: ((evt: "select", details: select.SelectionDetails) => void) & ((evt: "exitComplete") => void) & ((evt: "openChange", details: select.OpenChangeDetails) => void) & ((evt: "update:open", open: boolean) => void) & ((evt: "focusOutside", event: _sprawlify_primitives_machines_dialog0.FocusOutsideEvent) => void) & ((evt: "interactOutside", event: _sprawlify_primitives_machines_dialog0.InteractOutsideEvent) => void) & ((evt: "pointerDownOutside", event: _sprawlify_primitives_machines_dialog0.PointerDownOutsideEvent) => void) & ((evt: "valueChange", details: select.ValueChangeDetails<T>) => void) & ((evt: "update:modelValue", value: string[]) => void) & ((evt: "highlightChange", details: select.HighlightChangeDetails<T>) => void) & ((evt: "update:highlightedValue", value: string | null) => void);
|
|
358
358
|
}>) => vue.VNode & {
|
|
359
359
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
360
360
|
};
|
|
@@ -176,8 +176,8 @@ declare const __VLS_export$1: __VLS_WithSlots<vue.DefineComponent<SignaturePadRo
|
|
|
176
176
|
onDrawEnd?: ((details: signaturePad.DrawEndDetails) => any) | undefined;
|
|
177
177
|
}>, {
|
|
178
178
|
disabled: boolean;
|
|
179
|
-
required: boolean;
|
|
180
179
|
readOnly: boolean;
|
|
180
|
+
required: boolean;
|
|
181
181
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
182
182
|
default?: (props: {}) => any;
|
|
183
183
|
}>;
|
|
@@ -211,8 +211,8 @@ declare const __VLS_export$4: __VLS_WithSlots$4<vue.DefineComponent<SliderRootPr
|
|
|
211
211
|
onValueChangeEnd?: ((details: slider.ValueChangeDetails) => any) | undefined;
|
|
212
212
|
}>, {
|
|
213
213
|
disabled: boolean;
|
|
214
|
-
readOnly: boolean;
|
|
215
214
|
invalid: boolean;
|
|
215
|
+
readOnly: boolean;
|
|
216
216
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
217
217
|
default?: (props: {}) => any;
|
|
218
218
|
}>;
|
|
@@ -135,19 +135,19 @@ HTMLAttributes {}
|
|
|
135
135
|
interface SplitterRootEmits extends RootEmits {}
|
|
136
136
|
declare const _default$4: typeof __VLS_export;
|
|
137
137
|
declare const __VLS_export: __VLS_WithSlots<vue.DefineComponent<SplitterRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
138
|
-
"update:size": (size: number[]) => any;
|
|
139
138
|
collapse: (details: splitter.ExpandCollapseDetails) => any;
|
|
140
139
|
expand: (details: splitter.ExpandCollapseDetails) => any;
|
|
141
140
|
resize: (details: splitter.ResizeDetails) => any;
|
|
142
141
|
resizeEnd: (details: splitter.ResizeEndDetails) => any;
|
|
143
142
|
resizeStart: () => any;
|
|
143
|
+
"update:size": (size: number[]) => any;
|
|
144
144
|
}, string, vue.PublicProps, Readonly<SplitterRootProps> & Readonly<{
|
|
145
|
-
"onUpdate:size"?: ((size: number[]) => any) | undefined;
|
|
146
145
|
onCollapse?: ((details: splitter.ExpandCollapseDetails) => any) | undefined;
|
|
147
146
|
onExpand?: ((details: splitter.ExpandCollapseDetails) => any) | undefined;
|
|
148
147
|
onResize?: ((details: splitter.ResizeDetails) => any) | undefined;
|
|
149
148
|
onResizeEnd?: ((details: splitter.ResizeEndDetails) => any) | undefined;
|
|
150
149
|
onResizeStart?: (() => any) | undefined;
|
|
150
|
+
"onUpdate:size"?: ((size: number[]) => any) | undefined;
|
|
151
151
|
}>, {}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
152
152
|
default?: (props: {}) => any;
|
|
153
153
|
}>;
|
|
@@ -114,17 +114,17 @@ LabelHTMLAttributes {}
|
|
|
114
114
|
interface SwitchRootEmits extends RootEmits {}
|
|
115
115
|
declare const _default$4: typeof __VLS_export$2;
|
|
116
116
|
declare const __VLS_export$2: __VLS_WithSlots$2<vue.DefineComponent<SwitchRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
117
|
-
"update:checked": (checked: boolean) => any;
|
|
118
117
|
checkedChange: (details: sprawlifySwitch.CheckedChangeDetails) => any;
|
|
118
|
+
"update:checked": (checked: boolean) => any;
|
|
119
119
|
}, string, vue.PublicProps, Readonly<SwitchRootProps> & Readonly<{
|
|
120
|
-
"onUpdate:checked"?: ((checked: boolean) => any) | undefined;
|
|
121
120
|
onCheckedChange?: ((details: sprawlifySwitch.CheckedChangeDetails) => any) | undefined;
|
|
121
|
+
"onUpdate:checked"?: ((checked: boolean) => any) | undefined;
|
|
122
122
|
}>, {
|
|
123
123
|
disabled: boolean;
|
|
124
|
+
invalid: boolean;
|
|
125
|
+
readOnly: boolean;
|
|
124
126
|
required: boolean;
|
|
125
127
|
checked: boolean;
|
|
126
|
-
readOnly: boolean;
|
|
127
|
-
invalid: boolean;
|
|
128
128
|
defaultChecked: boolean;
|
|
129
129
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
130
130
|
default?: (props: {}) => any;
|
|
@@ -164,9 +164,9 @@ declare const __VLS_export: __VLS_WithSlots<vue.DefineComponent<TabsRootProps, {
|
|
|
164
164
|
onValueChange?: ((details: tabs.ValueChangeDetails) => any) | undefined;
|
|
165
165
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
166
166
|
}>, {
|
|
167
|
+
deselectable: boolean;
|
|
167
168
|
loopFocus: boolean;
|
|
168
169
|
composite: boolean;
|
|
169
|
-
deselectable: boolean;
|
|
170
170
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
171
171
|
default?: (props: {}) => any;
|
|
172
172
|
}>;
|
|
@@ -297,34 +297,34 @@ HTMLAttributes {}
|
|
|
297
297
|
interface TagsInputRootEmits extends RootEmits {}
|
|
298
298
|
declare const _default$12: typeof __VLS_export;
|
|
299
299
|
declare const __VLS_export: __VLS_WithSlots<vue.DefineComponent<TagsInputRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
300
|
-
valueChange: (details: tagsInput.ValueChangeDetails) => any;
|
|
301
|
-
"update:modelValue": (value: string[]) => any;
|
|
302
300
|
focusOutside: (event: _sprawlify_primitives_machines_dialog0.FocusOutsideEvent) => any;
|
|
303
301
|
interactOutside: (event: _sprawlify_primitives_machines_dialog0.InteractOutsideEvent) => any;
|
|
304
302
|
pointerDownOutside: (event: _sprawlify_primitives_machines_dialog0.PointerDownOutsideEvent) => any;
|
|
303
|
+
valueChange: (details: tagsInput.ValueChangeDetails) => any;
|
|
304
|
+
valueInvalid: (details: tagsInput.ValidityChangeDetails) => any;
|
|
305
|
+
"update:modelValue": (value: string[]) => any;
|
|
305
306
|
highlightChange: (details: tagsInput.HighlightChangeDetails) => any;
|
|
306
307
|
inputValueChange: (details: tagsInput.InputValueChangeDetails) => any;
|
|
307
|
-
valueInvalid: (details: tagsInput.ValidityChangeDetails) => any;
|
|
308
308
|
"update:inputValue": (value: string) => any;
|
|
309
309
|
}, string, vue.PublicProps, Readonly<TagsInputRootProps> & Readonly<{
|
|
310
|
-
onValueChange?: ((details: tagsInput.ValueChangeDetails) => any) | undefined;
|
|
311
|
-
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
312
310
|
onFocusOutside?: ((event: _sprawlify_primitives_machines_dialog0.FocusOutsideEvent) => any) | undefined;
|
|
313
311
|
onInteractOutside?: ((event: _sprawlify_primitives_machines_dialog0.InteractOutsideEvent) => any) | undefined;
|
|
314
312
|
onPointerDownOutside?: ((event: _sprawlify_primitives_machines_dialog0.PointerDownOutsideEvent) => any) | undefined;
|
|
313
|
+
onValueChange?: ((details: tagsInput.ValueChangeDetails) => any) | undefined;
|
|
314
|
+
onValueInvalid?: ((details: tagsInput.ValidityChangeDetails) => any) | undefined;
|
|
315
|
+
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
315
316
|
onHighlightChange?: ((details: tagsInput.HighlightChangeDetails) => any) | undefined;
|
|
316
317
|
onInputValueChange?: ((details: tagsInput.InputValueChangeDetails) => any) | undefined;
|
|
317
|
-
onValueInvalid?: ((details: tagsInput.ValidityChangeDetails) => any) | undefined;
|
|
318
318
|
"onUpdate:inputValue"?: ((value: string) => any) | undefined;
|
|
319
319
|
}>, {
|
|
320
320
|
disabled: boolean;
|
|
321
|
+
invalid: boolean;
|
|
322
|
+
readOnly: boolean;
|
|
321
323
|
required: boolean;
|
|
324
|
+
allowOverflow: boolean;
|
|
322
325
|
autoFocus: boolean;
|
|
323
|
-
readOnly: boolean;
|
|
324
|
-
invalid: boolean;
|
|
325
326
|
editable: boolean;
|
|
326
327
|
addOnPaste: boolean;
|
|
327
|
-
allowOverflow: boolean;
|
|
328
328
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
329
329
|
default?: (props: {}) => any;
|
|
330
330
|
}>;
|
|
@@ -82,9 +82,9 @@ declare const __VLS_export$1: __VLS_WithSlots$1<vue.DefineComponent<ToggleGroupR
|
|
|
82
82
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
83
83
|
}>, {
|
|
84
84
|
disabled: boolean;
|
|
85
|
-
loopFocus: boolean;
|
|
86
|
-
deselectable: boolean;
|
|
87
85
|
multiple: boolean;
|
|
86
|
+
deselectable: boolean;
|
|
87
|
+
loopFocus: boolean;
|
|
88
88
|
rovingFocus: boolean;
|
|
89
89
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>, {
|
|
90
90
|
default?: (props: {}) => any;
|
|
@@ -163,8 +163,8 @@ declare const __VLS_export$1: __VLS_WithSlots$1<vue.DefineComponent<TooltipRootP
|
|
|
163
163
|
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
164
164
|
}>, {
|
|
165
165
|
disabled: boolean;
|
|
166
|
-
open: boolean;
|
|
167
166
|
defaultOpen: boolean;
|
|
167
|
+
open: boolean;
|
|
168
168
|
closeOnEscape: boolean;
|
|
169
169
|
closeOnClick: boolean;
|
|
170
170
|
closeOnPointerDown: boolean;
|
|
@@ -2,7 +2,7 @@ import { a as PolymorphicProps } from "../../factory-bfEpUaB3.js";
|
|
|
2
2
|
import { a as Optional, r as EmitFn$1 } from "../../types-CcpL2F4P.js";
|
|
3
3
|
import { r as PropTypes } from "../../index-ga2m_BD2.js";
|
|
4
4
|
import { t as RenderStrategyProps } from "../../use-render-strategy-CIHTgh6L.js";
|
|
5
|
-
import { t as tourAnatomy } from "../../tour-anatomy-
|
|
5
|
+
import { t as tourAnatomy } from "../../tour-anatomy-D9v3xtYJ.js";
|
|
6
6
|
import * as vue from "vue";
|
|
7
7
|
import { ButtonHTMLAttributes, ComputedRef, HTMLAttributes, MaybeRef, SlotsType, UnwrapRef } from "vue";
|
|
8
8
|
import { WaitForOptions as WaitOptions$1 } from "@sprawlify/primitives/dom-query";
|
|
@@ -217,22 +217,22 @@ interface TourRootProps extends TourRootBaseProps {}
|
|
|
217
217
|
interface TourRootEmits extends RootEmits {}
|
|
218
218
|
declare const _default$12: typeof __VLS_export$3;
|
|
219
219
|
declare const __VLS_export$3: __VLS_WithSlots$3<vue.DefineComponent<TourRootProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
220
|
-
|
|
220
|
+
statusChange: (details: tour.StatusChangeDetails) => any;
|
|
221
221
|
exitComplete: () => any;
|
|
222
222
|
focusOutside: (event: _sprawlify_primitives_machines_dialog0.FocusOutsideEvent) => any;
|
|
223
223
|
interactOutside: (event: _sprawlify_primitives_machines_dialog0.InteractOutsideEvent) => any;
|
|
224
224
|
pointerDownOutside: (event: _sprawlify_primitives_machines_dialog0.PointerDownOutsideEvent) => any;
|
|
225
|
-
|
|
225
|
+
stepChange: (details: tour.StepChangeDetails) => any;
|
|
226
226
|
stepsChange: (details: {
|
|
227
227
|
steps: tour.StepDetails[];
|
|
228
228
|
}) => any;
|
|
229
229
|
}, string, vue.PublicProps, Readonly<TourRootProps> & Readonly<{
|
|
230
|
-
|
|
230
|
+
onStatusChange?: ((details: tour.StatusChangeDetails) => any) | undefined;
|
|
231
231
|
onExitComplete?: (() => any) | undefined;
|
|
232
232
|
onFocusOutside?: ((event: _sprawlify_primitives_machines_dialog0.FocusOutsideEvent) => any) | undefined;
|
|
233
233
|
onInteractOutside?: ((event: _sprawlify_primitives_machines_dialog0.InteractOutsideEvent) => any) | undefined;
|
|
234
234
|
onPointerDownOutside?: ((event: _sprawlify_primitives_machines_dialog0.PointerDownOutsideEvent) => any) | undefined;
|
|
235
|
-
|
|
235
|
+
onStepChange?: ((details: tour.StepChangeDetails) => any) | undefined;
|
|
236
236
|
onStepsChange?: ((details: {
|
|
237
237
|
steps: tour.StepDetails[];
|
|
238
238
|
}) => any) | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { t as treeViewAnatomy } from "../../tree-view-anatomy-DiA9oPpn.js";
|
|
2
2
|
import { f as TreeCollection, g as createTreeCollection, h as createFileTreeCollection, m as TreeNode } from "../../index-DuD8fQUF.js";
|
|
3
|
-
import { $ as TreeViewContextProps, A as UseTreeViewNodeContext, B as _default$12, C as TreeViewRootProviderProps, Ct as _default$2, D as _default$15, E as TreeViewNodeProviderProps, Et as _default$1, F as TreeViewNodeCheckboxIndicatorBaseProps, G as TreeViewItemProps, H as TreeViewLabelProps, I as TreeViewNodeCheckboxIndicatorProps, J as TreeViewItemTextProps, K as _default$8, L as _default$13, M as TreeViewNodeRenameInputBaseProps, N as TreeViewNodeRenameInputProps, O as TreeViewNodeContextProps, P as _default$16, Q as _default$9, R as TreeViewNodeCheckboxBaseProps, S as TreeViewRootProviderComponent, St as TreeViewBranchControlProps, T as TreeViewNodeProviderBaseProps, Tt as TreeViewBranchContentProps, U as _default$11, V as TreeViewLabelBaseProps, W as TreeViewItemBaseProps, X as TreeViewItemIndicatorBaseProps, Y as _default$10, Z as TreeViewItemIndicatorProps, _ as TreeViewRootComponent, _t as _default$4, a as TreeViewLoadChildrenDetails, at as useTreeView, b as _default$17, bt as _default$3, c as TreeViewNodeState, ct as _default, d as TreeViewSelectionChangeDetails, dt as _default$6, et as _default$7, f as tree_view_d_exports, ft as TreeViewBranchTextBaseProps, g as TreeViewRootBaseProps, gt as TreeViewBranchIndicatorProps, h as _default$19, ht as TreeViewBranchIndicatorBaseProps, i as TreeViewLoadChildrenCompleteDetails, it as UseTreeViewReturn, j as useTreeViewNodeContext, k as _default$14, l as TreeViewRenameCompleteDetails, lt as TreeViewBranchTriggerBaseProps, m as TreeViewTreeProps, mt as _default$5, n as TreeViewExpandedChangeDetails, nt as useTreeViewContext, o as TreeViewLoadChildrenErrorDetails, ot as TreeViewBranchBaseProps, p as TreeViewTreeBaseProps, pt as TreeViewBranchTextProps, q as TreeViewItemTextBaseProps, r as TreeViewFocusChangeDetails, rt as UseTreeViewProps, s as TreeViewNodeProps, st as TreeViewBranchProps, t as TreeViewCheckedChangeDetails, tt as UseTreeViewContext, u as TreeViewRenameStartDetails, ut as TreeViewBranchTriggerProps, v as TreeViewRootComponentProps, vt as TreeViewBranchIndentGuideBaseProps, w as _default$18, wt as TreeViewBranchContentBaseProps, x as TreeViewRootProviderBaseProps, xt as TreeViewBranchControlBaseProps, y as TreeViewRootProps, yt as TreeViewBranchIndentGuideProps, z as TreeViewNodeCheckboxProps } from "../../index-
|
|
3
|
+
import { $ as TreeViewContextProps, A as UseTreeViewNodeContext, B as _default$12, C as TreeViewRootProviderProps, Ct as _default$2, D as _default$15, E as TreeViewNodeProviderProps, Et as _default$1, F as TreeViewNodeCheckboxIndicatorBaseProps, G as TreeViewItemProps, H as TreeViewLabelProps, I as TreeViewNodeCheckboxIndicatorProps, J as TreeViewItemTextProps, K as _default$8, L as _default$13, M as TreeViewNodeRenameInputBaseProps, N as TreeViewNodeRenameInputProps, O as TreeViewNodeContextProps, P as _default$16, Q as _default$9, R as TreeViewNodeCheckboxBaseProps, S as TreeViewRootProviderComponent, St as TreeViewBranchControlProps, T as TreeViewNodeProviderBaseProps, Tt as TreeViewBranchContentProps, U as _default$11, V as TreeViewLabelBaseProps, W as TreeViewItemBaseProps, X as TreeViewItemIndicatorBaseProps, Y as _default$10, Z as TreeViewItemIndicatorProps, _ as TreeViewRootComponent, _t as _default$4, a as TreeViewLoadChildrenDetails, at as useTreeView, b as _default$17, bt as _default$3, c as TreeViewNodeState, ct as _default, d as TreeViewSelectionChangeDetails, dt as _default$6, et as _default$7, f as tree_view_d_exports, ft as TreeViewBranchTextBaseProps, g as TreeViewRootBaseProps, gt as TreeViewBranchIndicatorProps, h as _default$19, ht as TreeViewBranchIndicatorBaseProps, i as TreeViewLoadChildrenCompleteDetails, it as UseTreeViewReturn, j as useTreeViewNodeContext, k as _default$14, l as TreeViewRenameCompleteDetails, lt as TreeViewBranchTriggerBaseProps, m as TreeViewTreeProps, mt as _default$5, n as TreeViewExpandedChangeDetails, nt as useTreeViewContext, o as TreeViewLoadChildrenErrorDetails, ot as TreeViewBranchBaseProps, p as TreeViewTreeBaseProps, pt as TreeViewBranchTextProps, q as TreeViewItemTextBaseProps, r as TreeViewFocusChangeDetails, rt as UseTreeViewProps, s as TreeViewNodeProps, st as TreeViewBranchProps, t as TreeViewCheckedChangeDetails, tt as UseTreeViewContext, u as TreeViewRenameStartDetails, ut as TreeViewBranchTriggerProps, v as TreeViewRootComponentProps, vt as TreeViewBranchIndentGuideBaseProps, w as _default$18, wt as TreeViewBranchContentBaseProps, x as TreeViewRootProviderBaseProps, xt as TreeViewBranchControlBaseProps, y as TreeViewRootProps, yt as TreeViewBranchIndentGuideProps, z as TreeViewNodeCheckboxProps } from "../../index-CODK2VY0.js";
|
|
4
4
|
export { TreeCollection, TreeNode, tree_view_d_exports as TreeView, _default as TreeViewBranch, TreeViewBranchBaseProps, _default$1 as TreeViewBranchContent, TreeViewBranchContentBaseProps, TreeViewBranchContentProps, _default$2 as TreeViewBranchControl, TreeViewBranchControlBaseProps, TreeViewBranchControlProps, _default$3 as TreeViewBranchIndentGuide, TreeViewBranchIndentGuideBaseProps, TreeViewBranchIndentGuideProps, _default$4 as TreeViewBranchIndicator, TreeViewBranchIndicatorBaseProps, TreeViewBranchIndicatorProps, TreeViewBranchProps, _default$5 as TreeViewBranchText, TreeViewBranchTextBaseProps, TreeViewBranchTextProps, _default$6 as TreeViewBranchTrigger, TreeViewBranchTriggerBaseProps, TreeViewBranchTriggerProps, TreeViewCheckedChangeDetails, _default$7 as TreeViewContext, TreeViewContextProps, TreeViewExpandedChangeDetails, TreeViewFocusChangeDetails, _default$8 as TreeViewItem, TreeViewItemBaseProps, _default$9 as TreeViewItemIndicator, TreeViewItemIndicatorBaseProps, TreeViewItemIndicatorProps, TreeViewItemProps, _default$10 as TreeViewItemText, TreeViewItemTextBaseProps, TreeViewItemTextProps, _default$11 as TreeViewLabel, TreeViewLabelBaseProps, TreeViewLabelProps, TreeViewLoadChildrenCompleteDetails, TreeViewLoadChildrenDetails, TreeViewLoadChildrenErrorDetails, _default$12 as TreeViewNodeCheckbox, TreeViewNodeCheckboxBaseProps, _default$13 as TreeViewNodeCheckboxIndicator, TreeViewNodeCheckboxIndicatorBaseProps, TreeViewNodeCheckboxIndicatorProps, TreeViewNodeCheckboxProps, _default$14 as TreeViewNodeContext, TreeViewNodeContextProps, TreeViewNodeProps, _default$15 as TreeViewNodeProvider, TreeViewNodeProviderBaseProps, TreeViewNodeProviderProps, _default$16 as TreeViewNodeRenameInput, TreeViewNodeRenameInputBaseProps, TreeViewNodeRenameInputProps, TreeViewNodeState, TreeViewRenameCompleteDetails, TreeViewRenameStartDetails, _default$17 as TreeViewRoot, TreeViewRootBaseProps, TreeViewRootComponent, TreeViewRootComponentProps, TreeViewRootProps, _default$18 as TreeViewRootProvider, TreeViewRootProviderBaseProps, TreeViewRootProviderComponent, TreeViewRootProviderProps, TreeViewSelectionChangeDetails, _default$19 as TreeViewTree, TreeViewTreeBaseProps, TreeViewTreeProps, UseTreeViewContext, UseTreeViewNodeContext, UseTreeViewProps, UseTreeViewReturn, createFileTreeCollection, createTreeCollection, treeViewAnatomy, useTreeView, useTreeViewContext, useTreeViewNodeContext };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as _sprawlify_primitives_anatomy0 from "@sprawlify/primitives/anatomy";
|
|
2
2
|
|
|
3
3
|
//#region src/components/date-picker/date-picker-anatomy.d.ts
|
|
4
|
-
declare const datePickerAnatomy: _sprawlify_primitives_anatomy0.AnatomyInstance<"trigger" | "content" | "positioner" | "root" | "
|
|
4
|
+
declare const datePickerAnatomy: _sprawlify_primitives_anatomy0.AnatomyInstance<"trigger" | "content" | "positioner" | "root" | "control" | "nextTrigger" | "prevTrigger" | "label" | "valueText" | "view" | "input" | "clearTrigger" | "table" | "monthSelect" | "presetTrigger" | "rangeText" | "tableBody" | "tableCell" | "tableCellTrigger" | "tableHead" | "tableHeader" | "tableRow" | "viewControl" | "viewTrigger" | "yearSelect">;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { datePickerAnatomy as t };
|
|
@@ -398,9 +398,9 @@ declare const _default$1: typeof __VLS_export$1;
|
|
|
398
398
|
declare const __VLS_export$1: <T extends TreeNode>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
399
399
|
props: vue.PublicProps & __VLS_PrettifyLocal<TreeViewRootProps<T> & {
|
|
400
400
|
onFocusChange?: ((details: treeView.FocusChangeDetails<any>) => any) | undefined;
|
|
401
|
+
onCheckedChange?: ((details: treeView.CheckedChangeDetails) => any) | undefined;
|
|
401
402
|
onExpandedChange?: ((details: treeView.ExpandedChangeDetails<any>) => any) | undefined;
|
|
402
403
|
onSelectionChange?: ((details: treeView.SelectionChangeDetails<any>) => any) | undefined;
|
|
403
|
-
onCheckedChange?: ((details: treeView.CheckedChangeDetails) => any) | undefined;
|
|
404
404
|
onLoadChildrenComplete?: ((details: treeView.LoadChildrenCompleteDetails<T>) => any) | undefined;
|
|
405
405
|
onLoadChildrenError?: ((details: treeView.LoadChildrenErrorDetails<T>) => any) | undefined;
|
|
406
406
|
onRenameStart?: ((details: treeView.RenameStartDetails<T>) => any) | undefined;
|
|
@@ -418,7 +418,7 @@ declare const __VLS_export$1: <T extends TreeNode>(__VLS_props: NonNullable<Awai
|
|
|
418
418
|
slots: {
|
|
419
419
|
default?: (props: {}) => any;
|
|
420
420
|
};
|
|
421
|
-
emit: ((evt: "focusChange", details: treeView.FocusChangeDetails<any>) => void) & ((evt: "
|
|
421
|
+
emit: ((evt: "focusChange", details: treeView.FocusChangeDetails<any>) => void) & ((evt: "checkedChange", details: treeView.CheckedChangeDetails) => void) & ((evt: "expandedChange", details: treeView.ExpandedChangeDetails<any>) => void) & ((evt: "selectionChange", details: treeView.SelectionChangeDetails<any>) => void) & ((evt: "loadChildrenComplete", details: treeView.LoadChildrenCompleteDetails<T>) => void) & ((evt: "loadChildrenError", details: treeView.LoadChildrenErrorDetails<T>) => void) & ((evt: "renameStart", details: treeView.RenameStartDetails<T>) => void) & ((evt: "beforeRename", details: treeView.RenameCompleteDetails) => void) & ((evt: "renameComplete", details: treeView.RenameCompleteDetails) => void) & ((evt: "update:expandedValue", value: string[]) => void) & ((evt: "update:focusedValue", value: string | null) => void) & ((evt: "update:selectedValue", value: string[]) => void) & ((evt: "update:checkedValue", value: string[]) => void);
|
|
422
422
|
}>) => vue.VNode & {
|
|
423
423
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
424
424
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as _sprawlify_primitives_anatomy0 from "@sprawlify/primitives/anatomy";
|
|
2
2
|
|
|
3
3
|
//#region src/components/listbox/listbox-anatomy.d.ts
|
|
4
|
-
declare const listboxAnatomy: _sprawlify_primitives_anatomy0.AnatomyInstance<"content" | "root" | "
|
|
4
|
+
declare const listboxAnatomy: _sprawlify_primitives_anatomy0.AnatomyInstance<"content" | "root" | "item" | "itemGroup" | "label" | "valueText" | "input" | "itemText" | "itemIndicator" | "itemGroupLabel" | "empty">;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { listboxAnatomy as t };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as _sprawlify_primitives_anatomy0 from "@sprawlify/primitives/anatomy";
|
|
2
2
|
|
|
3
3
|
//#region src/components/segment-group/segment-group-anatomy.d.ts
|
|
4
|
-
declare const segmentGroupAnatomy: _sprawlify_primitives_anatomy0.Anatomy<"root" | "
|
|
4
|
+
declare const segmentGroupAnatomy: _sprawlify_primitives_anatomy0.Anatomy<"root" | "item" | "indicator" | "label" | "itemText" | "itemControl">;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { segmentGroupAnatomy as t };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as _sprawlify_primitives_anatomy0 from "@sprawlify/primitives/anatomy";
|
|
2
2
|
|
|
3
3
|
//#region src/components/tour/tour-anatomy.d.ts
|
|
4
|
-
declare const tourAnatomy: _sprawlify_primitives_anatomy0.AnatomyInstance<"
|
|
4
|
+
declare const tourAnatomy: _sprawlify_primitives_anatomy0.AnatomyInstance<"title" | "content" | "positioner" | "backdrop" | "description" | "closeTrigger" | "control" | "progressText" | "arrow" | "arrowTip" | "actionTrigger" | "spotlight">;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { tourAnatomy as t };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sprawlify/vue",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.94",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Vue wrapper for primitives.",
|
|
6
6
|
"author": "sprawlify <npm@sprawlify.com>",
|
|
@@ -268,7 +268,7 @@
|
|
|
268
268
|
"access": "public"
|
|
269
269
|
},
|
|
270
270
|
"dependencies": {
|
|
271
|
-
"@sprawlify/primitives": "0.0.
|
|
271
|
+
"@sprawlify/primitives": "0.0.94"
|
|
272
272
|
},
|
|
273
273
|
"peerDependencies": {
|
|
274
274
|
"vue": ">=3.0.0"
|