@banhosdev/moldsoft-ui 1.1.0 → 1.2.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 +4 -4
  2. package/package.json +2 -2
package/dist/styles.css CHANGED
@@ -43,7 +43,7 @@
43
43
  --color-ring: hsl(var(--ring));
44
44
  }
45
45
  }
46
- @layer base {
46
+ @layer ms-base {
47
47
  *, ::after, ::before, ::backdrop, ::file-selector-button {
48
48
  box-sizing: border-box;
49
49
  margin: 0;
@@ -191,7 +191,7 @@
191
191
  display: none !important;
192
192
  }
193
193
  }
194
- @layer utilities {
194
+ @layer ms-utilities {
195
195
  .pointer-events-none {
196
196
  pointer-events: none;
197
197
  }
@@ -696,7 +696,7 @@
696
696
  }
697
697
  }
698
698
  }
699
- @layer base {
699
+ @layer ms-base {
700
700
  :root {
701
701
  --background: 0 0% 100%;
702
702
  --foreground: 0 0% 3.9%;
@@ -751,7 +751,7 @@
751
751
  --chart-5: 340 75% 55%;
752
752
  }
753
753
  }
754
- @layer base {
754
+ @layer ms-base {
755
755
  * {
756
756
  border-color: var(--color-border);
757
757
  outline-color: color-mix(in srgb, hsl(var(--ring)) 50%, transparent);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@banhosdev/moldsoft-ui",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -19,7 +19,7 @@
19
19
  "src/assets"
20
20
  ],
21
21
  "scripts": {
22
- "build": "tsup && npx tailwindcss -i src/styles/globals.css -o dist/styles.css",
22
+ "build": "tsup && npx tailwindcss -i src/styles/globals.css -o dist/styles.css && node scripts/fix-css.js",
23
23
  "dev": "tsup --watch --onSuccess \"npx tailwindcss -i src/styles/globals.css -o dist/styles.css\"",
24
24
  "lint": "eslint src"
25
25
  },