@zeturn/watercolor-react 1.1.46 → 1.2.0
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/src/ThemeReact.d.ts +13 -10
- package/dist/src/ThemeReact.d.ts.map +1 -1
- package/dist/src/components/Accordion/Accordion.d.ts.map +1 -1
- package/dist/src/components/Alert/Alert.d.ts.map +1 -1
- package/dist/src/components/Autocomplete/Autocomplete.d.ts.map +1 -1
- package/dist/src/components/Banner/Banner.d.ts.map +1 -1
- package/dist/src/components/Button/Button.d.ts.map +1 -1
- package/dist/src/components/Button/IconButton.d.ts.map +1 -1
- package/dist/src/components/Card/Card.d.ts +2 -1
- package/dist/src/components/Card/Card.d.ts.map +1 -1
- package/dist/src/components/Chip/Chip.d.ts +3 -1
- package/dist/src/components/Chip/Chip.d.ts.map +1 -1
- package/dist/src/components/Copy/Copy.d.ts.map +1 -1
- package/dist/src/components/DatePicker/DatePicker.d.ts.map +1 -1
- package/dist/src/components/Feature/Feature.d.ts +2 -2
- package/dist/src/components/Feature/Feature.d.ts.map +1 -1
- package/dist/src/components/Feed/Feed.d.ts.map +1 -1
- package/dist/src/components/FileInput/FileInput.d.ts +3 -1
- package/dist/src/components/FileInput/FileInput.d.ts.map +1 -1
- package/dist/src/components/Form/FormControlLabel.d.ts +2 -1
- package/dist/src/components/Form/FormControlLabel.d.ts.map +1 -1
- package/dist/src/components/Grid/Grid.d.ts.map +1 -1
- package/dist/src/components/HoverCard/HoverCard.d.ts.map +1 -1
- package/dist/src/components/Icon/Icon.d.ts.map +1 -1
- package/dist/src/components/Inline/Inline.d.ts +24 -0
- package/dist/src/components/Inline/Inline.d.ts.map +1 -0
- package/dist/src/components/List/List.d.ts.map +1 -1
- package/dist/src/components/Menu/Menu.d.ts.map +1 -1
- package/dist/src/components/Modal/Modal.d.ts.map +1 -1
- package/dist/src/components/NumberAnimation/NumberAnimation.d.ts.map +1 -1
- package/dist/src/components/Page/Page.d.ts +20 -0
- package/dist/src/components/Page/Page.d.ts.map +1 -0
- package/dist/src/components/Pagination/Pagination.d.ts.map +1 -1
- package/dist/src/components/Paper/Paper.d.ts +8 -1
- package/dist/src/components/Paper/Paper.d.ts.map +1 -1
- package/dist/src/components/Popover/Popover.d.ts.map +1 -1
- package/dist/src/components/Progress/Progress.d.ts.map +1 -1
- package/dist/src/components/Radio/Radio.d.ts.map +1 -1
- package/dist/src/components/Rating/Rating.d.ts +3 -4
- package/dist/src/components/Rating/Rating.d.ts.map +1 -1
- package/dist/src/components/Select/Select.d.ts.map +1 -1
- package/dist/src/components/Skeleton/Skeleton.d.ts.map +1 -1
- package/dist/src/components/SlideOver/SlideOver.d.ts.map +1 -1
- package/dist/src/components/Slider/Slider.d.ts +3 -4
- package/dist/src/components/Slider/Slider.d.ts.map +1 -1
- package/dist/src/components/Snackbar/Snackbar.d.ts.map +1 -1
- package/dist/src/components/Split/Split.d.ts +24 -0
- package/dist/src/components/Split/Split.d.ts.map +1 -0
- package/dist/src/components/Stack/Stack.d.ts +20 -0
- package/dist/src/components/Stack/Stack.d.ts.map +1 -0
- package/dist/src/components/Status/Status.d.ts.map +1 -1
- package/dist/src/components/Switch/Switch.d.ts.map +1 -1
- package/dist/src/components/Tabs/Tabs.d.ts.map +1 -1
- package/dist/src/components/Tooltip/Tooltip.d.ts.map +1 -1
- package/dist/src/components/Typography/Typography.d.ts.map +1 -1
- package/dist/src/composition.d.ts +38 -0
- package/dist/src/composition.d.ts.map +1 -0
- package/dist/src/index.d.ts +6 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/utils/theme.d.ts +2 -166
- package/dist/src/utils/theme.d.ts.map +1 -1
- package/dist/watercolor-react.css +1 -1
- package/dist/watercolor-react.es.js +2104 -1860
- package/dist/watercolor-react.umd.js +2 -38
- package/index.d.ts +49 -1
- package/package.json +7 -2
- package/dist/src/utils/themeManager.d.ts +0 -23
- package/dist/src/utils/themeManager.d.ts.map +0 -1
package/dist/src/ThemeReact.d.ts
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
setColor: (c: _ColorTheme) => void;
|
|
7
|
-
dark: boolean;
|
|
8
|
-
/** 与 Vue 端保持一致,切换暗黑模式 */
|
|
9
|
-
toggleDark: () => void;
|
|
2
|
+
import { ResolvedThemeMode, ThemeStorage, ThemeMode, ThemeSnapshot } from '@zeturn/watercolor-core';
|
|
3
|
+
export interface ThemeContextValue extends ThemeSnapshot {
|
|
4
|
+
setMode: (mode: ThemeMode) => void;
|
|
5
|
+
toggleMode: () => void;
|
|
10
6
|
}
|
|
11
|
-
export
|
|
7
|
+
export interface ThemeProviderProps extends React.PropsWithChildren {
|
|
8
|
+
defaultMode?: ThemeMode;
|
|
9
|
+
mode?: ThemeMode;
|
|
10
|
+
storageKey?: string;
|
|
11
|
+
storage?: ThemeStorage | null;
|
|
12
|
+
onModeChange?: (mode: ThemeMode) => void;
|
|
13
|
+
onResolvedModeChange?: (resolvedMode: ResolvedThemeMode) => void;
|
|
14
|
+
}
|
|
15
|
+
export declare const ThemeProvider: React.FC<ThemeProviderProps>;
|
|
12
16
|
export declare function useTheme(): ThemeContextValue;
|
|
13
|
-
export {};
|
|
14
17
|
//# sourceMappingURL=ThemeReact.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeReact.d.ts","sourceRoot":"","sources":["../../src/ThemeReact.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"ThemeReact.d.ts","sourceRoot":"","sources":["../../src/ThemeReact.tsx"],"names":[],"mappings":"AAAA,OAAO,KASN,MAAM,OAAO,CAAA;AACd,OAAO,EAEL,KAAK,iBAAiB,EAEtB,KAAK,YAAY,EACjB,KAAK,SAAS,EACd,KAAK,aAAa,EACnB,MAAM,yBAAyB,CAAA;AAEhC,MAAM,WAAW,iBAAkB,SAAQ,aAAa;IACtD,OAAO,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAA;IAClC,UAAU,EAAE,MAAM,IAAI,CAAA;CACvB;AAED,MAAM,WAAW,kBAAmB,SAAQ,KAAK,CAAC,iBAAiB;IACjE,WAAW,CAAC,EAAE,SAAS,CAAA;IACvB,IAAI,CAAC,EAAE,SAAS,CAAA;IAChB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,OAAO,CAAC,EAAE,YAAY,GAAG,IAAI,CAAA;IAC7B,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAA;IACxC,oBAAoB,CAAC,EAAE,CAAC,YAAY,EAAE,iBAAiB,KAAK,IAAI,CAAA;CACjE;AAKD,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAiEtD,CAAA;AAED,wBAAgB,QAAQ,IAAK,iBAAiB,CAI7C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../../../src/components/Accordion/Accordion.jsx"],"names":[],"mappings":";AAIA;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../../../src/components/Accordion/Accordion.jsx"],"names":[],"mappings":";AAIA;;;;;;;;;4CAmEC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../../../../src/components/Alert/Alert.jsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Alert.d.ts","sourceRoot":"","sources":["../../../../src/components/Alert/Alert.jsx"],"names":[],"mappings":"AAqBA;;;;;;;;;mDAoDC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Autocomplete.d.ts","sourceRoot":"","sources":["../../../../src/components/Autocomplete/Autocomplete.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Autocomplete.d.ts","sourceRoot":"","sources":["../../../../src/components/Autocomplete/Autocomplete.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAsWC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Banner.d.ts","sourceRoot":"","sources":["../../../../src/components/Banner/Banner.jsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Banner.d.ts","sourceRoot":"","sources":["../../../../src/components/Banner/Banner.jsx"],"names":[],"mappings":"AA0BA;;;GAGG;AACH,oKAFW,MAAM,kDA8EhB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/Button.jsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/Button.jsx"],"names":[],"mappings":";AAQA;;;;;;;;;;;;;;;;;;;;;;;;4CAuGC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/IconButton.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/IconButton.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;4CAiEC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default Card;
|
|
2
|
-
declare function Card({ children, title, variant, color, size, interactive, noBorder, className, header, footer, style, onClick, onMouseEnter, onMouseLeave, ...props }: {
|
|
2
|
+
declare function Card({ children, title, variant, color, size, interactive, noBorder, className, header, footer, style, onClick, onMouseEnter, onMouseLeave, onKeyDown, ...props }: {
|
|
3
3
|
[x: string]: any;
|
|
4
4
|
children: any;
|
|
5
5
|
title?: string | undefined;
|
|
@@ -15,6 +15,7 @@ declare function Card({ children, title, variant, color, size, interactive, noBo
|
|
|
15
15
|
onClick: any;
|
|
16
16
|
onMouseEnter: any;
|
|
17
17
|
onMouseLeave: any;
|
|
18
|
+
onKeyDown: any;
|
|
18
19
|
}): import("react/jsx-runtime").JSX.Element;
|
|
19
20
|
declare namespace Card {
|
|
20
21
|
let displayName: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../../../src/components/Card/Card.jsx"],"names":[],"mappings":";AAIA
|
|
1
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../../../src/components/Card/Card.jsx"],"names":[],"mappings":";AAIA;;;;;;;;;;;;;;;;;4CAqEC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export default function Chip({ label, avatar, deletable, disabled, clickable, variant, size, color, deleteIcon, onClick, onDelete, children, }: {
|
|
1
|
+
export default function Chip({ label, avatar, deletable, disabled, clickable, variant, size, color, deleteIcon, onClick, onDelete, children, className, ...rest }: {
|
|
2
|
+
[x: string]: any;
|
|
2
3
|
label?: string | undefined;
|
|
3
4
|
avatar?: string | undefined;
|
|
4
5
|
deletable?: boolean | undefined;
|
|
@@ -11,5 +12,6 @@ export default function Chip({ label, avatar, deletable, disabled, clickable, va
|
|
|
11
12
|
onClick: any;
|
|
12
13
|
onDelete: any;
|
|
13
14
|
children: any;
|
|
15
|
+
className?: string | undefined;
|
|
14
16
|
}): import("react/jsx-runtime").JSX.Element;
|
|
15
17
|
//# sourceMappingURL=Chip.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Chip.d.ts","sourceRoot":"","sources":["../../../../src/components/Chip/Chip.jsx"],"names":[],"mappings":"AAIA
|
|
1
|
+
{"version":3,"file":"Chip.d.ts","sourceRoot":"","sources":["../../../../src/components/Chip/Chip.jsx"],"names":[],"mappings":"AAIA;;;;;;;;;;;;;;;4CA4EC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Copy.d.ts","sourceRoot":"","sources":["../../../../src/components/Copy/Copy.jsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Copy.d.ts","sourceRoot":"","sources":["../../../../src/components/Copy/Copy.jsx"],"names":[],"mappings":"AAqCA;;;;;;;;;;;;;;;;4CAuEC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DatePicker.d.ts","sourceRoot":"","sources":["../../../../src/components/DatePicker/DatePicker.jsx"],"names":[],"mappings":"AAWA;;;GAGG;AACH;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"DatePicker.d.ts","sourceRoot":"","sources":["../../../../src/components/DatePicker/DatePicker.jsx"],"names":[],"mappings":"AAWA;;;GAGG;AACH;;;;;;;;;;;;;4CAgNC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default Feature;
|
|
2
|
-
declare function Feature({ title, description, icon, iconSize, size, align, background, bgColor, reverse, vertical, ctaLabel, ctaHref, onClick, onCtaClick, children, className, style,
|
|
2
|
+
declare function Feature({ title, description, icon, iconSize, size, align, background, variant, bgColor, reverse, vertical, ctaLabel, ctaHref, onClick, onCtaClick, children, className, style, }: {
|
|
3
3
|
title?: string | undefined;
|
|
4
4
|
description?: string | undefined;
|
|
5
5
|
icon?: string | undefined;
|
|
@@ -7,6 +7,7 @@ declare function Feature({ title, description, icon, iconSize, size, align, back
|
|
|
7
7
|
size?: string | undefined;
|
|
8
8
|
align?: string | undefined;
|
|
9
9
|
background?: string | undefined;
|
|
10
|
+
variant?: string | undefined;
|
|
10
11
|
bgColor?: string | undefined;
|
|
11
12
|
reverse?: boolean | undefined;
|
|
12
13
|
vertical?: boolean | undefined;
|
|
@@ -17,7 +18,6 @@ declare function Feature({ title, description, icon, iconSize, size, align, back
|
|
|
17
18
|
children: any;
|
|
18
19
|
className?: string | undefined;
|
|
19
20
|
style?: {} | undefined;
|
|
20
|
-
isDarkMode?: boolean | undefined;
|
|
21
21
|
}): import("react/jsx-runtime").JSX.Element;
|
|
22
22
|
declare namespace Feature {
|
|
23
23
|
let displayName: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Feature.d.ts","sourceRoot":"","sources":["../../../../src/components/Feature/Feature.jsx"],"names":[],"mappings":";AAaA;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Feature.d.ts","sourceRoot":"","sources":["../../../../src/components/Feature/Feature.jsx"],"names":[],"mappings":";AAaA;;;;;;;;;;;;;;;;;;;4CA2FC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Feed.d.ts","sourceRoot":"","sources":["../../../../src/components/Feed/Feed.jsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Feed.d.ts","sourceRoot":"","sources":["../../../../src/components/Feed/Feed.jsx"],"names":[],"mappings":";AAyEA;;;;;;;;;4CAiCC"}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export default FileInput;
|
|
2
|
-
declare function FileInput({ multiple, variant, accept, label, onChange, onInvalid, className, style
|
|
2
|
+
declare function FileInput({ multiple, variant, accept, label, description, disabled, onChange, onInvalid, className, style }: {
|
|
3
3
|
multiple?: boolean | undefined;
|
|
4
4
|
variant?: string | undefined;
|
|
5
5
|
accept?: string | undefined;
|
|
6
6
|
label?: string | undefined;
|
|
7
|
+
description?: string | undefined;
|
|
8
|
+
disabled?: boolean | undefined;
|
|
7
9
|
onChange: any;
|
|
8
10
|
onInvalid: any;
|
|
9
11
|
className?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileInput.d.ts","sourceRoot":"","sources":["../../../../src/components/FileInput/FileInput.jsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"FileInput.d.ts","sourceRoot":"","sources":["../../../../src/components/FileInput/FileInput.jsx"],"names":[],"mappings":";AASA;;;;;;;;;;;4CAiFC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default FormControlLabel;
|
|
2
|
-
declare function FormControlLabel({ label, labelPlacement, disabled, required, checked, value, className, style, onChange, children, ...props }: {
|
|
2
|
+
declare function FormControlLabel({ label, labelPlacement, disabled, required, checked, value, control, className, style, onChange, children, ...props }: {
|
|
3
3
|
[x: string]: any;
|
|
4
4
|
label: any;
|
|
5
5
|
labelPlacement?: string | undefined;
|
|
@@ -7,6 +7,7 @@ declare function FormControlLabel({ label, labelPlacement, disabled, required, c
|
|
|
7
7
|
required?: boolean | undefined;
|
|
8
8
|
checked: any;
|
|
9
9
|
value: any;
|
|
10
|
+
control: any;
|
|
10
11
|
className?: string | undefined;
|
|
11
12
|
style?: {} | undefined;
|
|
12
13
|
onChange: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormControlLabel.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/FormControlLabel.jsx"],"names":[],"mappings":";AAIA
|
|
1
|
+
{"version":3,"file":"FormControlLabel.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/FormControlLabel.jsx"],"names":[],"mappings":";AAIA;;;;;;;;;;;;;4CAwDC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Grid.d.ts","sourceRoot":"","sources":["../../../../src/components/Grid/Grid.jsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Grid.d.ts","sourceRoot":"","sources":["../../../../src/components/Grid/Grid.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;;;;4CAsCC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HoverCard.d.ts","sourceRoot":"","sources":["../../../../src/components/HoverCard/HoverCard.jsx"],"names":[],"mappings":";AAIA;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"HoverCard.d.ts","sourceRoot":"","sources":["../../../../src/components/HoverCard/HoverCard.jsx"],"names":[],"mappings":";AAIA;;;;;;;;;;;;;;;;;;;4CA+IC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/Icon.jsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/Icon.jsx"],"names":[],"mappings":";AAiFA;;;;;;;;;;;4CAoJC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export default Inline;
|
|
2
|
+
declare function Inline({ as: Component, gap, align, justify, wrap, className, children, ...props }: {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
as?: string | undefined;
|
|
5
|
+
gap?: string | undefined;
|
|
6
|
+
align?: string | undefined;
|
|
7
|
+
justify?: string | undefined;
|
|
8
|
+
wrap?: boolean | undefined;
|
|
9
|
+
className?: string | undefined;
|
|
10
|
+
children: any;
|
|
11
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
declare namespace Inline {
|
|
13
|
+
let displayName: string;
|
|
14
|
+
namespace propTypes {
|
|
15
|
+
let as: any;
|
|
16
|
+
let gap: any;
|
|
17
|
+
let align: any;
|
|
18
|
+
let justify: any;
|
|
19
|
+
let wrap: any;
|
|
20
|
+
let className: any;
|
|
21
|
+
let children: any;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=Inline.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Inline.d.ts","sourceRoot":"","sources":["../../../../src/components/Inline/Inline.jsx"],"names":[],"mappings":";AASA;;;;;;;;;4CAoBC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"List.d.ts","sourceRoot":"","sources":["../../../../src/components/List/List.jsx"],"names":[],"mappings":"AAIA;;GAEG;AACH;;GAA0D;;kBAPrB,OAAO;AAS5C;;;;;;;GAOG;AACH;;;;;;;;
|
|
1
|
+
{"version":3,"file":"List.d.ts","sourceRoot":"","sources":["../../../../src/components/List/List.jsx"],"names":[],"mappings":"AAIA;;GAEG;AACH;;GAA0D;;kBAPrB,OAAO;AAS5C;;;;;;;GAOG;AACH;;;;;;;;4CAoBC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Menu.d.ts","sourceRoot":"","sources":["../../../../src/components/Menu/Menu.jsx"],"names":[],"mappings":";AAaA;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Menu.d.ts","sourceRoot":"","sources":["../../../../src/components/Menu/Menu.jsx"],"names":[],"mappings":";AAaA;;;;;;;;;;;;;;;;;;;;4CA6KC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Modal.d.ts","sourceRoot":"","sources":["../../../../src/components/Modal/Modal.jsx"],"names":[],"mappings":";AAcA;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Modal.d.ts","sourceRoot":"","sources":["../../../../src/components/Modal/Modal.jsx"],"names":[],"mappings":";AAcA;;;;;;;;;;;;;;;;;;;;;;;;;;6BA+MC;;;;kBA7NyD,OAAO"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NumberAnimation.d.ts","sourceRoot":"","sources":["../../../../src/components/NumberAnimation/NumberAnimation.jsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"NumberAnimation.d.ts","sourceRoot":"","sources":["../../../../src/components/NumberAnimation/NumberAnimation.jsx"],"names":[],"mappings":";AAGA;;GAEG;AACH;;;;;;;;;;;;;;;;;4CAqGC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export default Page;
|
|
2
|
+
declare function Page({ as: Component, size, gutter, className, children, ...props }: {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
as?: string | undefined;
|
|
5
|
+
size?: string | undefined;
|
|
6
|
+
gutter?: string | undefined;
|
|
7
|
+
className?: string | undefined;
|
|
8
|
+
children: any;
|
|
9
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare namespace Page {
|
|
11
|
+
let displayName: string;
|
|
12
|
+
namespace propTypes {
|
|
13
|
+
let as: any;
|
|
14
|
+
let size: any;
|
|
15
|
+
let gutter: any;
|
|
16
|
+
let className: any;
|
|
17
|
+
let children: any;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=Page.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Page.d.ts","sourceRoot":"","sources":["../../../../src/components/Page/Page.jsx"],"names":[],"mappings":";AAKA;;;;;;;4CAgBC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pagination.d.ts","sourceRoot":"","sources":["../../../../src/components/Pagination/Pagination.jsx"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AACH;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Pagination.d.ts","sourceRoot":"","sources":["../../../../src/components/Pagination/Pagination.jsx"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AACH;;;;;;;;;;mDAiHC"}
|
|
@@ -9,8 +9,9 @@
|
|
|
9
9
|
* color string – 颜色主题
|
|
10
10
|
* size string – 尺寸
|
|
11
11
|
*/
|
|
12
|
-
export default function Paper({ variant, elevation, square, hoverable, clickable, color, size, className, children, onClick, onMouseEnter, onMouseLeave, ...rest }: {
|
|
12
|
+
export default function Paper({ component: Component, variant, elevation, square, hoverable, clickable, color, size, shape, gradient, frosted, textured, className, children, onClick, onMouseEnter, onMouseLeave, onKeyDown, style, ...rest }: {
|
|
13
13
|
[x: string]: any;
|
|
14
|
+
component?: string | undefined;
|
|
14
15
|
variant?: string | undefined;
|
|
15
16
|
elevation?: number | undefined;
|
|
16
17
|
square?: boolean | undefined;
|
|
@@ -18,10 +19,16 @@ export default function Paper({ variant, elevation, square, hoverable, clickable
|
|
|
18
19
|
clickable?: boolean | undefined;
|
|
19
20
|
color?: string | undefined;
|
|
20
21
|
size?: null | undefined;
|
|
22
|
+
shape?: null | undefined;
|
|
23
|
+
gradient?: boolean | undefined;
|
|
24
|
+
frosted?: boolean | undefined;
|
|
25
|
+
textured?: boolean | undefined;
|
|
21
26
|
className?: string | undefined;
|
|
22
27
|
children: any;
|
|
23
28
|
onClick: any;
|
|
24
29
|
onMouseEnter: any;
|
|
25
30
|
onMouseLeave: any;
|
|
31
|
+
onKeyDown: any;
|
|
32
|
+
style?: {} | undefined;
|
|
26
33
|
}): import("react/jsx-runtime").JSX.Element;
|
|
27
34
|
//# sourceMappingURL=Paper.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Paper.d.ts","sourceRoot":"","sources":["../../../../src/components/Paper/Paper.jsx"],"names":[],"mappings":"AAIA;;;;;;;;;;GAUG;AACH
|
|
1
|
+
{"version":3,"file":"Paper.d.ts","sourceRoot":"","sources":["../../../../src/components/Paper/Paper.jsx"],"names":[],"mappings":"AAIA;;;;;;;;;;GAUG;AACH;;;;;;;;;;;;;;;;;;;;;4CAoEC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../../../../src/components/Popover/Popover.jsx"],"names":[],"mappings":"AAIA;;;;;;;;GAQG;AACH;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../../../../src/components/Popover/Popover.jsx"],"names":[],"mappings":"AAIA;;;;;;;;GAQG;AACH;;;;;;;;;4CA2IC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Progress.d.ts","sourceRoot":"","sources":["../../../../src/components/Progress/Progress.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Progress.d.ts","sourceRoot":"","sources":["../../../../src/components/Progress/Progress.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;4CA4DC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Radio.d.ts","sourceRoot":"","sources":["../../../../src/components/Radio/Radio.jsx"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;4CAgEC;;;;AAED;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Radio.d.ts","sourceRoot":"","sources":["../../../../src/components/Radio/Radio.jsx"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;4CAgEC;;;;AAED;;;;;;;;;;;;4CAkFC"}
|
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
export default Rating;
|
|
2
|
-
/**
|
|
3
|
-
* Rating (React)
|
|
4
|
-
* 支持 0- `max` 星级评分,可只读。
|
|
5
|
-
*/
|
|
6
2
|
declare function Rating({ value, max, readOnly, onChange, className, style, ...rest }: {
|
|
7
3
|
[x: string]: any;
|
|
8
4
|
value?: number | undefined;
|
|
@@ -12,4 +8,7 @@ declare function Rating({ value, max, readOnly, onChange, className, style, ...r
|
|
|
12
8
|
className?: string | undefined;
|
|
13
9
|
style?: {} | undefined;
|
|
14
10
|
}): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
declare namespace Rating {
|
|
12
|
+
let displayName: string;
|
|
13
|
+
}
|
|
15
14
|
//# sourceMappingURL=Rating.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Rating.d.ts","sourceRoot":"","sources":["../../../../src/components/Rating/Rating.jsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Rating.d.ts","sourceRoot":"","sources":["../../../../src/components/Rating/Rating.jsx"],"names":[],"mappings":";AAGA;;;;;;;;4CAmCC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../../src/components/Select/Select.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../../src/components/Select/Select.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAiRC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Skeleton.d.ts","sourceRoot":"","sources":["../../../../src/components/Skeleton/Skeleton.jsx"],"names":[],"mappings":";AAUA;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Skeleton.d.ts","sourceRoot":"","sources":["../../../../src/components/Skeleton/Skeleton.jsx"],"names":[],"mappings":";AAUA;;;;;;;;;4CAyBC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SlideOver.d.ts","sourceRoot":"","sources":["../../../../src/components/SlideOver/SlideOver.jsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"SlideOver.d.ts","sourceRoot":"","sources":["../../../../src/components/SlideOver/SlideOver.jsx"],"names":[],"mappings":";AAIA;;;GAGG;AACH;;;;;;;;6BAiDC;kBAzDwC,OAAO"}
|
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
export default Slider;
|
|
2
|
-
/**
|
|
3
|
-
* Slider (React)
|
|
4
|
-
* 依赖原生 input[type=range],使用主题变量,简洁扁平化样式。
|
|
5
|
-
*/
|
|
6
2
|
declare function Slider({ value: valueProp, defaultValue, min, max, step, disabled, label, valueLabelDisplay, onChange, className, style, ...rest }: {
|
|
7
3
|
[x: string]: any;
|
|
8
4
|
value: any;
|
|
@@ -17,4 +13,7 @@ declare function Slider({ value: valueProp, defaultValue, min, max, step, disabl
|
|
|
17
13
|
className?: string | undefined;
|
|
18
14
|
style?: {} | undefined;
|
|
19
15
|
}): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
declare namespace Slider {
|
|
17
|
+
let displayName: string;
|
|
18
|
+
}
|
|
20
19
|
//# sourceMappingURL=Slider.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Slider.d.ts","sourceRoot":"","sources":["../../../../src/components/Slider/Slider.jsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Slider.d.ts","sourceRoot":"","sources":["../../../../src/components/Slider/Slider.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;4CA4DC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Snackbar.d.ts","sourceRoot":"","sources":["../../../../src/components/Snackbar/Snackbar.jsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Snackbar.d.ts","sourceRoot":"","sources":["../../../../src/components/Snackbar/Snackbar.jsx"],"names":[],"mappings":"AAqBA;;;;;;;;;;;;;;;;;;;;6BA2JC;kBAhL0C,OAAO"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export default Split;
|
|
2
|
+
declare function Split({ as: Component, ratio, gap, align, collapse, className, children, ...props }: {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
as?: string | undefined;
|
|
5
|
+
ratio?: string | undefined;
|
|
6
|
+
gap?: string | undefined;
|
|
7
|
+
align?: string | undefined;
|
|
8
|
+
collapse?: string | undefined;
|
|
9
|
+
className?: string | undefined;
|
|
10
|
+
children: any;
|
|
11
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
declare namespace Split {
|
|
13
|
+
let displayName: string;
|
|
14
|
+
namespace propTypes {
|
|
15
|
+
let as: any;
|
|
16
|
+
let ratio: any;
|
|
17
|
+
let gap: any;
|
|
18
|
+
let align: any;
|
|
19
|
+
let collapse: any;
|
|
20
|
+
let className: any;
|
|
21
|
+
let children: any;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=Split.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Split.d.ts","sourceRoot":"","sources":["../../../../src/components/Split/Split.jsx"],"names":[],"mappings":";AAUA;;;;;;;;;4CAoBC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export default Stack;
|
|
2
|
+
declare function Stack({ as: Component, gap, align, className, children, ...props }: {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
as?: string | undefined;
|
|
5
|
+
gap?: string | undefined;
|
|
6
|
+
align?: string | undefined;
|
|
7
|
+
className?: string | undefined;
|
|
8
|
+
children: any;
|
|
9
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare namespace Stack {
|
|
11
|
+
let displayName: string;
|
|
12
|
+
namespace propTypes {
|
|
13
|
+
let as: any;
|
|
14
|
+
let gap: any;
|
|
15
|
+
let align: any;
|
|
16
|
+
let className: any;
|
|
17
|
+
let children: any;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=Stack.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Stack.d.ts","sourceRoot":"","sources":["../../../../src/components/Stack/Stack.jsx"],"names":[],"mappings":";AAKA;;;;;;;4CAgBC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Status.d.ts","sourceRoot":"","sources":["../../../../src/components/Status/Status.jsx"],"names":[],"mappings":";AAIA;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Status.d.ts","sourceRoot":"","sources":["../../../../src/components/Status/Status.jsx"],"names":[],"mappings":";AAIA;;;;;;;;4CAsBC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Switch.d.ts","sourceRoot":"","sources":["../../../../src/components/Switch/Switch.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Switch.d.ts","sourceRoot":"","sources":["../../../../src/components/Switch/Switch.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;4CA0EC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tabs.d.ts","sourceRoot":"","sources":["../../../../src/components/Tabs/Tabs.jsx"],"names":[],"mappings":";AAGA;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Tabs.d.ts","sourceRoot":"","sources":["../../../../src/components/Tabs/Tabs.jsx"],"names":[],"mappings":";AAGA;;;;;;;;4CA0GC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../../../src/components/Tooltip/Tooltip.jsx"],"names":[],"mappings":"AAIA;;;;;
|
|
1
|
+
{"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../../../src/components/Tooltip/Tooltip.jsx"],"names":[],"mappings":"AAIA;;;;;4CA6CC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Typography.d.ts","sourceRoot":"","sources":["../../../../src/components/Typography/Typography.jsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Typography.d.ts","sourceRoot":"","sources":["../../../../src/components/Typography/Typography.jsx"],"names":[],"mappings":";AAGA;;;;;;;;;;;4CAyBC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { ComponentPropsWithoutRef, ElementType, ReactNode } from 'react';
|
|
2
|
+
import { CompositionAlign, CompositionGap, InlineJustify, PageGutter, PageSize, SplitCollapse, SplitRatio } from '@zeturn/watercolor-core';
|
|
3
|
+
export declare const COMPOSITION_GAPS: readonly ["none", "2xs", "xs", "sm", "md", "lg", "xl", "2xl", "3xl"];
|
|
4
|
+
export declare const COMPOSITION_ALIGNS: readonly ["stretch", "start", "center", "end"];
|
|
5
|
+
export declare const PAGE_SIZES: readonly ["sm", "md", "lg", "xl", "full"];
|
|
6
|
+
export declare const PAGE_GUTTERS: readonly ["none", "sm", "md", "lg"];
|
|
7
|
+
export declare const INLINE_JUSTIFY: readonly ["start", "center", "end", "between", "around"];
|
|
8
|
+
export declare const SPLIT_RATIOS: readonly ["equal", "sidebar", "sidebar-end", "wide-start", "wide-end"];
|
|
9
|
+
export declare const SPLIT_COLLAPSE: readonly ["none", "sm", "md", "lg"];
|
|
10
|
+
type PolymorphicProps<T extends ElementType, OwnProps> = OwnProps & Omit<ComponentPropsWithoutRef<T>, keyof OwnProps | 'as'> & {
|
|
11
|
+
as?: T;
|
|
12
|
+
};
|
|
13
|
+
interface CompositionBaseProps {
|
|
14
|
+
children?: ReactNode;
|
|
15
|
+
className?: string;
|
|
16
|
+
}
|
|
17
|
+
export type PageProps<T extends ElementType = 'div'> = PolymorphicProps<T, CompositionBaseProps & {
|
|
18
|
+
size?: PageSize;
|
|
19
|
+
gutter?: PageGutter;
|
|
20
|
+
}>;
|
|
21
|
+
export type StackProps<T extends ElementType = 'div'> = PolymorphicProps<T, CompositionBaseProps & {
|
|
22
|
+
gap?: CompositionGap;
|
|
23
|
+
align?: CompositionAlign;
|
|
24
|
+
}>;
|
|
25
|
+
export type InlineProps<T extends ElementType = 'div'> = PolymorphicProps<T, CompositionBaseProps & {
|
|
26
|
+
gap?: CompositionGap;
|
|
27
|
+
align?: CompositionAlign;
|
|
28
|
+
justify?: InlineJustify;
|
|
29
|
+
wrap?: boolean;
|
|
30
|
+
}>;
|
|
31
|
+
export type SplitProps<T extends ElementType = 'div'> = PolymorphicProps<T, CompositionBaseProps & {
|
|
32
|
+
ratio?: SplitRatio;
|
|
33
|
+
gap?: CompositionGap;
|
|
34
|
+
align?: CompositionAlign;
|
|
35
|
+
collapse?: SplitCollapse;
|
|
36
|
+
}>;
|
|
37
|
+
export type { CompositionAlign, CompositionGap, InlineJustify, PageGutter, PageSize, SplitCollapse, SplitRatio, } from '@zeturn/watercolor-core';
|
|
38
|
+
//# sourceMappingURL=composition.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"composition.d.ts","sourceRoot":"","sources":["../../src/composition.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAC7E,OAAO,KAAK,EACV,gBAAgB,EAChB,cAAc,EACd,aAAa,EACb,UAAU,EACV,QAAQ,EACR,aAAa,EACb,UAAU,EACX,MAAM,yBAAyB,CAAA;AAIhC,eAAO,MAAM,gBAAgB,sEAAuE,CAAA;AACpG,eAAO,MAAM,kBAAkB,gDAAiD,CAAA;AAChF,eAAO,MAAM,UAAU,2CAA4C,CAAA;AACnE,eAAO,MAAM,YAAY,qCAAsC,CAAA;AAC/D,eAAO,MAAM,cAAc,0DAA2D,CAAA;AACtF,eAAO,MAAM,YAAY,wEAAyE,CAAA;AAClG,eAAO,MAAM,cAAc,qCAAsC,CAAA;AAEjE,KAAK,gBAAgB,CAAC,CAAC,SAAS,WAAW,EAAE,QAAQ,IAAI,QAAQ,GAC/D,IAAI,CAAC,wBAAwB,CAAC,CAAC,CAAC,EAAE,MAAM,QAAQ,GAAG,IAAI,CAAC,GAAG;IAAE,EAAE,CAAC,EAAE,CAAC,CAAA;CAAE,CAAA;AAEvE,UAAU,oBAAoB;IAC5B,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,MAAM,MAAM,SAAS,CAAC,CAAC,SAAS,WAAW,GAAG,KAAK,IAAI,gBAAgB,CAAC,CAAC,EAAE,oBAAoB,GAAG;IAChG,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,MAAM,CAAC,EAAE,UAAU,CAAA;CACpB,CAAC,CAAA;AAEF,MAAM,MAAM,UAAU,CAAC,CAAC,SAAS,WAAW,GAAG,KAAK,IAAI,gBAAgB,CAAC,CAAC,EAAE,oBAAoB,GAAG;IACjG,GAAG,CAAC,EAAE,cAAc,CAAA;IACpB,KAAK,CAAC,EAAE,gBAAgB,CAAA;CACzB,CAAC,CAAA;AAEF,MAAM,MAAM,WAAW,CAAC,CAAC,SAAS,WAAW,GAAG,KAAK,IAAI,gBAAgB,CAAC,CAAC,EAAE,oBAAoB,GAAG;IAClG,GAAG,CAAC,EAAE,cAAc,CAAA;IACpB,KAAK,CAAC,EAAE,gBAAgB,CAAA;IACxB,OAAO,CAAC,EAAE,aAAa,CAAA;IACvB,IAAI,CAAC,EAAE,OAAO,CAAA;CACf,CAAC,CAAA;AAEF,MAAM,MAAM,UAAU,CAAC,CAAC,SAAS,WAAW,GAAG,KAAK,IAAI,gBAAgB,CAAC,CAAC,EAAE,oBAAoB,GAAG;IACjG,KAAK,CAAC,EAAE,UAAU,CAAA;IAClB,GAAG,CAAC,EAAE,cAAc,CAAA;IACpB,KAAK,CAAC,EAAE,gBAAgB,CAAA;IACxB,QAAQ,CAAC,EAAE,aAAa,CAAA;CACzB,CAAC,CAAA;AAEF,YAAY,EACV,gBAAgB,EAChB,cAAc,EACd,aAAa,EACb,UAAU,EACV,QAAQ,EACR,aAAa,EACb,UAAU,GACX,MAAM,yBAAyB,CAAA"}
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export type * from './composition.js';
|
|
1
2
|
export { default as Accordion } from './components/Accordion/Accordion.jsx';
|
|
2
3
|
export { default as Alert } from './components/Alert/Alert.jsx';
|
|
3
4
|
export { default as AppBar } from './components/AppBar/AppBar.jsx';
|
|
@@ -32,6 +33,7 @@ export { default as HoverCard } from './components/HoverCard/HoverCard.jsx';
|
|
|
32
33
|
export { default as Icon } from './components/Icon/Icon.jsx';
|
|
33
34
|
export { default as IconButton } from './components/Button/IconButton.jsx';
|
|
34
35
|
export { default as ImageGallery } from './components/ImageGallery/ImageGallery.jsx';
|
|
36
|
+
export { default as Inline } from './components/Inline/Inline.jsx';
|
|
35
37
|
export { default as Input } from './components/Input/Input.jsx';
|
|
36
38
|
export { default as List } from './components/List/List.jsx';
|
|
37
39
|
export { default as ListItem } from './components/List/ListItem.jsx';
|
|
@@ -41,6 +43,7 @@ export { default as Menu } from './components/Menu/Menu.jsx';
|
|
|
41
43
|
export { default as Modal } from './components/Modal/Modal.jsx';
|
|
42
44
|
export { default as NumberAnimation } from './components/NumberAnimation/NumberAnimation.jsx';
|
|
43
45
|
export { default as Pagination } from './components/Pagination/Pagination.jsx';
|
|
46
|
+
export { default as Page } from './components/Page/Page.jsx';
|
|
44
47
|
export { default as Paper } from './components/Paper/Paper.jsx';
|
|
45
48
|
export { default as Popover } from './components/Popover/Popover.jsx';
|
|
46
49
|
export { default as PricingTable } from './components/PricingTable/PricingTable.jsx';
|
|
@@ -52,6 +55,8 @@ export { default as Select } from './components/Select/Select.jsx';
|
|
|
52
55
|
export { default as Skeleton } from './components/Skeleton/Skeleton.jsx';
|
|
53
56
|
export { default as Slider } from './components/Slider/Slider.jsx';
|
|
54
57
|
export { default as SlideOver } from './components/SlideOver/SlideOver.jsx';
|
|
58
|
+
export { default as Split } from './components/Split/Split.jsx';
|
|
59
|
+
export { default as Stack } from './components/Stack/Stack.jsx';
|
|
55
60
|
export { default as Snackbar } from './components/Snackbar/Snackbar.jsx';
|
|
56
61
|
export { default as Status } from './components/Status/Status.jsx';
|
|
57
62
|
export { default as Switch } from './components/Switch/Switch.jsx';
|
|
@@ -67,4 +72,5 @@ export { default as VideoPlayer } from './components/VideoPlayer/VideoPlayer.jsx
|
|
|
67
72
|
export { default as Watermark } from './components/Watermark/Watermark.jsx';
|
|
68
73
|
export * from './utils/theme';
|
|
69
74
|
export { ThemeProvider, useTheme } from './ThemeReact.tsx';
|
|
75
|
+
export type { ThemeContextValue, ThemeProviderProps } from './ThemeReact.tsx';
|
|
70
76
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,oBAAoB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
|