@vizejs/fresco 0.347.7 → 0.350.2

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.
Files changed (33) hide show
  1. package/dist/app-DJImCkSW.d.mts +135 -0
  2. package/dist/app-DJImCkSW.d.mts.map +1 -0
  3. package/dist/{useInput-iUuaOefz.mjs → app-D_Ke7C8w.mjs} +2 -216
  4. package/dist/{useInput-iUuaOefz.mjs.map → app-D_Ke7C8w.mjs.map} +1 -1
  5. package/dist/components/index.d.mts +2 -2
  6. package/dist/components/index.mjs +1 -1
  7. package/dist/{components-rzllq5gt.mjs → components-3-vKPu1z.mjs} +2 -2
  8. package/dist/{components-rzllq5gt.mjs.map → components-3-vKPu1z.mjs.map} +1 -1
  9. package/dist/composables/index.d.mts +3 -2
  10. package/dist/composables/index.mjs +3 -2
  11. package/dist/{composables-Dh8YqmVY.mjs → composables-Da3c5pxz.mjs} +3 -2
  12. package/dist/{composables-Dh8YqmVY.mjs.map → composables-Da3c5pxz.mjs.map} +1 -1
  13. package/dist/{index-CQHg8OjC.d.mts → index-D2kUje57.d.mts} +184 -378
  14. package/dist/index-D2kUje57.d.mts.map +1 -0
  15. package/dist/{index-Dwx6lKP0.d.mts → index-DqGcW9sz.d.mts} +2 -85
  16. package/dist/index-DqGcW9sz.d.mts.map +1 -0
  17. package/dist/index.d.mts +7 -136
  18. package/dist/index.mjs +4 -3
  19. package/dist/index.mjs.map +1 -1
  20. package/dist/renderer-DWG0G3g8.d.mts +198 -0
  21. package/dist/renderer-DWG0G3g8.d.mts.map +1 -0
  22. package/dist/testing/index.d.mts +124 -0
  23. package/dist/testing/index.d.mts.map +1 -0
  24. package/dist/testing/index.mjs +282 -0
  25. package/dist/testing/index.mjs.map +1 -0
  26. package/dist/useApp-CNjer3hJ.d.mts +86 -0
  27. package/dist/useApp-CNjer3hJ.d.mts.map +1 -0
  28. package/dist/useInput-BpH-JIU3.mjs +219 -0
  29. package/dist/useInput-BpH-JIU3.mjs.map +1 -0
  30. package/package.json +8 -4
  31. package/dist/index-CQHg8OjC.d.mts.map +0 -1
  32. package/dist/index-Dwx6lKP0.d.mts.map +0 -1
  33. package/dist/index.d.mts.map +0 -1
@@ -1,200 +1,6 @@
1
- import * as _$_vue_runtime_core0 from "@vue/runtime-core";
2
- import { PropType, Ref, RendererElement, RendererNode, VNode } from "@vue/runtime-core";
1
+ import { O as FrescoStyle, f as FrescoCanonicalStyle, l as FrescoAppearance, p as FrescoDimension, u as FrescoBorderStyle } from "./renderer-DWG0G3g8.mjs";
2
+ import { PropType, Ref, VNode } from "@vue/runtime-core";
3
3
 
4
- //#region src/protocol.d.ts
5
- /** Public JavaScript protocol shared by Fresco components and the renderer. */
6
- type FrescoRenderNodeKind = "root" | "box" | "text" | "input";
7
- type FrescoDimension = number | string;
8
- type FrescoDisplay = "flex" | "none";
9
- type FrescoPosition = "absolute" | "relative" | "static";
10
- type FrescoOverflow = "visible" | "hidden" | "scroll";
11
- type FrescoFlexDirection = "row" | "column" | "row-reverse" | "column-reverse";
12
- type FrescoFlexWrap = "nowrap" | "wrap" | "wrap-reverse";
13
- type FrescoJustifyContent = "flex-start" | "flex-end" | "start" | "end" | "center" | "space-between" | "space-around" | "space-evenly";
14
- type FrescoAlignItems = "flex-start" | "flex-end" | "start" | "end" | "center" | "stretch" | "baseline";
15
- type FrescoAlignSelf = "auto" | FrescoAlignItems;
16
- type FrescoAlignContent = "flex-start" | "flex-end" | "start" | "end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly";
17
- /** Canonical camelCase style fields. Components accept number or string dimensions. */
18
- interface FrescoCanonicalStyle<Dimension extends FrescoDimension = FrescoDimension> {
19
- display?: FrescoDisplay;
20
- position?: FrescoPosition;
21
- top?: Dimension;
22
- right?: Dimension;
23
- bottom?: Dimension;
24
- left?: Dimension;
25
- overflow?: FrescoOverflow;
26
- overflowX?: FrescoOverflow;
27
- overflowY?: FrescoOverflow;
28
- flexDirection?: FrescoFlexDirection;
29
- flexWrap?: FrescoFlexWrap;
30
- justifyContent?: FrescoJustifyContent;
31
- alignItems?: FrescoAlignItems;
32
- alignSelf?: FrescoAlignSelf;
33
- alignContent?: FrescoAlignContent;
34
- flexGrow?: number;
35
- flexShrink?: number;
36
- flexBasis?: Dimension;
37
- width?: Dimension;
38
- height?: Dimension;
39
- minWidth?: Dimension;
40
- minHeight?: Dimension;
41
- maxWidth?: Dimension;
42
- maxHeight?: Dimension;
43
- aspectRatio?: number;
44
- padding?: number;
45
- paddingTop?: number;
46
- paddingRight?: number;
47
- paddingBottom?: number;
48
- paddingLeft?: number;
49
- margin?: number;
50
- marginTop?: number;
51
- marginRight?: number;
52
- marginBottom?: number;
53
- marginLeft?: number;
54
- gap?: number;
55
- columnGap?: number;
56
- rowGap?: number;
57
- }
58
- /** Compatibility aliases accepted by intrinsic host-node style bags. */
59
- interface FrescoSnakeStyleAliases<Dimension extends FrescoDimension = FrescoDimension> {
60
- overflow_x?: FrescoOverflow;
61
- overflow_y?: FrescoOverflow;
62
- flex_direction?: FrescoFlexDirection;
63
- flex_wrap?: FrescoFlexWrap;
64
- justify_content?: FrescoJustifyContent;
65
- align_items?: FrescoAlignItems;
66
- align_self?: FrescoAlignSelf;
67
- align_content?: FrescoAlignContent;
68
- flex_grow?: number;
69
- flex_shrink?: number;
70
- flex_basis?: Dimension;
71
- min_width?: Dimension;
72
- min_height?: Dimension;
73
- max_width?: Dimension;
74
- max_height?: Dimension;
75
- aspect_ratio?: number;
76
- padding_top?: number;
77
- padding_right?: number;
78
- padding_bottom?: number;
79
- padding_left?: number;
80
- margin_top?: number;
81
- margin_right?: number;
82
- margin_bottom?: number;
83
- margin_left?: number;
84
- column_gap?: number;
85
- row_gap?: number;
86
- }
87
- type FrescoStyle<Dimension extends FrescoDimension = FrescoDimension> = FrescoCanonicalStyle<Dimension> & FrescoSnakeStyleAliases<Dimension>;
88
- /** Canonical style emitted to the native renderer. Dimensions are normalized to strings. */
89
- type FrescoRenderStyle = FrescoCanonicalStyle<string>;
90
- interface FrescoAppearance {
91
- fg?: string;
92
- bg?: string;
93
- bold?: boolean;
94
- dim?: boolean;
95
- italic?: boolean;
96
- underline?: boolean;
97
- inverse?: boolean;
98
- blink?: boolean;
99
- hidden?: boolean;
100
- strikethrough?: boolean;
101
- }
102
- type FrescoBorderStyle = "none" | "single" | "double" | "rounded" | "heavy" | "dashed";
103
- type FrescoTextWrapMode = "none" | "wrap" | "hard" | "truncate" | "truncate-start" | "truncate-middle" | "truncate-end";
104
- interface FrescoRenderNodeBase {
105
- id: number;
106
- style?: FrescoRenderStyle;
107
- appearance?: FrescoAppearance;
108
- border?: FrescoBorderStyle;
109
- children?: number[];
110
- }
111
- interface FrescoRootRenderNode extends FrescoRenderNodeBase {
112
- nodeType: "root";
113
- }
114
- interface FrescoBoxRenderNode extends FrescoRenderNodeBase {
115
- nodeType: "box";
116
- }
117
- interface FrescoTextRenderNode extends FrescoRenderNodeBase {
118
- nodeType: "text";
119
- text?: string;
120
- wrap?: boolean;
121
- wrapMode?: FrescoTextWrapMode;
122
- }
123
- interface FrescoInputRenderNode extends FrescoRenderNodeBase {
124
- nodeType: "input";
125
- value?: string;
126
- placeholder?: string;
127
- focused?: boolean;
128
- cursor?: number;
129
- mask?: boolean;
130
- maskChar?: string;
131
- }
132
- type UnionKeys<Union> = Union extends Union ? keyof Union : never;
133
- type StrictUnionHelper<Member, Union> = Member extends Member ? Member & Partial<Record<Exclude<UnionKeys<Union>, keyof Member>, never>> : never;
134
- type StrictUnion<Union> = StrictUnionHelper<Union, Union>;
135
- type FrescoRenderNode = StrictUnion<FrescoRootRenderNode | FrescoBoxRenderNode | FrescoTextRenderNode | FrescoInputRenderNode>;
136
- type KeyEventType = "press" | "repeat" | "release";
137
- interface FrescoModifiers {
138
- ctrl: boolean;
139
- alt: boolean;
140
- shift: boolean;
141
- meta: boolean;
142
- super: boolean;
143
- hyper: boolean;
144
- capsLock: boolean;
145
- numLock: boolean;
146
- }
147
- interface KeyEvent extends FrescoModifiers {
148
- type: "key";
149
- key?: string;
150
- char?: string;
151
- eventType?: KeyEventType;
152
- }
153
- interface PasteEvent {
154
- type: "paste";
155
- text: string;
156
- }
157
- interface ResizeEvent {
158
- type: "resize";
159
- width: number;
160
- height: number;
161
- }
162
- interface MouseEvent {
163
- type: "mouse";
164
- button?: string;
165
- x: number;
166
- y: number;
167
- }
168
- interface FocusEvent {
169
- type: "focus";
170
- focused: boolean;
171
- }
172
- interface CompositionEvent {
173
- type: "compositionstart" | "compositionupdate" | "compositionend";
174
- text: string;
175
- cursor: number;
176
- }
177
- type FrescoInputEvent = StrictUnion<KeyEvent | PasteEvent | ResizeEvent | MouseEvent | FocusEvent | CompositionEvent>;
178
- /** Compatibility alias for the pre-protocol event union name. */
179
- type InputEvent = FrescoInputEvent;
180
- //#endregion
181
- //#region src/renderer.d.ts
182
- /** @internal Mutable Vue host node; not part of the public render protocol. */
183
- interface FrescoNode extends RendererNode {
184
- id: number;
185
- type: FrescoRenderNodeKind;
186
- props: Record<string, unknown>;
187
- children: FrescoNode[];
188
- parent: FrescoNode | null;
189
- text?: string;
190
- }
191
- /** @internal Mutable Vue host element; not part of the public render protocol. */
192
- interface FrescoElement extends FrescoNode, RendererElement {}
193
- /**
194
- * Create the Fresco renderer
195
- */
196
- declare function createRenderer$1(): _$_vue_runtime_core0.Renderer<FrescoElement>;
197
- //#endregion
198
4
  //#region src/accessibility.d.ts
