@yh-ui/theme 0.1.7 → 0.1.12
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/component-theme.d.ts +20 -2
- package/package.json +2 -2
|
@@ -229,11 +229,27 @@ export interface TreeThemeVars extends ComponentThemeVars {
|
|
|
229
229
|
}
|
|
230
230
|
/** Mention 组件主题变量 */
|
|
231
231
|
export interface MentionThemeVars extends ComponentThemeVars {
|
|
232
|
-
dropdownShadow?: string;
|
|
233
|
-
dropdownBgColor?: string;
|
|
234
232
|
optionHoverBgColor?: string;
|
|
235
233
|
optionActiveTextColor?: string;
|
|
236
234
|
}
|
|
235
|
+
/** AiConversations 组件主题变量 */
|
|
236
|
+
export interface AiConversationsThemeVars extends ComponentThemeVars {
|
|
237
|
+
headerPadding?: string;
|
|
238
|
+
itemPadding?: string;
|
|
239
|
+
activeBgColor?: string;
|
|
240
|
+
activeTextColor?: string;
|
|
241
|
+
hoverBgColor?: string;
|
|
242
|
+
titleFontSize?: string;
|
|
243
|
+
timeFontSize?: string;
|
|
244
|
+
}
|
|
245
|
+
/** AiPrompts 组件主题变量 */
|
|
246
|
+
export interface AiPromptsThemeVars extends ComponentThemeVars {
|
|
247
|
+
headerFontSize?: string;
|
|
248
|
+
itemMinHeight?: string;
|
|
249
|
+
iconSize?: string;
|
|
250
|
+
itemHoverBgColor?: string;
|
|
251
|
+
itemActiveBorderColor?: string;
|
|
252
|
+
}
|
|
237
253
|
export interface AllComponentThemes {
|
|
238
254
|
button?: ButtonThemeVars;
|
|
239
255
|
input?: InputThemeVars;
|
|
@@ -252,6 +268,8 @@ export interface AllComponentThemes {
|
|
|
252
268
|
calendar?: CalendarThemeVars;
|
|
253
269
|
tree?: TreeThemeVars;
|
|
254
270
|
mention?: MentionThemeVars;
|
|
271
|
+
aiConversations?: AiConversationsThemeVars;
|
|
272
|
+
aiPrompts?: AiPromptsThemeVars;
|
|
255
273
|
[key: string]: ComponentThemeVars | undefined;
|
|
256
274
|
}
|
|
257
275
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yh-ui/theme",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "YH-UI theme and design tokens",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"theme",
|
|
37
37
|
"design-tokens"
|
|
38
38
|
],
|
|
39
|
-
"homepage": "https://yh-ui
|
|
39
|
+
"homepage": "https://1079161148.github.io/yh-ui/",
|
|
40
40
|
"author": "YH-UI Team",
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"vue": "^3.5.27"
|