asma-ui-core 3.34.0 → 3.36.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/asma-ui-core.css +1 -1
- package/dist/components/data-display/badge/StyledBadge.js +29 -24
- package/dist/components/data-display/chip/StyledChip.js +45 -60
- package/dist/components/data-display/interactive-chip/StyledInteractiveChip.js +32 -38
- package/dist/components/data-display/tooltip/StyledTooltip.js +50 -33
- package/dist/components/data-display/typography/StyledTypography.js +62 -4
- package/dist/components/feedback/dialog/StyledDialog.js +70 -50
- package/dist/components/feedback/dialog/StyledDialog.module.js +2 -9
- package/dist/components/feedback/dialog/StyledDialogActions.js +16 -16
- package/dist/components/feedback/dialog/StyledDialogContent.js +17 -14
- package/dist/components/feedback/dialog/StyledDialogTitle.js +18 -13
- package/dist/components/feedback/minimizable-dialog/MinimizableDialog.js +56 -57
- package/dist/components/feedback/snack-bar/StyledAlert.js +72 -14
- package/dist/components/feedback/snack-bar/StyledSnackbar.js +34 -8
- package/dist/components/feedback/snack-bar/components/StyledDefaultSnackbar.js +33 -34
- package/dist/components/inputs/checkbox/base-ui/StyledCheckbox.js +55 -58
- 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/field-styles.js +6 -0
- package/dist/components/inputs/input-field/StyledInputField.js +104 -81
- package/dist/components/inputs/input-field/StyledInputField.module.js +4 -0
- package/dist/components/inputs/radio-button/base-ui/RadioGroupContext.js +6 -0
- package/dist/components/inputs/radio-button/base-ui/StyledRadio.js +40 -29
- package/dist/components/inputs/radio-button/base-ui/StyledRadio.module.js +10 -10
- package/dist/components/inputs/radio-button/base-ui/StyledRadioGroup.js +35 -23
- package/dist/components/inputs/select/StyledSelect.js +124 -45
- package/dist/components/inputs/select/StyledSelectItem.js +19 -23
- package/dist/components/inputs/select-autocomplete/StyledSelectAutocomplete.js +181 -151
- package/dist/components/inputs/slider/StyledSlider.js +78 -52
- package/dist/components/inputs/slider/StyledSlider.module.js +10 -0
- package/dist/components/inputs/switch/base-ui/StyledSwitch.js +44 -39
- package/dist/components/miscellaneous/FormControlContext.js +6 -0
- package/dist/components/miscellaneous/StyledFormControl.js +39 -21
- package/dist/components/miscellaneous/StyledFormControlLabel.js +27 -16
- package/dist/components/miscellaneous/StyledFormGroup.js +16 -4
- package/dist/components/miscellaneous/StyledFormHelperText.js +12 -4
- package/dist/components/miscellaneous/StyledInputLabel.js +20 -4
- package/dist/components/mui-compat/Avatar.js +29 -0
- package/dist/components/mui-compat/ClickAwayListener.js +29 -0
- package/dist/components/mui-compat/Container.js +24 -0
- package/dist/components/mui-compat/Fade.js +29 -0
- package/dist/components/mui-compat/Fade.module.js +9 -0
- package/dist/components/mui-compat/FormLabel.js +22 -0
- package/dist/components/mui-compat/Paper.js +44 -0
- package/dist/components/mui-compat/Popper.js +35 -0
- package/dist/components/mui-compat/Skeleton.js +26 -0
- package/dist/components/mui-compat/Stack.js +24 -0
- package/dist/components/navigation/drawer/StyledDrawer.js +42 -4
- package/dist/components/navigation/listbox/Listbox.js +7 -7
- package/dist/components/navigation/menu/StyledMenu.js +28 -11
- package/dist/components/navigation/menu/StyledMenuItem.js +16 -18
- package/dist/components/navigation/menu/StyledMenuList.js +32 -4
- package/dist/components/navigation/tabs/StyledTab.js +25 -13
- package/dist/components/navigation/tabs/StyledTabs.js +112 -64
- package/dist/components/navigation/tabs/TabsContext.js +6 -0
- package/dist/components/utils/accordion/base-ui/AccordionContext.js +10 -0
- package/dist/components/utils/accordion/base-ui/StyledAccordion.js +28 -21
- package/dist/components/utils/accordion/base-ui/StyledAccordion.module.js +7 -7
- package/dist/components/utils/accordion/base-ui/StyledAccordionDetails.js +28 -14
- package/dist/components/utils/accordion/base-ui/StyledAccordionSummary.js +31 -27
- package/dist/components/utils/popover/StyledPopover.js +44 -15
- 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 +13 -14
- 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 +4 -5
- 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 +15 -16
- package/dist/datetime/components/time-picker/TimePickerPopper.js +21 -19
- package/dist/datetime/helpers/cn.js +4 -5
- package/dist/helpers/arrays.js +4 -0
- package/dist/helpers/cn.js +4 -5
- package/dist/helpers/inputMask.js +45 -0
- package/dist/helpers/sx.js +46 -0
- package/dist/index.js +183 -175
- package/dist/src/api-surface.test.d.ts +1 -0
- package/dist/src/components/data-display/badge/StyledBadge.d.ts +26 -2
- package/dist/src/components/data-display/chip/StyledChip.d.ts +39 -5
- package/dist/src/components/data-display/interactive-chip/StyledInteractiveChip.d.ts +11 -4
- package/dist/src/components/data-display/tooltip/StyledTooltip.d.ts +36 -2
- package/dist/src/components/data-display/typography/StyledTypography.d.ts +19 -1
- package/dist/src/components/feedback/dialog/StyledDialog.d.ts +50 -4
- package/dist/src/components/feedback/dialog/StyledDialogActions.d.ts +12 -2
- package/dist/src/components/feedback/dialog/StyledDialogContent.d.ts +12 -2
- package/dist/src/components/feedback/dialog/StyledDialogTitle.d.ts +10 -2
- package/dist/src/components/feedback/snack-bar/SnackbarProvider.d.ts +1 -1
- package/dist/src/components/feedback/snack-bar/StyledAlert.d.ts +24 -2
- package/dist/src/components/feedback/snack-bar/StyledAlertSnackbar.d.ts +1 -1
- package/dist/src/components/feedback/snack-bar/StyledSnackbar.d.ts +21 -2
- 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/base-ui/StyledCheckbox.d.ts +9 -4
- package/dist/src/components/inputs/dynamic-select/types.d.ts +2 -2
- package/dist/src/components/inputs/field-styles.d.ts +22 -0
- package/dist/src/components/inputs/input-field/StyledInputField.d.ts +67 -11
- package/dist/src/components/inputs/input-field/index.d.ts +1 -1
- package/dist/src/components/inputs/radio-button/base-ui/RadioGroupContext.d.ts +10 -0
- package/dist/src/components/inputs/radio-button/base-ui/StyledRadio.d.ts +20 -5
- package/dist/src/components/inputs/radio-button/base-ui/StyledRadioGroup.d.ts +24 -7
- package/dist/src/components/inputs/select/StyledSelect.d.ts +39 -16
- package/dist/src/components/inputs/select/StyledSelectItem.d.ts +14 -2
- package/dist/src/components/inputs/select/index.d.ts +0 -1
- package/dist/src/components/inputs/select-autocomplete/StyledSelectAutocomplete.d.ts +88 -17
- package/dist/src/components/inputs/slider/StyledSlider.d.ts +55 -3
- package/dist/src/components/inputs/switch/base-ui/StyledSwitch.d.ts +20 -4
- package/dist/src/components/miscellaneous/FormControlContext.d.ts +14 -0
- package/dist/src/components/miscellaneous/StyledFormControl.d.ts +22 -2
- package/dist/src/components/miscellaneous/StyledFormControlLabel.d.ts +21 -2
- package/dist/src/components/miscellaneous/StyledFormGroup.d.ts +11 -2
- package/dist/src/components/miscellaneous/StyledFormHelperText.d.ts +12 -2
- package/dist/src/components/miscellaneous/StyledInputLabel.d.ts +20 -2
- package/dist/src/components/mui-compat/Avatar.d.ts +6 -0
- package/dist/src/components/mui-compat/ClickAwayListener.d.ts +19 -0
- package/dist/src/components/mui-compat/Container.d.ts +6 -0
- package/dist/src/components/mui-compat/Fade.d.ts +21 -0
- package/dist/src/components/mui-compat/FormLabel.d.ts +6 -0
- package/dist/src/components/mui-compat/Paper.d.ts +6 -0
- package/dist/src/components/mui-compat/Popper.d.ts +29 -0
- package/dist/src/components/mui-compat/Skeleton.d.ts +7 -0
- package/dist/src/components/mui-compat/Stack.d.ts +7 -0
- package/dist/src/components/mui-compat/index.d.ts +9 -0
- package/dist/src/components/mui-compat/types.d.ts +46 -0
- package/dist/src/components/navigation/drawer/StyledDrawer.d.ts +28 -2
- package/dist/src/components/navigation/menu/StyledMenu.d.ts +33 -2
- package/dist/src/components/navigation/menu/StyledMenuItem.d.ts +23 -2
- package/dist/src/components/navigation/menu/StyledMenuList.d.ts +16 -2
- package/dist/src/components/navigation/menu/index.d.ts +0 -1
- package/dist/src/components/navigation/tabs/StyledTab.d.ts +17 -3
- package/dist/src/components/navigation/tabs/StyledTabs.d.ts +16 -7
- package/dist/src/components/navigation/tabs/TabsContext.d.ts +11 -0
- package/dist/src/components/utils/accordion/base-ui/AccordionContext.d.ts +10 -0
- package/dist/src/components/utils/accordion/base-ui/StyledAccordion.d.ts +9 -3
- package/dist/src/components/utils/accordion/base-ui/StyledAccordionDetails.d.ts +5 -0
- package/dist/src/components/utils/accordion/base-ui/StyledAccordionSummary.d.ts +8 -4
- 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 +32 -2
- 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 +1 -2
- 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 +1 -2
- package/dist/src/datetime/shared-components/StyledFormControl.d.ts +1 -2
- package/dist/src/datetime/shared-components/StyledInputField.d.ts +1 -12
- package/dist/src/datetime/shared-components/StyledSelect.d.ts +1 -16
- package/dist/src/datetime/shared-components/StyledSelectItem.d.ts +1 -2
- package/dist/src/datetime/shared-components/StyledTooltip.d.ts +1 -2
- package/dist/src/helpers/arrays.d.ts +2 -0
- package/dist/src/helpers/arrays.test.d.ts +1 -0
- package/dist/src/helpers/inputMask.d.ts +29 -0
- package/dist/src/helpers/inputMask.test.d.ts +1 -0
- package/dist/src/helpers/sx.d.ts +2 -0
- package/dist/src/helpers/sx.test.d.ts +1 -0
- package/dist/src/index.d.ts +1 -1
- package/dist/src/table/shared-components/StyledCheckbox.d.ts +7 -4
- package/dist/src/table/shared-components/StyledMenuItem.d.ts +18 -2
- package/dist/src/table/shared-components/menu-item/index.d.ts +13 -2
- package/dist/src/table/shared-components/tooltip/index.d.ts +5 -1
- 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 +26 -25
- package/dist/table/components/table-footer/TablePagination.js +27 -24
- package/dist/table/components/table-footer/TableRowCountSelect.js +30 -27
- package/dist/table/helpers/cn.js +4 -5
- package/dist/table/shared-components/StyledCheckbox.js +54 -55
- package/dist/table/shared-components/StyledCheckbox.module.js +10 -10
- package/dist/table/shared-components/StyledMenuItem.js +12 -18
- package/dist/table/shared-components/menu-item/index.js +13 -17
- package/dist/table/shared-components/tooltip/index.js +4 -23
- package/package.json +9 -16
- package/dist/components/feedback/dialog/StyledDialogActions.module.js +0 -8
- package/dist/components/feedback/dialog/StyledDialogContent.module.js +0 -4
- package/dist/components/feedback/dialog/StyledDialogTitle.module.js +0 -4
- package/dist/components/inputs/checkbox/StyledCheckbox.js +0 -20
- package/dist/components/inputs/radio-button/StyledRadio.js +0 -17
- package/dist/datetime/shared-components/ExpandIcon.js +0 -18
- package/dist/datetime/shared-components/StyledFormControl.js +0 -23
- package/dist/datetime/shared-components/StyledInputField.js +0 -47
- package/dist/datetime/shared-components/StyledSelect.js +0 -47
- package/dist/datetime/shared-components/StyledSelectItem.js +0 -13
- package/dist/datetime/shared-components/StyledTooltip.js +0 -32
- package/dist/src/components/inputs/checkbox/StyledCheckbox.d.ts +0 -4
- package/dist/src/components/inputs/radio-button/StyledRadio.d.ts +0 -4
- package/dist/src/components/inputs/radio-button/StyledRadioGroup.d.ts +0 -4
- package/dist/src/components/inputs/switch/StyledSwitch.d.ts +0 -5
- package/dist/src/components/utils/accordion/StyledAccordion.d.ts +0 -2
- package/dist/src/components/utils/accordion/StyledAccordionDetails.d.ts +0 -2
- package/dist/src/components/utils/accordion/StyledAccordionSummary.d.ts +0 -8
|
@@ -1,3 +1,17 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
export
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
|
+
import { TabValue } from './TabsContext';
|
|
3
|
+
export interface StyledTabProps {
|
|
4
|
+
value?: TabValue;
|
|
5
|
+
label?: ReactNode;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
className?: string;
|
|
8
|
+
sx?: unknown;
|
|
9
|
+
/** @internal Injected by `StyledTabs` so a value-less tab selects by position (MUI parity). */
|
|
10
|
+
index?: number;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Native tab button (replaces MUI `Tab`). Reads selection/size from the surrounding
|
|
14
|
+
* `StyledTabs` context and reports its node so the parent can position the active indicator.
|
|
15
|
+
* Public props (`value`/`label`/`disabled`/`className`) preserved (DEC-003). TASK-202.
|
|
16
|
+
*/
|
|
17
|
+
export declare const StyledTab: FC<StyledTabProps>;
|
|
@@ -1,11 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
1
|
+
import { FC, ReactNode, SyntheticEvent } from 'react';
|
|
2
|
+
import { TabValue } from './TabsContext';
|
|
3
|
+
export interface StyledTabsProps {
|
|
4
|
+
value?: TabValue;
|
|
5
|
+
onChange?(event: SyntheticEvent, value: TabValue): void;
|
|
6
|
+
variant?: 'standard' | 'scrollable' | 'fullWidth';
|
|
7
|
+
scrollButtons?: 'auto' | boolean;
|
|
8
|
+
centered?: boolean;
|
|
4
9
|
size?: 'default' | 'small';
|
|
5
|
-
|
|
10
|
+
className?: string;
|
|
11
|
+
sx?: unknown;
|
|
12
|
+
children?: ReactNode;
|
|
13
|
+
}
|
|
6
14
|
/**
|
|
7
|
-
*
|
|
8
|
-
*
|
|
15
|
+
* Native tablist (replaces MUI `Tabs`). Provides selection/size via context to `StyledTab`
|
|
16
|
+
* children, animates an underline indicator measured from the active tab, and — in the
|
|
17
|
+
* `scrollable` variant — shows overflow scroll buttons. Roving-tabindex arrow-key nav. Public
|
|
18
|
+
* props (`value`/`onChange`/`variant`/`scrollButtons`/`centered`/`size`) preserved (DEC-003). TASK-202.
|
|
9
19
|
*/
|
|
10
20
|
export declare const StyledTabs: FC<StyledTabsProps>;
|
|
11
|
-
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SyntheticEvent } from 'react';
|
|
2
|
+
export type TabValue = unknown;
|
|
3
|
+
export interface TabsContextValue {
|
|
4
|
+
value: TabValue;
|
|
5
|
+
size: 'default' | 'small';
|
|
6
|
+
onSelect: (event: SyntheticEvent, value: TabValue) => void;
|
|
7
|
+
/** Registers a tab button so the parent can measure the active indicator and drive arrow-key focus. */
|
|
8
|
+
register: (value: TabValue, node: HTMLButtonElement | null) => void;
|
|
9
|
+
}
|
|
10
|
+
export declare const TabsContext: import('node_modules/@types/react').Context<TabsContextValue | null>;
|
|
11
|
+
export declare const useTabsContext: () => TabsContextValue | null;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface AccordionContextValue {
|
|
2
|
+
open: boolean;
|
|
3
|
+
toggle: () => void;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
triggerId: string;
|
|
6
|
+
panelId: string;
|
|
7
|
+
}
|
|
8
|
+
/** Shared open-state + ARIA ids for the accordion compound (replaces `@base-ui/react`). */
|
|
9
|
+
export declare const AccordionContext: import('node_modules/@types/react').Context<AccordionContextValue | null>;
|
|
10
|
+
export declare const useAccordionContext: () => AccordionContextValue;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
-
interface StyledAccordionProps extends Omit<
|
|
3
|
+
interface StyledAccordionProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange' | 'defaultValue'> {
|
|
4
4
|
className?: string;
|
|
5
5
|
children: React.ReactNode;
|
|
6
6
|
expanded?: boolean;
|
|
7
7
|
defaultExpanded?: boolean;
|
|
8
|
+
disabled?: boolean;
|
|
8
9
|
onChange?: (expanded: boolean) => void;
|
|
9
10
|
}
|
|
10
|
-
|
|
11
|
+
/**
|
|
12
|
+
* Native accordion root (replaces `@base-ui/react`): owns the open state (controlled via `expanded`
|
|
13
|
+
* or uncontrolled via `defaultExpanded`) and shares it with `StyledAccordionSummary`/`Details`
|
|
14
|
+
* through context. TASK-201.
|
|
15
|
+
*/
|
|
16
|
+
export declare const StyledAccordion: ({ className, children, expanded, defaultExpanded, disabled, onChange, ...props }: StyledAccordionProps) => JSX.Element;
|
|
11
17
|
export {};
|
|
@@ -2,5 +2,10 @@ import * as React from 'react';
|
|
|
2
2
|
type StyledAccordionDetailsProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
3
3
|
contentClassName?: string;
|
|
4
4
|
};
|
|
5
|
+
/**
|
|
6
|
+
* Native accordion panel (replaces `@base-ui/react`): a `role="region"` whose height animates
|
|
7
|
+
* between 0 and its measured content height via the SCSS `--accordion-panel-height` var (was
|
|
8
|
+
* base-ui-provided). Kept `hidden` when closed after the transition for a11y. TASK-201.
|
|
9
|
+
*/
|
|
5
10
|
export declare const StyledAccordionDetails: ({ children, className, contentClassName, ...props }: StyledAccordionDetailsProps) => JSX.Element;
|
|
6
11
|
export {};
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
import { Accordion } from '@base-ui/react/accordion';
|
|
2
1
|
import * as React from 'react';
|
|
3
2
|
export type StyledAccordionSummarySize = 'small' | 'large';
|
|
4
|
-
export interface StyledAccordionSummaryProps extends React.
|
|
5
|
-
headerClassName?: string
|
|
3
|
+
export interface StyledAccordionSummaryProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'type'> {
|
|
4
|
+
headerClassName?: string;
|
|
6
5
|
size?: StyledAccordionSummarySize;
|
|
7
6
|
expandChevronRight?: boolean;
|
|
8
7
|
sx?: React.CSSProperties;
|
|
9
8
|
}
|
|
10
|
-
|
|
9
|
+
/**
|
|
10
|
+
* Native accordion trigger (replaces `@base-ui/react`): a `<button aria-expanded aria-controls>`
|
|
11
|
+
* inside a header, toggling the shared context. `data-panel-open` drives the chevron rotation in
|
|
12
|
+
* SCSS. TASK-201.
|
|
13
|
+
*/
|
|
14
|
+
export declare const StyledAccordionSummary: ({ size, expandChevronRight, className, headerClassName, sx, children, onClick, ...rest }: StyledAccordionSummaryProps) => JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AlertColor } from '
|
|
1
|
+
import { AlertColor } from '../../feedback/snack-bar/StyledAlert';
|
|
2
2
|
import { SnackbarProviderProps } from 'notistack';
|
|
3
3
|
import { FC, PropsWithChildren, ReactNode } from 'react';
|
|
4
4
|
export type MessageProps = SnackbarProviderProps & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React, ReactNode } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { StyledPopoverProps } from '../popover';
|
|
3
3
|
/**
|
|
4
4
|
* Custom props:
|
|
5
5
|
* @param filterIsActive - needed to determine whether or not to show the dot in the top right corner indicating some changes were made
|
|
@@ -16,7 +16,7 @@ interface StyledFilterMenuProps {
|
|
|
16
16
|
disabled?: boolean;
|
|
17
17
|
size?: 'small' | 'large' | 'medium';
|
|
18
18
|
variant?: 'contained' | 'outlined' | 'text' | 'textGray';
|
|
19
|
-
popoverProps?: Omit<
|
|
19
|
+
popoverProps?: Omit<StyledPopoverProps, 'open' | 'anchorEl' | 'onClose' | 'children'>;
|
|
20
20
|
anchorNode?: (props: {
|
|
21
21
|
isOpen: boolean;
|
|
22
22
|
onClose: () => void;
|
|
@@ -1,2 +1,32 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
export interface PopoverOrigin {
|
|
3
|
+
vertical: 'top' | 'center' | 'bottom' | number;
|
|
4
|
+
horizontal: 'left' | 'center' | 'right' | number;
|
|
5
|
+
}
|
|
6
|
+
export type PopoverCloseReason = 'backdropClick' | 'escapeKeyDown';
|
|
7
|
+
export interface StyledPopoverProps {
|
|
8
|
+
open: boolean;
|
|
9
|
+
anchorEl?: Element | null;
|
|
10
|
+
onClose?: (event: object, reason?: PopoverCloseReason) => void;
|
|
11
|
+
anchorOrigin?: PopoverOrigin;
|
|
12
|
+
transformOrigin?: PopoverOrigin;
|
|
13
|
+
id?: string;
|
|
14
|
+
className?: string;
|
|
15
|
+
sx?: unknown;
|
|
16
|
+
slotProps?: {
|
|
17
|
+
paper?: {
|
|
18
|
+
className?: string;
|
|
19
|
+
sx?: unknown;
|
|
20
|
+
style?: React.CSSProperties;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
onClick?: (event: React.MouseEvent<HTMLDivElement>) => void;
|
|
24
|
+
children?: ReactNode;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Anchored popover built on `@floating-ui/react` (replaces MUI `Popover`). Positions against
|
|
28
|
+
* `anchorEl`, flips/shifts on collision, portalled, and closes on outside-press/escape mapping to
|
|
29
|
+
* MUI's `onClose(event, reason)`. `anchorOrigin`/`transformOrigin`/`slotProps.paper` preserved
|
|
30
|
+
* (DEC-003). TASK-302.
|
|
31
|
+
*/
|
|
32
|
+
export declare const StyledPopover: ({ open, anchorEl, onClose, anchorOrigin, transformOrigin, id, className, sx, slotProps, onClick, children, }: StyledPopoverProps) => JSX.Element | null;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DatePickerProps } from '../types';
|
|
2
|
-
import { PopoverProps } from '
|
|
2
|
+
import { StyledPopoverProps as PopoverProps } from '../../../../components/utils/popover';
|
|
3
3
|
export declare const StyledCalendarPicker: React.FC<{
|
|
4
4
|
datePickerProps: DatePickerProps;
|
|
5
5
|
popoverProps: PopoverProps;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DatePickerProps } from '../types';
|
|
2
|
-
import { PopoverProps } from '
|
|
2
|
+
import { StyledPopoverProps as PopoverProps } from '../../../../components/utils/popover';
|
|
3
3
|
export declare const StyledDayPicker: React.FC<{
|
|
4
4
|
datePickerProps: DatePickerProps;
|
|
5
5
|
popoverProps: PopoverProps;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { StyledTimePickerProps } from './types';
|
|
2
|
-
import { PopupState } from '
|
|
2
|
+
import { PopupState } from '../../../hooks/usePopupState';
|
|
3
3
|
import { ChangeEvent } from 'react';
|
|
4
4
|
export declare const TimePickerInput: React.FC<StyledTimePickerProps & {
|
|
5
5
|
popupState: PopupState;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PopupState } from '
|
|
1
|
+
import { PopupState } from '../../../hooks/usePopupState';
|
|
2
2
|
import { StyledTimePickerProps } from './types';
|
|
3
3
|
export declare const TimePickerPopper: React.FC<StyledTimePickerProps & {
|
|
4
4
|
popupState: PopupState;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { default as PopupState } from 'material-ui-popup-state';
|
|
2
1
|
import { ReactNode } from 'react';
|
|
3
2
|
/**
|
|
4
3
|
* @param notBeforeTime - Start time of the range. Selected time must be after this value.
|
|
@@ -19,4 +18,4 @@ export interface StyledTimePickerProps {
|
|
|
19
18
|
title?: string;
|
|
20
19
|
notBeforeTime?: Date;
|
|
21
20
|
}
|
|
22
|
-
export type IPopupStateType =
|
|
21
|
+
export type IPopupStateType = JSX.Element;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const StyledFormControl: (props: FormControlProps) => JSX.Element;
|
|
1
|
+
export { StyledFormControl, type FormControlProps } from '../../components/miscellaneous/StyledFormControl';
|
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
*
|
|
4
|
-
* @inputRef
|
|
5
|
-
* inputRef to get Node of Input Element inside
|
|
6
|
-
*
|
|
7
|
-
* type='mui-input' is temporary, remove it after deleting antd from all projects. Antd lib overwrites styles for type[text]
|
|
8
|
-
*/
|
|
9
|
-
export declare const StyledInputField: React.FC<TextFieldProps & {
|
|
10
|
-
readOnly?: boolean;
|
|
11
|
-
dataTest: string;
|
|
12
|
-
}>;
|
|
1
|
+
export { StyledInputField, type StyledInputFieldProps } from '../../components/inputs/input-field/StyledInputField';
|
|
@@ -1,16 +1 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
*
|
|
4
|
-
* @usage
|
|
5
|
-
* use StyleSelect only inside StyledFormControl
|
|
6
|
-
*
|
|
7
|
-
* @size
|
|
8
|
-
* control the size through StyledFormControl
|
|
9
|
-
*
|
|
10
|
-
* @inputRef
|
|
11
|
-
* inputRef to get Node of Input Element inside
|
|
12
|
-
*
|
|
13
|
-
*/
|
|
14
|
-
export declare const StyledSelect: React.FC<SelectProps & {
|
|
15
|
-
dataTest: string;
|
|
16
|
-
}>;
|
|
1
|
+
export { StyledSelect, type StyledSelectProps, type SelectChangeEvent } from '../../components/inputs/select/StyledSelect';
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const StyledSelectItem: (item: MenuItemProps) => JSX.Element;
|
|
1
|
+
export { StyledSelectItem, type StyledSelectItemProps } from '../../components/inputs/select/StyledSelectItem';
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const StyledTooltip: (props: TooltipProps) => JSX.Element;
|
|
1
|
+
export { StyledTooltip, type TooltipProps } from '../../components/data-display/tooltip/StyledTooltip';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dependency-free input masking — replaces `@react-input/mask` for the two masks this library
|
|
3
|
+
* actually uses: the date scaffold `' / / '` (showMask) and the progressive time mask
|
|
4
|
+
* `'xx:xx'`. Slots (positions equal to `maskChar`) accept digits; every other mask character is a
|
|
5
|
+
* literal.
|
|
6
|
+
*/
|
|
7
|
+
export interface InputMaskSpec {
|
|
8
|
+
/** Mask template, e.g. `' / / '` or `'xx:xx'`. */
|
|
9
|
+
mask: string;
|
|
10
|
+
/** The character in `mask` marking a fillable slot, e.g. `' '` or `'x'`. */
|
|
11
|
+
maskChar: string;
|
|
12
|
+
/** true → render the full scaffold once any digit is present; false → grow as the user types. */
|
|
13
|
+
showMask: boolean;
|
|
14
|
+
}
|
|
15
|
+
export interface MaskedResult {
|
|
16
|
+
value: string;
|
|
17
|
+
caret: number;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Pure formatter: distributes the digits of `raw` over the mask slots and computes the caret
|
|
21
|
+
* position that follows the last digit typed before `caretInRaw`. Zero digits always yield an
|
|
22
|
+
* empty value so the input's placeholder shows.
|
|
23
|
+
*/
|
|
24
|
+
export declare const formatMaskedValue: (raw: string, caretInRaw: number, spec: InputMaskSpec) => MaskedResult;
|
|
25
|
+
/**
|
|
26
|
+
* Ref-callback hook applying `formatMaskedValue` on every native `input` event, before React's
|
|
27
|
+
* delegated onChange reads the value — a drop-in for `useMask` from `@react-input/mask`.
|
|
28
|
+
*/
|
|
29
|
+
export declare const useInputMask: ({ mask, maskChar, showMask }: InputMaskSpec) => ((element: HTMLInputElement | null) => void);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/src/index.d.ts
CHANGED
|
@@ -50,4 +50,4 @@ export * from './components/custom/module/module-title/StyledModuleTitle';
|
|
|
50
50
|
export * from './components/custom/module/header-layout';
|
|
51
51
|
export * from './components/feedback/minimizable-dialog';
|
|
52
52
|
export * from './hooks/usePopupState';
|
|
53
|
-
export {
|
|
53
|
+
export { Paper, ClickAwayListener, Avatar, Skeleton, Container, Stack, FormLabel, Fade, Popper, } from './components/mui-compat';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { default as React, SVGProps } from 'react';
|
|
2
|
-
import { Checkbox } from '@base-ui/react/checkbox';
|
|
1
|
+
import { default as React, ChangeEvent, SVGProps } from 'react';
|
|
3
2
|
type StyledCheckboxProps = {
|
|
4
3
|
dataTest: string;
|
|
5
4
|
size?: 'small' | 'medium';
|
|
@@ -8,9 +7,13 @@ type StyledCheckboxProps = {
|
|
|
8
7
|
disableRipple?: boolean;
|
|
9
8
|
hideWrapper?: boolean;
|
|
10
9
|
className?: string;
|
|
11
|
-
onChange?: (event:
|
|
12
|
-
} & Omit<React.
|
|
10
|
+
onChange?: (event: ChangeEvent<HTMLInputElement>, checked: boolean) => void;
|
|
11
|
+
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'onChange' | 'size' | 'checked' | 'type'>;
|
|
13
12
|
export declare const IndeterminateIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
14
13
|
export declare const CheckIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
14
|
+
/**
|
|
15
|
+
* Table's native `<input type="checkbox">` (replaces `@base-ui/react`). Mirrors the main
|
|
16
|
+
* `StyledCheckbox`; state drives the SCSS `data-*` selectors. TASK-201.
|
|
17
|
+
*/
|
|
15
18
|
export declare const StyledCheckbox: React.FC<StyledCheckboxProps>;
|
|
16
19
|
export {};
|
|
@@ -1,2 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
1
|
+
import { MouseEvent, ReactNode } from 'react';
|
|
2
|
+
export interface StyledMenuItemProps {
|
|
3
|
+
children?: ReactNode;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
selected?: boolean;
|
|
6
|
+
className?: string;
|
|
7
|
+
classes?: {
|
|
8
|
+
root?: string;
|
|
9
|
+
};
|
|
10
|
+
onClick?: (event: MouseEvent<HTMLLIElement>) => void;
|
|
11
|
+
onMouseDown?: (event: MouseEvent<HTMLLIElement>) => void;
|
|
12
|
+
onMouseUp?: (event: MouseEvent<HTMLLIElement>) => void;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Table row-action menu item (replaces MUI `MenuItem`). Native `role="menuitem"`; disabled stays
|
|
16
|
+
* focusable but non-interactive. TASK-404.
|
|
17
|
+
*/
|
|
18
|
+
export declare const StyledMenuItem: ({ children, disabled, selected, className, classes, onClick, onMouseDown, onMouseUp, }: StyledMenuItemProps) => JSX.Element;
|
|
@@ -1,2 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
1
|
+
import { MouseEvent, ReactNode } from 'react';
|
|
2
|
+
export interface MenuItemProps {
|
|
3
|
+
children?: ReactNode;
|
|
4
|
+
selected?: boolean;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
className?: string;
|
|
7
|
+
onClick?: (event: MouseEvent<HTMLLIElement>) => void;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Table menu item with a leading check column (replaces MUI `MenuItem`). Native `role="menuitem"`.
|
|
11
|
+
* TASK-404.
|
|
12
|
+
*/
|
|
13
|
+
export declare const StyledMenuItem: ({ children, selected, disabled, className, onClick }: MenuItemProps) => JSX.Element;
|
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
import { TooltipProps } from '
|
|
1
|
+
import { TooltipProps } from '../../../components/data-display/tooltip/StyledTooltip';
|
|
2
|
+
/**
|
|
3
|
+
* Table tooltip — the core `StyledTooltip` (MUI-free) with the table's arrow + top-placement
|
|
4
|
+
* defaults. TASK-404.
|
|
5
|
+
*/
|
|
2
6
|
export declare const StyledTooltip: (props: TooltipProps) => JSX.Element;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ColumnPinningColumnDef, ColumnSizingColumnDef, GroupingColumnDef, RowData, SortingColumnDef, VisibilityColumnDef, AccessorFn, ColumnDefTemplate, CellContext, ColumnMeta, HeaderContext, Row, RowModel, TableOptions, Table, ColumnDef } from '@tanstack/react-table';
|
|
2
2
|
import { CSSProperties, MouseEvent, MutableRefObject, ReactElement, ReactNode } from 'react';
|
|
3
3
|
import { ExpandedRow, ExpandedRowsInstance, ExpandedRowsOptions, ExpandedRowsTableState } from './custom-features/expand-rows';
|
|
4
|
-
import { TooltipProps } from '
|
|
4
|
+
import { TooltipProps } from '../components/data-display/tooltip/StyledTooltip';
|
|
5
5
|
import { FocusedRowsOptions, FocusedRowsTableState, FocusedRow, FocusedRowsInstance } from './custom-features/focus-rows';
|
|
6
6
|
import { OrderedColumnsOptions, OrderedColumnsTableState } from './custom-features/order-columns';
|
|
7
7
|
import { RowSelectionTooltipOptions, RowSelectionTooltipRow } from './custom-features/row-selection-tooltip';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import o from "
|
|
2
|
-
import
|
|
1
|
+
import { LoadingIcon as o } from "../shared-components/LoadingIcon.js";
|
|
2
|
+
import i from "./StyledTable.module.js";
|
|
3
3
|
import { jsx as e } from "react/jsx-runtime";
|
|
4
4
|
var m = ({ fetching: t = !1 }) => t ? /* @__PURE__ */ e("div", {
|
|
5
5
|
className: "absolute bottom-0 left-0 right-0 top-0 z-10 flex items-center justify-center bg-white/40",
|
|
6
|
-
children: /* @__PURE__ */ e(
|
|
7
|
-
className:
|
|
6
|
+
children: /* @__PURE__ */ e(o, {
|
|
7
|
+
className: i["loading-icon"],
|
|
8
8
|
width: 50,
|
|
9
9
|
height: 50
|
|
10
10
|
})
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ACTIONS_COLUMN_ID as U } from "../types.js";
|
|
2
2
|
import { useRootContext as se } from "../context/RootContext.js";
|
|
3
3
|
import n from "./StyledTable.module.js";
|
|
4
|
+
import { compact as ae } from "../../helpers/arrays.js";
|
|
4
5
|
import W from "clsx";
|
|
5
|
-
import { Fragment as
|
|
6
|
-
import { Fragment as
|
|
7
|
-
import { compact as me } from "lodash-es";
|
|
6
|
+
import { Fragment as de, useCallback as ce, useEffect as re, useMemo as g } from "react";
|
|
7
|
+
import { Fragment as me, jsx as l, jsxs as p } from "react/jsx-runtime";
|
|
8
8
|
import { useSortable as ge } from "@dnd-kit/sortable";
|
|
9
9
|
import { flexRender as ue } from "@tanstack/react-table";
|
|
10
10
|
import { CSS as fe } from "@dnd-kit/utilities";
|
|
@@ -19,7 +19,7 @@ function ve({ styledTableProps: _, row: t, index: H, columnWindow: { paddingLeft
|
|
|
19
19
|
zIndex: A ? 1 : 0,
|
|
20
20
|
position: "relative"
|
|
21
21
|
}, { isResizing: ee, disableResizingFlag: te } = se();
|
|
22
|
-
|
|
22
|
+
re(() => {
|
|
23
23
|
K && t.getCanExpand() && !t.getIsExpanded() && t.toggleExpand();
|
|
24
24
|
}, []);
|
|
25
25
|
const B = (e) => {
|
|
@@ -34,7 +34,7 @@ function ve({ styledTableProps: _, row: t, index: H, columnWindow: { paddingLeft
|
|
|
34
34
|
})), T = g(() => r.filter((e) => !e.column.columnDef.fixedLeft && !e.column.columnDef.fixedRight && e.column.id !== "actions"), [r]), a = g(() => r.filter((e) => !!e.column.columnDef.fixedRight || e.column.id === "actions").map((e, i, o) => ({
|
|
35
35
|
...e,
|
|
36
36
|
right: o.slice(i + 1).reduce((d, c) => d + (c.column.getSize() ?? 0), 0)
|
|
37
|
-
})), [r]), L = g(() => a.some((e) => e.column.id === U), [a]), h = !!C || !!V, M = g(() => a.some((e) => !!e.column.columnDef.fixedRight), [a]), m = g(() => r.filter((e) => e.column.columnDef.fixedLeft), [r]), S = !Y && !q && G, b = t.getIsSelected() && S, R = x instanceof Function, z = F.length > 0 ?
|
|
37
|
+
})), [r]), L = g(() => a.some((e) => e.column.id === U), [a]), h = !!C || !!V, M = g(() => a.some((e) => !!e.column.columnDef.fixedRight), [a]), m = g(() => r.filter((e) => e.column.columnDef.fixedLeft), [r]), S = !Y && !q && G, b = t.getIsSelected() && S, R = x instanceof Function, z = F.length > 0 ? ae(F.map((e) => T[e])) : T, D = ce((e, i) => {
|
|
38
38
|
const o = e.column.id === U, d = e.column.columnDef.fixedLeft, c = !!e.column.columnDef.fixedRight, ie = e.id === m.at(-1)?.id, oe = e.id === a.at(0)?.id && !o, le = t.isExpanded(), k = i === 0;
|
|
39
39
|
return /* @__PURE__ */ l("td", {
|
|
40
40
|
className: W(n["t-cell"], R && "cursor-pointer", N, o && n["action-cell"], o && !h && n["action-cell--not-fixed"], o && h && M && n["action-cell--no-shadow"], o && h && !!C && m.length && n.shadowed, o && (s?.(t) ? s?.(t) : n["action-cell-default-background"]), d && n["fixed-cell"], c && n["fixed-right-cell"], ie && n.shadowed, oe && n["shadowed-right"], t.getIsSelected() && n.selected, d && (s?.(t) ? s?.(t) : n["fixed-cell-default-background"]), c && (s?.(t) ? s?.(t) : n["fixed-right-cell-default-background"]), le && n.expanded_row, (!!b || t.isFocused()) && n["single-selection"]),
|
|
@@ -82,7 +82,7 @@ function ve({ styledTableProps: _, row: t, index: H, columnWindow: { paddingLeft
|
|
|
82
82
|
S,
|
|
83
83
|
N
|
|
84
84
|
]);
|
|
85
|
-
return /* @__PURE__ */ p(
|
|
85
|
+
return /* @__PURE__ */ p(de, { children: [/* @__PURE__ */ p("tr", {
|
|
86
86
|
"aria-selected": t.getIsSelected() || t.isFocused() ? "true" : "false",
|
|
87
87
|
tabIndex: t.isFocused() ? 0 : -1,
|
|
88
88
|
"data-index": H,
|
|
@@ -139,7 +139,7 @@ function ve({ styledTableProps: _, row: t, index: H, columnWindow: { paddingLeft
|
|
|
139
139
|
}),
|
|
140
140
|
a.map((e, i) => D(e, m.length + z.length + i))
|
|
141
141
|
]
|
|
142
|
-
}), t.getIsExpanded() && /* @__PURE__ */ l(
|
|
142
|
+
}), t.getIsExpanded() && /* @__PURE__ */ l(me, { children: I && P?.({
|
|
143
143
|
rows: I.get(t.original.id.toString()) ?? [],
|
|
144
144
|
row: t.original
|
|
145
145
|
}) })] }, t.id);
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import a from "
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
1
|
+
import { Skeleton as a } from "../../components/mui-compat/Skeleton.js";
|
|
2
|
+
import l from "./TableSkeleton.module.js";
|
|
3
|
+
import { Fragment as m } from "react";
|
|
4
4
|
import { jsx as r } from "react/jsx-runtime";
|
|
5
|
-
var p = (({ colSpan: o, rowHeight: t = 48 }) => /* @__PURE__ */ r(
|
|
5
|
+
var p = (({ colSpan: o, rowHeight: t = 48 }) => /* @__PURE__ */ r(m, { children: Array.from({ length: 10 }).map((i, e) => /* @__PURE__ */ r("tr", { children: /* @__PURE__ */ r("td", {
|
|
6
6
|
colSpan: o,
|
|
7
7
|
height: t,
|
|
8
|
-
className:
|
|
9
|
-
children: /* @__PURE__ */ r(
|
|
8
|
+
className: l["skeleton-row"],
|
|
9
|
+
children: /* @__PURE__ */ r(a, {
|
|
10
10
|
variant: "rectangular",
|
|
11
11
|
width: "100%",
|
|
12
12
|
height: 40,
|