@cupcodev/ui 1.2.2 → 1.2.4

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cupcodev/ui",
3
3
  "private": false,
4
- "version": "1.2.2",
4
+ "version": "1.2.4",
5
5
  "packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
6
6
  "type": "module",
7
7
  "main": "./dist/index.cjs",
@@ -14,13 +14,20 @@
14
14
  "import": "./dist/index.js",
15
15
  "require": "./dist/index.cjs"
16
16
  },
17
+ "./styles": "./styles/index.css",
17
18
  "./styles/global.css": "./styles/global.css",
18
19
  "./styles/base.css": "./styles/base.css",
19
20
  "./styles/tokens.css": "./styles/tokens.css",
20
21
  "./styles/dock.css": "./styles/dock.css",
21
22
  "./styles/index.css": "./styles/index.css",
23
+ "./styles/global": "./styles/global.css",
24
+ "./styles/base": "./styles/base.css",
25
+ "./styles/tokens": "./styles/tokens.css",
26
+ "./styles/dock": "./styles/dock.css",
22
27
  "./styles.css": "./dist/styles.css",
28
+ "./tailwind-preset": "./tailwind-preset.cjs",
23
29
  "./tailwind-preset.cjs": "./tailwind-preset.cjs",
30
+ "./package.json": "./package.json",
24
31
  "./charts": {
25
32
  "types": "./dist/charts.d.ts",
26
33
  "import": "./dist/charts.js",
package/styles/base.css CHANGED
@@ -2,10 +2,6 @@
2
2
  @import "./tokens.css";
3
3
 
4
4
  /* Base leve: tokens + tipografia + fundo/foreground sem dependencias de @tailwind/@apply. */
5
- html {
6
- min-width: 380px;
7
- }
8
-
9
5
  body {
10
6
  margin: 0;
11
7
  background: hsl(var(--background));
package/styles/global.css CHANGED
@@ -8,10 +8,6 @@
8
8
  @apply border-border;
9
9
  }
10
10
 
11
- html {
12
- min-width: 380px;
13
- }
14
-
15
11
  body {
16
12
  @apply bg-background text-foreground;
17
13
  font-family: var(--font-ui);