react-magma-dom 4.10.0-next.8 → 4.10.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/components/AIButton/StyledAIButton.d.ts +13 -0
- package/dist/components/AIButton/StyledAIButtonTemplate.d.ts +15 -0
- package/dist/components/AIButton/index.d.ts +124 -0
- package/dist/components/AIButton/styles.d.ts +14 -0
- package/dist/components/Combobox/index.d.ts +1 -14
- package/dist/components/DatePicker/CalendarContext.d.ts +4 -0
- package/dist/components/DatePicker/CalendarHeader.d.ts +1 -1
- package/dist/components/DatePicker/CalendarMonth.d.ts +1 -0
- package/dist/components/DatePicker/MonthPicker.d.ts +6 -0
- package/dist/components/DatePicker/StyledSelect.d.ts +9 -0
- package/dist/components/DatePicker/YearPicker.d.ts +7 -0
- package/dist/components/DatePicker/index.d.ts +24 -0
- package/dist/components/DatePicker/utils.d.ts +6 -0
- package/dist/components/DateTimePicker/index.d.ts +99 -0
- package/dist/components/Drawer/Drawer.d.ts +10 -0
- package/dist/components/IconButton/index.d.ts +1 -0
- package/dist/components/Modal/Modal.d.ts +11 -1
- package/dist/components/Popover/Popover.d.ts +15 -1
- package/dist/components/Select/index.d.ts +0 -13
- package/dist/components/Table/Table.d.ts +26 -0
- package/dist/components/Table/TableHeaderCell.d.ts +9 -1
- package/dist/components/Table/TablePagination.d.ts +5 -0
- package/dist/components/Table/TableRow.d.ts +1 -1
- package/dist/components/Tabs/CustomTab.d.ts +7 -0
- package/dist/components/Tabs/Tab.d.ts +6 -0
- package/dist/components/Toggle/index.d.ts +2 -2
- package/dist/components/Transition/Transition.d.ts +5 -0
- package/dist/components/TreeView/TreeViewContext.d.ts +5 -0
- package/dist/components/TreeView/useTreeItem.d.ts +27 -18
- package/dist/components/TreeView/useTreeView.d.ts +55 -39
- package/dist/esm/index.js +16719 -15340
- package/dist/esm/index.js.map +1 -1
- package/dist/hooks/useDeviceDetect.d.ts +1 -1
- package/dist/hooks/useMagmaFloating.d.ts +24 -0
- package/dist/i18n/interface.d.ts +12 -0
- package/dist/index.d.ts +6 -2
- package/dist/properties.json +2958 -1395
- package/dist/react-magma-dom.cjs.development.js +13953 -12589
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/dist/theme/ThemeContext.d.ts +14 -0
- package/dist/theme/components/drawerTransition.d.ts +2 -0
- package/dist/theme/magma.d.ts +28 -0
- package/package.json +3 -3
|
@@ -10,6 +10,20 @@ export declare const ThemeContext: React.Context<{
|
|
|
10
10
|
focusInverse: string;
|
|
11
11
|
border: string;
|
|
12
12
|
borderInverse: string;
|
|
13
|
+
aiColors: {
|
|
14
|
+
variantA: {
|
|
15
|
+
right: string;
|
|
16
|
+
left: string;
|
|
17
|
+
hover: string;
|
|
18
|
+
pressed: string;
|
|
19
|
+
};
|
|
20
|
+
variantB: {
|
|
21
|
+
right: string;
|
|
22
|
+
left: string;
|
|
23
|
+
hover: string;
|
|
24
|
+
pressed: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
13
27
|
success100: string;
|
|
14
28
|
success200: string;
|
|
15
29
|
success300: string;
|
package/dist/theme/magma.d.ts
CHANGED
|
@@ -62,6 +62,20 @@ export interface Colors {
|
|
|
62
62
|
focusInverse: string;
|
|
63
63
|
border: string;
|
|
64
64
|
borderInverse: string;
|
|
65
|
+
aiColors: {
|
|
66
|
+
variantA: {
|
|
67
|
+
right: string;
|
|
68
|
+
left: string;
|
|
69
|
+
hover: string;
|
|
70
|
+
pressed: string;
|
|
71
|
+
};
|
|
72
|
+
variantB: {
|
|
73
|
+
right: string;
|
|
74
|
+
left: string;
|
|
75
|
+
hover: string;
|
|
76
|
+
pressed: string;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
65
79
|
}
|
|
66
80
|
export interface Breakpoints {
|
|
67
81
|
xs: number;
|
|
@@ -291,6 +305,20 @@ export declare const magma: {
|
|
|
291
305
|
focusInverse: string;
|
|
292
306
|
border: string;
|
|
293
307
|
borderInverse: string;
|
|
308
|
+
aiColors: {
|
|
309
|
+
variantA: {
|
|
310
|
+
right: string;
|
|
311
|
+
left: string;
|
|
312
|
+
hover: string;
|
|
313
|
+
pressed: string;
|
|
314
|
+
};
|
|
315
|
+
variantB: {
|
|
316
|
+
right: string;
|
|
317
|
+
left: string;
|
|
318
|
+
hover: string;
|
|
319
|
+
pressed: string;
|
|
320
|
+
};
|
|
321
|
+
};
|
|
294
322
|
success100: string;
|
|
295
323
|
success200: string;
|
|
296
324
|
success300: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-magma-dom",
|
|
3
|
-
"version": "4.10.0
|
|
3
|
+
"version": "4.10.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"homepage": "https://react-magma.cengage.com",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"mkdirp": "^1.0.4",
|
|
47
47
|
"react": "^17.0.2",
|
|
48
48
|
"react-dom": "^17.0.2",
|
|
49
|
-
"react-magma-icons": "^3.
|
|
49
|
+
"react-magma-icons": "^3.2.0",
|
|
50
50
|
"uuid": "^11.1.0"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"framer-motion": "^4.1.11",
|
|
58
58
|
"react": "^17.0.2",
|
|
59
59
|
"react-dom": "^17.0.2",
|
|
60
|
-
"react-magma-icons": "^3.
|
|
60
|
+
"react-magma-icons": "^3.2.0",
|
|
61
61
|
"uuid": "^8.3.0 || ^9.0.0 || ^10.0.0 || ^11.0.0"
|
|
62
62
|
}
|
|
63
63
|
}
|