@akad/design-system 1.0.0-alpha.7 → 1.1.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.
@@ -26,11 +26,19 @@ declare const maskConfig: {
26
26
  };
27
27
  };
28
28
  document: {
29
- mask: {
29
+ mask: ({
30
30
  mask: string;
31
31
  startsWith: RegExp;
32
32
  maxLength: number;
33
- }[];
33
+ definitions?: undefined;
34
+ } | {
35
+ mask: string;
36
+ definitions: {
37
+ A: RegExp;
38
+ };
39
+ startsWith: RegExp;
40
+ maxLength: number;
41
+ })[];
34
42
  };
35
43
  'phone-br': {
36
44
  mask: {
@@ -820,9 +820,9 @@ $button__primary--hover: (
820
820
  }
821
821
 
822
822
  &:disabled {
823
- background: var(--colorneutral--30);
823
+ background: var(--color__neutral--30);
824
824
  border-color: transparent;
825
- color: var(--colorneutral--50);
825
+ color: var(--color__neutral--50);
826
826
  cursor: not-allowed;
827
827
  }
828
828