199
5
  type AriaRole = "button" | "checkbox" | "combobox" | "list" | "listbox" | "listitem" | "menu" | "menuitem" | "option" | "progressbar" | "radio" | "radiogroup" | "tab" | "tablist" | "table" | "textbox" | "timer" | "toolbar";
200
6
  type AriaState = Partial<Record<"busy" | "checked" | "disabled" | "expanded" | "multiline" | "multiselectable" | "readonly" | "required" | "selected", boolean>>;
@@ -250,7 +56,7 @@ interface BoxProps extends FrescoCanonicalStyle {
250
56
  /** Accessibility state, accepted for Ink API parity */
251
57
  "aria-state"?: AriaState;
252
58
  }
253
- declare const Box: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
59
+ declare const Box: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
254
60
  display: PropType<BoxProps["display"]>;
255
61
  position: PropType<BoxProps["position"]>;
256
62
  top: PropType<FrescoDimension>;
@@ -322,9 +128,9 @@ declare const Box: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ext
322
128
  ariaHidden: BooleanConstructor;
323
129
  ariaRole: PropType<BoxProps["aria-role"]>;
324
130
  ariaState: PropType<BoxProps["aria-state"]>;
325
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
131
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
326
132
  [key: string]: any;
327
- }> | null, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
133
+ }> | null, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
328
134
  display: PropType<BoxProps["display"]>;
329
135
  position: PropType<BoxProps["position"]>;
330
136
  top: PropType<FrescoDimension>;
@@ -407,15 +213,15 @@ declare const Box: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ext
407
213
  borderBottomDimColor: boolean;
408
214
  borderLeftDimColor: boolean;
409
215
  ariaHidden: boolean;
410
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
216
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
411
217
  //#endregion
412
218
  //#region src/components/Spacer.d.ts
413
219
  /**
414
220
  * Spacer Component - flexible empty space along the parent main axis.
415
221
  */
416
- declare const Spacer: _$_vue_runtime_core0.DefineComponent<{}, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
222
+ declare const Spacer: import("@vue/runtime-core").DefineComponent<{}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
417
223
  [key: string]: any;
418
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
224
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
419
225
  //#endregion
420
226
  //#region src/components/Divider.d.ts
