@baleada/logic 0.22.7 → 0.23.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/lib/index.cjs +2229 -508
- package/lib/index.d.ts +511 -73
- package/lib/index.js +2172 -500
- package/package.json +28 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baleada/logic",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.1",
|
|
4
4
|
"description": "UI logic for the Baleada toolkit",
|
|
5
5
|
"main": "lib/index.cjs",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -12,12 +12,16 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
|
-
"
|
|
15
|
+
"tsc": "tsc --project tsconfig.build.json",
|
|
16
|
+
"rollup": "rollup --config rollup.config.ts --configPlugin 'typescript={tsconfig: `tsconfig.build.json`}' --bundleConfigAsCjs",
|
|
17
|
+
"prepare": "npm run tsc && npm run lint && npm run rollup",
|
|
16
18
|
"test:coverage": "node -r esbuild-register scripts/testCoverage.ts",
|
|
17
19
|
"test:only": "run() { uvu -r esbuild-register tests/$2 $1.test.ts$; }; run",
|
|
18
20
|
"test:node": "npm run test:only . node",
|
|
19
21
|
"test:browser": "npm run test:only . browser",
|
|
20
22
|
"test": "npm run test:only .",
|
|
23
|
+
"lint": "eslint 'src/**'",
|
|
24
|
+
"lint:fix": "eslint --fix 'src/**'",
|
|
21
25
|
"dev": "vite"
|
|
22
26
|
},
|
|
23
27
|
"repository": {
|
|
@@ -30,7 +34,8 @@
|
|
|
30
34
|
"user interface",
|
|
31
35
|
"user interface logic",
|
|
32
36
|
"class",
|
|
33
|
-
"pipe"
|
|
37
|
+
"pipe",
|
|
38
|
+
"factory"
|
|
34
39
|
],
|
|
35
40
|
"author": {
|
|
36
41
|
"name": "Alex Vipond",
|
|
@@ -43,30 +48,37 @@
|
|
|
43
48
|
},
|
|
44
49
|
"homepage": "https://baleada.dev",
|
|
45
50
|
"devDependencies": {
|
|
46
|
-
"@baleada/prepare": "^0.5.
|
|
51
|
+
"@baleada/prepare": "^0.5.39",
|
|
47
52
|
"@types/node": "^14.14.41",
|
|
48
|
-
"@
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^5.54.1",
|
|
54
|
+
"@typescript-eslint/parser": "^5.54.1",
|
|
55
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
56
|
+
"esbuild": "^0.17.11",
|
|
57
|
+
"esbuild-register": "^3.4.2",
|
|
58
|
+
"eslint": "^8.36.0",
|
|
59
|
+
"eslint-plugin-import": "^2.27.5",
|
|
60
|
+
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
61
|
+
"rollup": "^3.19.1",
|
|
62
|
+
"tslib": "^2.5.0",
|
|
63
|
+
"typescript": "^5.0.4",
|
|
54
64
|
"uvu": "^0.5.6",
|
|
55
|
-
"vite": "^
|
|
56
|
-
"vue": "^3.2.
|
|
65
|
+
"vite": "^4.1.4",
|
|
66
|
+
"vue": "^3.2.47",
|
|
57
67
|
"vue-router": "^4.1.6"
|
|
58
68
|
},
|
|
59
69
|
"dependencies": {
|
|
60
70
|
"@babel/runtime": "^7.20.6",
|
|
61
|
-
"@sindresorhus/slugify": "^2.2.
|
|
71
|
+
"@sindresorhus/slugify": "^2.2.1",
|
|
62
72
|
"@snigo.dev/color": "^0.0.6",
|
|
63
73
|
"@types/dompurify": "^2.4.0",
|
|
64
|
-
"@types/requestidlecallback": "^0.3.5",
|
|
65
|
-
"@types/resize-observer-browser": "^0.1.7",
|
|
66
74
|
"bezier-easing": "^2.1.0",
|
|
75
|
+
"clsx": "^1.2.1",
|
|
76
|
+
"dequal": "^2.0.3",
|
|
67
77
|
"dompurify": "^2.4.1",
|
|
68
78
|
"fast-fuzzy": "^1.12.0",
|
|
69
|
-
"
|
|
79
|
+
"klona": "^2.0.6",
|
|
80
|
+
"ky": "^0.33.3",
|
|
81
|
+
"lazy-collections": "0.0.0-insiders.71ee200",
|
|
70
82
|
"perfect-freehand": "^1.2.0",
|
|
71
83
|
"polygon-clipping": "^0.15.3"
|
|
72
84
|
},
|