@kvell-group/ui 1.10.0 → 1.11.1

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 (37) hide show
  1. package/dist/assets/CvvInput.css +1 -0
  2. package/dist/assets/PasswordInput.css +1 -0
  3. package/dist/assets/clsx.css +1 -0
  4. package/dist/clsx-BvFBxcni.js +23 -0
  5. package/dist/components/Inputs/CardInput/CardInput.d.ts +2 -0
  6. package/dist/components/Inputs/CardInput/CardInput.js +24 -0
  7. package/dist/components/{CardInput → Inputs/CardInput}/useCardLogo.js +5 -3
  8. package/dist/components/Inputs/CvvInput/CvvInput.d.ts +2 -0
  9. package/dist/components/Inputs/CvvInput/CvvInput.js +16 -0
  10. package/dist/components/Inputs/CvvInput/index.d.ts +1 -0
  11. package/dist/components/Inputs/CvvInput/index.js +4 -0
  12. package/dist/components/Inputs/Input.js +9 -0
  13. package/dist/components/Inputs/MaskedInput/MaskedInput.d.ts +2 -0
  14. package/dist/components/{CardInput/CardInput.js → Inputs/MaskedInput/MaskedInput.js} +248 -269
  15. package/dist/components/Inputs/MaskedInput/index.d.ts +1 -0
  16. package/dist/components/Inputs/MaskedInput/index.js +4 -0
  17. package/dist/components/Inputs/PasswordInput/PasswordInput.d.ts +4 -0
  18. package/dist/components/Inputs/PasswordInput/PasswordInput.js +16 -0
  19. package/dist/components/Inputs/PasswordInput/index.d.ts +1 -0
  20. package/dist/components/Inputs/PasswordInput/index.js +4 -0
  21. package/dist/components/Inputs/types.d.ts +5 -0
  22. package/dist/components/Inputs/types.js +1 -0
  23. package/dist/components/theme.js +3 -1
  24. package/dist/main.d.ts +5 -2
  25. package/dist/main.js +16 -10
  26. package/package.json +1 -1
  27. package/dist/assets/CardInput.css +0 -1
  28. package/dist/assets/Input.css +0 -1
  29. package/dist/clsx-OuTLNxxd.js +0 -16
  30. package/dist/components/CardInput/CardInput.d.ts +0 -145
  31. package/dist/components/Input/Input.js +0 -11
  32. /package/dist/components/{CardInput → Inputs/CardInput}/index.d.ts +0 -0
  33. /package/dist/components/{CardInput → Inputs/CardInput}/index.js +0 -0
  34. /package/dist/components/{CardInput → Inputs/CardInput}/useCardLogo.d.ts +0 -0
  35. /package/dist/components/{Input → Inputs}/Input.d.ts +0 -0
  36. /package/dist/components/{Input → Inputs}/index.d.ts +0 -0
  37. /package/dist/components/{Input → Inputs}/index.js +0 -0
@@ -0,0 +1 @@
1
+ export { MaskedInput } from './MaskedInput';
@@ -0,0 +1,4 @@
1
+ import { MaskedInput as p } from "./MaskedInput.js";
2
+ export {
3
+ p as MaskedInput
4
+ };
@@ -0,0 +1,4 @@
1
+ export declare const PasswordInput: import('react').ForwardRefExoticComponent<import('@mantine/core').PasswordInputProps & import('react').RefAttributes<HTMLInputElement> & {
2
+ component?: any;
3
+ renderRoot?: (props: Record<string, any>) => React.ReactNode;
4
+ }>;
@@ -0,0 +1,16 @@
1
+ import { PasswordInput as t } from "@mantine/core";
2
+ import { c as s, b as a } from "../../../clsx-BvFBxcni.js";
3
+ import { c as o } from "../../../Text.module-D3VLOIGk.js";
4
+ import '../../../assets/PasswordInput.css';const r = "_section_1lzoc_1", e = {
5
+ section: r
6
+ }, { input: n, error: c, ...i } = a, p = s(n, o["caption-l-regular"]), l = s(c, o["caption-l-regular"]), C = t.withProps({
7
+ classNames: {
8
+ ...i,
9
+ input: p,
10
+ error: l,
11
+ section: e.section
12
+ }
13
+ });
14
+ export {
15
+ C as PasswordInput
16
+ };
@@ -0,0 +1 @@
1
+ export { PasswordInput } from './PasswordInput';
@@ -0,0 +1,4 @@
1
+ import { PasswordInput as p } from "./PasswordInput.js";
2
+ export {
3
+ p as PasswordInput
4
+ };
@@ -0,0 +1,5 @@
1
+ import { ElementProps, InputBaseProps } from '@mantine/core';
2
+ export type InputProps = InputBaseProps & ElementProps<'input'> & {
3
+ value?: string;
4
+ mask?: string;
5
+ };
@@ -0,0 +1 @@
1
+
@@ -13,8 +13,10 @@ const m = {
13
13
  tertiary: e("#0a0f290a"),
14
14
  //borders
15
15
  "border-action-normal": e("#dee0e3"),
16
+ "border-action-destructive": e("#f7c3c0"),
16
17
  //text
17
- "text-base-tertiary": e("#0d112666")
18
+ "text-base-tertiary": e("#0d112666"),
19
+ "text-status-destructive": e("#e6483d")
18
20
  },
