@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/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 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 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
- i as Button,
10
- u as CardInput,
10
+ a as Button,
11
11
  t as ColorSchemeScript,
12
- d as Input,
13
- p as MantineProvider,
14
- l as Text,
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
@@ -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.0",
6
6
  "type": "module",
7
7
  "files": [
8
8
  "dist",
@@ -1 +0,0 @@
1
- export { CardInput } from './CardInput';
@@ -1,4 +0,0 @@
1
- import { CardInput as p } from "./CardInput.js";
2
- export {
3
- p as CardInput
4
- };
File without changes