@sigx/daisyui 0.1.11 → 0.1.13

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
@@ -18,59 +18,59 @@ export type TimelineEndProps = DefineProp<'boxed', boolean, false> & DefineProp<
18
18
  */
19
19
  export declare const Timeline: ((props: {
20
20
  class?: string | undefined;
21
- vertical?: boolean | undefined;
21
+ compact?: boolean | undefined;
22
22
  items?: TimelineItemData[] | undefined;
23
23
  snap?: boolean | undefined;
24
- compact?: boolean | undefined;
24
+ vertical?: boolean | undefined;
25
25
  } & {} & {
26
26
  slots?: Partial<{
27
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
27
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
28
28
  }> | undefined;
29
- } & {} & JSX.IntrinsicAttributes & import("@sigx/runtime-core").ComponentAttributeExtensions & {
30
- ref?: import("@sigx/runtime-core").Ref<void> | undefined;
29
+ } & {} & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
30
+ ref?: import("sigx").Ref<void> | undefined;
31
31
  children?: any;
32
- }) => import("@sigx/runtime-core").JSXElement) & {
33
- __setup: import("@sigx/runtime-core").SetupFn<{
32
+ }) => import("sigx").JSXElement) & {
33
+ __setup: import("sigx").SetupFn<{
34
+ class?: string | undefined;
35
+ compact?: boolean | undefined;
34
36
  items?: TimelineItemData[] | undefined;
35
- vertical?: boolean | undefined;
36
37
  snap?: boolean | undefined;
37
- compact?: boolean | undefined;
38
- class?: string | undefined;
38
+ vertical?: boolean | undefined;
39
39
  }, TimelineProps, void, {
40
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
40
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
41
41
  }>;
42
- __name?: string;
43
- __islandId?: string;
42
+ __name?: string | undefined;
43
+ __islandId?: string | undefined;
44
44
  __props: {
45
+ class?: string | undefined;
46
+ compact?: boolean | undefined;
45
47
  items?: TimelineItemData[] | undefined;
46
- vertical?: boolean | undefined;
47
48
  snap?: boolean | undefined;
48
- compact?: boolean | undefined;
49
- class?: string | undefined;
49
+ vertical?: boolean | undefined;
50
50
  };
51
51
  __events: TimelineProps;
52
52
  __ref: void;
53
53
  __slots: {
54
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
54
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
55
55
  };
56
56
  } & {
57
- Item: import("@sigx/runtime-core").ComponentFactory<TimelineItemProps, void, {
58
- start: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
57
+ Item: import("sigx").ComponentFactory<TimelineItemProps, void, {
58
+ start: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
59
59
  } & {
60
- middle: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
60
+ middle: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
61
61
  } & {
62
- end: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
62
+ end: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
63
63
  } & {
64
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
64
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
65
65
  }>;
66
- Start: import("@sigx/runtime-core").ComponentFactory<TimelineStartProps, void, {
67
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
66
+ Start: import("sigx").ComponentFactory<TimelineStartProps, void, {
67
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
68
68
  }>;
69
- Middle: import("@sigx/runtime-core").ComponentFactory<TimelineMiddleProps, void, {
70
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
69
+ Middle: import("sigx").ComponentFactory<TimelineMiddleProps, void, {
70
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
71
71
  }>;
72
- End: import("@sigx/runtime-core").ComponentFactory<TimelineEndProps, void, {
73
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
72
+ End: import("sigx").ComponentFactory<TimelineEndProps, void, {
73
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
74
74
  }>;
75
75
  };
76
76
  export type { TimelineItemProps as TimelineItemCompProps, TimelineStartProps as TimelineStartCompProps, TimelineMiddleProps as TimelineMiddleCompProps, TimelineEndProps as TimelineEndCompProps };
@@ -24,7 +24,7 @@ export type ToastProps = DefineProp<'position', ToastPosition, false> & DefinePr
24
24
  * </Toast>
25
25
  * ```
26
26
  */
27
- export declare const Toast: import("@sigx/runtime-core").ComponentFactory<ToastProps, void, {
28
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
27
+ export declare const Toast: import("sigx").ComponentFactory<ToastProps, void, {
28
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
29
29
  }>;
30
30
  //# sourceMappingURL=Toast.d.ts.map
@@ -11,5 +11,5 @@ export type CheckboxProps = DefineModel<boolean> & DefineProp<"name", string, fa
11
11
  * <Checkbox model={agreed} label="I agree to the terms" color="primary" />
12
12
  * ```
13
13
  */
14
- export declare const Checkbox: import("@sigx/runtime-core").ComponentFactory<CheckboxProps, void, {}>;
14
+ export declare const Checkbox: import("sigx").ComponentFactory<CheckboxProps, void, {}>;
15
15
  //# sourceMappingURL=Checkbox.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../src/forms/Checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAMvE,MAAM,MAAM,YAAY,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACrD,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAE1G,MAAM,MAAM,aAAa,GACnB,WAAW,CAAC,OAAO,CAAC,GACpB,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,MAAM,EAAE,YAAY,EAAE,KAAK,CAAC,GACvC,UAAU,CAAC,OAAO,EAAE,aAAa,EAAE,KAAK,CAAC,GACzC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;AAmBrC;;;;;;;;GAQG;AACH,eAAO,MAAM,QAAQ,wEAmBnB,CAAC"}
1
+ {"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../src/forms/Checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAMvE,MAAM,MAAM,YAAY,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACrD,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAE1G,MAAM,MAAM,aAAa,GACnB,WAAW,CAAC,OAAO,CAAC,GACpB,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,MAAM,EAAE,YAAY,EAAE,KAAK,CAAC,GACvC,UAAU,CAAC,OAAO,EAAE,aAAa,EAAE,KAAK,CAAC,GACzC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;AAmBrC;;;;;;;;GAQG;AACH,eAAO,MAAM,QAAQ,0DAmBnB,CAAC"}
@@ -10,7 +10,7 @@ export type FormFieldProps = DefineProp<"label", string, false> & DefineProp<"er
10
10
  * </FormField>
11
11
  * ```
12
12
  */
13
- export declare const FormField: import("@sigx/runtime-core").ComponentFactory<FormFieldProps, void, {
14
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
13
+ export declare const FormField: import("sigx").ComponentFactory<FormFieldProps, void, {
14
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
15
15
  }>;
16
16
  //# sourceMappingURL=FormField.d.ts.map
@@ -15,5 +15,5 @@ export type InputProps = DefineModel<string | number> & DefineProp<"name", strin
15
15
  * <Input model={() => form.name} placeholder="Enter your name" variant="bordered" />
16
16
  * ```
17
17
  */
18
- export declare const Input: import("@sigx/runtime-core").ComponentFactory<InputProps, void, {}>;
18
+ export declare const Input: import("sigx").ComponentFactory<InputProps, void, {}>;
19
19
  //# sourceMappingURL=Input.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../src/forms/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAMvE,MAAM,MAAM,SAAS,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAClD,MAAM,MAAM,YAAY,GAAG,UAAU,GAAG,OAAO,CAAC;AAChD,MAAM,MAAM,UAAU,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAIvG,MAAM,MAAM,UAAU,GAChB,WAAW,CAAC,MAAM,GAAG,MAAM,CAAC,GAC5B,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,CAAC,GACxC,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,GAAG,KAAK,EAAE,KAAK,CAAC,GACtF,UAAU,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,GACpC,UAAU,CAAC,SAAS,EAAE,YAAY,EAAE,KAAK,CAAC,GAC1C,UAAU,CAAC,OAAO,EAAE,UAAU,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,WAAW,EAAE,MAAM,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,OAAO,EAAE,UAAU,CAAC,GAChC,WAAW,CAAC,QAAQ,EAAE,KAAK,CAAC,GAC5B,WAAW,CAAC,OAAO,EAAE,UAAU,CAAC,GAChC,WAAW,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;AAmBtC;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,KAAK,qEAqChB,CAAC"}
1
+ {"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../src/forms/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAMvE,MAAM,MAAM,SAAS,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAClD,MAAM,MAAM,YAAY,GAAG,UAAU,GAAG,OAAO,CAAC;AAChD,MAAM,MAAM,UAAU,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAIvG,MAAM,MAAM,UAAU,GAChB,WAAW,CAAC,MAAM,GAAG,MAAM,CAAC,GAC5B,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,CAAC,GACxC,UAAU,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,GAAG,KAAK,EAAE,KAAK,CAAC,GACtF,UAAU,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,GACpC,UAAU,CAAC,SAAS,EAAE,YAAY,EAAE,KAAK,CAAC,GAC1C,UAAU,CAAC,OAAO,EAAE,UAAU,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,WAAW,EAAE,MAAM,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,OAAO,EAAE,UAAU,CAAC,GAChC,WAAW,CAAC,QAAQ,EAAE,KAAK,CAAC,GAC5B,WAAW,CAAC,OAAO,EAAE,UAAU,CAAC,GAChC,WAAW,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;AAmBtC;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,KAAK,uDAqChB,CAAC"}
@@ -24,55 +24,55 @@ export type StandaloneRadioProps = DefineProp<"checked", boolean, false> & Defin
24
24
  */
25
25
  export declare const Radio: ((props: {
26
26
  class?: string | undefined;
27
- size?: RadioSize | undefined;
27
+ color?: RadioColor | undefined;
28
+ direction?: "horizontal" | "vertical" | undefined;
28
29
  disabled?: boolean | undefined;
29
30
  name?: string | undefined;
30
- color?: RadioColor | undefined;
31
- direction?: "vertical" | "horizontal" | undefined;
31
+ size?: RadioSize | undefined;
32
32
  } & {
33
- "onUpdate:modelValue"?: ((detail: string) => void) | undefined;
34
33
  onChange?: ((detail: string) => void) | undefined;
34
+ "onUpdate:modelValue"?: ((detail: string) => void) | undefined;
35
35
  } & {
36
36
  slots?: Partial<{
37
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
37
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
38
38
  }> | undefined;
39
39
  } & {
40
- model?: import("@sigx/runtime-core").Model<string> | import("@sigx/runtime-core").ModelBinding<string> | (() => string) | undefined;
41
- } & JSX.IntrinsicAttributes & import("@sigx/runtime-core").ComponentAttributeExtensions & {
42
- ref?: import("@sigx/runtime-core").Ref<void> | undefined;
40
+ model?: import("sigx").Model<string> | import("sigx").ModelBinding<string> | (() => string) | undefined;
41
+ } & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
42
+ ref?: import("sigx").Ref<void> | undefined;
43
43
  children?: any;
44
- }) => import("@sigx/runtime-core").JSXElement) & {
45
- __setup: import("@sigx/runtime-core").SetupFn<{
46
- model?: import("@sigx/runtime-core").Model<string> | undefined;
47
- name?: string | undefined;
48
- size?: RadioSize | undefined;
44
+ }) => import("sigx").JSXElement) & {
45
+ __setup: import("sigx").SetupFn<{
46
+ model?: import("sigx").Model<string> | undefined;
47
+ change?: import("sigx").EventDefinition<string> | undefined;
48
+ class?: string | undefined;
49
49
  color?: RadioColor | undefined;
50
+ direction?: "horizontal" | "vertical" | undefined;
50
51
  disabled?: boolean | undefined;
51
- class?: string | undefined;
52
- direction?: "vertical" | "horizontal" | undefined;
53
- change?: import("@sigx/runtime-core").EventDefinition<string> | undefined;
52
+ name?: string | undefined;
53
+ size?: RadioSize | undefined;
54
54
  }, RadioGroupProps, void, {
55
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
55
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
56
56
  }>;
57
- __name?: string;
58
- __islandId?: string;
57
+ __name?: string | undefined;
58
+ __islandId?: string | undefined;
59
59
  __props: {
60
- model?: import("@sigx/runtime-core").Model<string> | undefined;
61
- name?: string | undefined;
62
- size?: RadioSize | undefined;
60
+ model?: import("sigx").Model<string> | undefined;
61
+ change?: import("sigx").EventDefinition<string> | undefined;
62
+ class?: string | undefined;
63
63
  color?: RadioColor | undefined;
64
+ direction?: "horizontal" | "vertical" | undefined;
64
65
  disabled?: boolean | undefined;
65
- class?: string | undefined;
66
- direction?: "vertical" | "horizontal" | undefined;
67
- change?: import("@sigx/runtime-core").EventDefinition<string> | undefined;
66
+ name?: string | undefined;
67
+ size?: RadioSize | undefined;
68
68
  };
69
69
  __events: RadioGroupProps;
70
70
  __ref: void;
71
71
  __slots: {
72
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
72
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
73
73
  };
74
74
  } & {
75
- Item: import("@sigx/runtime-core").ComponentFactory<RadioItemProps, void, {}>;
76
- Standalone: import("@sigx/runtime-core").ComponentFactory<StandaloneRadioProps, void, {}>;
75
+ Item: import("sigx").ComponentFactory<RadioItemProps, void, {}>;
76
+ Standalone: import("sigx").ComponentFactory<StandaloneRadioProps, void, {}>;
77
77
  };
78
78
  //# sourceMappingURL=Radio.d.ts.map
@@ -11,5 +11,5 @@ export type RangeProps = DefineModel<number> & DefineProp<"name", string, false>
11
11
  * <Range model={volume} min={0} max={100} step={1} color="primary" />
12
12
  * ```
13
13
  */
14
- export declare const Range: import("@sigx/runtime-core").ComponentFactory<RangeProps, void, {}>;
14
+ export declare const Range: import("sigx").ComponentFactory<RangeProps, void, {}>;
15
15
  //# sourceMappingURL=Range.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Range.d.ts","sourceRoot":"","sources":["../../src/forms/Range.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAMvE,MAAM,MAAM,SAAS,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAClD,MAAM,MAAM,UAAU,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAEvG,MAAM,MAAM,UAAU,GAChB,WAAW,CAAC,MAAM,CAAC,GACnB,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,GAChC,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,GAChC,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,GACpC,UAAU,CAAC,OAAO,EAAE,UAAU,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;AAmBpC;;;;;;;;GAQG;AACH,eAAO,MAAM,KAAK,qEAmBhB,CAAC"}
1
+ {"version":3,"file":"Range.d.ts","sourceRoot":"","sources":["../../src/forms/Range.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAMvE,MAAM,MAAM,SAAS,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAClD,MAAM,MAAM,UAAU,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAEvG,MAAM,MAAM,UAAU,GAChB,WAAW,CAAC,MAAM,CAAC,GACnB,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,GAChC,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,GAChC,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,GACpC,UAAU,CAAC,OAAO,EAAE,UAAU,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;AAmBpC;;;;;;;;GAQG;AACH,eAAO,MAAM,KAAK,uDAmBhB,CAAC"}
@@ -22,7 +22,7 @@ export type SelectProps = DefineModel<string> & DefineProp<"name", string, false
22
22
  * <Select model={() => form.choice} options={options} placeholder="Select an option" />
23
23
  * ```
24
24
  */
25
- export declare const Select: import("@sigx/runtime-core").ComponentFactory<SelectProps, void, {
26
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
25
+ export declare const Select: import("sigx").ComponentFactory<SelectProps, void, {
26
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
27
27
  }>;
28
28
  //# sourceMappingURL=Select.d.ts.map
@@ -13,5 +13,5 @@ export type TextareaProps = DefineModel<string> & DefineProp<"name", string, fal
13
13
  * <Textarea model={() => form.bio} placeholder="Tell us about yourself" rows={5} />
14
14
  * ```
15
15
  */
16
- export declare const Textarea: import("@sigx/runtime-core").ComponentFactory<TextareaProps, void, {}>;
16
+ export declare const Textarea: import("sigx").ComponentFactory<TextareaProps, void, {}>;
17
17
  //# sourceMappingURL=Textarea.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Textarea.d.ts","sourceRoot":"","sources":["../../src/forms/Textarea.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AACvE,OAAO,KAAK,EAAE,SAAS,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAMnE,MAAM,MAAM,aAAa,GACnB,WAAW,CAAC,MAAM,CAAC,GACnB,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,CAAC,GACxC,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,GACpC,UAAU,CAAC,SAAS,EAAE,YAAY,EAAE,KAAK,CAAC,GAC1C,UAAU,CAAC,OAAO,EAAE,UAAU,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,OAAO,EAAE,UAAU,CAAC,GAChC,WAAW,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;AAEnC;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,QAAQ,wEA+BnB,CAAC"}
1
+ {"version":3,"file":"Textarea.d.ts","sourceRoot":"","sources":["../../src/forms/Textarea.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AACvE,OAAO,KAAK,EAAE,SAAS,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAMnE,MAAM,MAAM,aAAa,GACnB,WAAW,CAAC,MAAM,CAAC,GACnB,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,CAAC,GACxC,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,GACpC,UAAU,CAAC,SAAS,EAAE,YAAY,EAAE,KAAK,CAAC,GAC1C,UAAU,CAAC,OAAO,EAAE,UAAU,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,OAAO,EAAE,UAAU,CAAC,GAChC,WAAW,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;AAEnC;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,QAAQ,0DA+BnB,CAAC"}
@@ -11,5 +11,5 @@ export type ToggleProps = DefineModel<boolean> & DefineProp<"name", string, fals
11
11
  * <Toggle model={enabled} label="Enable notifications" color="primary" />
12
12
  * ```
13
13
  */
14
- export declare const Toggle: import("@sigx/runtime-core").ComponentFactory<ToggleProps, void, {}>;
14
+ export declare const Toggle: import("sigx").ComponentFactory<ToggleProps, void, {}>;
15
15
  //# sourceMappingURL=Toggle.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Toggle.d.ts","sourceRoot":"","sources":["../../src/forms/Toggle.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,WAAW,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAExG,MAAM,MAAM,WAAW,GACjB,WAAW,CAAC,OAAO,CAAC,GACpB,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,CAAC,GACrC,UAAU,CAAC,OAAO,EAAE,WAAW,EAAE,KAAK,CAAC,GACvC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;AAmBrC;;;;;;;;GAQG;AACH,eAAO,MAAM,MAAM,sEAmBjB,CAAC"}
1
+ {"version":3,"file":"Toggle.d.ts","sourceRoot":"","sources":["../../src/forms/Toggle.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,WAAW,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAExG,MAAM,MAAM,WAAW,GACjB,WAAW,CAAC,OAAO,CAAC,GACpB,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,CAAC,GACrC,UAAU,CAAC,OAAO,EAAE,WAAW,EAAE,KAAK,CAAC,GACvC,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;AAmBrC;;;;;;;;GAQG;AACH,eAAO,MAAM,MAAM,wDAmBjB,CAAC"}
@@ -9,58 +9,58 @@ export type CardImageProps = DefineProp<'src', string> & DefineProp<'alt', strin
9
9
  * Card compound component with Body, Title, Actions, and Image sub-components.
10
10
  */
11
11
  export declare const Card: ((props: {
12
- class?: string | undefined;
13
- variant?: CardVariant | undefined;
12
+ bgColor?: string | undefined;
14
13
  bordered?: boolean | undefined;
15
- shadow?: boolean | "sm" | "md" | "lg" | "xl" | undefined;
14
+ class?: string | undefined;
16
15
  glass?: boolean | undefined;
17
16
  imageFull?: boolean | undefined;
18
- bgColor?: string | undefined;
17
+ shadow?: "lg" | "md" | "sm" | "xl" | boolean | undefined;
18
+ variant?: CardVariant | undefined;
19
19
  } & {} & {
20
20
  slots?: Partial<{
21
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
21
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
22
22
  }> | undefined;
23
- } & {} & JSX.IntrinsicAttributes & import("@sigx/runtime-core").ComponentAttributeExtensions & {
24
- ref?: import("@sigx/runtime-core").Ref<void> | undefined;
23
+ } & {} & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
24
+ ref?: import("sigx").Ref<void> | undefined;
25
25
  children?: any;
26
- }) => import("@sigx/runtime-core").JSXElement) & {
27
- __setup: import("@sigx/runtime-core").SetupFn<{
28
- variant?: CardVariant | undefined;
29
- shadow?: boolean | "sm" | "md" | "lg" | "xl" | undefined;
26
+ }) => import("sigx").JSXElement) & {
27
+ __setup: import("sigx").SetupFn<{
28
+ bgColor?: string | undefined;
30
29
  bordered?: boolean | undefined;
30
+ class?: string | undefined;
31
31
  glass?: boolean | undefined;
32
32
  imageFull?: boolean | undefined;
33
- bgColor?: string | undefined;
34
- class?: string | undefined;
33
+ shadow?: "lg" | "md" | "sm" | "xl" | boolean | undefined;
34
+ variant?: CardVariant | undefined;
35
35
  }, CardProps, void, {
36
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
36
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
37
37
  }>;
38
- __name?: string;
39
- __islandId?: string;
38
+ __name?: string | undefined;
39
+ __islandId?: string | undefined;
40
40
  __props: {
41
- variant?: CardVariant | undefined;
42
- shadow?: boolean | "sm" | "md" | "lg" | "xl" | undefined;
41
+ bgColor?: string | undefined;
43
42
  bordered?: boolean | undefined;
43
+ class?: string | undefined;
44
44
  glass?: boolean | undefined;
45
45
  imageFull?: boolean | undefined;
46
- bgColor?: string | undefined;
47
- class?: string | undefined;
46
+ shadow?: "lg" | "md" | "sm" | "xl" | boolean | undefined;
47
+ variant?: CardVariant | undefined;
48
48
  };
49
49
  __events: CardProps;
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
- Body: import("@sigx/runtime-core").ComponentFactory<CardBodyProps, void, {
56
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
55
+ Body: import("sigx").ComponentFactory<CardBodyProps, void, {
56
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
57
57
  }>;
58
- Title: import("@sigx/runtime-core").ComponentFactory<CardTitleProps, void, {
59
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
58
+ Title: import("sigx").ComponentFactory<CardTitleProps, void, {
59
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
60
60
  }>;
61
- Actions: import("@sigx/runtime-core").ComponentFactory<CardActionsProps, void, {
62
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
61
+ Actions: import("sigx").ComponentFactory<CardActionsProps, void, {
62
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
63
63
  }>;
64
- Image: import("@sigx/runtime-core").ComponentFactory<CardImageProps, void, {}>;
64
+ Image: import("sigx").ComponentFactory<CardImageProps, void, {}>;
65
65
  };
66
66
  //# sourceMappingURL=Card.d.ts.map
@@ -9,48 +9,48 @@ export type CarouselItemProps = DefineProp<'id', string, false> & DefineProp<'fu
9
9
  * Carousel compound component with Item sub-component.
10
10
  */
11
11
  export declare const Carousel: ((props: {
12
- class?: string | undefined;
13
- vertical?: boolean | undefined;
14
- items?: CarouselItemData[] | undefined;
15
12
  center?: boolean | undefined;
13
+ class?: string | undefined;
16
14
  fullWidth?: boolean | undefined;
17
- snap?: "start" | "end" | "center" | undefined;
15
+ items?: CarouselItemData[] | undefined;
16
+ snap?: "center" | "end" | "start" | undefined;
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
- items?: CarouselItemData[] | undefined;
25
+ }) => import("sigx").JSXElement) & {
26
+ __setup: import("sigx").SetupFn<{
28
27
  center?: boolean | undefined;
29
- vertical?: boolean | undefined;
30
- fullWidth?: boolean | undefined;
31
- snap?: "start" | "end" | "center" | undefined;
32
28
  class?: string | undefined;
29
+ fullWidth?: boolean | undefined;
30
+ items?: CarouselItemData[] | undefined;
31
+ snap?: "center" | "end" | "start" | undefined;
32
+ vertical?: boolean | undefined;
33
33
  }, CarouselProps, void, {
34
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
34
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
35
35
  }>;
36
- __name?: string;
37
- __islandId?: string;
36
+ __name?: string | undefined;
37
+ __islandId?: string | undefined;
38
38
  __props: {
39
- items?: CarouselItemData[] | undefined;
40
39
  center?: boolean | undefined;
41
- vertical?: boolean | undefined;
42
- fullWidth?: boolean | undefined;
43
- snap?: "start" | "end" | "center" | undefined;
44
40
  class?: string | undefined;
41
+ fullWidth?: boolean | undefined;
42
+ items?: CarouselItemData[] | undefined;
43
+ snap?: "center" | "end" | "start" | undefined;
44
+ vertical?: boolean | undefined;
45
45
  };
46
46
  __events: CarouselProps;
47
47
  __ref: void;
48
48
  __slots: {
49
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
49
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
50
50
  };
51
51
  } & {
52
- Item: import("@sigx/runtime-core").ComponentFactory<CarouselItemProps, void, {
53
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
52
+ Item: import("sigx").ComponentFactory<CarouselItemProps, void, {
53
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
54
54
  }>;
55
55
  };
56
56
  export type { CarouselItemProps as CarouselItemCompProps };
@@ -10,45 +10,45 @@ export type ChatFooterProps = DefineProp<'class', string, false> & DefineSlot<'d
10
10
  */
11
11
  export declare const Chat: ((props: {
12
12
  class?: string | undefined;
13
- start?: boolean | undefined;
14
13
  end?: boolean | undefined;
14
+ start?: boolean | undefined;
15
15
  } & {} & {
16
16
  slots?: Partial<{
17
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
17
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
18
18
  }> | undefined;
19
- } & {} & JSX.IntrinsicAttributes & import("@sigx/runtime-core").ComponentAttributeExtensions & {
20
- ref?: import("@sigx/runtime-core").Ref<void> | 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
- start?: boolean | undefined;
25
- end?: boolean | undefined;
22
+ }) => import("sigx").JSXElement) & {
23
+ __setup: import("sigx").SetupFn<{
26
24
  class?: string | undefined;
25
+ end?: boolean | undefined;
26
+ start?: boolean | undefined;
27
27
  }, ChatProps, void, {
28
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
28
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
29
29
  }>;
30
- __name?: string;
31
- __islandId?: string;
30
+ __name?: string | undefined;
31
+ __islandId?: string | undefined;
32
32
  __props: {
33
- start?: boolean | undefined;
34
- end?: boolean | undefined;
35
33
  class?: string | undefined;
34
+ end?: boolean | undefined;
35
+ start?: boolean | undefined;
36
36
  };
37
37
  __events: ChatProps;
38
38
  __ref: void;
39
39
  __slots: {
40
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
40
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
41
41
  };
42
42
  } & {
43
- Image: import("@sigx/runtime-core").ComponentFactory<ChatImageProps, void, {}>;
44
- Header: import("@sigx/runtime-core").ComponentFactory<ChatHeaderProps, void, {
45
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
43
+ Image: import("sigx").ComponentFactory<ChatImageProps, void, {}>;
44
+ Header: import("sigx").ComponentFactory<ChatHeaderProps, void, {
45
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
46
46
  }>;
47
- Bubble: import("@sigx/runtime-core").ComponentFactory<ChatBubbleProps, void, {
48
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
47
+ Bubble: import("sigx").ComponentFactory<ChatBubbleProps, void, {
48
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
49
49
  }>;
50
- Footer: import("@sigx/runtime-core").ComponentFactory<ChatFooterProps, void, {
51
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
50
+ Footer: import("sigx").ComponentFactory<ChatFooterProps, void, {
51
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
52
52
  }>;
53
53
  };
54
54
  export type { ChatImageProps as ChatImageCompProps, ChatHeaderProps as ChatHeaderCompProps, ChatBubbleProps as ChatBubbleCompProps, ChatFooterProps as ChatFooterCompProps };
@@ -11,7 +11,7 @@ export type ContainerProps = DefineProp<'size', ContainerSize, false> & DefinePr
11
11
  * </Container>
12
12
  * ```
13
13
  */
14
- export declare const Container: import("@sigx/runtime-core").ComponentFactory<ContainerProps, void, {
15
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
14
+ export declare const Container: import("sigx").ComponentFactory<ContainerProps, void, {
15
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
16
16
  }>;
17
17
  //# sourceMappingURL=Container.d.ts.map
@@ -16,7 +16,7 @@ export type DividerProps = DefineProp<'vertical', boolean, false> & DefineProp<'
16
16
  * <Divider vertical />
17
17
  * ```
18
18
  */
19
- export declare const Divider: import("@sigx/runtime-core").ComponentFactory<DividerProps, void, {
20
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
19
+ export declare const Divider: import("sigx").ComponentFactory<DividerProps, void, {
20
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
21
21
  }>;
22
22
  //# sourceMappingURL=Divider.d.ts.map
@@ -23,8 +23,8 @@ export type FlexProps = DefineProp<'direction', FlexDirection, false> & DefinePr
23
23
  * <Flex width="400px" height="200px">...</Flex>
24
24
  * ```
25
25
  */
26
- export declare const Flex: import("@sigx/runtime-core").ComponentFactory<FlexProps, void, {
27
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
26
+ export declare const Flex: import("sigx").ComponentFactory<FlexProps, void, {
27
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
28
28
  }>;
29
29
  export type RowProps = Omit<FlexProps, 'direction'> & DefineProp<'reverse', boolean, false>;
30
30
  /**
@@ -38,8 +38,8 @@ export type RowProps = Omit<FlexProps, 'direction'> & DefineProp<'reverse', bool
38
38
  * </Row>
39
39
  * ```
40
40
  */
41
- export declare const Row: import("@sigx/runtime-core").ComponentFactory<RowProps, void, {
42
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
41
+ export declare const Row: import("sigx").ComponentFactory<RowProps, void, {
42
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
43
43
  }>;
44
44
  export type ColProps = Omit<FlexProps, 'direction'> & DefineProp<'reverse', boolean, false>;
45
45
  /**
@@ -53,7 +53,7 @@ export type ColProps = Omit<FlexProps, 'direction'> & DefineProp<'reverse', bool
53
53
  * </Col>
54
54
  * ```
55
55
  */
56
- export declare const Col: import("@sigx/runtime-core").ComponentFactory<ColProps, void, {
57
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
56
+ export declare const Col: import("sigx").ComponentFactory<ColProps, void, {
57
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
58
58
  }>;
59
59
  //# sourceMappingURL=Flex.d.ts.map
@@ -19,7 +19,7 @@ export type FooterProps = DefineProp<'center', boolean, false> & DefineProp<'cla
19
19
  * </Footer>
20
20
  * ```
21
21
  */
22
- export declare const Footer: import("@sigx/runtime-core").ComponentFactory<FooterProps, void, {
23
- default: () => import("@sigx/runtime-core").JSXElement | import("@sigx/runtime-core").JSXElement[] | null;
22
+ export declare const Footer: import("sigx").ComponentFactory<FooterProps, void, {
23
+ default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
24
24
  }>;
25
25
  //# sourceMappingURL=Footer.d.ts.map