19
21
  primaryShade: 6,
20
22
  // { light: 6, dark: 8 } default mantine by theme
package/dist/main.d.ts CHANGED
@@ -2,6 +2,9 @@ export { ColorSchemeScript, mantineHtmlProps } from '@mantine/core';
2
2
  export { MantineProvider } from './components/MainProvider';
3
3
  export { theme } from './components/theme';
4
4
  export { Button } from './components/Button';
5
- export { CardInput } from './components/CardInput';
6
- export { Input } from './components/Input';
5
+ export { Input } from './components/Inputs';
6
+ export { CardInput } from './components/Inputs/CardInput';
7
+ export { MaskedInput } from './components/Inputs/MaskedInput';
8
+ export { PasswordInput } from './components/Inputs/PasswordInput';
9
+ export { CvvInput } from './components/Inputs/CvvInput';
7
10
  export { Text } from './components/Text';
package/dist/main.js CHANGED
@@ -1,17 +1,23 @@
1
1
  import { ColorSchemeScript as t, mantineHtmlProps as e } from "@mantine/core";
2
- import { MantineProvider as p } from "./components/MainProvider/MantineProvider.js";
2
+ import { MantineProvider as m } from "./components/MainProvider/MantineProvider.js";
3
3
  import { theme as f } from "./components/theme.js";
4
- import { Button as i } from "./components/Button/Button.js";
5
- import { CardInput as u } from "./components/CardInput/CardInput.js";
6
- import { Input as d } from "./components/Input/Input.js";
7
- import { Text as l } from "./components/Text/Text.js";
4
+ import { Button as u } from "./components/Button/Button.js";
5
+ import { Input as I } from "./components/Inputs/Input.js";
6
+ import { CardInput as i } from "./components/Inputs/CardInput/CardInput.js";
7
+ import { MaskedInput as v } from "./components/Inputs/MaskedInput/MaskedInput.js";
8
+ import { PasswordInput as P } from "./components/Inputs/PasswordInput/PasswordInput.js";
9
+ import { CvvInput as h } from "./components/Inputs/CvvInput/CvvInput.js";
10
+ import { Text as M } from "./components/Text/Text.js";
8
11
  export {
9
- i as Button,
10
- u as CardInput,
12
+ u as Button,
13
+ i as CardInput,
11
14
  t as ColorSchemeScript,
12
- d as Input,
13
- p as MantineProvider,
14
- l as Text,
15
+ h as CvvInput,
16
+ I as Input,
17
+ m as MantineProvider,
18
+ v as MaskedInput,
19
+ P as PasswordInput,
20
+ M as Text,
15
21
  e as mantineHtmlProps,
16
22
  f as theme
17
23
  };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@kvell-group/ui",
3
3
  "author": "Kvell Group",
4
4
  "private": false,
5
- "version": "1.10.0",
5
+ "version": "1.11.1",
6
6
  "type": "module",
