@teamix/pro 1.5.12 → 1.5.15

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.
Files changed (57) hide show
  1. package/dist/pro.all.min.css +1 -1
  2. package/dist/pro.css +1 -1
  3. package/dist/pro.js +5060 -171
  4. package/dist/pro.min.css +1 -1
  5. package/dist/pro.min.js +1 -1
  6. package/dist/pro.xconsole.min.css +1 -1
  7. package/es/actions/dialog.js +1 -1
  8. package/es/actions/index.scss +1 -1
  9. package/es/card/index.scss +6 -2
  10. package/es/card/xconsole.scss +3 -0
  11. package/es/global.scss +3 -1
  12. package/es/index.d.ts +1 -1
  13. package/es/index.js +1 -1
  14. package/es/next-xconsole.scss +34 -0
  15. package/es/nocode/configurators/ProTable.js +1 -22
  16. package/es/nocode/pages/index.js +1 -26
  17. package/es/page-header/index.scss +2 -1
  18. package/es/page-header/xconsole.scss +5 -0
  19. package/es/table/components/Filter/index.d.ts +5 -3
  20. package/es/table/components/Filter/index.js +84 -63
  21. package/es/table/components/Layout/index.js +5 -2
  22. package/es/table/components/Layout/index.scss +1 -0
  23. package/es/table/index.js +53 -14
  24. package/es/table/typing.d.ts +14 -0
  25. package/es/table/utils/columnRender.d.ts +2 -2
  26. package/es/table/utils/columnRender.js +4 -2
  27. package/es/table/utils/genProColumnToColumn.d.ts +2 -2
  28. package/es/table/utils/genProColumnToColumn.js +3 -1
  29. package/es/table/utils/util.d.ts +5 -0
  30. package/es/table/utils/util.js +19 -0
  31. package/es/xconsole.scss +503 -0
  32. package/lib/actions/dialog.js +1 -1
  33. package/lib/actions/index.scss +1 -1
  34. package/lib/card/index.scss +6 -2
  35. package/lib/card/xconsole.scss +3 -0
  36. package/lib/global.scss +3 -1
  37. package/lib/index.d.ts +1 -1
  38. package/lib/index.js +1 -1
  39. package/lib/next-xconsole.scss +34 -0
  40. package/lib/nocode/configurators/ProTable.js +1 -22
  41. package/lib/nocode/pages/index.js +1 -26
  42. package/lib/page-header/index.scss +2 -1
  43. package/lib/page-header/xconsole.scss +5 -0
  44. package/lib/table/components/Filter/index.d.ts +5 -3
  45. package/lib/table/components/Filter/index.js +83 -62
  46. package/lib/table/components/Layout/index.js +5 -2
  47. package/lib/table/components/Layout/index.scss +1 -0
  48. package/lib/table/index.js +53 -14
  49. package/lib/table/typing.d.ts +14 -0
  50. package/lib/table/utils/columnRender.d.ts +2 -2
  51. package/lib/table/utils/columnRender.js +4 -2
  52. package/lib/table/utils/genProColumnToColumn.d.ts +2 -2
  53. package/lib/table/utils/genProColumnToColumn.js +3 -1
  54. package/lib/table/utils/util.d.ts +5 -0
  55. package/lib/table/utils/util.js +25 -0
  56. package/lib/xconsole.scss +503 -0
  57. package/package.json +1 -1
@@ -29,7 +29,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
29
29
  /**
30
30
  * 增加了 icon 的功能 render title
31
31
  */
32
- var renderColumnsTitle = function renderColumnsTitle(item, actionRef) {
32
+ var renderColumnsTitle = function renderColumnsTitle(item, actionRef, bindUrl, bindUrlProps) {
33
33
  var filterMode = item.filterMode,
34
34
  filters = item.filters,
35
35
  dataSource = item.dataSource,
@@ -86,7 +86,9 @@ var renderColumnsTitle = function renderColumnsTitle(item, actionRef) {
86
86
  icon: item.tooltipIcon
87
87
  }), item.filters && /*#__PURE__*/_react.default.createElement(_Filter.default, {
88
88
  column: item,
89
- actionRef: actionRef
89
+ actionRef: actionRef,
90
+ bindUrl: bindUrl,
91
+ bindUrlProps: bindUrlProps
90
92
  }));
91
93
  };
92
94
  /**
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { ProTableColumnProps, ProTableActionType } from '../typing';
2
+ import { ProTableColumnProps, ProTableActionType, ProTableProps } from '../typing';
3
3
  import { ColumnProps } from '@alicloudfe/components/types/table';
4
4
  declare type FixedColumnProps = ColumnProps & {
5
5
  wordBreak?: string;
@@ -9,5 +9,5 @@ declare type FixedColumnProps = ColumnProps & {
9
9
  */
