@zgfe/business-lib 1.0.16-alpha.0 → 1.0.16
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/es/assets/theme.js +24 -16
- package/package.json +2 -2
package/es/assets/theme.js
CHANGED
|
@@ -1,16 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
'
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
|
+
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
(typeof exports === "undefined" ? "undefined" : _typeof(exports)) === 'object' && typeof module !== 'undefined' ? factory(exports) : typeof define === 'function' && define.amd ? define(['exports'], factory) : (global = global || self, factory(global.acorn = {}));
|
|
5
|
+
})(this, function (exports) {
|
|
6
|
+
'use strict';
|
|
7
|
+
|
|
8
|
+
exports.theme = {
|
|
9
|
+
'primary-color': 'red',
|
|
10
|
+
'border-color-base': '#ECEDF0',
|
|
11
|
+
'background-color-base': '#fafafb',
|
|
12
|
+
'text-color': '#021429',
|
|
13
|
+
// 正文
|
|
14
|
+
'text-color-secondary': '#5f6085',
|
|
15
|
+
// 次要
|
|
16
|
+
'tooltip-bg': '#242541',
|
|
17
|
+
'error-color': '#fb5547',
|
|
18
|
+
'shadow-color': 'rgba(0, 0, 0, 0.1)',
|
|
19
|
+
'box-shadow-base': '0px 4px 10px rgba(0, 0, 0, 0.1)',
|
|
20
|
+
'btn-text-hover-bg': '#cacdd4',
|
|
21
|
+
'warning-color': '#FD9F41',
|
|
22
|
+
'border-color-split': '#E8EFFF'
|
|
23
|
+
};
|
|
24
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zgfe/business-lib",
|
|
3
|
-
"version": "1.0.16
|
|
3
|
+
"version": "1.0.16",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "dumi dev",
|
|
6
6
|
"docs:build": "dumi build",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"prettier": "^2.2.1",
|
|
60
60
|
"yorkie": "^2.0.0"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "57a9a501f4c4c94f115102d565c94a449b08caa8"
|
|
63
63
|
}
|