@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.
- package/dist/buttons/Button.d.ts +2 -2
- package/dist/buttons/ButtonGroup.d.ts +2 -2
- package/dist/data/Avatar.d.ts +1 -1
- package/dist/data/Avatar.d.ts.map +1 -1
- package/dist/data/Stats.d.ts +13 -13
- package/dist/data/Table.d.ts +27 -27
- package/dist/feedback/Accordion.d.ts +27 -27
- package/dist/feedback/Badge.d.ts +9 -9
- package/dist/feedback/Badge.d.ts.map +1 -1
- package/dist/feedback/Countdown.d.ts +1 -1
- package/dist/feedback/Countdown.d.ts.map +1 -1
- package/dist/feedback/Diff.d.ts +3 -3
- package/dist/feedback/FileInput.d.ts +1 -1
- package/dist/feedback/FileInput.d.ts.map +1 -1
- package/dist/feedback/Indicator.d.ts +3 -3
- package/dist/feedback/Kbd.d.ts +2 -2
- package/dist/feedback/Modal.d.ts +18 -18
- package/dist/feedback/RadialProgress.d.ts +2 -2
- package/dist/feedback/Rating.d.ts +1 -1
- package/dist/feedback/Rating.d.ts.map +1 -1
- package/dist/feedback/Skeleton.d.ts +1 -1
- package/dist/feedback/Skeleton.d.ts.map +1 -1
- package/dist/feedback/Steps.d.ts +20 -20
- package/dist/feedback/Swap.d.ts +3 -3
- package/dist/feedback/Timeline.d.ts +28 -28
- package/dist/feedback/Toast.d.ts +2 -2
- package/dist/forms/Checkbox.d.ts +1 -1
- package/dist/forms/Checkbox.d.ts.map +1 -1
- package/dist/forms/FormField.d.ts +2 -2
- package/dist/forms/Input.d.ts +1 -1
- package/dist/forms/Input.d.ts.map +1 -1
- package/dist/forms/Radio.d.ts +28 -28
- package/dist/forms/Range.d.ts +1 -1
- package/dist/forms/Range.d.ts.map +1 -1
- package/dist/forms/Select.d.ts +2 -2
- package/dist/forms/Textarea.d.ts +1 -1
- package/dist/forms/Textarea.d.ts.map +1 -1
- package/dist/forms/Toggle.d.ts +1 -1
- package/dist/forms/Toggle.d.ts.map +1 -1
- package/dist/layout/Card.d.ts +28 -28
- package/dist/layout/Carousel.d.ts +23 -23
- package/dist/layout/Chat.d.ts +21 -21
- package/dist/layout/Container.d.ts +2 -2
- package/dist/layout/Divider.d.ts +2 -2
- package/dist/layout/Flex.d.ts +6 -6
- package/dist/layout/Footer.d.ts +2 -2
- package/dist/layout/Hero.d.ts +20 -20
- package/dist/layout/Join.d.ts +13 -13
- package/dist/layout/Link.d.ts +2 -2
- package/dist/layout/Mask.d.ts +2 -2
- package/dist/layout/Mockup.d.ts +18 -18
- package/dist/layout/Stack.d.ts +2 -2
- package/dist/layout/index.d.ts +13 -13
- package/dist/layout/index.d.ts.map +1 -1
- package/dist/navigation/Breadcrumbs.d.ts +1 -1
- package/dist/navigation/Breadcrumbs.d.ts.map +1 -1
- package/dist/navigation/Drawer.d.ts +3 -3
- package/dist/navigation/Dropdown.d.ts +3 -3
- package/dist/navigation/MenuComponent.d.ts +21 -21
- package/dist/navigation/Navbar.d.ts +4 -4
- package/dist/navigation/Pagination.d.ts +1 -1
- package/dist/navigation/Pagination.d.ts.map +1 -1
- package/dist/navigation/Tabs.d.ts +1 -1
- package/dist/navigation/Tabs.d.ts.map +1 -1
- package/dist/shared/Icon.d.ts +1 -1
- package/dist/shared/Icon.d.ts.map +1 -1
- package/dist/theme/ThemeProvider.d.ts +4 -4
- package/dist/theme/ThemeProvider.d.ts.map +1 -1
- package/dist/typography/Text.d.ts +4 -4
- 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
|
-
|
|
21
|
+
compact?: boolean | undefined;
|
|
22
22
|
items?: TimelineItemData[] | undefined;
|
|
23
23
|
snap?: boolean | undefined;
|
|
24
|
-
|
|
24
|
+
vertical?: boolean | undefined;
|
|
25
25
|
} & {} & {
|
|
26
26
|
slots?: Partial<{
|
|
27
|
-
default: () => import("
|
|
27
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
28
28
|
}> | undefined;
|
|
29
|
-
} & {} & JSX.IntrinsicAttributes & import("
|
|
30
|
-
ref?: import("
|
|
29
|
+
} & {} & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
|
|
30
|
+
ref?: import("sigx").Ref<void> | undefined;
|
|
31
31
|
children?: any;
|
|
32
|
-
}) => import("
|
|
33
|
-
__setup: import("
|
|
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
|
-
|
|
38
|
-
class?: string | undefined;
|
|
38
|
+
vertical?: boolean | undefined;
|
|
39
39
|
}, TimelineProps, void, {
|
|
40
|
-
default: () => import("
|
|
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
|
-
|
|
49
|
-
class?: string | undefined;
|
|
49
|
+
vertical?: boolean | undefined;
|
|
50
50
|
};
|
|
51
51
|
__events: TimelineProps;
|
|
52
52
|
__ref: void;
|
|
53
53
|
__slots: {
|
|
54
|
-
default: () => import("
|
|
54
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
55
55
|
};
|
|
56
56
|
} & {
|
|
57
|
-
Item: import("
|
|
58
|
-
start: () => import("
|
|
57
|
+
Item: import("sigx").ComponentFactory<TimelineItemProps, void, {
|
|
58
|
+
start: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
59
59
|
} & {
|
|
60
|
-
middle: () => import("
|
|
60
|
+
middle: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
61
61
|
} & {
|
|
62
|
-
end: () => import("
|
|
62
|
+
end: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
63
63
|
} & {
|
|
64
|
-
default: () => import("
|
|
64
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
65
65
|
}>;
|
|
66
|
-
Start: import("
|
|
67
|
-
default: () => import("
|
|
66
|
+
Start: import("sigx").ComponentFactory<TimelineStartProps, void, {
|
|
67
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
68
68
|
}>;
|
|
69
|
-
Middle: import("
|
|
70
|
-
default: () => import("
|
|
69
|
+
Middle: import("sigx").ComponentFactory<TimelineMiddleProps, void, {
|
|
70
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
71
71
|
}>;
|
|
72
|
-
End: import("
|
|
73
|
-
default: () => import("
|
|
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 };
|
package/dist/feedback/Toast.d.ts
CHANGED
|
@@ -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("
|
|
28
|
-
default: () => import("
|
|
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
|
package/dist/forms/Checkbox.d.ts
CHANGED
|
@@ -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("
|
|
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,
|
|
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("
|
|
14
|
-
default: () => import("
|
|
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
|
package/dist/forms/Input.d.ts
CHANGED
|
@@ -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("
|
|
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,
|
|
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"}
|
package/dist/forms/Radio.d.ts
CHANGED
|
@@ -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
|
-
|
|
27
|
+
color?: RadioColor | undefined;
|
|
28
|
+
direction?: "horizontal" | "vertical" | undefined;
|
|
28
29
|
disabled?: boolean | undefined;
|
|
29
30
|
name?: string | undefined;
|
|
30
|
-
|
|
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("
|
|
37
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
38
38
|
}> | undefined;
|
|
39
39
|
} & {
|
|
40
|
-
model?: import("
|
|
41
|
-
} & JSX.IntrinsicAttributes & import("
|
|
42
|
-
ref?: import("
|
|
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("
|
|
45
|
-
__setup: import("
|
|
46
|
-
model?: import("
|
|
47
|
-
|
|
48
|
-
|
|
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
|
-
|
|
52
|
-
|
|
53
|
-
change?: import("@sigx/runtime-core").EventDefinition<string> | undefined;
|
|
52
|
+
name?: string | undefined;
|
|
53
|
+
size?: RadioSize | undefined;
|
|
54
54
|
}, RadioGroupProps, void, {
|
|
55
|
-
default: () => import("
|
|
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("
|
|
61
|
-
|
|
62
|
-
|
|
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
|
-
|
|
66
|
-
|
|
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("
|
|
72
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
73
73
|
};
|
|
74
74
|
} & {
|
|
75
|
-
Item: import("
|
|
76
|
-
Standalone: import("
|
|
75
|
+
Item: import("sigx").ComponentFactory<RadioItemProps, void, {}>;
|
|
76
|
+
Standalone: import("sigx").ComponentFactory<StandaloneRadioProps, void, {}>;
|
|
77
77
|
};
|
|
78
78
|
//# sourceMappingURL=Radio.d.ts.map
|
package/dist/forms/Range.d.ts
CHANGED
|
@@ -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("
|
|
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,
|
|
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"}
|
package/dist/forms/Select.d.ts
CHANGED
|
@@ -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("
|
|
26
|
-
default: () => import("
|
|
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
|
package/dist/forms/Textarea.d.ts
CHANGED
|
@@ -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("
|
|
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,
|
|
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"}
|
package/dist/forms/Toggle.d.ts
CHANGED
|
@@ -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("
|
|
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,
|
|
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"}
|
package/dist/layout/Card.d.ts
CHANGED
|
@@ -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
|
-
|
|
13
|
-
variant?: CardVariant | undefined;
|
|
12
|
+
bgColor?: string | undefined;
|
|
14
13
|
bordered?: boolean | undefined;
|
|
15
|
-
|
|
14
|
+
class?: string | undefined;
|
|
16
15
|
glass?: boolean | undefined;
|
|
17
16
|
imageFull?: boolean | undefined;
|
|
18
|
-
|
|
17
|
+
shadow?: "lg" | "md" | "sm" | "xl" | boolean | undefined;
|
|
18
|
+
variant?: CardVariant | undefined;
|
|
19
19
|
} & {} & {
|
|
20
20
|
slots?: Partial<{
|
|
21
|
-
default: () => import("
|
|
21
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
22
22
|
}> | undefined;
|
|
23
|
-
} & {} & JSX.IntrinsicAttributes & import("
|
|
24
|
-
ref?: import("
|
|
23
|
+
} & {} & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
|
|
24
|
+
ref?: import("sigx").Ref<void> | undefined;
|
|
25
25
|
children?: any;
|
|
26
|
-
}) => import("
|
|
27
|
-
__setup: import("
|
|
28
|
-
|
|
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
|
-
|
|
34
|
-
|
|
33
|
+
shadow?: "lg" | "md" | "sm" | "xl" | boolean | undefined;
|
|
34
|
+
variant?: CardVariant | undefined;
|
|
35
35
|
}, CardProps, void, {
|
|
36
|
-
default: () => import("
|
|
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
|
-
|
|
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
|
-
|
|
47
|
-
|
|
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("
|
|
52
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
53
53
|
};
|
|
54
54
|
} & {
|
|
55
|
-
Body: import("
|
|
56
|
-
default: () => import("
|
|
55
|
+
Body: import("sigx").ComponentFactory<CardBodyProps, void, {
|
|
56
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
57
57
|
}>;
|
|
58
|
-
Title: import("
|
|
59
|
-
default: () => import("
|
|
58
|
+
Title: import("sigx").ComponentFactory<CardTitleProps, void, {
|
|
59
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
60
60
|
}>;
|
|
61
|
-
Actions: import("
|
|
62
|
-
default: () => import("
|
|
61
|
+
Actions: import("sigx").ComponentFactory<CardActionsProps, void, {
|
|
62
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
63
63
|
}>;
|
|
64
|
-
Image: import("
|
|
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
|
-
|
|
15
|
+
items?: CarouselItemData[] | undefined;
|
|
16
|
+
snap?: "center" | "end" | "start" | undefined;
|
|
17
|
+
vertical?: boolean | undefined;
|
|
18
18
|
} & {} & {
|
|
19
19
|
slots?: Partial<{
|
|
20
|
-
default: () => import("
|
|
20
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
21
21
|
}> | undefined;
|
|
22
|
-
} & {} & JSX.IntrinsicAttributes & import("
|
|
23
|
-
ref?: import("
|
|
22
|
+
} & {} & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
|
|
23
|
+
ref?: import("sigx").Ref<void> | undefined;
|
|
24
24
|
children?: any;
|
|
25
|
-
}) => import("
|
|
26
|
-
__setup: import("
|
|
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("
|
|
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("
|
|
49
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
50
50
|
};
|
|
51
51
|
} & {
|
|
52
|
-
Item: import("
|
|
53
|
-
default: () => import("
|
|
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 };
|
package/dist/layout/Chat.d.ts
CHANGED
|
@@ -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("
|
|
17
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
18
18
|
}> | undefined;
|
|
19
|
-
} & {} & JSX.IntrinsicAttributes & import("
|
|
20
|
-
ref?: import("
|
|
19
|
+
} & {} & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
|
|
20
|
+
ref?: import("sigx").Ref<void> | undefined;
|
|
21
21
|
children?: any;
|
|
22
|
-
}) => import("
|
|
23
|
-
__setup: import("
|
|
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("
|
|
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("
|
|
40
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
41
41
|
};
|
|
42
42
|
} & {
|
|
43
|
-
Image: import("
|
|
44
|
-
Header: import("
|
|
45
|
-
default: () => import("
|
|
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("
|
|
48
|
-
default: () => import("
|
|
47
|
+
Bubble: import("sigx").ComponentFactory<ChatBubbleProps, void, {
|
|
48
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
49
49
|
}>;
|
|
50
|
-
Footer: import("
|
|
51
|
-
default: () => import("
|
|
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("
|
|
15
|
-
default: () => import("
|
|
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
|
package/dist/layout/Divider.d.ts
CHANGED
|
@@ -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("
|
|
20
|
-
default: () => import("
|
|
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
|
package/dist/layout/Flex.d.ts
CHANGED
|
@@ -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("
|
|
27
|
-
default: () => import("
|
|
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("
|
|
42
|
-
default: () => import("
|
|
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("
|
|
57
|
-
default: () => import("
|
|
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
|
package/dist/layout/Footer.d.ts
CHANGED
|
@@ -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("
|
|
23
|
-
default: () => import("
|
|
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
|