@isi-ui7/corporate-themes 0.2.1 → 0.2.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/components.css +14 -0
- package/dist/globals.css +590 -0
- package/dist/hooks/useFormVisualContract.d.ts +24 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +154 -90
- package/dist/labels.d.ts +13 -0
- package/dist/style.css +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +16 -3
package/dist/types.d.ts
CHANGED
|
@@ -34,7 +34,7 @@ export interface ThemeTokens {
|
|
|
34
34
|
sidebarBackground?: string;
|
|
35
35
|
navigationBackground?: string;
|
|
36
36
|
/** Preferred table/form density for this theme. Default: "compact" */
|
|
37
|
-
density?: "compact" | "normal";
|
|
37
|
+
density?: "compact" | "normal" | "comfortable";
|
|
38
38
|
}
|
|
39
39
|
export interface CorporateTheme {
|
|
40
40
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@isi-ui7/corporate-themes",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Corporate themes (BCA Syariah, BJB Syariah, Pos Indonesia, Ihsan Solusi Informatika) with Carbon variants.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -19,6 +19,12 @@
|
|
|
19
19
|
"files": [
|
|
20
20
|
"dist"
|
|
21
21
|
],
|
|
22
|
+
"exports": {
|
|
23
|
+
".": "./dist/index.js",
|
|
24
|
+
"./dist/style.css": "./dist/style.css",
|
|
25
|
+
"./dist/globals.css": "./dist/globals.css",
|
|
26
|
+
"./dist/components.css": "./dist/components.css"
|
|
27
|
+
},
|
|
22
28
|
"sideEffects": [
|
|
23
29
|
"**/*.css"
|
|
24
30
|
],
|
|
@@ -26,6 +32,9 @@
|
|
|
26
32
|
"react": "^18 || ^19",
|
|
27
33
|
"react-dom": "^18 || ^19"
|
|
28
34
|
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@isi-ui7/bos7-shared": "0.2.0"
|
|
37
|
+
},
|
|
29
38
|
"devDependencies": {
|
|
30
39
|
"react": "^19.0.0",
|
|
31
40
|
"react-dom": "^19.0.0",
|
|
@@ -36,10 +45,14 @@
|
|
|
36
45
|
"sass": "^1.69.0",
|
|
37
46
|
"typescript": "^5.3.3",
|
|
38
47
|
"vite": "^5.0.0",
|
|
39
|
-
"vite-plugin-dts": "^3.6.0"
|
|
48
|
+
"vite-plugin-dts": "^3.6.0",
|
|
49
|
+
"@isi-ui7/editable-table": "0.2.1",
|
|
50
|
+
"@isi-ui7/data-table": "0.2.1",
|
|
51
|
+
"@isi-ui7/ui-shell": "0.2.2",
|
|
52
|
+
"@isi-ui7/modal-manager": "0.2.1"
|
|
40
53
|
},
|
|
41
54
|
"scripts": {
|
|
42
|
-
"build": "vite build",
|
|
55
|
+
"build": "vite build && node scripts/build-css.mjs",
|
|
43
56
|
"lint": "echo \"No lint configured for theme aggregator\"",
|
|
44
57
|
"test": "echo \"No tests for theme aggregator\"",
|
|
45
58
|
"typecheck": "tsc --noEmit"
|