7
7
  "files": [
8
8
  "dist",
@@ -1 +0,0 @@
1
- ._input_1uqnk_1{border-radius:var(--mantine-radius-xl);border:1px solid var(--mantine-color-border-action-normal-0);color:var(--mantine-color-text-base-tertiary-0)}._section_1uqnk_7[data-position=left]{padding-left:6px}._section_1uqnk_7[data-position=left]+input{padding-left:38px}._section_1uqnk_7[data-position=right]{margin-right:16px}
@@ -1 +0,0 @@
1
- ._input_huhi9_1{border-radius:var(--mantine-radius-xl);border:1px solid var(--mantine-color-border-action-normal-0);color:var(--mantine-color-text-base-tertiary-0);padding:18px 16px;box-shadow:var(--mantine-shadow-xs)}
@@ -1,16 +0,0 @@
1
- function a(r) {
2
- var f, n, t = "";
3
- if (typeof r == "string" || typeof r == "number") t += r;
4
- else if (typeof r == "object") if (Array.isArray(r)) {
5
- var o = r.length;
6
- for (f = 0; f < o; f++) r[f] && (n = a(r[f])) && (t && (t += " "), t += n);
7
- } else for (n in r) r[n] && (t && (t += " "), t += n);
8
- return t;
9
- }
10
- function i() {
11
- for (var r, f, n = 0, t = "", o = arguments.length; n < o; n++) (r = arguments[n]) && (f = a(r)) && (t && (t += " "), t += f);
12
- return t;
13
- }
14
- export {
15
- i as c
16
- };
@@ -1,145 +0,0 @@
1
- import { InputBaseProps, ElementProps } from '@mantine/core';
2
- export declare const CardInputBase: <L = import('react').ForwardRefExoticComponent<(Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
3
- [x: string]: unknown;
4
- }>, "ref"> & Omit<import('imask').MaskedDateOptions, "mask"> & {
5
- mask: DateConstructor;
6
- } & {
7
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
8
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
9
- [x: string]: unknown;
10
- }>, "ref"> & {
11
- mask: typeof import('imask').MaskedDate;
12
- } & Omit<Omit<import('imask').MaskedDateOptions, "mask"> & {
13
- mask: DateConstructor;
14
- }, "mask"> & {
15
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
16
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
17
- [x: string]: unknown;
18
- }>, "ref"> & Partial<Pick<import('imask').MaskedNumber, "scale" | "mask" | "max" | "min" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix" | "radix" | "thousandsSeparator" | "mapToRadix" | "normalizeZeros" | "padFractionalZeros">> & {
19
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
20
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
21
- [x: string]: unknown;
22
- }>, "ref"> & {
23
- mask: typeof import('imask').MaskedNumber;
24
- } & Omit<Partial<Pick<import('imask').MaskedNumber, "scale" | "mask" | "max" | "min" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix" | "radix" | "thousandsSeparator" | "mapToRadix" | "normalizeZeros" | "padFractionalZeros">>, "mask"> & {
25
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
26
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
27
- [x: string]: unknown;
28
- }>, "ref"> & Partial<Pick<import('imask').MaskedPattern<string>, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix" | "definitions" | "blocks" | "placeholderChar" | "displayChar" | "lazy">> & {
29
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
30
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
31
- [x: string]: unknown;
32
- }>, "ref"> & {
33
- mask: typeof import('imask').MaskedEnum;
34
- } & Omit<import('imask').MaskedEnumOptions, "mask"> & {
35
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
36
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
37
- [x: string]: unknown;
38
- }>, "ref"> & {
39
- mask: typeof import('imask').MaskedRange;
40
- } & Omit<import('imask').MaskedRangeOptions, "mask"> & {
41
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
42
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
43
- [x: string]: unknown;
44
- }>, "ref"> & Partial<Pick<import('imask').MaskedRegExp, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix">> & {
45
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
46
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
47
- [x: string]: unknown;
48
- }>, "ref"> & {
49
- mask: typeof import('imask').MaskedRegExp;
50
- } & Omit<Partial<Pick<import('imask').MaskedRegExp, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix">>, "mask"> & {
51
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
52
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
53
- [x: string]: unknown;
54
- }>, "ref"> & Partial<Pick<import('imask').MaskedFunction<any>, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix">> & {
55
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
56
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
57
- [x: string]: unknown;
58
- }>, "ref"> & {
59
- mask: typeof import('imask').MaskedFunction;
60
- } & Omit<Partial<Pick<import('imask').MaskedFunction<any>, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix">>, "mask"> & {
61
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
62
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
63
- [x: string]: unknown;
64
- }>, "ref"> & {
65
- mask: typeof import('imask').MaskedPattern;
66
- } & Omit<Partial<Pick<import('imask').MaskedPattern<string>, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix" | "definitions" | "blocks" | "placeholderChar" | "displayChar" | "lazy">>, "mask"> & {
67
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
68
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
69
- [x: string]: unknown;
70
- }>, "ref"> & Partial<Pick<import('imask').MaskedDynamic<any>, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix" | "dispatch">> & {
71
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
72
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
73
- [x: string]: unknown;
74
- }>, "ref"> & {
75
- mask: typeof import('imask').MaskedDynamic;
76
- } & Omit<Partial<Pick<import('imask').MaskedDynamic<any>, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix" | "dispatch">>, "mask"> & {
77
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
78
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
79
- [x: string]: unknown;
80
- }>, "ref"> & {
81
- mask: typeof import('imask').Masked;
82
- } & Omit<Partial<Pick<import('imask').Masked<any>, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix">>, "mask"> & {
83
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
84
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
85
- [x: string]: unknown;
86
- }>, "ref"> & {
87
- mask: import('imask').MaskedDate;
88
- } & Omit<Omit<import('imask').MaskedDateOptions, "mask"> & {
89
- mask: DateConstructor;
90
- }, "mask"> & {
91
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
92
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
93
- [x: string]: unknown;
94
- }>, "ref"> & {
95
- mask: import('imask').MaskedNumber;
96
- } & Omit<Partial<Pick<import('imask').MaskedNumber, "scale" | "mask" | "max" | "min" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix" | "radix" | "thousandsSeparator" | "mapToRadix" | "normalizeZeros" | "padFractionalZeros">>, "mask"> & {
97
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
98
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
99
- [x: string]: unknown;
100
- }>, "ref"> & {
101
- mask: import('imask').MaskedEnum;
102
- } & Omit<import('imask').MaskedEnumOptions, "mask"> & {
103
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
104
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
105
- [x: string]: unknown;
106
- }>, "ref"> & {
107
- mask: import('imask').MaskedRange;
108
- } & Omit<import('imask').MaskedRangeOptions, "mask"> & {
109
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
110
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
111
- [x: string]: unknown;
112
- }>, "ref"> & {
113
- mask: import('imask').MaskedRegExp;
114
- } & Omit<Partial<Pick<import('imask').MaskedRegExp, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix">>, "mask"> & {
115
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
116
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
117
- [x: string]: unknown;
118
- }>, "ref"> & {
119
- mask: import('imask').MaskedFunction<any>;
120
- } & Omit<Partial<Pick<import('imask').MaskedFunction<any>, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix">>, "mask"> & {
121
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
122
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
123
- [x: string]: unknown;
124
- }>, "ref"> & {
125
- mask: import('imask').MaskedPattern<string>;
126
- } & Omit<Partial<Pick<import('imask').MaskedPattern<string>, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix" | "definitions" | "blocks" | "placeholderChar" | "displayChar" | "lazy">>, "mask"> & {
127
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
128
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
129
- [x: string]: unknown;
130
- }>, "ref"> & {
131
- mask: import('imask').MaskedDynamic<any>;
132
- } & Omit<Partial<Pick<import('imask').MaskedDynamic<any>, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix" | "dispatch">>, "mask"> & {
133
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
134
- }, "ref"> | Omit<import('react-imask').ReactElementProps<HTMLInputElement> & Omit<import('react-imask').ReactMaskProps<HTMLInputElement, {
135
- [x: string]: unknown;
136
- }>, "ref"> & {
137
- mask: import('imask').Masked<any>;
138
- } & Omit<Partial<Pick<import('imask').Masked<any>, "mask" | "format" | "parent" | "prepare" | "prepareChar" | "validate" | "commit" | "parse" | "overwrite" | "eager" | "skipInvalid" | "autofix">>, "mask"> & {
139
- ref?: React.Ref<React.ComponentType<import('react-imask').IMaskInputProps<HTMLInputElement>>> | undefined;
140
- }, "ref">) & import('react').RefAttributes<unknown>>>(props: import('@mantine/core').PolymorphicComponentProps<L, InputBaseProps>) => React.ReactElement;
141
- type CardInputProps = InputBaseProps & Omit<ElementProps<'input'>, 'value'> & {
142
- value: string;
143
- };
144
- export declare const CardInput: (props: CardInputProps) => import("react/jsx-runtime").JSX.Element;
145
- export {};
@@ -1,11 +0,0 @@
1
- import { InputBase as s } from "@mantine/core";
2
- import { c as t } from "../../Text.module-D3VLOIGk.js";
3
- import { c as p } from "../../clsx-OuTLNxxd.js";
4
- import '../../assets/Input.css';const a = "_input_huhi9_1", n = {
5
- input: a
6
- }, i = p(n.input, t["caption-l-regular"]), m = s.withProps({
7
- classNames: { input: i }
8
- });
9
- export {
10
- m as Input
11
- };
File without changes
File without changes
File without changes