421
227
  interface DividerProps {
@@ -430,7 +236,7 @@ interface DividerProps {
430
236
  /** Title foreground color */
431
237
  titleFg?: string;
432
238
  }
433
- declare const Divider: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
239
+ declare const Divider: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
434
240
  direction: {
435
241
  type: PropType<"horizontal" | "vertical">;
436
242
  default: string;
@@ -442,9 +248,9 @@ declare const Divider: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0
442
248
  default: string;
443
249
  };
444
250
  titleFg: StringConstructor;
445
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
251
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
446
252
  [key: string]: any;
447
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
253
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
448
254
  direction: {
449
255
  type: PropType<"horizontal" | "vertical">;
450
256
  default: string;
@@ -457,9 +263,9 @@ declare const Divider: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0
457
263
  };
458
264
  titleFg: StringConstructor;
459
265
  }>> & Readonly<{}>, {
460
- direction: "horizontal" | "vertical";
461
266
  fg: string;
462
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
267
+ direction: "horizontal" | "vertical";
268
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
463
269
  //#endregion
464
270
  //#region src/components/Stack.d.ts
465
271
  interface StackProps {
@@ -474,7 +280,7 @@ interface StackProps {
474
280
  /** Wrap children */
475
281
  wrap?: boolean;
476
282
  }
477
- declare const Stack: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
283
+ declare const Stack: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
478
284
  direction: {
479
285
  type: PropType<"horizontal" | "vertical">;
480
286
  default: string;
@@ -495,9 +301,9 @@ declare const Stack: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.E
495
301
  type: BooleanConstructor;
496
302
  default: boolean;
497
303
  };
498
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
304
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
499
305
  [key: string]: any;
500
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
306
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
501
307
  direction: {
502
308
  type: PropType<"horizontal" | "vertical">;
503
309
  default: string;
@@ -519,22 +325,22 @@ declare const Stack: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.E
519
325
  default: boolean;
520
326
  };
521
327
  }>> & Readonly<{}>, {
328
+ wrap: boolean;
522
329
  gap: number;
523
330
  direction: "horizontal" | "vertical";
524
- align: "center" | "start" | "end" | "stretch" | undefined;
525
- justify: "center" | "start" | "end" | "between" | "around" | "evenly" | undefined;
526
- wrap: boolean;
527
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
528
- declare const HStack: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
331
+ align: "start" | "end" | "center" | "stretch" | undefined;
332
+ justify: "start" | "end" | "center" | "between" | "around" | "evenly" | undefined;
333
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
334
+ declare const HStack: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
529
335
  gap: {
530
336
  type: NumberConstructor;
531
337
  default: number;
532
338
  };
533
339
  align: PropType<StackProps["align"]>;
534
340
  justify: PropType<StackProps["justify"]>;
535
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
341
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
536
342
  [key: string]: any;
537
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
343
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
538
344
  gap: {
539
345
  type: NumberConstructor;
540
346
  default: number;
@@ -543,17 +349,17 @@ declare const HStack: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.
543
349
  justify: PropType<StackProps["justify"]>;
544
350
  }>> & Readonly<{}>, {
545
351
  gap: number;
546
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
547
- declare const VStack: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
352
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
353
+ declare const VStack: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
548
354
  gap: {
549
355
  type: NumberConstructor;
550
356
  default: number;
551
357
  };
552
358
  align: PropType<StackProps["align"]>;
553
359
  justify: PropType<StackProps["justify"]>;
554
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
360
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
555
361
  [key: string]: any;
556
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
362
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
557
363
  gap: {
558
364
  type: NumberConstructor;
559
365
  default: number;
@@ -562,7 +368,7 @@ declare const VStack: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.
562
368
  justify: PropType<StackProps["justify"]>;
563
369
  }>> & Readonly<{}>, {
564
370
  gap: number;
565
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
371
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
566
372
  //#endregion
567
373
  //#region src/components/Grid.d.ts
568
374
  interface GridProps {
@@ -575,7 +381,7 @@ interface GridProps {
575
381
  /** Column gap */
576
382
  columnGap?: number;
577
383
  }
578
- declare const Grid: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
384
+ declare const Grid: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
579
385
  columns: {
580
386
  type: NumberConstructor;
581
387
  default: number;
@@ -586,9 +392,9 @@ declare const Grid: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
586
392
  };
587
393
  rowGap: NumberConstructor;
588
394
  columnGap: NumberConstructor;
589
- }>, () => VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
395
+ }>, () => VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
590
396
  [key: string]: any;
591
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
397
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
592
398
  columns: {
593
399
  type: NumberConstructor;
594
400
  default: number;
@@ -600,9 +406,9 @@ declare const Grid: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
600
406
  rowGap: NumberConstructor;
601
407
  columnGap: NumberConstructor;
602
408
  }>> & Readonly<{}>, {
603
- columns: number;
604
409
  gap: number;
605
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
410
+ columns: number;
411
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
606
412
  //#endregion
607
413
  //#region src/components/Card.d.ts
608
414
  interface CardProps {
@@ -623,7 +429,7 @@ interface CardProps {
623
429
  /** Background color */
624
430
  bg?: string;
625
431
  }
626
- declare const Card: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
432
+ declare const Card: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
627
433
  title: StringConstructor;
628
434
  subtitle: StringConstructor;
629
435
  footer: StringConstructor;
@@ -641,9 +447,9 @@ declare const Card: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
641
447
  };
642
448
  borderFg: StringConstructor;
643
449
  bg: StringConstructor;
644
- }>, () => VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
450
+ }>, () => VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
645
451
  [key: string]: any;
646
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
452
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
647
453
  title: StringConstructor;
648
454
  subtitle: StringConstructor;
649
455
  footer: StringConstructor;
@@ -662,10 +468,10 @@ declare const Card: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
662
468
  borderFg: StringConstructor;
663
469
  bg: StringConstructor;
664
470
  }>> & Readonly<{}>, {
665
- titleFg: string;
666
471
  border: "none" | "single" | "double" | "rounded" | "heavy" | undefined;
667
472
  padding: number;
668
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
473
+ titleFg: string;
474
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
669
475
  //#endregion
670
476
  //#region src/components/Text.d.ts
671
477
  type TextWrap = boolean | "wrap" | "hard" | "truncate" | "truncate-start" | "truncate-middle" | "truncate-end" | "end" | "middle";
@@ -685,7 +491,7 @@ interface TextProps extends FrescoAppearance {
685
491
  /** Hide from screen readers, accepted for Ink API parity */
686
492
  "aria-hidden"?: boolean;
687
493
  }
688
- declare const Text: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
494
+ declare const Text: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
689
495
  content: StringConstructor;
690
496
  wrap: PropType<TextProps["wrap"]>;
691
497
  fg: StringConstructor;
@@ -703,9 +509,9 @@ declare const Text: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
703
509
  hidden: BooleanConstructor;
704
510
  ariaLabel: StringConstructor;
705
511
  ariaHidden: BooleanConstructor;
706
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
512
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
707
513
  [key: string]: any;
708
- }> | null, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
514
+ }> | null, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
709
515
  content: StringConstructor;
710
516
  wrap: PropType<TextProps["wrap"]>;
711
517
  fg: StringConstructor;
@@ -724,17 +530,17 @@ declare const Text: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
724
530
  ariaLabel: StringConstructor;
725
531
  ariaHidden: BooleanConstructor;
726
532
  }>> & Readonly<{}>, {
727
- bold: boolean;
728
- blink: boolean;
729
533
  hidden: boolean;
534
+ bold: boolean;
730
535
  ariaHidden: boolean;
536
+ underline: boolean;
731
537
  dim: boolean;
732
538
  dimColor: boolean;
733
539
  italic: boolean;
734
- underline: boolean;
735
540
  strikethrough: boolean;
736
541
  inverse: boolean;
737
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
542
+ blink: boolean;
543
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
738
544
  //#endregion
739
545
  //#region src/components/Newline.d.ts
740
546
  /**
@@ -744,21 +550,21 @@ interface NewlineProps {
744
550
  /** Number of newlines to insert */
745
551
  count?: number;
746
552
  }
747
- declare const Newline: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
553
+ declare const Newline: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
748
554
  count: {
749
555
  type: NumberConstructor;
750
556
  default: number;
751
557
  };
752
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
558
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
753
559
  [key: string]: any;
754
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
560
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
755
561
  count: {
756
562
  type: NumberConstructor;
757
563
  default: number;
758
564
  };
