ablok-components 0.3.49 → 0.3.52

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.
@@ -907,12 +907,12 @@ function Ae(e) {
907
907
  if (!t)
908
908
  return null;
909
909
  const o = t[0], s = l && e.parsePatterns[l] || e.parsePatterns[e.defaultParseWidth], d = Array.isArray(s) ? Ca(s, (i) => i.test(o)) : (
910
- // [TODO] -- I challenge you to fix the type
910
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- I challange you to fix the type
911
911
  $a(s, (i) => i.test(o))
912
912
  );
913
913
  let m;
914
914
  m = e.valueCallback ? e.valueCallback(d) : d, m = n.valueCallback ? (
915
- // [TODO] -- I challenge you to fix the type
915
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- I challange you to fix the type
916
916
  n.valueCallback(m)
917
917
  ) : m;
918
918
  const u = r.slice(o.length);
package/package.json CHANGED
@@ -1,23 +1,7 @@
1
1
  {
2
2
  "name": "ablok-components",
3
3
  "private": false,
4
- "version": "0.3.49",
5
- "scripts": {
6
- "dev": "vite --host",
7
- "story:dev": "histoire dev",
8
- "story:build": "histoire build",
9
- "story:preview": "histoire preview",
10
- "build": "vue-tsc --noEmit && vite build",
11
- "build:watch": "vue-tsc --noEmit --watch & vite build --watch",
12
- "preview": "vite preview",
13
- "build-lib-bak": "vite build && vue-tsc --emitDeclarationOnly && mv dist/src dist/types",
14
- "build-lib": "vite build && vue-tsc --emitDeclarationOnly",
15
- "release": "bash ./scripts/release.sh",
16
- "postrelease": "bash ./scripts/publish.sh",
17
- "test": "playwright test",
18
- "test:ui": "playwright test --ui",
19
- "test:headed": "playwright test --headed"
20
- },
4
+ "version": "0.3.52",
21
5
  "dependencies": {
22
6
  "@popperjs/core": "^2.11.8",
23
7
  "@tiptap/core": "^3.18.0",
@@ -40,7 +24,8 @@
40
24
  "ofetch": "^1.5.1",
41
25
  "qr-code-styling": "^1.9.2",
42
26
  "vue-advanced-cropper": "^2.8.9",
43
- "vue-i18n": "^11.2.8"
27
+ "vue-i18n": "^11.2.8",
28
+ "date-fns": "^3.0.0"
44
29
  },
45
30
  "peerDependencies": {
46
31
  "vue": "^3.5.27"
@@ -80,5 +65,21 @@
80
65
  "require": "./dist/ablok-components.umd.js"
81
66
  }
82
67
  },
83
- "types": "./dist/types/index.d.ts"
84
- }
68
+ "types": "./dist/types/index.d.ts",
69
+ "scripts": {
70
+ "dev": "vite --host",
71
+ "story:dev": "histoire dev",
72
+ "story:build": "histoire build",
73
+ "story:preview": "histoire preview",
74
+ "build": "vue-tsc --noEmit && vite build",
75
+ "build:watch": "vue-tsc --noEmit --watch & vite build --watch",
76
+ "preview": "vite preview",
77
+ "build-lib-bak": "vite build && vue-tsc --emitDeclarationOnly && mv dist/src dist/types",
78
+ "build-lib": "vite build && vue-tsc --emitDeclarationOnly",
79
+ "release": "bash ./scripts/release.sh",
80
+ "postrelease": "bash ./scripts/publish.sh",
81
+ "test": "playwright test",
82
+ "test:ui": "playwright test --ui",
83
+ "test:headed": "playwright test --headed"
84
+ }
85
+ }