@orfium/ictinus 5.43.2 → 5.43.4
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/.turbo/turbo-build.log +20 -20
- package/CHANGELOG.md +12 -0
- package/dist/components/IconButton/IconButton.js +16 -17
- package/dist/components/Modal/Modal.js +27 -27
- package/dist/components/Table/components/TPagination/TPagination.js +26 -27
- package/dist/index.js +237 -236
- package/dist/package.json.d.ts +1 -1
- package/dist/package.json.js +1 -1
- package/dist/src/components/Box/Box.d.ts +5 -0
- package/dist/src/components/Icon/Icon.d.ts +5 -0
- package/dist/src/components/IconButton/IconButton.d.ts +9 -4
- package/dist/src/components/Menu/Menu.d.ts +5 -0
- package/dist/src/components/Table/Table.d.ts +5 -0
- package/dist/src/components/Typography/Typography.d.ts +5 -0
- package/dist/src/data-table/DataTable.test.d.ts +1 -0
- package/dist/src/data-table/DataTableBulkActions.d.ts +3 -0
- package/dist/src/data-table/DataTableCounter.d.ts +7 -0
- package/dist/src/data-table/index.d.ts +2 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/vanilla/index.d.ts +12 -2
- package/dist/vanilla/index.js +2 -0
- package/dist/vanilla/package.json.js +1 -1
- package/dist/vanilla/src/components/IconButton/IconButton.js +15 -6
- package/dist/vanilla/src/data-table/DataTableBulkActions.js +13 -0
- package/dist/vanilla/src/data-table/DataTableCounter.js +25 -0
- package/dist/vanilla/src/data-table/DataTableEditColumns.js +1 -1
- package/dist/vanilla/src/data-table/DataTableHeaderCell.js +15 -13
- package/eslint.config.mjs +1 -1
- package/package.json +1 -1
- package/src/components/Box/Box.tsx +5 -0
- package/src/components/Icon/Icon.tsx +5 -0
- package/src/components/IconButton/IconButton.tsx +23 -9
- package/src/components/Menu/Menu.tsx +5 -0
- package/src/components/Modal/Modal.tsx +1 -2
- package/src/components/Table/Table.tsx +5 -0
- package/src/components/Table/components/TPagination/TPagination.tsx +0 -5
- package/src/components/Typography/Typography.tsx +5 -0
- package/src/data-table/DataTable.test.tsx +425 -0
- package/src/data-table/DataTableBulkActions.tsx +17 -0
- package/src/data-table/DataTableCounter.tsx +37 -0
- package/src/data-table/DataTableEditColumns.tsx +3 -1
- package/src/data-table/DataTableHeaderCell.tsx +96 -90
- package/src/data-table/index.ts +2 -0
- package/src/index.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -1,288 +1,289 @@
|
|
|
1
1
|
import { rem as s } from "polished";
|
|
2
2
|
import { queriesKeys as p, queriesSizes as m, useBreakpoints as u } from "./hooks/useBreakpoints.js";
|
|
3
3
|
import * as e from "@orfium/tokens";
|
|
4
|
-
import { backgroundPickerBasedOnType as d, calculateActualColorFromComponentProp as i, colorPickerBasedOnType as n, convertRemToPixels as T, dimensionVariables as c, fillPickerBasedOnType as C, getColorFromType as y, globalColors as S, parseCompositionToken as g, semanticVariablesBoxShadow as b, semanticVariablesColors as h, semanticVariablesTypography as B } from "@orfium/tokens";
|
|
4
|
+
import { backgroundPickerBasedOnType as d, calculateActualColorFromComponentProp as i, colorPickerBasedOnType as n, convertRemToPixels as T, dimensionVariables as c, fillPickerBasedOnType as C, getColorFromType as y, globalColors as S, parseCompositionToken as g, semanticVariablesBoxShadow as b, semanticVariablesColors as h, semanticVariablesTypography as B, vars as I } from "@orfium/tokens";
|
|
5
5
|
import { default as E } from "./components/utils/ClickAwayListener/ClickAwayListener.js";
|
|
6
6
|
import * as o from "./theme/overrides.js";
|
|
7
7
|
import { useCheck as P } from "./hooks/useCheck.js";
|
|
8
|
-
import { default as
|
|
9
|
-
import { default as
|
|
10
|
-
import { default as
|
|
11
|
-
import { default as
|
|
12
|
-
import { default as
|
|
13
|
-
import { default as
|
|
14
|
-
import { KEYBOARD_EVENT_KEYS as
|
|
15
|
-
import { useLoading as
|
|
16
|
-
import { useOverlayStack as
|
|
17
|
-
import { default as
|
|
18
|
-
import { default as
|
|
19
|
-
import { ThemeSwitchProvider as
|
|
20
|
-
import { default as
|
|
21
|
-
import { TypeColorToColorMatchProvider as
|
|
22
|
-
import { default as
|
|
23
|
-
import { PropsValidationError as
|
|
24
|
-
import { errorHandler as
|
|
25
|
-
import { centerAbsoluteVertical as
|
|
8
|
+
import { default as D } from "./hooks/useCombinedRefs.js";
|
|
9
|
+
import { default as V } from "./hooks/useElementSize.js";
|
|
10
|
+
import { default as A } from "./hooks/useEscape.js";
|
|
11
|
+
import { default as R } from "./hooks/useEventListener.js";
|
|
12
|
+
import { default as O } from "./hooks/useFieldUtils.js";
|
|
13
|
+
import { default as H } from "./hooks/useIsoMorphicLayoutEffect.js";
|
|
14
|
+
import { KEYBOARD_EVENT_KEYS as K, default as q } from "./hooks/useKeyboardEvents.js";
|
|
15
|
+
import { useLoading as G } from "./hooks/useLoading.js";
|
|
16
|
+
import { useOverlayStack as j } from "./hooks/useOverlayStack.js";
|
|
17
|
+
import { default as X } from "./hooks/usePagination.js";
|
|
18
|
+
import { default as Q } from "./hooks/useTheme.js";
|
|
19
|
+
import { ThemeSwitchProvider as $, useThemeSwitch as ee } from "./hooks/useThemeSwitch.js";
|
|
20
|
+
import { default as te } from "./hooks/useToggle.js";
|
|
21
|
+
import { TypeColorToColorMatchProvider as ae, useTypeColorToColorMatch as fe } from "./hooks/useTypeColorToColorMatch.js";
|
|
22
|
+
import { default as le } from "./utils/date.js";
|
|
23
|
+
import { PropsValidationError as me, ValidationError as ue } from "./utils/errors.js";
|
|
24
|
+
import { errorHandler as de, generateTestDataId as ie, generateUniqueID as ne, generateUniqueKey as Te, getLocaleFormat as ce, isComponentFunctionType as Ce } from "./utils/helpers.js";
|
|
25
|
+
import { centerAbsoluteVertical as Se, flex as ge, flexCenter as be, flexCenterVertical as he, grid as Be, lineEllipsis as Ie, plainTextButton as ve, transition as Ee, well as Le } from "./theme/functions.js";
|
|
26
26
|
import { default as ke } from "./theme/index.js";
|
|
27
|
-
import { default as
|
|
28
|
-
import { default as
|
|
29
|
-
import { default as
|
|
30
|
-
import { default as
|
|
31
|
-
import { default as
|
|
32
|
-
import { default as
|
|
33
|
-
import { default as
|
|
34
|
-
import { default as
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
27
|
+
import { default as Fe } from "./components/Avatar/Avatar.js";
|
|
28
|
+
import { default as we } from "./components/Avatar/AvatarStack/AvatarStack.js";
|
|
29
|
+
import { default as Ne } from "./components/Box/Box.js";
|
|
30
|
+
import { default as Me } from "./components/Breadcrumb/Breadcrumb.js";
|
|
31
|
+
import { default as _e } from "./components/Button/Button.js";
|
|
32
|
+
import { default as Ue } from "./components/ButtonBase/ButtonBase.js";
|
|
33
|
+
import { default as qe } from "./components/Card/Card.js";
|
|
34
|
+
import { default as Ge } from "./components/DropdownButton/DropdownButton.js";
|
|
35
|
+
import { default as je } from "./components/Chart/BarChart/BarChart.js";
|
|
36
|
+
import { default as Xe } from "./components/Chart/DonutChart/DonutChart.js";
|
|
37
|
+
import { default as Qe } from "./components/Chart/LineChart/LineChart.js";
|
|
38
|
+
import { default as $e } from "./components/Controls/CheckBox/CheckBox.js";
|
|
39
|
+
import { default as oo } from "./components/ExpandCollapse/ExpandCollapse.js";
|
|
40
|
+
import { default as ro } from "./components/Icon/Icon.js";
|
|
41
|
+
import { default as fo } from "./components/IconButton/IconButton.js";
|
|
42
|
+
import { default as lo } from "./components/Label/Label.js";
|
|
43
|
+
import { default as mo } from "./components/Link/Link.js";
|
|
44
|
+
import { default as xo } from "./components/List/List.js";
|
|
45
|
+
import { default as no } from "./components/Menu/Menu.js";
|
|
46
|
+
import { default as co } from "./components/Modal/Modal.js";
|
|
47
|
+
import { default as yo } from "./components/Modal/ModalContent/ModalContent.js";
|
|
48
|
+
import { default as go } from "./components/MultiTextFieldBase/MultiTextFieldBase.js";
|
|
49
|
+
import { default as ho } from "./components/Notification/Banner/Banner.js";
|
|
50
|
+
import { default as Io } from "./components/Notification/InlineNotification/InlineNotification.js";
|
|
51
51
|
import { default as Eo } from "./components/Notification/NotificationsContainer/NotificationsContainer.js";
|
|
52
52
|
import { default as Po } from "./components/Notification/NotificationVisual/NotificationVisual.js";
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import { default as
|
|
62
|
-
import { MAX as
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
53
|
+
import { default as Do } from "./components/Notification/Snackbar/Snackbar.js";
|
|
54
|
+
import { default as Vo } from "./components/Controls/Radio/Radio.js";
|
|
55
|
+
import { default as Ao } from "./components/Controls/Radio/components/RadioGroup/RadioGroup.js";
|
|
56
|
+
import { default as Ro } from "./components/Controls/Switch/Switch.js";
|
|
57
|
+
import { default as Oo } from "./components/Drawer/Drawer.js";
|
|
58
|
+
import { default as Ho } from "./components/Filter/Filter.js";
|
|
59
|
+
import { default as Ko } from "./components/NumberField/NumberField.js";
|
|
60
|
+
import { default as zo } from "./components/Pagination/Pagination.js";
|
|
61
|
+
import { default as Yo } from "./components/ProgressIndicator/ProgressIndicator.js";
|
|
62
|
+
import { MAX as Wo, MIN as Xo, STEP_WITH_INCREMENTS as Jo, default as Qo } from "./components/Slider/Slider.js";
|
|
63
|
+
import { default as $o } from "./components/Tabs/Tabs.js";
|
|
64
|
+
import { default as ot } from "./components/TabStepper/TabStepper.js";
|
|
65
|
+
import { default as rt } from "./components/Tag/Tag.js";
|
|
66
|
+
import { default as ft } from "./components/ThemeProvider/ThemeProvider.js";
|
|
67
|
+
import { default as lt, isNotificationTypes as pt } from "./components/ToastV4/ToastV4.js";
|
|
68
|
+
import { default as ut } from "./components/Tooltip/Tooltip.js";
|
|
69
|
+
import { default as dt } from "./components/TopAppBar/TopAppBar.js";
|
|
70
|
+
import { default as nt } from "./components/TruncatedContent/TruncatedContent.js";
|
|
71
|
+
import { default as ct, detectComponentBasedOnType as Ct } from "./components/Typography/Typography.js";
|
|
72
|
+
import { default as St } from "./components/Icon/assets/iconSelector.js";
|
|
73
|
+
import { default as bt } from "./components/List/components/ListItemText/ListItemText.js";
|
|
74
|
+
import { default as Bt } from "./components/List/components/ListItemAction/ListItemAction.js";
|
|
75
|
+
import { default as vt } from "./components/List/ListItem.js";
|
|
76
76
|
import { default as Lt } from "./components/List/ListSection.js";
|
|
77
77
|
import { default as kt } from "./components/Menu/MenuItemDivider.js";
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { Broadcast as
|
|
96
|
-
import { InlineAlert as
|
|
97
|
-
import { ToastContainer as
|
|
98
|
-
import { default as
|
|
99
|
-
import { default as
|
|
100
|
-
import { default as
|
|
101
|
-
import { default as
|
|
78
|
+
import { default as Ft } from "./components/Drawer/components/DrawerHeader/DrawerHeader.js";
|
|
79
|
+
import { default as wt } from "./components/Drawer/components/DrawerContent/DrawerContent.js";
|
|
80
|
+
import { default as Nt } from "./components/Drawer/components/DrawerFooter/DrawerFooter.js";
|
|
81
|
+
import { default as Mt } from "./components/Table/components/TBody/TBody.js";
|
|
82
|
+
import { default as _t } from "./components/Table/components/THead/THead.js";
|
|
83
|
+
import { default as Ut } from "./components/Table/components/TH/TH.js";
|
|
84
|
+
import { default as qt } from "./components/Table/components/TR/TR.js";
|
|
85
|
+
import { default as Gt } from "./components/Table/components/TD/TD.js";
|
|
86
|
+
import { default as jt } from "./components/Table/components/TPagination/TPagination.js";
|
|
87
|
+
import { default as Xt } from "./components/Table/hooks/useTable.js";
|
|
88
|
+
import { default as Qt } from "./components/Tabs/components/Tab/Tab.js";
|
|
89
|
+
import { default as $t } from "./components/Tabs/components/TabList/TabList.js";
|
|
90
|
+
import { default as or } from "./components/Tabs/components/TabsContainer/TabsContainer.js";
|
|
91
|
+
import { default as rr } from "./components/Tabs/components/TabPanel/TabPanel.js";
|
|
92
|
+
import { default as fr } from "./components/TabStepper/components/TabStep/TabStep.js";
|
|
93
|
+
import { default as lr } from "./components/TabStepper/components/TabStepList/TabStepList.js";
|
|
94
|
+
import { default as mr } from "./components/DatePicker/DatePicker.js";
|
|
95
|
+
import { Broadcast as xr } from "./components/Broadcast/Broadcast.js";
|
|
96
|
+
import { InlineAlert as ir } from "./components/InlineAlert/InlineAlert.js";
|
|
97
|
+
import { ToastContainer as Tr, toast as cr } from "./components/Toast/Toast.js";
|
|
98
|
+
import { default as yr } from "./components/Search/Search.js";
|
|
99
|
+
import { default as gr, emptyValue as br } from "./components/Select/Select.js";
|
|
100
|
+
import { default as Br } from "./components/Select/StatefulSelect.js";
|
|
101
|
+
import { default as vr } from "./components/Table/Table.js";
|
|
102
102
|
import { default as Lr } from "./components/TableV4/TableV4.js";
|
|
103
103
|
import { default as kr } from "./components/TextArea/TextArea.js";
|
|
104
|
-
import { default as
|
|
105
|
-
import { default as
|
|
106
|
-
import { version as
|
|
107
|
-
import { CALENDAR_DEFAULT_OPTIONS as
|
|
108
|
-
import { iconsSet as
|
|
109
|
-
import { RadioContext as
|
|
110
|
-
import { DrawerContext as
|
|
111
|
-
import { default as
|
|
112
|
-
import { default as
|
|
113
|
-
import { functionalUpdate as
|
|
114
|
-
import { default as
|
|
104
|
+
import { default as Fr } from "./components/TextField/TextField.js";
|
|
105
|
+
import { default as wr } from "./components/TextInputBase/TextInputBase.js";
|
|
106
|
+
import { version as Nr } from "./package.json.js";
|
|
107
|
+
import { CALENDAR_DEFAULT_OPTIONS as Mr } from "./components/DatePicker/constants.js";
|
|
108
|
+
import { iconsSet as _r } from "./components/Icon/constants.js";
|
|
109
|
+
import { RadioContext as Ur, useRadioGroupContent as Kr } from "./components/Controls/Radio/components/RadioGroup/RadioGroupContext.js";
|
|
110
|
+
import { DrawerContext as zr, DrawerContextProvider as Gr, setHasFixedLayout as Yr, setOnClose as jr, toggleIsScrollbarOnBottom as Wr, toggleIsScrollbarOnTop as Xr, useDrawerContext as Jr } from "./components/Drawer/DrawerContext.js";
|
|
111
|
+
import { default as Zr } from "./components/Filter/StatefulFilter.js";
|
|
112
|
+
import { default as ea } from "./components/Search/StatefulSearch.js";
|
|
113
|
+
import { functionalUpdate as ta } from "@tanstack/react-table";
|
|
114
|
+
import { default as aa } from "./components/Table/components/TTitle/TTitle.js";
|
|
115
115
|
import * as t from "./components/Typography/Typography.config.styles.js";
|
|
116
|
-
import { generateStylesFromTokens as
|
|
116
|
+
import { generateStylesFromTokens as sa } from "./components/Typography/utils.js";
|
|
117
117
|
import * as r from "./layers/layers.css.js";
|
|
118
|
-
import { mapResponsiveValue as
|
|
118
|
+
import { mapResponsiveValue as pa, normalizeResponsiveValue as ma, sprinkles as ua } from "./sprinkles/sprinkles.js";
|
|
119
119
|
export {
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
120
|
+
Fe as Avatar,
|
|
121
|
+
we as AvatarStack,
|
|
122
|
+
ho as Banner,
|
|
123
|
+
je as BarChart,
|
|
124
|
+
Ne as Box,
|
|
125
|
+
Me as Breadcrumb,
|
|
126
|
+
xr as Broadcast,
|
|
127
|
+
_e as Button,
|
|
128
|
+
Ue as ButtonBase,
|
|
129
|
+
Mr as CALENDAR_DEFAULT_OPTIONS,
|
|
130
|
+
qe as Card,
|
|
131
|
+
$e as CheckBox,
|
|
132
132
|
E as ClickAwayListener,
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
133
|
+
mr as DatePicker,
|
|
134
|
+
Xe as DonutChart,
|
|
135
|
+
Oo as Drawer,
|
|
136
|
+
wt as DrawerContent,
|
|
137
|
+
zr as DrawerContext,
|
|
138
|
+
Gr as DrawerContextProvider,
|
|
139
|
+
Nt as DrawerFooter,
|
|
140
|
+
Ft as DrawerHeader,
|
|
141
|
+
Ge as DropdownButton,
|
|
142
|
+
oo as ExpandCollapse,
|
|
143
|
+
Ho as Filter,
|
|
144
|
+
ro as Icon,
|
|
145
|
+
fo as IconButton,
|
|
146
|
+
ir as InlineAlert,
|
|
147
|
+
Io as InlineNotification,
|
|
148
|
+
K as KEYBOARD_EVENT_KEYS,
|
|
149
|
+
lo as Label,
|
|
150
|
+
Qe as LineChart,
|
|
151
|
+
mo as Link,
|
|
152
|
+
xo as List,
|
|
153
|
+
vt as ListItem,
|
|
154
|
+
Bt as ListItemAction,
|
|
155
|
+
bt as ListItemText,
|
|
156
156
|
Lt as ListSection,
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
157
|
+
Wo as MAX,
|
|
158
|
+
Xo as MIN,
|
|
159
|
+
no as Menu,
|
|
160
160
|
kt as MenuItemDivider,
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
161
|
+
co as Modal,
|
|
162
|
+
yo as ModalContent,
|
|
163
|
+
go as MultiTextFieldBase,
|
|
164
164
|
Po as NotificationVisual,
|
|
165
165
|
Eo as NotificationsContainer,
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
166
|
+
Ko as NumberField,
|
|
167
|
+
zo as Pagination,
|
|
168
|
+
Yo as ProgressIndicator,
|
|
169
|
+
me as PropsValidationError,
|
|
170
|
+
Vo as Radio,
|
|
171
|
+
Ur as RadioContext,
|
|
172
|
+
Ao as RadioGroup,
|
|
173
|
+
Jo as STEP_WITH_INCREMENTS,
|
|
174
|
+
yr as Search,
|
|
175
|
+
gr as Select,
|
|
176
|
+
Qo as Slider,
|
|
177
|
+
Do as Snackbar,
|
|
178
|
+
Zr as StatefulFilter,
|
|
179
|
+
ea as StatefulSearch,
|
|
180
|
+
Br as StatefulSelect,
|
|
181
|
+
Ro as Switch,
|
|
182
|
+
Mt as TBody,
|
|
183
|
+
Gt as TD,
|
|
184
|
+
Ut as TH,
|
|
185
|
+
_t as THead,
|
|
186
|
+
jt as TPagination,
|
|
187
|
+
qt as TR,
|
|
188
|
+
aa as TTitle,
|
|
189
|
+
Qt as Tab,
|
|
190
|
+
$t as TabList,
|
|
191
|
+
rr as TabPanel,
|
|
192
|
+
fr as TabStep,
|
|
193
|
+
lr as TabStepList,
|
|
194
|
+
ot as TabStepper,
|
|
195
|
+
vr as Table,
|
|
196
196
|
Lr as TableV4,
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
197
|
+
$o as Tabs,
|
|
198
|
+
or as TabsContainer,
|
|
199
|
+
rt as Tag,
|
|
200
200
|
kr as TextArea,
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
201
|
+
Fr as TextField,
|
|
202
|
+
wr as TextInputBase,
|
|
203
|
+
ft as ThemeProvider,
|
|
204
|
+
$ as ThemeSwitchProvider,
|
|
205
|
+
Tr as ToastContainer,
|
|
206
|
+
lt as ToastV4,
|
|
207
|
+
ut as Tooltip,
|
|
208
|
+
dt as TopNavBar,
|
|
209
|
+
nt as TruncatedContent,
|
|
210
|
+
ae as TypeColorToColorMatchProvider,
|
|
211
|
+
ct as Typography,
|
|
212
212
|
t as TypographyConfigStyles,
|
|
213
|
-
|
|
213
|
+
ue as ValidationError,
|
|
214
214
|
d as backgroundPickerBasedOnType,
|
|
215
215
|
i as calculateActualColorFromComponentProp,
|
|
216
|
-
|
|
216
|
+
Se as centerAbsoluteVertical,
|
|
217
217
|
n as colorPickerBasedOnType,
|
|
218
218
|
T as convertRemToPixels,
|
|
219
|
-
|
|
220
|
-
|
|
219
|
+
le as dayjs,
|
|
220
|
+
Ct as detectComponentBasedOnType,
|
|
221
221
|
e as dimension,
|
|
222
222
|
c as dimensionVariables,
|
|
223
223
|
e as elevation,
|
|
224
|
-
|
|
225
|
-
|
|
224
|
+
br as emptyValue,
|
|
225
|
+
de as errorHandler,
|
|
226
226
|
C as fillPickerBasedOnType,
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
227
|
+
ge as flex,
|
|
228
|
+
be as flexCenter,
|
|
229
|
+
he as flexCenterVertical,
|
|
230
|
+
sa as generateStylesFromTokens,
|
|
231
|
+
ie as generateTestDataId,
|
|
232
|
+
ne as generateUniqueID,
|
|
233
|
+
Te as generateUniqueKey,
|
|
234
234
|
y as getColorFromType,
|
|
235
|
-
|
|
235
|
+
ce as getLocaleFormat,
|
|
236
236
|
S as globalColors,
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
237
|
+
Be as grid,
|
|
238
|
+
St as iconSelector,
|
|
239
|
+
_r as iconsSet,
|
|
240
|
+
Ce as isComponentFunctionType,
|
|
241
|
+
pt as isNotificationTypes,
|
|
242
242
|
r as layers,
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
243
|
+
Ie as lineEllipsis,
|
|
244
|
+
pa as mapResponsiveValue,
|
|
245
|
+
ma as normalizeResponsiveValue,
|
|
246
246
|
o as overrides,
|
|
247
247
|
e as palette,
|
|
248
248
|
g as parseCompositionToken,
|
|
249
|
-
|
|
249
|
+
ve as plainTextButton,
|
|
250
250
|
p as queriesKeys,
|
|
251
251
|
m as queriesSizes,
|
|
252
252
|
s as rem,
|
|
253
253
|
b as semanticVariablesBoxShadow,
|
|
254
254
|
h as semanticVariablesColors,
|
|
255
255
|
B as semanticVariablesTypography,
|
|
256
|
-
|
|
257
|
-
|
|
256
|
+
Yr as setHasFixedLayout,
|
|
257
|
+
jr as setOnClose,
|
|
258
258
|
e as spacing,
|
|
259
|
-
|
|
260
|
-
|
|
259
|
+
ua as sprinkles,
|
|
260
|
+
ta as tableFunctionalUpdate,
|
|
261
261
|
ke as themeConfig,
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
262
|
+
cr as toast,
|
|
263
|
+
Wr as toggleIsScrollbarOnBottom,
|
|
264
|
+
Xr as toggleIsScrollbarOnTop,
|
|
265
265
|
Ee as transition,
|
|
266
266
|
e as typography,
|
|
267
267
|
u as useBreakpoints,
|
|
268
268
|
P as useCheck,
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
269
|
+
D as useCombinedRefs,
|
|
270
|
+
Jr as useDrawerContext,
|
|
271
|
+
V as useElementSize,
|
|
272
|
+
A as useEscape,
|
|
273
|
+
R as useEventListener,
|
|
274
|
+
O as useFieldUtils,
|
|
275
|
+
H as useIsoMorphicLayoutEffect,
|
|
276
|
+
q as useKeyboardEvents,
|
|
277
|
+
G as useLoading,
|
|
278
|
+
j as useOverlayStack,
|
|
279
|
+
X as usePagination,
|
|
280
|
+
Kr as useRadioGroupContent,
|
|
281
|
+
Xt as useTable,
|
|
282
|
+
Q as useTheme,
|
|
283
|
+
ee as useThemeSwitch,
|
|
284
|
+
te as useToggle,
|
|
285
|
+
fe as useTypeColorToColorMatch,
|
|
286
|
+
I as vars,
|
|
287
|
+
Nr as version,
|
|
287
288
|
Le as well
|
|
288
289
|
};
|
package/dist/package.json.d.ts
CHANGED
package/dist/package.json.js
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { StyledBoxProps } from './Box.types';
|
|
3
3
|
export type BoxProps = StyledBoxProps & React.HTMLAttributes<HTMLDivElement>;
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated {@link Box} has been deprecated; use vanilla Box instead.
|
|
7
|
+
*
|
|
8
|
+
*/
|
|
4
9
|
declare const Box: React.ForwardRefExoticComponent<StyledBoxProps & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
5
10
|
export default Box;
|
|
@@ -15,5 +15,10 @@ export type IconProps = {
|
|
|
15
15
|
/** Whether the icon has a onHover style. Defaults to true if onClick is provided */
|
|
16
16
|
hasHover?: boolean;
|
|
17
17
|
} & DivProps & TestProps;
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @deprecated {@link Icon} has been deprecated; use vanilla Icon instead.
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
18
23
|
declare const Icon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
19
24
|
export default Icon;
|
|
@@ -2,21 +2,26 @@ import { default as React } from 'react';
|
|
|
2
2
|
import { PrimitiveButtonTypes } from '../Button/Button.types';
|
|
3
3
|
import { ButtonBaseProps } from '../ButtonBase/ButtonBase';
|
|
4
4
|
import { IconProps } from '../../icon';
|
|
5
|
+
import { BoxProps } from '../../vanilla/Box';
|
|
5
6
|
export type IconButtonShape = 'circle' | 'square';
|
|
6
7
|
export type IconButtonProps = Omit<ButtonBaseProps, 'type' | 'isBlock' | 'isLoading' | 'isIconButton'> & {
|
|
7
8
|
/** This property defines the type of the IconButton */
|
|
8
9
|
type?: PrimitiveButtonTypes;
|
|
9
|
-
/** This property defines witch icon to use */
|
|
10
|
-
iconName: IconProps['name'];
|
|
11
10
|
/** This property defines the shape of the IconButton */
|
|
12
11
|
shape?: IconButtonShape;
|
|
12
|
+
/** This property defines witch icon to use */
|
|
13
|
+
iconName: IconProps['name'];
|
|
14
|
+
/** Custom icon color */
|
|
15
|
+
iconColor?: BoxProps['color'];
|
|
13
16
|
};
|
|
14
17
|
declare const IconButton: React.ForwardRefExoticComponent<Omit<ButtonBaseProps, "type" | "isLoading" | "isBlock" | "isIconButton"> & {
|
|
15
18
|
/** This property defines the type of the IconButton */
|
|
16
19
|
type?: PrimitiveButtonTypes;
|
|
17
|
-
/** This property defines witch icon to use */
|
|
18
|
-
iconName: IconProps["name"];
|
|
19
20
|
/** This property defines the shape of the IconButton */
|
|
20
21
|
shape?: IconButtonShape;
|
|
22
|
+
/** This property defines witch icon to use */
|
|
23
|
+
iconName: IconProps["name"];
|
|
24
|
+
/** Custom icon color */
|
|
25
|
+
iconColor?: BoxProps["color"];
|
|
21
26
|
} & React.RefAttributes<HTMLButtonElement>>;
|
|
22
27
|
export default IconButton;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { NoUndefined } from '.';
|
|
2
2
|
import { TableProps } from './types';
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* @deprecated {@link Table} has been deprecated; use DataTable instead.
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
3
8
|
declare const Table: <TData extends NoUndefined<TData>>({ type, rowsConfig, data, columns, rowSize, columnsConfig, sorting, hasStickyHeader, pagination, sx, dataTestPrefixId, }: TableProps<TData>) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
4
9
|
declare const _default: typeof Table;
|
|
5
10
|
export default _default;
|