@devbonnysid/ui-kit-default 1.6.5 → 1.6.6

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.
@@ -0,0 +1,26 @@
1
+ /** THIS IS GENERATED FILE. DO NOT EDIT! */
2
+ export declare const COLOR_METADATA: {
3
+ Text: string[];
4
+ Icons: string[];
5
+ Backgrounds: string[];
6
+ "Borders & Dividers": string[];
7
+ Buttons: string[];
8
+ };
9
+ export declare const TYPOGRAPHY_METADATA: {
10
+ Headings: {
11
+ name: string;
12
+ var: string;
13
+ }[];
14
+ Body: {
15
+ name: string;
16
+ var: string;
17
+ }[];
18
+ Title: {
19
+ name: string;
20
+ var: string;
21
+ }[];
22
+ Numbers: {
23
+ name: string;
24
+ var: string;
25
+ }[];
26
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@devbonnysid/ui-kit-default",
3
3
  "private": false,
4
- "version": "1.6.5",
4
+ "version": "1.6.6",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs.js",
7
7
  "module": "dist/index.es.js",
@@ -39,6 +39,8 @@
39
39
  "build": "vite build",
40
40
  "preview": "vite preview",
41
41
  "generate:icons": "npx tsx ./src/scripts/generateIconTypes.ts",
42
+ "generate:design-system": "npx tsx ./src/scripts/generateDesignSystemMetadata.ts",
43
+ "generate": "npm run generate:icons && npm run generate:design-system",
42
44
  "i18n:extract": "i18next-cli extract",
43
45
  "i18n:types": "i18next-cli types",
44
46
  "i18n:status": "i18next-cli status",
@@ -80,6 +82,7 @@
80
82
  "vite": "^7.0.4",
81
83
  "vite-plugin-svgr": "^4.3.0",
82
84
  "vitest": "^4.0.3",
83
- "vite-plugin-dts": "^4.5.4"
85
+ "vite-plugin-dts": "^4.5.4",
86
+ "tsx": "^4.19.2"
84
87
  }
85
88
  }