@kvell-group/ui 1.10.0 → 1.11.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.
- package/dist/components/{CardInput/CardInput.d.ts → InputCard/InputCard.d.ts} +3 -3
- package/dist/components/InputCard/InputCard.js +34 -0
- package/dist/components/InputCard/index.d.ts +1 -0
- package/dist/components/InputCard/index.js +4 -0
- package/dist/components/{CardInput → InputCard}/useCardLogo.js +5 -3
- package/dist/components/InputMasked/InputMasked.d.ts +139 -0
- package/dist/components/InputMasked/InputMasked.js +15 -0
- package/dist/components/InputMasked/index.d.ts +1 -0
- package/dist/components/InputMasked/index.js +4 -0
- package/dist/{components/CardInput/CardInput.js → input-CT_F2u-Q.js} +256 -285
- package/dist/main.d.ts +2 -1
- package/dist/main.js +12 -10
- package/package.json +1 -1
- package/dist/components/CardInput/index.d.ts +0 -1
- package/dist/components/CardInput/index.js +0 -4
- /package/dist/assets/{CardInput.css → InputMasked.css} +0 -0
- /package/dist/components/{CardInput → InputCard}/useCardLogo.d.ts +0 -0
package/dist/main.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ 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
5
|
export { Input } from './components/Input';
|
|
6
|
+
export { InputCard } from './components/InputCard';
|
|
7
|
+
export { InputMasked } from './components/InputMasked';
|
|
7
8
|
export { Text } from './components/Text';
|
package/dist/main.js
CHANGED
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
import { ColorSchemeScript as t, mantineHtmlProps as e } from "@mantine/core";
|
|
2
|
-
import { MantineProvider as
|
|
2
|
+
import { MantineProvider as m } from "./components/MainProvider/MantineProvider.js";
|
|
3
3
|
import { theme as f } from "./components/theme.js";
|
|
4
|
-
import { Button as
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
4
|
+
import { Button as a } from "./components/Button/Button.js";
|
|
5
|
+
import { Input as u } from "./components/Input/Input.js";
|
|
6
|
+
import { InputCard as I } from "./components/InputCard/InputCard.js";
|
|
7
|
+
import { InputMasked as h } from "./components/InputMasked/InputMasked.js";
|
|
8
|
+
import { Text as s } from "./components/Text/Text.js";
|
|
8
9
|
export {
|
|
9
|
-
|
|
10
|
-
u as CardInput,
|
|
10
|
+
a as Button,
|
|
11
11
|
t as ColorSchemeScript,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
u as Input,
|
|
13
|
+
I as InputCard,
|
|
14
|
+
h as InputMasked,
|
|
15
|
+
m as MantineProvider,
|
|
16
|
+
s as Text,
|
|
15
17
|
e as mantineHtmlProps,
|
|
16
18
|
f as theme
|
|
17
19
|
};
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { CardInput } from './CardInput';
|
|
File without changes
|
|
File without changes
|