@vaneui/ui 0.0.14 → 0.0.15

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.
@@ -1420,9 +1420,9 @@ const textTheme = createTypographyComponentTheme("p", "p-0 m-0 w-fit", textSizeC
1420
1420
  // Link specific theme
1421
1421
  const linkTheme = createTypographyComponentTheme("a", "hover:underline w-fit", textSizeClasses, { ...typographyThemeDefaults, link: true });
1422
1422
  // List item specific theme
1423
- const listItemTheme = createTypographyComponentTheme("li w-fit");
1423
+ const listItemTheme = createTypographyComponentTheme("li");
1424
1424
  // List specific theme
1425
- const listTheme = createTypographyComponentTheme("ul w-fit", "list-disc list-inside");
1425
+ const listTheme = createTypographyComponentTheme("ul", "list-disc list-inside");
1426
1426
 
1427
1427
  class DirectionTheme extends BaseTheme {
1428
1428
  constructor(initial) {
package/dist/index.esm.js CHANGED
@@ -4149,9 +4149,9 @@ const textTheme = createTypographyComponentTheme("p", "p-0 m-0 w-fit", textSizeC
4149
4149
  // Link specific theme
4150
4150
  const linkTheme = createTypographyComponentTheme("a", "hover:underline w-fit", textSizeClasses, { ...typographyThemeDefaults, link: true });
4151
4151
  // List item specific theme
4152
- const listItemTheme = createTypographyComponentTheme("li w-fit");
4152
+ const listItemTheme = createTypographyComponentTheme("li");
4153
4153
  // List specific theme
4154
- const listTheme = createTypographyComponentTheme("ul w-fit", "list-disc list-inside");
4154
+ const listTheme = createTypographyComponentTheme("ul", "list-disc list-inside");
4155
4155
 
4156
4156
  class DirectionTheme extends BaseTheme {
4157
4157
  constructor(initial) {
package/dist/index.js CHANGED
@@ -4151,9 +4151,9 @@ const textTheme = createTypographyComponentTheme("p", "p-0 m-0 w-fit", textSizeC
4151
4151
  // Link specific theme
4152
4152
  const linkTheme = createTypographyComponentTheme("a", "hover:underline w-fit", textSizeClasses, { ...typographyThemeDefaults, link: true });
4153
4153
  // List item specific theme
4154
- const listItemTheme = createTypographyComponentTheme("li w-fit");
4154
+ const listItemTheme = createTypographyComponentTheme("li");
4155
4155
  // List specific theme
4156
- const listTheme = createTypographyComponentTheme("ul w-fit", "list-disc list-inside");
4156
+ const listTheme = createTypographyComponentTheme("ul", "list-disc list-inside");
4157
4157
 
4158
4158
  class DirectionTheme extends BaseTheme {
4159
4159
  constructor(initial) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaneui/ui",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -25,14 +25,6 @@
25
25
  "types": "./dist/components/complex/index.d.ts"
26
26
  },
27
27
  "./css": {
28
- "import": "./dist/all.css",
29
- "default": "./dist/all.css"
30
- },
31
- "./css/vars": {
32
- "import": "./dist/vars.css",
33
- "default": "./dist/vars.css"
34
- },
35
- "./css/ui": {
36
28
  "import": "./dist/ui.css",
37
29
  "default": "./dist/ui.css"
38
30
  },
@@ -45,16 +37,12 @@
45
37
  "clean": "rimraf dist",
46
38
  "type-check": "tsc --noEmit",
47
39
  "build:js": "npm run type-check && npm run clean && rollup -c --bundleConfigAsCjs",
48
- "build:css:all": "npx @tailwindcss/cli -i ./src/components/index.css -o ./dist/all.css",
49
- "build:css:theme": "npx @tailwindcss/cli -i ./src/components/theme/vars.css -o ./dist/vars.css",
50
40
  "build:css:ui": "npx @tailwindcss/cli -i ./src/components/ui/index.css -o ./dist/ui.css",
51
41
  "build:css:complex": "npx @tailwindcss/cli -i ./src/components/complex/index.css -o ./dist/complex.css",
52
- "watch:css:all": "npx @tailwindcss/cli --watch -i ./src/components/index.css -o ./dist/all.css",
53
- "watch:css:theme": "npx @tailwindcss/cli --watch -i ./src/components/theme/vars.css -o ./dist/vars.css",
54
42
  "watch:css:ui": "npx @tailwindcss/cli --watch -i ./src/components/ui/index.css -o ./dist/ui.css",
55
43
  "watch:css:complex": "npx @tailwindcss/cli --watch -i ./src/components/complex/index.css -o ./dist/complex.css",
56
- "build": "npm run type-check && npm run clean && npm run build:js && npm run build:css:all && npm run build:css:theme && npm run build:css:ui && npm run build:css:complex",
57
- "watch": "npm run clean && concurrently \"rollup -c --bundleConfigAsCjs -w\" \"npm run watch:css:all\" \"npm run watch:css:theme\" \"npm run watch:css:ui\" \"npm run watch:css:complex\"",
44
+ "build": "npm run type-check && npm run clean && npm run build:js && npm run build:css:ui && npm run build:css:complex",
45
+ "watch": "npm run clean && concurrently \"rollup -c --bundleConfigAsCjs -w\" \"npm run watch:css:ui\" \"npm run watch:css:complex\"",
58
46
  "prepublishOnly": "npm run build",
59
47
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
60
48
  },