asma-core-ui 3.0.26 → 3.0.27

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.
Files changed (30) hide show
  1. package/dist/src/components/data-display/tooltip/StyledTooltip.d.ts +1 -0
  2. package/dist/src/components/data-display/typography/StyledTypography.d.ts +1 -0
  3. package/dist/src/components/feedback/alert/StyledAlert.d.ts +1 -0
  4. package/dist/src/components/feedback/alert/StyledAlertTitle.d.ts +1 -0
  5. package/dist/src/components/feedback/dialog/StyledDialogActions.d.ts +1 -0
  6. package/dist/src/components/feedback/dialog/StyledDialogContent.d.ts +1 -0
  7. package/dist/src/components/feedback/dialog/StyledDialogTitle.d.ts +1 -0
  8. package/dist/src/components/feedback/snack-bar/SnackbarProvider.d.ts +1 -0
  9. package/dist/src/components/feedback/snack-bar/StyledSnackbar.d.ts +1 -0
  10. package/dist/src/components/inputs/radio-button/StyledRadio.d.ts +1 -0
  11. package/dist/src/components/inputs/radio-button/StyledRadioGroup.d.ts +1 -0
  12. package/dist/src/components/inputs/select/StyledSelectItem.d.ts +1 -0
  13. package/dist/src/components/inputs/slider/StyledSlider.d.ts +1 -0
  14. package/dist/src/components/inputs/switch/StyledSwitch.d.ts +2 -1
  15. package/dist/src/components/miscellaneous/StyledFormControl.d.ts +1 -0
  16. package/dist/src/components/miscellaneous/StyledFormControlLabel.d.ts +1 -0
  17. package/dist/src/components/miscellaneous/StyledFormHelperText.d.ts +1 -0
  18. package/dist/src/components/miscellaneous/StyledFormLabel.d.ts +1 -0
  19. package/dist/src/components/miscellaneous/StyledInputLabel.d.ts +1 -0
  20. package/dist/src/components/navigation/menu/StyledMenu.d.ts +1 -0
  21. package/dist/src/components/navigation/menu/StyledMenuItem.d.ts +1 -0
  22. package/dist/src/components/navigation/menu/StyledMenuList.d.ts +1 -0
  23. package/dist/src/components/pickers/date-picker/StyledDatePicker.d.ts +1 -0
  24. package/dist/src/components/table/StyledTable.d.ts +1 -0
  25. package/dist/src/components/utils/accordion/StyledAccordion.d.ts +1 -0
  26. package/dist/src/components/utils/accordion/StyledAccordionDetails.d.ts +1 -0
  27. package/dist/src/components/utils/accordion/StyledAccordionSummary.d.ts +1 -0
  28. package/dist/src/components/utils/popover/StyledPopover.d.ts +1 -0
  29. package/dist/src/helpers/reflections.helper.d.ts +1 -1
  30. package/package.json +1 -1
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type TooltipProps } from '@mui/material';
2
3
  export declare const StyledTooltip: (props: TooltipProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type TypographyProps } from '@mui/material';
2
3
  export declare const StyledTypography: (props: TypographyProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type AlertProps } from '@mui/material';
2
3
  export declare const StyledAlert: (props: AlertProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type AlertTitleProps } from '@mui/material';
2
3
  export declare const StyledAlertTitle: (props: AlertTitleProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type DialogActionsProps } from '@mui/material';
2
3
  export declare const StyledDialogActions: (props: DialogActionsProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type DialogContentProps } from '@mui/material';
2
3
  export declare const StyledDialogContent: ({ children, classes, className, ...rest }: DialogContentProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import type { DialogTitleProps } from '@mui/material/DialogTitle/DialogTitle';
2
3
  export declare const StyledDialogTitle: ({ children, ...rest }: DialogTitleProps) => JSX.Element | null;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { AlertColor } from '@mui/material';
2
3
  import { type SnackbarProviderProps } from 'notistack';
3
4
  /**
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type SnackbarProps } from '@mui/material';
2
3
  export declare const StyledSnackbar: ({ children, ...props }: SnackbarProps) => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { type RadioProps } from '@mui/material';
2
3
  export declare const StyledRadio: ({ dataTest, ...props }: RadioProps & {
3
4
  dataTest: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { type RadioGroupProps } from '@mui/material';
2
3
  export declare const StyledRadioGroup: ({ dataTest, ...props }: RadioGroupProps & {
3
4
  dataTest: string;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type MenuItemProps } from '@mui/material';
2
3
  export declare const StyledSelectItem: (item: MenuItemProps) => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { type SliderProps } from '@mui/material';
2
3
  export interface StyledSliderProps extends SliderProps {
3
4
  dataTest: string;
@@ -1,5 +1,6 @@
1
+ /// <reference types="react" />
1
2
  import { type SwitchProps as _SwitchProps } from '@mui/material';
2
3
  export type SwitchProps = _SwitchProps;
3
- export declare const StyledSwitch: ({ dataTest, ...props }: _SwitchProps & {
4
+ export declare const StyledSwitch: ({ dataTest, ...props }: SwitchProps & {
4
5
  dataTest: string;
5
6
  }) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type FormControlProps } from '@mui/material';
2
3
  export declare const StyledFormControl: (props: FormControlProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type FormControlLabelProps } from '@mui/material';
2
3
  export declare const StyledFormControlLabel: (props: FormControlLabelProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type FormHelperTextProps } from '@mui/material';
2
3
  export declare const StyledFormHelperText: (props: FormHelperTextProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type FormLabelProps } from '@mui/material';
2
3
  export declare const StyledFormLabel: (props: FormLabelProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type InputLabelProps } from '@mui/material';
2
3
  export declare const StyledInputLabel: (props: InputLabelProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type MenuProps } from '@mui/material';
2
3
  export declare const StyledMenu: (props: MenuProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type MenuItemProps } from '@mui/material';
2
3
  export declare const StyledMenuItem: (props: MenuItemProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type MenuListProps } from '@mui/material';
2
3
  export declare const StyledMenuList: (props: MenuListProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import type { DatePickerProps } from './types';
2
3
  export declare const StyledDatePicker: (props: DatePickerProps) => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { type StyledTableProps } from './types';
2
3
  /**
3
4
  *
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type AccordionProps } from '@mui/material';
2
3
  export declare const StyledAccordion: (props: AccordionProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type AccordionDetailsProps } from '@mui/material';
2
3
  export declare const StyledAccordionDetails: (props: AccordionDetailsProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type AccordionSummaryProps } from '@mui/material';
2
3
  export declare const StyledAccordionSummary: (props: AccordionSummaryProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { type PopoverProps } from '@mui/material';
2
3
  export declare const StyledPopover: (props: PopoverProps) => JSX.Element;
@@ -1 +1 @@
1
- export declare const omit: <T extends object, K extends keyof T>(obj: T, keys: readonly K[]) => Omit<T, K>;
1
+ export declare const omit: <T extends object, K extends keyof T>(obj: T, keys: ReadonlyArray<K>) => Omit<T, K>;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "3.0.26",
6
+ "version": "3.0.27",
7
7
  "type": "module",
8
8
  "files": [
9
9
  "dist/**/*",