@mmb-digital/design-system-web 0.1.348 → 0.1.349

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/index.d.ts CHANGED
@@ -12,7 +12,7 @@ import * as afformative from 'afformative';
12
12
  import { Formatter } from 'afformative';
13
13
  import { Locale } from 'date-fns';
14
14
  import { DatePickerProps as DatePickerProps$1 } from 'react-datepicker';
15
- import { Masked, FactoryOpts } from 'imask';
15
+ import { FactoryOpts, MaskedNumberOptions } from 'imask';
16
16
  import * as _emotion_utils from '@emotion/utils';
17
17
  export { useMergeRefs } from '@floating-ui/react';
18
18
  import { z } from 'zod';
@@ -311,11 +311,11 @@ declare const styled: typeof emotionStyled;
311
311
  type ChooseColor = <Dark extends string = string, Light extends string = string>(colorSchemeObject: ColorObject<Dark, Light>) => Dark | Light;
312
312
  declare const useChooseColor: (colorScheme: ColorScheme) => ChooseColor;
313
313
 
314
- declare const resolveMask: (mask: Masked, value: string) => {
314
+ declare const resolveMask: (maskOptions: FactoryOpts, value: string) => {
315
315
  masked: string;
316
316
  unmasked: string;
317
317
  };
318
- declare const resolveMaskToNumber: (mask: Masked, value: string) => number;
318
+ declare const resolveMaskToNumber: (maskOptions: MaskedNumberOptions, value: string) => number;
319
319
 
320
320
  interface UseDesignSystemParam {
321
321
  colorScheme?: ColorScheme | undefined;