@imj_media/ui 1.10.7 → 1.10.9
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/CHANGELOG.md +21 -0
- package/README.md +1 -1
- package/catalog/design-index.json +1749 -2
- package/catalog/design-index.schema.json +36 -3
- package/dist/index.esm.js +5261 -5075
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +25 -25
- package/dist/index.js.map +1 -1
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/index.d.ts.map +1 -1
- package/package.json +4 -3
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
"type": "array",
|
|
32
32
|
"items": { "$ref": "#/$defs/consumerChecklistItem" }
|
|
33
33
|
},
|
|
34
|
-
"tokenPalette": { "$ref": "#/$defs/tokenPalette" }
|
|
34
|
+
"tokenPalette": { "$ref": "#/$defs/tokenPalette" },
|
|
35
|
+
"themeCssVars": { "$ref": "#/$defs/themeCssVars" }
|
|
35
36
|
},
|
|
36
37
|
"$defs": {
|
|
37
38
|
"mergedDescription": {
|
|
@@ -67,7 +68,8 @@
|
|
|
67
68
|
},
|
|
68
69
|
"description": { "$ref": "#/$defs/mergedDescription" },
|
|
69
70
|
"examples": { "type": "array", "items": { "type": "string" } },
|
|
70
|
-
"props": { "$ref": "#/$defs/exportProps" }
|
|
71
|
+
"props": { "$ref": "#/$defs/exportProps" },
|
|
72
|
+
"demoProps": { "$ref": "#/$defs/demoPropsEntry" }
|
|
71
73
|
}
|
|
72
74
|
},
|
|
73
75
|
"exportProps": {
|
|
@@ -99,7 +101,30 @@
|
|
|
99
101
|
"compositionType": { "enum": [1, 2] },
|
|
100
102
|
"exports": { "type": "array", "items": { "$ref": "#/$defs/moduleExport" } },
|
|
101
103
|
"compositionRecipe": { "$ref": "#/$defs/compositionRecipe" },
|
|
102
|
-
"standaloneSnippet": { "type": "string" }
|
|
104
|
+
"standaloneSnippet": { "type": "string" },
|
|
105
|
+
"demoProps": { "$ref": "#/$defs/demoPropsEntry" },
|
|
106
|
+
"previewUnavailable": {
|
|
107
|
+
"enum": ["composite", "no_template", "deprecated", "internal_only"]
|
|
108
|
+
},
|
|
109
|
+
"previewScreenshotUrl": { "type": "string" }
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"demoPropsEntry": {
|
|
113
|
+
"type": "object",
|
|
114
|
+
"required": ["props"],
|
|
115
|
+
"properties": {
|
|
116
|
+
"props": { "type": "object" },
|
|
117
|
+
"variants": {
|
|
118
|
+
"type": "array",
|
|
119
|
+
"items": {
|
|
120
|
+
"type": "object",
|
|
121
|
+
"required": ["name", "props"],
|
|
122
|
+
"properties": {
|
|
123
|
+
"name": { "type": "string" },
|
|
124
|
+
"props": { "type": "object" }
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
103
128
|
}
|
|
104
129
|
},
|
|
105
130
|
"tokenPalette": {
|
|
@@ -113,6 +138,14 @@
|
|
|
113
138
|
"shadow": { "type": "object" }
|
|
114
139
|
}
|
|
115
140
|
},
|
|
141
|
+
"themeCssVars": {
|
|
142
|
+
"type": "object",
|
|
143
|
+
"required": ["light", "dark"],
|
|
144
|
+
"properties": {
|
|
145
|
+
"light": { "type": "object", "additionalProperties": { "type": "string" } },
|
|
146
|
+
"dark": { "type": "object", "additionalProperties": { "type": "string" } }
|
|
147
|
+
}
|
|
148
|
+
},
|
|
116
149
|
"styleIndex": {
|
|
117
150
|
"type": "object",
|
|
118
151
|
"required": ["rules", "tailwindClasses"],
|