@chocbite/ts-lib-form 1.0.1 → 1.1.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/index.d.mts +4 -197
- package/dist/index.mjs +5 -2576
- package/dist/style.css +0 -6
- package/package.json +22 -19
package/dist/style.css
CHANGED
|
@@ -355,12 +355,6 @@ form-switch > span:empty {
|
|
|
355
355
|
.touch form-switch > span {
|
|
356
356
|
font-size: 1.1rem;
|
|
357
357
|
}
|
|
358
|
-
@font-face {
|
|
359
|
-
font-family: Material Symbols Rounded;
|
|
360
|
-
font-style: normal;
|
|
361
|
-
font-weight: 400;
|
|
362
|
-
src: url("./Material-Rounded-ZKTXTWUN.woff2") format("woff2");
|
|
363
|
-
}
|
|
364
358
|
form-group {
|
|
365
359
|
margin-bottom: 0.5rem;
|
|
366
360
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chocbite/ts-lib-form",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Form fields UI library for TypeScript",
|
|
5
5
|
"author": "chocolateandmilkwin",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,31 +27,34 @@
|
|
|
27
27
|
"build": "tsdown src/index.ts",
|
|
28
28
|
"lint": "eslint src/**/*.ts",
|
|
29
29
|
"test": "vitest run",
|
|
30
|
+
"check-deps": "npx depcheck",
|
|
30
31
|
"check-trials": "tsc --noEmit",
|
|
31
|
-
"prepublishOnly": "npm run check-trials && npm run build",
|
|
32
|
+
"prepublishOnly": "npm run check-deps && npm run check-trials && npm run build",
|
|
32
33
|
"upgrades": "npx npm-check-updates --target semver",
|
|
33
34
|
"upgrade": "npx npm-check-updates --target semver -u && npm install"
|
|
34
35
|
},
|
|
35
36
|
"devDependencies": {
|
|
36
|
-
"@chocbite/ts-supplement-eslint": "^1.0.
|
|
37
|
-
"@chocbite/ts-lib-common": "^1.
|
|
38
|
-
"@chocbite/ts-lib-icons": "^1.
|
|
39
|
-
"@tsdown/css": "^0.21.
|
|
40
|
-
"@vitest/browser-playwright": "^4.1.
|
|
37
|
+
"@chocbite/ts-supplement-eslint": "^1.0.3",
|
|
38
|
+
"@chocbite/ts-lib-common": "^1.3.0",
|
|
39
|
+
"@chocbite/ts-lib-icons": "^1.2.0",
|
|
40
|
+
"@tsdown/css": "^0.21.8",
|
|
41
|
+
"@vitest/browser-playwright": "^4.1.4",
|
|
41
42
|
"eslint": "^10.2.0",
|
|
42
|
-
"sass": "^1.99.0",
|
|
43
|
-
"tsdown": "^0.21.
|
|
44
|
-
"typescript": "^
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"vitest": "^4.1.3"
|
|
43
|
+
"sass-embedded": "^1.99.0",
|
|
44
|
+
"tsdown": "^0.21.8",
|
|
45
|
+
"typescript": "^6.0.2",
|
|
46
|
+
"vite": "^8.0.8",
|
|
47
|
+
"vitest": "^4.1.4"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@chocbite/ts-lib-
|
|
51
|
-
"@chocbite/ts-lib-
|
|
52
|
-
"@chocbite/ts-lib-
|
|
53
|
-
"@chocbite/ts-lib-
|
|
54
|
-
"@chocbite/ts-lib-
|
|
55
|
-
"@chocbite/ts-lib-
|
|
50
|
+
"@chocbite/ts-lib-result": "^1.4.1",
|
|
51
|
+
"@chocbite/ts-lib-svg": "^1.2.0",
|
|
52
|
+
"@chocbite/ts-lib-math": "^1.1.1",
|
|
53
|
+
"@chocbite/ts-lib-colors": "^1.1.0",
|
|
54
|
+
"@chocbite/ts-lib-string": "^1.1.0",
|
|
55
|
+
"@chocbite/ts-lib-list": "^1.1.0",
|
|
56
|
+
"@chocbite/ts-lib-base": "^1.7.0",
|
|
57
|
+
"@chocbite/ts-lib-theme": "^1.3.0",
|
|
58
|
+
"@chocbite/ts-lib-state": "^2.2.0"
|
|
56
59
|
}
|
|
57
60
|
}
|