@x-plat/design-system 0.5.42 → 0.5.44
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/Dropdown/index.cjs +22 -22
- package/dist/components/Dropdown/index.js +22 -22
- package/dist/components/PopOver/index.cjs +22 -22
- package/dist/components/PopOver/index.js +22 -22
- package/dist/components/Select/index.cjs +22 -22
- package/dist/components/Select/index.js +22 -22
- package/dist/components/Video/index.cjs +201 -201
- package/dist/components/Video/index.js +243 -243
- package/dist/components/index.cjs +278 -278
- package/dist/components/index.css +700 -188
- package/dist/components/index.d.cts +2 -2
- package/dist/components/index.d.ts +2 -2
- package/dist/components/index.js +278 -278
- package/dist/index.cjs +278 -278
- package/dist/index.css +700 -188
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +278 -278
- package/dist/layout/index.css +520 -8
- package/guidelines/AGENT_PROMPT.md +248 -0
- package/guidelines/Guidelines.md +8 -0
- package/guidelines/composition/layout.md +87 -16
- package/guidelines/setup.md +11 -2
- package/package.json +1 -1
|
@@ -2,13 +2,13 @@ export { Accordion } from './Accordion/index.cjs';
|
|
|
2
2
|
export { Alert } from './Alert/index.cjs';
|
|
3
3
|
export { Avatar } from './Avatar/index.cjs';
|
|
4
4
|
export { Badge } from './Badge/index.cjs';
|
|
5
|
+
export { Box } from './Box/index.cjs';
|
|
5
6
|
export { Breadcrumb } from './Breadcrumb/index.cjs';
|
|
6
7
|
export { Button } from './Button/index.cjs';
|
|
7
8
|
export { Calendar, CalendarDay, CalendarEvent, CalendarProps, isInRange, isSameDay, useCalendar } from './Calendar/index.cjs';
|
|
8
|
-
export { ChatInput } from './ChatInput/index.cjs';
|
|
9
|
-
export { Box } from './Box/index.cjs';
|
|
10
9
|
export { CardTab } from './CardTab/index.cjs';
|
|
11
10
|
export { Chart } from './Chart/index.cjs';
|
|
11
|
+
export { ChatInput } from './ChatInput/index.cjs';
|
|
12
12
|
export { CheckBox } from './CheckBox/index.cjs';
|
|
13
13
|
export { Chip } from './Chip/index.cjs';
|
|
14
14
|
export { InputDatePicker, PopupDatePicker, RangeDatePicker, SingleDatePicker } from './DatePicker/index.cjs';
|
|
@@ -2,13 +2,13 @@ export { Accordion } from './Accordion/index.js';
|
|
|
2
2
|
export { Alert } from './Alert/index.js';
|
|
3
3
|
export { Avatar } from './Avatar/index.js';
|
|
4
4
|
export { Badge } from './Badge/index.js';
|
|
5
|
+
export { Box } from './Box/index.js';
|
|
5
6
|
export { Breadcrumb } from './Breadcrumb/index.js';
|
|
6
7
|
export { Button } from './Button/index.js';
|
|
7
8
|
export { Calendar, CalendarDay, CalendarEvent, CalendarProps, isInRange, isSameDay, useCalendar } from './Calendar/index.js';
|
|
8
|
-
export { ChatInput } from './ChatInput/index.js';
|
|
9
|
-
export { Box } from './Box/index.js';
|
|
10
9
|
export { CardTab } from './CardTab/index.js';
|
|
11
10
|
export { Chart } from './Chart/index.js';
|
|
11
|
+
export { ChatInput } from './ChatInput/index.js';
|
|
12
12
|
export { CheckBox } from './CheckBox/index.js';
|
|
13
13
|
export { Chip } from './Chip/index.js';
|
|
14
14
|
export { InputDatePicker, PopupDatePicker, RangeDatePicker, SingleDatePicker } from './DatePicker/index.js';
|