@datum-cloud/datum-ui 0.2.0-alpha.7 → 0.2.1
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/README.md +21 -10
- package/dist/grid/style.css +1080 -0
- package/dist/nprogress/nprogress.css +24 -0
- package/dist/{fonts → styles/fonts}/AllianceNo1-Medium.ttf +0 -0
- package/dist/{fonts → styles/fonts}/AllianceNo1-Regular.ttf +0 -0
- package/dist/{fonts → styles/fonts}/AllianceNo1-SemiBold.ttf +0 -0
- package/dist/styles/fonts.css +51 -0
- package/dist/styles/root.css +29 -0
- package/dist/styles/shadcn/animations.css +101 -0
- package/dist/styles/shadcn/shadcn.css +236 -0
- package/dist/styles/themes/alpha.css +568 -0
- package/dist/styles/tokens/figma-tokens.css +624 -0
- package/package.json +19 -21
- package/dist/styles.css +0 -6990
- package/dist/styles.mjs +0 -1
- /package/dist/{fonts → styles/fonts}/FTRegolaNeue-Medium.woff2 +0 -0
- /package/dist/{fonts → styles/fonts}/FTRegolaNeue-Regular.woff2 +0 -0
- /package/dist/{fonts → styles/fonts}/FTRegolaNeue-Semibold.woff2 +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datum-cloud/datum-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"url": "https://github.com/datum-cloud/datum-ui"
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"default": "./dist/index.mjs"
|
|
16
16
|
},
|
|
17
17
|
"./styles": {
|
|
18
|
-
"style": "./dist/styles.css",
|
|
19
|
-
"default": "./dist/styles.css"
|
|
18
|
+
"style": "./dist/styles/root.css",
|
|
19
|
+
"default": "./dist/styles/root.css"
|
|
20
20
|
},
|
|
21
21
|
"./theme": {
|
|
22
22
|
"types": "./dist/components/themes/index.d.ts",
|
|
@@ -184,6 +184,7 @@
|
|
|
184
184
|
},
|
|
185
185
|
"./grid": {
|
|
186
186
|
"types": "./dist/components/features/grid/index.d.ts",
|
|
187
|
+
"style": "./dist/grid/style.css",
|
|
187
188
|
"default": "./dist/grid/index.mjs"
|
|
188
189
|
},
|
|
189
190
|
"./input-number": {
|
|
@@ -208,6 +209,7 @@
|
|
|
208
209
|
},
|
|
209
210
|
"./nprogress": {
|
|
210
211
|
"types": "./dist/components/features/nprogress/index.d.ts",
|
|
212
|
+
"style": "./dist/nprogress/nprogress.css",
|
|
211
213
|
"default": "./dist/nprogress/index.mjs"
|
|
212
214
|
},
|
|
213
215
|
"./page-title": {
|
|
@@ -243,18 +245,6 @@
|
|
|
243
245
|
"README.md",
|
|
244
246
|
"dist"
|
|
245
247
|
],
|
|
246
|
-
"scripts": {
|
|
247
|
-
"build": "tsdown --config-loader native && tsc -p tsconfig.build.json && node scripts/fix-dts-imports.mjs && cp -r src/styles/fonts dist/fonts",
|
|
248
|
-
"dev": "tsdown --config-loader native --watch",
|
|
249
|
-
"lint": "eslint .",
|
|
250
|
-
"typecheck": "tsc --noEmit",
|
|
251
|
-
"test": "vitest run",
|
|
252
|
-
"test:watch": "vitest",
|
|
253
|
-
"test:coverage": "vitest run --coverage",
|
|
254
|
-
"clean": "rm -rf dist .turbo node_modules coverage",
|
|
255
|
-
"prepack": "node scripts/strip-workspace-deps.mjs --strip",
|
|
256
|
-
"postpublish": "node scripts/strip-workspace-deps.mjs --restore"
|
|
257
|
-
},
|
|
258
248
|
"peerDependencies": {
|
|
259
249
|
"@conform-to/react": ">=1",
|
|
260
250
|
"@conform-to/zod": ">=1",
|
|
@@ -416,7 +406,6 @@
|
|
|
416
406
|
"tailwind-merge": "^3.5.0"
|
|
417
407
|
},
|
|
418
408
|
"devDependencies": {
|
|
419
|
-
"@bosh-code/tsdown-plugin-tailwindcss": "^1.0.1",
|
|
420
409
|
"@conform-to/react": "^1.17.1",
|
|
421
410
|
"@conform-to/zod": "^1.17.1",
|
|
422
411
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
@@ -424,10 +413,7 @@
|
|
|
424
413
|
"@radix-ui/react-slot": "^1.2.4",
|
|
425
414
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
426
415
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
427
|
-
"@repo/config": "workspace:*",
|
|
428
416
|
"@stepperize/react": "^6.1.0",
|
|
429
|
-
"@tailwindcss/node": "^4.2.1",
|
|
430
|
-
"@tailwindcss/oxide": "^4.2.1",
|
|
431
417
|
"@tanstack/react-virtual": "^3.13.19",
|
|
432
418
|
"@testing-library/jest-dom": "^6",
|
|
433
419
|
"@testing-library/react": "^16",
|
|
@@ -461,9 +447,21 @@
|
|
|
461
447
|
"tsdown": "^0.20.3",
|
|
462
448
|
"typescript": "^5.9",
|
|
463
449
|
"vitest": "^3",
|
|
464
|
-
"zod": "^4.3.6"
|
|
450
|
+
"zod": "^4.3.6",
|
|
451
|
+
"@repo/config": "0.0.0",
|
|
452
|
+
"@repo/shadcn": "0.0.0"
|
|
465
453
|
},
|
|
466
454
|
"publishConfig": {
|
|
467
455
|
"access": "public"
|
|
456
|
+
},
|
|
457
|
+
"scripts": {
|
|
458
|
+
"build": "tsdown --config-loader native && tsc -p tsconfig.build.json && node scripts/fix-dts-imports.mjs && node scripts/copy-styles.mjs",
|
|
459
|
+
"dev": "tsdown --config-loader native --watch",
|
|
460
|
+
"lint": "eslint .",
|
|
461
|
+
"typecheck": "tsc --noEmit",
|
|
462
|
+
"test": "vitest run",
|
|
463
|
+
"test:watch": "vitest",
|
|
464
|
+
"test:coverage": "vitest run --coverage",
|
|
465
|
+
"clean": "rm -rf dist .turbo node_modules coverage"
|
|
468
466
|
}
|
|
469
|
-
}
|
|
467
|
+
}
|