@am92/react-design-system 3.0.1-beta.0 → 3.0.1-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Components/DsAddItem/DsAddItem.Component.d.ts +2 -0
- package/dist/Components/DsAddItem/DsAddItem.Component.js +105 -0
- package/dist/Components/DsAddItem/DsAddItem.Overrides.d.ts +5 -0
- package/dist/Components/DsAddItem/DsAddItem.Overrides.js +6 -0
- package/dist/Components/DsAddItem/DsAddItem.Types.d.ts +78 -0
- package/dist/Components/DsAddItem/DsAddItem.Types.js +35 -0
- package/dist/Components/DsAddItem/Slots/DsAddItemActionIcon.Slot.d.ts +3 -0
- package/dist/Components/DsAddItem/Slots/DsAddItemActionIcon.Slot.js +9 -0
- package/dist/Components/DsAddItem/Slots/DsAddItemCounterText.Slot.d.ts +3 -0
- package/dist/Components/DsAddItem/Slots/DsAddItemCounterText.Slot.js +15 -0
- package/dist/Components/DsAddItem/index.d.ts +3 -0
- package/dist/Components/DsAddItem/index.js +3 -0
- package/dist/Components/DsBadge/DsBadge.Component.d.ts +2 -1
- package/dist/Components/DsBadge/DsBadge.Component.js +11 -1
- package/dist/Components/DsBadge/DsBadge.Overrides.d.ts +23 -1
- package/dist/Components/DsBadge/DsBadge.Overrides.js +23 -0
- package/dist/Components/DsBadge/DsBadge.Types.d.ts +5 -1
- package/dist/Components/DsButton/DsButton.Overrides.js +3 -0
- package/dist/Components/DsDialog/DsDialog.Component.js +3 -3
- package/dist/Components/DsDialog/DsDialog.Types.d.ts +3 -1
- package/dist/Components/DsFab/DsFab.Overrides.js +7 -3
- package/dist/Components/DsInputAdornment/DsInputAdornment.Overrides.d.ts +1 -1
- package/dist/Components/DsInputAdornment/DsInputAdornment.Overrides.js +1 -1
- package/dist/Components/DsLoader/SingleDotLoader.js +3 -1
- package/dist/Components/DsLoader/ThreeDotLoader.js +3 -1
- package/dist/Components/DsProgressTracker/Components/DsProgressTrackerHeader.Component.js +4 -4
- package/dist/Components/DsTabs/DsTabs.Overrides.d.ts +2 -2
- package/dist/Components/DsTabs/DsTabs.Overrides.js +79 -39
- package/dist/Components/DsTabs/DsTabs.Types.d.ts +2 -2
- package/dist/Components/DsTabs/DsTabs.Types.js +2 -2
- package/dist/Components/DsTag/DsTag.Component.js +29 -9
- package/dist/Components/DsToast/DsToast.Overrides.d.ts +1 -1
- package/dist/Components/DsToast/DsToast.Overrides.js +1 -1
- package/dist/Components/index.d.ts +1 -0
- package/dist/Components/index.js +1 -0
- package/dist/Constants/PALETTE.js +1 -1
- package/dist/Hooks/nonce.d.ts +1 -0
- package/dist/Hooks/nonce.js +5 -0
- package/dist/Theme/componentOverrides.d.ts +26 -2
- package/dist/Theme/componentOverrides.js +2 -1
- package/dist/Theme/getColorScheme/highContrast.js +1 -1
- package/dist/Theme/getColorScheme/light.js +2 -2
- package/dist/Theme/index.d.ts +5 -0
- package/dist/Theme/radius.js +1 -0
- package/dist/Theme/spacing.js +1 -0
- package/dist/Types/DsRadius.d.ts +1 -1
- package/dist/Types/DsSpacing.d.ts +1 -1
- package/dist/emotionReact.d.ts +1 -0
- package/dist/emotionReact.js +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/x-charts/Components/index.d.ts +2 -0
- package/dist/x-charts/Components/index.js +2 -0
- package/dist/x-charts/Hooks/index.d.ts +3 -0
- package/dist/x-charts/Hooks/index.js +5 -0
- package/dist/x-charts/index.d.ts +1 -0
- package/dist/x-charts/index.js +1 -0
- package/package.json +5 -5
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useEffect, useMemo, useState } from "react";
|
|
3
|
+
import { DsAddItemDefaultProps, DEFAULT_STEP_VALUE, } from "./DsAddItem.Types";
|
|
4
|
+
import STATE_STYLES from "../../Theme/STATE_STYLES";
|
|
5
|
+
import { DsButtonBase } from "../DsButtonBase";
|
|
6
|
+
import { DsBox } from "../DsBox";
|
|
7
|
+
export const DsAddItem = (inProps) => {
|
|
8
|
+
const mergedSlots = {
|
|
9
|
+
...DsAddItemDefaultProps.slots,
|
|
10
|
+
...(inProps.slots || {}),
|
|
11
|
+
};
|
|
12
|
+
const mergedSlotProps = {
|
|
13
|
+
...DsAddItemDefaultProps.slotProps,
|
|
14
|
+
...(inProps.slotProps || {}),
|
|
15
|
+
};
|
|
16
|
+
const props = {
|
|
17
|
+
...DsAddItemDefaultProps,
|
|
18
|
+
...inProps,
|
|
19
|
+
slots: mergedSlots,
|
|
20
|
+
slotProps: mergedSlotProps,
|
|
21
|
+
};
|
|
22
|
+
const { value, label, maxValue, minValue, step, slots, slotProps, disabled, onChange, name, loading, ...restProps } = props;
|
|
23
|
+
const isControlled = typeof value === "number";
|
|
24
|
+
const { LeftIconButton, RightIconButton, CounterText } = slots;
|
|
25
|
+
// Internal state for count value, initialized based on control mode
|
|
26
|
+
const [countValue, setCountValue] = useState(isControlled ? value : 0);
|
|
27
|
+
// Component is in "empty" state when count is 0 (shows single Add button)
|
|
28
|
+
const isEmptyCount = countValue === 0;
|
|
29
|
+
useEffect(() => {
|
|
30
|
+
if (isControlled && value !== countValue) {
|
|
31
|
+
setCountValue(value);
|
|
32
|
+
}
|
|
33
|
+
}, [value]);
|
|
34
|
+
const isAddDisabled = disabled || loading || (maxValue !== undefined && countValue >= maxValue);
|
|
35
|
+
const isSubtractDisabled = disabled || loading;
|
|
36
|
+
// Helper function to check if value is below minValue threshold
|
|
37
|
+
const isBelowMinValue = (value) => {
|
|
38
|
+
return minValue !== undefined && value < minValue;
|
|
39
|
+
};
|
|
40
|
+
// Helper function to calculate new value based on operation
|
|
41
|
+
const calculateNewValue = (operation) => {
|
|
42
|
+
const stepValue = step ?? DEFAULT_STEP_VALUE;
|
|
43
|
+
return operation === "add"
|
|
44
|
+
? countValue + stepValue
|
|
45
|
+
: countValue - stepValue;
|
|
46
|
+
};
|
|
47
|
+
const handleAdd = (e) => {
|
|
48
|
+
e.stopPropagation();
|
|
49
|
+
if (!isAddDisabled) {
|
|
50
|
+
let newValue = calculateNewValue("add");
|
|
51
|
+
// Jump to minValue if increment would result in a value below minimum threshold
|
|
52
|
+
if (isBelowMinValue(newValue)) {
|
|
53
|
+
newValue = minValue;
|
|
54
|
+
}
|
|
55
|
+
if (!isControlled) {
|
|
56
|
+
setCountValue(newValue);
|
|
57
|
+
}
|
|
58
|
+
if (typeof onChange === "function")
|
|
59
|
+
onChange(name, newValue, "increment");
|
|
60
|
+
}
|
|
61
|
+
};
|
|
62
|
+
const handleSubtract = (e) => {
|
|
63
|
+
e.stopPropagation();
|
|
64
|
+
if (!isSubtractDisabled) {
|
|
65
|
+
let newValue = calculateNewValue("subtract");
|
|
66
|
+
// Reset to 0 if would go negative or below minValue (back to "add" state)
|
|
67
|
+
if (newValue < 0 || isBelowMinValue(newValue)) {
|
|
68
|
+
newValue = 0;
|
|
69
|
+
}
|
|
70
|
+
if (!isControlled) {
|
|
71
|
+
setCountValue(newValue);
|
|
72
|
+
}
|
|
73
|
+
if (typeof onChange === "function")
|
|
74
|
+
onChange(name, newValue, "decrement");
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
const fabSx = useMemo(() => ({
|
|
78
|
+
px: "var(--ds-spacing-glacial)",
|
|
79
|
+
pt: isEmptyCount ? "var(--ds-spacing-quickFreeze)" : 0,
|
|
80
|
+
pb: isEmptyCount ? "var(--ds-spacing-quickFreeze)" : 0,
|
|
81
|
+
minWidth: "90px",
|
|
82
|
+
minHeight: "var(--ds-spacing-tepid)",
|
|
83
|
+
borderRadius: "var(--ds-radius-cool)",
|
|
84
|
+
boxShadow: "var(--ds-elevation-8)",
|
|
85
|
+
background: "var(--ds-colour-surfacePrimary)",
|
|
86
|
+
"&:hover": {
|
|
87
|
+
background: "var(--ds-colour-surfacePrimary) !important",
|
|
88
|
+
},
|
|
89
|
+
...STATE_STYLES.SURFACE_SECONDARY_STATE_PRIMARY,
|
|
90
|
+
pointerEvents: !isEmptyCount && disabled ? "none" : "auto",
|
|
91
|
+
"&.Mui-disabled": {
|
|
92
|
+
background: "var(--ds-colour-stateDisabledSurface) !important",
|
|
93
|
+
},
|
|
94
|
+
...restProps.sx,
|
|
95
|
+
}), [isEmptyCount, disabled, restProps.sx]);
|
|
96
|
+
const boxSx = useMemo(() => ({
|
|
97
|
+
...fabSx,
|
|
98
|
+
display: "flex",
|
|
99
|
+
justifyContent: "center",
|
|
100
|
+
alignItems: "center",
|
|
101
|
+
...restProps.sx,
|
|
102
|
+
}), [fabSx, restProps.sx]);
|
|
103
|
+
const counterTextElement = CounterText && (_jsx(CounterText, { value: countValue, label: label ?? "", disabled: disabled ?? false, ...slotProps?.CounterText }));
|
|
104
|
+
return isEmptyCount ? (_jsx(DsButtonBase, { "aria-label": label, "aria-disabled": disabled, color: "default", ...restProps, onClick: isEmptyCount ? handleAdd : undefined, sx: fabSx, disableRipple: !isEmptyCount || disabled, children: counterTextElement })) : (_jsxs(DsBox, { component: "div", "aria-label": label, "aria-disabled": disabled, color: "default", ...restProps, onClick: isEmptyCount ? handleAdd : undefined, sx: boxSx, children: [!isEmptyCount && LeftIconButton && (_jsx(LeftIconButton, { disabled: isSubtractDisabled, onClick: handleSubtract, "aria-label": "Decrease value", ...slotProps?.LeftIconButton })), counterTextElement, !isEmptyCount && RightIconButton && (_jsx(RightIconButton, { onClick: handleAdd, disabled: isAddDisabled, "aria-label": "Increase value", ...slotProps?.RightIconButton }))] }));
|
|
105
|
+
};
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import type { ComponentType } from "react";
|
|
2
|
+
import { DsButtonBaseProps } from "../DsButtonBase";
|
|
3
|
+
import { DsTypographyProps } from "../DsTypography";
|
|
4
|
+
import { DsIconButtonProps } from "../DsIconButton";
|
|
5
|
+
import { DsRemixIconProps } from "../DsRemixIcon";
|
|
6
|
+
/**
|
|
7
|
+
* Default step value for increment/decrement operations
|
|
8
|
+
*/
|
|
9
|
+
export declare const DEFAULT_STEP_VALUE = 1;
|
|
10
|
+
/**
|
|
11
|
+
* Props for action buttons (left/right) within the add item component
|
|
12
|
+
* Extends DsIconButtonProps with optional icon configuration
|
|
13
|
+
*/
|
|
14
|
+
export interface DsAddItemActionButtonProps extends DsIconButtonProps {
|
|
15
|
+
/** Props for the icon within the action button */
|
|
16
|
+
IconProps?: Omit<DsRemixIconProps, "ref">;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Props for the counter text display showing current count
|
|
20
|
+
*/
|
|
21
|
+
export interface DsAddItemCounterTextProps extends DsTypographyProps {
|
|
22
|
+
label: string;
|
|
23
|
+
value: number;
|
|
24
|
+
disabled: boolean;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Slots configuration for customizing components
|
|
28
|
+
*/
|
|
29
|
+
export interface DsAddItemSlots {
|
|
30
|
+
/** Component for the left (subtract) icon button */
|
|
31
|
+
LeftIconButton?: ComponentType<DsAddItemActionButtonProps>;
|
|
32
|
+
/** Component for the right (add) icon button */
|
|
33
|
+
RightIconButton?: ComponentType<DsAddItemActionButtonProps>;
|
|
34
|
+
/** Component for the counter text display */
|
|
35
|
+
CounterText?: ComponentType<DsAddItemCounterTextProps>;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Slot props configuration for customizing different parts of the add item component
|
|
39
|
+
*/
|
|
40
|
+
export interface DsAddItemSlotProps {
|
|
41
|
+
/** Props for the left (subtract) icon button */
|
|
42
|
+
LeftIconButton?: DsAddItemActionButtonProps;
|
|
43
|
+
/** Props for the right (add) icon button */
|
|
44
|
+
RightIconButton?: DsAddItemActionButtonProps;
|
|
45
|
+
/** Props for the counter text display */
|
|
46
|
+
CounterText?: DsAddItemCounterTextProps;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Main props interface for the DsAddItem component
|
|
50
|
+
* Extends DsFabProps while omitting the onChange prop to define custom signature
|
|
51
|
+
*/
|
|
52
|
+
export interface DsAddItemProps extends Omit<DsButtonBaseProps, "onChange" | "value"> {
|
|
53
|
+
/** The current count value */
|
|
54
|
+
value?: number;
|
|
55
|
+
/** The maximum allowed value */
|
|
56
|
+
maxValue?: number;
|
|
57
|
+
/** The minimum allowed value */
|
|
58
|
+
minValue?: number;
|
|
59
|
+
/** The step size for increment/decrement */
|
|
60
|
+
step?: number;
|
|
61
|
+
/** The label to show when count is 0 */
|
|
62
|
+
label?: string;
|
|
63
|
+
/** Handler called when count changes */
|
|
64
|
+
onChange: (name: string, value: number, reason: "increment" | "decrement") => void;
|
|
65
|
+
/** Custom components to use for slots */
|
|
66
|
+
slots?: DsAddItemSlots;
|
|
67
|
+
/** Props to pass to slot components */
|
|
68
|
+
slotProps?: DsAddItemSlotProps;
|
|
69
|
+
/** Name of the counter field */
|
|
70
|
+
name: string;
|
|
71
|
+
/** Whether the counter is in loading state */
|
|
72
|
+
loading?: boolean;
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Default props configuration for DsAddItem component
|
|
76
|
+
* Provides sensible defaults for count, label, and slot styling
|
|
77
|
+
*/
|
|
78
|
+
export declare const DsAddItemDefaultProps: Partial<DsAddItemProps>;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { DsAddItemIconButton } from "./Slots/DsAddItemActionIcon.Slot";
|
|
2
|
+
import { DsAddItemCounterText } from "./Slots/DsAddItemCounterText.Slot";
|
|
3
|
+
/**
|
|
4
|
+
* Default step value for increment/decrement operations
|
|
5
|
+
*/
|
|
6
|
+
export const DEFAULT_STEP_VALUE = 1;
|
|
7
|
+
/**
|
|
8
|
+
* Default props configuration for DsAddItem component
|
|
9
|
+
* Provides sensible defaults for count, label, and slot styling
|
|
10
|
+
*/
|
|
11
|
+
export const DsAddItemDefaultProps = {
|
|
12
|
+
label: "Add",
|
|
13
|
+
step: DEFAULT_STEP_VALUE,
|
|
14
|
+
minValue: 0,
|
|
15
|
+
onChange: () => { },
|
|
16
|
+
slots: {
|
|
17
|
+
LeftIconButton: DsAddItemIconButton,
|
|
18
|
+
RightIconButton: DsAddItemIconButton,
|
|
19
|
+
CounterText: DsAddItemCounterText,
|
|
20
|
+
},
|
|
21
|
+
slotProps: {
|
|
22
|
+
LeftIconButton: {
|
|
23
|
+
color: "secondary",
|
|
24
|
+
IconProps: {
|
|
25
|
+
className: "ri-subtract-line",
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
RightIconButton: {
|
|
29
|
+
color: "secondary",
|
|
30
|
+
IconProps: {
|
|
31
|
+
className: "ri-add-line",
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { DsIconButton } from "../../DsIconButton";
|
|
3
|
+
import { DsRemixIcon } from "../../DsRemixIcon";
|
|
4
|
+
export const DsAddItemIconButton = ({ onClick, disabled, IconProps, ...iconButtonProps }) => {
|
|
5
|
+
return (_jsx(DsIconButton, { disabled: disabled, onClick: onClick, ...iconButtonProps, children: _jsx(DsRemixIcon, { sx: {
|
|
6
|
+
fontSize: "20px",
|
|
7
|
+
...IconProps?.sx,
|
|
8
|
+
}, ...IconProps }) }));
|
|
9
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { DsTypography } from "../../DsTypography";
|
|
3
|
+
export const DsAddItemCounterText = ({ label, value, disabled, ...textProps }) => {
|
|
4
|
+
const isEmptyCount = value === 0;
|
|
5
|
+
return (_jsx(DsTypography, { variant: isEmptyCount ? "supportBoldTextButton" : "bodyBoldMedium", color: disabled
|
|
6
|
+
? "var(--ds-colour-typoDisabled)"
|
|
7
|
+
: isEmptyCount
|
|
8
|
+
? "var(--ds-colour-typoActionSecondary)"
|
|
9
|
+
: "var(--ds-colour-typoPrimary)", sx: {
|
|
10
|
+
mx: isEmptyCount
|
|
11
|
+
? "var(--ds-spacing-cool)"
|
|
12
|
+
: "var(--ds-spacing-glacial)",
|
|
13
|
+
...textProps.sx,
|
|
14
|
+
}, ...textProps, children: isEmptyCount ? label : value }));
|
|
15
|
+
};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import { DsBadgeProps } from './DsBadge.Types';
|
|
2
|
+
export declare const DsBadge: import("react").ForwardRefExoticComponent<Omit<DsBadgeProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -1 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import Badge from '@mui/material/Badge';
|
|
4
|
+
import { useThemeProps } from '@mui/system';
|
|
5
|
+
export const DsBadge = forwardRef((inProps, ref) => {
|
|
6
|
+
const props = useThemeProps({
|
|
7
|
+
props: inProps,
|
|
8
|
+
name: 'MuiBadge'
|
|
9
|
+
});
|
|
10
|
+
return _jsx(Badge, { ref: ref, ...props });
|
|
11
|
+
});
|
|
@@ -1,7 +1,29 @@
|
|
|
1
|
+
import { DsBadgeProps } from './DsBadge.Types';
|
|
1
2
|
export declare const DsBadgeOverrides: {
|
|
2
3
|
MuiBadge: {
|
|
3
|
-
defaultProps:
|
|
4
|
+
defaultProps: DsBadgeProps;
|
|
4
5
|
styleOverrides: {
|
|
6
|
+
root: {
|
|
7
|
+
variants: ({
|
|
8
|
+
props: Partial<DsBadgeProps>;
|
|
9
|
+
style: {
|
|
10
|
+
'& .MuiBadge-badge': {
|
|
11
|
+
backgroundColor: string;
|
|
12
|
+
color: string;
|
|
13
|
+
pointerEvents?: undefined;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
} | {
|
|
17
|
+
props: Partial<DsBadgeProps>;
|
|
18
|
+
style: {
|
|
19
|
+
'& .MuiBadge-badge': {
|
|
20
|
+
backgroundColor: string;
|
|
21
|
+
color: string;
|
|
22
|
+
pointerEvents: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
})[];
|
|
26
|
+
};
|
|
5
27
|
standard: {
|
|
6
28
|
fontWeight: string;
|
|
7
29
|
fontSize: string;
|
|
@@ -3,6 +3,29 @@ export const DsBadgeOverrides = {
|
|
|
3
3
|
MuiBadge: {
|
|
4
4
|
defaultProps: DsBadgeDefaultProps,
|
|
5
5
|
styleOverrides: {
|
|
6
|
+
root: {
|
|
7
|
+
variants: [
|
|
8
|
+
{
|
|
9
|
+
props: { color: 'inverse' },
|
|
10
|
+
style: {
|
|
11
|
+
'& .MuiBadge-badge': {
|
|
12
|
+
backgroundColor: 'var(--ds-colour-iconOnSurface)',
|
|
13
|
+
color: 'var(--ds-colour-actionSecondary)',
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
props: { disabled: true },
|
|
19
|
+
style: {
|
|
20
|
+
'& .MuiBadge-badge': {
|
|
21
|
+
backgroundColor: 'var(--ds-colour-iconDisabled)',
|
|
22
|
+
color: 'var(--ds-colour-typoOnSurface)',
|
|
23
|
+
pointerEvents: 'none'
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
},
|
|
6
29
|
standard: {
|
|
7
30
|
fontWeight: 'var(--ds-typo-supportRegularInfo-fontWeight)',
|
|
8
31
|
fontSize: 'var(--ds-typo-supportRegularInfo-fontSize)',
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { BadgeProps } from '@mui/material';
|
|
2
|
-
|
|
2
|
+
type TDsBadgeExtendedColor = BadgeProps['color'] | 'inverse';
|
|
3
|
+
export interface DsBadgeProps extends Omit<BadgeProps, 'color'> {
|
|
4
|
+
color?: TDsBadgeExtendedColor;
|
|
5
|
+
disabled?: boolean;
|
|
3
6
|
}
|
|
4
7
|
export declare const DsBadgeDefaultProps: DsBadgeProps;
|
|
8
|
+
export {};
|
|
@@ -11,10 +11,10 @@ import { DsButton } from '../DsButton';
|
|
|
11
11
|
import { mergeSlotProps } from '../../utils';
|
|
12
12
|
export const DsDialog = inProps => {
|
|
13
13
|
const props = { ...DsDialogDefaultProps, ...inProps };
|
|
14
|
-
const handleCloseClick = (event) => {
|
|
14
|
+
const handleCloseClick = (reason) => (event) => {
|
|
15
15
|
const { onClose } = props;
|
|
16
16
|
if (typeof onClose === 'function') {
|
|
17
|
-
onClose(event, 'backdropClick');
|
|
17
|
+
onClose(event, reason ? reason : 'backdropClick');
|
|
18
18
|
}
|
|
19
19
|
};
|
|
20
20
|
const { title, description, kicker, showClose, primaryButtonText, primaryButtonProps, secondaryButtonText, secondaryButtonProps, PaperProps, TitleProps, DescriptionProps, CloseIconButtonProps, CloseIconProps, KickerProps, ContentProps, ActionsProps, children, slotProps, ...DialogProps } = props;
|
|
@@ -71,7 +71,7 @@ export const DsDialog = inProps => {
|
|
|
71
71
|
md: 'var(--ds-spacing-warm)'
|
|
72
72
|
},
|
|
73
73
|
...DescriptionProps?.sx
|
|
74
|
-
}, children: description })), showClose && (_jsx(DsIconButton, { onClick: handleCloseClick, ...CloseIconButtonProps, sx: {
|
|
74
|
+
}, children: description })), showClose && (_jsx(DsIconButton, { onClick: handleCloseClick('closeButtonClick'), ...CloseIconButtonProps, sx: {
|
|
75
75
|
position: 'absolute',
|
|
76
76
|
padding: 'var(--ds-spacing-quickFreeze)',
|
|
77
77
|
borderRadius: 'var(--ds-radius-mild)',
|
|
@@ -6,7 +6,8 @@ import { DsRemixIconProps } from '../DsRemixIcon';
|
|
|
6
6
|
import { DsDialogContentProps } from '../DsDialogContent';
|
|
7
7
|
import { DsDialogActionsProps } from '../DsDialogActions';
|
|
8
8
|
import { DsButtonProps } from '../DsButton';
|
|
9
|
-
export
|
|
9
|
+
export type DsDialogCloseReason = 'backdropClick' | 'escapeKeyDown' | 'closeButtonClick';
|
|
10
|
+
export interface DsDialogProps extends Omit<DialogProps, 'onClose'> {
|
|
10
11
|
title?: string;
|
|
11
12
|
description?: string;
|
|
12
13
|
kicker?: string;
|
|
@@ -22,5 +23,6 @@ export interface DsDialogProps extends DialogProps {
|
|
|
22
23
|
CloseIconProps?: Omit<DsRemixIconProps, 'ref'>;
|
|
23
24
|
ContentProps?: DsDialogContentProps;
|
|
24
25
|
ActionsProps?: DsDialogActionsProps;
|
|
26
|
+
onClose?: (event: React.SyntheticEvent, reason: DsDialogCloseReason) => void;
|
|
25
27
|
}
|
|
26
28
|
export declare const DsDialogDefaultProps: DsDialogProps;
|
|
@@ -16,23 +16,26 @@ export const DsFabOverrides = {
|
|
|
16
16
|
fontSize: 'var(--ds-typo-bodyBoldMedium-fontSize)',
|
|
17
17
|
lineHeight: 'var(--ds-typo-bodyBoldMedium-lineHeight)',
|
|
18
18
|
letterSpacing: 'var(--ds-typo-bodyBoldMedium-letterSpacing)'
|
|
19
|
+
},
|
|
20
|
+
'.MuiIcon-root': {
|
|
21
|
+
fontWeight: 'var(--ds-typo-bodyRegularMedium-fontWeight)',
|
|
19
22
|
}
|
|
20
23
|
},
|
|
21
24
|
sizeLarge: {
|
|
22
25
|
padding: 'var(--ds-spacing-cool)',
|
|
23
|
-
'> .
|
|
26
|
+
'> .MuiIcon-root': {
|
|
24
27
|
fontSize: 'var(--ds-typo-fontSizePleasant)'
|
|
25
28
|
}
|
|
26
29
|
},
|
|
27
30
|
sizeMedium: {
|
|
28
31
|
padding: 'var(--ds-spacing-bitterCold)',
|
|
29
|
-
'> .
|
|
32
|
+
'> .MuiIcon-root': {
|
|
30
33
|
fontSize: 'var(--ds-typo-fontSizeMild)'
|
|
31
34
|
}
|
|
32
35
|
},
|
|
33
36
|
sizeSmall: {
|
|
34
37
|
padding: 'var(--ds-spacing-frostbite)',
|
|
35
|
-
'> .
|
|
38
|
+
'> .MuiIcon-root': {
|
|
36
39
|
fontSize: 'var(--ds-typo-fontSizeCool)'
|
|
37
40
|
}
|
|
38
41
|
},
|
|
@@ -40,6 +43,7 @@ export const DsFabOverrides = {
|
|
|
40
43
|
...STATE_STYLES.ACTION_SECONDARY_STATE_SECONDARY
|
|
41
44
|
},
|
|
42
45
|
default: {
|
|
46
|
+
color: 'var(--ds-colour-typoPrimary)',
|
|
43
47
|
backgroundColor: 'var(--ds-colour-surfacePrimary)',
|
|
44
48
|
borderWidth: '1px',
|
|
45
49
|
borderStyle: 'solid',
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useEmotionNonce } from "../../Hooks/nonce";
|
|
2
3
|
export function SingleDotLoader() {
|
|
4
|
+
const nonce = useEmotionNonce();
|
|
3
5
|
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1000 1000", preserveAspectRatio: "xMidYMid slice", style: {
|
|
4
6
|
width: '100%',
|
|
5
7
|
height: '100%',
|
|
6
8
|
transform: 'translate3d(0px, 0px, 0px)',
|
|
7
9
|
contentVisibility: 'visible'
|
|
8
|
-
}, children: [_jsxs("defs", { children: [_jsx("clipPath", { id: "__loader_element_11", children: _jsx("rect", { width: "1000", height: "1000", x: "0", y: "0" }) }), _jsx("style", { children: `@keyframes ball {
|
|
10
|
+
}, children: [_jsxs("defs", { children: [_jsx("clipPath", { id: "__loader_element_11", children: _jsx("rect", { width: "1000", height: "1000", x: "0", y: "0" }) }), _jsx("style", { nonce: nonce, children: `@keyframes ball {
|
|
9
11
|
0%{
|
|
10
12
|
transform: matrix(2.428800106048584,0,0,2.428800106048584,491.30035400390625,444.7691650390625)
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useEmotionNonce } from "../../Hooks/nonce";
|
|
2
3
|
export function ThreeDotLoader() {
|
|
4
|
+
const nonce = useEmotionNonce();
|
|
3
5
|
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1000 1000", preserveAspectRatio: "xMidYMid slice", style: {
|
|
4
6
|
width: '100%',
|
|
5
7
|
height: '100%',
|
|
6
8
|
transform: 'translate3d(0px, 0px, 0px)',
|
|
7
9
|
contentVisibility: 'visible'
|
|
8
|
-
}, children: [_jsxs("defs", { children: [_jsx("clipPath", { id: `__loader_element_524`, children: _jsx("rect", { width: "1000", height: "1000", x: "0", y: "0" }) }), _jsx("style", { children: `@keyframes ball1 {
|
|
10
|
+
}, children: [_jsxs("defs", { children: [_jsx("clipPath", { id: `__loader_element_524`, children: _jsx("rect", { width: "1000", height: "1000", x: "0", y: "0" }) }), _jsx("style", { nonce: nonce, children: `@keyframes ball1 {
|
|
9
11
|
0%{
|
|
10
12
|
transform: matrix(1.3200000524520874,0,0,1.3200000524520874,178.98719787597656,413.82720947265625)
|
|
11
13
|
}
|
|
@@ -20,10 +20,10 @@ export const DsProgressTrackerHeader = (props) => {
|
|
|
20
20
|
? lastStepLabelText
|
|
21
21
|
: `${nextStepLabelPrefix} ${nextStep.stepName}` }));
|
|
22
22
|
};
|
|
23
|
-
return (_jsx(_Fragment, { children: dense ? (_jsxs(DsStack, { sx: {
|
|
23
|
+
return (_jsx(_Fragment, { children: dense ? (_jsxs(DsStack, { ...wrapperProps, sx: {
|
|
24
24
|
backgroundColor: 'var(--ds-colour-surfaceSecondary)',
|
|
25
25
|
...wrapperProps?.sx
|
|
26
|
-
},
|
|
26
|
+
}, children: [_jsxs(DsStack, { direction: 'row', onClick: onClick, sx: {
|
|
27
27
|
justifyContent: 'space-between',
|
|
28
28
|
px: 'var(--ds-spacing-bitterCold)',
|
|
29
29
|
pt: 'var(--ds-spacing-frostbite)',
|
|
@@ -34,14 +34,14 @@ export const DsProgressTrackerHeader = (props) => {
|
|
|
34
34
|
'.MuiLinearProgress-bar1Determinate ': {
|
|
35
35
|
borderRadius: '1px'
|
|
36
36
|
}
|
|
37
|
-
} })] })) : (_jsxs(DsStack, { sx: {
|
|
37
|
+
} })] })) : (_jsxs(DsStack, { ...wrapperProps, sx: {
|
|
38
38
|
p: 'var(--ds-spacing-bitterCold)',
|
|
39
39
|
alignItems: 'center',
|
|
40
40
|
borderBottom: '1px solid var(--ds-colour-strokeDefault)',
|
|
41
41
|
backgroundColor: 'var(--ds-colour-surfaceBackground)',
|
|
42
42
|
cursor: props['ds-variant'] === 'default' ? 'pointer' : 'unset',
|
|
43
43
|
...wrapperProps?.sx
|
|
44
|
-
}, spacing: 'var(--ds-spacing-bitterCold)', direction: 'row', onClick: onClick,
|
|
44
|
+
}, spacing: 'var(--ds-spacing-bitterCold)', direction: 'row', onClick: onClick, children: [_jsx(DsProgressIndicator, { activeStep: activeStep + 1, steps: steps.length }), _jsxs(DsStack, { spacing: 'var(--ds-spacing-quickFreeze)', sx: {
|
|
45
45
|
flexGrow: 1
|
|
46
46
|
}, children: [_jsx(DsTypography, { component: 'div', variant: 'headingBoldExtraSmall', sx: {
|
|
47
47
|
textAlign: 'right',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { CSSObject } from
|
|
2
|
-
import { DsTabsProps } from
|
|
1
|
+
import type { CSSObject } from "@mui/system";
|
|
2
|
+
import type { DsTabsProps } from "./DsTabs.Types";
|
|
3
3
|
export declare const DsTabsOverrides: {
|
|
4
4
|
MuiTabs: {
|
|
5
5
|
defaultProps: DsTabsProps;
|
|
@@ -1,52 +1,92 @@
|
|
|
1
|
-
import { DsTabsDefaultProps } from
|
|
1
|
+
import { DsTabsDefaultProps } from "./DsTabs.Types";
|
|
2
2
|
export const DsTabsOverrides = {
|
|
3
3
|
MuiTabs: {
|
|
4
4
|
defaultProps: DsTabsDefaultProps,
|
|
5
5
|
styleOverrides: {
|
|
6
6
|
root: {
|
|
7
|
-
minHeight:
|
|
7
|
+
minHeight: "36px",
|
|
8
8
|
variants: [
|
|
9
9
|
{
|
|
10
|
-
props: {
|
|
10
|
+
props: { "ds-variant": "container" },
|
|
11
11
|
style: {
|
|
12
|
-
|
|
13
|
-
height:
|
|
12
|
+
"> .MuiTabs-scroller > .MuiTabs-indicator": {
|
|
13
|
+
height: "0px",
|
|
14
14
|
},
|
|
15
|
-
|
|
16
|
-
gap:
|
|
17
|
-
|
|
18
|
-
fontWeight:
|
|
19
|
-
fontSize:
|
|
20
|
-
lineHeight:
|
|
21
|
-
letterSpacing:
|
|
22
|
-
borderRadius:
|
|
23
|
-
paddingTop:
|
|
24
|
-
paddingBottom:
|
|
25
|
-
borderWidth:
|
|
26
|
-
borderStyle:
|
|
27
|
-
backgroundColor:
|
|
28
|
-
borderColor:
|
|
29
|
-
color:
|
|
30
|
-
|
|
31
|
-
backgroundColor:
|
|
32
|
-
borderColor:
|
|
33
|
-
color:
|
|
15
|
+
"> .MuiTabs-scroller > .MuiTabs-flexContainer": {
|
|
16
|
+
gap: "var(--ds-spacing-glacial)",
|
|
17
|
+
"> .MuiTab-root": {
|
|
18
|
+
fontWeight: "var(--ds-typo-supportRegularMetadata-fontWeight)",
|
|
19
|
+
fontSize: "var(--ds-typo-supportRegularMetadata-fontSize)",
|
|
20
|
+
lineHeight: "var(--ds-typo-supportRegularMetadata-lineHeight)",
|
|
21
|
+
letterSpacing: "var(--ds-typo-supportRegularMetadata-letterSpacing)",
|
|
22
|
+
borderRadius: "var(--ds-radius-quickFreeze)",
|
|
23
|
+
paddingTop: "var(--ds-spacing-frostbite)",
|
|
24
|
+
paddingBottom: "var(--ds-spacing-frostbite)",
|
|
25
|
+
borderWidth: "1px",
|
|
26
|
+
borderStyle: "solid",
|
|
27
|
+
backgroundColor: "var(--ds-colour-surfaceSecondary)",
|
|
28
|
+
borderColor: "var(--ds-colour-strokeDefault)",
|
|
29
|
+
color: "var(--ds-colour-typoSecondary)",
|
|
30
|
+
"&.Mui-selected": {
|
|
31
|
+
backgroundColor: "var(--ds-colour-stateSelectedSecondaryHover)",
|
|
32
|
+
borderColor: "var(--ds-colour-strokeSecondarySelected)",
|
|
33
|
+
color: "var(--ds-colour-typoActionTertiary)",
|
|
34
34
|
},
|
|
35
|
-
|
|
36
|
-
backgroundColor:
|
|
37
|
-
borderColor:
|
|
38
|
-
color:
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
35
|
+
"&.Mui-disabled": {
|
|
36
|
+
backgroundColor: "transparent",
|
|
37
|
+
borderColor: "transparent",
|
|
38
|
+
color: "var(--ds-colour-typoDisabled)",
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
props: { "ds-variant": "segmented" },
|
|
46
|
+
style: {
|
|
47
|
+
"& .MuiTabs-scroller": {
|
|
48
|
+
backgroundColor: "var(--ds-colour-neutral1)",
|
|
49
|
+
borderRadius: "var(--ds-radius-glacial)",
|
|
50
|
+
padding: "var(--ds-spacing-quickFreeze)",
|
|
51
|
+
boxSizing: "border-box",
|
|
52
|
+
position: "relative",
|
|
53
|
+
"& .MuiTabs-indicator": {
|
|
54
|
+
height: "calc(100% - var(--ds-spacing-glacial))",
|
|
55
|
+
top: "var(--ds-spacing-quickFreeze)",
|
|
56
|
+
borderRadius: "var(--ds-radius-gelid)",
|
|
57
|
+
backgroundColor: "var(--ds-colour-surfaceBackground)",
|
|
58
|
+
zIndex: 1,
|
|
59
|
+
},
|
|
60
|
+
"& .MuiTabs-flexContainer": {
|
|
61
|
+
gap: "var(--ds-spacing-zero)",
|
|
62
|
+
position: "relative",
|
|
63
|
+
zIndex: 2,
|
|
64
|
+
},
|
|
65
|
+
"& .MuiTab-root": {
|
|
66
|
+
position: "relative",
|
|
67
|
+
borderBottom: "none",
|
|
68
|
+
padding: "var(--ds-spacing-gelid) var(--ds-spacing-frostbite)",
|
|
69
|
+
minHeight: "unset",
|
|
70
|
+
color: "var(--ds-colour-typoPrimary)",
|
|
71
|
+
"&.Mui-selected:not(.Mui-disabled)": {
|
|
72
|
+
boxShadow: "var(--ds-elevation-2)",
|
|
73
|
+
borderRadius: "var(--ds-radius-gelid)",
|
|
74
|
+
},
|
|
75
|
+
"&.Mui-disabled": {
|
|
76
|
+
backgroundColor: "var(--ds-colour-neutral1)",
|
|
77
|
+
color: "var(--ds-colour-typoDisabled)",
|
|
78
|
+
fontWeight: "var(--ds-typo-bodyRegularMedium-fontWeight)",
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
},
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
],
|
|
45
85
|
},
|
|
46
86
|
indicator: {
|
|
47
|
-
height:
|
|
48
|
-
borderRadius:
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
87
|
+
height: "2px",
|
|
88
|
+
borderRadius: "2px 2px 0px 0px",
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
},
|
|
52
92
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { TabsProps } from
|
|
1
|
+
import { TabsProps } from "@mui/material";
|
|
2
2
|
export interface DsTabsProps extends TabsProps {
|
|
3
|
-
|
|
3
|
+
"ds-variant"?: "container" | "segmented";
|
|
4
4
|
}
|
|
5
5
|
export declare const DsTabsDefaultProps: DsTabsProps;
|
|
@@ -17,11 +17,13 @@ export const DsTag = inProps => {
|
|
|
17
17
|
onDelete(value);
|
|
18
18
|
}
|
|
19
19
|
};
|
|
20
|
-
const { selected, onClick, onDelete, ...chipProps } = props;
|
|
20
|
+
const { selected, onClick, onDelete, sx, ...chipProps } = props;
|
|
21
21
|
const color = (selected && 'secondary') || 'default';
|
|
22
22
|
return (_jsx(Chip, { deleteIcon: _jsx(DsRemixIcon, { className: "ri-close-circle-fill" }), skipFocusWhenDisabled: true, sx: {
|
|
23
23
|
paddingTop: 'var(--ds-spacing-quickFreeze)',
|
|
24
24
|
paddingBottom: 'var(--ds-spacing-quickFreeze)',
|
|
25
|
+
paddingLeft: 'var(--ds-spacing-frostbite)',
|
|
26
|
+
paddingRight: 'var(--ds-spacing-frostbite)',
|
|
25
27
|
fontWeight: 'var(--ds-typo-bodyRegularMedium-fontWeight)',
|
|
26
28
|
fontSize: 'var(--ds-typo-bodyRegularMedium-fontSize)',
|
|
27
29
|
lineHeight: 'var(--ds-typo-bodyRegularMedium-lineHeight)',
|
|
@@ -40,22 +42,40 @@ export const DsTag = inProps => {
|
|
|
40
42
|
},
|
|
41
43
|
...STATE_STYLES.ACTION_SECONDARY_STATE_SECONDARY
|
|
42
44
|
},
|
|
45
|
+
'&.Mui-disabled': {
|
|
46
|
+
opacity: 1,
|
|
47
|
+
border: '1px solid var(--ds-colour-strokeDisabled)',
|
|
48
|
+
backgroundColor: 'var(--ds-colour-stateDisabledSurface)',
|
|
49
|
+
},
|
|
43
50
|
'> .MuiChip-label': {
|
|
51
|
+
color: 'var(--ds-colour-typoPrimary)',
|
|
44
52
|
paddingTop: 'var(--ds-spacing-deepFreeze)',
|
|
45
53
|
paddingBottom: 'var(--ds-spacing-deepFreeze)',
|
|
46
|
-
paddingLeft: 'var(--ds-spacing-
|
|
47
|
-
paddingRight: 'var(--ds-spacing-
|
|
54
|
+
paddingLeft: 'var(--ds-spacing-zero)',
|
|
55
|
+
paddingRight: 'var(--ds-spacing-zero)'
|
|
48
56
|
},
|
|
49
57
|
'> .MuiChip-icon': {
|
|
50
|
-
color: 'var(--ds-colour-
|
|
58
|
+
color: 'var(--ds-colour-typoPrimary)',
|
|
51
59
|
fontSize: 'var(--ds-typo-fontSizeBitterCold)',
|
|
52
|
-
marginLeft: 'var(--ds-spacing-
|
|
53
|
-
marginRight: '
|
|
60
|
+
marginLeft: 'var(--ds-spacing-zero)',
|
|
61
|
+
marginRight: 'var(--ds-spacing-glacial)',
|
|
54
62
|
},
|
|
55
63
|
'> .MuiChip-deleteIcon': {
|
|
56
64
|
fontSize: 'var(--ds-typo-fontSizeBitterCold)',
|
|
57
|
-
marginRight: 'var(--ds-spacing-
|
|
58
|
-
marginLeft: '
|
|
59
|
-
|
|
65
|
+
marginRight: 'var(--ds-spacing-zero)',
|
|
66
|
+
marginLeft: 'var(--ds-spacing-glacial)',
|
|
67
|
+
color: 'var(--ds-colour-typoPrimary)',
|
|
68
|
+
},
|
|
69
|
+
'&.MuiChip-colorSecondary .MuiChip-label, &.MuiChip-colorSecondary .MuiChip-deleteIcon': {
|
|
70
|
+
color: 'var(--ds-colour-typoOnSurface)'
|
|
71
|
+
},
|
|
72
|
+
'&.Mui-disabled .MuiChip-icon, &.Mui-disabled .MuiChip-deleteIcon': {
|
|
73
|
+
color: 'var(--ds-colour-iconDisabled)'
|
|
74
|
+
},
|
|
75
|
+
'&.Mui-disabled .MuiChip-label': {
|
|
76
|
+
color: 'var(--ds-colour-typoDisabled)',
|
|
77
|
+
fontWeight: 'var(--ds-typo-bodyRegularMedium-fontWeight)',
|
|
78
|
+
},
|
|
79
|
+
...sx
|
|
60
80
|
}, ...chipProps, variant: "tag", clickable: true, color: color, onDelete: (onDelete && handleDelete) || undefined, onClick: handleClick }));
|
|
61
81
|
};
|
|
@@ -2,6 +2,7 @@ export * from './DsAccordion';
|
|
|
2
2
|
export * from './DsAccordionActions';
|
|
3
3
|
export * from './DsAccordionDetails';
|
|
4
4
|
export * from './DsAccordionSummary';
|
|
5
|
+
export * from './DsAddItem';
|
|
5
6
|
export * from './DsAppBar';
|
|
6
7
|
export * from './DsAutocomplete';
|
|
7
8
|
export * from './DsAvatar';
|
package/dist/Components/index.js
CHANGED
|
@@ -2,6 +2,7 @@ export * from './DsAccordion';
|
|
|
2
2
|
export * from './DsAccordionActions';
|
|
3
3
|
export * from './DsAccordionDetails';
|
|
4
4
|
export * from './DsAccordionSummary';
|
|
5
|
+
export * from './DsAddItem';
|
|
5
6
|
export * from './DsAppBar';
|
|
6
7
|
export * from './DsAutocomplete';
|
|
7
8
|
export * from './DsAvatar';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useEmotionNonce: () => string | undefined;
|
|
@@ -438,7 +438,7 @@ declare const componentOverrides: {
|
|
|
438
438
|
'.MuiIconButton-root': {
|
|
439
439
|
fontSize: string;
|
|
440
440
|
};
|
|
441
|
-
'.
|
|
441
|
+
'.MuiIcon-root': {
|
|
442
442
|
fontSize: string;
|
|
443
443
|
};
|
|
444
444
|
};
|
|
@@ -819,7 +819,7 @@ declare const componentOverrides: {
|
|
|
819
819
|
styleOverrides: {
|
|
820
820
|
root: {
|
|
821
821
|
color: string;
|
|
822
|
-
'& .
|
|
822
|
+
'& .MuiIcon-root': {
|
|
823
823
|
cursor: string;
|
|
824
824
|
};
|
|
825
825
|
};
|
|
@@ -1268,6 +1268,27 @@ declare const componentOverrides: {
|
|
|
1268
1268
|
MuiBadge: {
|
|
1269
1269
|
defaultProps: import("../Components").DsBadgeProps;
|
|
1270
1270
|
styleOverrides: {
|
|
1271
|
+
root: {
|
|
1272
|
+
variants: ({
|
|
1273
|
+
props: Partial<import("../Components").DsBadgeProps>;
|
|
1274
|
+
style: {
|
|
1275
|
+
'& .MuiBadge-badge': {
|
|
1276
|
+
backgroundColor: string;
|
|
1277
|
+
color: string;
|
|
1278
|
+
pointerEvents?: undefined;
|
|
1279
|
+
};
|
|
1280
|
+
};
|
|
1281
|
+
} | {
|
|
1282
|
+
props: Partial<import("../Components").DsBadgeProps>;
|
|
1283
|
+
style: {
|
|
1284
|
+
'& .MuiBadge-badge': {
|
|
1285
|
+
backgroundColor: string;
|
|
1286
|
+
color: string;
|
|
1287
|
+
pointerEvents: string;
|
|
1288
|
+
};
|
|
1289
|
+
};
|
|
1290
|
+
})[];
|
|
1291
|
+
};
|
|
1271
1292
|
standard: {
|
|
1272
1293
|
fontWeight: string;
|
|
1273
1294
|
fontSize: string;
|
|
@@ -1432,6 +1453,9 @@ declare const componentOverrides: {
|
|
|
1432
1453
|
};
|
|
1433
1454
|
};
|
|
1434
1455
|
};
|
|
1456
|
+
DsAddItem: {
|
|
1457
|
+
defaultProps: Partial<import("../Components").DsAddItemProps>;
|
|
1458
|
+
};
|
|
1435
1459
|
MuiAccordionDetails: {
|
|
1436
1460
|
styleOverrides: {
|
|
1437
1461
|
root: {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { DsAccordionOverrides, DsAccordionActionsOverrides, DsAccordionDetailsOverrides, DsAccordionSummaryOverrides, DsAppBarOverrides, DsAutocompleteOverrides, DsAvatarOverrides, DsAvatarGroupOverrides, DsBackdropOverrides, DsBadgeOverrides, DsBottomNavigationOverrides, DsBottomNavigationActionOverrides, DsBottomSheetOverrides, DsBoxOverrides, DsBreadcrumbsOverrides, DsButtonOverrides, DsButtonBaseOverrides, DsButtonGroupOverrides, DsCardOverrides, DsCardActionAreaOverrides, DsCardActionsOverrides, DsCardContentOverrides, DsCardHeaderOverrides, DsCardMediaOverrides, DsCarouselOverrides, DsCheckboxOverrides, DsChipOverrides, DsChipGroupOverrides, DsCircularProgressOverrides, DsClickAwayListenerOverrides, DsCollapseOverrides, DsCssBaselineOverrides, DsContainerOverrides, DsDialogOverrides, DsDialogActionsOverrides, DsDialogContentOverrides, DsDialogContentTextOverrides, DsDialogTitleOverrides, DsDividerOverrides, DsDrawerOverrides, DsFabOverrides, DsFadeOverrides, DsFileUploaderOverrides, DsFilledInputOverrides, DsFormControlOverrides, DsFormControlLabelOverrides, DsFormGroupOverrides, DsFormHelperTextOverrides, DsFormLabelOverrides, DsGlobalStylesOverrides, DsGridOverrides, DsGrowOverrides, DsHeaderOverrides, DsHelperTextOverrides, DsIconOverrides, DsIconButtonOverrides, DsImageOverrides, DsImageListOverrides, DsImageListItemOverrides, DsImageListItemBarOverrides, DsInputOverrides, DsInputAdornmentOverrides, DsInputBaseOverrides, DsInputLabelOverrides, DsLinearProgressOverrides, DsLinkOverrides, DsListOverrides, DsListItemOverrides, DsListItemAvatarOverrides, DsListItemButtonOverrides, DsListItemIconOverrides, DsListItemSecondaryActionOverrides, DsListItemTextOverrides, DsListSubheaderOverrides, DsLoaderOverrides, DsMenuOverrides, DsMenuItemOverrides, DsMenuListOverrides, DsMobileStepperOverrides, DsModalOverrides, DsNativeSelectOverrides, DsNoSsrOverrides, DsNotistackOverrides, DsOtpOverrides, DsOutlinedInputOverrides, DsPaginationOverrides, DsPaginationItemOverrides, DsPaperOverrides, DsPopoverOverrides, DsPopperOverrides, DsPopupOverrides, DsPortalOverrides, DsProgressIndicatorOverrides, DsProgressTrackerOverrides, DsRadioOverrides, DsRadioGroupOverrides, DsRatingOverrides, DsRemixIconOverrides, DsScopedCssBaselineOverrides, DsSearchbarOverrides, DsSelectOverrides, DsSkeletonOverrides, DsSlideOverrides, DsSliderOverrides, DsSpeedDialOverrides, DsSpeedDialActionOverrides, DsSpeedDialIconOverrides, DsStackOverrides, DsStepOverrides, DsStepButtonOverrides, DsStepConnectorOverrides, DsStepContentOverrides, DsStepIconOverrides, DsStepLabelOverrides, DsStepperOverrides, DsSvgIconOverrides, DsSwipeableDrawerOverrides, DsSwitchOverrides, DsTabOverrides, DsTabScrollButtonOverrides, DsTableOverrides, DsTableBodyOverrides, DsTableCellOverrides, DsTableContainerOverrides, DsTableFooterOverrides, DsTableHeadOverrides, DsTablePaginationOverrides, DsTableRowOverrides, DsTableSortLabelOverrides, DsTabsOverrides, DsTagOverrides, DsTagGroupOverrides, DsTextAreaOverrides, DsTextFieldOverrides, DsTextFieldPasswordOverrides, DsTextareaAutosizeOverrides, DsToastOverrides, DsToggleOverrides, DsToggleButtonOverrides, DsToggleButtonGroupOverrides, DsToolbarOverrides, DsTooltipOverrides, DsTypographyOverrides, DsZoomOverrides } from '../Components';
|
|
1
|
+
import { DsAccordionOverrides, DsAccordionActionsOverrides, DsAccordionDetailsOverrides, DsAccordionSummaryOverrides, DsAddItemOverrides, DsAppBarOverrides, DsAutocompleteOverrides, DsAvatarOverrides, DsAvatarGroupOverrides, DsBackdropOverrides, DsBadgeOverrides, DsBottomNavigationOverrides, DsBottomNavigationActionOverrides, DsBottomSheetOverrides, DsBoxOverrides, DsBreadcrumbsOverrides, DsButtonOverrides, DsButtonBaseOverrides, DsButtonGroupOverrides, DsCardOverrides, DsCardActionAreaOverrides, DsCardActionsOverrides, DsCardContentOverrides, DsCardHeaderOverrides, DsCardMediaOverrides, DsCarouselOverrides, DsCheckboxOverrides, DsChipOverrides, DsChipGroupOverrides, DsCircularProgressOverrides, DsClickAwayListenerOverrides, DsCollapseOverrides, DsCssBaselineOverrides, DsContainerOverrides, DsDialogOverrides, DsDialogActionsOverrides, DsDialogContentOverrides, DsDialogContentTextOverrides, DsDialogTitleOverrides, DsDividerOverrides, DsDrawerOverrides, DsFabOverrides, DsFadeOverrides, DsFileUploaderOverrides, DsFilledInputOverrides, DsFormControlOverrides, DsFormControlLabelOverrides, DsFormGroupOverrides, DsFormHelperTextOverrides, DsFormLabelOverrides, DsGlobalStylesOverrides, DsGridOverrides, DsGrowOverrides, DsHeaderOverrides, DsHelperTextOverrides, DsIconOverrides, DsIconButtonOverrides, DsImageOverrides, DsImageListOverrides, DsImageListItemOverrides, DsImageListItemBarOverrides, DsInputOverrides, DsInputAdornmentOverrides, DsInputBaseOverrides, DsInputLabelOverrides, DsLinearProgressOverrides, DsLinkOverrides, DsListOverrides, DsListItemOverrides, DsListItemAvatarOverrides, DsListItemButtonOverrides, DsListItemIconOverrides, DsListItemSecondaryActionOverrides, DsListItemTextOverrides, DsListSubheaderOverrides, DsLoaderOverrides, DsMenuOverrides, DsMenuItemOverrides, DsMenuListOverrides, DsMobileStepperOverrides, DsModalOverrides, DsNativeSelectOverrides, DsNoSsrOverrides, DsNotistackOverrides, DsOtpOverrides, DsOutlinedInputOverrides, DsPaginationOverrides, DsPaginationItemOverrides, DsPaperOverrides, DsPopoverOverrides, DsPopperOverrides, DsPopupOverrides, DsPortalOverrides, DsProgressIndicatorOverrides, DsProgressTrackerOverrides, DsRadioOverrides, DsRadioGroupOverrides, DsRatingOverrides, DsRemixIconOverrides, DsScopedCssBaselineOverrides, DsSearchbarOverrides, DsSelectOverrides, DsSkeletonOverrides, DsSlideOverrides, DsSliderOverrides, DsSpeedDialOverrides, DsSpeedDialActionOverrides, DsSpeedDialIconOverrides, DsStackOverrides, DsStepOverrides, DsStepButtonOverrides, DsStepConnectorOverrides, DsStepContentOverrides, DsStepIconOverrides, DsStepLabelOverrides, DsStepperOverrides, DsSvgIconOverrides, DsSwipeableDrawerOverrides, DsSwitchOverrides, DsTabOverrides, DsTabScrollButtonOverrides, DsTableOverrides, DsTableBodyOverrides, DsTableCellOverrides, DsTableContainerOverrides, DsTableFooterOverrides, DsTableHeadOverrides, DsTablePaginationOverrides, DsTableRowOverrides, DsTableSortLabelOverrides, DsTabsOverrides, DsTagOverrides, DsTagGroupOverrides, DsTextAreaOverrides, DsTextFieldOverrides, DsTextFieldPasswordOverrides, DsTextareaAutosizeOverrides, DsToastOverrides, DsToggleOverrides, DsToggleButtonOverrides, DsToggleButtonGroupOverrides, DsToolbarOverrides, DsTooltipOverrides, DsTypographyOverrides, DsZoomOverrides } from '../Components';
|
|
2
2
|
import XDatePickerComponentOverrides from '../x-datepicker/componentOverrides';
|
|
3
3
|
const componentOverrides = {
|
|
4
4
|
...DsAccordionOverrides,
|
|
5
5
|
...DsAccordionActionsOverrides,
|
|
6
6
|
...DsAccordionDetailsOverrides,
|
|
7
|
+
...DsAddItemOverrides,
|
|
7
8
|
...DsAccordionSummaryOverrides,
|
|
8
9
|
...DsAppBarOverrides,
|
|
9
10
|
...DsAutocompleteOverrides,
|
|
@@ -32,7 +32,7 @@ export default function getHighContrastModeColorScheme(colorPalette) {
|
|
|
32
32
|
iconActionPrimary: highContrast1,
|
|
33
33
|
iconActionSecondary: highContrast1,
|
|
34
34
|
iconActionTertiary: highContrast1,
|
|
35
|
-
iconOnSurface:
|
|
35
|
+
iconOnSurface: primaryBlackLight,
|
|
36
36
|
iconDisabled: secondaryGrey60,
|
|
37
37
|
iconDefault: primaryWhite,
|
|
38
38
|
iconTypical: highContrast2,
|
|
@@ -11,8 +11,8 @@ export default function getLightModeColorScheme(colorPalette) {
|
|
|
11
11
|
surfaceSecondary: secondaryGrey10,
|
|
12
12
|
surfaceTertiary: secondaryGrey100,
|
|
13
13
|
typoPrimary: primaryBlackLight,
|
|
14
|
-
typoSecondary:
|
|
15
|
-
typoTertiary:
|
|
14
|
+
typoSecondary: secondaryGrey90,
|
|
15
|
+
typoTertiary: secondaryGrey80,
|
|
16
16
|
typoActionPrimary: primary,
|
|
17
17
|
typoActionSecondary: secondary100,
|
|
18
18
|
typoActionTertiary: tertiary100,
|
package/dist/Theme/index.d.ts
CHANGED
package/dist/Theme/radius.js
CHANGED
package/dist/Theme/spacing.js
CHANGED
package/dist/Types/DsRadius.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type DsRadiusKeys = 'zero' | 'deepFreeze' | 'quickFreeze' | 'glacial' | 'frostbite' | 'bitterCold' | 'cool' | 'mild' | 'pleasant';
|
|
1
|
+
export type DsRadiusKeys = 'zero' | 'deepFreeze' | 'quickFreeze' | 'gelid' | 'glacial' | 'frostbite' | 'bitterCold' | 'cool' | 'mild' | 'pleasant';
|
|
2
2
|
export type DsRadius = {
|
|
3
3
|
[key in DsRadiusKeys]: string;
|
|
4
4
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type DsSpacingKeys = 'zero' | 'deepFreeze' | 'quickFreeze' | 'glacial' | 'frostbite' | 'bitterCold' | 'cool' | 'mild' | 'pleasant' | 'warm' | 'tepid' | 'tropical' | 'hot' | 'blazing' | 'molten' | 'superheated' | 'meltdown' | 'whiteHot' | 'plasma';
|
|
1
|
+
export type DsSpacingKeys = 'zero' | 'deepFreeze' | 'quickFreeze' | 'gelid' | 'glacial' | 'frostbite' | 'bitterCold' | 'cool' | 'mild' | 'pleasant' | 'warm' | 'tepid' | 'tropical' | 'hot' | 'blazing' | 'molten' | 'superheated' | 'meltdown' | 'whiteHot' | 'plasma';
|
|
2
2
|
export type DsSpacing = {
|
|
3
3
|
[key in DsSpacingKeys]: number;
|
|
4
4
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CacheProvider as DsCacheProvider } from '@emotion/react';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CacheProvider as DsCacheProvider } from '@emotion/react';
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -21,6 +21,8 @@ export { ChartsYAxis as DsChartsYAxis } from '@mui/x-charts';
|
|
|
21
21
|
export { ContinuousColorLegend as DsContinuousColorLegend } from '@mui/x-charts';
|
|
22
22
|
export { ChartsAxisTooltipContent as DsChartsAxisTooltipContent } from '@mui/x-charts';
|
|
23
23
|
export { ChartsItemTooltipContent as DsChartsItemTooltipContent } from '@mui/x-charts';
|
|
24
|
+
export { ChartsTooltipContainer as DsChartsTooltipContainer } from '@mui/x-charts';
|
|
25
|
+
export { ChartDataProvider as DsChartDataProvider } from '@mui/x-charts';
|
|
24
26
|
export { Gauge as DsGauge } from '@mui/x-charts';
|
|
25
27
|
export { GaugeContainer as DsGaugeContainer } from '@mui/x-charts';
|
|
26
28
|
export { LineChart as DsLineChart } from '@mui/x-charts';
|
|
@@ -21,6 +21,8 @@ export { ChartsYAxis as DsChartsYAxis } from '@mui/x-charts';
|
|
|
21
21
|
export { ContinuousColorLegend as DsContinuousColorLegend } from '@mui/x-charts';
|
|
22
22
|
export { ChartsAxisTooltipContent as DsChartsAxisTooltipContent } from '@mui/x-charts';
|
|
23
23
|
export { ChartsItemTooltipContent as DsChartsItemTooltipContent } from '@mui/x-charts';
|
|
24
|
+
export { ChartsTooltipContainer as DsChartsTooltipContainer } from '@mui/x-charts';
|
|
25
|
+
export { ChartDataProvider as DsChartDataProvider } from '@mui/x-charts';
|
|
24
26
|
export { Gauge as DsGauge } from '@mui/x-charts';
|
|
25
27
|
export { GaugeContainer as DsGaugeContainer } from '@mui/x-charts';
|
|
26
28
|
export { LineChart as DsLineChart } from '@mui/x-charts';
|
package/dist/x-charts/index.d.ts
CHANGED
package/dist/x-charts/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@am92/react-design-system",
|
|
3
|
-
"version": "3.0.1-beta.
|
|
3
|
+
"version": "3.0.1-beta.2",
|
|
4
4
|
"description": "ReactJS Design System using Material UI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"dist/**/*.json"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@emotion/react": "~11.
|
|
17
|
-
"@emotion/styled": "~11.
|
|
16
|
+
"@emotion/react": "~11.14.0",
|
|
17
|
+
"@emotion/styled": "~11.14.0",
|
|
18
18
|
"@mui/material": "^7.0.0",
|
|
19
19
|
"@mui/system": "^7.0.0",
|
|
20
20
|
"@mui/x-charts": "~8.0.0",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"utility-types": "^3.11.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"react": "^17.x.x || ^18.x.x",
|
|
41
|
-
"react-dom": "^17.x.x || ^18.x.x"
|
|
40
|
+
"react": "^17.x.x || ^18.x.x || ^19.x.x",
|
|
41
|
+
"react-dom": "^17.x.x || ^18.x.x || ^19.x.x"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"compile": "tsc",
|