@sigx/daisyui 0.1.11 → 0.1.12

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 (70) hide show
  1. package/dist/buttons/Button.d.ts +2 -2
  2. package/dist/buttons/ButtonGroup.d.ts +2 -2
  3. package/dist/data/Avatar.d.ts +1 -1
  4. package/dist/data/Avatar.d.ts.map +1 -1
  5. package/dist/data/Stats.d.ts +13 -13
  6. package/dist/data/Table.d.ts +27 -27
  7. package/dist/feedback/Accordion.d.ts +27 -27
  8. package/dist/feedback/Badge.d.ts +9 -9
  9. package/dist/feedback/Badge.d.ts.map +1 -1
  10. package/dist/feedback/Countdown.d.ts +1 -1
  11. package/dist/feedback/Countdown.d.ts.map +1 -1
  12. package/dist/feedback/Diff.d.ts +3 -3
  13. package/dist/feedback/FileInput.d.ts +1 -1
  14. package/dist/feedback/FileInput.d.ts.map +1 -1
  15. package/dist/feedback/Indicator.d.ts +3 -3
  16. package/dist/feedback/Kbd.d.ts +2 -2
  17. package/dist/feedback/Modal.d.ts +18 -18
  18. package/dist/feedback/RadialProgress.d.ts +2 -2
  19. package/dist/feedback/Rating.d.ts +1 -1
  20. package/dist/feedback/Rating.d.ts.map +1 -1
  21. package/dist/feedback/Skeleton.d.ts +1 -1
  22. package/dist/feedback/Skeleton.d.ts.map +1 -1
  23. package/dist/feedback/Steps.d.ts +20 -20
  24. package/dist/feedback/Swap.d.ts +3 -3
  25. package/dist/feedback/Timeline.d.ts +28 -28
  26. package/dist/feedback/Toast.d.ts +2 -2
  27. package/dist/forms/Checkbox.d.ts +1 -1
  28. package/dist/forms/Checkbox.d.ts.map +1 -1
  29. package/dist/forms/FormField.d.ts +2 -2
  30. package/dist/forms/Input.d.ts +1 -1
  31. package/dist/forms/Input.d.ts.map +1 -1
  32. package/dist/forms/Radio.d.ts +28 -28
  33. package/dist/forms/Range.d.ts +1 -1
  34. package/dist/forms/Range.d.ts.map +1 -1
  35. package/dist/forms/Select.d.ts +2 -2
  36. package/dist/forms/Textarea.d.ts +1 -1
  37. package/dist/forms/Textarea.d.ts.map +1 -1
  38. package/dist/forms/Toggle.d.ts +1 -1
  39. package/dist/forms/Toggle.d.ts.map +1 -1
  40. package/dist/layout/Card.d.ts +28 -28
  41. package/dist/layout/Carousel.d.ts +23 -23
  42. package/dist/layout/Chat.d.ts +21 -21
  43. package/dist/layout/Container.d.ts +2 -2
  44. package/dist/layout/Divider.d.ts +2 -2
  45. package/dist/layout/Flex.d.ts +6 -6
  46. package/dist/layout/Footer.d.ts +2 -2
  47. package/dist/layout/Hero.d.ts +20 -20
  48. package/dist/layout/Join.d.ts +13 -13
  49. package/dist/layout/Link.d.ts +2 -2
  50. package/dist/layout/Mask.d.ts +2 -2
  51. package/dist/layout/Mockup.d.ts +18 -18
  52. package/dist/layout/Stack.d.ts +2 -2
  53. package/dist/layout/index.d.ts +13 -13
  54. package/dist/layout/index.d.ts.map +1 -1
  55. package/dist/navigation/Breadcrumbs.d.ts +1 -1
  56. package/dist/navigation/Breadcrumbs.d.ts.map +1 -1
  57. package/dist/navigation/Drawer.d.ts +3 -3
  58. package/dist/navigation/Dropdown.d.ts +3 -3
  59. package/dist/navigation/MenuComponent.d.ts +21 -21
  60. package/dist/navigation/Navbar.d.ts +4 -4
  61. package/dist/navigation/Pagination.d.ts +1 -1
  62. package/dist/navigation/Pagination.d.ts.map +1 -1
  63. package/dist/navigation/Tabs.d.ts +1 -1
  64. package/dist/navigation/Tabs.d.ts.map +1 -1
  65. package/dist/shared/Icon.d.ts +1 -1
  66. package/dist/shared/Icon.d.ts.map +1 -1
  67. package/dist/theme/ThemeProvider.d.ts +4 -4
  68. package/dist/theme/ThemeProvider.d.ts.map +1 -1
  69. package/dist/typography/Text.d.ts +4 -4
  70. package/package.json +8 -8
