dialkit 1.2.1 → 1.3.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/README.md +220 -3
- package/dist/dropdown-position.d.ts +15 -0
- package/dist/dropdown-position.js +22 -0
- package/dist/dropdown-position.js.map +1 -0
- package/dist/index.cjs +697 -307
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +42 -5
- package/dist/index.d.ts +42 -5
- package/dist/index.js +720 -331
- package/dist/index.js.map +1 -1
- package/dist/panel-drag.d.ts +19 -0
- package/dist/panel-drag.js +72 -0
- package/dist/panel-drag.js.map +1 -0
- package/dist/solid/index.cjs +661 -204
- package/dist/solid/index.cjs.map +1 -1
- package/dist/solid/index.d.cts +40 -3
- package/dist/solid/index.d.ts +40 -3
- package/dist/solid/index.js +646 -190
- package/dist/solid/index.js.map +1 -1
- package/dist/store/index.cjs +272 -41
- package/dist/store/index.cjs.map +1 -1
- package/dist/store/index.d.cts +30 -3
- package/dist/store/index.d.ts +30 -3
- package/dist/store/index.js +269 -40
- package/dist/store/index.js.map +1 -1
- package/dist/styles.css +105 -7
- package/dist/svelte/components/DialRoot.svelte +176 -11
- package/dist/svelte/components/DialRoot.svelte.d.ts +1 -0
- package/dist/svelte/components/DialRoot.svelte.d.ts.map +1 -1
- package/dist/svelte/components/Folder.svelte +24 -13
- package/dist/svelte/components/Folder.svelte.d.ts +1 -0
- package/dist/svelte/components/Folder.svelte.d.ts.map +1 -1
- package/dist/svelte/components/Panel.svelte +98 -71
- package/dist/svelte/components/Panel.svelte.d.ts +2 -0
- package/dist/svelte/components/Panel.svelte.d.ts.map +1 -1
- package/dist/svelte/components/PresetManager.svelte +5 -5
- package/dist/svelte/components/PresetManager.svelte.d.ts.map +1 -1
- package/dist/svelte/components/SelectControl.svelte +6 -14
- package/dist/svelte/components/SelectControl.svelte.d.ts.map +1 -1
- package/dist/svelte/createDialKit.svelte.d.ts +11 -1
- package/dist/svelte/createDialKit.svelte.d.ts.map +1 -1
- package/dist/svelte/createDialKit.svelte.js +61 -34
- package/dist/svelte/index.d.ts +3 -3
- package/dist/svelte/index.d.ts.map +1 -1
- package/dist/svelte/index.js +1 -1
- package/dist/svelte/theme-css.d.ts +1 -1
- package/dist/svelte/theme-css.d.ts.map +1 -1
- package/dist/svelte/theme-css.js +105 -7
- package/dist/vue/index.cjs +573 -132
- package/dist/vue/index.cjs.map +1 -1
- package/dist/vue/index.d.cts +53 -6
- package/dist/vue/index.d.ts +53 -6
- package/dist/vue/index.js +573 -133
- package/dist/vue/index.js.map +1 -1
- package/package.json +2 -2
package/dist/vue/index.d.cts
CHANGED
|
@@ -43,6 +43,9 @@ type DialConfig = {
|
|
|
43
43
|
type ResolvedValues<T extends DialConfig> = {
|
|
44
44
|
[K in keyof T]: T[K] extends [number, number, number, number?] ? number : T[K] extends SpringConfig ? TransitionConfig : T[K] extends EasingConfig ? TransitionConfig : T[K] extends SelectConfig ? string : T[K] extends ColorConfig ? string : T[K] extends TextConfig ? string : T[K] extends DialConfig ? ResolvedValues<T[K]> : T[K];
|
|
45
45
|
};
|
|
46
|
+
type DialKitValueUpdates<T extends DialConfig> = {
|
|
47
|
+
[K in keyof T as K extends '_collapsed' ? never : K]?: T[K] extends [number, number, number, number?] ? number : T[K] extends SpringConfig | EasingConfig ? TransitionConfig : T[K] extends ActionConfig ? never : T[K] extends SelectConfig | ColorConfig | TextConfig ? string : T[K] extends DialConfig ? DialKitValueUpdates<T[K]> : T[K];
|
|
48
|
+
};
|
|
46
49
|
type ShortcutMode = 'fine' | 'normal' | 'coarse';
|
|
47
50
|
type ShortcutInteraction = 'scroll' | 'drag' | 'move' | 'scroll-only';
|
|
48
51
|
type ShortcutConfig = {
|
|
@@ -81,6 +84,15 @@ type Preset = {
|
|
|
81
84
|
name: string;
|
|
82
85
|
values: Record<string, DialValue>;
|
|
83
86
|
};
|
|
87
|
+
type DialKitPersistOptions = boolean | {
|
|
88
|
+
key?: string;
|
|
89
|
+
storage?: 'localStorage' | 'sessionStorage';
|
|
90
|
+
presets?: boolean;
|
|
91
|
+
};
|
|
92
|
+
type DialStorePanelOptions = {
|
|
93
|
+
retainOnUnmount?: boolean;
|
|
94
|
+
persist?: DialKitPersistOptions;
|
|
95
|
+
};
|
|
84
96
|
declare class DialStoreClass {
|
|
85
97
|
private panels;
|
|
86
98
|
private listeners;
|
|
@@ -90,10 +102,16 @@ declare class DialStoreClass {
|
|
|
90
102
|
private presets;
|
|
91
103
|
private activePreset;
|
|
92
104
|
private baseValues;
|
|
93
|
-
|
|
94
|
-
|
|
105
|
+
private defaultValues;
|
|
106
|
+
private registrationCounts;
|
|
107
|
+
private retainedPanels;
|
|
108
|
+
private persistConfigs;
|
|
109
|
+
registerPanel(id: string, name: string, config: DialConfig, shortcuts?: Record<string, ShortcutConfig>, options?: DialStorePanelOptions): void;
|
|
110
|
+
updatePanel(id: string, name: string, config: DialConfig, shortcuts?: Record<string, ShortcutConfig>, options?: DialStorePanelOptions): void;
|
|
95
111
|
unregisterPanel(id: string): void;
|
|
96
112
|
updateValue(panelId: string, path: string, value: DialValue): void;
|
|
113
|
+
updateValues(panelId: string, updates: Record<string, DialValue>): void;
|
|
114
|
+
resetValues(panelId: string): void;
|
|
97
115
|
updateSpringMode(panelId: string, path: string, mode: 'simple' | 'advanced'): void;
|
|
98
116
|
getSpringMode(panelId: string, path: string): 'simple' | 'advanced';
|
|
99
117
|
updateTransitionMode(panelId: string, path: string, mode: 'easing' | 'simple' | 'advanced'): void;
|
|
@@ -123,6 +141,13 @@ declare class DialStoreClass {
|
|
|
123
141
|
control: ControlMeta;
|
|
124
142
|
shortcut: ShortcutConfig;
|
|
125
143
|
}>;
|
|
144
|
+
private configurePanelRetention;
|
|
145
|
+
private reconcileValues;
|
|
146
|
+
private reconcilePresets;
|
|
147
|
+
private normalizePersistConfig;
|
|
148
|
+
private loadPersistedPanel;
|
|
149
|
+
private persistPanel;
|
|
150
|
+
private getStorage;
|
|
126
151
|
private findControlByPath;
|
|
127
152
|
private notify;
|
|
128
153
|
private notifyGlobal;
|
|
@@ -147,10 +172,20 @@ declare class DialStoreClass {
|
|
|
147
172
|
declare const DialStore: DialStoreClass;
|
|
148
173
|
|
|
149
174
|
interface UseDialOptions {
|
|
175
|
+
id?: string;
|
|
176
|
+
persist?: DialKitPersistOptions;
|
|
150
177
|
onAction?: (action: string) => void;
|
|
151
178
|
shortcuts?: Record<string, ShortcutConfig>;
|
|
152
179
|
}
|
|
180
|
+
interface DialKitController<T extends DialConfig> {
|
|
181
|
+
values: ComputedRef<ResolvedValues<T>>;
|
|
182
|
+
setValue: (path: string, value: DialValue) => void;
|
|
183
|
+
setValues: (values: DialKitValueUpdates<T>) => void;
|
|
184
|
+
resetValues: () => void;
|
|
185
|
+
getValues: () => ResolvedValues<T>;
|
|
186
|
+
}
|
|
153
187
|
declare function useDialKit<T extends DialConfig>(name: string, config: T, options?: UseDialOptions): ComputedRef<ResolvedValues<T>>;
|
|
188
|
+
declare function useDialKitController<T extends DialConfig>(name: string, config: T, options?: UseDialOptions): DialKitController<T>;
|
|
154
189
|
|
|
155
190
|
type DialPosition = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
|
|
156
191
|
type DialMode = 'popover' | 'inline';
|
|
@@ -178,7 +213,7 @@ declare const DialRoot: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
178
213
|
};
|
|
179
214
|
}>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
180
215
|
[key: string]: any;
|
|
181
|
-
}> | null, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin,
|
|
216
|
+
}> | null, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, "openChange"[], "openChange", vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
182
217
|
position: {
|
|
183
218
|
type: () => DialPosition;
|
|
184
219
|
default: string;
|
|
@@ -199,9 +234,11 @@ declare const DialRoot: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
199
234
|
type: BooleanConstructor;
|
|
200
235
|
default: boolean;
|
|
201
236
|
};
|
|
202
|
-
}>> & Readonly<{
|
|
203
|
-
|
|
237
|
+
}>> & Readonly<{
|
|
238
|
+
onOpenChange?: ((...args: any[]) => any) | undefined;
|
|
239
|
+
}>, {
|
|
204
240
|
defaultOpen: boolean;
|
|
241
|
+
mode: DialMode;
|
|
205
242
|
position: DialPosition;
|
|
206
243
|
theme: DialTheme;
|
|
207
244
|
productionEnabled: boolean;
|
|
@@ -211,6 +248,7 @@ interface DialKitDirectiveOptions {
|
|
|
211
248
|
position?: DialPosition;
|
|
212
249
|
defaultOpen?: boolean;
|
|
213
250
|
mode?: DialMode;
|
|
251
|
+
onOpenChange?: (open: boolean) => void;
|
|
214
252
|
}
|
|
215
253
|
type DialKitDirectiveValue = DialMode | DialKitDirectiveOptions | undefined;
|
|
216
254
|
declare const vDialKit: ObjectDirective<HTMLElement, DialKitDirectiveValue>;
|
|
@@ -379,6 +417,10 @@ declare const Folder: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
379
417
|
required: false;
|
|
380
418
|
default: null;
|
|
381
419
|
};
|
|
420
|
+
panelHeightOffset: {
|
|
421
|
+
type: NumberConstructor;
|
|
422
|
+
default: number;
|
|
423
|
+
};
|
|
382
424
|
}>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
383
425
|
[key: string]: any;
|
|
384
426
|
}>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, "openChange"[], "openChange", vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
@@ -403,6 +445,10 @@ declare const Folder: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
403
445
|
required: false;
|
|
404
446
|
default: null;
|
|
405
447
|
};
|
|
448
|
+
panelHeightOffset: {
|
|
449
|
+
type: NumberConstructor;
|
|
450
|
+
default: number;
|
|
451
|
+
};
|
|
406
452
|
}>> & Readonly<{
|
|
407
453
|
onOpenChange?: ((...args: any[]) => any) | undefined;
|
|
408
454
|
}>, {
|
|
@@ -410,6 +456,7 @@ declare const Folder: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
410
456
|
isRoot: boolean;
|
|
411
457
|
inline: boolean;
|
|
412
458
|
toolbar: (() => ReturnType<typeof h>) | null;
|
|
459
|
+
panelHeightOffset: number;
|
|
413
460
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
414
461
|
|
|
415
462
|
type ButtonGroupButton = {
|
|
@@ -672,4 +719,4 @@ declare const PresetManager: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
672
719
|
activePresetId: string | null;
|
|
673
720
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
674
721
|
|
|
675
|
-
export { type ActionConfig, ButtonGroup, type ColorConfig, ColorControl, type ControlMeta, type DialConfig, type DialKitDirectiveOptions, type DialKitDirectiveValue, type DialMode, type DialPosition, DialRoot, DialStore, type DialTheme, type DialValue, type EasingConfig, EasingVisualization, Folder, type PanelConfig, type Preset, PresetManager, type ResolvedValues, type SelectConfig, SelectControl, type ShortcutConfig, ShortcutKey, ShortcutListener, type ShortcutState, ShortcutsMenu, Slider, type SpringConfig, SpringControl, SpringVisualization, type TextConfig, TextControl, Toggle, type TransitionConfig, TransitionControl, type UseDialOptions, useDialKit, useShortcutContext, vDialKit };
|
|
722
|
+
export { type ActionConfig, ButtonGroup, type ColorConfig, ColorControl, type ControlMeta, type DialConfig, type DialKitController, type DialKitDirectiveOptions, type DialKitDirectiveValue, type DialKitPersistOptions, type DialKitValueUpdates, type DialMode, type DialPosition, DialRoot, DialStore, type DialTheme, type DialValue, type EasingConfig, EasingVisualization, Folder, type PanelConfig, type Preset, PresetManager, type ResolvedValues, type SelectConfig, SelectControl, type ShortcutConfig, ShortcutKey, ShortcutListener, type ShortcutState, ShortcutsMenu, Slider, type SpringConfig, SpringControl, SpringVisualization, type TextConfig, TextControl, Toggle, type TransitionConfig, TransitionControl, type UseDialOptions, useDialKit, useDialKitController, useShortcutContext, vDialKit };
|
package/dist/vue/index.d.ts
CHANGED
|
@@ -43,6 +43,9 @@ type DialConfig = {
|
|
|
43
43
|
type ResolvedValues<T extends DialConfig> = {
|
|
44
44
|
[K in keyof T]: T[K] extends [number, number, number, number?] ? number : T[K] extends SpringConfig ? TransitionConfig : T[K] extends EasingConfig ? TransitionConfig : T[K] extends SelectConfig ? string : T[K] extends ColorConfig ? string : T[K] extends TextConfig ? string : T[K] extends DialConfig ? ResolvedValues<T[K]> : T[K];
|
|
45
45
|
};
|
|
46
|
+
type DialKitValueUpdates<T extends DialConfig> = {
|
|
47
|
+
[K in keyof T as K extends '_collapsed' ? never : K]?: T[K] extends [number, number, number, number?] ? number : T[K] extends SpringConfig | EasingConfig ? TransitionConfig : T[K] extends ActionConfig ? never : T[K] extends SelectConfig | ColorConfig | TextConfig ? string : T[K] extends DialConfig ? DialKitValueUpdates<T[K]> : T[K];
|
|
48
|
+
};
|
|
46
49
|
type ShortcutMode = 'fine' | 'normal' | 'coarse';
|
|
47
50
|
type ShortcutInteraction = 'scroll' | 'drag' | 'move' | 'scroll-only';
|
|
48
51
|
type ShortcutConfig = {
|
|
@@ -81,6 +84,15 @@ type Preset = {
|
|
|
81
84
|
name: string;
|
|
82
85
|
values: Record<string, DialValue>;
|
|
83
86
|
};
|
|
87
|
+
type DialKitPersistOptions = boolean | {
|
|
88
|
+
key?: string;
|
|
89
|
+
storage?: 'localStorage' | 'sessionStorage';
|
|
90
|
+
presets?: boolean;
|
|
91
|
+
};
|
|
92
|
+
type DialStorePanelOptions = {
|
|
93
|
+
retainOnUnmount?: boolean;
|
|
94
|
+
persist?: DialKitPersistOptions;
|
|
95
|
+
};
|
|
84
96
|
declare class DialStoreClass {
|
|
85
97
|
private panels;
|
|
86
98
|
private listeners;
|
|
@@ -90,10 +102,16 @@ declare class DialStoreClass {
|
|
|
90
102
|
private presets;
|
|
91
103
|
private activePreset;
|
|
92
104
|
private baseValues;
|
|
93
|
-
|
|
94
|
-
|
|
105
|
+
private defaultValues;
|
|
106
|
+
private registrationCounts;
|
|
107
|
+
private retainedPanels;
|
|
108
|
+
private persistConfigs;
|
|
109
|
+
registerPanel(id: string, name: string, config: DialConfig, shortcuts?: Record<string, ShortcutConfig>, options?: DialStorePanelOptions): void;
|
|
110
|
+
updatePanel(id: string, name: string, config: DialConfig, shortcuts?: Record<string, ShortcutConfig>, options?: DialStorePanelOptions): void;
|
|
95
111
|
unregisterPanel(id: string): void;
|
|
96
112
|
updateValue(panelId: string, path: string, value: DialValue): void;
|
|
113
|
+
updateValues(panelId: string, updates: Record<string, DialValue>): void;
|
|
114
|
+
resetValues(panelId: string): void;
|
|
97
115
|
updateSpringMode(panelId: string, path: string, mode: 'simple' | 'advanced'): void;
|
|
98
116
|
getSpringMode(panelId: string, path: string): 'simple' | 'advanced';
|
|
99
117
|
updateTransitionMode(panelId: string, path: string, mode: 'easing' | 'simple' | 'advanced'): void;
|
|
@@ -123,6 +141,13 @@ declare class DialStoreClass {
|
|
|
123
141
|
control: ControlMeta;
|
|
124
142
|
shortcut: ShortcutConfig;
|
|
125
143
|
}>;
|
|
144
|
+
private configurePanelRetention;
|
|
145
|
+
private reconcileValues;
|
|
146
|
+
private reconcilePresets;
|
|
147
|
+
private normalizePersistConfig;
|
|
148
|
+
private loadPersistedPanel;
|
|
149
|
+
private persistPanel;
|
|
150
|
+
private getStorage;
|
|
126
151
|
private findControlByPath;
|
|
127
152
|
private notify;
|
|
128
153
|
private notifyGlobal;
|
|
@@ -147,10 +172,20 @@ declare class DialStoreClass {
|
|
|
147
172
|
declare const DialStore: DialStoreClass;
|
|
148
173
|
|
|
149
174
|
interface UseDialOptions {
|
|
175
|
+
id?: string;
|
|
176
|
+
persist?: DialKitPersistOptions;
|
|
150
177
|
onAction?: (action: string) => void;
|
|
151
178
|
shortcuts?: Record<string, ShortcutConfig>;
|
|
152
179
|
}
|
|
180
|
+
interface DialKitController<T extends DialConfig> {
|
|
181
|
+
values: ComputedRef<ResolvedValues<T>>;
|
|
182
|
+
setValue: (path: string, value: DialValue) => void;
|
|
183
|
+
setValues: (values: DialKitValueUpdates<T>) => void;
|
|
184
|
+
resetValues: () => void;
|
|
185
|
+
getValues: () => ResolvedValues<T>;
|
|
186
|
+
}
|
|
153
187
|
declare function useDialKit<T extends DialConfig>(name: string, config: T, options?: UseDialOptions): ComputedRef<ResolvedValues<T>>;
|
|
188
|
+
declare function useDialKitController<T extends DialConfig>(name: string, config: T, options?: UseDialOptions): DialKitController<T>;
|
|
154
189
|
|
|
155
190
|
type DialPosition = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
|
|
156
191
|
type DialMode = 'popover' | 'inline';
|
|
@@ -178,7 +213,7 @@ declare const DialRoot: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
178
213
|
};
|
|
179
214
|
}>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
180
215
|
[key: string]: any;
|
|
181
|
-
}> | null, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin,
|
|
216
|
+
}> | null, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, "openChange"[], "openChange", vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
182
217
|
position: {
|
|
183
218
|
type: () => DialPosition;
|
|
184
219
|
default: string;
|
|
@@ -199,9 +234,11 @@ declare const DialRoot: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
199
234
|
type: BooleanConstructor;
|
|
200
235
|
default: boolean;
|
|
201
236
|
};
|
|
202
|
-
}>> & Readonly<{
|
|
203
|
-
|
|
237
|
+
}>> & Readonly<{
|
|
238
|
+
onOpenChange?: ((...args: any[]) => any) | undefined;
|
|
239
|
+
}>, {
|
|
204
240
|
defaultOpen: boolean;
|
|
241
|
+
mode: DialMode;
|
|
205
242
|
position: DialPosition;
|
|
206
243
|
theme: DialTheme;
|
|
207
244
|
productionEnabled: boolean;
|
|
@@ -211,6 +248,7 @@ interface DialKitDirectiveOptions {
|
|
|
211
248
|
position?: DialPosition;
|
|
212
249
|
defaultOpen?: boolean;
|
|
213
250
|
mode?: DialMode;
|
|
251
|
+
onOpenChange?: (open: boolean) => void;
|
|
214
252
|
}
|
|
215
253
|
type DialKitDirectiveValue = DialMode | DialKitDirectiveOptions | undefined;
|
|
216
254
|
declare const vDialKit: ObjectDirective<HTMLElement, DialKitDirectiveValue>;
|
|
@@ -379,6 +417,10 @@ declare const Folder: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
379
417
|
required: false;
|
|
380
418
|
default: null;
|
|
381
419
|
};
|
|
420
|
+
panelHeightOffset: {
|
|
421
|
+
type: NumberConstructor;
|
|
422
|
+
default: number;
|
|
423
|
+
};
|
|
382
424
|
}>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
383
425
|
[key: string]: any;
|
|
384
426
|
}>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, "openChange"[], "openChange", vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
@@ -403,6 +445,10 @@ declare const Folder: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
403
445
|
required: false;
|
|
404
446
|
default: null;
|
|
405
447
|
};
|
|
448
|
+
panelHeightOffset: {
|
|
449
|
+
type: NumberConstructor;
|
|
450
|
+
default: number;
|
|
451
|
+
};
|
|
406
452
|
}>> & Readonly<{
|
|
407
453
|
onOpenChange?: ((...args: any[]) => any) | undefined;
|
|
408
454
|
}>, {
|
|
@@ -410,6 +456,7 @@ declare const Folder: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
410
456
|
isRoot: boolean;
|
|
411
457
|
inline: boolean;
|
|
412
458
|
toolbar: (() => ReturnType<typeof h>) | null;
|
|
459
|
+
panelHeightOffset: number;
|
|
413
460
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
414
461
|
|
|
415
462
|
type ButtonGroupButton = {
|
|
@@ -672,4 +719,4 @@ declare const PresetManager: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
672
719
|
activePresetId: string | null;
|
|
673
720
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
674
721
|
|
|
675
|
-
export { type ActionConfig, ButtonGroup, type ColorConfig, ColorControl, type ControlMeta, type DialConfig, type DialKitDirectiveOptions, type DialKitDirectiveValue, type DialMode, type DialPosition, DialRoot, DialStore, type DialTheme, type DialValue, type EasingConfig, EasingVisualization, Folder, type PanelConfig, type Preset, PresetManager, type ResolvedValues, type SelectConfig, SelectControl, type ShortcutConfig, ShortcutKey, ShortcutListener, type ShortcutState, ShortcutsMenu, Slider, type SpringConfig, SpringControl, SpringVisualization, type TextConfig, TextControl, Toggle, type TransitionConfig, TransitionControl, type UseDialOptions, useDialKit, useShortcutContext, vDialKit };
|
|
722
|
+
export { type ActionConfig, ButtonGroup, type ColorConfig, ColorControl, type ControlMeta, type DialConfig, type DialKitController, type DialKitDirectiveOptions, type DialKitDirectiveValue, type DialKitPersistOptions, type DialKitValueUpdates, type DialMode, type DialPosition, DialRoot, DialStore, type DialTheme, type DialValue, type EasingConfig, EasingVisualization, Folder, type PanelConfig, type Preset, PresetManager, type ResolvedValues, type SelectConfig, SelectControl, type ShortcutConfig, ShortcutKey, ShortcutListener, type ShortcutState, ShortcutsMenu, Slider, type SpringConfig, SpringControl, SpringVisualization, type TextConfig, TextControl, Toggle, type TransitionConfig, TransitionControl, type UseDialOptions, useDialKit, useDialKitController, useShortcutContext, vDialKit };
|