@teamix/pro 1.5.24 → 1.5.25
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/pro.all.min.css +1 -1
- package/dist/pro.css +1 -1
- package/dist/pro.js +169 -57
- package/dist/pro.min.js +1 -1
- package/dist/pro.xconsole.min.css +1 -1
- package/es/form/Components/FormItem2/index.js +1 -2
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/table/components/ToolBar/index.js +1 -1
- package/es/table/index.scss +1 -0
- package/es/table/xconsole.scss +6 -0
- package/lib/form/Components/FormItem2/index.js +1 -2
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/table/components/ToolBar/index.js +1 -1
- package/lib/table/index.scss +1 -0
- package/lib/table/xconsole.scss +6 -0
- package/package.json +1 -1
package/dist/pro.js
CHANGED
@@ -77067,7 +77067,6 @@ var FieldIcon = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().forwar
|
|
77067
77067
|
showLeft = _useState20[0],
|
77068
77068
|
setShowLeft = _useState20[1];
|
77069
77069
|
var balloonRef = (0,react__WEBPACK_IMPORTED_MODULE_0__.useRef)(null);
|
77070
|
-
console.log('showLeft', showLeft);
|
77071
77070
|
(0,react__WEBPACK_IMPORTED_MODULE_0__.useEffect)(function () {
|
77072
77071
|
setFieldVal(value);
|
77073
77072
|
(0,_utils__WEBPACK_IMPORTED_MODULE_6__/* .bindRefValue */ .Dd)(value, ref);
|
@@ -100213,8 +100212,7 @@ var BaseItem = function BaseItem(props) {
|
|
100213
100212
|
}
|
100214
100213
|
var prefixCls = (0,_builtins___WEBPACK_IMPORTED_MODULE_2__/* .usePrefixCls */ .F8)('formily-item', props);
|
100215
100214
|
var prefix = (0,_builtins___WEBPACK_IMPORTED_MODULE_2__/* .usePrefixCls */ .F8)();
|
100216
|
-
|
100217
|
-
var formatChildren = feedbackLayout === 'popover' || feedbackLayout === 'hover-popover' ? /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_alicloudfe_components__WEBPACK_IMPORTED_MODULE_6__.Balloon, _extends({
|
100215
|
+
var formatChildren = (feedbackLayout === 'popover' || feedbackLayout === 'hover-popover') && !!feedbackText ? /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_alicloudfe_components__WEBPACK_IMPORTED_MODULE_6__.Balloon, _extends({
|
100218
100216
|
needAdjust: true,
|
100219
100217
|
align: "t",
|
100220
100218
|
closable: false,
|
@@ -105380,7 +105378,7 @@ if (!((_window = window) != null && _window.TEAMIXPRO_WITHOUT_ICON)) {
|
|
105380
105378
|
|
105381
105379
|
|
105382
105380
|
|
105383
|
-
var version = '1.5.
|
105381
|
+
var version = '1.5.25';
|
105384
105382
|
|
105385
105383
|
// By TeamixTest
|
105386
105384
|
window.postMessage({
|
@@ -112230,7 +112228,7 @@ var ToolBar = function ToolBar(props) {
|
|
112230
112228
|
flat: flat
|
112231
112229
|
}),
|
112232
112230
|
ref: toolBarRef
|
112233
|
-
}, !flat && !fullScreenState ? renderUnFlatShape() : renderFlatShape, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1___default().createElement("div", {
|
112231
|
+
}, !flat && !fullScreenState ? renderUnFlatShape() : renderFlatShape, toolBarAutoWidth && /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1___default().createElement("div", {
|
112234
112232
|
className: cls('shadow'),
|
112235
112233
|
ref: toolBarContentRef
|
112236
112234
|
}, renderFlatShape));
|
@@ -116298,8 +116296,9 @@ var stringifyQuery = query_string__WEBPACK_IMPORTED_MODULE_0__.stringify;
|
|
116298
116296
|
* 设置URL的query
|
116299
116297
|
* @param newQuery
|
116300
116298
|
* @param customHistory 如果没有提供history,则默认使用全局的 history
|
116299
|
+
* @param options 参数配置
|
116301
116300
|
*/
|
116302
|
-
var setQuery = function setQuery(newQuery, customHistory) {
|
116301
|
+
var setQuery = function setQuery(newQuery, customHistory, options) {
|
116303
116302
|
// 获取原始链接
|
116304
116303
|
var _window$location = window.location,
|
116305
116304
|
origin = _window$location.origin,
|
@@ -116310,6 +116309,11 @@ var setQuery = function setQuery(newQuery, customHistory) {
|
|
116310
116309
|
// 处理原来的query
|
116311
116310
|
var originQuery = getQuery();
|
116312
116311
|
|
116312
|
+
// 如 overwrite true 则清空原数据
|
116313
|
+
if (options && options.overwrite) {
|
116314
|
+
originQuery = {};
|
116315
|
+
}
|
116316
|
+
|
116313
116317
|
// 追加新的query
|
116314
116318
|
var paramsStr = Object.entries(_extends({}, originQuery, newQuery)).map(function (_ref) {
|
116315
116319
|
var k = _ref[0],
|
@@ -118509,8 +118513,10 @@ var lightCategoryColor = {
|
|
118509
118513
|
/* harmony export */ });
|
118510
118514
|
// 专有云暗色主题图表配置
|
118511
118515
|
var chartDarkTheme = {
|
118516
|
+
name: 'dark',
|
118512
118517
|
category_12: [],
|
118513
|
-
|
118518
|
+
category_20: ['#307ac9', '#1b9657', '#5b50ba', '#d47815', '#b0a046', '#781ad6', '#527d0e', '#0e9dad', '#19779c', '#d95777', '#ffdc73', '#727a8a', '#40571c', '#398cd4', '#e66000', '#38a3c9', '#e04f6c', '#42b3a4', '#7236ad', '#9b94ff'],
|
118519
|
+
linear_10: ['#307ac9', '#255181', '#1a2838', '#2a66a5', '#1f3d5c', '#171e26', '#2d70b7', '#285b93', '#22476f', '#1a2838'],
|
118514
118520
|
order_10: ['#307ac9', '#2d70b7', '#2a66a5', '#285b93', '#255181', '#22476f', '#1f3d5c', '#1c334a', '#1a2838', '#171e26'],
|
118515
118521
|
'size-base': '4px',
|
118516
118522
|
s0: 0,
|
@@ -118533,28 +118539,72 @@ var chartDarkTheme = {
|
|
118533
118539
|
'corner-radius-base': '4px',
|
118534
118540
|
'corner-radius-r0': '0px',
|
118535
118541
|
'corner-radius-r1': '4px',
|
118536
|
-
'widgets-color-background': '#
|
118537
|
-
'widgets-color-layout-background': '#
|
118538
|
-
'widgets-color-container-background': '#
|
118539
|
-
'widgets-color-
|
118540
|
-
'widgets-color-
|
118541
|
-
'widgets-color-
|
118542
|
-
'widgets-color-
|
118543
|
-
'widgets-color-
|
118544
|
-
'widgets-color-
|
118545
|
-
'widgets-color-
|
118546
|
-
'widgets-color-
|
118547
|
-
'widgets-color-
|
118548
|
-
'widgets-color-
|
118549
|
-
'widgets-color-
|
118542
|
+
'widgets-color-background': '#ffffff',
|
118543
|
+
'widgets-color-layout-background': '#f7f7f7',
|
118544
|
+
'widgets-color-container-background': '#f7f7f7',
|
118545
|
+
'widgets-color-decoration-background': '#ffffff',
|
118546
|
+
'widgets-color-blue': '#297acc',
|
118547
|
+
'widgets-color-normal': '#0064c8',
|
118548
|
+
'widgets-color-orange': '#f98e1a',
|
118549
|
+
'widgets-color-red': '#e84738',
|
118550
|
+
'widgets-color-green': '#23b066',
|
118551
|
+
'widgets-color-gray': '#aaaaaa',
|
118552
|
+
'widgets-color-purple': '#6b67e0',
|
118553
|
+
'widgets-color-yellow': '#fac31e',
|
118554
|
+
'widgets-color-bg-normal': 'rgba(202, 227, 253, 0.5)',
|
118555
|
+
'widgets-color-bg-orange': 'rgba(255, 224, 191, 0.5)',
|
118556
|
+
'widgets-color-bg-red': 'rgba(252, 206, 202, 0.5)',
|
118557
|
+
'widgets-color-bg-green': 'rgba(209, 244, 225, 0.5)',
|
118558
|
+
'widgets-color-bg-purple': 'rgba(215, 215, 252, 0.5)',
|
118559
|
+
'widgets-color-bg-yellow': 'rgba(255, 242, 204, 0.5)',
|
118560
|
+
'widgets-color-category-1': '#297acc',
|
118561
|
+
'widgets-color-category-2': '#43bf7e',
|
118562
|
+
'widgets-color-category-3': '#8a87f5',
|
118563
|
+
'widgets-color-category-4': '#f7a854',
|
118564
|
+
'widgets-color-category-5': '#e8d36b',
|
118565
|
+
'widgets-color-category-6': '#d48fff',
|
118566
|
+
'widgets-color-category-7': '#85ba2f',
|
118567
|
+
'widgets-color-category-8': '#57ccd9',
|
118568
|
+
'widgets-color-category-9': '#49add1',
|
118569
|
+
'widgets-color-category-10': '#d95777',
|
118570
|
+
'widgets-color-category-11': '#ffe7a1',
|
118571
|
+
'widgets-color-category-12': '#a4acbd',
|
118572
|
+
'widgets-color-category-13': '#457000',
|
118573
|
+
'widgets-color-category-14': '#5aabf2',
|
118574
|
+
'widgets-color-category-15': '#db5b00',
|
118575
|
+
'widgets-color-category-16': '#007fad',
|
118576
|
+
'widgets-color-category-17': '#e68aa1',
|
118577
|
+
'widgets-color-category-18': '#61baae',
|
118578
|
+
'widgets-color-category-19': '#bd44c2',
|
118579
|
+
'widgets-color-category-20': '#a6a3f7',
|
118580
|
+
'widgets-color-linear-1': '#297acc',
|
118581
|
+
'widgets-color-linear-2': '#3b85d1',
|
118582
|
+
'widgets-color-linear-3': '#4d91d6',
|
118583
|
+
'widgets-color-linear-4': '#609edb',
|
118584
|
+
'widgets-color-linear-5': '#75aae0',
|
118585
|
+
'widgets-color-linear-6': '#8ab7e6',
|
118586
|
+
'widgets-color-linear-7': '#a0c5eb',
|
118587
|
+
'widgets-color-linear-8': '#b6d3f0',
|
118588
|
+
'widgets-color-linear-9': '#cee1f5',
|
118589
|
+
'widgets-color-linear-10': '#e6f0fa',
|
118590
|
+
'widgets-color-p1': '#bf0030',
|
118591
|
+
'widgets-color-p2': '#e84738',
|
118592
|
+
'widgets-color-p3': '#f98e1a',
|
118550
118593
|
'widgets-color-p4': '#fac31e',
|
118551
118594
|
'widgets-color-p5': '#d1bb4f',
|
118552
118595
|
'widgets-color-p6': '#00bacf',
|
118553
118596
|
'widgets-color-p7': '#1289b8',
|
118554
|
-
'widgets-color-
|
118555
|
-
'widgets-color-
|
118556
|
-
'widgets-color-
|
118557
|
-
'widgets-color-
|
118597
|
+
'widgets-color-bg-p1': 'rgba(242, 194, 206, 0.5)',
|
118598
|
+
'widgets-color-bg-p2': 'rgba(252, 206, 202, 0.5)',
|
118599
|
+
'widgets-color-bg-p3': 'rgba(255, 224, 191, 0.5)',
|
118600
|
+
'widgets-color-bg-p4': 'rgba(255, 242, 204, 0.5)',
|
118601
|
+
'widgets-color-bg-p5': 'rgba(255, 245, 196, 0.5)',
|
118602
|
+
'widgets-color-bg-p6': 'rgba(174, 226, 235, 0.5)',
|
118603
|
+
'widgets-color-bg-p7': 'rgba(175, 222, 240, 0.5)',
|
118604
|
+
'widgets-color-text-1': '#333333',
|
118605
|
+
'widgets-color-text-2': '#696969',
|
118606
|
+
'widgets-color-text-3': '#808080',
|
118607
|
+
'widgets-color-disable': '#aaaaaa',
|
118558
118608
|
'widgets-font-family-txd-m-number': "'TXDDINMediumNumber', 'Helvetica Neue', 'Helvetica', 'PingFang SC', 'Microsoft YaHei', 'Arial', sans-serif",
|
118559
118609
|
'widgets-font-family-txd-r-number': "'TXDDINRegularNumber', 'Helvetica Neue', 'Helvetica', 'PingFang SC', 'Microsoft YaHei', 'Arial', sans-serif",
|
118560
118610
|
'widgets-font-size-1': '12px',
|
@@ -118564,47 +118614,55 @@ var chartDarkTheme = {
|
|
118564
118614
|
'widgets-font-size-5': '24px',
|
118565
118615
|
'widgets-font-size-6': '28px',
|
118566
118616
|
'widgets-font-size-7': '32px',
|
118567
|
-
'widgets-legend-uncheck': '#
|
118568
|
-
'widgets-legend-text': '#
|
118569
|
-
'widgets-label-text': '#
|
118570
|
-
'widgets-tooltip-background': '#
|
118617
|
+
'widgets-legend-uncheck': '#aaaaaa',
|
118618
|
+
'widgets-legend-text': '#333333',
|
118619
|
+
'widgets-label-text': '#333333',
|
118620
|
+
'widgets-tooltip-background': '#ffffff',
|
118571
118621
|
'widgets-tooltip-padding': '12px',
|
118572
|
-
'widgets-tooltip-shadow': '0
|
118622
|
+
'widgets-tooltip-shadow': '0 3px 8px 0 rgba(0, 0, 0, 0.18)',
|
118573
118623
|
'widgets-tooltip-corner-radius': '4px',
|
118574
|
-
'widgets-tooltip-cross-line': '#
|
118575
|
-
'widgets-tooltip-cross-react': '#
|
118576
|
-
'widgets-tooltip-cross-react-opacity': 0.
|
118577
|
-
'widgets-tooltip-title': '#
|
118578
|
-
'widgets-tooltip-text': '#
|
118579
|
-
'widgets-tooltip-marker-fill': '#
|
118580
|
-
'widgets-axis-label': '#
|
118581
|
-
'widgets-axis-line': '#
|
118582
|
-
'widgets-axis-grid': 'rgba(
|
118624
|
+
'widgets-tooltip-cross-line': '#d9d9d9',
|
118625
|
+
'widgets-tooltip-cross-react': '#d9d9d9',
|
118626
|
+
'widgets-tooltip-cross-react-opacity': 0.5,
|
118627
|
+
'widgets-tooltip-title': '#808080',
|
118628
|
+
'widgets-tooltip-text': '#333333',
|
118629
|
+
'widgets-tooltip-marker-fill': '#ffffff',
|
118630
|
+
'widgets-axis-label': '#808080',
|
118631
|
+
'widgets-axis-line': '#cccccc',
|
118632
|
+
'widgets-axis-grid': 'rgba(229, 229, 229, 0.5)',
|
118583
118633
|
'widgets-guide-region-opacity': 0.1,
|
118584
118634
|
'widgets-shape-area-opacity': 0.1,
|
118585
118635
|
'widgets-shape-interval-opacity': 1,
|
118586
|
-
'widgets-container-background': '#
|
118636
|
+
'widgets-container-background': '#ffffff',
|
118587
118637
|
'widgets-container-padding': '20px',
|
118588
118638
|
'widgets-container-mobile-padding': '12px',
|
118589
118639
|
'widgets-container-corner-radius': '4px',
|
118590
118640
|
'widgets-container-shadow': 'none',
|
118591
|
-
'widgets-container-title': '#
|
118592
|
-
'widgets-container-split-line': '#
|
118593
|
-
'widgets-map-area-bg': '#
|
118594
|
-
'widgets-map-area-border': '#
|
118595
|
-
'widgets-map-label': '#
|
118596
|
-
'widgets-circle-stroke-background': 'rgba(
|
118641
|
+
'widgets-container-title': '#262626',
|
118642
|
+
'widgets-container-split-line': '#e5e5e5',
|
118643
|
+
'widgets-map-area-bg': '#e5e5e5',
|
118644
|
+
'widgets-map-area-border': '#ffffff',
|
118645
|
+
'widgets-map-label': '#333333',
|
118646
|
+
'widgets-circle-stroke-background': 'rgba(229, 229, 229, 0.5)',
|
118597
118647
|
'widgets-circle-number': 'currentColor',
|
118598
118648
|
'widgets-circle-stroke-width': '6px',
|
118599
|
-
'widgets-
|
118600
|
-
'widgets-
|
118601
|
-
'widgets-
|
118602
|
-
'widgets-
|
118649
|
+
'widgets-circle-outer-background': 'l(90) 0:#F7F7F7 1:#F7F7F700',
|
118650
|
+
'widgets-circle-inner-shadow': '0 4px 20px 0 rgba(204, 204, 204, 0.5)',
|
118651
|
+
'widgets-sankey-edge': '#e5e5e5',
|
118652
|
+
'widgets-sankey-node-text': '#808080',
|
118653
|
+
'widgets-scrollbar-bg': '#ebecf0',
|
118654
|
+
'widgets-scrollbar-thumb': '#c4c6cf',
|
118603
118655
|
'widgets-line-width': 2,
|
118604
|
-
'widgets-numbercard-color-text': '#
|
118605
|
-
'widgets-numbercard-color-red-bg': '#
|
118606
|
-
'widgets-numbercard-color-blue-bg': '#
|
118607
|
-
'widgets-
|
118656
|
+
'widgets-numbercard-color-text': '#1a1a1a',
|
118657
|
+
'widgets-numbercard-color-red-bg': '#fcceca',
|
118658
|
+
'widgets-numbercard-color-blue-bg': '#cae3fd',
|
118659
|
+
'widgets-numbercard-color-hover': 'rgba(229, 229, 229, 0.5)',
|
118660
|
+
'widgets-numbercard-color-click': '#f0f7ff',
|
118661
|
+
'widgets-capacity-color-grey': '#818a9c',
|
118662
|
+
'widgets-capacity-background-default': '#f0f7ff',
|
118663
|
+
'widgets-capacity-background-success': '#ebfff6',
|
118664
|
+
'widgets-capacity-background-warning': '#fff5eb',
|
118665
|
+
'widgets-capacity-background-error': '#ffeceb'
|
118608
118666
|
};
|
118609
118667
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (chartDarkTheme);
|
118610
118668
|
|
@@ -118619,8 +118677,10 @@ var chartDarkTheme = {
|
|
118619
118677
|
/* harmony export */ });
|
118620
118678
|
// 专有云亮色主题图表配置
|
118621
118679
|
var chartLightTheme = {
|
118680
|
+
name: 'normal',
|
118622
118681
|
category_12: [],
|
118623
|
-
|
118682
|
+
category_20: ['#297acc', '#43bf7e', '#8a87f5', '#f7a854', '#e8d36b', '#d48fff', '#85ba2f', '#57ccd9', '#49add1', '#d95777', '#ffe7a1', '#a4acbd', '#457000', '#5aabf2', '#db5b00', '#007fad', '#e68aa1', '#61baae', '#bd44c2', '#a6a3f7'],
|
118683
|
+
linear_10: ['#297acc', '#75aae0', '#cee1f5', '#4d91d6', '#a0c5eb', '#e6f0fa', '#3b85d1', '#609edb', '#8ab7e6', '#b6d3f0'],
|
118624
118684
|
order_10: ['#297acc', '#3b85d1', '#4d91d6', '#609edb', '#75aae0', '#8ab7e6', '#a0c5eb', '#b6d3f0', '#cee1f5', '#e6f0fa'],
|
118625
118685
|
'size-base': '4px',
|
118626
118686
|
s0: 0,
|
@@ -118646,6 +118706,7 @@ var chartLightTheme = {
|
|
118646
118706
|
'widgets-color-background': '#ffffff',
|
118647
118707
|
'widgets-color-layout-background': '#f7f7f7',
|
118648
118708
|
'widgets-color-container-background': '#f7f7f7',
|
118709
|
+
'widgets-color-decoration-background': '#ffffff',
|
118649
118710
|
'widgets-color-blue': '#297acc',
|
118650
118711
|
'widgets-color-normal': '#0064c8',
|
118651
118712
|
'widgets-color-orange': '#f98e1a',
|
@@ -118654,6 +118715,42 @@ var chartLightTheme = {
|
|
118654
118715
|
'widgets-color-gray': '#aaaaaa',
|
118655
118716
|
'widgets-color-purple': '#6b67e0',
|
118656
118717
|
'widgets-color-yellow': '#fac31e',
|
118718
|
+
'widgets-color-bg-normal': 'rgba(202, 227, 253, 0.5)',
|
118719
|
+
'widgets-color-bg-orange': 'rgba(255, 224, 191, 0.5)',
|
118720
|
+
'widgets-color-bg-red': 'rgba(252, 206, 202, 0.5)',
|
118721
|
+
'widgets-color-bg-green': 'rgba(209, 244, 225, 0.5)',
|
118722
|
+
'widgets-color-bg-purple': 'rgba(215, 215, 252, 0.5)',
|
118723
|
+
'widgets-color-bg-yellow': 'rgba(255, 242, 204, 0.5)',
|
118724
|
+
'widgets-color-category-1': '#297acc',
|
118725
|
+
'widgets-color-category-2': '#43bf7e',
|
118726
|
+
'widgets-color-category-3': '#8a87f5',
|
118727
|
+
'widgets-color-category-4': '#f7a854',
|
118728
|
+
'widgets-color-category-5': '#e8d36b',
|
118729
|
+
'widgets-color-category-6': '#d48fff',
|
118730
|
+
'widgets-color-category-7': '#85ba2f',
|
118731
|
+
'widgets-color-category-8': '#57ccd9',
|
118732
|
+
'widgets-color-category-9': '#49add1',
|
118733
|
+
'widgets-color-category-10': '#d95777',
|
118734
|
+
'widgets-color-category-11': '#ffe7a1',
|
118735
|
+
'widgets-color-category-12': '#a4acbd',
|
118736
|
+
'widgets-color-category-13': '#457000',
|
118737
|
+
'widgets-color-category-14': '#5aabf2',
|
118738
|
+
'widgets-color-category-15': '#db5b00',
|
118739
|
+
'widgets-color-category-16': '#007fad',
|
118740
|
+
'widgets-color-category-17': '#e68aa1',
|
118741
|
+
'widgets-color-category-18': '#61baae',
|
118742
|
+
'widgets-color-category-19': '#bd44c2',
|
118743
|
+
'widgets-color-category-20': '#a6a3f7',
|
118744
|
+
'widgets-color-linear-1': '#297acc',
|
118745
|
+
'widgets-color-linear-2': '#3b85d1',
|
118746
|
+
'widgets-color-linear-3': '#4d91d6',
|
118747
|
+
'widgets-color-linear-4': '#609edb',
|
118748
|
+
'widgets-color-linear-5': '#75aae0',
|
118749
|
+
'widgets-color-linear-6': '#8ab7e6',
|
118750
|
+
'widgets-color-linear-7': '#a0c5eb',
|
118751
|
+
'widgets-color-linear-8': '#b6d3f0',
|
118752
|
+
'widgets-color-linear-9': '#cee1f5',
|
118753
|
+
'widgets-color-linear-10': '#e6f0fa',
|
118657
118754
|
'widgets-color-p1': '#bf0030',
|
118658
118755
|
'widgets-color-p2': '#e84738',
|
118659
118756
|
'widgets-color-p3': '#f98e1a',
|
@@ -118661,6 +118758,13 @@ var chartLightTheme = {
|
|
118661
118758
|
'widgets-color-p5': '#d1bb4f',
|
118662
118759
|
'widgets-color-p6': '#00bacf',
|
118663
118760
|
'widgets-color-p7': '#1289b8',
|
118761
|
+
'widgets-color-bg-p1': 'rgba(242, 194, 206, 0.5)',
|
118762
|
+
'widgets-color-bg-p2': 'rgba(252, 206, 202, 0.5)',
|
118763
|
+
'widgets-color-bg-p3': 'rgba(255, 224, 191, 0.5)',
|
118764
|
+
'widgets-color-bg-p4': 'rgba(255, 242, 204, 0.5)',
|
118765
|
+
'widgets-color-bg-p5': 'rgba(255, 245, 196, 0.5)',
|
118766
|
+
'widgets-color-bg-p6': 'rgba(174, 226, 235, 0.5)',
|
118767
|
+
'widgets-color-bg-p7': 'rgba(175, 222, 240, 0.5)',
|
118664
118768
|
'widgets-color-text-1': '#333333',
|
118665
118769
|
'widgets-color-text-2': '#696969',
|
118666
118770
|
'widgets-color-text-3': '#808080',
|
@@ -118703,9 +118807,11 @@ var chartLightTheme = {
|
|
118703
118807
|
'widgets-map-area-bg': '#e5e5e5',
|
118704
118808
|
'widgets-map-area-border': '#ffffff',
|
118705
118809
|
'widgets-map-label': '#333333',
|
118706
|
-
'widgets-circle-stroke-background': 'rgba(
|
118810
|
+
'widgets-circle-stroke-background': 'rgba(229, 229, 229, 0.5)',
|
118707
118811
|
'widgets-circle-number': 'currentColor',
|
118708
118812
|
'widgets-circle-stroke-width': '6px',
|
118813
|
+
'widgets-circle-outer-background': 'l(90) 0:#F7F7F7 1:#F7F7F700',
|
118814
|
+
'widgets-circle-inner-shadow': '0 4px 20px 0 rgba(204, 204, 204, 0.5)',
|
118709
118815
|
'widgets-sankey-edge': '#e5e5e5',
|
118710
118816
|
'widgets-sankey-node-text': '#808080',
|
118711
118817
|
'widgets-scrollbar-bg': '#ebecf0',
|
@@ -118714,7 +118820,13 @@ var chartLightTheme = {
|
|
118714
118820
|
'widgets-numbercard-color-text': '#1a1a1a',
|
118715
118821
|
'widgets-numbercard-color-red-bg': '#fcceca',
|
118716
118822
|
'widgets-numbercard-color-blue-bg': '#cae3fd',
|
118717
|
-
'widgets-
|
118823
|
+
'widgets-numbercard-color-hover': 'rgba(229, 229, 229, 0.5)',
|
118824
|
+
'widgets-numbercard-color-click': '#f0f7ff',
|
118825
|
+
'widgets-capacity-color-grey': '#818a9c',
|
118826
|
+
'widgets-capacity-background-default': '#f0f7ff',
|
118827
|
+
'widgets-capacity-background-success': '#ebfff6',
|
118828
|
+
'widgets-capacity-background-warning': '#fff5eb',
|
118829
|
+
'widgets-capacity-background-error': '#ffeceb'
|
118718
118830
|
};
|
118719
118831
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (chartLightTheme);
|
118720
118832
|
|