sk-clib 1.3.0 → 1.5.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.
Files changed (2) hide show
  1. package/dist/styles.css +1 -24
  2. package/package.json +4 -3
package/dist/styles.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.7 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.8 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  @layer theme, base, components, utilities;
4
4
  @layer theme {
@@ -387,29 +387,6 @@
387
387
  }
388
388
  }
389
389
  }
390
- @layer base {
391
- html, body {
392
- width: 100%;
393
- height: 100%;
394
- overflow-y: auto;
395
- background-color: var(--color-surface-2);
396
- }
397
- }
398
- @layer docs {
399
- header {
400
- font-size: calc(var(--spacing) * 8);
401
- color: var(--color-primary);
402
- }
403
- h1, h2, h3, h4, h5, h6 {
404
- color: var(--color-gray-400);
405
- margin-top: calc((var(--spacing) * 5));
406
- }
407
- pre {
408
- display: flex;
409
- flex-shrink: 0;
410
- max-height: 20vh;
411
- }
412
- }
413
390
  @property --tw-border-style {
414
391
  syntax: "*";
415
392
  inherits: false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sk-clib",
3
- "version": "1.3.0",
3
+ "version": "1.5.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -27,7 +27,7 @@
27
27
  "**/*.css"
28
28
  ],
29
29
  "scripts": {
30
- "build": "svelte-package && npx tailwindcss -i ./src/app.css -o ./dist/styles.css",
30
+ "build": "svelte-package && npm run css_build",
31
31
  "webbuild": "vite build",
32
32
  "prepublishOnly": "npm run build && publint --skip-pack",
33
33
  "dev": "vite dev",
@@ -35,7 +35,8 @@
35
35
  "check": "svelte-check --tsconfig ./tsconfig.json",
36
36
  "check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
37
37
  "format": "prettier --write .",
38
- "lint": "prettier --check . && eslint ."
38
+ "lint": "prettier --check . && eslint .",
39
+ "css_build": "npx tailwindcss -i ./src/library.css -o ./dist/styles.css"
39
40
  },
40
41
  "peerDependencies": {
41
42
  "@sveltejs/kit": "^2.0.0",