@oceanbase/design 1.0.0-alpha.7 → 1.0.0-alpha.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/dist/design.min.js +1 -1
- package/es/card/index.d.ts +2 -0
- package/es/card/index.js +33 -13
- package/es/card/style/index.js +36 -20
- package/es/checkbox/style/index.js +5 -3
- package/es/config-provider/index.js +13 -11
- package/es/descriptions/hooks/useItems.d.ts +9 -9
- package/es/descriptions/index.d.ts +10 -0
- package/es/descriptions/index.js +59 -3
- package/es/descriptions/style/index.js +48 -5
- package/es/drawer/style/index.js +11 -5
- package/es/form/FormItem.d.ts +1 -1
- package/es/form/FormItem.js +7 -9
- package/es/form/style/index.js +9 -9
- package/es/slider/style/index.js +3 -2
- package/es/style/cssVariables.d.ts +25 -0
- package/es/style/cssVariables.js +48 -0
- package/es/style/cssVariablesMeta.d.ts +24 -0
- package/es/style/cssVariablesMeta.js +974 -0
- package/es/style/global.js +4 -4
- package/es/table/index.js +8 -0
- package/es/table/style/index.js +9 -3
- package/es/tag/style/index.js +1 -1
- package/es/theme/default.d.ts +44 -0
- package/es/theme/default.js +159 -40
- package/es/theme/interface.d.ts +43 -0
- package/es/theme/style/compact.less +43 -24
- package/es/theme/style/default.less +43 -24
- package/lib/card/index.d.ts +2 -0
- package/lib/card/index.js +27 -12
- package/lib/card/style/index.js +61 -29
- package/lib/checkbox/style/index.js +4 -3
- package/lib/config-provider/index.js +15 -4
- package/lib/descriptions/hooks/useItems.d.ts +9 -9
- package/lib/descriptions/index.d.ts +10 -0
- package/lib/descriptions/index.js +49 -2
- package/lib/descriptions/style/index.js +85 -4
- package/lib/drawer/style/index.js +9 -4
- package/lib/form/FormItem.d.ts +1 -1
- package/lib/form/FormItem.js +5 -6
- package/lib/form/style/index.js +13 -11
- package/lib/slider/style/index.js +5 -2
- package/lib/style/cssVariables.d.ts +25 -0
- package/lib/style/cssVariables.js +261 -0
- package/lib/style/cssVariablesMeta.d.ts +24 -0
- package/lib/style/cssVariablesMeta.js +1059 -0
- package/lib/style/global.js +4 -4
- package/lib/table/index.js +7 -0
- package/lib/table/style/index.js +10 -1
- package/lib/tag/style/index.js +1 -1
- package/lib/theme/default.d.ts +44 -0
- package/lib/theme/default.js +232 -42
- package/lib/theme/interface.d.ts +43 -0
- package/lib/theme/style/compact.less +43 -24
- package/lib/theme/style/default.less +43 -24
- package/package.json +2 -2
|
@@ -67,13 +67,31 @@ var genDescriptionsStyle = (token) => {
|
|
|
67
67
|
const { componentCls, typographyComponentCls, calc } = token;
|
|
68
68
|
return {
|
|
69
69
|
[`${componentCls}`]: {
|
|
70
|
+
[`${componentCls}-header`]: {
|
|
71
|
+
marginBottom: token.margin
|
|
72
|
+
},
|
|
73
|
+
// collapsible title style
|
|
74
|
+
[`${componentCls}-title-wrapper`]: {
|
|
75
|
+
cursor: "pointer",
|
|
76
|
+
display: "flex",
|
|
77
|
+
alignItems: "center",
|
|
78
|
+
userSelect: "none",
|
|
79
|
+
[`${componentCls}-collapsible-icon`]: {
|
|
80
|
+
fontSize: token.fontSizeLG
|
|
81
|
+
}
|
|
82
|
+
},
|
|
70
83
|
...genVerticalStyle("default", token),
|
|
84
|
+
[`${componentCls}-row > th, ${componentCls}-row > td`]: {
|
|
85
|
+
paddingRight: token.paddingLG
|
|
86
|
+
},
|
|
71
87
|
[`${componentCls}-item-label`]: {
|
|
72
|
-
fontWeight: token.fontWeightWeak
|
|
88
|
+
fontWeight: token.fontWeightWeak,
|
|
89
|
+
[`&${componentCls}-item-no-colon::after`]: {
|
|
90
|
+
display: "none"
|
|
91
|
+
}
|
|
73
92
|
},
|
|
74
93
|
[`${componentCls}-item-container`]: {
|
|
75
94
|
[`${componentCls}-item-content`]: {
|
|
76
|
-
paddingRight: 12,
|
|
77
95
|
[`${typographyComponentCls}-edit-content`]: {
|
|
78
96
|
insetInlineStart: 0,
|
|
79
97
|
marginTop: 0,
|
|
@@ -86,8 +104,71 @@ var genDescriptionsStyle = (token) => {
|
|
|
86
104
|
height: calc(token.fontSize).mul(token.lineHeight).equal()
|
|
87
105
|
}
|
|
88
106
|
},
|
|
89
|
-
[`${componentCls}${componentCls}-middle`]:
|
|
90
|
-
|
|
107
|
+
[`${componentCls}${componentCls}-middle`]: {
|
|
108
|
+
[`${componentCls}-header`]: {
|
|
109
|
+
marginBottom: token.marginSM
|
|
110
|
+
},
|
|
111
|
+
...genVerticalStyle("middle", token)
|
|
112
|
+
},
|
|
113
|
+
[`${componentCls}${componentCls}-small`]: {
|
|
114
|
+
[`${componentCls}-header`]: {
|
|
115
|
+
marginBottom: token.marginXS
|
|
116
|
+
},
|
|
117
|
+
...genVerticalStyle("small", token)
|
|
118
|
+
},
|
|
119
|
+
// collapsed state
|
|
120
|
+
[`${componentCls}${componentCls}-collapsed`]: {
|
|
121
|
+
[`${componentCls}-view`]: {
|
|
122
|
+
display: "none"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
// contentAlign="left": label column auto width based on longest label
|
|
126
|
+
// For non-bordered mode: use CSS Grid to make label and content align across rows
|
|
127
|
+
[`${componentCls}${componentCls}-content-align-left:not(${componentCls}-bordered)`]: {
|
|
128
|
+
[`${componentCls}-view`]: {
|
|
129
|
+
display: "block"
|
|
130
|
+
},
|
|
131
|
+
// Make table, tbody, tr, td all transparent to grid layout
|
|
132
|
+
[`${componentCls}-view > table`]: {
|
|
133
|
+
display: "grid",
|
|
134
|
+
gridTemplateColumns: "auto 1fr"
|
|
135
|
+
},
|
|
136
|
+
[`${componentCls}-view > table > tbody`]: {
|
|
137
|
+
display: "contents"
|
|
138
|
+
},
|
|
139
|
+
[`${componentCls}-row`]: {
|
|
140
|
+
display: "contents"
|
|
141
|
+
},
|
|
142
|
+
[`${componentCls}-row > td${componentCls}-item`]: {
|
|
143
|
+
display: "contents"
|
|
144
|
+
},
|
|
145
|
+
[`${componentCls}-item-container`]: {
|
|
146
|
+
display: "contents"
|
|
147
|
+
},
|
|
148
|
+
[`${componentCls}-item-label`]: {
|
|
149
|
+
whiteSpace: "nowrap",
|
|
150
|
+
paddingBottom: token.padding,
|
|
151
|
+
paddingInlineEnd: token.paddingLG
|
|
152
|
+
},
|
|
153
|
+
[`${componentCls}-item-content`]: {
|
|
154
|
+
paddingBottom: token.padding
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
// For bordered mode: label and content are in separate th and td
|
|
158
|
+
[`${componentCls}${componentCls}-content-align-left${componentCls}-bordered`]: {
|
|
159
|
+
[`${componentCls}-view > table`]: {
|
|
160
|
+
tableLayout: "auto"
|
|
161
|
+
},
|
|
162
|
+
[`${componentCls}-row`]: {
|
|
163
|
+
[`& > th`]: {
|
|
164
|
+
whiteSpace: "nowrap",
|
|
165
|
+
width: 1
|
|
166
|
+
},
|
|
167
|
+
[`& > td`]: {
|
|
168
|
+
width: "100%"
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
91
172
|
};
|
|
92
173
|
};
|
|
93
174
|
var style_default = (prefixCls, typographyPrefixCls) => {
|
|
@@ -26,14 +26,16 @@ module.exports = __toCommonJS(style_exports);
|
|
|
26
26
|
var import_cssinjs = require("@ant-design/cssinjs");
|
|
27
27
|
var import_genComponentStyleHook = require("../../_util/genComponentStyleHook");
|
|
28
28
|
var genDrawerStyle = (token) => {
|
|
29
|
-
const { componentCls, antCls, fontSizeHeading3, colorSplit, calc } = token;
|
|
29
|
+
const { componentCls, antCls, iconCls, fontSizeHeading3, colorSplit, calc } = token;
|
|
30
30
|
const contentPadding = token.paddingLG;
|
|
31
|
-
const
|
|
32
|
-
const
|
|
31
|
+
const boxShadowTop = "0 -1px 2px 0 rgba(19, 33, 57, 0.1)";
|
|
32
|
+
const boxShadowBottom = "0 1px 2px 0 rgba(19, 33, 57, 0.1)";
|
|
33
33
|
return {
|
|
34
34
|
[`${componentCls}`]: {
|
|
35
35
|
// should be wrapped by `${componentCls}-content` to overwritten antd style
|
|
36
36
|
[`${componentCls}-content`]: {
|
|
37
|
+
// to avoid x scroll
|
|
38
|
+
overflow: "initial",
|
|
37
39
|
[`${componentCls}-header`]: {
|
|
38
40
|
position: "relative",
|
|
39
41
|
padding: `${(0, import_cssinjs.unit)(token.padding)} ${(0, import_cssinjs.unit)(token.paddingLG)}`,
|
|
@@ -42,7 +44,10 @@ var genDrawerStyle = (token) => {
|
|
|
42
44
|
// ensure header box-shadow cover body content
|
|
43
45
|
zIndex: 10,
|
|
44
46
|
[`${componentCls}-title`]: {
|
|
45
|
-
fontSize: fontSizeHeading3
|
|
47
|
+
fontSize: fontSizeHeading3,
|
|
48
|
+
[iconCls]: {
|
|
49
|
+
fontSize: token.fontSizeLG
|
|
50
|
+
}
|
|
46
51
|
},
|
|
47
52
|
// 标题栏底部增加分割线
|
|
48
53
|
"&::after": {
|
package/lib/form/FormItem.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import type { FormItemProps as AntFormItemProps } from 'antd/es/form';
|
|
|
4
4
|
import type { TooltipProps } from '../tooltip';
|
|
5
5
|
declare const AntFormItem: (<Values = any>(props: AntFormItemProps<Values>) => React.ReactElement<any, string | React.JSXElementConstructor<any>>) & {
|
|
6
6
|
useStatus: () => {
|
|
7
|
-
status?: "" | "
|
|
7
|
+
status?: "" | "warning" | "error" | "success" | "validating";
|
|
8
8
|
errors: React.ReactNode[];
|
|
9
9
|
warnings: React.ReactNode[];
|
|
10
10
|
};
|
package/lib/form/FormItem.js
CHANGED
|
@@ -85,24 +85,23 @@ var FormItem = ({
|
|
|
85
85
|
}
|
|
86
86
|
const isVertical = layout === "vertical" || vertical;
|
|
87
87
|
const descriptionContent = description && isVertical ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: `${prefixCls}-item-description`, children: description }) : null;
|
|
88
|
+
const actionContent = action && (layout === "vertical" || vertical) ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: `${prefixCls}-item-action`, children: action }) : null;
|
|
88
89
|
return wrapSSR(
|
|
89
90
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
90
91
|
AntFormItem,
|
|
91
92
|
{
|
|
92
93
|
layout,
|
|
93
|
-
label:
|
|
94
|
+
label: actionContent || descriptionContent ? /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { children: [
|
|
94
95
|
label,
|
|
95
|
-
|
|
96
|
+
actionContent,
|
|
97
|
+
descriptionContent
|
|
96
98
|
] }) : label,
|
|
97
99
|
tooltip,
|
|
98
100
|
required: (0, import_lodash.isPlainObject)(children) && ((_a = children.type) == null ? void 0 : _a.__ANT_SWITCH) ? true : void 0,
|
|
99
101
|
prefixCls: customizePrefixCls,
|
|
100
102
|
className: formItemCls,
|
|
101
103
|
...restProps,
|
|
102
|
-
children
|
|
103
|
-
descriptionContent,
|
|
104
|
-
children
|
|
105
|
-
] })
|
|
104
|
+
children
|
|
106
105
|
}
|
|
107
106
|
)
|
|
108
107
|
);
|
package/lib/form/style/index.js
CHANGED
|
@@ -28,6 +28,7 @@ var genFormStyle = (token) => {
|
|
|
28
28
|
const { componentCls, calc } = token;
|
|
29
29
|
return {
|
|
30
30
|
[componentCls]: {
|
|
31
|
+
// extra style
|
|
31
32
|
[`${componentCls}-item-explain, ${componentCls}-item-extra`]: {
|
|
32
33
|
paddingTop: token.paddingXXS,
|
|
33
34
|
fontSize: token.fontSizeSM
|
|
@@ -36,27 +37,28 @@ var genFormStyle = (token) => {
|
|
|
36
37
|
paddingTop: 0
|
|
37
38
|
}
|
|
38
39
|
},
|
|
40
|
+
// vertical layout style
|
|
39
41
|
[`${componentCls}${componentCls}-vertical`]: {
|
|
40
42
|
[`${componentCls}-item:not(${componentCls}-item-horizontal)`]: {
|
|
41
|
-
|
|
42
|
-
width: "100%",
|
|
43
|
-
[`${componentCls}-item-action`]: {
|
|
44
|
-
position: "absolute",
|
|
45
|
-
right: 0
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
[`${componentCls}-item-has-description`]: {
|
|
43
|
+
// description style
|
|
50
44
|
[`${componentCls}-item-control-input`]: {
|
|
51
45
|
minHeight: "auto"
|
|
52
46
|
},
|
|
53
47
|
[`${componentCls}-item-label`]: {
|
|
54
|
-
paddingBottom: token.paddingXXS
|
|
48
|
+
paddingBottom: calc(token.paddingXXS).add(2).equal()
|
|
55
49
|
},
|
|
56
50
|
[`${componentCls}-item-description`]: {
|
|
57
|
-
|
|
51
|
+
paddingTop: token.paddingXXS,
|
|
58
52
|
fontSize: token.fontSizeSM,
|
|
59
53
|
color: token.colorTextDescription
|
|
54
|
+
},
|
|
55
|
+
// action style
|
|
56
|
+
[`${componentCls}-item-label > label`]: {
|
|
57
|
+
width: "100%",
|
|
58
|
+
[`${componentCls}-item-action`]: {
|
|
59
|
+
position: "absolute",
|
|
60
|
+
right: 0
|
|
61
|
+
}
|
|
60
62
|
}
|
|
61
63
|
}
|
|
62
64
|
}
|
|
@@ -23,11 +23,14 @@ __export(style_exports, {
|
|
|
23
23
|
genSliderStyle: () => genSliderStyle
|
|
24
24
|
});
|
|
25
25
|
module.exports = __toCommonJS(style_exports);
|
|
26
|
+
var import_cssinjs = require("@ant-design/cssinjs");
|
|
26
27
|
var import_genComponentStyleHook = require("../../_util/genComponentStyleHook");
|
|
27
28
|
var genSliderStyle = (token) => {
|
|
28
29
|
const { componentCls, dotSize = 8, handleSize = 10, handleLineWidth = 2, calc } = token;
|
|
29
|
-
const dotSizeHalf = calc(dotSize).div(2).equal();
|
|
30
|
-
const handleOffset =
|
|
30
|
+
const dotSizeHalf = (0, import_cssinjs.unit)(calc(dotSize).div(2).equal());
|
|
31
|
+
const handleOffset = (0, import_cssinjs.unit)(
|
|
32
|
+
calc(handleSize).add(calc(handleLineWidth).mul(2).equal()).div(2).equal()
|
|
33
|
+
);
|
|
31
34
|
return {
|
|
32
35
|
[`${componentCls}${componentCls}-horizontal`]: {
|
|
33
36
|
[`${componentCls}-mark`]: {
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OceanBase Design System - CSS Variables Style
|
|
3
|
+
* 使用 @ant-design/cssinjs 动态注入 CSS 变量
|
|
4
|
+
* 根据主题 token 值动态生成
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { CSSInterpolation } from '@ant-design/cssinjs';
|
|
8
|
+
import type { GlobalToken } from '../theme/interface';
|
|
9
|
+
/**
|
|
10
|
+
* 根据 token 生成 CSS 变量样式
|
|
11
|
+
*/
|
|
12
|
+
declare const genCssVariablesStyle: (token: GlobalToken, prefix?: string) => CSSInterpolation;
|
|
13
|
+
export interface CssVariablesStyleProps {
|
|
14
|
+
/**
|
|
15
|
+
* CSS 变量前缀,默认为 'ob'
|
|
16
|
+
*/
|
|
17
|
+
prefix?: string;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* CSS 变量注入组件
|
|
21
|
+
* 使用 @ant-design/cssinjs 动态注入 CSS 变量
|
|
22
|
+
*/
|
|
23
|
+
declare const CssVariablesStyle: React.FC<CssVariablesStyleProps>;
|
|
24
|
+
export { CssVariablesStyle, genCssVariablesStyle };
|
|
25
|
+
export default CssVariablesStyle;
|
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
|
|
29
|
+
// src/style/cssVariables.tsx
|
|
30
|
+
var cssVariables_exports = {};
|
|
31
|
+
__export(cssVariables_exports, {
|
|
32
|
+
CssVariablesStyle: () => CssVariablesStyle,
|
|
33
|
+
default: () => cssVariables_default,
|
|
34
|
+
genCssVariablesStyle: () => genCssVariablesStyle
|
|
35
|
+
});
|
|
36
|
+
module.exports = __toCommonJS(cssVariables_exports);
|
|
37
|
+
var import_cssinjs = require("@ant-design/cssinjs");
|
|
38
|
+
var import_theme = __toESM(require("../theme"));
|
|
39
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
40
|
+
var genCssVariablesStyle = (token, prefix = "ob") => {
|
|
41
|
+
return [
|
|
42
|
+
{
|
|
43
|
+
":root": {
|
|
44
|
+
// ==================== 基础颜色 Token ====================
|
|
45
|
+
// 中性色 Neutral
|
|
46
|
+
[`--${prefix}-white`]: token.white,
|
|
47
|
+
[`--${prefix}-gray-1`]: token.gray1,
|
|
48
|
+
[`--${prefix}-gray-2`]: token.gray2,
|
|
49
|
+
[`--${prefix}-gray-3`]: token.gray3,
|
|
50
|
+
[`--${prefix}-gray-4`]: token.gray4,
|
|
51
|
+
[`--${prefix}-gray-5`]: token.gray5,
|
|
52
|
+
[`--${prefix}-gray-6`]: token.gray6,
|
|
53
|
+
[`--${prefix}-gray-7`]: token.gray7,
|
|
54
|
+
[`--${prefix}-gray-8`]: token.gray8,
|
|
55
|
+
[`--${prefix}-gray-9`]: token.gray9,
|
|
56
|
+
[`--${prefix}-gray-10`]: token.colorText,
|
|
57
|
+
[`--${prefix}-black`]: token.black,
|
|
58
|
+
// 蓝色 Blue
|
|
59
|
+
[`--${prefix}-blue-1`]: token.blue1,
|
|
60
|
+
[`--${prefix}-blue-2`]: token.blue2,
|
|
61
|
+
[`--${prefix}-blue-3`]: token.blue3,
|
|
62
|
+
[`--${prefix}-blue-4`]: token.blue4,
|
|
63
|
+
[`--${prefix}-blue-5`]: token.blue5,
|
|
64
|
+
[`--${prefix}-blue-6`]: token.blue6,
|
|
65
|
+
// 绿色 Green
|
|
66
|
+
[`--${prefix}-green-1`]: token.green1,
|
|
67
|
+
[`--${prefix}-green-2`]: token.green2,
|
|
68
|
+
[`--${prefix}-green-3`]: token.green3,
|
|
69
|
+
[`--${prefix}-green-4`]: token.green4,
|
|
70
|
+
[`--${prefix}-green-5`]: token.green5,
|
|
71
|
+
[`--${prefix}-green-6`]: token.green6,
|
|
72
|
+
// 橙色 Orange
|
|
73
|
+
[`--${prefix}-orange-1`]: token.orange1,
|
|
74
|
+
[`--${prefix}-orange-2`]: token.orange2,
|
|
75
|
+
[`--${prefix}-orange-3`]: token.orange3,
|
|
76
|
+
[`--${prefix}-orange-4`]: token.orange4,
|
|
77
|
+
[`--${prefix}-orange-5`]: token.orange5,
|
|
78
|
+
[`--${prefix}-orange-6`]: token.orange6,
|
|
79
|
+
// 红色 Red
|
|
80
|
+
[`--${prefix}-red-1`]: token.red1,
|
|
81
|
+
[`--${prefix}-red-2`]: token.red2,
|
|
82
|
+
[`--${prefix}-red-3`]: token.red3,
|
|
83
|
+
[`--${prefix}-red-4`]: token.red4,
|
|
84
|
+
[`--${prefix}-red-5`]: token.red5,
|
|
85
|
+
[`--${prefix}-red-6`]: token.red6,
|
|
86
|
+
// 紫色 Fuchsia
|
|
87
|
+
[`--${prefix}-fuchsia-1`]: token.fuchsia1,
|
|
88
|
+
[`--${prefix}-fuchsia-2`]: token.fuchsia2,
|
|
89
|
+
[`--${prefix}-fuchsia-3`]: token.fuchsia3,
|
|
90
|
+
[`--${prefix}-fuchsia-4`]: token.fuchsia4,
|
|
91
|
+
[`--${prefix}-fuchsia-5`]: token.fuchsia5,
|
|
92
|
+
[`--${prefix}-fuchsia-6`]: token.fuchsia6,
|
|
93
|
+
// ==================== 语义颜色 Token ====================
|
|
94
|
+
// 填充色 Background
|
|
95
|
+
[`--${prefix}-color-bg-default`]: token.colorBgContainer,
|
|
96
|
+
[`--${prefix}-color-bg-primary`]: token.gray1,
|
|
97
|
+
[`--${prefix}-color-bg-secondary`]: token.gray2,
|
|
98
|
+
[`--${prefix}-color-bg-hover`]: token.gray2,
|
|
99
|
+
[`--${prefix}-color-bg-hover-secondary`]: token.gray3,
|
|
100
|
+
[`--${prefix}-color-bg-focus`]: token.gray3,
|
|
101
|
+
[`--${prefix}-color-bg-active`]: token.blue4,
|
|
102
|
+
[`--${prefix}-color-bg-disabled`]: token.gray3,
|
|
103
|
+
// 边框色 Border
|
|
104
|
+
[`--${prefix}-color-divider`]: token.gray4,
|
|
105
|
+
[`--${prefix}-color-border-default`]: token.gray5,
|
|
106
|
+
[`--${prefix}-color-border-container`]: token.gray4,
|
|
107
|
+
[`--${prefix}-color-border-inverse`]: token.white,
|
|
108
|
+
[`--${prefix}-color-border-hover`]: token.blue4,
|
|
109
|
+
[`--${prefix}-color-border-focus`]: token.blue4,
|
|
110
|
+
[`--${prefix}-color-border-error`]: token.red4,
|
|
111
|
+
[`--${prefix}-color-border-warning`]: token.orange4,
|
|
112
|
+
// 文本色 Text
|
|
113
|
+
[`--${prefix}-color-text-default`]: token.colorText,
|
|
114
|
+
[`--${prefix}-color-text-navigation`]: token.gray9,
|
|
115
|
+
[`--${prefix}-color-text-label`]: token.gray8,
|
|
116
|
+
[`--${prefix}-color-text-info`]: token.gray7,
|
|
117
|
+
[`--${prefix}-color-text-disabled`]: token.gray6,
|
|
118
|
+
[`--${prefix}-color-text-focus`]: token.colorText,
|
|
119
|
+
[`--${prefix}-color-text-selected`]: token.blue4,
|
|
120
|
+
[`--${prefix}-color-text-link`]: token.blue4,
|
|
121
|
+
[`--${prefix}-color-text-inverse`]: token.white,
|
|
122
|
+
// 图标色 Icon
|
|
123
|
+
[`--${prefix}-color-icon-default`]: token.gray8,
|
|
124
|
+
[`--${prefix}-color-icon-hover`]: token.blue4,
|
|
125
|
+
[`--${prefix}-color-icon-disabled`]: token.gray6,
|
|
126
|
+
[`--${prefix}-color-icon-focus`]: token.blue4,
|
|
127
|
+
[`--${prefix}-color-icon-inverse`]: token.white,
|
|
128
|
+
[`--${prefix}-color-icon-info`]: token.blue4,
|
|
129
|
+
[`--${prefix}-color-icon-warning`]: token.orange4,
|
|
130
|
+
[`--${prefix}-color-icon-success`]: token.green4,
|
|
131
|
+
[`--${prefix}-color-icon-error`]: token.red4,
|
|
132
|
+
// 状态色
|
|
133
|
+
[`--${prefix}-color-default-text`]: token.colorText,
|
|
134
|
+
[`--${prefix}-color-default-icon`]: token.gray8,
|
|
135
|
+
[`--${prefix}-color-default-fill`]: token.gray2,
|
|
136
|
+
[`--${prefix}-color-default-border`]: token.gray2,
|
|
137
|
+
[`--${prefix}-color-info-text`]: token.blue6,
|
|
138
|
+
[`--${prefix}-color-info-icon`]: token.blue6,
|
|
139
|
+
[`--${prefix}-color-info-fill`]: token.blue1,
|
|
140
|
+
[`--${prefix}-color-info-border`]: token.blue3,
|
|
141
|
+
[`--${prefix}-color-success-text`]: token.green6,
|
|
142
|
+
[`--${prefix}-color-success-icon`]: token.green6,
|
|
143
|
+
[`--${prefix}-color-success-fill`]: token.green1,
|
|
144
|
+
[`--${prefix}-color-success-border`]: token.green3,
|
|
145
|
+
[`--${prefix}-color-warning-text`]: token.orange6,
|
|
146
|
+
[`--${prefix}-color-warning-icon`]: token.orange6,
|
|
147
|
+
[`--${prefix}-color-warning-fill`]: token.orange1,
|
|
148
|
+
[`--${prefix}-color-warning-border`]: token.orange3,
|
|
149
|
+
[`--${prefix}-color-error-text`]: token.red6,
|
|
150
|
+
[`--${prefix}-color-error-icon`]: token.red6,
|
|
151
|
+
[`--${prefix}-color-error-fill`]: token.red1,
|
|
152
|
+
[`--${prefix}-color-error-border`]: token.red3,
|
|
153
|
+
[`--${prefix}-color-critical-text`]: token.fuchsia6,
|
|
154
|
+
[`--${prefix}-color-critical-icon`]: token.fuchsia6,
|
|
155
|
+
[`--${prefix}-color-critical-fill`]: token.fuchsia1,
|
|
156
|
+
[`--${prefix}-color-critical-border`]: token.fuchsia3,
|
|
157
|
+
// ==================== 字体 Token ====================
|
|
158
|
+
[`--${prefix}-font-family-default`]: token.fontFamily,
|
|
159
|
+
// 字重
|
|
160
|
+
[`--${prefix}-font-weight-sm`]: token.fontWeightWeak,
|
|
161
|
+
[`--${prefix}-font-weight-md`]: token.fontWeight,
|
|
162
|
+
[`--${prefix}-font-weight-lg`]: token.fontWeightStrong,
|
|
163
|
+
// 字号
|
|
164
|
+
[`--${prefix}-font-size-300`]: `${token.fontSizeSM}px`,
|
|
165
|
+
[`--${prefix}-font-size-325`]: `${token.fontSize}px`,
|
|
166
|
+
[`--${prefix}-font-size-400`]: `${token.fontSizeLG}px`,
|
|
167
|
+
[`--${prefix}-font-size-450`]: `${token.fontSizeHeading3}px`,
|
|
168
|
+
[`--${prefix}-font-size-500`]: `${token.fontSizeHeading2}px`,
|
|
169
|
+
// 行高
|
|
170
|
+
[`--${prefix}-font-line-height-500`]: "20px",
|
|
171
|
+
[`--${prefix}-font-line-height-600`]: "24px",
|
|
172
|
+
[`--${prefix}-font-line-height-650`]: "26px",
|
|
173
|
+
[`--${prefix}-font-line-height-700`]: "28px",
|
|
174
|
+
// 语义字体 Token (使用 font 简写: weight size/line-height family)
|
|
175
|
+
// font-h1: 页容器一级标题
|
|
176
|
+
[`--${prefix}-font-h1`]: `${token.fontWeightStrong} ${token.fontSizeHeading2}px/var(--${prefix}-font-line-height-700) ${token.fontFamily}`,
|
|
177
|
+
// font-h2: 页容器二级标题、抽屉弹窗标题
|
|
178
|
+
[`--${prefix}-font-h2`]: `${token.fontWeightStrong} ${token.fontSizeHeading3}px/var(--${prefix}-font-line-height-650) ${token.fontFamily}`,
|
|
179
|
+
// font-h3: 卡片标题、表单一级分组标题
|
|
180
|
+
[`--${prefix}-font-h3`]: `${token.fontWeightStrong} ${token.fontSizeLG}px/var(--${prefix}-font-line-height-600) ${token.fontFamily}`,
|
|
181
|
+
// font-h4: 表单二级分组标题
|
|
182
|
+
[`--${prefix}-font-h4`]: `${token.fontWeightStrong} ${token.fontSize}px/var(--${prefix}-font-line-height-500) ${token.fontFamily}`,
|
|
183
|
+
// font-body1: 常规正文
|
|
184
|
+
[`--${prefix}-font-body1`]: `${token.fontWeight} ${token.fontSize}px/var(--${prefix}-font-line-height-500) ${token.fontFamily}`,
|
|
185
|
+
// font-body2: 表格文本
|
|
186
|
+
[`--${prefix}-font-body2`]: `${token.fontWeightWeak} ${token.fontSizeSM}px/var(--${prefix}-font-line-height-500) ${token.fontFamily}`,
|
|
187
|
+
// font-caption: 描述
|
|
188
|
+
[`--${prefix}-font-caption`]: `${token.fontWeightWeak} ${token.fontSizeSM}px/var(--${prefix}-font-line-height-500) ${token.fontFamily}`,
|
|
189
|
+
// ==================== 阴影 Token ====================
|
|
190
|
+
[`--${prefix}-shadow-1-top`]: "0px -1px 2px 0px hsla(219, 50%, 15%, 0.1)",
|
|
191
|
+
[`--${prefix}-shadow-1-bottom`]: "0px 1px 2px 0px hsla(219, 50%, 15%, 0.1)",
|
|
192
|
+
[`--${prefix}-shadow-1-left`]: "-1px 0px 2px 0px hsla(219, 50%, 15%, 0.1)",
|
|
193
|
+
[`--${prefix}-shadow-1-right`]: "1px 0px 2px 0px hsla(219, 50%, 15%, 0.1)",
|
|
194
|
+
[`--${prefix}-shadow-2`]: token.boxShadowSecondary,
|
|
195
|
+
// ==================== 圆角 Token ====================
|
|
196
|
+
[`--${prefix}-radius-sm`]: `${token.borderRadius}px`,
|
|
197
|
+
[`--${prefix}-radius-md`]: `${token.borderRadiusMD}px`,
|
|
198
|
+
[`--${prefix}-radius-lg`]: `${token.borderRadiusLG}px`,
|
|
199
|
+
// ==================== 间距 Token ====================
|
|
200
|
+
[`--${prefix}-space-0`]: "0px",
|
|
201
|
+
[`--${prefix}-space-50`]: "2px",
|
|
202
|
+
[`--${prefix}-space-100`]: `${token.paddingXXS}px`,
|
|
203
|
+
[`--${prefix}-space-150`]: "6px",
|
|
204
|
+
[`--${prefix}-space-200`]: `${token.paddingXS}px`,
|
|
205
|
+
[`--${prefix}-space-300`]: `${token.paddingSM}px`,
|
|
206
|
+
[`--${prefix}-space-400`]: `${token.padding}px`,
|
|
207
|
+
[`--${prefix}-space-500`]: `${token.paddingMD}px`,
|
|
208
|
+
[`--${prefix}-space-600`]: `${token.paddingLG}px`,
|
|
209
|
+
[`--${prefix}-space-800`]: `${token.paddingXL}px`,
|
|
210
|
+
[`--${prefix}-spacing-negative-25`]: "-1px",
|
|
211
|
+
// ==================== 组件 Token ====================
|
|
212
|
+
// 导航 Navigation
|
|
213
|
+
[`--${prefix}-navi-color-bg`]: token.colorNaviBg,
|
|
214
|
+
[`--${prefix}-navi-color-bg-hover`]: token.colorNaviBgHover,
|
|
215
|
+
[`--${prefix}-navi-color-bg-focus`]: token.colorNaviBgHover,
|
|
216
|
+
// 按钮 Button
|
|
217
|
+
[`--${prefix}-btn-color-primary-bg`]: token.blue4,
|
|
218
|
+
[`--${prefix}-btn-color-primary-bg-hover`]: token.blue5,
|
|
219
|
+
[`--${prefix}-btn-color-primary-bg-disabled`]: token.blue3,
|
|
220
|
+
[`--${prefix}-btn-color-primary-text`]: token.white,
|
|
221
|
+
[`--${prefix}-btn-color-primary-icon`]: token.white,
|
|
222
|
+
[`--${prefix}-btn-color-secondary-border`]: token.blue4,
|
|
223
|
+
[`--${prefix}-btn-color-secondary-text`]: token.blue4,
|
|
224
|
+
[`--${prefix}-btn-color-secondary-icon`]: token.blue4,
|
|
225
|
+
[`--${prefix}-btn-color-danger-border`]: token.red4,
|
|
226
|
+
[`--${prefix}-btn-color-danger-text`]: token.red4,
|
|
227
|
+
// 进度条 Progress
|
|
228
|
+
[`--${prefix}-progress-color-bg-default`]: token.gray4,
|
|
229
|
+
[`--${prefix}-progress-color-bg-loading`]: token.blue4,
|
|
230
|
+
[`--${prefix}-progress-color-bg-success`]: token.green4,
|
|
231
|
+
[`--${prefix}-progress-color-bg-error`]: token.red4,
|
|
232
|
+
// 开关 Switch
|
|
233
|
+
[`--${prefix}-switch-color-bg-default`]: token.gray7,
|
|
234
|
+
[`--${prefix}-switch-color-bg-disabled`]: token.gray4,
|
|
235
|
+
[`--${prefix}-switch-color-bg-active`]: token.blue4,
|
|
236
|
+
[`--${prefix}-switch-color-bg-disabled-selected`]: token.gray5
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
];
|
|
240
|
+
};
|
|
241
|
+
var CssVariablesStyle = ({ prefix = "ob" }) => {
|
|
242
|
+
const { theme, token } = import_theme.default.useToken();
|
|
243
|
+
const wrapSSR = (0, import_cssinjs.useStyleRegister)(
|
|
244
|
+
{
|
|
245
|
+
theme,
|
|
246
|
+
token,
|
|
247
|
+
path: ["ob-css-variables"],
|
|
248
|
+
hashId: "",
|
|
249
|
+
order: -1001
|
|
250
|
+
// 在全局样式之前注入
|
|
251
|
+
},
|
|
252
|
+
() => genCssVariablesStyle(token, prefix)
|
|
253
|
+
);
|
|
254
|
+
return wrapSSR(/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, {}));
|
|
255
|
+
};
|
|
256
|
+
var cssVariables_default = CssVariablesStyle;
|
|
257
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
258
|
+
0 && (module.exports = {
|
|
259
|
+
CssVariablesStyle,
|
|
260
|
+
genCssVariablesStyle
|
|
261
|
+
});
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CSS Variables Metadata
|
|
3
|
+
* CSS 变量元数据定义,用于文档展示
|
|
4
|
+
*/
|
|
5
|
+
export type CssVariableCategory = 'color' | 'color-bg' | 'color-border' | 'color-text' | 'color-icon' | 'color-status' | 'font' | 'shadow' | 'radius' | 'space' | 'component';
|
|
6
|
+
export interface CssVariableMeta {
|
|
7
|
+
/** 变量名 (不含前缀) */
|
|
8
|
+
name: string;
|
|
9
|
+
/** 描述 */
|
|
10
|
+
desc: string;
|
|
11
|
+
/** 英文描述 */
|
|
12
|
+
descEn?: string;
|
|
13
|
+
/** 分类 */
|
|
14
|
+
category: CssVariableCategory;
|
|
15
|
+
/** token 来源 (用于获取值) */
|
|
16
|
+
token?: string;
|
|
17
|
+
/** 固定值 (非 token) */
|
|
18
|
+
value?: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* CSS 变量元数据
|
|
22
|
+
*/
|
|
23
|
+
export declare const cssVariablesMeta: CssVariableMeta[];
|
|
24
|
+
export default cssVariablesMeta;
|