759
565
  }>> & Readonly<{}>, {
760
566
  count: number;
761
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
567
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
762
568
  //#endregion
763
569
  //#region src/components/Static.d.ts
764
570
  interface StaticProps<T = unknown> {
@@ -769,15 +575,15 @@ interface StaticProps<T = unknown> {
769
575
  /** Render item callback */
770
576
  children?: (item: T, index: number) => unknown;
771
577
  }
772
- declare const Static: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
578
+ declare const Static: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
773
579
  items: {
774
580
  type: PropType<unknown[]>;
775
581
  default: () => never[];
776
582
  };
777
583
  style: PropType<FrescoStyle>;
778
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
584
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
779
585
  [key: string]: any;
780
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
586
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
781
587
  items: {
782
588
  type: PropType<unknown[]>;
783
589
  default: () => never[];
@@ -785,7 +591,7 @@ declare const Static: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.
785
591
  style: PropType<FrescoStyle>;
786
592
  }>> & Readonly<{}>, {
787
593
  items: unknown[];
788
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
594
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
789
595
  //#endregion
790
596
  //#region src/components/Transform.d.ts
791
597
  interface TransformProps {
@@ -794,21 +600,21 @@ interface TransformProps {
794
600
  /** Transform each rendered line */
795
601
  transform: (children: string, index: number) => string;
796
602
  }
797
- declare const Transform: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
603
+ declare const Transform: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
798
604
  accessibilityLabel: StringConstructor;
799
605
  transform: {
800
606
  type: PropType<TransformProps["transform"]>;
801
607
  required: true;
802
608
  };
803
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
609
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
804
610
  [key: string]: any;
805
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
611
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
806
612
  accessibilityLabel: StringConstructor;
807
613
  transform: {
808
614
  type: PropType<TransformProps["transform"]>;
809
615
  required: true;
810
616
  };
811
- }>> & Readonly<{}>, {}, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
617
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
812
618
  //#endregion
813
619
  //#region src/components/Code.d.ts
814
620
  interface CodeProps {
@@ -831,7 +637,7 @@ interface CodeProps {
831
637
  /** Highlight line background */
832
638
  highlightBg?: string;
833
639
  }
834
- declare const Code: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
640
+ declare const Code: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
835
641
  code: {
836
642
  type: StringConstructor;
837
643
  required: true;
@@ -865,9 +671,9 @@ declare const Code: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
865
671
  type: StringConstructor;
866
672
  default: string;
867
673
  };
868
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
674
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
869
675
  [key: string]: any;
870
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
676
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
871
677
  code: {
872
678
  type: StringConstructor;
873
679
  required: true;
@@ -902,14 +708,14 @@ declare const Code: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
902
708
  default: string;
903
709
  };
904
710
  }>> & Readonly<{}>, {
905
- fg: string;
906
711
  border: "none" | "single" | "double" | "rounded" | undefined;
712
+ fg: string;
907
713
  lineNumbers: boolean;
908
714
  startLine: number;
909
715
  highlightLines: number[];
910
716
  lineNumberFg: string;
911
717
  highlightBg: string;
912
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
718
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
913
719
  //#endregion
914
720
  //#region src/components/Link.d.ts
915
721
  /**
@@ -927,7 +733,7 @@ interface LinkProps {
927
733
  /** Show URL in parentheses */
928
734
  showUrl?: boolean;
929
735
  }
930
- declare const Link: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
736
+ declare const Link: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
931
737
  text: {
932
738
  type: StringConstructor;
933
739
  required: true;
@@ -945,9 +751,9 @@ declare const Link: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
945
751
  type: BooleanConstructor;
946
752
  default: boolean;
947
753
  };
948
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
754
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
949
755
  [key: string]: any;
950
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, "click"[], "click", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
756
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "click"[], "click", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
951
757
  text: {
952
758
  type: StringConstructor;
953
759
  required: true;
@@ -971,7 +777,7 @@ declare const Link: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
971
777
  fg: string;
972
778
  underline: boolean;
973
779
  showUrl: boolean;
974
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
780
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
975
781
  //#endregion
976
782
  //#region src/components/TextInput.d.ts
977
783
  interface TextInputProps {
@@ -1006,7 +812,7 @@ interface TextInputProps {
1006
812
  /** Called when IME composition ends */
1007
813
  onCompositionEnd?: (text: string) => void;
1008
814
  }
1009
- declare const TextInput: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
815
+ declare const TextInput: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
1010
816
  modelValue: {
1011
817
  type: StringConstructor;
1012
818
  default: string;
@@ -1034,9 +840,9 @@ declare const TextInput: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_cor
1034
840
  width: PropType<FrescoDimension>;
1035
841
  fg: StringConstructor;
1036
842
  bg: StringConstructor;
1037
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
843
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1038
844
  [key: string]: any;
1039
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, ("update:modelValue" | "submit" | "cancel" | "compositionstart" | "compositionupdate" | "compositionend")[], "update:modelValue" | "submit" | "cancel" | "compositionstart" | "compositionupdate" | "compositionend", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
845
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("update:modelValue" | "submit" | "cancel" | "compositionstart" | "compositionupdate" | "compositionend")[], "update:modelValue" | "submit" | "cancel" | "compositionstart" | "compositionupdate" | "compositionend", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1040
846
  modelValue: {
1041
847
  type: StringConstructor;
1042
848
  default: string;
@@ -1073,12 +879,12 @@ declare const TextInput: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_cor
1073
879
  onCompositionend?: ((...args: any[]) => any) | undefined;
1074
880
  }>, {
1075
881
  modelValue: string;
1076
- placeholder: string;
1077
882
  focused: boolean;
883
+ placeholder: string;
1078
884
  focus: boolean;
1079
885
  mask: boolean;
1080
886
  maskChar: string;
1081
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
887
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
1082
888
  //#endregion
1083
889
  //#region src/components/TextArea.d.ts
1084
890
  interface TextAreaProps {
@@ -1107,7 +913,7 @@ interface TextAreaProps {
1107
913
  /** Cursor column */
1108
914
  cursorColumn?: number;
1109
915
  }
1110
- declare const TextArea: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
916
+ declare const TextArea: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
1111
917
  modelValue: {
1112
918
  type: StringConstructor;
1113
919
  default: string;
@@ -1150,9 +956,9 @@ declare const TextArea: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core
1150
956
  type: NumberConstructor;
1151
957
  default: number;
1152
958
  };
1153
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
959
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1154
960
  [key: string]: any;
1155
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
961
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1156
962
  modelValue: {
1157
963
  type: StringConstructor;
1158
964
  default: string;
@@ -1208,7 +1014,7 @@ declare const TextArea: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core
1208
1014
  placeholderFg: string;
1209
1015
  cursorLine: number;
1210
1016
  cursorColumn: number;
1211
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
1017
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
1212
1018
  //#endregion
1213
1019
  //#region src/components/Select.d.ts
1214
1020
  interface SelectOption {
@@ -1238,7 +1044,7 @@ interface SelectProps {
1238
1044
  /** Selected item background color */
1239
1045
  selectedBg?: string;
1240
1046
  }
1241
- declare const Select: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
1047
+ declare const Select: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
1242
1048
  options: {
1243
1049
  type: PropType<SelectOption[]>;
1244
1050
  required: true;
@@ -1267,9 +1073,9 @@ declare const Select: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.
1267
1073
  default: string;
1268
1074
  };
1269
1075
  selectedBg: StringConstructor;
1270
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
1076
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1271
1077
  [key: string]: any;
1272
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, ("update:modelValue" | "select")[], "update:modelValue" | "select", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
1078
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("update:modelValue" | "select")[], "update:modelValue" | "select", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1273
1079
  options: {
1274
1080
  type: PropType<SelectOption[]>;
1275
1081
  required: true;
@@ -1299,15 +1105,15 @@ declare const Select: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.
1299
1105
  };
1300
1106
  selectedBg: StringConstructor;
1301
1107
  }>> & Readonly<{
1302
- onSelect?: ((...args: any[]) => any) | undefined;
1303
1108
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1109
+ onSelect?: ((...args: any[]) => any) | undefined;
1304
1110
  }>, {
1305
- placeholder: string;
1306
1111
  focused: boolean;
1307
1112
  indicator: string;
1308
1113
  indicatorEmpty: string;
1309
1114
  selectedFg: string;
1310
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
1115
+ placeholder: string;
1116
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
1311
1117
  //#endregion
1312
1118
  //#region src/components/Checkbox.d.ts
1313
1119
  /**
@@ -1331,7 +1137,7 @@ interface CheckboxProps {
1331
1137
  /** Checked foreground color */
1332
1138
  checkedFg?: string;
1333
1139
  }
1334
- declare const Checkbox: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
1140
+ declare const Checkbox: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
1335
1141
  modelValue: {
1336
1142
  type: BooleanConstructor;
1337
1143
  default: boolean;
@@ -1358,9 +1164,9 @@ declare const Checkbox: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core
1358
1164
  type: StringConstructor;
1359
1165
  default: string;
1360
1166
  };
1361
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
1167
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1362
1168
  [key: string]: any;
1363
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
1169
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1364
1170
  modelValue: {
1365
1171
  type: BooleanConstructor;
1366
1172
  default: boolean;
@@ -1397,7 +1203,7 @@ declare const Checkbox: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core
1397
1203
  focused: boolean;
1398
1204
  unchecked: string;
1399
1205
  checkedFg: string;
1400
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
1206
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
1401
1207
  //#endregion
1402
1208
  //#region src/components/RadioGroup.d.ts
1403
1209
  interface RadioOption {
@@ -1423,7 +1229,7 @@ interface RadioGroupProps {
1423
1229
  /** Selected foreground color */
1424
1230
  selectedFg?: string;
1425
1231
  }
1426
- declare const RadioGroup: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
1232
+ declare const RadioGroup: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
1427
1233
  options: {
1428
1234
  type: PropType<RadioOption[]>;
1429
1235
  required: true;
@@ -1447,9 +1253,9 @@ declare const RadioGroup: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_co
1447
1253
  type: StringConstructor;
1448
1254
  default: string;
1449
1255
  };
1450
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
1256
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1451
1257
  [key: string]: any;
1452
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
1258
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1453
1259
  options: {
1454
1260
  type: PropType<RadioOption[]>;
1455
1261
  required: true;
@@ -1477,11 +1283,11 @@ declare const RadioGroup: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_co
1477
1283
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1478
1284
  onChange?: ((...args: any[]) => any) | undefined;
1479
1285
  }>, {
1480
- direction: "horizontal" | "vertical";
1481
1286
  selected: string;
1287
+ direction: "horizontal" | "vertical";
1482
1288
  selectedFg: string;
1483
1289
  unselected: string;
1484
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
1290
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
1485
1291
  //#endregion
1486
1292
  //#region src/components/Confirm.d.ts
1487
1293
  /**
@@ -1503,7 +1309,7 @@ interface ConfirmProps {
1503
1309
  /** Selected button foreground color */
1504
1310
  selectedFg?: string;
1505
1311
  }
1506
- declare const Confirm: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
1312
+ declare const Confirm: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
1507
1313
  message: {
1508
1314
  type: StringConstructor;
1509
1315
  required: true;
@@ -1532,9 +1338,9 @@ declare const Confirm: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0
1532
1338
  type: StringConstructor;
1533
1339
  default: string;
1534
1340
  };
1535
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
1341
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1536
1342
  [key: string]: any;
1537
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, ("select" | "cancel" | "confirm")[], "select" | "cancel" | "confirm", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
1343
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("select" | "cancel" | "confirm")[], "select" | "cancel" | "confirm", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1538
1344
  message: {
1539
1345
  type: StringConstructor;
1540
1346
  required: true;
@@ -1574,7 +1380,7 @@ declare const Confirm: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0
1574
1380
  defaultConfirm: boolean;
1575
1381
  confirmFg: string;
1576
1382
  cancelFg: string;
1577
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
1383
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
1578
1384
  //#endregion
1579
1385
  //#region src/components/Form.d.ts
1580
1386
  interface FormField {
@@ -1599,7 +1405,7 @@ interface FormProps {
1599
1405
  /** Hint foreground color */
1600
1406
  hintFg?: string;
1601
1407
  }
1602
- declare const Form: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
1408
+ declare const Form: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
1603
1409
  fields: {
1604
1410
  type: PropType<FormField[]>;
1605
1411
  default: () => never[];
@@ -1625,9 +1431,9 @@ declare const Form: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
1625
1431
  type: StringConstructor;
1626
1432
  default: string;
1627
1433
  };
1628
- }>, () => VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
1434
+ }>, () => VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1629
1435
  [key: string]: any;
1630
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
1436
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1631
1437
  fields: {
1632
1438
  type: PropType<FormField[]>;
1633
1439
  default: () => never[];
@@ -1655,12 +1461,12 @@ declare const Form: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
1655
1461
  };
1656
1462
  }>> & Readonly<{}>, {
1657
1463
  gap: number;
1464
+ labelPosition: "top" | "left";
1658
1465
  fields: FormField[];
1659
1466
  labelWidth: number;
1660
- labelPosition: "top" | "left";
1661
1467
  requiredIndicator: string;
1662
1468
  hintFg: string;
1663
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
1469
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
1664
1470
  //#endregion
1665
1471
  //#region src/components/Spinner.d.ts
1666
1472
  /**
@@ -1692,7 +1498,7 @@ interface SpinnerProps {
1692
1498
  /** Foreground color */
1693
1499
  fg?: string;
1694
1500
  }
1695
- declare const Spinner: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
1501
+ declare const Spinner: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
1696
1502
  type: {
1697
1503
  type: PropType<SpinnerType>;
1698
1504
  default: string;
@@ -1704,9 +1510,9 @@ declare const Spinner: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0
1704
1510
  };
1705
1511
  label: StringConstructor;
1706
1512
  fg: StringConstructor;
1707
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
1513
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1708
1514
  [key: string]: any;
1709
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
1515
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1710
1516
  type: {
1711
1517
  type: PropType<SpinnerType>;
1712
1518
  default: string;
@@ -1721,7 +1527,7 @@ declare const Spinner: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0
1721
1527
  }>> & Readonly<{}>, {
1722
1528
  type: "box" | "dots" | "dots2" | "line" | "arc" | "circle" | "bounce" | "arrow" | "clock" | "moon" | "earth";
1723
1529
  interval: number;
1724
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
1530
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
1725
1531
  //#endregion
1726
1532
  //#region src/components/ProgressBar.d.ts
1727
1533
  interface ProgressBarProps {
@@ -1746,7 +1552,7 @@ interface ProgressBarProps {
1746
1552
  /** Empty color */
1747
1553
  emptyFg?: string;
1748
1554
  }
1749
- declare const ProgressBar: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
1555
+ declare const ProgressBar: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
1750
1556
  value: {
1751
1557
  type: NumberConstructor;
1752
1558
  required: true;
@@ -1788,9 +1594,9 @@ declare const ProgressBar: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_c
1788
1594
  type: StringConstructor;
1789
1595
  default: string;
1790
1596
  };
1791
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
1597
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1792
1598
  [key: string]: any;
1793
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
1599
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1794
1600
  value: {
1795
1601
  type: NumberConstructor;
1796
1602
  required: true;
@@ -1834,15 +1640,15 @@ declare const ProgressBar: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_c
1834
1640
  };
1835
1641
  }>> & Readonly<{}>, {
1836
1642
  width: number;
1837
- labelPosition: "right" | "left" | "inside";
1838
1643
  showLabel: boolean;
1644
+ labelPosition: "right" | "left" | "inside";
1839
1645
  filledChar: string;
1840
1646
  emptyChar: string;
1841
1647
  leftBorder: string;
1842
1648
  rightBorder: string;
1843
1649
  filledFg: string;
1844
1650
  emptyFg: string;
1845
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
1651
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
1846
1652
  //#endregion
1847
1653
  //#region src/components/Alert.d.ts
1848
1654
  type AlertType = "info" | "success" | "warning" | "error";
@@ -1858,7 +1664,7 @@ interface AlertProps {
1858
1664
  /** Border style */
1859
1665
  border?: "single" | "double" | "rounded" | "none";
1860
1666
  }
1861
- declare const Alert: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
1667
+ declare const Alert: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
1862
1668
  message: {
1863
1669
  type: StringConstructor;
1864
1670
  required: true;
@@ -1876,9 +1682,9 @@ declare const Alert: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.E
1876
1682
  type: PropType<AlertProps["border"]>;
1877
1683
  default: string;
1878
1684
  };
1879
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
1685
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1880
1686
  [key: string]: any;
1881
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
1687
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1882
1688
  message: {
1883
1689
  type: StringConstructor;
1884
1690
  required: true;
@@ -1897,10 +1703,10 @@ declare const Alert: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.E
1897
1703
  default: string;
1898
1704
  };
1899
1705
  }>> & Readonly<{}>, {
1900
- type: AlertType;
1901
1706
  border: "none" | "single" | "double" | "rounded" | undefined;
1707
+ type: AlertType;
1902
1708
  showIcon: boolean;
1903
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
1709
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
1904
1710
  //#endregion
1905
1711
  //#region src/components/Badge.d.ts
1906
1712
  type BadgeVariant = "default" | "success" | "warning" | "error" | "info";
@@ -1916,7 +1722,7 @@ interface BadgeProps {
1916
1722
  /** Show border */
1917
1723
  border?: boolean;
1918
1724
  }
1919
- declare const Badge: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
1725
+ declare const Badge: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
1920
1726
  label: {
1921
1727
  type: StringConstructor;
1922
1728
  required: true;
@@ -1931,9 +1737,9 @@ declare const Badge: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.E
1931
1737
  type: BooleanConstructor;
1932
1738
  default: boolean;
1933
1739
  };
1934
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
1740
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1935
1741
  [key: string]: any;
1936
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
1742
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1937
1743
  label: {
1938
1744
  type: StringConstructor;
1939
1745
  required: true;
@@ -1951,7 +1757,7 @@ declare const Badge: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.E
1951
1757
  }>> & Readonly<{}>, {
1952
1758
  border: boolean;
1953
1759
  variant: BadgeVariant;
1954
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
1760
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
1955
1761
  //#endregion
1956
1762
  //#region src/components/Timer.d.ts
1957
1763
  type TimerMode = "countdown" | "stopwatch";
@@ -1973,7 +1779,7 @@ interface TimerProps {
1973
1779
  /** Danger color (when < 5 seconds in countdown) */
1974
1780
  dangerFg?: string;
1975
1781
  }
1976
- declare const Timer: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
1782
+ declare const Timer: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
1977
1783
  mode: {
1978
1784
  type: PropType<TimerMode>;
1979
1785
  default: string;
@@ -2006,9 +1812,9 @@ declare const Timer: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.E
2006
1812
  type: StringConstructor;
2007
1813
  default: string;
2008
1814
  };
2009
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
1815
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2010
1816
  [key: string]: any;
2011
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, ("tick" | "complete")[], "tick" | "complete", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
1817
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("tick" | "complete")[], "tick" | "complete", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2012
1818
  mode: {
2013
1819
  type: PropType<TimerMode>;
2014
1820
  default: string;
@@ -2045,15 +1851,15 @@ declare const Timer: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.E
2045
1851
  onTick?: ((...args: any[]) => any) | undefined;
2046
1852
  onComplete?: ((...args: any[]) => any) | undefined;
2047
1853
  }>, {
2048
- mode: TimerMode;
2049
1854
  fg: string;
1855
+ mode: TimerMode;
2050
1856
  initialSeconds: number;
2051
1857
  autoStart: boolean;
2052
1858
  showHours: boolean;
2053
1859
  showMilliseconds: boolean;
2054
1860
  warningFg: string;
2055
1861
  dangerFg: string;
2056
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
1862
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2057
1863
  //#endregion
2058
1864
  //#region src/components/Tooltip.d.ts
2059
1865
  type TooltipPosition = "top" | "bottom" | "left" | "right";
@@ -2071,7 +1877,7 @@ interface TooltipProps {
2071
1877
  /** Foreground color */
2072
1878
  fg?: string;
2073
1879
  }
2074
- declare const Tooltip: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
1880
+ declare const Tooltip: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
2075
1881
  text: {
2076
1882
  type: StringConstructor;
2077
1883
  required: true;
@@ -2096,9 +1902,9 @@ declare const Tooltip: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0
2096
1902
  type: StringConstructor;
2097
1903
  default: string;
2098
1904
  };
2099
- }>, () => VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
1905
+ }>, () => VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2100
1906
  [key: string]: any;
2101
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
1907
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2102
1908
  text: {
2103
1909
  type: StringConstructor;
2104
1910
  required: true;
@@ -2124,12 +1930,12 @@ declare const Tooltip: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0
2124
1930
  default: string;
2125
1931
  };
2126
1932
  }>> & Readonly<{}>, {
2127
- fg: string;
2128
1933
  position: TooltipPosition;
2129
1934
  visible: boolean;
2130
1935
  border: "none" | "single" | "rounded" | undefined;
1936
+ fg: string;
2131
1937
  bg: string;
2132
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
1938
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2133
1939
  //#endregion
2134
1940
  //#region src/components/List.d.ts
2135
1941
  interface ListItem {
@@ -2157,7 +1963,7 @@ interface ListProps {
2157
1963
  /** Selected background color */
2158
1964
  selectedBg?: string;
2159
1965
  }
2160
- declare const List: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
1966
+ declare const List: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
2161
1967
  items: {
2162
1968
  type: PropType<ListItem[]>;
2163
1969
  required: true;
@@ -2182,9 +1988,9 @@ declare const List: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
2182
1988
  default: string;
2183
1989
  };
2184
1990
  selectedBg: StringConstructor;
2185
- }>, () => VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
1991
+ }>, () => VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2186
1992
  [key: string]: any;
2187
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, ("update:modelValue" | "select")[], "update:modelValue" | "select", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
1993
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("update:modelValue" | "select")[], "update:modelValue" | "select", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2188
1994
  items: {
2189
1995
  type: PropType<ListItem[]>;
2190
1996
  required: true;
@@ -2210,14 +2016,14 @@ declare const List: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
2210
2016
  };
2211
2017
  selectedBg: StringConstructor;
2212
2018
  }>> & Readonly<{
2213
- onSelect?: ((...args: any[]) => any) | undefined;
2214
2019
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2020
+ onSelect?: ((...args: any[]) => any) | undefined;
2215
2021
  }>, {
2216
2022
  focused: boolean;
2217
2023
  indicator: string;
2218
2024
  indicatorEmpty: string;
2219
2025
  selectedFg: string;
2220
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
2026
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2221
2027
  //#endregion
2222
2028
  //#region src/components/Table.d.ts
2223
2029
  interface TableColumn {
@@ -2250,7 +2056,7 @@ interface TableProps {
2250
2056
  /** Cell padding */
2251
2057
  cellPadding?: number;
2252
2058
  }
2253
- declare const Table: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
2059
+ declare const Table: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
2254
2060
  columns: {
2255
2061
  type: PropType<TableColumn[]>;
2256
2062
  required: true;
@@ -2278,9 +2084,9 @@ declare const Table: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.E
2278
2084
  type: NumberConstructor;
2279
2085
  default: number;
2280
2086
  };
2281
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
2087
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2282
2088
  [key: string]: any;
2283
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
2089
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2284
2090
  columns: {
2285
2091
  type: PropType<TableColumn[]>;
2286
2092
  required: true;
@@ -2313,7 +2119,7 @@ declare const Table: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.E
2313
2119
  showHeader: boolean;
2314
2120
  headerFg: string;
2315
2121
  cellPadding: number;
2316
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
2122
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2317
2123
  //#endregion
2318
2124
  //#region src/components/Tree.d.ts
2319
2125
  interface TreeNode {
@@ -2345,7 +2151,7 @@ interface TreeProps {
2345
2151
  /** Selected foreground color */
2346
2152
  selectedFg?: string;
2347
2153
  }
2348
- declare const Tree: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
2154
+ declare const Tree: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
2349
2155
  data: {
2350
2156
  type: PropType<TreeNode[]>;
2351
2157
  required: true;
@@ -2380,9 +2186,9 @@ declare const Tree: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
2380
2186
  type: StringConstructor;
2381
2187
  default: string;
2382
2188
  };
2383
- }>, () => VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
2189
+ }>, () => VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2384
2190
  [key: string]: any;
2385
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, ("select" | "toggle")[], "select" | "toggle", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
2191
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("select" | "toggle")[], "select" | "toggle", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2386
2192
  data: {
2387
2193
  type: PropType<TreeNode[]>;
2388
2194
  required: true;
@@ -2428,7 +2234,7 @@ declare const Tree: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
2428
2234
  expandedIcon: string;
2429
2235
  collapsedIcon: string;
2430
2236
  leafIcon: string;
2431
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
2237
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2432
2238
  //#endregion
2433
2239
  //#region src/components/Menu.d.ts
2434
2240
  interface MenuItem {
@@ -2457,7 +2263,7 @@ interface MenuProps {
2457
2263
  /** Shortcut foreground color */
2458
2264
  shortcutFg?: string;
2459
2265
  }
2460
- declare const Menu: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
2266
+ declare const Menu: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
2461
2267
  items: {
2462
2268
  type: PropType<MenuItem[]>;
2463
2269
  required: true;
@@ -2484,9 +2290,9 @@ declare const Menu: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
2484
2290
  type: StringConstructor;
2485
2291
  default: string;
2486
2292
  };
2487
- }>, () => VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
2293
+ }>, () => VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2488
2294
  [key: string]: any;
2489
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, "select"[], "select", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
2295
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "select"[], "select", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2490
2296
  items: {
2491
2297
  type: PropType<MenuItem[]>;
2492
2298
  required: true;
@@ -2521,7 +2327,7 @@ declare const Menu: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
2521
2327
  focusedFg: string;
2522
2328
  focusedBg: string;
2523
2329
  shortcutFg: string;
2524
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
2330
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2525
2331
  //#endregion
2526
2332
  //#region src/components/Tabs.d.ts
2527
2333
  interface Tab {
@@ -2547,7 +2353,7 @@ interface TabsProps {
2547
2353
  /** Show underline for active tab */
2548
2354
  underline?: boolean;
2549
2355
  }
2550
- declare const Tabs: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
2356
+ declare const Tabs: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
2551
2357
  tabs: {
2552
2358
  type: PropType<Tab[]>;
2553
2359
  required: true;
@@ -2571,9 +2377,9 @@ declare const Tabs: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
2571
2377
  type: BooleanConstructor;
2572
2378
  default: boolean;
2573
2379
  };
2574
- }>, () => VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
2380
+ }>, () => VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2575
2381
  [key: string]: any;
2576
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
2382
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2577
2383
  tabs: {
2578
2384
  type: PropType<Tab[]>;
2579
2385
  required: true;
@@ -2605,7 +2411,7 @@ declare const Tabs: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.Ex
2605
2411
  underline: boolean;
2606
2412
  separator: string;
2607
2413
  activeFg: string;
2608
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
2414
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2609
2415
  //#endregion
2610
2416
  //#region src/components/Breadcrumb.d.ts
2611
2417
  interface BreadcrumbItem {
@@ -2625,7 +2431,7 @@ interface BreadcrumbProps {
2625
2431
  /** Separator foreground color */
2626
2432
  separatorFg?: string;
2627
2433
  }
2628
- declare const Breadcrumb: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
2434
+ declare const Breadcrumb: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
2629
2435
  items: {
2630
2436
  type: PropType<BreadcrumbItem[]>;
2631
2437
  required: true;
@@ -2646,9 +2452,9 @@ declare const Breadcrumb: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_co
2646
2452
  type: StringConstructor;
2647
2453
  default: string;
2648
2454
  };
2649
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
2455
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2650
2456
  [key: string]: any;
2651
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, "select"[], "select", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
2457
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "select"[], "select", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2652
2458
  items: {
2653
2459
  type: PropType<BreadcrumbItem[]>;
2654
2460
  required: true;
@@ -2676,7 +2482,7 @@ declare const Breadcrumb: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_co
2676
2482
  separator: string;
2677
2483
  activeFg: string;
2678
2484
  separatorFg: string;
2679
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
2485
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2680
2486
  //#endregion
2681
2487
  //#region src/components/Stepper.d.ts
2682
2488
  interface Step {
@@ -2707,7 +2513,7 @@ interface StepperProps {
2707
2513
  /** Pending icon */
2708
2514
  pendingIcon?: string;
2709
2515
  }
2710
- declare const Stepper: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
2516
+ declare const Stepper: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
2711
2517
  steps: {
2712
2518
  type: PropType<Step[]>;
2713
2519
  required: true;
@@ -2748,9 +2554,9 @@ declare const Stepper: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0
2748
2554
  type: StringConstructor;
2749
2555
  default: string;
2750
2556
  };
2751
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
2557
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2752
2558
  [key: string]: any;
2753
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
2559
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2754
2560
  steps: {
2755
2561
  type: PropType<Step[]>;
2756
2562
  required: true;
@@ -2801,7 +2607,7 @@ declare const Stepper: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0
2801
2607
  errorIcon: string;
2802
2608
  currentIcon: string;
2803
2609
  pendingIcon: string;
2804
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
2610
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2805
2611
  //#endregion
2806
2612
  //#region src/components/Modal.d.ts
2807
2613
  interface ModalProps {
@@ -2822,7 +2628,7 @@ interface ModalProps {
2822
2628
  /** Background color */
2823
2629
  bg?: string;
2824
2630
  }
2825
- declare const Modal: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
2631
+ declare const Modal: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
2826
2632
  visible: {
2827
2633
  type: BooleanConstructor;
2828
2634
  default: boolean;
@@ -2846,9 +2652,9 @@ declare const Modal: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.E
2846
2652
  };
2847
2653
  borderFg: StringConstructor;
2848
2654
  bg: StringConstructor;
2849
- }>, () => VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
2655
+ }>, () => VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2850
2656
  [key: string]: any;
2851
- }> | null, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, "close"[], "close", _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
2657
+ }> | null, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, "close"[], "close", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2852
2658
  visible: {
2853
2659
  type: BooleanConstructor;
2854
2660
  default: boolean;
@@ -2875,12 +2681,12 @@ declare const Modal: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.E
2875
2681
  }>> & Readonly<{
2876
2682
  onClose?: ((...args: any[]) => any) | undefined;
2877
2683
  }>, {
2878
- titleFg: string;
2879
- visible: boolean;
2880
- border: "single" | "double" | "rounded" | "heavy" | undefined;
2881
2684
  width: string | number;
2882
2685
  height: string | number;
2883
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
2686
+ visible: boolean;
2687
+ border: "single" | "double" | "rounded" | "heavy" | undefined;
2688
+ titleFg: string;
2689
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2884
2690
  //#endregion
2885
2691
  //#region src/components/StatusBar.d.ts
2886
2692
  interface StatusBarItem {
@@ -2901,7 +2707,7 @@ interface StatusBarProps {
2901
2707
  /** Separator between items */
2902
2708
  separator?: string;
2903
2709
  }
2904
- declare const StatusBar: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
2710
+ declare const StatusBar: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
2905
2711
  items: {
2906
2712
  type: PropType<StatusBarItem[]>;
2907
2713
  required: true;
@@ -2918,9 +2724,9 @@ declare const StatusBar: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_cor
2918
2724
  type: StringConstructor;
2919
2725
  default: string;
2920
2726
  };
2921
- }>, () => VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
2727
+ }>, () => VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2922
2728
  [key: string]: any;
2923
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
2729
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2924
2730
  items: {
2925
2731
  type: PropType<StatusBarItem[]>;
2926
2732
  required: true;
@@ -2941,7 +2747,7 @@ declare const StatusBar: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_cor
2941
2747
  fg: string;
2942
2748
  bg: string;
2943
2749
  separator: string;
2944
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
2750
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
2945
2751
  //#endregion
2946
2752
  //#region src/components/Header.d.ts
2947
2753
  interface HeaderProps {
@@ -2962,7 +2768,7 @@ interface HeaderProps {
2962
2768
  /** Border bottom */
2963
2769
  borderBottom?: boolean;
2964
2770
  }
2965
- declare const Header: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
2771
+ declare const Header: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
2966
2772
  title: {
2967
2773
  type: StringConstructor;
2968
2774
  required: true;
@@ -2983,9 +2789,9 @@ declare const Header: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.
2983
2789
  type: BooleanConstructor;
2984
2790
  default: boolean;
2985
2791
  };
2986
- }>, () => VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
2792
+ }>, () => VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2987
2793
  [key: string]: any;
2988
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
2794
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2989
2795
  title: {
2990
2796
  type: StringConstructor;
2991
2797
  required: true;
@@ -3007,10 +2813,10 @@ declare const Header: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.
3007
2813
  default: boolean;
3008
2814
  };
3009
2815
  }>> & Readonly<{}>, {
3010
- titleFg: string;
3011
2816
  borderBottom: boolean;
2817
+ titleFg: string;
3012
2818
  subtitleFg: string;
3013
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
2819
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
3014
2820
  //#endregion
3015
2821
  //#region src/components/KeyHint.d.ts
3016
2822
  interface KeyBinding {
@@ -3031,7 +2837,7 @@ interface KeyHintProps {
3031
2837
  /** Separator between key and description */
3032
2838
  separator?: string;
3033
2839
  }
3034
- declare const KeyHint: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
2840
+ declare const KeyHint: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
3035
2841
  bindings: {
3036
2842
  type: PropType<KeyBinding[]>;
3037
2843
  required: true;
@@ -3056,9 +2862,9 @@ declare const KeyHint: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0
3056
2862
  type: StringConstructor;
3057
2863
  default: string;
3058
2864
  };
3059
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
2865
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3060
2866
  [key: string]: any;
3061
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
2867
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
3062
2868
  bindings: {
3063
2869
  type: PropType<KeyBinding[]>;
3064
2870
  required: true;
@@ -3089,7 +2895,7 @@ declare const KeyHint: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0
3089
2895
  keyFg: string;
3090
2896
  keyBg: string;
3091
2897
  descFg: string;
3092
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
2898
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
3093
2899
  //#endregion
3094
2900
  //#region src/components/Avatar.d.ts
3095
2901
  interface AvatarProps {
@@ -3108,7 +2914,7 @@ interface AvatarProps {
3108
2914
  /** Status indicator */
3109
2915
  status?: "online" | "offline" | "away" | "busy";
3110
2916
  }
3111
- declare const Avatar: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.ExtractPropTypes<{
2917
+ declare const Avatar: import("@vue/runtime-core").DefineComponent<import("@vue/runtime-core").ExtractPropTypes<{
3112
2918
  name: StringConstructor;
3113
2919
  initials: StringConstructor;
3114
2920
  size: {
@@ -3130,9 +2936,9 @@ declare const Avatar: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.
3130
2936
  status: {
3131
2937
  type: PropType<AvatarProps["status"]>;
3132
2938
  };
3133
- }>, () => _$_vue_runtime_core0.VNode<_$_vue_runtime_core0.RendererNode, _$_vue_runtime_core0.RendererElement, {
2939
+ }>, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3134
2940
  [key: string]: any;
3135
- }>, {}, {}, {}, _$_vue_runtime_core0.ComponentOptionsMixin, _$_vue_runtime_core0.ComponentOptionsMixin, {}, string, _$_vue_runtime_core0.PublicProps, Readonly<_$_vue_runtime_core0.ExtractPropTypes<{
2941
+ }>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
3136
2942
  name: StringConstructor;
3137
2943
  initials: StringConstructor;
3138
2944
  size: {
@@ -3155,11 +2961,11 @@ declare const Avatar: _$_vue_runtime_core0.DefineComponent<_$_vue_runtime_core0.
3155
2961
  type: PropType<AvatarProps["status"]>;
3156
2962
  };
3157
2963
  }>> & Readonly<{}>, {
3158
- fg: string;
3159
- size: "sm" | "md" | "lg";
3160
2964
  border: boolean;
2965
+ fg: string;
3161
2966
  bg: string;
3162
- }, {}, {}, {}, string, _$_vue_runtime_core0.ComponentProvideOptions, true, {}, any>;
2967
+ size: "sm" | "md" | "lg";
2968
+ }, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
3163
2969
  //#endregion
3164
- export { FormProps as $, FrescoInputEvent as $t, TableColumn as A, HStack as At, TimerProps as B, CompositionEvent as Bt, Menu as C, NewlineProps as Ct, TreeNode as D, CardProps as Dt, Tree as E, Card as Et, Tooltip as F, DividerProps as Ft, AlertProps as G, FrescoAppearance as Gt, BadgeProps as H, FrescoAlignContent as Ht, TooltipPosition as I, Spacer as It, ProgressBarProps as J, FrescoCanonicalStyle as Jt, AlertType as K, FrescoBorderStyle as Kt, TooltipProps as L, Box as Lt, List as M, StackProps as Mt, ListItem as N, VStack as Nt, TreeProps as O, Grid as Ot, ListProps as P, Divider as Pt, FormField as Q, FrescoFlexWrap as Qt, Timer as R, BoxProps as Rt, TabsProps as S, Newline as St, MenuProps as T, TextProps as Tt, BadgeVariant as U, FrescoAlignItems as Ut, Badge as V, FocusEvent as Vt, Alert as W, FrescoAlignSelf as Wt, SpinnerProps as X, FrescoDisplay as Xt, Spinner as Y, FrescoDimension as Yt, Form as Z, FrescoFlexDirection as Zt, Breadcrumb as _, PasteEvent as _n, CodeProps as _t, KeyHintProps as a, FrescoRenderNode as an, Checkbox as at, Tab as b, Static as bt, StatusBar as c, FrescoRootRenderNode as cn, SelectOption as ct, Modal as d, FrescoTextRenderNode as dn, TextAreaProps as dt, FrescoInputRenderNode as en, Confirm as et, ModalProps as f, FrescoTextWrapMode as fn, TextInput as ft, StepperProps as g, MouseEvent as gn, Code as gt, Stepper as h, KeyEventType as hn, LinkProps as ht, KeyHint as i, FrescoPosition as in, RadioOption as it, TableProps as j, Stack as jt, Table as k, GridProps as kt, StatusBarItem as l, FrescoSnakeStyleAliases as ln, SelectProps as lt, StepStatus as m, KeyEvent as mn, Link as mt, AvatarProps as n, FrescoModifiers as nn, RadioGroup as nt, Header as o, FrescoRenderNodeKind as on, CheckboxProps as ot, Step as p, InputEvent as pn, TextInputProps as pt, ProgressBar as q, FrescoBoxRenderNode as qt, KeyBinding as r, FrescoOverflow as rn, RadioGroupProps as rt, HeaderProps as s, FrescoRenderStyle as sn, Select as st, Avatar as t, FrescoJustifyContent as tn, ConfirmProps as tt, StatusBarProps as u, FrescoStyle as un, TextArea as ut, BreadcrumbItem as v, ResizeEvent as vn, Transform as vt, MenuItem as w, Text as wt, Tabs as x, StaticProps as xt, BreadcrumbProps as y, TransformProps as yt, TimerMode as z, createRenderer$1 as zt };
3165
- //# sourceMappingURL=index-CQHg8OjC.d.mts.map
2970
+ export { FormProps as $, TableColumn as A, HStack as At, TimerProps as B, Menu as C, NewlineProps as Ct, TreeNode as D, CardProps as Dt, Tree as E, Card as Et, Tooltip as F, DividerProps as Ft, AlertProps as G, BadgeProps as H, TooltipPosition as I, Spacer as It, ProgressBarProps as J, AlertType as K, TooltipProps as L, Box as Lt, List as M, StackProps as Mt, ListItem as N, VStack as Nt, TreeProps as O, Grid as Ot, ListProps as P, Divider as Pt, FormField as Q, Timer as R, BoxProps as Rt, TabsProps as S, Newline as St, MenuProps as T, TextProps as Tt, BadgeVariant as U, Badge as V, Alert as W, SpinnerProps as X, Spinner as Y, Form as Z, Breadcrumb as _, CodeProps as _t, KeyHintProps as a, Checkbox as at, Tab as b, Static as bt, StatusBar as c, SelectOption as ct, Modal as d, TextAreaProps as dt, Confirm as et, ModalProps as f, TextInput as ft, StepperProps as g, Code as gt, Stepper as h, LinkProps as ht, KeyHint as i, RadioOption as it, TableProps as j, Stack as jt, Table as k, GridProps as kt, StatusBarItem as l, SelectProps as lt, StepStatus as m, Link as mt, AvatarProps as n, RadioGroup as nt, Header as o, CheckboxProps as ot, Step as p, TextInputProps as pt, ProgressBar as q, KeyBinding as r, RadioGroupProps as rt, HeaderProps as s, Select as st, Avatar as t, ConfirmProps as tt, StatusBarProps as u, TextArea as ut, BreadcrumbItem as v, Transform as vt, MenuItem as w, Text as wt, Tabs as x, StaticProps as xt, BreadcrumbProps as y, TransformProps as yt, TimerMode as z };
2971
+ //# sourceMappingURL=index-D2kUje57.d.mts.map