@chocbite/ts-lib-form 1.0.0 → 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/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.0",
3
+ "version": "1.1.0",
4
4
  "description": "Form fields UI library for TypeScript",
5
5
  "author": "chocolateandmilkwin",
6
6
  "license": "MIT",
@@ -8,7 +8,7 @@
8
8
  "private": false,
9
9
  "module": "./dist/index.mjs",
10
10
  "types": "./dist/index.d.mts",
11
- "style": "./dist/index.css",
11
+ "style": "./dist/style.css",
12
12
  "publishConfig": {
13
13
  "access": "public"
14
14
  },
@@ -16,7 +16,7 @@
16
16
  ".": {
17
17
  "import": "./dist/index.mjs",
18
18
  "types": "./dist/index.d.mts",
19
- "style": "./dist/index.css"
19
+ "style": "./dist/style.css"
20
20
  }
21
21
  },
22
22
  "files": [
@@ -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.0",
37
- "@chocbite/ts-lib-common": "^1.2.2",
38
- "@chocbite/ts-lib-icons": "^1.1.0",
39
- "@tsdown/css": "^0.21.7",
40
- "@vitest/browser-playwright": "^4.1.3",
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.7",
44
- "typescript": "^5.9.3",
45
- "typescript-eslint": "^8.58.0",
46
- "vite": "^8.0.6",
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-colors": "^1.0.0",
51
- "@chocbite/ts-lib-string": "^1.0.0",
52
- "@chocbite/ts-lib-list": "^1.0.0",
53
- "@chocbite/ts-lib-base": "^1.4.2",
54
- "@chocbite/ts-lib-theme": "^1.2.1",
55
- "@chocbite/ts-lib-state": "^2.1.0"
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
  }