@x-plat/design-system 0.1.2 → 0.1.3
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/components/Accordion/index.cjs +131 -0
- package/dist/components/Accordion/index.css +51 -0
- package/dist/components/Accordion/index.d.cts +16 -0
- package/dist/components/Accordion/index.d.ts +16 -0
- package/dist/components/Accordion/index.js +94 -0
- package/dist/components/Alert/index.cjs +72 -0
- package/dist/components/Alert/index.css +60 -0
- package/dist/components/Alert/index.d.cts +12 -0
- package/dist/components/Alert/index.d.ts +12 -0
- package/dist/components/Alert/index.js +45 -0
- package/dist/components/Avatar/index.cjs +196 -0
- package/dist/components/Avatar/index.css +321 -0
- package/dist/components/Avatar/index.d.cts +133 -0
- package/dist/components/Avatar/index.d.ts +133 -0
- package/dist/components/Avatar/index.js +169 -0
- package/dist/components/Badge/index.cjs +200 -0
- package/dist/components/Badge/index.css +307 -0
- package/dist/components/Badge/index.d.cts +133 -0
- package/dist/components/Badge/index.d.ts +133 -0
- package/dist/components/Badge/index.js +173 -0
- package/dist/components/Breadcrumb/index.cjs +60 -0
- package/dist/components/Breadcrumb/index.css +37 -0
- package/dist/components/Breadcrumb/index.d.cts +15 -0
- package/dist/components/Breadcrumb/index.d.ts +15 -0
- package/dist/components/Breadcrumb/index.js +33 -0
- package/dist/components/Chart/index.cjs +6 -3
- package/dist/components/Chart/index.js +6 -3
- package/dist/components/DatePicker/index.cjs +2 -0
- package/dist/components/DatePicker/index.js +2 -0
- package/dist/components/Divider/index.cjs +61 -0
- package/dist/components/Divider/index.css +15 -0
- package/dist/components/Divider/index.d.cts +10 -0
- package/dist/components/Divider/index.d.ts +10 -0
- package/dist/components/Divider/index.js +34 -0
- package/dist/components/ImageSelector/index.cjs +9 -3
- package/dist/components/ImageSelector/index.js +9 -3
- package/dist/components/Modal/index.cjs +2 -0
- package/dist/components/Modal/index.js +2 -0
- package/dist/components/Pagination/index.cjs +261 -0
- package/dist/components/Pagination/index.css +325 -0
- package/dist/components/Pagination/index.d.cts +133 -0
- package/dist/components/Pagination/index.d.ts +133 -0
- package/dist/components/Pagination/index.js +234 -0
- package/dist/components/Progress/index.cjs +218 -0
- package/dist/components/Progress/index.css +313 -0
- package/dist/components/Progress/index.d.cts +133 -0
- package/dist/components/Progress/index.d.ts +133 -0
- package/dist/components/Progress/index.js +191 -0
- package/dist/components/Skeleton/index.cjs +65 -0
- package/dist/components/Skeleton/index.css +27 -0
- package/dist/components/Skeleton/index.d.cts +12 -0
- package/dist/components/Skeleton/index.d.ts +12 -0
- package/dist/components/Skeleton/index.js +38 -0
- package/dist/components/Spinner/index.cjs +222 -0
- package/dist/components/Spinner/index.css +317 -0
- package/dist/components/Spinner/index.d.cts +130 -0
- package/dist/components/Spinner/index.d.ts +130 -0
- package/dist/components/Spinner/index.js +195 -0
- package/dist/components/index.cjs +1014 -592
- package/dist/components/index.css +4290 -2507
- package/dist/components/index.d.cts +12 -2
- package/dist/components/index.d.ts +12 -2
- package/dist/components/index.js +1003 -591
- package/dist/index.cjs +2010 -1588
- package/dist/index.css +4289 -2506
- package/dist/index.d.cts +11 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +1999 -1587
- package/package.json +1 -1
|
@@ -1,23 +1,33 @@
|
|
|
1
|
+
export { Accordion } from './Accordion/index.cjs';
|
|
2
|
+
export { Alert } from './Alert/index.cjs';
|
|
3
|
+
export { Avatar } from './Avatar/index.cjs';
|
|
4
|
+
export { Badge } from './Badge/index.cjs';
|
|
5
|
+
export { Breadcrumb } from './Breadcrumb/index.cjs';
|
|
1
6
|
export { Button } from './Button/index.cjs';
|
|
2
7
|
export { Card } from './Card/index.cjs';
|
|
3
8
|
export { Chart } from './Chart/index.cjs';
|
|
4
9
|
export { CheckBox } from './CheckBox/index.cjs';
|
|
5
10
|
export { Chip } from './Chip/index.cjs';
|
|
6
11
|
export { InputDatePicker, PopupDatePicker, RangeDatePicker, SingleDatePicker } from './DatePicker/index.cjs';
|
|
12
|
+
export { Divider } from './Divider/index.cjs';
|
|
7
13
|
export { Select, SelectChangeHandler, SelectItem, SelectItemProps } from './Select/index.cjs';
|
|
8
14
|
export { HtmlTypewriter } from './HtmlTypeWriter/index.cjs';
|
|
9
15
|
export { ImageSelector } from './ImageSelector/index.cjs';
|
|
10
16
|
export { Input, PasswordInput } from './Input/index.cjs';
|
|
11
17
|
export { Modal } from './Modal/index.cjs';
|
|
18
|
+
export { Pagination } from './Pagination/index.cjs';
|
|
12
19
|
export { PopOver } from './PopOver/index.cjs';
|
|
20
|
+
export { Progress } from './Progress/index.cjs';
|
|
13
21
|
export { Radio, RadioGroup } from './Radio/index.cjs';
|
|
22
|
+
export { Skeleton } from './Skeleton/index.cjs';
|
|
23
|
+
export { Spinner } from './Spinner/index.cjs';
|
|
14
24
|
export { Switch } from './Switch/index.cjs';
|
|
15
25
|
export { Tab } from './Tab/index.cjs';
|
|
16
26
|
export { Table, TableBody, TableCell, TableHead, TableRow } from './Table/index.cjs';
|
|
17
27
|
export { TextArea } from './TextArea/index.cjs';
|
|
18
28
|
export { Tooltip } from './Tooltip/index.cjs';
|
|
19
29
|
export { Video, VideoProps } from './Video/index.cjs';
|
|
20
|
-
import 'react/jsx-runtime';
|
|
21
30
|
import 'react';
|
|
22
|
-
import '
|
|
31
|
+
import 'react/jsx-runtime';
|
|
23
32
|
import '../colors-BG91q_uV.cjs';
|
|
33
|
+
import '../attributes-DJIWir_0.cjs';
|
|
@@ -1,23 +1,33 @@
|
|
|
1
|
+
export { Accordion } from './Accordion/index.js';
|
|
2
|
+
export { Alert } from './Alert/index.js';
|
|
3
|
+
export { Avatar } from './Avatar/index.js';
|
|
4
|
+
export { Badge } from './Badge/index.js';
|
|
5
|
+
export { Breadcrumb } from './Breadcrumb/index.js';
|
|
1
6
|
export { Button } from './Button/index.js';
|
|
2
7
|
export { Card } from './Card/index.js';
|
|
3
8
|
export { Chart } from './Chart/index.js';
|
|
4
9
|
export { CheckBox } from './CheckBox/index.js';
|
|
5
10
|
export { Chip } from './Chip/index.js';
|
|
6
11
|
export { InputDatePicker, PopupDatePicker, RangeDatePicker, SingleDatePicker } from './DatePicker/index.js';
|
|
12
|
+
export { Divider } from './Divider/index.js';
|
|
7
13
|
export { Select, SelectChangeHandler, SelectItem, SelectItemProps } from './Select/index.js';
|
|
8
14
|
export { HtmlTypewriter } from './HtmlTypeWriter/index.js';
|
|
9
15
|
export { ImageSelector } from './ImageSelector/index.js';
|
|
10
16
|
export { Input, PasswordInput } from './Input/index.js';
|
|
11
17
|
export { Modal } from './Modal/index.js';
|
|
18
|
+
export { Pagination } from './Pagination/index.js';
|
|
12
19
|
export { PopOver } from './PopOver/index.js';
|
|
20
|
+
export { Progress } from './Progress/index.js';
|
|
13
21
|
export { Radio, RadioGroup } from './Radio/index.js';
|
|
22
|
+
export { Skeleton } from './Skeleton/index.js';
|
|
23
|
+
export { Spinner } from './Spinner/index.js';
|
|
14
24
|
export { Switch } from './Switch/index.js';
|
|
15
25
|
export { Tab } from './Tab/index.js';
|
|
16
26
|
export { Table, TableBody, TableCell, TableHead, TableRow } from './Table/index.js';
|
|
17
27
|
export { TextArea } from './TextArea/index.js';
|
|
18
28
|
export { Tooltip } from './Tooltip/index.js';
|
|
19
29
|
export { Video, VideoProps } from './Video/index.js';
|
|
20
|
-
import 'react/jsx-runtime';
|
|
21
30
|
import 'react';
|
|
22
|
-
import '
|
|
31
|
+
import 'react/jsx-runtime';
|
|
23
32
|
import '../colors-BG91q_uV.js';
|
|
33
|
+
import '../attributes-DJIWir_0.js';
|