asma-ui-core 3.41.0 → 3.42.1
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/asma-ui-core.css +1 -1
- package/dist/components/data-display/badge/StyledBadge.js +24 -29
- package/dist/components/data-display/chip/StyledChip.js +60 -45
- package/dist/components/data-display/interactive-chip/StyledInteractiveChip.js +38 -32
- package/dist/components/data-display/tooltip/StyledTooltip.js +33 -50
- package/dist/components/data-display/typography/StyledTypography.js +4 -62
- package/dist/components/feedback/dialog/StyledDialog.js +50 -70
- package/dist/components/feedback/dialog/StyledDialog.module.js +9 -2
- package/dist/components/feedback/dialog/StyledDialogActions.js +16 -16
- package/dist/components/feedback/dialog/StyledDialogActions.module.js +8 -0
- package/dist/components/feedback/dialog/StyledDialogContent.js +14 -17
- package/dist/components/feedback/dialog/StyledDialogContent.module.js +4 -0
- package/dist/components/feedback/dialog/StyledDialogTitle.js +13 -18
- package/dist/components/feedback/dialog/StyledDialogTitle.module.js +4 -0
- package/dist/components/feedback/minimizable-dialog/MinimizableDialog.js +57 -56
- package/dist/components/feedback/snack-bar/StyledAlert.js +14 -72
- package/dist/components/feedback/snack-bar/StyledSnackbar.js +8 -34
- package/dist/components/feedback/snack-bar/components/StyledDefaultSnackbar.js +34 -33
- package/dist/components/inputs/checkbox/StyledCheckbox.js +20 -0
- package/dist/components/inputs/checkbox/base-ui/StyledCheckbox.js +58 -55
- package/dist/components/inputs/checkbox/base-ui/StyledCheckbox.module.js +12 -12
- package/dist/components/inputs/dynamic-select/components/DynamicInteractiveChipGroup.js +1 -1
- package/dist/components/inputs/dynamic-select/components/DynamicSelectAutocomplete.js +1 -1
- package/dist/components/inputs/input-field/StyledInputField.js +81 -104
- package/dist/components/inputs/radio-button/StyledRadio.js +17 -0
- package/dist/components/inputs/radio-button/base-ui/StyledRadio.js +29 -40
- package/dist/components/inputs/radio-button/base-ui/StyledRadio.module.js +10 -10
- package/dist/components/inputs/radio-button/base-ui/StyledRadioGroup.js +23 -35
- package/dist/components/inputs/select/StyledSelect.js +45 -124
- package/dist/components/inputs/select/StyledSelectItem.js +23 -19
- package/dist/components/inputs/select-autocomplete/StyledSelectAutocomplete.js +151 -181
- package/dist/components/inputs/slider/StyledSlider.js +52 -78
- package/dist/components/inputs/switch/base-ui/StyledSwitch.js +39 -44
- package/dist/components/miscellaneous/StyledFormControl.js +21 -39
- package/dist/components/miscellaneous/StyledFormControlLabel.js +16 -27
- package/dist/components/miscellaneous/StyledFormGroup.js +4 -16
- package/dist/components/miscellaneous/StyledFormHelperText.js +4 -12
- package/dist/components/miscellaneous/StyledInputLabel.js +4 -20
- package/dist/components/navigation/drawer/StyledDrawer.js +4 -42
- package/dist/components/navigation/listbox/Listbox.js +7 -7
- package/dist/components/navigation/menu/StyledMenu.js +11 -28
- package/dist/components/navigation/menu/StyledMenuItem.js +18 -16
- package/dist/components/navigation/menu/StyledMenuList.js +4 -32
- package/dist/components/navigation/tabs/StyledTab.js +13 -25
- package/dist/components/navigation/tabs/StyledTabs.js +64 -112
- package/dist/components/utils/accordion/base-ui/StyledAccordion.js +21 -28
- package/dist/components/utils/accordion/base-ui/StyledAccordion.module.js +7 -7
- package/dist/components/utils/accordion/base-ui/StyledAccordionDetails.js +14 -28
- package/dist/components/utils/accordion/base-ui/StyledAccordionSummary.js +27 -31
- package/dist/components/utils/popover/StyledPopover.js +15 -44
- package/dist/datetime/components/date-picker/StyledDatePicker.js +6 -6
- package/dist/datetime/components/date-picker/components/BaseDatePickerInput.js +1 -1
- package/dist/datetime/components/date-picker/components/HelperTextWithTooltip.js +6 -6
- package/dist/datetime/components/date-picker/components/StyledCalendarPicker.js +11 -11
- package/dist/datetime/components/date-picker/components/StyledCalendarPickerFooter.js +14 -13
- package/dist/datetime/components/date-picker/components/StyledCalendarPickerSelectMonth.js +14 -14
- package/dist/datetime/components/date-picker/components/StyledCalendarPickerSelectYear.js +6 -6
- package/dist/datetime/components/date-picker/components/StyledDayPicker.js +5 -4
- package/dist/datetime/components/date-picker/hooks/useDatePickerMask.js +4 -4
- package/dist/datetime/components/time-picker/StyledTimePicker.js +25 -25
- package/dist/datetime/components/time-picker/TimePickerInput.js +16 -15
- package/dist/datetime/components/time-picker/TimePickerPopper.js +19 -21
- package/dist/datetime/helpers/cn.js +5 -4
- package/dist/datetime/shared-components/ExpandIcon.js +18 -0
- package/dist/datetime/shared-components/StyledFormControl.js +23 -0
- package/dist/datetime/shared-components/StyledInputField.js +47 -0
- package/dist/datetime/shared-components/StyledSelect.js +47 -0
- package/dist/datetime/shared-components/StyledSelectItem.js +13 -0
- package/dist/datetime/shared-components/StyledTooltip.js +32 -0
- package/dist/helpers/cn.js +5 -4
- package/dist/index.js +175 -185
- package/dist/src/components/data-display/badge/StyledBadge.d.ts +2 -26
- package/dist/src/components/data-display/chip/StyledChip.d.ts +5 -39
- package/dist/src/components/data-display/interactive-chip/StyledInteractiveChip.d.ts +4 -11
- package/dist/src/components/data-display/tooltip/StyledTooltip.d.ts +2 -36
- package/dist/src/components/data-display/typography/StyledTypography.d.ts +1 -19
- package/dist/src/components/feedback/dialog/StyledDialog.d.ts +4 -50
- package/dist/src/components/feedback/dialog/StyledDialogActions.d.ts +2 -12
- package/dist/src/components/feedback/dialog/StyledDialogContent.d.ts +2 -12
- package/dist/src/components/feedback/dialog/StyledDialogTitle.d.ts +2 -10
- package/dist/src/components/feedback/snack-bar/SnackbarProvider.d.ts +1 -1
- package/dist/src/components/feedback/snack-bar/StyledAlert.d.ts +2 -24
- package/dist/src/components/feedback/snack-bar/StyledAlertSnackbar.d.ts +1 -1
- package/dist/src/components/feedback/snack-bar/StyledSnackbar.d.ts +2 -21
- package/dist/src/components/feedback/snack-bar/components/StyledDefaultSnackbar.d.ts +1 -1
- package/dist/src/components/feedback/snack-bar/components/StyledInfoSnackbar.d.ts +1 -1
- package/dist/src/components/feedback/snack-bar/components/types.d.ts +1 -1
- package/dist/src/components/inputs/checkbox/StyledCheckbox.d.ts +4 -0
- package/dist/src/components/inputs/checkbox/base-ui/StyledCheckbox.d.ts +4 -9
- package/dist/src/components/inputs/dynamic-select/types.d.ts +2 -2
- package/dist/src/components/inputs/input-field/StyledInputField.d.ts +11 -67
- package/dist/src/components/inputs/input-field/index.d.ts +1 -1
- package/dist/src/components/inputs/radio-button/StyledRadio.d.ts +4 -0
- package/dist/src/components/inputs/radio-button/StyledRadioGroup.d.ts +4 -0
- package/dist/src/components/inputs/radio-button/base-ui/StyledRadio.d.ts +5 -20
- package/dist/src/components/inputs/radio-button/base-ui/StyledRadioGroup.d.ts +7 -24
- package/dist/src/components/inputs/select/StyledSelect.d.ts +16 -39
- package/dist/src/components/inputs/select/StyledSelectItem.d.ts +2 -14
- package/dist/src/components/inputs/select/index.d.ts +1 -0
- package/dist/src/components/inputs/select-autocomplete/StyledSelectAutocomplete.d.ts +17 -88
- package/dist/src/components/inputs/slider/StyledSlider.d.ts +3 -55
- package/dist/src/components/inputs/switch/StyledSwitch.d.ts +5 -0
- package/dist/src/components/inputs/switch/base-ui/StyledSwitch.d.ts +4 -20
- package/dist/src/components/miscellaneous/StyledFormControl.d.ts +2 -22
- package/dist/src/components/miscellaneous/StyledFormControlLabel.d.ts +2 -21
- package/dist/src/components/miscellaneous/StyledFormGroup.d.ts +2 -11
- package/dist/src/components/miscellaneous/StyledFormHelperText.d.ts +2 -12
- package/dist/src/components/miscellaneous/StyledInputLabel.d.ts +2 -20
- package/dist/src/components/navigation/drawer/StyledDrawer.d.ts +2 -28
- package/dist/src/components/navigation/menu/StyledMenu.d.ts +2 -33
- package/dist/src/components/navigation/menu/StyledMenuItem.d.ts +2 -23
- package/dist/src/components/navigation/menu/StyledMenuList.d.ts +2 -16
- package/dist/src/components/navigation/menu/index.d.ts +1 -0
- package/dist/src/components/navigation/tabs/StyledTab.d.ts +3 -17
- package/dist/src/components/navigation/tabs/StyledTabs.d.ts +7 -16
- package/dist/src/components/utils/accordion/StyledAccordion.d.ts +2 -0
- package/dist/src/components/utils/accordion/StyledAccordionDetails.d.ts +2 -0
- package/dist/src/components/utils/accordion/StyledAccordionSummary.d.ts +8 -0
- package/dist/src/components/utils/accordion/base-ui/StyledAccordion.d.ts +3 -9
- package/dist/src/components/utils/accordion/base-ui/StyledAccordionDetails.d.ts +0 -5
- package/dist/src/components/utils/accordion/base-ui/StyledAccordionSummary.d.ts +4 -8
- package/dist/src/components/utils/copy-wrapper/CopyWrapper.d.ts +1 -1
- package/dist/src/components/utils/filter-menu/StyledFilterMenu.d.ts +2 -2
- package/dist/src/components/utils/popover/StyledPopover.d.ts +2 -32
- package/dist/src/datetime/components/date-picker/components/StyledCalendarPicker.d.ts +1 -1
- package/dist/src/datetime/components/date-picker/components/StyledDayPicker.d.ts +1 -1
- package/dist/src/datetime/components/date-picker/hooks/useDatePickerMask.d.ts +2 -1
- package/dist/src/datetime/components/time-picker/TimePickerInput.d.ts +1 -1
- package/dist/src/datetime/components/time-picker/TimePickerPopper.d.ts +1 -1
- package/dist/src/datetime/components/time-picker/types.d.ts +2 -1
- package/dist/src/datetime/shared-components/StyledFormControl.d.ts +2 -1
- package/dist/src/datetime/shared-components/StyledInputField.d.ts +12 -1
- package/dist/src/datetime/shared-components/StyledSelect.d.ts +16 -1
- package/dist/src/datetime/shared-components/StyledSelectItem.d.ts +2 -1
- package/dist/src/datetime/shared-components/StyledTooltip.d.ts +2 -1
- package/dist/src/index.d.ts +1 -2
- package/dist/src/table/shared-components/StyledCheckbox.d.ts +4 -7
- package/dist/src/table/shared-components/StyledMenuItem.d.ts +2 -18
- package/dist/src/table/shared-components/menu-item/index.d.ts +2 -13
- package/dist/src/table/shared-components/tooltip/index.d.ts +1 -5
- package/dist/src/table/types.d.ts +1 -1
- package/dist/table/components/Fetching.js +4 -4
- package/dist/table/components/TableRow.js +7 -7
- package/dist/table/components/TableSkeleton.js +6 -6
- package/dist/table/components/columns/action-column/components/HeaderActionMenu.js +24 -24
- package/dist/table/components/columns/action-column/components/RowActionMenu.js +25 -26
- package/dist/table/components/table-footer/TablePagination.js +24 -27
- package/dist/table/components/table-footer/TableRowCountSelect.js +27 -30
- package/dist/table/helpers/cn.js +5 -4
- package/dist/table/shared-components/StyledCheckbox.js +55 -54
- package/dist/table/shared-components/StyledCheckbox.module.js +10 -10
- package/dist/table/shared-components/StyledMenuItem.js +18 -12
- package/dist/table/shared-components/menu-item/index.js +17 -13
- package/dist/table/shared-components/tooltip/index.js +23 -4
- package/package.json +16 -9
- package/dist/components/inputs/field-styles.js +0 -6
- package/dist/components/inputs/input-field/StyledInputField.module.js +0 -4
- package/dist/components/inputs/radio-button/base-ui/RadioGroupContext.js +0 -6
- package/dist/components/inputs/slider/StyledSlider.module.js +0 -10
- package/dist/components/miscellaneous/FormControlContext.js +0 -6
- package/dist/components/mui-compat/Avatar.js +0 -29
- package/dist/components/mui-compat/ClickAwayListener.js +0 -29
- package/dist/components/mui-compat/Container.js +0 -24
- package/dist/components/mui-compat/Fade.js +0 -29
- package/dist/components/mui-compat/Fade.module.js +0 -9
- package/dist/components/mui-compat/FormLabel.js +0 -22
- package/dist/components/mui-compat/Paper.js +0 -44
- package/dist/components/mui-compat/Popper.js +0 -35
- package/dist/components/mui-compat/Skeleton.js +0 -26
- package/dist/components/mui-compat/Stack.js +0 -24
- package/dist/components/navigation/tabs/TabsContext.js +0 -6
- package/dist/components/utils/accordion/base-ui/AccordionContext.js +0 -10
- package/dist/components/utils/virtual-list/VirtualList.js +0 -45
- package/dist/helpers/arrays.js +0 -4
- package/dist/helpers/inputMask.js +0 -45
- package/dist/helpers/sx.js +0 -46
- package/dist/src/api-surface.test.d.ts +0 -1
- package/dist/src/components/inputs/field-styles.d.ts +0 -22
- package/dist/src/components/inputs/radio-button/base-ui/RadioGroupContext.d.ts +0 -10
- package/dist/src/components/miscellaneous/FormControlContext.d.ts +0 -14
- package/dist/src/components/mui-compat/Avatar.d.ts +0 -6
- package/dist/src/components/mui-compat/ClickAwayListener.d.ts +0 -19
- package/dist/src/components/mui-compat/Container.d.ts +0 -6
- package/dist/src/components/mui-compat/Fade.d.ts +0 -21
- package/dist/src/components/mui-compat/FormLabel.d.ts +0 -6
- package/dist/src/components/mui-compat/Paper.d.ts +0 -6
- package/dist/src/components/mui-compat/Popper.d.ts +0 -29
- package/dist/src/components/mui-compat/Skeleton.d.ts +0 -7
- package/dist/src/components/mui-compat/Stack.d.ts +0 -7
- package/dist/src/components/mui-compat/index.d.ts +0 -9
- package/dist/src/components/mui-compat/types.d.ts +0 -46
- package/dist/src/components/navigation/tabs/TabsContext.d.ts +0 -11
- package/dist/src/components/utils/accordion/base-ui/AccordionContext.d.ts +0 -10
- package/dist/src/components/utils/virtual-list/VirtualList.d.ts +0 -28
- package/dist/src/components/utils/virtual-list/index.d.ts +0 -1
- package/dist/src/helpers/arrays.d.ts +0 -2
- package/dist/src/helpers/arrays.test.d.ts +0 -1
- package/dist/src/helpers/inputMask.d.ts +0 -29
- package/dist/src/helpers/inputMask.test.d.ts +0 -1
- package/dist/src/helpers/sx.d.ts +0 -2
- package/dist/src/helpers/sx.test.d.ts +0 -1
package/dist/helpers/cn.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -182,92 +182,83 @@ import { WidgetIconFilled as _e } from "./components/icons/widgets-icon/WidgetIc
|
|
|
182
182
|
import { RocketLaunchIcon as Ee } from "./components/icons/rocket-launch-icon/RocketLaunchIcon.js";
|
|
183
183
|
import { LoadCurrentIcon as Ue } from "./components/icons/load-current-icon/LoadCurrentIcon.js";
|
|
184
184
|
import { StyledChip as Ge } from "./components/data-display/chip/StyledChip.js";
|
|
185
|
-
import {
|
|
186
|
-
import {
|
|
187
|
-
import {
|
|
188
|
-
import {
|
|
189
|
-
import {
|
|
190
|
-
import {
|
|
191
|
-
import {
|
|
192
|
-
import {
|
|
193
|
-
import {
|
|
194
|
-
import {
|
|
195
|
-
import {
|
|
196
|
-
import {
|
|
197
|
-
import {
|
|
198
|
-
import {
|
|
199
|
-
import {
|
|
200
|
-
import {
|
|
201
|
-
import {
|
|
202
|
-
import {
|
|
203
|
-
import {
|
|
204
|
-
import {
|
|
205
|
-
import {
|
|
206
|
-
import {
|
|
207
|
-
import {
|
|
208
|
-
import {
|
|
209
|
-
import {
|
|
210
|
-
import {
|
|
211
|
-
import {
|
|
212
|
-
import {
|
|
213
|
-
import {
|
|
214
|
-
import {
|
|
215
|
-
import {
|
|
216
|
-
import {
|
|
217
|
-
import {
|
|
218
|
-
import {
|
|
219
|
-
import {
|
|
220
|
-
import {
|
|
221
|
-
import {
|
|
222
|
-
import {
|
|
223
|
-
import {
|
|
224
|
-
import {
|
|
225
|
-
import {
|
|
226
|
-
import {
|
|
227
|
-
import {
|
|
228
|
-
import {
|
|
229
|
-
import {
|
|
230
|
-
import {
|
|
231
|
-
import {
|
|
232
|
-
import {
|
|
233
|
-
import {
|
|
234
|
-
import {
|
|
235
|
-
import {
|
|
236
|
-
import {
|
|
237
|
-
import {
|
|
238
|
-
import {
|
|
239
|
-
import {
|
|
240
|
-
import {
|
|
241
|
-
import {
|
|
242
|
-
import {
|
|
243
|
-
import {
|
|
244
|
-
import {
|
|
245
|
-
import {
|
|
246
|
-
import {
|
|
247
|
-
import {
|
|
248
|
-
import {
|
|
249
|
-
import {
|
|
250
|
-
import {
|
|
251
|
-
import {
|
|
252
|
-
import {
|
|
253
|
-
import {
|
|
254
|
-
import {
|
|
255
|
-
import {
|
|
256
|
-
import {
|
|
257
|
-
import {
|
|
258
|
-
import {
|
|
259
|
-
import { StyledWidgetTitle as Kf } from "./components/custom/widget/widget-title/StyledWidgetTitle.js";
|
|
260
|
-
import { StyledWidgetHeader as Zf } from "./components/custom/widget/widget-header/StyledWidgetHeader.js";
|
|
261
|
-
import { StyledWidget as Jf } from "./components/custom/widget/widget/StyledWidget.js";
|
|
262
|
-
import { StyledModuleTitle as $f } from "./components/custom/module/module-title/StyledModuleTitle.js";
|
|
263
|
-
import { ACTION_GAP_PX as rc, MORE_BUTTON_PX as mc, estimateToolbarActionWidth as tc, planBulkToolbarActions as ic, planToolbarActions as ec, resolveToolbarActionWidth as nc } from "./components/custom/module/header-layout/planToolbarActions.js";
|
|
264
|
-
import { DynamicToolbar as fc } from "./components/custom/module/header-layout/DynamicToolbar.js";
|
|
265
|
-
import { MinimizableDialog as lc } from "./components/feedback/minimizable-dialog/MinimizableDialog.js";
|
|
266
|
-
import { MinimizableDialogV2 as ac } from "./components/feedback/minimizable-dialog/v2/MinimizableDialogV2.js";
|
|
267
|
-
import { createDialogStack as uc } from "./components/feedback/minimizable-dialog/stack/createDialogStack.js";
|
|
185
|
+
import { StyledInteractiveChip as Xe } from "./components/data-display/interactive-chip/StyledInteractiveChip.js";
|
|
186
|
+
import { StyledTooltip as Ke } from "./components/data-display/tooltip/StyledTooltip.js";
|
|
187
|
+
import { StyledTypography as Ze } from "./components/data-display/typography/StyledTypography.js";
|
|
188
|
+
import { StyledFormLabel as Je } from "./components/data-display/form-label/components/StyledFormLabel.js";
|
|
189
|
+
import { StyledAIDisclosure as $e } from "./components/data-display/ai-disclosure/StyledAIDisclosure.js";
|
|
190
|
+
import { StyledButton as rn } from "./components/inputs/button/StyledButton.js";
|
|
191
|
+
import { StyledDialog as tn } from "./components/feedback/dialog/StyledDialog.js";
|
|
192
|
+
import { StyledDialogActions as nn } from "./components/feedback/dialog/StyledDialogActions.js";
|
|
193
|
+
import { StyledDialogContent as fn } from "./components/feedback/dialog/StyledDialogContent.js";
|
|
194
|
+
import { StyledDialogTitle as ln } from "./components/feedback/dialog/StyledDialogTitle.js";
|
|
195
|
+
import { StyledEmptyPage as an } from "./components/feedback/empty-page/StyledEmptyPage.js";
|
|
196
|
+
import { StyledFilteredEmptyState as un } from "./components/feedback/filtered-empty-state/StyledFilteredEmptyState.js";
|
|
197
|
+
import { StyledLoading as sn } from "./components/feedback/loading/StyledLoading.js";
|
|
198
|
+
import { StyledAlert as Cn } from "./components/feedback/snack-bar/StyledAlert.js";
|
|
199
|
+
import { SnackbarProvider as gn } from "./components/feedback/snack-bar/SnackbarProvider.js";
|
|
200
|
+
import { StyledSnackbar as hn } from "./components/feedback/snack-bar/StyledSnackbar.js";
|
|
201
|
+
import { processAlertSnackBar as kn } from "./components/feedback/snack-bar/processAlertSnackBar.js";
|
|
202
|
+
import { processDefaultSnackbar as Tn } from "./components/feedback/snack-bar/processDefaultSnackbar.js";
|
|
203
|
+
import { processInfoSnackbar as Fn } from "./components/feedback/snack-bar/processInfoSnackbar.js";
|
|
204
|
+
import { message as Rn } from "./components/feedback/snack-bar/message.js";
|
|
205
|
+
import { closeSnackbar as wn, enqueueSnackbar as vn, useSnackbar as Bn } from "./components/feedback/snack-bar/index.js";
|
|
206
|
+
import { StyledCheckbox as xn } from "./components/inputs/checkbox/base-ui/StyledCheckbox.js";
|
|
207
|
+
import { StyledInputField as Hn } from "./components/inputs/input-field/StyledInputField.js";
|
|
208
|
+
import { StyledSearchField as Wn } from "./components/inputs/search-field/StyledSearchField.js";
|
|
209
|
+
import { StyledTextarea as Vn } from "./components/inputs/textarea/StyledTextarea.js";
|
|
210
|
+
import { StyledSelect as zn } from "./components/inputs/select/StyledSelect.js";
|
|
211
|
+
import { StyledSelectItem as qn } from "./components/inputs/select/StyledSelectItem.js";
|
|
212
|
+
import { StyledSelectAutocomplete as Qn } from "./components/inputs/select-autocomplete/StyledSelectAutocomplete.js";
|
|
213
|
+
import { StyledSlider as jn } from "./components/inputs/slider/StyledSlider.js";
|
|
214
|
+
import { StyledSwitch as Yn } from "./components/inputs/switch/base-ui/StyledSwitch.js";
|
|
215
|
+
import { StyledRadio as op } from "./components/inputs/radio-button/base-ui/StyledRadio.js";
|
|
216
|
+
import { StyledRadioGroup as mp } from "./components/inputs/radio-button/base-ui/StyledRadioGroup.js";
|
|
217
|
+
import { StyledLabel as ip } from "./components/inputs/label/StyledLabel.js";
|
|
218
|
+
import { StyledDynamicSelect as np } from "./components/inputs/dynamic-select/StyledDynamicSelect.js";
|
|
219
|
+
import { StyledDatePicker as fp } from "./datetime/components/date-picker/StyledDatePicker.js";
|
|
220
|
+
import { StyledTimePicker as lp } from "./datetime/components/time-picker/StyledTimePicker.js";
|
|
221
|
+
import { setMidnightTime as ap, setZeroTime as dp } from "./datetime/helpers/date.helper.js";
|
|
222
|
+
import { StyledFormControl as Sp } from "./components/miscellaneous/StyledFormControl.js";
|
|
223
|
+
import { StyledFormControlLabel as yp } from "./components/miscellaneous/StyledFormControlLabel.js";
|
|
224
|
+
import { StyledFormHelperText as Op } from "./components/miscellaneous/StyledFormHelperText.js";
|
|
225
|
+
import { StyledInputLabel as Dp } from "./components/miscellaneous/StyledInputLabel.js";
|
|
226
|
+
import { StyledFormGroup as bp } from "./components/miscellaneous/StyledFormGroup.js";
|
|
227
|
+
import { StyledDrawer as Lp } from "./components/navigation/drawer/StyledDrawer.js";
|
|
228
|
+
import { StyledMenu as Pp } from "./components/navigation/menu/StyledMenu.js";
|
|
229
|
+
import { StyledMenuItem as Ap } from "./components/navigation/menu/StyledMenuItem.js";
|
|
230
|
+
import { StyledMenuList as Mp } from "./components/navigation/menu/StyledMenuList.js";
|
|
231
|
+
import { StyledLink as vp } from "./components/navigation/link/StyledLink.js";
|
|
232
|
+
import { StyledTab as Np } from "./components/navigation/tabs/StyledTab.js";
|
|
233
|
+
import { StyledTabs as _p } from "./components/navigation/tabs/StyledTabs.js";
|
|
234
|
+
import { Listbox as Ep } from "./components/navigation/listbox/Listbox.js";
|
|
235
|
+
import { StyledAccordion as Up } from "./components/utils/accordion/base-ui/StyledAccordion.js";
|
|
236
|
+
import { StyledAccordionSummary as Gp } from "./components/utils/accordion/base-ui/StyledAccordionSummary.js";
|
|
237
|
+
import { StyledAccordionDetails as Xp } from "./components/utils/accordion/base-ui/StyledAccordionDetails.js";
|
|
238
|
+
import { ACTIONS_COLUMN_ID as Kp, DND_HANDLE_COLUMN_ID as Qp, EXPAND_COLUMN_ID as Zp, INTERNAL_COLUMN_IDS as jp, SELECT_COLUMN_ID as Jp, SHOW_FULL_TEXT_ID as Yp, isCustomAction as $p } from "./table/types.js";
|
|
239
|
+
import { RowDragHandleCell as rf } from "./table/components/columns/dndHandleColumn.js";
|
|
240
|
+
import { StyledTable as tf } from "./table/components/StyledTableIndex.js";
|
|
241
|
+
import { createColumnHelper as nf } from "./table/index.js";
|
|
242
|
+
import { StyledPopover as ff } from "./components/utils/popover/StyledPopover.js";
|
|
243
|
+
import { DynamicToolbarLayoutContext as lf, useDynamicToolbarLayout as If } from "./components/custom/module/header-layout/DynamicToolbarLayoutContext.js";
|
|
244
|
+
import { StyledFilterButton as df } from "./components/utils/filter-menu/StyledFilterButton.js";
|
|
245
|
+
import { StyledFilterMenu as Sf } from "./components/utils/filter-menu/StyledFilterMenu.js";
|
|
246
|
+
import { CopyButton as yf } from "./components/utils/copy-wrapper/CopyButton.js";
|
|
247
|
+
import { CopyWrapper as Of } from "./components/utils/copy-wrapper/CopyWrapper.js";
|
|
248
|
+
import { StyledWidgetTitle as Df } from "./components/custom/widget/widget-title/StyledWidgetTitle.js";
|
|
249
|
+
import { StyledWidgetHeader as bf } from "./components/custom/widget/widget-header/StyledWidgetHeader.js";
|
|
250
|
+
import { StyledWidget as Lf } from "./components/custom/widget/widget/StyledWidget.js";
|
|
251
|
+
import { StyledModuleTitle as Pf } from "./components/custom/module/module-title/StyledModuleTitle.js";
|
|
252
|
+
import { ACTION_GAP_PX as Af, MORE_BUTTON_PX as Rf, estimateToolbarActionWidth as Mf, planBulkToolbarActions as wf, planToolbarActions as vf, resolveToolbarActionWidth as Bf } from "./components/custom/module/header-layout/planToolbarActions.js";
|
|
253
|
+
import { DynamicToolbar as xf } from "./components/custom/module/header-layout/DynamicToolbar.js";
|
|
254
|
+
import { MinimizableDialog as Hf } from "./components/feedback/minimizable-dialog/MinimizableDialog.js";
|
|
255
|
+
import { MinimizableDialogV2 as Wf } from "./components/feedback/minimizable-dialog/v2/MinimizableDialogV2.js";
|
|
256
|
+
import { createDialogStack as Vf } from "./components/feedback/minimizable-dialog/stack/createDialogStack.js";
|
|
257
|
+
import { PopupState as zf, bindPopover as Xf, bindPopper as qf, bindTrigger as Kf, usePopupState as Qf } from "./hooks/usePopupState.js";
|
|
258
|
+
import { Avatar as jf, ClickAwayListener as Jf, Container as Yf, Fade as $f, FormLabel as oc, Paper as rc, Popper as mc, Skeleton as tc, Stack as ic } from "@mui/material";
|
|
268
259
|
export {
|
|
269
|
-
|
|
270
|
-
|
|
260
|
+
Kp as ACTIONS_COLUMN_ID,
|
|
261
|
+
Af as ACTION_GAP_PX,
|
|
271
262
|
Gi as AppRegistrationIcon,
|
|
272
263
|
vo as ArchiveIcon,
|
|
273
264
|
Xi as ArrowExpandIcon,
|
|
@@ -276,7 +267,7 @@ export {
|
|
|
276
267
|
j as AssignmentIcon,
|
|
277
268
|
Y as AssignmentOutlineIcon,
|
|
278
269
|
vt as AttachFileIcon,
|
|
279
|
-
|
|
270
|
+
jf as Avatar,
|
|
280
271
|
_m as BackIcon,
|
|
281
272
|
Mi as BackupIcon,
|
|
282
273
|
tm as BadgeIcon,
|
|
@@ -303,22 +294,22 @@ export {
|
|
|
303
294
|
s as ChevronRightIcon,
|
|
304
295
|
Uo as ChevronUpIcon,
|
|
305
296
|
Ui as CircleWarningOutlineIcon,
|
|
306
|
-
|
|
297
|
+
Jf as ClickAwayListener,
|
|
307
298
|
Lm as ClockOutlineIcon,
|
|
308
299
|
Go as CloseIcon,
|
|
309
300
|
At as CloudDoneOutlineIcon,
|
|
310
301
|
Mt as CloudIcon,
|
|
311
302
|
Ji as CloudOffOutlineIcon,
|
|
312
303
|
Zr as ConsentsIcon,
|
|
313
|
-
|
|
304
|
+
Yf as Container,
|
|
314
305
|
St as ContentCopyIcon,
|
|
315
306
|
Dt as ContentCopyOutlineIcon,
|
|
316
307
|
yt as ContentCutIcon,
|
|
317
308
|
Ot as ContentPasteIcon,
|
|
318
309
|
ri as ConversionPathIcon,
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
310
|
+
yf as CopyButton,
|
|
311
|
+
Of as CopyWrapper,
|
|
312
|
+
Qp as DND_HANDLE_COLUMN_ID,
|
|
322
313
|
F as DashboardViewIcon,
|
|
323
314
|
R as DashboardViewOutlineIcon,
|
|
324
315
|
cr as DeleteOutlineIcon,
|
|
@@ -337,16 +328,16 @@ export {
|
|
|
337
328
|
Ao as DropUpIcon,
|
|
338
329
|
yr as DvrIcon,
|
|
339
330
|
Ai as DvrIconOutline,
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
331
|
+
xf as DynamicToolbar,
|
|
332
|
+
lf as DynamicToolbarLayoutContext,
|
|
333
|
+
Zp as EXPAND_COLUMN_ID,
|
|
343
334
|
Er as EarthIcon,
|
|
344
335
|
ye as EditNotesIcon,
|
|
345
336
|
em as EditSquareIcon,
|
|
346
337
|
tr as EmptyPageIcon,
|
|
347
338
|
Si as EnvelopeIcon,
|
|
348
339
|
Or as ErrorOutlineIcon,
|
|
349
|
-
|
|
340
|
+
$f as Fade,
|
|
350
341
|
Pr as FastCheckOutlineIcon,
|
|
351
342
|
Pi as FileDocIcon,
|
|
352
343
|
De as FileImageIcon,
|
|
@@ -359,7 +350,7 @@ export {
|
|
|
359
350
|
yo as FindReplacePeopleIcon,
|
|
360
351
|
yi as FingerprintIcon,
|
|
361
352
|
Dm as FormIcon,
|
|
362
|
-
|
|
353
|
+
oc as FormLabel,
|
|
363
354
|
tt as FormatListBulletedIcon,
|
|
364
355
|
et as FormatListBulletedOutlineIcon,
|
|
365
356
|
ti as GraphIcon,
|
|
@@ -374,7 +365,7 @@ export {
|
|
|
374
365
|
de as HistoryToggleOffIcon,
|
|
375
366
|
Me as HubIcon,
|
|
376
367
|
ve as HubIconFilled,
|
|
377
|
-
|
|
368
|
+
jp as INTERNAL_COLUMN_IDS,
|
|
378
369
|
Jo as InboxOutboxIcon,
|
|
379
370
|
$o as InboxOutboxOutlineIcon,
|
|
380
371
|
Pe as IndeterminateIcon,
|
|
@@ -387,21 +378,21 @@ export {
|
|
|
387
378
|
_r as ListSettingsLineIcon,
|
|
388
379
|
Mr as ListStatusIcon,
|
|
389
380
|
vr as ListViewOutlineIcon,
|
|
390
|
-
|
|
381
|
+
Ep as Listbox,
|
|
391
382
|
Ue as LoadCurrentIcon,
|
|
392
383
|
Po as LoadingIcon,
|
|
393
384
|
Om as LocationIcon,
|
|
394
385
|
Sr as LockIcon,
|
|
395
386
|
Mm as LoginIcon,
|
|
396
387
|
vm as LogoutIcon,
|
|
397
|
-
|
|
388
|
+
Rf as MORE_BUTTON_PX,
|
|
398
389
|
Ae as ManageSearchIcon,
|
|
399
390
|
mo as MessageProcessingIcon,
|
|
400
391
|
io as MessageProcessingOutlineIcon,
|
|
401
392
|
rm as MessageReplyIcon,
|
|
402
393
|
Am as MicrosoftOutlookIcon,
|
|
403
|
-
|
|
404
|
-
|
|
394
|
+
Hf as MinimizableDialog,
|
|
395
|
+
Wf as MinimizableDialogV2,
|
|
405
396
|
Jr as MinimizeIcon,
|
|
406
397
|
z as NewCalendarIcon,
|
|
407
398
|
Gm as NewWindowIcon,
|
|
@@ -411,7 +402,7 @@ export {
|
|
|
411
402
|
Kt as OutlineCheckboxIconChecked,
|
|
412
403
|
Jt as OutlineCheckboxIconIndeterminate,
|
|
413
404
|
Gt as OutlineNotificationsIcon,
|
|
414
|
-
|
|
405
|
+
rc as Paper,
|
|
415
406
|
T as PdfIcon,
|
|
416
407
|
Gr as PencilOutlineIcon,
|
|
417
408
|
B as PeopleIcon,
|
|
@@ -425,8 +416,8 @@ export {
|
|
|
425
416
|
Sm as PinIcon,
|
|
426
417
|
pm as PlusIcon,
|
|
427
418
|
cm as PlusIconCircle,
|
|
428
|
-
|
|
429
|
-
|
|
419
|
+
mc as Popper,
|
|
420
|
+
zf as PopupState,
|
|
430
421
|
k as QnrIcon,
|
|
431
422
|
bt as RefreshIcon,
|
|
432
423
|
di as RemoveIcon,
|
|
@@ -436,11 +427,11 @@ export {
|
|
|
436
427
|
fo as ReportBoxOutlineIcon,
|
|
437
428
|
Ie as ResetSettingsIcon,
|
|
438
429
|
Ee as RocketLaunchIcon,
|
|
439
|
-
|
|
430
|
+
rf as RowDragHandleCell,
|
|
440
431
|
It as RuleIcon,
|
|
441
432
|
dt as RuleOutlineIcon,
|
|
442
|
-
|
|
443
|
-
|
|
433
|
+
Jp as SELECT_COLUMN_ID,
|
|
434
|
+
Yp as SHOW_FULL_TEXT_ID,
|
|
444
435
|
Ii as SaveIcon,
|
|
445
436
|
Lo as SearchIcon,
|
|
446
437
|
Nt as SendIcon,
|
|
@@ -449,65 +440,65 @@ export {
|
|
|
449
440
|
Lt as SettingsNoteIcon,
|
|
450
441
|
ao as SettingsOutlineIcon,
|
|
451
442
|
Ki as ShareIcon,
|
|
452
|
-
|
|
443
|
+
tc as Skeleton,
|
|
453
444
|
te as SmsIcon,
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
445
|
+
gn as SnackbarProvider,
|
|
446
|
+
ic as Stack,
|
|
447
|
+
$e as StyledAIDisclosure,
|
|
448
|
+
Up as StyledAccordion,
|
|
449
|
+
Xp as StyledAccordionDetails,
|
|
450
|
+
Gp as StyledAccordionSummary,
|
|
451
|
+
Cn as StyledAlert,
|
|
461
452
|
f as StyledBadge,
|
|
462
|
-
|
|
463
|
-
|
|
453
|
+
rn as StyledButton,
|
|
454
|
+
xn as StyledCheckbox,
|
|
464
455
|
Ge as StyledChip,
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
456
|
+
fp as StyledDatePicker,
|
|
457
|
+
tn as StyledDialog,
|
|
458
|
+
nn as StyledDialogActions,
|
|
459
|
+
fn as StyledDialogContent,
|
|
460
|
+
ln as StyledDialogTitle,
|
|
461
|
+
Lp as StyledDrawer,
|
|
462
|
+
np as StyledDynamicSelect,
|
|
463
|
+
an as StyledEmptyPage,
|
|
464
|
+
df as StyledFilterButton,
|
|
465
|
+
Sf as StyledFilterMenu,
|
|
466
|
+
un as StyledFilteredEmptyState,
|
|
467
|
+
Sp as StyledFormControl,
|
|
468
|
+
yp as StyledFormControlLabel,
|
|
469
|
+
bp as StyledFormGroup,
|
|
470
|
+
Op as StyledFormHelperText,
|
|
471
|
+
Je as StyledFormLabel,
|
|
472
|
+
Hn as StyledInputField,
|
|
473
|
+
Dp as StyledInputLabel,
|
|
474
|
+
Xe as StyledInteractiveChip,
|
|
475
|
+
ip as StyledLabel,
|
|
476
|
+
vp as StyledLink,
|
|
477
|
+
sn as StyledLoading,
|
|
478
|
+
Pp as StyledMenu,
|
|
479
|
+
Ap as StyledMenuItem,
|
|
480
|
+
Mp as StyledMenuList,
|
|
481
|
+
Pf as StyledModuleTitle,
|
|
482
|
+
ff as StyledPopover,
|
|
483
|
+
op as StyledRadio,
|
|
484
|
+
mp as StyledRadioGroup,
|
|
485
|
+
Wn as StyledSearchField,
|
|
486
|
+
zn as StyledSelect,
|
|
487
|
+
Qn as StyledSelectAutocomplete,
|
|
488
|
+
qn as StyledSelectItem,
|
|
489
|
+
jn as StyledSlider,
|
|
490
|
+
hn as StyledSnackbar,
|
|
491
|
+
Yn as StyledSwitch,
|
|
492
|
+
Np as StyledTab,
|
|
493
|
+
tf as StyledTable,
|
|
494
|
+
_p as StyledTabs,
|
|
495
|
+
Vn as StyledTextarea,
|
|
496
|
+
lp as StyledTimePicker,
|
|
497
|
+
Ke as StyledTooltip,
|
|
498
|
+
Ze as StyledTypography,
|
|
499
|
+
Lf as StyledWidget,
|
|
500
|
+
bf as StyledWidgetHeader,
|
|
501
|
+
Df as StyledWidgetTitle,
|
|
511
502
|
Xt as SyncIcon,
|
|
512
503
|
Zi as SyncSavedLocallyIcon,
|
|
513
504
|
Nr as TextBoxCheckOutlineIcon,
|
|
@@ -519,7 +510,6 @@ export {
|
|
|
519
510
|
Ar as UnknownDocumentOutlineRoundedIcon,
|
|
520
511
|
Km as UnlockIcon,
|
|
521
512
|
Oi as UploadIcon,
|
|
522
|
-
Xf as VirtualList,
|
|
523
513
|
re as VisibilityOffOutlineIcon,
|
|
524
514
|
$i as VisibilityOutlineIcon,
|
|
525
515
|
ce as WandStarsIcon,
|
|
@@ -527,28 +517,28 @@ export {
|
|
|
527
517
|
Ne as WidgetIcon,
|
|
528
518
|
_e as WidgetIconFilled,
|
|
529
519
|
ym as WorkIcon,
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
520
|
+
Xf as bindPopover,
|
|
521
|
+
qf as bindPopper,
|
|
522
|
+
Kf as bindTrigger,
|
|
523
|
+
wn as closeSnackbar,
|
|
534
524
|
m as cn,
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
525
|
+
nf as createColumnHelper,
|
|
526
|
+
Vf as createDialogStack,
|
|
527
|
+
vn as enqueueSnackbar,
|
|
528
|
+
Mf as estimateToolbarActionWidth,
|
|
529
|
+
$p as isCustomAction,
|
|
530
|
+
Rn as message,
|
|
541
531
|
i as omit,
|
|
542
|
-
|
|
543
|
-
|
|
532
|
+
wf as planBulkToolbarActions,
|
|
533
|
+
vf as planToolbarActions,
|
|
544
534
|
n as prepareForSlot,
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
535
|
+
kn as processAlertSnackBar,
|
|
536
|
+
Tn as processDefaultSnackbar,
|
|
537
|
+
Fn as processInfoSnackbar,
|
|
538
|
+
Bf as resolveToolbarActionWidth,
|
|
539
|
+
ap as setMidnightTime,
|
|
540
|
+
dp as setZeroTime,
|
|
541
|
+
If as useDynamicToolbarLayout,
|
|
542
|
+
Qf as usePopupState,
|
|
543
|
+
Bn as useSnackbar
|
|
554
544
|
};
|
|
@@ -1,32 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BadgeProps } from '@mui/material';
|
|
2
2
|
type StyledBadgeSize = 'medium' | 'small';
|
|
3
|
-
interface BadgeProps extends Omit<HTMLAttributes<HTMLSpanElement>, 'color'> {
|
|
4
|
-
badgeContent?: ReactNode;
|
|
5
|
-
color?: string;
|
|
6
|
-
max?: number;
|
|
7
|
-
showZero?: boolean;
|
|
8
|
-
variant?: 'standard' | 'dot';
|
|
9
|
-
invisible?: boolean;
|
|
10
|
-
anchorOrigin?: {
|
|
11
|
-
vertical: 'top' | 'bottom';
|
|
12
|
-
horizontal: 'left' | 'right';
|
|
13
|
-
};
|
|
14
|
-
overlap?: 'rectangular' | 'circular';
|
|
15
|
-
component?: ElementType;
|
|
16
|
-
classes?: Record<string, string>;
|
|
17
|
-
slots?: Record<string, unknown>;
|
|
18
|
-
slotProps?: unknown;
|
|
19
|
-
sx?: unknown;
|
|
20
|
-
}
|
|
21
3
|
type StyledBadgeProps = BadgeProps & {
|
|
22
4
|
dataTest: string;
|
|
23
5
|
size?: StyledBadgeSize;
|
|
24
6
|
};
|
|
25
|
-
|
|
26
|
-
* Native, MUI-free reimplementation of the previous `Badge` passthrough. Reproduces MUI v9 badge
|
|
27
|
-
* metrics/positioning via Tailwind, this library's custom `primary` green, and the `small` size.
|
|
28
|
-
* The established styling API `sx={{ '& .MuiBadge-badge': {...} }}` is preserved by extracting that
|
|
29
|
-
* slot and applying `resolveSx` to the badge span (DEC-007 slot-sx). Signature unchanged (DEC-003).
|
|
30
|
-
*/
|
|
31
|
-
export declare const StyledBadge: ({ color, dataTest, size, badgeContent, max, showZero, variant, invisible, anchorOrigin, children, className, sx, overlap: _overlap, classes: _classes, slots: _slots, slotProps: _slotProps, component: _component, ...props }: StyledBadgeProps) => JSX.Element;
|
|
7
|
+
export declare const StyledBadge: React.FC<StyledBadgeProps>;
|
|
32
8
|
export {};
|
|
@@ -1,41 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
label?: string;
|
|
5
|
-
avatar?: string;
|
|
6
|
-
icon?: string;
|
|
7
|
-
deleteIcon?: string;
|
|
8
|
-
}
|
|
9
|
-
export interface StyledChipProps {
|
|
1
|
+
import { ChipProps } from '@mui/material';
|
|
2
|
+
import { default as React } from 'react';
|
|
3
|
+
export type StyledChipProps = ChipProps & {
|
|
10
4
|
dataTest: string;
|
|
11
|
-
label?: ReactNode;
|
|
12
|
-
/** Cosmetic only — the design always renders a white body with a delta border (kept from the MUI original). */
|
|
13
|
-
variant?: 'filled' | 'outlined';
|
|
14
|
-
color?: string;
|
|
15
|
-
size?: 'small' | 'medium';
|
|
16
|
-
disabled?: boolean;
|
|
17
5
|
readOnly?: boolean;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
avatar?: ReactElement;
|
|
21
|
-
deleteIcon?: ReactElement;
|
|
22
|
-
onDelete?: (event: MouseEvent<HTMLElement>) => void;
|
|
23
|
-
onClick?: (event: MouseEvent<HTMLElement>) => void;
|
|
24
|
-
className?: string;
|
|
25
|
-
classes?: ChipClasses;
|
|
26
|
-
sx?: unknown;
|
|
27
|
-
tabIndex?: number;
|
|
28
|
-
'aria-label'?: string;
|
|
29
|
-
/** Forces the hover visual (used by stories / state tables). */
|
|
30
|
-
'data-hovered'?: string;
|
|
31
|
-
/** Forces the focus visual (used by stories / state tables). */
|
|
32
|
-
'data-focus'?: string;
|
|
33
|
-
}
|
|
34
|
-
/**
|
|
35
|
-
* Native replacement for MUI `Chip` — a styled element with optional avatar/icon start slot, a
|
|
36
|
-
* label, and a delete button. Interactive hover/focus/active visuals also respond to the
|
|
37
|
-
* `data-hovered`/`data-focus` attributes MUI set (state tables rely on them). Public props +
|
|
38
|
-
* `classes`/`sx` slots preserved (DEC-003). TASK-101a.
|
|
39
|
-
*/
|
|
40
|
-
export declare const StyledChip: import('node_modules/@types/react').ForwardRefExoticComponent<StyledChipProps & import('node_modules/@types/react').RefAttributes<HTMLDivElement>>;
|
|
41
|
-
export {};
|
|
6
|
+
};
|
|
7
|
+
export declare const StyledChip: React.ForwardRefExoticComponent<Omit<StyledChipProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,17 +1,10 @@
|
|
|
1
|
-
import { ComponentProps } from 'react';
|
|
1
|
+
import { ComponentProps, FC } from 'react';
|
|
2
2
|
import { StyledChip } from '../chip';
|
|
3
|
+
import { CheckboxProps, RadioProps } from '@mui/material';
|
|
3
4
|
export interface StyledInteractiveChipProps extends ComponentProps<typeof StyledChip> {
|
|
4
5
|
type?: 'checkbox' | 'radio';
|
|
5
|
-
checked?:
|
|
6
|
+
checked?: (CheckboxProps | RadioProps)['checked'];
|
|
6
7
|
size?: 'small' | 'medium';
|
|
7
8
|
ariaLabel?: string;
|
|
8
9
|
}
|
|
9
|
-
|
|
10
|
-
* A `StyledChip` whose avatar is a native checkbox or radio (base-ui controls now render their own
|
|
11
|
-
* checked/read-only colours, so the old nested `.MuiChip-avatar .Mui*` `sx` is gone). Public props
|
|
12
|
-
* preserved (DEC-003). TASK-101a.
|
|
13
|
-
*
|
|
14
|
-
* ponytail: a selected radio chip uses inline style for its border, so it shows no hover recolour
|
|
15
|
-
* while selected — a minor known ceiling; upgrade path is REFACTOR-001 (className-based slots).
|
|
16
|
-
*/
|
|
17
|
-
export declare const StyledInteractiveChip: import('node_modules/@types/react').ForwardRefExoticComponent<Omit<StyledInteractiveChipProps, "ref"> & import('node_modules/@types/react').RefAttributes<HTMLDivElement>>;
|
|
10
|
+
export declare const StyledInteractiveChip: FC<StyledInteractiveChipProps>;
|