@kvell-group/ui 1.18.25 → 1.18.27

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/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.18.25",
5
+ "version": "1.18.27",
6
6
  "type": "module",
7
7
  "main": "src/index.ts",
8
8
  "types": "src/index.ts",
@@ -66,7 +66,7 @@
66
66
  "postcss-preset-mantine": "^1.17.0",
67
67
  "postcss-simple-vars": "^7.0.1",
68
68
  "prettier": "^3.5.3",
69
- "semantic-release": "^24.2.3",
69
+ "semantic-release": "^25.0.2",
70
70
  "storybook": "^8.6.12",
71
71
  "stylelint": "^16.17.0",
72
72
  "stylelint-config-standard": "^37.0.0",
@@ -6,5 +6,5 @@ export const Pagination = MantinePagination.withProps({
6
6
  classNames,
7
7
  previousIcon: () => <RiArrowLeftLine size={16} />,
8
8
  nextIcon: () => <RiArrowRightLine size={16} />,
9
- dotsIcon: () => '...',
9
+ dotsIcon: () => <>...</>,
10
10
  })
package/src/index.ts CHANGED
@@ -36,3 +36,8 @@ export * from './components/Pagination'
36
36
 
37
37
  //Miscellaneous
38
38
  export { Divider } from './components/@core/Divider'
39
+
40
+ // types ----------------------------------------------------------------
41
+
42
+ //props
43
+ export type { MaskedInputProps } from './components/Inputs/@types/types'