10
10
  export default function genProColumnToColumn(columns: ProTableColumnProps[],
11
11
  /** 是否渲染骨架屏 */
12
- showSkeleton: boolean, actionRef: React.MutableRefObject<ProTableActionType | undefined>, context?: any, dataTeamixSpm?: string): FixedColumnProps[];
12
+ showSkeleton: boolean, actionRef: React.MutableRefObject<ProTableActionType | undefined>, context?: any, dataTeamixSpm?: string, bindUrl?: ProTableProps['bindUrl'], bindUrlProps?: ProTableProps['bindUrlProps']): FixedColumnProps[];
13
13
  export {};
@@ -24,6 +24,8 @@ showSkeleton, actionRef) {
24
24
  var
25
25
  // 用于埋点
26
26
  dataTeamixSpm = arguments.length > 4 ? arguments[4] : undefined;
27
+ var bindUrl = arguments.length > 5 ? arguments[5] : undefined;
28
+ var bindUrlProps = arguments.length > 6 ? arguments[6] : undefined;
27
29
  return columns.map(function (columnProps) {
28
30
  var filters = columnProps.filters,
29
31
  dataIndex = columnProps.dataIndex,
@@ -47,7 +49,7 @@ showSkeleton, actionRef) {
47
49
  }, others), {}, {
48
50
  children: children ? genProColumnToColumn(children, showSkeleton, actionRef, context) : undefined,
49
51
  dataIndex: dataIndex === null || dataIndex === void 0 ? void 0 : dataIndex.toString(),
50
- title: (0, _columnRender.renderColumnsTitle)(columnProps, actionRef),
52
+ title: (0, _columnRender.renderColumnsTitle)(columnProps, actionRef, bindUrl, bindUrlProps),
51
53
  cell: function cell(value, index, record) {
52
54
  return (0, _columnRender.renderCell)(value, columnProps, index, record, actionRef, context, dataTeamixSpm);
53
55
  }
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import { ProTableActionType } from '../typing';
3
+ export declare function getUrlStateFilter(urlState: {
4
+ [key: string]: any;
5
+ }, actionRef: React.MutableRefObject<ProTableActionType | undefined>): void;
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.getUrlStateFilter = getUrlStateFilter;
7
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
8
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
9
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
10
+ function getUrlStateFilter(urlState, actionRef) {
11
+ var _actionRef$current$ge, _actionRef$current, _actionRef$current$ge2, _actionRef$current$ge3, _actionRef$current2, _actionRef$current2$s;
12
+ var filters = Object.keys(urlState).filter(function (item) {
13
+ return /^filter.+$/.test(item);
14
+ });
15
+ var urlStateParams = Object.fromEntries(filters.map(function (item) {
16
+ var _item$split, _urlState$item, _urlState$item$join, _urlState$item$split, _urlState$item2, _urlState$item2$split;
17
+ return [(_item$split = item.split('filter')) === null || _item$split === void 0 ? void 0 : _item$split[1], {
18
+ params: Array.isArray(urlState === null || urlState === void 0 ? void 0 : urlState[item]) ? urlState === null || urlState === void 0 ? void 0 : (_urlState$item = urlState[item]) === null || _urlState$item === void 0 ? void 0 : (_urlState$item$join = _urlState$item.join) === null || _urlState$item$join === void 0 ? void 0 : _urlState$item$join.call(_urlState$item, ',') : urlState === null || urlState === void 0 ? void 0 : urlState[item],
19
+ rules: Array.isArray(urlState === null || urlState === void 0 ? void 0 : urlState[item]) ? urlState === null || urlState === void 0 ? void 0 : urlState[item] : (_urlState$item$split = urlState === null || urlState === void 0 ? void 0 : (_urlState$item2 = urlState[item]) === null || _urlState$item2 === void 0 ? void 0 : (_urlState$item2$split = _urlState$item2.split) === null || _urlState$item2$split === void 0 ? void 0 : _urlState$item2$split.call(_urlState$item2, ',')) !== null && _urlState$item$split !== void 0 ? _urlState$item$split : []
20
+ }];
21
+ }));
22
+ var rules = (_actionRef$current$ge = (_actionRef$current = actionRef.current) === null || _actionRef$current === void 0 ? void 0 : (_actionRef$current$ge2 = _actionRef$current.getState) === null || _actionRef$current$ge2 === void 0 ? void 0 : (_actionRef$current$ge3 = _actionRef$current$ge2.call(_actionRef$current)) === null || _actionRef$current$ge3 === void 0 ? void 0 : _actionRef$current$ge3.filterRules) !== null && _actionRef$current$ge !== void 0 ? _actionRef$current$ge : {};
23
+ // 再设置所有的列筛选状态
24
+ (_actionRef$current2 = actionRef.current) === null || _actionRef$current2 === void 0 ? void 0 : (_actionRef$current2$s = _actionRef$current2.setFilterRules) === null || _actionRef$current2$s === void 0 ? void 0 : _actionRef$current2$s.call(_actionRef$current2, _objectSpread(_objectSpread({}, rules), urlStateParams));
25
+ }
@@ -0,0 +1,503 @@
1
+ .theme-xconsole {
2
+ --color-event-p9: rgba(121, 197, 224, 1);
3
+ --color-event-p10: rgba(175, 222, 240, 1);
4
+ --color-event-p8: rgba(73, 173, 209, 1);
5
+ --color-help-9: rgba(128, 98, 8, 1);
6
+ --color-help-8: rgba(168, 130, 13, 1);
7
+ --color-help-6: rgba(250, 195, 30, 1);
8
+ --color-help-10: rgba(87, 66, 3, 1);
9
+ --color-help-5: rgba(255, 210, 74, 1);
10
+ --color-help-4: rgba(255, 221, 117, 1);
11
+ --color-help-3: rgba(255, 231, 161, 1);
12
+ --color-help-2: rgba(255, 242, 204, 1);
13
+ --color-help-1: rgba(255, 247, 224, 1);
14
+ --color-error-10: rgba(82, 7, 0, 1);
15
+ --color-error-9: rgba(125, 18, 7, 1);
16
+ --color-error-8: rgba(161, 31, 19, 1);
17
+ --color-error-7: rgba(196, 49, 35, 1);
18
+ --color-error-5: rgba(237, 103, 90, 1);
19
+ --color-error-6: rgba(232, 71, 56, 1);
20
+ --color-error-4: rgba(242, 136, 126, 1);
21
+ --color-error-1: rgba(255, 236, 235, 1);
22
+ --color-warning-10: rgba(82, 42, 0, 1);
23
+ --color-warning-9: rgba(119, 65, 6, 1);
24
+ --color-warning-8: rgba(163, 90, 10, 1);
25
+ --color-warning-7: rgba(207, 116, 18, 1);
26
+ --color-warning-5: rgba(247, 168, 84, 1);
27
+ --color-warning-6: rgba(249, 142, 26, 1);
28
+ --color-warning-4: rgba(255, 185, 110, 1);
29
+ --color-warning-1: rgba(255, 245, 235, 1);
30
+ --color-success-10: rgba(0, 82, 38, 1);
31
+ --color-success-9: rgba(2, 107, 52, 1);
32
+ --color-success-8: rgba(10, 130, 67, 1);
33
+ --color-success-7: rgba(21, 153, 83, 1);
34
+ --color-success-5: rgba(67, 191, 126, 1);
35
+ --color-success-6: rgba(35, 176, 102, 1);
36
+ --color-success-4: rgba(103, 207, 152, 1);
37
+ --color-success-2: rgba(209, 244, 225, 1);
38
+ --color-success-1: rgba(235, 255, 246, 1);
39
+ --G80: rgba(38, 38, 38, 1);
40
+ --G0: rgba(247, 247, 247, 1);
41
+ --G10: rgba(229, 229, 229, 1);
42
+ --G20: rgba(217, 217, 217, 1);
43
+ --G30: rgba(204, 204, 204, 1);
44
+ --G40: rgba(170, 170, 170, 1);
45
+ --G50: rgba(128, 128, 128, 1);
46
+ --G60: rgba(105, 105, 105, 1);
47
+ --G70: rgba(51, 51, 51, 1);
48
+ --S0: rgba(240, 242, 245, 1);
49
+ --S10: rgba(220, 224, 232, 1);
50
+ --G90: rgba(26, 26, 26, 1);
51
+ --S20: rgba(209, 215, 227, 1);
52
+ --S30: rgba(190, 198, 212, 1);
53
+ --S40: rgba(164, 172, 189, 1);
54
+ --S50: rgba(129, 138, 156, 1);
55
+ --S60: rgba(88, 97, 115, 1);
56
+ --S70: rgba(63, 69, 79, 1);
57
+ --S80: rgba(45, 51, 61, 1);
58
+ --S90: rgba(25, 27, 31, 1);
59
+ --color-bg-1: rgba(255, 255, 255, 1);
60
+ --color-bg-2: rgba(247, 247, 247, 1);
61
+ --color-bg-3: rgba(255, 255, 255, 1);
62
+ --color-bg-4: rgba(247, 247, 247, 1);
63
+ --snow: rgba(255, 255, 255, 1);
64
+ --black: rgba(0, 0, 0, 1);
65
+ --color-bg-5: rgba(255, 255, 255, 1);
66
+ --space-grey-1: rgba(26, 26, 26, 1);
67
+ --color-transparent: transparent;
68
+ --color-black: #000000;
69
+ --color-white: #FFFFFF;
70
+ --color-event-p1: rgba(191, 0, 48, 1);
71
+ --color-event-p2: rgba(232, 71, 56, 1);
72
+ --color-event-p3: rgba(249, 142, 26, 1);
73
+ --color-event-p4: rgba(250, 195, 30, 1);
74
+ --color-event-p5: rgba(209, 187, 79, 1);
75
+ --color-event-p6: rgba(0, 179, 199, 1);
76
+ --color-event-p7: rgba(0, 146, 199, 1);
77
+ --color-text1-4: var(--color-text-1, #1A1A1A);
78
+ --color-text1-3: rgba(51, 51, 51, 1);
79
+ --color-text1-2: rgba(105,105,105,1);
80
+ --color-notice-7: rgba(88, 154, 219, 1);
81
+ --color-notice-5: rgba(0, 100, 200, 1);
82
+ --color-notice-6: rgba(0, 87, 173, 1);
83
+ --color-notice-4: rgba(42, 125, 209, 1);
84
+ --color-notice-3: rgba(144, 192, 239, 1);
85
+ --color-notice-2: rgba(202, 227, 253, 1);
86
+ --color-notice-1: rgba(240, 247, 255, 1);
87
+ --color-text1-1: #CCCCCC;
88
+ --color-other-3: #1A1A1A;
89
+ --color-brand1-7: #0057AD;
90
+ --color-brand1-8: #003E7C;
91
+ --color-fill1-7: #595959;
92
+ --color-brand1-2: #CAE3FD;
93
+ --color-brand1-3: #90C0EF;
94
+ --color-brand1-4: #589ADB;
95
+ --color-brand1-5: #2A7DD1;
96
+ --color-brand1-10: #002952;
97
+ --color-fill1-1: #FFFFFF;
98
+ --color-line1-4: #FFFFFF;
99
+ --color-error-3: #F7AAA3;
100
+ --color-error-2: #FCCECA;
101
+ --color-warning-3: #FFCD96;
102
+ --color-warning-2: #FFE0BF;
103
+ --color-success-3: #90DEB5;
104
+ --color-other-2: #FFFFFF;
105
+ --color-other-1: #3A3C4B;
106
+ --color-brand1-9: #003263;
107
+ --color-brand1-6: #0064C8;
108
+ --color-brand1-1: #F0F7FF;
109
+
110
+ /* mention */
111
+ --color-mention-1: #F0F0FF;
112
+ --color-mention-2: #D7D7FC;
113
+ --color-mention-3: #BBBBFA;
114
+ --color-mention-4: #A6A3F7;
115
+ --color-mention-5: #8A87F5;
116
+ --color-mention-6: #6B67E0;
117
+ --color-mention-7: #4440BD;
118
+ --color-mention-8: #272399;
119
+ --color-mention-9: #120E75;
120
+ --color-mention-10: #030052;
121
+ --color-mention-1-rgb: 240, 240, 255;
122
+ --color-mention-2-rgb: 215, 215, 252;
123
+ --color-mention-3-rgb: 187, 187, 250;
124
+ --color-mention-4-rgb: 166, 163, 247;
125
+ --color-mention-5-rgb: 138, 135, 245;
126
+ --color-mention-6-rgb: 107, 103, 224;
127
+ --color-mention-7-rgb: 68, 64, 189;
128
+ --color-mention-8-rgb: 39, 35, 153;
129
+ --color-mention-9-rgb: 18, 14, 117;
130
+ --color-mention-10-rgb: 3, 0, 82;
131
+
132
+ /* space grey */
133
+ --space-grey-1: #F0F2F5;
134
+ --space-grey-2: #E9EBF0;
135
+ --space-grey-3: #DADDE3;
136
+ --space-grey-4: #C7CBD4;
137
+ --space-grey-5: #A4ACBD;
138
+ --space-grey-6: #818A9C;
139
+ --space-grey-7: #586173;
140
+ --space-grey-8: #3F454F;
141
+ --space-grey-9: #2D333D;
142
+ --space-grey-10: #191B1F;
143
+ --color-grey-1-rgb: 240, 242, 245;
144
+ --color-grey-2-rgb: 233, 235, 240;
145
+ --color-grey-3-rgb: 218, 221, 227;
146
+ --color-grey-4-rgb: 199, 203, 212;
147
+ --color-grey-5-rgb: 164, 172, 189;
148
+ --color-grey-6-rgb: 129, 138, 156;
149
+ --color-grey-7-rgb: 88, 97, 115;
150
+ --color-grey-8-rgb: 63, 69, 79;
151
+ --color-grey-9-rgb: 45, 51, 61;
152
+ --color-grey-10-rgb: 25, 27, 31;
153
+
154
+ /* link */
155
+ --color-link-1: var(--color-brand1-6);
156
+ --color-link-2: var(--color-brand1-7);
157
+ --color-link-3: var(--color-brand1-5);
158
+
159
+ /* card-bg */
160
+ --color-card-1-bg: #ffffff;
161
+ --color-card-2-bg: #f7f7f7;
162
+
163
+ /* rgb color */
164
+ --color-error-1-rgb: 255, 236, 235;
165
+ --color-error-2-rgb: 252, 206, 202;
166
+ --color-error-3-rgb: 247, 170, 163;
167
+ --color-error-4-rgb: 242, 136, 126;
168
+ --color-error-5-rgb: 237, 103, 90;
169
+ --color-error-6-rgb: 232, 71, 56;
170
+ --color-error-7-rgb: 196, 49, 35;
171
+ --color-error-8-rgb: 161, 31, 19;
172
+ --color-error-9-rgb: 125, 18, 7;
173
+ --color-error-10-rgb: 82, 7, 0;
174
+
175
+ --color-success-10-rgb: 0, 82, 38;
176
+ --color-success-9-rgb: 2, 107, 52;
177
+ --color-success-8-rgb: 10, 130, 67;
178
+ --color-success-7-rgb: 21, 153, 83;
179
+ --color-success-5-rgb: 67, 191, 126;
180
+ --color-success-6-rgb: 35, 176, 102;
181
+ --color-success-4-rgb: 103, 207, 152;
182
+ --color-success-3-rgb: 144, 222, 181;
183
+ --color-success-2-rgb: 209, 244, 225;
184
+ --color-success-1-rgb: 235, 255, 246;
185
+
186
+ --color-brand1-1-rgb: 240, 247, 255;
187
+ --color-brand1-2-rgb: 202, 227, 253;
188
+ --color-brand1-3-rgb: 144, 192, 239;
189
+ --color-brand1-4-rgb: 88, 154, 219;
190
+ --color-brand1-5-rgb: 42, 125, 209;
191
+ --color-brand1-6-rgb: 0, 100, 200;
192
+ --color-brand1-7-rgb: 0, 87, 173;
193
+ --color-brand1-8-rgb: 0, 62, 124;
194
+ --color-brand1-9-rgb: 0, 50, 99;
195
+ --color-brand1-10-rgb: 0, 41, 82;
196
+
197
+ --color-warning-10-rgb: 82, 42, 0;
198
+ --color-warning-9-rgb: 119, 65, 6;
199
+ --color-warning-8-rgb: 163, 90, 10;
200
+ --color-warning-7-rgb: 207, 116, 18;
201
+ --color-warning-5-rgb: 247, 168, 84;
202
+ --color-warning-6-rgb: 249, 142, 26;
203
+ --color-warning-4-rgb: 255, 185, 110;
204
+ --color-warning-1-rgb: 255, 245, 235;
205
+ --color-warning-3-rgb: 255, 205, 150;
206
+ --color-warning-2-rgb: 255, 224, 191;
207
+
208
+ --color-help-9-rgb: 128, 98, 8;
209
+ --color-help-8-rgb: 168, 130, 13;
210
+ --color-help-7-rgb: 222, 172, 22;
211
+ --color-help-6-rgb: 250, 195, 30;
212
+ --color-help-10-rgb: 87, 66, 3;
213
+ --color-help-5-rgb: 255, 210, 74;
214
+ --color-help-4-rgb: 255, 221, 117;
215
+ --color-help-3-rgb: 255, 231, 161;
216
+ --color-help-2-rgb: 255, 242, 204;
217
+ --color-help-1-rgb: 255, 247, 224;
218
+
219
+ /** 樱桃红 **/
220
+ --color-C0: #FFEBEF;
221
+ --color-C10: #F2C2CE;
222
+ --color-C20: #E68AA1;
223
+ --color-C30: #D95777;
224
+ --color-C40: #CC2952;
225
+ --color-C50: #BF0030;
226
+ --color-C60: #A60029;
227
+ --color-C70: #73001D;
228
+ --color-C80: #590016;
229
+ --color-C90: #400010;
230
+ --color-C0-rgb: 255, 235, 239;
231
+ --color-C10-rgb: 242, 194, 206;
232
+ --color-C20-rgb: 230, 138, 161;
233
+ --color-C30-rgb: 217, 87, 119;
234
+ --color-C40-rgb: 204, 41, 82;
235
+ --color-C50-rgb: 191, 0, 48;
236
+ --color-C60-rgb: 166, 0, 41;
237
+ --color-C70-rgb: 115, 0, 29;
238
+ --color-C80-rgb: 89, 0, 22;
239
+ --color-C90-rgb: 64, 0, 16;
240
+
241
+ /** 绛红 **/
242
+ --color-PR0: #FFECEB;
243
+ --color-PR10: #F2C1BD;
244
+ --color-PR20: #E6948E;
245
+ --color-PR30: #E6948E;
246
+ --color-PR40: #CC473D;
247
+ --color-PR50: #BE271B;
248
+ --color-PR60: #A11A10;
249
+ --color-PR70: #801109;
250
+ --color-PR80: #610903;
251
+ --color-PR90: #400400;
252
+ --color-PR0-rgb: 255, 236, 235;
253
+ --color-PR10-rgb: 242, 193, 189;
254
+ --color-PR20-rgb: 230, 148, 142;
255
+ --color-PR30-rgb: 230, 148, 142;
256
+ --color-PR40-rgb: 204, 71, 61;
257
+ --color-PR50-rgb: 190, 39, 27;
258
+ --color-PR60-rgb: 161, 26, 16;
259
+ --color-PR70-rgb: 128, 17, 9;
260
+ --color-PR80-rgb: 97, 9, 3;
261
+ --color-PR90-rgb: 64, 4, 0;
262
+
263
+ /** 琥珀橙 **/
264
+ --color-A0: #FFF3EB;
265
+ --color-A10: #F7D3BA;
266
+ --color-A20: #F0B286;
267
+ --color-A30: #E89356;
268
+ --color-A40: #E37629;
269
+ --color-A50: #DB5B00;
270
+ --color-A60: #B54B00;
271
+ --color-A70: #8F3C00;
272
+ --color-A80: #692C00;
273
+ --color-A90: #401B00;
274
+ --color-A0-rgb: 255, 243, 235;
275
+ --color-A10-rgb: 247, 211, 186;
276
+ --color-A20-rgb: 240, 178, 134;
277
+ --color-A30-rgb: 232, 147, 86;
278
+ --color-A40-rgb: 227, 118, 41;
279
+ --color-A50-rgb: 219, 91, 0;
280
+ --color-A60-rgb: 181, 75, 0;
281
+ --color-A70-rgb: 143, 60, 0;
282
+ --color-A80-rgb: 105, 44, 0;
283
+ --color-A90-rgb: 64, 27, 0;
284
+
285
+ /** 香槟金 **/
286
+ --color-Gold0: #FFF9DE;
287
+ --color-Gold10: #FFF5C4;
288
+ --color-Gold20: #FFF1AB;
289
+ --color-Gold30: #FFEE99;
290
+ --color-Gold40: #E8D36B;
291
+ --color-Gold50: #D1BB4F;
292
+ --color-Gold60: #B39F40;
293
+ --color-Gold70: #80712B;
294
+ --color-Gold80: #574D1C;
295
+ --color-Gold90: #3D3614;
296
+ --color-Gold0-rgb: 255, 249, 222;
297
+ --color-Gold10-rgb: 255, 245, 196;
298
+ --color-Gold20-rgb: 255, 241, 171;
299
+ --color-Gold30-rgb: 255, 238, 153;
300
+ --color-Gold40-rgb: 232, 211, 107;
301
+ --color-Gold50-rgb: 209, 187, 79;
302
+ --color-Gold60-rgb: 179, 159, 64;
303
+ --color-Gold70-rgb: 128, 113, 43;
304
+ --color-Gold80-rgb: 87, 77, 28;
305
+ --color-Gold90-rgb: 61, 54, 20;
306
+
307
+ /** 青柠绿 **/
308
+ --color-L0: #F0FAE1;
309
+ --color-L10: #CEE8A7;
310
+ --color-L20: #B3D186;
311
+ --color-L30: #85BA2F;
312
+ --color-L40: #6C9E1C;
313
+ --color-L50: #538700;
314
+ --color-L60: #457000;
315
+ --color-L70: #375900;
316
+ --color-L80: #294200;
317
+ --color-L90: #1B2B00;
318
+ --color-L0-rgb: 240, 250, 225;
319
+ --color-L10-rgb: 206, 232, 167;
320
+ --color-L20-rgb: 179, 209, 134;
321
+ --color-L30-rgb: 133, 186, 47;
322
+ --color-L40-rgb: 108, 158, 28;
323
+ --color-L50-rgb: 83, 135, 0;
324
+ --color-L60-rgb: 69, 112, 0;
325
+ --color-L70-rgb: 55, 89, 0;
326
+ --color-L80-rgb: 41, 66, 0;
327
+ --color-L90-rgb: 27, 43, 0;
328
+
329
+ /** 翡翠绿 **/
330
+ --color-E0: #E1FAF6;
331
+ --color-E10: #BAE8E2;
332
+ --color-E20: #8AD1C8;
333
+ --color-E30: #61BAAE;
334
+ --color-E40: #3DA193;
335
+ --color-E50: #21887A;
336
+ --color-E60: #157568;
337
+ --color-E70: #0C6358;
338
+ --color-E80: #055247;
339
+ --color-E90: #004037;
340
+ --color-E0-rgb: 225, 250, 246;
341
+ --color-E10-rgb: 186, 232, 226;
342
+ --color-E20-rgb: 138, 209, 200;
343
+ --color-E30-rgb: 97, 186, 174;
344
+ --color-E40-rgb: 61, 161, 147;
345
+ --color-E50-rgb: 33, 136, 122;
346
+ --color-E60-rgb: 21, 117, 104;
347
+ --color-E70-rgb: 12, 99, 88;
348
+ --color-E80-rgb: 5, 82, 71;
349
+ --color-E90-rgb: 0, 64, 55;
350
+
351
+ /** 孔雀蓝 **/
352
+ --color-M0: #E6FBFF;
353
+ --color-M10: #AEE2EB;
354
+ --color-M20: #7BCEDB;
355
+ --color-M30: #57CCD9;
356
+ --color-M40: #00B3C7;
357
+ --color-M50: #009CAD;
358
+ --color-M60: #008594;
359
+ --color-M70: #006E7A;
360
+ --color-M80: #005761;
361
+ --color-M90: #004047;
362
+ --color-M0-rgb: 230, 251, 255;
363
+ --color-M10-rgb: 174, 226, 235;
364
+ --color-M20-rgb: 123, 206, 219;
365
+ --color-M30-rgb: 87, 204, 217;
366
+ --color-M40-rgb: 0, 179, 199;
367
+ --color-M50-rgb: 0, 156, 173;
368
+ --color-M60-rgb: 0, 133, 148;
369
+ --color-M70-rgb: 0, 110, 122;
370
+ --color-M80-rgb: 0, 87, 97;
371
+ --color-M90-rgb: 0, 64, 71;
372
+
373
+ /** 海洋蓝 **/
374
+ --color-Ocean0: #E6F9FF;
375
+ --color-Ocean10: #AFDEF0;
376
+ --color-Ocean20: #79C5E0;
377
+ --color-Ocean30: #49ADD1;
378
+ --color-Ocean40: #0092C7;
379
+ --color-Ocean50: #007FAD;
380
+ --color-Ocean60: #006E96;
381
+ --color-Ocean70: #005E80;
382
+ --color-Ocean80: #004D69;
383
+ --color-Ocean90: #003C52;
384
+ --color-Ocean0-rgb: 230, 249, 255;
385
+ --color-Ocean10-rgb: 175, 222, 240;
386
+ --color-Ocean20-rgb: 121, 197, 224;
387
+ --color-Ocean30-rgb: 73, 173, 209;
388
+ --color-Ocean40-rgb: 0, 146, 199;
389
+ --color-Ocean50-rgb: 0, 127, 173;
390
+ --color-Ocean60-rgb: 0, 110, 150;
391
+ --color-Ocean70-rgb: 0, 94, 128;
392
+ --color-Ocean80-rgb: 0, 77, 105;
393
+ --color-Ocean90-rgb: 0, 60, 82;
394
+
395
+ /** 天空蓝 **/
396
+ --color-Sky0: #F0F8FF;
397
+ --color-Sky10: #BBDDFA;
398
+ --color-Sky20: #89C3F5;
399
+ --color-Sky30: #5AABF2;
400
+ --color-Sky40: #2B94F0;
401
+ --color-Sky50: #007EED;
402
+ --color-Sky60: #006BC9;
403
+ --color-Sky70: #0058A6;
404
+ --color-Sky80: #004582;
405
+ --color-Sky90: #00315C;
406
+ --color-Sky0-rgb: 240, 248, 255;
407
+ --color-Sky10-rgb: 187, 221, 250;
408
+ --color-Sky20-rgb: 137, 195, 245;
409
+ --color-Sky30-rgb: 90, 171, 242;
410
+ --color-Sky40-rgb: 43, 148, 240;
411
+ --color-Sky50-rgb: 0, 126, 237;
412
+ --color-Sky60-rgb: 0, 107, 201;
413
+ --color-Sky70-rgb: 0, 88, 166;
414
+ --color-Sky80-rgb: 0, 69, 130;
415
+ --color-Sky90-rgb: 0, 49, 92;
416
+
417
+ /** 丁香紫 **/
418
+ --color-LP0: #F8F0FF;
419
+ --color-LP10: #ECD6FF;
420
+ --color-LP20: #E0BDFF;
421
+ --color-LP30: #D4A3FF;
422
+ --color-LP40: #D48FFF;
423
+ --color-LP50: #B36CE6;
424
+ --color-LP60: #8D44C2;
425
+ --color-LP70: #6B249E;
426
+ --color-LP80: #4D0D7A;
427
+ --color-LP90: #360856;
428
+ --color-LP0-rgb: 248, 240, 255;
429
+ --color-LP10-rgb: 236, 214, 255;
430
+ --color-LP20-rgb: 224, 189, 255;
431
+ --color-LP30-rgb: 212, 163, 255;
432
+ --color-LP40-rgb: 212, 143, 255;
433
+ --color-LP50-rgb: 179, 108, 230;
434
+ --color-LP60-rgb: 141, 68, 194;
435
+ --color-LP70-rgb: 107, 36, 158;
436
+ --color-LP80-rgb: 77, 13, 122;
437
+ --color-LP90-rgb: 54, 8, 86;
438
+
439
+ /** 中性灰 **/
440
+ --G0-rgb: 247, 247, 247;
441
+ --G10-rgb: 229, 229, 229;
442
+ --G20-rgb: 217, 217, 217;
443
+ --G30-rgb: 204, 204, 204;
444
+ --G40-rgb: 170, 170, 170;
445
+ --G50-rgb: 128, 128, 128;
446
+ --G60-rgb: 105, 105, 105;
447
+ --G70-rgb: 51, 51, 51;
448
+ --G80-rgb: 38, 38, 38;
449
+ --G90-rgb: 26, 26, 26;
450
+
451
+ /** 太空灰 **/
452
+ --S0-rgb: 240, 242, 245;
453
+ --S10-rgb: 220, 224, 232;
454
+ --S20-rgb: 209, 215, 227;
455
+ --S30-rgb: 190, 198, 212;
456
+ --S40-rgb: 164, 172, 189;
457
+ --S50-rgb: 129, 138, 156;
458
+ --S60-rgb: 88, 97, 115;
459
+ --S70-rgb: 63, 69, 79;
460
+ --S80-rgb: 45, 51, 61;
461
+ --S90-rgb: 25, 27, 31;
462
+
463
+ --warning-tag-p1-bg-color: rgba(var(--color-C10-rgb), 0.5);
464
+ --warning-tag-p1-color: var(--color-C50, #BF0030);
465
+
466
+ --warning-tag-p2-bg-color: rgba(var(--color-error-2-rgb), 0.5);
467
+ --warning-tag-p2-color: #F2493A;
468
+
469
+ --warning-tag-p3-bg-color: rgba(var(--color-warning-2-rgb), 0.5);
470
+ --warning-tag-p3-color: #FF8D16;
471
+
472
+ --warning-tag-p4-bg-color: rgba(var(--color-help-2-rgb), 0.5);
473
+ --warning-tag-p4-color: #DEAC16;
474
+
475
+ --warning-tag-p5-bg-color: rgba(var(--color-Gold10-rgb), 0.5);
476
+ --warning-tag-p5-color: #BAA643;
477
+
478
+ --warning-tag-p6-bg-color: rgba(var(--color-M10-rgb), 0.5);
479
+ --warning-tag-p6-color: #00BACF;
480
+
481
+ --warning-tag-p7-bg-color: rgba(var(--color-Ocean10-rgb), 0.5);
482
+ --warning-tag-p7-color: #1289B8;
483
+
484
+ --colortag-border-width: 1px;
485
+
486
+ --color-skeleton-bg-normal: #eee;
487
+ --color-skeleton-bg-light: #f5f5f5;
488
+
489
+ --teamix-status-tag-loading-background: var(--G40, #AAAAAA);
490
+
491
+ --color-text1-3: #555555;
492
+ --color-text1-2: #888888;
493
+
494
+
495
+ .teamix-pro-lable-icon-tip-icon i {
496
+ color: var(--G40, #AAAAAA);
497
+ }
498
+ .next-tag-custom-filter-tag {
499
+ background-color: var(--color-fill1-1,#fff);
500
+ border: 0 solid #d9d9d9;
501
+ border: var(--colortag-border-width,0) solid var(--color-line1-2,#d9d9d9);
502
+ }
503
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamix/pro",
3
- "version": "1.5.12",
3
+ "version": "1.5.15",
4
4
  "description": "TeamixPro大包",
5
5
  "keywords": [
6
6
  "aliyun",