@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
package/dist/layout/Hero.d.ts
CHANGED
|
@@ -5,48 +5,48 @@ export type HeroContentProps = DefineProp<'class', string, false> & DefineSlot<'
|
|
|
5
5
|
* Hero compound component with Content sub-component.
|
|
6
6
|
*/
|
|
7
7
|
export declare const Hero: ((props: {
|
|
8
|
-
class?: string | undefined;
|
|
9
|
-
overlay?: boolean | undefined;
|
|
10
8
|
bgImage?: string | undefined;
|
|
9
|
+
class?: string | undefined;
|
|
11
10
|
minHeight?: string | undefined;
|
|
11
|
+
overlay?: boolean | undefined;
|
|
12
12
|
} & {} & {
|
|
13
13
|
slots?: Partial<{
|
|
14
|
-
default: () => import("
|
|
14
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
15
15
|
} & {
|
|
16
|
-
overlay: () => import("
|
|
16
|
+
overlay: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
17
17
|
}> | undefined;
|
|
18
|
-
} & {} & JSX.IntrinsicAttributes & import("
|
|
19
|
-
ref?: import("
|
|
18
|
+
} & {} & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
|
|
19
|
+
ref?: import("sigx").Ref<void> | undefined;
|
|
20
20
|
children?: any;
|
|
21
|
-
}) => import("
|
|
22
|
-
__setup: import("
|
|
23
|
-
overlay?: boolean | undefined;
|
|
21
|
+
}) => import("sigx").JSXElement) & {
|
|
22
|
+
__setup: import("sigx").SetupFn<{
|
|
24
23
|
bgImage?: string | undefined;
|
|
25
|
-
minHeight?: string | undefined;
|
|
26
24
|
class?: string | undefined;
|
|
25
|
+
minHeight?: string | undefined;
|
|
26
|
+
overlay?: boolean | undefined;
|
|
27
27
|
}, HeroProps, void, {
|
|
28
|
-
default: () => import("
|
|
28
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
29
29
|
} & {
|
|
30
|
-
overlay: () => import("
|
|
30
|
+
overlay: () => 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
|
-
overlay?: boolean | undefined;
|
|
36
35
|
bgImage?: string | undefined;
|
|
37
|
-
minHeight?: string | undefined;
|
|
38
36
|
class?: string | undefined;
|
|
37
|
+
minHeight?: string | undefined;
|
|
38
|
+
overlay?: boolean | undefined;
|
|
39
39
|
};
|
|
40
40
|
__events: HeroProps;
|
|
41
41
|
__ref: void;
|
|
42
42
|
__slots: {
|
|
43
|
-
default: () => import("
|
|
43
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
44
44
|
} & {
|
|
45
|
-
overlay: () => import("
|
|
45
|
+
overlay: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
|
-
Content: import("
|
|
49
|
-
default: () => import("
|
|
48
|
+
Content: import("sigx").ComponentFactory<HeroContentProps, void, {
|
|
49
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
50
50
|
}>;
|
|
51
51
|
};
|
|
52
52
|
export type { HeroContentProps as HeroContentCompProps };
|
package/dist/layout/Join.d.ts
CHANGED
|
@@ -9,32 +9,32 @@ export declare const Join: ((props: {
|
|
|
9
9
|
vertical?: boolean | undefined;
|
|
10
10
|
} & {} & {
|
|
11
11
|
slots?: Partial<{
|
|
12
|
-
default: () => import("
|
|
12
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
13
13
|
}> | undefined;
|
|
14
|
-
} & {} & JSX.IntrinsicAttributes & import("
|
|
15
|
-
ref?: import("
|
|
14
|
+
} & {} & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
|
|
15
|
+
ref?: import("sigx").Ref<void> | undefined;
|
|
16
16
|
children?: any;
|
|
17
|
-
}) => import("
|
|
18
|
-
__setup: import("
|
|
19
|
-
vertical?: boolean | undefined;
|
|
17
|
+
}) => import("sigx").JSXElement) & {
|
|
18
|
+
__setup: import("sigx").SetupFn<{
|
|
20
19
|
class?: string | undefined;
|
|
20
|
+
vertical?: boolean | undefined;
|
|
21
21
|
}, JoinProps, void, {
|
|
22
|
-
default: () => import("
|
|
22
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
23
23
|
}>;
|
|
24
|
-
__name?: string;
|
|
25
|
-
__islandId?: string;
|
|
24
|
+
__name?: string | undefined;
|
|
25
|
+
__islandId?: string | undefined;
|
|
26
26
|
__props: {
|
|
27
|
-
vertical?: boolean | undefined;
|
|
28
27
|
class?: string | undefined;
|
|
28
|
+
vertical?: boolean | undefined;
|
|
29
29
|
};
|
|
30
30
|
__events: JoinProps;
|
|
31
31
|
__ref: void;
|
|
32
32
|
__slots: {
|
|
33
|
-
default: () => import("
|
|
33
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
34
34
|
};
|
|
35
35
|
} & {
|
|
36
|
-
Item: import("
|
|
37
|
-
default: () => import("
|
|
36
|
+
Item: import("sigx").ComponentFactory<JoinItemProps, void, {
|
|
37
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
38
38
|
}>;
|
|
39
39
|
};
|
|
40
40
|
export type { JoinItemProps as JoinItemCompProps };
|
package/dist/layout/Link.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export type LinkProps = DefineProp<'href', string, false> & DefineProp<'color',
|
|
|
14
14
|
* <Link onClick={(e) => handleClick(e)}>Clickable Link</Link>
|
|
15
15
|
* ```
|
|
16
16
|
*/
|
|
17
|
-
export declare const Link: import("
|
|
18
|
-
default: () => import("
|
|
17
|
+
export declare const Link: import("sigx").ComponentFactory<LinkProps, void, {
|
|
18
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
19
19
|
}>;
|
|
20
20
|
//# sourceMappingURL=Link.d.ts.map
|
package/dist/layout/Mask.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export type MaskProps = DefineProp<'shape', MaskShape> & DefineProp<'class', str
|
|
|
20
20
|
* </Mask>
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
23
|
-
export declare const Mask: import("
|
|
24
|
-
default: () => import("
|
|
23
|
+
export declare const Mask: import("sigx").ComponentFactory<MaskProps, void, {
|
|
24
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
25
25
|
}>;
|
|
26
26
|
//# sourceMappingURL=Mask.d.ts.map
|
package/dist/layout/Mockup.d.ts
CHANGED
|
@@ -25,32 +25,32 @@ export type MockupWindowProps = DefineProp<'class', string, false> & DefineSlot<
|
|
|
25
25
|
* </Artboard>
|
|
26
26
|
* ```
|
|
27
27
|
*/
|
|
28
|
-
export declare const Artboard: import("
|
|
29
|
-
default: () => import("
|
|
28
|
+
export declare const Artboard: import("sigx").ComponentFactory<ArtboardProps, void, {
|
|
29
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
30
30
|
}>;
|
|
31
31
|
/**
|
|
32
32
|
* Mockup.Browser component - Browser window mockup with URL bar.
|
|
33
33
|
*/
|
|
34
|
-
declare const MockupBrowser: import("
|
|
35
|
-
default: () => import("
|
|
34
|
+
declare const MockupBrowser: import("sigx").ComponentFactory<MockupBrowserProps, void, {
|
|
35
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
36
36
|
}>;
|
|
37
37
|
/**
|
|
38
38
|
* Mockup.Code component - Terminal/code mockup with line prefixes.
|
|
39
39
|
*/
|
|
40
|
-
declare const MockupCode: import("
|
|
41
|
-
default: () => import("
|
|
40
|
+
declare const MockupCode: import("sigx").ComponentFactory<MockupCodeProps, void, {
|
|
41
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
42
42
|
}>;
|
|
43
43
|
/**
|
|
44
44
|
* Mockup.Phone component - Realistic phone frame mockup.
|
|
45
45
|
*/
|
|
46
|
-
declare const MockupPhone: import("
|
|
47
|
-
default: () => import("
|
|
46
|
+
declare const MockupPhone: import("sigx").ComponentFactory<MockupPhoneProps, void, {
|
|
47
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
48
48
|
}>;
|
|
49
49
|
/**
|
|
50
50
|
* Mockup.Window component - Desktop window mockup with title bar.
|
|
51
51
|
*/
|
|
52
|
-
declare const MockupWindow: import("
|
|
53
|
-
default: () => import("
|
|
52
|
+
declare const MockupWindow: import("sigx").ComponentFactory<MockupWindowProps, void, {
|
|
53
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
54
54
|
}>;
|
|
55
55
|
/**
|
|
56
56
|
* Mockup namespace with Browser, Code, Phone, and Window components.
|
|
@@ -77,17 +77,17 @@ declare const MockupWindow: import("@sigx/runtime-core").ComponentFactory<Mockup
|
|
|
77
77
|
* ```
|
|
78
78
|
*/
|
|
79
79
|
export declare const Mockup: {
|
|
80
|
-
Browser: import("
|
|
81
|
-
default: () => import("
|
|
80
|
+
Browser: import("sigx").ComponentFactory<MockupBrowserProps, void, {
|
|
81
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
82
82
|
}>;
|
|
83
|
-
Code: import("
|
|
84
|
-
default: () => import("
|
|
83
|
+
Code: import("sigx").ComponentFactory<MockupCodeProps, void, {
|
|
84
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
85
85
|
}>;
|
|
86
|
-
Phone: import("
|
|
87
|
-
default: () => import("
|
|
86
|
+
Phone: import("sigx").ComponentFactory<MockupPhoneProps, void, {
|
|
87
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
88
88
|
}>;
|
|
89
|
-
Window: import("
|
|
90
|
-
default: () => import("
|
|
89
|
+
Window: import("sigx").ComponentFactory<MockupWindowProps, void, {
|
|
90
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
91
91
|
}>;
|
|
92
92
|
};
|
|
93
93
|
export { MockupBrowser, MockupCode, MockupPhone, MockupWindow };
|
package/dist/layout/Stack.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ export type StackProps = DefineProp<'direction', StackDirection, false> & Define
|
|
|
39
39
|
* <Stack direction="end" class="size-28">...</Stack>
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
42
|
-
export declare const Stack: import("
|
|
43
|
-
default: () => import("
|
|
42
|
+
export declare const Stack: import("sigx").ComponentFactory<StackProps, void, {
|
|
43
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
44
44
|
}>;
|
|
45
45
|
//# sourceMappingURL=Stack.d.ts.map
|
package/dist/layout/index.d.ts
CHANGED
|
@@ -24,23 +24,23 @@ export type { ChatProps, ChatImageCompProps as ChatImageProps, ChatHeaderCompPro
|
|
|
24
24
|
export type { ArtboardProps, ArtboardSize, MockupBrowserCompProps as MockupBrowserProps, MockupCodeCompProps as MockupCodeProps, CodeLine, MockupPhoneCompProps as MockupPhoneProps, MockupWindowCompProps as MockupWindowProps } from './Mockup';
|
|
25
25
|
export type { CarouselProps, CarouselItemData, CarouselItemCompProps as CarouselItemProps } from './Carousel';
|
|
26
26
|
export type { MaskProps, MaskShape } from './Mask';
|
|
27
|
-
export declare const HeroContent: import("
|
|
28
|
-
default: () => import("
|
|
27
|
+
export declare const HeroContent: import("sigx").ComponentFactory<import("./Hero").HeroContentProps, void, {
|
|
28
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
29
29
|
}>;
|
|
30
|
-
export declare const JoinItem: import("
|
|
31
|
-
default: () => import("
|
|
30
|
+
export declare const JoinItem: import("sigx").ComponentFactory<import("./Join").JoinItemProps, void, {
|
|
31
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
32
32
|
}>;
|
|
33
|
-
export declare const ChatImage: import("
|
|
34
|
-
export declare const ChatHeader: import("
|
|
35
|
-
default: () => import("
|
|
33
|
+
export declare const ChatImage: import("sigx").ComponentFactory<import("./Chat").ChatImageProps, void, {}>;
|
|
34
|
+
export declare const ChatHeader: import("sigx").ComponentFactory<import("./Chat").ChatHeaderProps, void, {
|
|
35
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
36
36
|
}>;
|
|
37
|
-
export declare const ChatBubble: import("
|
|
38
|
-
default: () => import("
|
|
37
|
+
export declare const ChatBubble: import("sigx").ComponentFactory<import("./Chat").ChatBubbleProps, void, {
|
|
38
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
39
39
|
}>;
|
|
40
|
-
export declare const ChatFooter: import("
|
|
41
|
-
default: () => import("
|
|
40
|
+
export declare const ChatFooter: import("sigx").ComponentFactory<import("./Chat").ChatFooterProps, void, {
|
|
41
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
42
42
|
}>;
|
|
43
|
-
export declare const CarouselItem: import("
|
|
44
|
-
default: () => import("
|
|
43
|
+
export declare const CarouselItem: import("sigx").ComponentFactory<import("./Carousel").CarouselItemProps, void, {
|
|
44
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
45
45
|
}>;
|
|
46
46
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/layout/index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,QAAQ,CAAC;AACxC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,MAAM,EAAE,aAAa,EAAE,UAAU,EAAE,WAAW,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAClG,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAG9B,YAAY,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AACjE,YAAY,EAAE,SAAS,EAAE,WAAW,EAAE,aAAa,EAAE,cAAc,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AACtH,YAAY,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC1D,YAAY,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AACjG,YAAY,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAC9C,YAAY,EAAE,SAAS,EAAE,oBAAoB,IAAI,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAClF,YAAY,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAC5C,YAAY,EAAE,SAAS,EAAE,iBAAiB,IAAI,aAAa,EAAE,MAAM,QAAQ,CAAC;AAC5E,YAAY,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC;AACnD,YAAY,EACR,SAAS,EACT,kBAAkB,IAAI,cAAc,EACpC,mBAAmB,IAAI,eAAe,EACtC,mBAAmB,IAAI,eAAe,EACtC,eAAe,EACf,mBAAmB,IAAI,eAAe,EACzC,MAAM,QAAQ,CAAC;AAChB,YAAY,EACR,aAAa,EAAE,YAAY,EAC3B,sBAAsB,IAAI,kBAAkB,EAC5C,mBAAmB,IAAI,eAAe,EACtC,QAAQ,EACR,oBAAoB,IAAI,gBAAgB,EACxC,qBAAqB,IAAI,iBAAiB,EAC7C,MAAM,UAAU,CAAC;AAClB,YAAY,EAAE,aAAa,EAAE,gBAAgB,EAAE,qBAAqB,IAAI,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAC9G,YAAY,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC;AAInD,eAAO,MAAM,WAAW;;EAAuB,CAAC;AAChD,eAAO,MAAM,QAAQ;;EAAoB,CAAC;AAC1C,eAAO,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/layout/index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,QAAQ,CAAC;AACxC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,MAAM,EAAE,aAAa,EAAE,UAAU,EAAE,WAAW,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAClG,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAG9B,YAAY,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AACjE,YAAY,EAAE,SAAS,EAAE,WAAW,EAAE,aAAa,EAAE,cAAc,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AACtH,YAAY,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC1D,YAAY,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AACjG,YAAY,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAC9C,YAAY,EAAE,SAAS,EAAE,oBAAoB,IAAI,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAClF,YAAY,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAC5C,YAAY,EAAE,SAAS,EAAE,iBAAiB,IAAI,aAAa,EAAE,MAAM,QAAQ,CAAC;AAC5E,YAAY,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC;AACnD,YAAY,EACR,SAAS,EACT,kBAAkB,IAAI,cAAc,EACpC,mBAAmB,IAAI,eAAe,EACtC,mBAAmB,IAAI,eAAe,EACtC,eAAe,EACf,mBAAmB,IAAI,eAAe,EACzC,MAAM,QAAQ,CAAC;AAChB,YAAY,EACR,aAAa,EAAE,YAAY,EAC3B,sBAAsB,IAAI,kBAAkB,EAC5C,mBAAmB,IAAI,eAAe,EACtC,QAAQ,EACR,oBAAoB,IAAI,gBAAgB,EACxC,qBAAqB,IAAI,iBAAiB,EAC7C,MAAM,UAAU,CAAC;AAClB,YAAY,EAAE,aAAa,EAAE,gBAAgB,EAAE,qBAAqB,IAAI,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAC9G,YAAY,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC;AAInD,eAAO,MAAM,WAAW;;EAAuB,CAAC;AAChD,eAAO,MAAM,QAAQ;;EAAoB,CAAC;AAC1C,eAAO,MAAM,SAAS,4EAAqB,CAAC;AAC5C,eAAO,MAAM,UAAU;;EAAsB,CAAC;AAC9C,eAAO,MAAM,UAAU;;EAAsB,CAAC;AAC9C,eAAO,MAAM,UAAU;;EAAsB,CAAC;AAC9C,eAAO,MAAM,YAAY;;EAAwB,CAAC"}
|
|
@@ -18,5 +18,5 @@ export type BreadcrumbsProps = DefineProp<'items', BreadcrumbItem[]> & DefinePro
|
|
|
18
18
|
* <Breadcrumbs items={items} onNavigate={(id) => navigate(id)} />
|
|
19
19
|
* ```
|
|
20
20
|
*/
|
|
21
|
-
export declare const Breadcrumbs: import("
|
|
21
|
+
export declare const Breadcrumbs: import("sigx").ComponentFactory<BreadcrumbsProps, void, {}>;
|
|
22
22
|
//# sourceMappingURL=Breadcrumbs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Breadcrumbs.d.ts","sourceRoot":"","sources":["../../src/navigation/Breadcrumbs.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAE1D,MAAM,WAAW,cAAc;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,MAAM,gBAAgB,GACtB,UAAU,CAAC,OAAO,EAAE,cAAc,EAAE,CAAC,GACrC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,UAAU,EAAE,MAAM,CAAC,CAAC;AAEtC;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"Breadcrumbs.d.ts","sourceRoot":"","sources":["../../src/navigation/Breadcrumbs.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAE1D,MAAM,WAAW,cAAc;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,MAAM,gBAAgB,GACtB,UAAU,CAAC,OAAO,EAAE,cAAc,EAAE,CAAC,GACrC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,UAAU,EAAE,MAAM,CAAC,CAAC;AAEtC;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,WAAW,6DAoBtB,CAAC"}
|
|
@@ -17,9 +17,9 @@ export type DrawerProps = DefineModel<boolean> & DefineProp<'side', 'left' | 'ri
|
|
|
17
17
|
* </Drawer>
|
|
18
18
|
* ```
|
|
19
19
|
*/
|
|
20
|
-
export declare const Drawer: import("
|
|
21
|
-
default: () => import("
|
|
20
|
+
export declare const Drawer: import("sigx").ComponentFactory<DrawerProps, void, {
|
|
21
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
22
22
|
} & {
|
|
23
|
-
side: () => import("
|
|
23
|
+
side: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
24
24
|
}>;
|
|
25
25
|
//# sourceMappingURL=Drawer.d.ts.map
|
|
@@ -32,9 +32,9 @@ export type DropdownProps = DefineProp<'position', DropdownPosition, false> & De
|
|
|
32
32
|
* </Dropdown>
|
|
33
33
|
* ```
|
|
34
34
|
*/
|
|
35
|
-
export declare const Dropdown: import("
|
|
36
|
-
trigger: () => import("
|
|
35
|
+
export declare const Dropdown: import("sigx").ComponentFactory<DropdownProps, void, {
|
|
36
|
+
trigger: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
37
37
|
} & {
|
|
38
|
-
default: () => import("
|
|
38
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
39
39
|
}>;
|
|
40
40
|
//# sourceMappingURL=Dropdown.d.ts.map
|
|
@@ -8,47 +8,47 @@ export type MenuTitleProps = DefineProp<'class', string, false> & DefineSlot<'de
|
|
|
8
8
|
*/
|
|
9
9
|
export declare const Menu: ((props: {
|
|
10
10
|
class?: string | undefined;
|
|
11
|
-
size?: MenuSize | undefined;
|
|
12
11
|
horizontal?: boolean | undefined;
|
|
12
|
+
size?: MenuSize | undefined;
|
|
13
13
|
} & {
|
|
14
14
|
"onUpdate:modelValue"?: ((detail: string) => void) | undefined;
|
|
15
15
|
} & {
|
|
16
16
|
slots?: Partial<{
|
|
17
|
-
default: () => import("
|
|
17
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
18
18
|
}> | undefined;
|
|
19
19
|
} & {
|
|
20
|
-
model?: import("
|
|
21
|
-
} & JSX.IntrinsicAttributes & import("
|
|
22
|
-
ref?: import("
|
|
20
|
+
model?: import("sigx").Model<string> | import("sigx").ModelBinding<string> | (() => string) | undefined;
|
|
21
|
+
} & JSX.IntrinsicAttributes & import("sigx").ComponentAttributeExtensions & {
|
|
22
|
+
ref?: import("sigx").Ref<void> | undefined;
|
|
23
23
|
children?: any;
|
|
24
|
-
}) => import("
|
|
25
|
-
__setup: import("
|
|
26
|
-
model?: import("
|
|
27
|
-
size?: MenuSize | undefined;
|
|
28
|
-
horizontal?: boolean | undefined;
|
|
24
|
+
}) => import("sigx").JSXElement) & {
|
|
25
|
+
__setup: import("sigx").SetupFn<{
|
|
26
|
+
model?: import("sigx").Model<string> | undefined;
|
|
29
27
|
class?: string | undefined;
|
|
28
|
+
horizontal?: boolean | undefined;
|
|
29
|
+
size?: MenuSize | undefined;
|
|
30
30
|
}, MenuProps, void, {
|
|
31
|
-
default: () => import("
|
|
31
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
32
32
|
}>;
|
|
33
|
-
__name?: string;
|
|
34
|
-
__islandId?: string;
|
|
33
|
+
__name?: string | undefined;
|
|
34
|
+
__islandId?: string | undefined;
|
|
35
35
|
__props: {
|
|
36
|
-
model?: import("
|
|
37
|
-
size?: MenuSize | undefined;
|
|
38
|
-
horizontal?: boolean | undefined;
|
|
36
|
+
model?: import("sigx").Model<string> | undefined;
|
|
39
37
|
class?: string | undefined;
|
|
38
|
+
horizontal?: boolean | undefined;
|
|
39
|
+
size?: MenuSize | undefined;
|
|
40
40
|
};
|
|
41
41
|
__events: MenuProps;
|
|
42
42
|
__ref: void;
|
|
43
43
|
__slots: {
|
|
44
|
-
default: () => import("
|
|
44
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
45
45
|
};
|
|
46
46
|
} & {
|
|
47
|
-
Item: import("
|
|
48
|
-
default: () => import("
|
|
47
|
+
Item: import("sigx").ComponentFactory<MenuItemProps, void, {
|
|
48
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
49
49
|
}>;
|
|
50
|
-
Title: import("
|
|
51
|
-
default: () => import("
|
|
50
|
+
Title: import("sigx").ComponentFactory<MenuTitleProps, void, {
|
|
51
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
52
52
|
}>;
|
|
53
53
|
};
|
|
54
54
|
//# sourceMappingURL=MenuComponent.d.ts.map
|
|
@@ -13,11 +13,11 @@ export type NavbarProps = DefineProp<'class', string, false> & DefineSlot<'start
|
|
|
13
13
|
* />
|
|
14
14
|
* ```
|
|
15
15
|
*/
|
|
16
|
-
export declare const Navbar: import("
|
|
17
|
-
start: () => import("
|
|
16
|
+
export declare const Navbar: import("sigx").ComponentFactory<NavbarProps, void, {
|
|
17
|
+
start: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
18
18
|
} & {
|
|
19
|
-
center: () => import("
|
|
19
|
+
center: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
20
20
|
} & {
|
|
21
|
-
end: () => import("
|
|
21
|
+
end: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
22
22
|
}>;
|
|
23
23
|
//# sourceMappingURL=Navbar.d.ts.map
|
|
@@ -8,5 +8,5 @@ export type PaginationProps = DefineProp<'currentPage', number> & DefineProp<'to
|
|
|
8
8
|
* <Pagination currentPage={1} totalPages={10} onChange={(page) => setPage(page)} />
|
|
9
9
|
* ```
|
|
10
10
|
*/
|
|
11
|
-
export declare const Pagination: import("
|
|
11
|
+
export declare const Pagination: import("sigx").ComponentFactory<PaginationProps, void, {}>;
|
|
12
12
|
//# sourceMappingURL=Pagination.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pagination.d.ts","sourceRoot":"","sources":["../../src/navigation/Pagination.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAE1D,MAAM,MAAM,eAAe,GACrB,UAAU,CAAC,aAAa,EAAE,MAAM,CAAC,GACjC,UAAU,CAAC,YAAY,EAAE,MAAM,CAAC,GAChC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;AAEpC;;;;;;;GAOG;AACH,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"Pagination.d.ts","sourceRoot":"","sources":["../../src/navigation/Pagination.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AAE1D,MAAM,MAAM,eAAe,GACrB,UAAU,CAAC,aAAa,EAAE,MAAM,CAAC,GACjC,UAAU,CAAC,YAAY,EAAE,MAAM,CAAC,GAChC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;AAEpC;;;;;;;GAOG;AACH,eAAO,MAAM,UAAU,4DAqDrB,CAAC"}
|
|
@@ -31,5 +31,5 @@ export type TabsProps = DefineProp<'tabs', Tab[]> & DefineProp<'activeTab', stri
|
|
|
31
31
|
* <Tabs tabs={tabs} activeTab={activeTab.value} onChange={(id) => activeTab.value = id} variant="lift" />
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
|
-
export declare const Tabs: import("
|
|
34
|
+
export declare const Tabs: import("sigx").ComponentFactory<TabsProps, void, {}>;
|
|
35
35
|
//# sourceMappingURL=Tabs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tabs.d.ts","sourceRoot":"","sources":["../../src/navigation/Tabs.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAEtE,MAAM,WAAW,GAAG;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,GAAG,UAAU,CAAC;IAC3B,OAAO,CAAC,EAAE,MAAM,GAAG,UAAU,CAAC;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,KAAK,CAAC;AACpD,MAAM,MAAM,QAAQ,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACxD,MAAM,MAAM,YAAY,GAAG,KAAK,GAAG,QAAQ,CAAC;AAE5C,MAAM,MAAM,SAAS,GACf,UAAU,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,GACzB,UAAU,CAAC,WAAW,EAAE,MAAM,CAAC,GAC/B,UAAU,CAAC,SAAS,EAAE,WAAW,EAAE,KAAK,CAAC,GACzC,UAAU,CAAC,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,GACnC,UAAU,CAAC,UAAU,EAAE,YAAY,EAAE,KAAK,CAAC,GAC3C,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,cAAc,EAAE,MAAM,EAAE,KAAK,CAAC,GACzC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;AAYpC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,IAAI,
|
|
1
|
+
{"version":3,"file":"Tabs.d.ts","sourceRoot":"","sources":["../../src/navigation/Tabs.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAEtE,MAAM,WAAW,GAAG;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,GAAG,UAAU,CAAC;IAC3B,OAAO,CAAC,EAAE,MAAM,GAAG,UAAU,CAAC;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,KAAK,CAAC;AACpD,MAAM,MAAM,QAAQ,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AACxD,MAAM,MAAM,YAAY,GAAG,KAAK,GAAG,QAAQ,CAAC;AAE5C,MAAM,MAAM,SAAS,GACf,UAAU,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,GACzB,UAAU,CAAC,WAAW,EAAE,MAAM,CAAC,GAC/B,UAAU,CAAC,SAAS,EAAE,WAAW,EAAE,KAAK,CAAC,GACzC,UAAU,CAAC,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,GACnC,UAAU,CAAC,UAAU,EAAE,YAAY,EAAE,KAAK,CAAC,GAC3C,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,GACjC,UAAU,CAAC,cAAc,EAAE,MAAM,EAAE,KAAK,CAAC,GACzC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,WAAW,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;AAYpC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,IAAI,sDA4Ef,CAAC"}
|
package/dist/shared/Icon.d.ts
CHANGED
|
@@ -13,5 +13,5 @@ export type IconProps = DefineProp<'icon', string> & DefineProp<'size', IconSize
|
|
|
13
13
|
* <Icon icon="fa-solid fa-bolt" size="xl" class="text-yellow-400" />
|
|
14
14
|
* ```
|
|
15
15
|
*/
|
|
16
|
-
export declare const Icon: import("
|
|
16
|
+
export declare const Icon: import("sigx").ComponentFactory<IconProps, void, {}>;
|
|
17
17
|
//# sourceMappingURL=Icon.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../../src/shared/Icon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,MAAM,CAAC;AAM7C,MAAM,MAAM,QAAQ,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,CAAC;AAEhE,MAAM,MAAM,SAAS,GACf,UAAU,CAAC,MAAM,EAAE,MAAM,CAAC,GAC1B,UAAU,CAAC,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,GACnC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AAWzC;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,IAAI,
|
|
1
|
+
{"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../../src/shared/Icon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,MAAM,CAAC;AAM7C,MAAM,MAAM,QAAQ,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,CAAC;AAEhE,MAAM,MAAM,SAAS,GACf,UAAU,CAAC,MAAM,EAAE,MAAM,CAAC,GAC1B,UAAU,CAAC,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,GACnC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AAWzC;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,IAAI,sDAMf,CAAC"}
|
|
@@ -66,8 +66,8 @@ export type ThemeProviderProps = DefineProp<'theme', DaisyTheme | string, false>
|
|
|
66
66
|
* </ThemeProvider>
|
|
67
67
|
* ```
|
|
68
68
|
*/
|
|
69
|
-
export declare const ThemeProvider: import("
|
|
70
|
-
default: () => import("
|
|
69
|
+
export declare const ThemeProvider: import("sigx").ComponentFactory<ThemeProviderProps, void, {
|
|
70
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
71
71
|
}>;
|
|
72
72
|
export type ThemeSelectorProps = DefineProp<'themes', (DaisyTheme | string)[], false> & DefineProp<'class', string, false>;
|
|
73
73
|
/**
|
|
@@ -78,7 +78,7 @@ export type ThemeSelectorProps = DefineProp<'themes', (DaisyTheme | string)[], f
|
|
|
78
78
|
* <ThemeSelector themes={['light', 'dark', 'cupcake', 'cyberpunk']} />
|
|
79
79
|
* ```
|
|
80
80
|
*/
|
|
81
|
-
export declare const ThemeSelector: import("
|
|
81
|
+
export declare const ThemeSelector: import("sigx").ComponentFactory<ThemeSelectorProps, void, {}>;
|
|
82
82
|
export type ThemeToggleProps = DefineProp<'lightTheme', DaisyTheme | string, false> & DefineProp<'darkTheme', DaisyTheme | string, false> & DefineProp<'class', string, false>;
|
|
83
83
|
/**
|
|
84
84
|
* A toggle button for switching between light and dark themes.
|
|
@@ -88,5 +88,5 @@ export type ThemeToggleProps = DefineProp<'lightTheme', DaisyTheme | string, fal
|
|
|
88
88
|
* <ThemeToggle lightTheme="light" darkTheme="dark" />
|
|
89
89
|
* ```
|
|
90
90
|
*/
|
|
91
|
-
export declare const ThemeToggle: import("
|
|
91
|
+
export declare const ThemeToggle: import("sigx").ComponentFactory<ThemeToggleProps, void, {}>;
|
|
92
92
|
//# sourceMappingURL=ThemeProvider.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeProvider.d.ts","sourceRoot":"","sources":["../../src/theme/ThemeProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,UAAU,EAAU,MAAM,MAAM,CAAC;AAEjE;;GAEG;AACH,MAAM,MAAM,UAAU,GAEhB,OAAO,GACP,SAAS,GACT,WAAW,GACX,SAAS,GACT,WAAW,GACX,OAAO,GACP,WAAW,GACX,WAAW,GACX,QAAQ,GACR,MAAM,GACN,QAAQ,GACR,SAAS,GACT,WAAW,GACX,MAAM,GACN,QAAQ,GACR,MAAM,GACN,UAAU,GACV,QAAQ,GACR,MAAM,GAEN,MAAM,GACN,WAAW,GACX,WAAW,GACX,QAAQ,GACR,MAAM,GACN,OAAO,GACP,QAAQ,GACR,SAAS,GACT,UAAU,GACV,OAAO,GACP,QAAQ,GACR,KAAK,GACL,QAAQ,CAAC;AAEf;;GAEG;AACH,MAAM,WAAW,WAAW;IACxB,2BAA2B;IAC3B,YAAY,CAAC,EAAE,UAAU,GAAG,MAAM,CAAC;IACnC,4DAA4D;IAC5D,MAAM,CAAC,EAAE,CAAC,UAAU,GAAG,MAAM,CAAC,EAAE,CAAC;IACjC,4CAA4C;IAC5C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,+BAA+B;IAC/B,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;CACzD;AAED;;GAEG;AACH,wBAAgB,eAAe,IAAI,MAAM,GAAG,IAAI,CAG/C;AAED;;GAEG;AACH,wBAAgB,QAAQ,CAAC,KAAK,EAAE,UAAU,GAAG,MAAM,GAAG,IAAI,CAQzD;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,YAAY,GAAE,UAAU,GAAG,MAAgB,GAAG,UAAU,GAAG,MAAM,CAalG;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,CAc1D;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,UAAU,GAAE,UAAoB,EAAE,SAAS,GAAE,UAAmB,GAAG,IAAI,CAGrG;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,kBAAkB,CAAC,YAAY,GAAE,MAAgB,EAAE,iBAAiB,GAAE,OAAc,GAAG,MAAM,CAM5G;AAMD,MAAM,MAAM,kBAAkB,GACxB,UAAU,CAAC,OAAO,EAAE,UAAU,GAAG,MAAM,EAAE,KAAK,CAAC,GAC/C,UAAU,CAAC,cAAc,EAAE,UAAU,GAAG,MAAM,EAAE,KAAK,CAAC,GACtD,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,UAAU,CAAC,SAAS,CAAC,CAAC;AAE5B;;;;;;;;;GASG;AACH,eAAO,MAAM,aAAa;;EAwBxB,CAAC;AAMH,MAAM,MAAM,kBAAkB,GACxB,UAAU,CAAC,QAAQ,EAAE,CAAC,UAAU,GAAG,MAAM,CAAC,EAAE,EAAE,KAAK,CAAC,GACpD,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AAWzC;;;;;;;GAOG;AACH,eAAO,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"ThemeProvider.d.ts","sourceRoot":"","sources":["../../src/theme/ThemeProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,UAAU,EAAU,MAAM,MAAM,CAAC;AAEjE;;GAEG;AACH,MAAM,MAAM,UAAU,GAEhB,OAAO,GACP,SAAS,GACT,WAAW,GACX,SAAS,GACT,WAAW,GACX,OAAO,GACP,WAAW,GACX,WAAW,GACX,QAAQ,GACR,MAAM,GACN,QAAQ,GACR,SAAS,GACT,WAAW,GACX,MAAM,GACN,QAAQ,GACR,MAAM,GACN,UAAU,GACV,QAAQ,GACR,MAAM,GAEN,MAAM,GACN,WAAW,GACX,WAAW,GACX,QAAQ,GACR,MAAM,GACN,OAAO,GACP,QAAQ,GACR,SAAS,GACT,UAAU,GACV,OAAO,GACP,QAAQ,GACR,KAAK,GACL,QAAQ,CAAC;AAEf;;GAEG;AACH,MAAM,WAAW,WAAW;IACxB,2BAA2B;IAC3B,YAAY,CAAC,EAAE,UAAU,GAAG,MAAM,CAAC;IACnC,4DAA4D;IAC5D,MAAM,CAAC,EAAE,CAAC,UAAU,GAAG,MAAM,CAAC,EAAE,CAAC;IACjC,4CAA4C;IAC5C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,+BAA+B;IAC/B,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;CACzD;AAED;;GAEG;AACH,wBAAgB,eAAe,IAAI,MAAM,GAAG,IAAI,CAG/C;AAED;;GAEG;AACH,wBAAgB,QAAQ,CAAC,KAAK,EAAE,UAAU,GAAG,MAAM,GAAG,IAAI,CAQzD;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,YAAY,GAAE,UAAU,GAAG,MAAgB,GAAG,UAAU,GAAG,MAAM,CAalG;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,CAc1D;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,UAAU,GAAE,UAAoB,EAAE,SAAS,GAAE,UAAmB,GAAG,IAAI,CAGrG;AAED;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,kBAAkB,CAAC,YAAY,GAAE,MAAgB,EAAE,iBAAiB,GAAE,OAAc,GAAG,MAAM,CAM5G;AAMD,MAAM,MAAM,kBAAkB,GACxB,UAAU,CAAC,OAAO,EAAE,UAAU,GAAG,MAAM,EAAE,KAAK,CAAC,GAC/C,UAAU,CAAC,cAAc,EAAE,UAAU,GAAG,MAAM,EAAE,KAAK,CAAC,GACtD,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,KAAK,CAAC,GACtC,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,GAClC,UAAU,CAAC,SAAS,CAAC,CAAC;AAE5B;;;;;;;;;GASG;AACH,eAAO,MAAM,aAAa;;EAwBxB,CAAC;AAMH,MAAM,MAAM,kBAAkB,GACxB,UAAU,CAAC,QAAQ,EAAE,CAAC,UAAU,GAAG,MAAM,CAAC,EAAE,EAAE,KAAK,CAAC,GACpD,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AAWzC;;;;;;;GAOG;AACH,eAAO,MAAM,aAAa,+DAqBxB,CAAC;AAMH,MAAM,MAAM,gBAAgB,GACtB,UAAU,CAAC,YAAY,EAAE,UAAU,GAAG,MAAM,EAAE,KAAK,CAAC,GACpD,UAAU,CAAC,WAAW,EAAE,UAAU,GAAG,MAAM,EAAE,KAAK,CAAC,GACnD,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AAEzC;;;;;;;GAOG;AACH,eAAO,MAAM,WAAW,6DAwCtB,CAAC"}
|
|
@@ -26,8 +26,8 @@ export type TextProps = DefineProp<'as', TextElement, false> & DefineProp<'size'
|
|
|
26
26
|
* <Text as="p" margin={{ bottom: "4" }}>Paragraph with margin</Text>
|
|
27
27
|
* ```
|
|
28
28
|
*/
|
|
29
|
-
export declare const Text: import("
|
|
30
|
-
default: () => import("
|
|
29
|
+
export declare const Text: import("sigx").ComponentFactory<TextProps, void, {
|
|
30
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
31
31
|
}>;
|
|
32
32
|
export type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
33
33
|
export type HeadingProps = DefineProp<'level', HeadingLevel, false> & DefineProp<'size', TextSize, false> & DefineProp<'weight', TextWeight, false> & DefineProp<'color', TextColor, false> & DefineProp<'align', TextAlign, false> & DefineProp<'margin', Spacing, false> & DefineProp<'class', string, false> & DefineSlot<'default'>;
|
|
@@ -41,7 +41,7 @@ export type HeadingProps = DefineProp<'level', HeadingLevel, false> & DefineProp
|
|
|
41
41
|
* <Heading level={3} size="xl">Custom sized heading</Heading>
|
|
42
42
|
* ```
|
|
43
43
|
*/
|
|
44
|
-
export declare const Heading: import("
|
|
45
|
-
default: () => import("
|
|
44
|
+
export declare const Heading: import("sigx").ComponentFactory<HeadingProps, void, {
|
|
45
|
+
default: () => import("sigx").JSXElement[] | import("sigx").JSXElement;
|
|
46
46
|
}>;
|
|
47
47
|
//# sourceMappingURL=Text.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sigx/daisyui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "DaisyUI component library for SignalX - Beautiful, accessible UI components with full theme support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -70,19 +70,19 @@
|
|
|
70
70
|
"tailwindcss": ">=4.0.0"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@sigx/
|
|
74
|
-
"@sigx/
|
|
75
|
-
"@sigx/runtime-
|
|
73
|
+
"@sigx/reactivity": "^0.1.13",
|
|
74
|
+
"@sigx/runtime-dom": "^0.1.13",
|
|
75
|
+
"@sigx/runtime-core": "^0.1.13"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"typescript": "^5.9.3",
|
|
79
79
|
"vite": "^8.0.0-beta.9",
|
|
80
|
-
"@sigx/vite": "^0.1.
|
|
81
|
-
"sigx": "^0.1.
|
|
80
|
+
"@sigx/vite": "^0.1.13",
|
|
81
|
+
"sigx": "^0.1.13"
|
|
82
82
|
},
|
|
83
83
|
"scripts": {
|
|
84
|
-
"build": "vite build &&
|
|
85
|
-
"build:types": "
|
|
84
|
+
"build": "vite build && tsgo --emitDeclarationOnly",
|
|
85
|
+
"build:types": "tsgo --emitDeclarationOnly",
|
|
86
86
|
"dev": "vite build --watch"
|
|
87
87
|
}
|
|
88
88
|
}
|