@kws3/ui 2.1.0 → 2.1.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.
package/CHANGELOG.mdx CHANGED
@@ -1,3 +1,6 @@
1
+ # 2.1.1
2
+ - Package `text-mask-core` moved to @kws3 namespace and removed from dependencies.
3
+
1
4
  # 2.1.0
2
5
  - Bugfix with Colorpicker component, where colors could not be typed in manually.
3
6
  - Extended typing and typescript support
@@ -36,7 +36,7 @@ Requires `guide` to be `true`, Default: `false`
36
36
  import {
37
37
  createTextMaskInputElement,
38
38
  conformToMask,
39
- } from "text-mask-core/src";
39
+ } from "@kws3/text-mask-core";
40
40
  /**
41
41
  * Mask array
42
42
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kws3/ui",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "UI components for use with Svelte v3 applications.",
5
5
  "main": "index.js",
6
6
  "svelte": "index.js",
@@ -26,14 +26,14 @@
26
26
  },
27
27
  "types": "./index.d.ts",
28
28
  "dependencies": {
29
+ "@kws3/text-mask-core": "^5.1.2",
29
30
  "apexcharts": "3.33.2",
30
31
  "flatpickr": "^4.5.2",
31
32
  "svelte-portal": "^2.1.2",
32
- "text-mask-core": "^5.1.2",
33
33
  "tippy.js": "^6.3.1"
34
34
  },
35
35
  "devDependencies": {
36
36
  "typescript": "^5.0.4"
37
37
  },
38
- "gitHead": "1df9160ff743e55eb266d3e0b4a8c23287b7a23d"
38
+ "gitHead": "e13405d2772906f133ca6e37f73f6222a636005f"
39
39
  }