@butinapp/ui 0.1.1 → 0.1.2
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/butin.css +2310 -0
- package/package.json +11 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@butinapp/ui",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Butin's embeddable, theme-portable design system + the generic data-view renderer (DashboardRenderer, Overview, app shell). Pure, prop-driven, no Electron. Ships
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Butin's embeddable, theme-portable design system + the generic data-view renderer (DashboardRenderer, Overview, app shell). Pure, prop-driven, no Electron. Ships a self-contained, .butin-scoped butin.css for drop-in embeds (zero host build), plus theme.css for a host that co-builds.",
|
|
5
5
|
"homepage": "https://butin.app",
|
|
6
6
|
"bugs": "https://github.com/butinapp/butin/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
"types": "./dist/i18n/index.d.ts",
|
|
38
38
|
"import": "./dist/i18n/index.js"
|
|
39
39
|
},
|
|
40
|
-
"./theme.css": "./dist/theme.css"
|
|
40
|
+
"./theme.css": "./dist/theme.css",
|
|
41
|
+
"./butin.css": "./dist/butin.css"
|
|
41
42
|
},
|
|
42
43
|
"publishConfig": {
|
|
43
44
|
"access": "public"
|
|
@@ -52,10 +53,11 @@
|
|
|
52
53
|
"luxon": "^3.7.2",
|
|
53
54
|
"radix-ui": "^1.5.0",
|
|
54
55
|
"tailwind-merge": "^3.6.0",
|
|
55
|
-
"@butinapp/sdk": "0.1.
|
|
56
|
-
"@butinapp/shapes": "0.1.
|
|
56
|
+
"@butinapp/sdk": "0.1.2",
|
|
57
|
+
"@butinapp/shapes": "0.1.2"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
60
|
+
"@tailwindcss/postcss": "^4.3.1",
|
|
59
61
|
"@testing-library/jest-dom": "^6.9.1",
|
|
60
62
|
"@testing-library/react": "^16.3.2",
|
|
61
63
|
"@testing-library/user-event": "^14.6.1",
|
|
@@ -63,14 +65,16 @@
|
|
|
63
65
|
"@types/luxon": "^3.7.1",
|
|
64
66
|
"@types/react": "^19.2.17",
|
|
65
67
|
"@types/react-dom": "^19.2.3",
|
|
66
|
-
"jsdom": "^29.1.1"
|
|
68
|
+
"jsdom": "^29.1.1",
|
|
69
|
+
"postcss": "^8.5.15",
|
|
70
|
+
"tailwindcss": "^4.3.1"
|
|
67
71
|
},
|
|
68
72
|
"peerDependencies": {
|
|
69
73
|
"react": "^19.2.7",
|
|
70
74
|
"react-dom": "^19.2.7"
|
|
71
75
|
},
|
|
72
76
|
"scripts": {
|
|
73
|
-
"build": "tsgo -p tsconfig.build.json && node scripts/copy-assets.mjs",
|
|
77
|
+
"build": "tsgo -p tsconfig.build.json && node scripts/copy-assets.mjs && node scripts/build-css.mjs",
|
|
74
78
|
"typecheck": "tsgo --noEmit -p tsconfig.json",
|
|
75
79
|
"test": "vitest run"
|
|
76
80
|
},
|