@@ -12,7 +12,7 @@ export type ButtonProps = DefineProp<'variant', ButtonVariant, false> & DefinePr
12
12
  * </Button>
13
13
  * ```
14
14
  */
15
- export declare const Button: import("@sigx/runtime-core").ComponentFactory<ButtonProps, void, {
16
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
15
+ export declare const Button: import("sigx").ComponentFactory<ButtonProps, void, {
16
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
17
17
  }>;
18
18
  //# sourceMappingURL=Button.d.ts.map
@@ -12,7 +12,7 @@ export type ButtonGroupProps = DefineProp<'vertical', boolean, false> & DefinePr
12
12
  * </ButtonGroup>
13
13
  * ```
14
14
  */
15
- export declare const ButtonGroup: import("@sigx/runtime-core").ComponentFactory<ButtonGroupProps, void, {
16
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
15
+ export declare const ButtonGroup: import("sigx").ComponentFactory<ButtonGroupProps, void, {
16
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
17
17
  }>;
18
18
  //# sourceMappingURL=ButtonGroup.d.ts.map
@@ -11,5 +11,5 @@ export type AvatarProps = DefineProp<'src', string, false> & DefineProp<'alt', s
11
11
  * <Avatar placeholder="JD" size="lg" />
12
12
  * ```
13
13
  */
14
- export declare const Avatar: import("@sigx/runtime-core").ComponentFactory<AvatarProps, void, {}>;
14
+ export declare const Avatar: import("sigx").ComponentFactory<AvatarProps, void, {}>;
15
15
  //# sourceMappingURL=Avatar.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../../src/data/Avatar.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,MAAM,CAAC;AAM7C,MAAM,MAAM,UAAU,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAC1D,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,SAAS,GAAG,QAAQ,CAAC;AAE1D,MAAM,MAAM,WAAW,GACjB,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,GAChC,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,GAChC,UAAU,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,CAAC,GACrC,UAAU,CAAC,OAAO,EAAE,WAAW,EAAE,KAAK,CAAC,GACvC,UAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,KAAK,CAAC,GACpC,UAAU,CAAC,SAAS,EAAE,OAAO,EAAE,KAAK,CAAC,GACrC,UAAU,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,CAAC,GACxC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AAgBzC;;;;;;;;GAQG;AACH,eAAO,MAAM,MAAM,sEAkCjB,CAAC"}
1
+ {"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../../src/data/Avatar.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,MAAM,CAAC;AAM7C,MAAM,MAAM,UAAU,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAC1D,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,SAAS,GAAG,QAAQ,CAAC;AAE1D,MAAM,MAAM,WAAW,GACjB,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,GAChC,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,GAChC,UAAU,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,CAAC,GACrC,UAAU,CAAC,OAAO,EAAE,WAAW,EAAE,KAAK,CAAC,GACvC,UAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,KAAK,CAAC,GACpC,UAAU,CAAC,SAAS,EAAE,OAAO,EAAE,KAAK,CAAC,GACrC,UAAU,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,CAAC,GACxC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AAgBzC;;;;;;;;GAQG;AACH,eAAO,MAAM,MAAM,wDAkCjB,CAAC"}
@@ -17,32 +17,32 @@ export declare const Stats: ((props: {
17
17
  vertical?: boolean | undefined;
18
18
  } & {} & {
19
19
  slots?: Partial<{
20
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
20
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
21
21
  }> | undefined;
22
- } & {} & JSX.IntrinsicAttributes & import("@sigx/runtime-core").ComponentAttributeExtensions & {
23
- ref?: import("@sigx/runtime-core").Ref<void> | undefined;
22
+ } & {} & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
23
+ ref?: import("sigx").Ref<void> | undefined;
24
24
  children?: any;
25
- }) => import("@sigx/runtime-core").JSXElement) & {
26
- __setup: import("@sigx/runtime-core").SetupFn<{
27
- vertical?: boolean | undefined;
25
+ }) => import("sigx").JSXElement) & {
26
+ __setup: import("sigx").SetupFn<{
28
27
  class?: string | undefined;
28
+ vertical?: boolean | undefined;
29
29
  }, StatsProps, void, {
30
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
30
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
31
31
  }>;
32
- __name?: string;
33
- __islandId?: string;
32
+ __name?: string | undefined;
33
+ __islandId?: string | undefined;
34
34
  __props: {
35
- vertical?: boolean | undefined;
36
35
  class?: string | undefined;
36
+ vertical?: boolean | undefined;
37
37
  };
38
38
  __events: StatsProps;
39
39
  __ref: void;
40
40
  __slots: {
41
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
41
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
42
42
  };
43
43
  } & {
44
- Item: import("@sigx/runtime-core").ComponentFactory<StatProps, void, {
45
- figure: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
44
+ Item: import("sigx").ComponentFactory<StatProps, void, {
45
+ figure: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
46
46
  }>;
47
47
  };
48
48
  //# sourceMappingURL=Stats.d.ts.map
@@ -23,56 +23,56 @@ export type TdProps = DefineProp<'class', string, false> & DefineSlot<'default'>
23
23
  */
24
24
  export declare const Table: ((props: {
25
25
  class?: string | undefined;
26
+ pinCols?: boolean | undefined;
27
+ pinRows?: boolean | undefined;
26
28
  size?: TableSize | undefined;
27
29
  zebra?: boolean | undefined;
28
- pinRows?: boolean | undefined;
29
- pinCols?: boolean | undefined;
30
30
  } & {} & {
31
31
  slots?: Partial<{
32
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
32
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
33
33
  }> | undefined;
34
- } & {} & JSX.IntrinsicAttributes & import("@sigx/runtime-core").ComponentAttributeExtensions & {
35
- ref?: import("@sigx/runtime-core").Ref<void> | undefined;
34
+ } & {} & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
35
+ ref?: import("sigx").Ref<void> | undefined;
36
36
  children?: any;
37
- }) => import("@sigx/runtime-core").JSXElement) & {
38
- __setup: import("@sigx/runtime-core").SetupFn<{
39
- zebra?: boolean | undefined;
40
- pinRows?: boolean | undefined;
37
+ }) => import("sigx").JSXElement) & {
38
+ __setup: import("sigx").SetupFn<{
39
+ class?: string | undefined;
41
40
  pinCols?: boolean | undefined;
41
+ pinRows?: boolean | undefined;
42
42
  size?: TableSize | undefined;
43
- class?: string | undefined;
43
+ zebra?: boolean | undefined;
44
44
  }, TableProps, void, {
45
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
45
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
46
46
  }>;
47
- __name?: string;
48
- __islandId?: string;
47
+ __name?: string | undefined;
48
+ __islandId?: string | undefined;
49
49
  __props: {
50
- zebra?: boolean | undefined;
51
- pinRows?: boolean | undefined;
50
+ class?: string | undefined;
52
51
  pinCols?: boolean | undefined;
52
+ pinRows?: boolean | undefined;
53
53
  size?: TableSize | undefined;
54
- class?: string | undefined;
54
+ zebra?: boolean | undefined;
55
55
  };
56
56
  __events: TableProps;
57
57
  __ref: void;
58
58
  __slots: {
59
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
59
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
60
60
  };
61
61
  } & {
62
- Head: import("@sigx/runtime-core").ComponentFactory<TheadProps, void, {
63
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
62
+ Head: import("sigx").ComponentFactory<TheadProps, void, {
63
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
64
64
  }>;
65
- Body: import("@sigx/runtime-core").ComponentFactory<TbodyProps, void, {
66
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
65
+ Body: import("sigx").ComponentFactory<TbodyProps, void, {
66
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
67
67
  }>;
68
- Row: import("@sigx/runtime-core").ComponentFactory<TrProps, void, {
69
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
68
+ Row: import("sigx").ComponentFactory<TrProps, void, {
69
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
70
70
  }>;
71
- Th: import("@sigx/runtime-core").ComponentFactory<ThProps, void, {
72
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
71
+ Th: import("sigx").ComponentFactory<ThProps, void, {
72
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
73
73
  }>;
74
- Td: import("@sigx/runtime-core").ComponentFactory<TdProps, void, {
75
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
74
+ Td: import("sigx").ComponentFactory<TdProps, void, {
75
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
76
76
  }>;
77
77
  };
78
78
  //# sourceMappingURL=Table.d.ts.map
@@ -28,60 +28,60 @@ export type CollapseProps = DefineModel<boolean> & DefineProp<'title', string> &
28
28
  */
29
29
  export declare const Accordion: ((props: {
30
30
  class?: string | undefined;
31
+ items?: AccordionItem[] | undefined;
31
32
  join?: boolean | undefined;
32
- variant?: AccordionVariant | undefined;
33
33
  type?: AccordionType | undefined;
34
- items?: AccordionItem[] | undefined;
34
+ variant?: AccordionVariant | undefined;
35
35
  } & {
36
- "onUpdate:activeId"?: ((detail: string) => void) | undefined;
37
36
  onChange?: ((detail: string) => void) | undefined;
37
+ "onUpdate:activeId"?: ((detail: string) => void) | undefined;
38
38
  } & {
39
39
  slots?: Partial<{
40
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
40
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
41
41
  }> | undefined;
42
42
  } & {
43
- "model:activeId"?: import("@sigx/runtime-core").Model<string> | import("@sigx/runtime-core").ModelBinding<string> | (() => string) | undefined;
44
- } & JSX.IntrinsicAttributes & import("@sigx/runtime-core").ComponentAttributeExtensions & {
45
- ref?: import("@sigx/runtime-core").Ref<void> | undefined;
43
+ "model:activeId"?: import("sigx").Model<string> | import("sigx").ModelBinding<string> | (() => string) | undefined;
44
+ } & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
45
+ ref?: import("sigx").Ref<void> | undefined;
46
46
  children?: any;
47
- }) => import("@sigx/runtime-core").JSXElement) & {
48
- __setup: import("@sigx/runtime-core").SetupFn<{
47
+ }) => import("sigx").JSXElement) & {
48
+ __setup: import("sigx").SetupFn<{
49
+ activeId?: import("sigx").Model<string> | undefined;
50
+ change?: import("sigx").EventDefinition<string> | undefined;
51
+ class?: string | undefined;
49
52
  items?: AccordionItem[] | undefined;
50
- activeId?: import("@sigx/runtime-core").Model<string> | undefined;
51
- variant?: AccordionVariant | undefined;
52
53
  join?: boolean | undefined;
53
54
  type?: AccordionType | undefined;
54
- class?: string | undefined;
55
- change?: import("@sigx/runtime-core").EventDefinition<string> | undefined;
55
+ variant?: AccordionVariant | undefined;
56
56
  }, AccordionProps, void, {
57
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
57
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
58
58
  }>;
59
- __name?: string;
60
- __islandId?: string;
59
+ __name?: string | undefined;
60
+ __islandId?: string | undefined;
61
61
  __props: {
62
+ activeId?: import("sigx").Model<string> | undefined;
63
+ change?: import("sigx").EventDefinition<string> | undefined;
64
+ class?: string | undefined;
62
65
  items?: AccordionItem[] | undefined;
63
- activeId?: import("@sigx/runtime-core").Model<string> | undefined;
64
- variant?: AccordionVariant | undefined;
65
66
  join?: boolean | undefined;
66
67
  type?: AccordionType | undefined;
67
- class?: string | undefined;
68
- change?: import("@sigx/runtime-core").EventDefinition<string> | undefined;
68
+ variant?: AccordionVariant | undefined;
69
69
  };
70
70
  __events: AccordionProps;
71
71
  __ref: void;
72
72
  __slots: {
73
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
73
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
74
74
  };
75
75
  } & {
76
- Item: import("@sigx/runtime-core").ComponentFactory<AccordionItemProps, void, {
77
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
76
+ Item: import("sigx").ComponentFactory<AccordionItemProps, void, {
77
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
78
78
  } & {
79
- title: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
79
+ title: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
80
80
  }>;
81
- Collapse: import("@sigx/runtime-core").ComponentFactory<CollapseProps, void, {
82
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
81
+ Collapse: import("sigx").ComponentFactory<CollapseProps, void, {
82
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
83
83
  } & {
84
- title: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
84
+ title: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
85
85
  }>;
86
86
  };
87
87
  //# sourceMappingURL=Accordion.d.ts.map
@@ -11,8 +11,8 @@ export type BadgeProps = DefineProp<'variant', BadgeVariant, false> & DefineProp
11
11
  * <Badge variant="error" size="lg" outline>Error</Badge>
12
12
  * ```
13
13
  */
14
- export declare const Badge: import("@sigx/runtime-core").ComponentFactory<BadgeProps, void, {
15
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
14
+ export declare const Badge: import("sigx").ComponentFactory<BadgeProps, void, {
15
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
16
16
  }>;
17
17
  export type LoadingSize = 'xs' | 'sm' | 'md' | 'lg';
18
18
  export type LoadingType = 'spinner' | 'dots' | 'ring' | 'ball' | 'bars' | 'infinity';
@@ -26,7 +26,7 @@ export type LoadingProps = DefineProp<'type', LoadingType, false> & DefineProp<'
26
26
  * <Loading type="dots" />
27
27
  * ```
28
28
  */
29
- export declare const Loading: import("@sigx/runtime-core").ComponentFactory<LoadingProps, void, {}>;
29
+ export declare const Loading: import("sigx").ComponentFactory<LoadingProps, void, {}>;
30
30
  export type AlertVariant = 'info' | 'success' | 'warning' | 'error';
31
31
  export type AlertProps = DefineProp<'variant', AlertVariant, false> & DefineProp<'class', string, false> & DefineSlot<'default'> & DefineSlot<'icon'>;
32
32
  /**
@@ -38,10 +38,10 @@ export type AlertProps = DefineProp<'variant', AlertVariant, false> & DefineProp
38
38
  * <Alert variant="error">An error occurred.</Alert>
39
39
  * ```
40
40
  */
41
- export declare const Alert: import("@sigx/runtime-core").ComponentFactory<AlertProps, void, {
42
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
41
+ export declare const Alert: import("sigx").ComponentFactory<AlertProps, void, {
42
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
43
43
  } & {
44
- icon: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
44
+ icon: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
45
45
  }>;
46
46
  export type ProgressColor = 'primary' | 'secondary' | 'accent' | 'info' | 'success' | 'warning' | 'error';
47
47
  export type ProgressProps = DefineProp<'value', number, false> & DefineProp<'max', number, false> & DefineProp<'color', ProgressColor, false> & DefineProp<'class', string, false>;
@@ -53,7 +53,7 @@ export type ProgressProps = DefineProp<'value', number, false> & DefineProp<'max
53
53
  * <Progress value={75} max={100} color="primary" />
54
54
  * ```
55
55
  */
56
- export declare const Progress: import("@sigx/runtime-core").ComponentFactory<ProgressProps, void, {}>;
56
+ export declare const Progress: import("sigx").ComponentFactory<ProgressProps, void, {}>;
57
57
  export type TooltipPosition = 'top' | 'bottom' | 'left' | 'right';
58
58
  export type TooltipColor = 'primary' | 'secondary' | 'accent' | 'info' | 'success' | 'warning' | 'error';
59
59
  export type TooltipProps = DefineProp<'tip', string> & DefineProp<'position', TooltipPosition, false> & DefineProp<'color', TooltipColor, false> & DefineProp<'open', boolean, false> & DefineProp<'class', string, false> & DefineSlot<'default'>;
@@ -67,7 +67,7 @@ export type TooltipProps = DefineProp<'tip', string> & DefineProp<'position', To
67
67
  * </Tooltip>
68
68
  * ```
69
69
  */
70
- export declare const Tooltip: import("@sigx/runtime-core").ComponentFactory<TooltipProps, void, {
71
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
70
+ export declare const Tooltip: import("sigx").ComponentFactory<TooltipProps, void, {
71
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
72
72
  }>;
73
73
  //# sourceMappingURL=Badge.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../src/feedback/Badge.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../src/feedback/Badge.tsx"],"names":[],"mappings":"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"}
@@ -29,5 +29,5 @@ export type CountdownProps = DefineProp<'value', number> & DefineProp<'class', s
29
29
  * </div>
30
30
  * ```
31
31
  */
32
- export declare const Countdown: import("@sigx/runtime-core").ComponentFactory<CountdownProps, void, {}>;
32
+ export declare const Countdown: import("sigx").ComponentFactory<CountdownProps, void, {}>;
33
33
  //# sourceMappingURL=Countdown.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Countdown.d.ts","sourceRoot":"","sources":["../../src/feedback/Countdown.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,MAAM,CAAC;AAM7C,MAAM,MAAM,cAAc,GACpB,UAAU,CAAC,OAAO,EAAE,MAAM,CAAC,GAC3B,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AAMzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,eAAO,MAAM,SAAS,yEAYpB,CAAC"}
1
+ {"version":3,"file":"Countdown.d.ts","sourceRoot":"","sources":["../../src/feedback/Countdown.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,MAAM,CAAC;AAM7C,MAAM,MAAM,cAAc,GACpB,UAAU,CAAC,OAAO,EAAE,MAAM,CAAC,GAC3B,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AAMzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,eAAO,MAAM,SAAS,2DAYpB,CAAC"}
@@ -35,9 +35,9 @@ export type DiffProps = DefineProp<'aspectRatio', string, false> & DefineProp<'c
35
35
  * </Diff>
36
36
  * ```
37
37
  */
38
- export declare const Diff: import("@sigx/runtime-core").ComponentFactory<DiffProps, void, {
39
- first: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
38
+ export declare const Diff: import("sigx").ComponentFactory<DiffProps, void, {
39
+ first: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
40
40
  } & {
41
- second: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
41
+ second: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
42
42
  }>;
43
43
  //# sourceMappingURL=Diff.d.ts.map
@@ -24,5 +24,5 @@ export type FileInputProps = DefineProp<'accept', string, false> & DefineProp<'m
24
24
  * />
25
25
  * ```
26
26
  */
27
- export declare const FileInput: import("@sigx/runtime-core").ComponentFactory<FileInputProps, void, {}>;
27
+ export declare const FileInput: import("sigx").ComponentFactory<FileInputProps, void, {}>;
28
28
  //# sourceMappingURL=FileInput.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FileInput.d.ts","sourceRoot":"","sources":["../../src/feedback/FileInput.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAM1D,MAAM,MAAM,aAAa,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACtD,MAAM,MAAM,cAAc,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAE3G,MAAM,MAAM,cAAc,GACpB,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,CAAC,GACnC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,MAAM,EAAE,aAAa,EAAE,KAAK,CAAC,GACxC,UAAU,CAAC,OAAO,EAAE,cAAc,EAAE,KAAK,CAAC,GAC1C,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,GACnC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI,CAAC,CAAC;AAuB7C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,SAAS,yEAgCpB,CAAC"}
1
+ {"version":3,"file":"FileInput.d.ts","sourceRoot":"","sources":["../../src/feedback/FileInput.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAM1D,MAAM,MAAM,aAAa,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACtD,MAAM,MAAM,cAAc,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAE3G,MAAM,MAAM,cAAc,GACpB,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,CAAC,GACnC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,MAAM,EAAE,aAAa,EAAE,KAAK,CAAC,GACxC,UAAU,CAAC,OAAO,EAAE,cAAc,EAAE,KAAK,CAAC,GAC1C,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,GACnC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI,CAAC,CAAC;AAuB7C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,SAAS,2DAgCpB,CAAC"}
@@ -39,9 +39,9 @@ export type IndicatorProps = DefineProp<'position', IndicatorPosition, false> &
39
39
  * </Indicator>
40
40
  * ```
41
41
  */
42
- export declare const Indicator: import("@sigx/runtime-core").ComponentFactory<IndicatorProps, void, {
43
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
42
+ export declare const Indicator: import("sigx").ComponentFactory<IndicatorProps, void, {
43
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
44
44
  } & {
45
- indicator: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
45
+ indicator: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
46
46
  }>;
47
47
  //# sourceMappingURL=Indicator.d.ts.map
@@ -25,7 +25,7 @@ export type KbdProps = DefineProp<'size', KbdSize, false> & DefineProp<'class',
25
25
  * </div>
26
26
  * ```
27
27
  */
28
- export declare const Kbd: import("@sigx/runtime-core").ComponentFactory<KbdProps, void, {
29
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
28
+ export declare const Kbd: import("sigx").ComponentFactory<KbdProps, void, {
29
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
30
30
  }>;
31
31
  //# sourceMappingURL=Kbd.d.ts.map
@@ -12,40 +12,40 @@ export declare const Modal: ((props: {
12
12
  "onUpdate:modelValue"?: ((detail: boolean) => void) | undefined;
13
13
  } & {
14
14
  slots?: Partial<{
15
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
15
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
16
16
  }> | undefined;
17
17
  } & {
18
- model?: import("@sigx/runtime-core").Model<boolean> | import("@sigx/runtime-core").ModelBinding<boolean> | (() => boolean) | undefined;
19
- } & JSX.IntrinsicAttributes & import("@sigx/runtime-core").ComponentAttributeExtensions & {
20
- ref?: import("@sigx/runtime-core").Ref<void> | undefined;
18
+ model?: import("sigx").Model<boolean> | import("sigx").ModelBinding<boolean> | (() => boolean) | undefined;
19
+ } & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
20
+ ref?: import("sigx").Ref<void> | undefined;
21
21
  children?: any;
22
- }) => import("@sigx/runtime-core").JSXElement) & {
23
- __setup: import("@sigx/runtime-core").SetupFn<{
24
- model?: import("@sigx/runtime-core").Model<boolean> | undefined;
22
+ }) => import("sigx").JSXElement) & {
23
+ __setup: import("sigx").SetupFn<{
24
+ model?: import("sigx").Model<boolean> | undefined;
25
25
  class?: string | undefined;
26
26
  }, ModalProps, void, {
27
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
27
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
28
28
  }>;
29
- __name?: string;
30
- __islandId?: string;
29
+ __name?: string | undefined;
30
+ __islandId?: string | undefined;
31
31
  __props: {
32
- model?: import("@sigx/runtime-core").Model<boolean> | undefined;
32
+ model?: import("sigx").Model<boolean> | undefined;
33
33
  class?: string | undefined;
34
34
  };
35
35
  __events: ModalProps;
36
36
  __ref: void;
37
37
  __slots: {
38
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
38
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
39
39
  };
40
40
  } & {
41
- Header: import("@sigx/runtime-core").ComponentFactory<ModalHeaderProps, void, {
42
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
41
+ Header: import("sigx").ComponentFactory<ModalHeaderProps, void, {
42
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
43
43
  }>;
44
- Body: import("@sigx/runtime-core").ComponentFactory<ModalBodyProps, void, {
45
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
44
+ Body: import("sigx").ComponentFactory<ModalBodyProps, void, {
45
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
46
46
  }>;
47
- Actions: import("@sigx/runtime-core").ComponentFactory<ModalActionsProps, void, {
48
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
47
+ Actions: import("sigx").ComponentFactory<ModalActionsProps, void, {
48
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
49
49
  }>;
50
50
  };
51
51
  //# sourceMappingURL=Modal.d.ts.map
@@ -29,7 +29,7 @@ export type RadialProgressProps = DefineProp<'value', number> & DefineProp<'size
29
29
  * </RadialProgress>
30
30
  * ```
31
31
  */
32
- export declare const RadialProgress: import("@sigx/runtime-core").ComponentFactory<RadialProgressProps, void, {
33
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
32
+ export declare const RadialProgress: import("sigx").ComponentFactory<RadialProgressProps, void, {
33
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
34
34
  }>;
35
35
  //# sourceMappingURL=RadialProgress.d.ts.map
@@ -30,5 +30,5 @@ export type RatingProps = DefineModel<number> & DefineProp<'max', number, false>
30
30
  * />
31
31
  * ```
32
32
  */
33
- export declare const Rating: import("@sigx/runtime-core").ComponentFactory<RatingProps, void, {}>;
33
+ export declare const Rating: import("sigx").ComponentFactory<RatingProps, void, {}>;
34
34
  //# sourceMappingURL=Rating.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Rating.d.ts","sourceRoot":"","sources":["../../src/feedback/Rating.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAMvE,MAAM,MAAM,UAAU,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACnD,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,CAAC;AACjH,MAAM,MAAM,WAAW,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAExG,MAAM,MAAM,WAAW,GACjB,WAAW,CAAC,MAAM,CAAC,GACnB,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,GAChC,UAAU,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,CAAC,GACrC,UAAU,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,CAAC,GACrC,UAAU,CAAC,MAAM,EAAE,OAAO,EAAE,KAAK,CAAC,GAClC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,WAAW,EAAE,KAAK,CAAC,GACvC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;AAkCpC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,eAAO,MAAM,MAAM,sEAqEjB,CAAC"}
1
+ {"version":3,"file":"Rating.d.ts","sourceRoot":"","sources":["../../src/feedback/Rating.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAMvE,MAAM,MAAM,UAAU,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACnD,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,CAAC;AACjH,MAAM,MAAM,WAAW,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAExG,MAAM,MAAM,WAAW,GACjB,WAAW,CAAC,MAAM,CAAC,GACnB,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,GAChC,UAAU,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,CAAC,GACrC,UAAU,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,CAAC,GACrC,UAAU,CAAC,MAAM,EAAE,OAAO,EAAE,KAAK,CAAC,GAClC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,WAAW,EAAE,KAAK,CAAC,GACvC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;AAkCpC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,eAAO,MAAM,MAAM,wDAqEjB,CAAC"}
@@ -20,5 +20,5 @@ export type SkeletonProps = DefineProp<'width', string, false> & DefineProp<'hei
20
20
  * </div>
21
21
  * ```
22
22
  */
23
- export declare const Skeleton: import("@sigx/runtime-core").ComponentFactory<SkeletonProps, void, {}>;
23
+ export declare const Skeleton: import("sigx").ComponentFactory<SkeletonProps, void, {}>;
24
24
  //# sourceMappingURL=Skeleton.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Skeleton.d.ts","sourceRoot":"","sources":["../../src/feedback/Skeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,MAAM,CAAC;AAM7C,MAAM,MAAM,aAAa,GACnB,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,CAAC,GACnC,UAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,KAAK,CAAC,GACpC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AAMzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,eAAO,MAAM,QAAQ,wEAgBnB,CAAC"}
1
+ {"version":3,"file":"Skeleton.d.ts","sourceRoot":"","sources":["../../src/feedback/Skeleton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,MAAM,CAAC;AAM7C,MAAM,MAAM,aAAa,GACnB,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,CAAC,GACnC,UAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,KAAK,CAAC,GACpC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AAMzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,eAAO,MAAM,QAAQ,0DAgBnB,CAAC"}
@@ -13,47 +13,47 @@ export type StepProps = DefineProp<'id', string, false> & DefineProp<'color', St
13
13
  */
14
14
  export declare const Steps: ((props: {
15
15
  class?: string | undefined;
16
- vertical?: boolean | undefined;
17
16
  items?: StepItem[] | undefined;
17
+ vertical?: boolean | undefined;
18
18
  } & {
19
- "onUpdate:modelValue"?: ((detail: string) => void) | undefined;
20
19
  onChange?: ((detail: string) => void) | undefined;
20
+ "onUpdate:modelValue"?: ((detail: string) => void) | undefined;
21
21
  } & {
22
22
  slots?: Partial<{
23
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
23
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
24
24
  }> | undefined;
25
25
  } & {
26
- model?: import("@sigx/runtime-core").Model<string> | import("@sigx/runtime-core").ModelBinding<string> | (() => string) | undefined;
27
- } & JSX.IntrinsicAttributes & import("@sigx/runtime-core").ComponentAttributeExtensions & {
28
- ref?: import("@sigx/runtime-core").Ref<void> | undefined;
26
+ model?: import("sigx").Model<string> | import("sigx").ModelBinding<string> | (() => string) | undefined;
27
+ } & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
28
+ ref?: import("sigx").Ref<void> | undefined;
29
29
  children?: any;
30
- }) => import("@sigx/runtime-core").JSXElement) & {
31
- __setup: import("@sigx/runtime-core").SetupFn<{
30
+ }) => import("sigx").JSXElement) & {
31
+ __setup: import("sigx").SetupFn<{
32
+ model?: import("sigx").Model<string> | undefined;
33
+ change?: import("sigx").EventDefinition<string> | undefined;
34
+ class?: string | undefined;
32
35
  items?: StepItem[] | undefined;
33
- model?: import("@sigx/runtime-core").Model<string> | undefined;
34
36
  vertical?: boolean | undefined;
35
- class?: string | undefined;
36
- change?: import("@sigx/runtime-core").EventDefinition<string> | undefined;
37
37
  }, StepsProps, void, {
38
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
38
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
39
39
  }>;
40
- __name?: string;
41
- __islandId?: string;
40
+ __name?: string | undefined;
41
+ __islandId?: string | undefined;
42
42
  __props: {
43
+ model?: import("sigx").Model<string> | undefined;
44
+ change?: import("sigx").EventDefinition<string> | undefined;
45
+ class?: string | undefined;
43
46
  items?: StepItem[] | undefined;
44
- model?: import("@sigx/runtime-core").Model<string> | undefined;
45
47
  vertical?: boolean | undefined;
46
- class?: string | undefined;
47
- change?: import("@sigx/runtime-core").EventDefinition<string> | undefined;
48
48
  };
49
49
  __events: StepsProps;
50
50
  __ref: void;
51
51
  __slots: {
52
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
52
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
53
53
  };
54
54
  } & {
55
- Step: import("@sigx/runtime-core").ComponentFactory<StepProps, void, {
56
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
55
+ Step: import("sigx").ComponentFactory<StepProps, void, {
56
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
57
57
  }>;
58
58
  };
59
59
  export type { StepProps as StepCompProps };
@@ -45,9 +45,9 @@ export type SwapProps = DefineModel<boolean> & DefineProp<'rotate', boolean, fal
45
45
  * </Swap>
46
46
  * ```
47
47
  */
48
- export declare const Swap: import("@sigx/runtime-core").ComponentFactory<SwapProps, void, {
49
- on: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
48
+ export declare const Swap: import("sigx").ComponentFactory<SwapProps, void, {
49
+ on: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
50
50
  } & {
51
- off: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
51
+ off: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
52
52
  }>;
53
53
  //# sourceMappingURL=Swap.d.ts.map