@teamix/pro 1.6.0-beta.6 → 1.6.0-beta.7
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_6__/* .usePrefixCls */ .F8)('formily-item', props);
|
|
100215
100214
|
var prefix = (0,_builtins___WEBPACK_IMPORTED_MODULE_6__/* .usePrefixCls */ .F8)();
|
|
100216
|
-
|
|
100217
|
-
var formatChildren = feedbackLayout === 'popover' || feedbackLayout === 'hover-popover' ? /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_4___default().createElement(_alicloudfe_components__WEBPACK_IMPORTED_MODULE_0__.Balloon, _extends({
|
|
100215
|
+
var formatChildren = (feedbackLayout === 'popover' || feedbackLayout === 'hover-popover') && !!feedbackText ? /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_4___default().createElement(_alicloudfe_components__WEBPACK_IMPORTED_MODULE_0__.Balloon, _extends({
|
|
100218
100216
|
needAdjust: true,
|
|
100219
100217
|
align: "t",
|
|
100220
100218
|
closable: false,
|
|
@@ -105428,7 +105426,7 @@ if (!((_window = window) != null && _window.TEAMIXPRO_WITHOUT_ICON)) {
|
|
|
105428
105426
|
|
|
105429
105427
|
|
|
105430
105428
|
|
|
105431
|
-
var version = '1.6.0-beta.
|
|
105429
|
+
var version = '1.6.0-beta.7';
|
|
105432
105430
|
|
|
105433
105431
|
// By TeamixTest
|
|
105434
105432
|
window.postMessage({
|
|
@@ -112280,7 +112278,7 @@ var ToolBar = function ToolBar(props) {
|
|
|
112280
112278
|
flat: flat
|
|
112281
112279
|
}),
|
|
112282
112280
|
ref: toolBarRef
|
|
112283
|
-
}, !flat && !fullScreenState ? renderUnFlatShape() : renderFlatShape, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1___default().createElement("div", {
|
|
112281
|
+
}, !flat && !fullScreenState ? renderUnFlatShape() : renderFlatShape, toolBarAutoWidth && /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1___default().createElement("div", {
|
|
112284
112282
|
className: cls('shadow'),
|
|
112285
112283
|
ref: toolBarContentRef
|
|
112286
112284
|
}, renderFlatShape));
|
|
@@ -116403,8 +116401,9 @@ var stringifyQuery = query_string__WEBPACK_IMPORTED_MODULE_0__.stringify;
|
|
|
116403
116401
|
* 设置URL的query
|
|
116404
116402
|
* @param newQuery
|
|
116405
116403
|
* @param customHistory 如果没有提供history,则默认使用全局的 history
|
|
116404
|
+
* @param options 参数配置
|
|
116406
116405
|
*/
|
|
116407
|
-
var setQuery = function setQuery(newQuery, customHistory) {
|
|
116406
|
+
var setQuery = function setQuery(newQuery, customHistory, options) {
|
|
116408
116407
|
// 获取原始链接
|
|
116409
116408
|
var _window$location = window.location,
|
|
116410
116409
|
origin = _window$location.origin,
|
|
@@ -116415,6 +116414,11 @@ var setQuery = function setQuery(newQuery, customHistory) {
|
|
|
116415
116414
|
// 处理原来的query
|
|
116416
116415
|
var originQuery = getQuery();
|
|
116417
116416
|
|
|
116417
|
+
// 如 overwrite true 则清空原数据
|
|
116418
|
+
if (options && options.overwrite) {
|
|
116419
|
+
originQuery = {};
|
|
116420
|
+
}
|
|
116421
|
+
|
|
116418
116422
|
// 追加新的query
|
|
116419
116423
|
var paramsStr = Object.entries(_extends({}, originQuery, newQuery)).map(function (_ref) {
|
|
116420
116424
|
var k = _ref[0],
|
|
@@ -118614,8 +118618,10 @@ var lightCategoryColor = {
|
|
|
118614
118618
|
/* harmony export */ });
|
|
118615
118619
|
// 专有云暗色主题图表配置
|
|
118616
118620
|
var chartDarkTheme = {
|
|
118621
|
+
name: 'dark',
|
|
118617
118622
|
category_12: [],
|
|
118618
|
-
|
|
118623
|
+
category_20: ['#307ac9', '#1b9657', '#5b50ba', '#d47815', '#b0a046', '#781ad6', '#527d0e', '#0e9dad', '#19779c', '#d95777', '#ffdc73', '#727a8a', '#40571c', '#398cd4', '#e66000', '#38a3c9', '#e04f6c', '#42b3a4', '#7236ad', '#9b94ff'],
|
|
118624
|
+
linear_10: ['#307ac9', '#255181', '#1a2838', '#2a66a5', '#1f3d5c', '#171e26', '#2d70b7', '#285b93', '#22476f', '#1a2838'],
|
|
118619
118625
|
order_10: ['#307ac9', '#2d70b7', '#2a66a5', '#285b93', '#255181', '#22476f', '#1f3d5c', '#1c334a', '#1a2838', '#171e26'],
|
|
118620
118626
|
'size-base': '4px',
|
|
118621
118627
|
s0: 0,
|
|
@@ -118638,28 +118644,72 @@ var chartDarkTheme = {
|
|
|
118638
118644
|
'corner-radius-base': '4px',
|
|
118639
118645
|
'corner-radius-r0': '0px',
|
|
118640
118646
|
'corner-radius-r1': '4px',
|
|
118641
|
-
'widgets-color-background': '#
|
|
118642
|
-
'widgets-color-layout-background': '#
|
|
118643
|
-
'widgets-color-container-background': '#
|
|
118644
|
-
'widgets-color-
|
|
118645
|
-
'widgets-color-
|
|
118646
|
-
'widgets-color-
|
|
118647
|
-
'widgets-color-
|
|
118648
|
-
'widgets-color-
|
|
118649
|
-
'widgets-color-
|
|
118650
|
-
'widgets-color-
|
|
118651
|
-
'widgets-color-
|
|
118652
|
-
'widgets-color-
|
|
118653
|
-
'widgets-color-
|
|
118654
|
-
'widgets-color-
|
|
118647
|
+
'widgets-color-background': '#ffffff',
|
|
118648
|
+
'widgets-color-layout-background': '#f7f7f7',
|
|
118649
|
+
'widgets-color-container-background': '#f7f7f7',
|
|
118650
|
+
'widgets-color-decoration-background': '#ffffff',
|
|
118651
|
+
'widgets-color-blue': '#297acc',
|
|
118652
|
+
'widgets-color-normal': '#0064c8',
|
|
118653
|
+
'widgets-color-orange': '#f98e1a',
|
|
118654
|
+
'widgets-color-red': '#e84738',
|
|
118655
|
+
'widgets-color-green': '#23b066',
|
|
118656
|
+
'widgets-color-gray': '#aaaaaa',
|
|
118657
|
+
'widgets-color-purple': '#6b67e0',
|
|
118658
|
+
'widgets-color-yellow': '#fac31e',
|
|
118659
|
+
'widgets-color-bg-normal': 'rgba(202, 227, 253, 0.5)',
|
|
118660
|
+
'widgets-color-bg-orange': 'rgba(255, 224, 191, 0.5)',
|
|
118661
|
+
'widgets-color-bg-red': 'rgba(252, 206, 202, 0.5)',
|
|
118662
|
+
'widgets-color-bg-green': 'rgba(209, 244, 225, 0.5)',
|
|
118663
|
+
'widgets-color-bg-purple': 'rgba(215, 215, 252, 0.5)',
|
|
118664
|
+
'widgets-color-bg-yellow': 'rgba(255, 242, 204, 0.5)',
|
|
118665
|
+
'widgets-color-category-1': '#297acc',
|
|
118666
|
+
'widgets-color-category-2': '#43bf7e',
|
|
118667
|
+
'widgets-color-category-3': '#8a87f5',
|
|
118668
|
+
'widgets-color-category-4': '#f7a854',
|
|
118669
|
+
'widgets-color-category-5': '#e8d36b',
|
|
118670
|
+
'widgets-color-category-6': '#d48fff',
|
|
118671
|
+
'widgets-color-category-7': '#85ba2f',
|
|
118672
|
+
'widgets-color-category-8': '#57ccd9',
|
|
118673
|
+
'widgets-color-category-9': '#49add1',
|
|
118674
|
+
'widgets-color-category-10': '#d95777',
|
|
118675
|
+
'widgets-color-category-11': '#ffe7a1',
|
|
118676
|
+
'widgets-color-category-12': '#a4acbd',
|
|
118677
|
+
'widgets-color-category-13': '#457000',
|
|
118678
|
+
'widgets-color-category-14': '#5aabf2',
|
|
118679
|
+
'widgets-color-category-15': '#db5b00',
|
|
118680
|
+
'widgets-color-category-16': '#007fad',
|
|
118681
|
+
'widgets-color-category-17': '#e68aa1',
|
|
118682
|
+
'widgets-color-category-18': '#61baae',
|
|
118683
|
+
'widgets-color-category-19': '#bd44c2',
|
|
118684
|
+
'widgets-color-category-20': '#a6a3f7',
|
|
118685
|
+
'widgets-color-linear-1': '#297acc',
|
|
118686
|
+
'widgets-color-linear-2': '#3b85d1',
|
|
118687
|
+
'widgets-color-linear-3': '#4d91d6',
|
|
118688
|
+
'widgets-color-linear-4': '#609edb',
|
|
118689
|
+
'widgets-color-linear-5': '#75aae0',
|
|
118690
|
+
'widgets-color-linear-6': '#8ab7e6',
|
|
118691
|
+
'widgets-color-linear-7': '#a0c5eb',
|
|
118692
|
+
'widgets-color-linear-8': '#b6d3f0',
|
|
118693
|
+
'widgets-color-linear-9': '#cee1f5',
|
|
118694
|
+
'widgets-color-linear-10': '#e6f0fa',
|
|
118695
|
+
'widgets-color-p1': '#bf0030',
|
|
118696
|
+
'widgets-color-p2': '#e84738',
|
|
118697
|
+
'widgets-color-p3': '#f98e1a',
|
|
118655
118698
|
'widgets-color-p4': '#fac31e',
|
|
118656
118699
|
'widgets-color-p5': '#d1bb4f',
|
|
118657
118700
|
'widgets-color-p6': '#00bacf',
|
|
118658
118701
|
'widgets-color-p7': '#1289b8',
|
|
118659
|
-
'widgets-color-
|
|
118660
|
-
'widgets-color-
|
|
118661
|
-
'widgets-color-
|
|
118662
|
-
'widgets-color-
|
|
118702
|
+
'widgets-color-bg-p1': 'rgba(242, 194, 206, 0.5)',
|
|
118703
|
+
'widgets-color-bg-p2': 'rgba(252, 206, 202, 0.5)',
|
|
118704
|
+
'widgets-color-bg-p3': 'rgba(255, 224, 191, 0.5)',
|
|
118705
|
+
'widgets-color-bg-p4': 'rgba(255, 242, 204, 0.5)',
|
|
118706
|
+
'widgets-color-bg-p5': 'rgba(255, 245, 196, 0.5)',
|
|
118707
|
+
'widgets-color-bg-p6': 'rgba(174, 226, 235, 0.5)',
|
|
118708
|
+
'widgets-color-bg-p7': 'rgba(175, 222, 240, 0.5)',
|
|
118709
|
+
'widgets-color-text-1': '#333333',
|
|
118710
|
+
'widgets-color-text-2': '#696969',
|
|
118711
|
+
'widgets-color-text-3': '#808080',
|
|
118712
|
+
'widgets-color-disable': '#aaaaaa',
|
|
118663
118713
|
'widgets-font-family-txd-m-number': "'TXDDINMediumNumber', 'Helvetica Neue', 'Helvetica', 'PingFang SC', 'Microsoft YaHei', 'Arial', sans-serif",
|
|
118664
118714
|
'widgets-font-family-txd-r-number': "'TXDDINRegularNumber', 'Helvetica Neue', 'Helvetica', 'PingFang SC', 'Microsoft YaHei', 'Arial', sans-serif",
|
|
118665
118715
|
'widgets-font-size-1': '12px',
|
|
@@ -118669,47 +118719,55 @@ var chartDarkTheme = {
|
|
|
118669
118719
|
'widgets-font-size-5': '24px',
|
|
118670
118720
|
'widgets-font-size-6': '28px',
|
|
118671
118721
|
'widgets-font-size-7': '32px',
|
|
118672
|
-
'widgets-legend-uncheck': '#
|
|
118673
|
-
'widgets-legend-text': '#
|
|
118674
|
-
'widgets-label-text': '#
|
|
118675
|
-
'widgets-tooltip-background': '#
|
|
118722
|
+
'widgets-legend-uncheck': '#aaaaaa',
|
|
118723
|
+
'widgets-legend-text': '#333333',
|
|
118724
|
+
'widgets-label-text': '#333333',
|
|
118725
|
+
'widgets-tooltip-background': '#ffffff',
|
|
118676
118726
|
'widgets-tooltip-padding': '12px',
|
|
118677
|
-
'widgets-tooltip-shadow': '0
|
|
118727
|
+
'widgets-tooltip-shadow': '0 3px 8px 0 rgba(0, 0, 0, 0.18)',
|
|
118678
118728
|
'widgets-tooltip-corner-radius': '4px',
|
|
118679
|
-
'widgets-tooltip-cross-line': '#
|
|
118680
|
-
'widgets-tooltip-cross-react': '#
|
|
118681
|
-
'widgets-tooltip-cross-react-opacity': 0.
|
|
118682
|
-
'widgets-tooltip-title': '#
|
|
118683
|
-
'widgets-tooltip-text': '#
|
|
118684
|
-
'widgets-tooltip-marker-fill': '#
|
|
118685
|
-
'widgets-axis-label': '#
|
|
118686
|
-
'widgets-axis-line': '#
|
|
118687
|
-
'widgets-axis-grid': 'rgba(
|
|
118729
|
+
'widgets-tooltip-cross-line': '#d9d9d9',
|
|
118730
|
+
'widgets-tooltip-cross-react': '#d9d9d9',
|
|
118731
|
+
'widgets-tooltip-cross-react-opacity': 0.5,
|
|
118732
|
+
'widgets-tooltip-title': '#808080',
|
|
118733
|
+
'widgets-tooltip-text': '#333333',
|
|
118734
|
+
'widgets-tooltip-marker-fill': '#ffffff',
|
|
118735
|
+
'widgets-axis-label': '#808080',
|
|
118736
|
+
'widgets-axis-line': '#cccccc',
|
|
118737
|
+
'widgets-axis-grid': 'rgba(229, 229, 229, 0.5)',
|
|
118688
118738
|
'widgets-guide-region-opacity': 0.1,
|
|
118689
118739
|
'widgets-shape-area-opacity': 0.1,
|
|
118690
118740
|
'widgets-shape-interval-opacity': 1,
|
|
118691
|
-
'widgets-container-background': '#
|
|
118741
|
+
'widgets-container-background': '#ffffff',
|
|
118692
118742
|
'widgets-container-padding': '20px',
|
|
118693
118743
|
'widgets-container-mobile-padding': '12px',
|
|
118694
118744
|
'widgets-container-corner-radius': '4px',
|
|
118695
118745
|
'widgets-container-shadow': 'none',
|
|
118696
|
-
'widgets-container-title': '#
|
|
118697
|
-
'widgets-container-split-line': '#
|
|
118698
|
-
'widgets-map-area-bg': '#
|
|
118699
|
-
'widgets-map-area-border': '#
|
|
118700
|
-
'widgets-map-label': '#
|
|
118701
|
-
'widgets-circle-stroke-background': 'rgba(
|
|
118746
|
+
'widgets-container-title': '#262626',
|
|
118747
|
+
'widgets-container-split-line': '#e5e5e5',
|
|
118748
|
+
'widgets-map-area-bg': '#e5e5e5',
|
|
118749
|
+
'widgets-map-area-border': '#ffffff',
|
|
118750
|
+
'widgets-map-label': '#333333',
|
|
118751
|
+
'widgets-circle-stroke-background': 'rgba(229, 229, 229, 0.5)',
|
|
118702
118752
|
'widgets-circle-number': 'currentColor',
|
|
118703
118753
|
'widgets-circle-stroke-width': '6px',
|
|
118704
|
-
'widgets-
|
|
118705
|
-
'widgets-
|
|
118706
|
-
'widgets-
|
|
118707
|
-
'widgets-
|
|
118754
|
+
'widgets-circle-outer-background': 'l(90) 0:#F7F7F7 1:#F7F7F700',
|
|
118755
|
+
'widgets-circle-inner-shadow': '0 4px 20px 0 rgba(204, 204, 204, 0.5)',
|
|
118756
|
+
'widgets-sankey-edge': '#e5e5e5',
|
|
118757
|
+
'widgets-sankey-node-text': '#808080',
|
|
118758
|
+
'widgets-scrollbar-bg': '#ebecf0',
|
|
118759
|
+
'widgets-scrollbar-thumb': '#c4c6cf',
|
|
118708
118760
|
'widgets-line-width': 2,
|
|
118709
|
-
'widgets-numbercard-color-text': '#
|
|
118710
|
-
'widgets-numbercard-color-red-bg': '#
|
|
118711
|
-
'widgets-numbercard-color-blue-bg': '#
|
|
118712
|
-
'widgets-
|
|
118761
|
+
'widgets-numbercard-color-text': '#1a1a1a',
|
|
118762
|
+
'widgets-numbercard-color-red-bg': '#fcceca',
|
|
118763
|
+
'widgets-numbercard-color-blue-bg': '#cae3fd',
|
|
118764
|
+
'widgets-numbercard-color-hover': 'rgba(229, 229, 229, 0.5)',
|
|
118765
|
+
'widgets-numbercard-color-click': '#f0f7ff',
|
|
118766
|
+
'widgets-capacity-color-grey': '#818a9c',
|
|
118767
|
+
'widgets-capacity-background-default': '#f0f7ff',
|
|
118768
|
+
'widgets-capacity-background-success': '#ebfff6',
|
|
118769
|
+
'widgets-capacity-background-warning': '#fff5eb',
|
|
118770
|
+
'widgets-capacity-background-error': '#ffeceb'
|
|
118713
118771
|
};
|
|
118714
118772
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (chartDarkTheme);
|
|
118715
118773
|
|
|
@@ -118724,8 +118782,10 @@ var chartDarkTheme = {
|
|
|
118724
118782
|
/* harmony export */ });
|
|
118725
118783
|
// 专有云亮色主题图表配置
|
|
118726
118784
|
var chartLightTheme = {
|
|
118785
|
+
name: 'normal',
|
|
118727
118786
|
category_12: [],
|
|
118728
|
-
|
|
118787
|
+
category_20: ['#297acc', '#43bf7e', '#8a87f5', '#f7a854', '#e8d36b', '#d48fff', '#85ba2f', '#57ccd9', '#49add1', '#d95777', '#ffe7a1', '#a4acbd', '#457000', '#5aabf2', '#db5b00', '#007fad', '#e68aa1', '#61baae', '#bd44c2', '#a6a3f7'],
|
|
118788
|
+
linear_10: ['#297acc', '#75aae0', '#cee1f5', '#4d91d6', '#a0c5eb', '#e6f0fa', '#3b85d1', '#609edb', '#8ab7e6', '#b6d3f0'],
|
|
118729
118789
|
order_10: ['#297acc', '#3b85d1', '#4d91d6', '#609edb', '#75aae0', '#8ab7e6', '#a0c5eb', '#b6d3f0', '#cee1f5', '#e6f0fa'],
|
|
118730
118790
|
'size-base': '4px',
|
|
118731
118791
|
s0: 0,
|
|
@@ -118751,6 +118811,7 @@ var chartLightTheme = {
|
|
|
118751
118811
|
'widgets-color-background': '#ffffff',
|
|
118752
118812
|
'widgets-color-layout-background': '#f7f7f7',
|
|
118753
118813
|
'widgets-color-container-background': '#f7f7f7',
|
|
118814
|
+
'widgets-color-decoration-background': '#ffffff',
|
|
118754
118815
|
'widgets-color-blue': '#297acc',
|
|
118755
118816
|
'widgets-color-normal': '#0064c8',
|
|
118756
118817
|
'widgets-color-orange': '#f98e1a',
|
|
@@ -118759,6 +118820,42 @@ var chartLightTheme = {
|
|
|
118759
118820
|
'widgets-color-gray': '#aaaaaa',
|
|
118760
118821
|
'widgets-color-purple': '#6b67e0',
|
|
118761
118822
|
'widgets-color-yellow': '#fac31e',
|
|
118823
|
+
'widgets-color-bg-normal': 'rgba(202, 227, 253, 0.5)',
|
|
118824
|
+
'widgets-color-bg-orange': 'rgba(255, 224, 191, 0.5)',
|
|
118825
|
+
'widgets-color-bg-red': 'rgba(252, 206, 202, 0.5)',
|
|
118826
|
+
'widgets-color-bg-green': 'rgba(209, 244, 225, 0.5)',
|
|
118827
|
+
'widgets-color-bg-purple': 'rgba(215, 215, 252, 0.5)',
|
|
118828
|
+
'widgets-color-bg-yellow': 'rgba(255, 242, 204, 0.5)',
|
|
118829
|
+
'widgets-color-category-1': '#297acc',
|
|
118830
|
+
'widgets-color-category-2': '#43bf7e',
|
|
118831
|
+
'widgets-color-category-3': '#8a87f5',
|
|
118832
|
+
'widgets-color-category-4': '#f7a854',
|
|
118833
|
+
'widgets-color-category-5': '#e8d36b',
|
|
118834
|
+
'widgets-color-category-6': '#d48fff',
|
|
118835
|
+
'widgets-color-category-7': '#85ba2f',
|
|
118836
|
+
'widgets-color-category-8': '#57ccd9',
|
|
118837
|
+
'widgets-color-category-9': '#49add1',
|
|
118838
|
+
'widgets-color-category-10': '#d95777',
|
|
118839
|
+
'widgets-color-category-11': '#ffe7a1',
|
|
118840
|
+
'widgets-color-category-12': '#a4acbd',
|
|
118841
|
+
'widgets-color-category-13': '#457000',
|
|
118842
|
+
'widgets-color-category-14': '#5aabf2',
|
|
118843
|
+
'widgets-color-category-15': '#db5b00',
|
|
118844
|
+
'widgets-color-category-16': '#007fad',
|
|
118845
|
+
'widgets-color-category-17': '#e68aa1',
|
|
118846
|
+
'widgets-color-category-18': '#61baae',
|
|
118847
|
+
'widgets-color-category-19': '#bd44c2',
|
|
118848
|
+
'widgets-color-category-20': '#a6a3f7',
|
|
118849
|
+
'widgets-color-linear-1': '#297acc',
|
|
118850
|
+
'widgets-color-linear-2': '#3b85d1',
|
|
118851
|
+
'widgets-color-linear-3': '#4d91d6',
|
|
118852
|
+
'widgets-color-linear-4': '#609edb',
|
|
118853
|
+
'widgets-color-linear-5': '#75aae0',
|
|
118854
|
+
'widgets-color-linear-6': '#8ab7e6',
|
|
118855
|
+
'widgets-color-linear-7': '#a0c5eb',
|
|
118856
|
+
'widgets-color-linear-8': '#b6d3f0',
|
|
118857
|
+
'widgets-color-linear-9': '#cee1f5',
|
|
118858
|
+
'widgets-color-linear-10': '#e6f0fa',
|
|
118762
118859
|
'widgets-color-p1': '#bf0030',
|
|
118763
118860
|
'widgets-color-p2': '#e84738',
|
|
118764
118861
|
'widgets-color-p3': '#f98e1a',
|
|
@@ -118766,6 +118863,13 @@ var chartLightTheme = {
|
|
|
118766
118863
|
'widgets-color-p5': '#d1bb4f',
|
|
118767
118864
|
'widgets-color-p6': '#00bacf',
|
|
118768
118865
|
'widgets-color-p7': '#1289b8',
|
|
118866
|
+
'widgets-color-bg-p1': 'rgba(242, 194, 206, 0.5)',
|
|
118867
|
+
'widgets-color-bg-p2': 'rgba(252, 206, 202, 0.5)',
|
|
118868
|
+
'widgets-color-bg-p3': 'rgba(255, 224, 191, 0.5)',
|
|
118869
|
+
'widgets-color-bg-p4': 'rgba(255, 242, 204, 0.5)',
|
|
118870
|
+
'widgets-color-bg-p5': 'rgba(255, 245, 196, 0.5)',
|
|
118871
|
+
'widgets-color-bg-p6': 'rgba(174, 226, 235, 0.5)',
|
|
118872
|
+
'widgets-color-bg-p7': 'rgba(175, 222, 240, 0.5)',
|
|
118769
118873
|
'widgets-color-text-1': '#333333',
|
|
118770
118874
|
'widgets-color-text-2': '#696969',
|
|
118771
118875
|
'widgets-color-text-3': '#808080',
|
|
@@ -118808,9 +118912,11 @@ var chartLightTheme = {
|
|
|
118808
118912
|
'widgets-map-area-bg': '#e5e5e5',
|
|
118809
118913
|
'widgets-map-area-border': '#ffffff',
|
|
118810
118914
|
'widgets-map-label': '#333333',
|
|
118811
|
-
'widgets-circle-stroke-background': 'rgba(
|
|
118915
|
+
'widgets-circle-stroke-background': 'rgba(229, 229, 229, 0.5)',
|
|
118812
118916
|
'widgets-circle-number': 'currentColor',
|
|
118813
118917
|
'widgets-circle-stroke-width': '6px',
|
|
118918
|
+
'widgets-circle-outer-background': 'l(90) 0:#F7F7F7 1:#F7F7F700',
|
|
118919
|
+
'widgets-circle-inner-shadow': '0 4px 20px 0 rgba(204, 204, 204, 0.5)',
|
|
118814
118920
|
'widgets-sankey-edge': '#e5e5e5',
|
|
118815
118921
|
'widgets-sankey-node-text': '#808080',
|
|
118816
118922
|
'widgets-scrollbar-bg': '#ebecf0',
|
|
@@ -118819,7 +118925,13 @@ var chartLightTheme = {
|
|
|
118819
118925
|
'widgets-numbercard-color-text': '#1a1a1a',
|
|
118820
118926
|
'widgets-numbercard-color-red-bg': '#fcceca',
|
|
118821
118927
|
'widgets-numbercard-color-blue-bg': '#cae3fd',
|
|
118822
|
-
'widgets-
|
|
118928
|
+
'widgets-numbercard-color-hover': 'rgba(229, 229, 229, 0.5)',
|
|
118929
|
+
'widgets-numbercard-color-click': '#f0f7ff',
|
|
118930
|
+
'widgets-capacity-color-grey': '#818a9c',
|
|
118931
|
+
'widgets-capacity-background-default': '#f0f7ff',
|
|
118932
|
+
'widgets-capacity-background-success': '#ebfff6',
|
|
118933
|
+
'widgets-capacity-background-warning': '#fff5eb',
|
|
118934
|
+
'widgets-capacity-background-error': '#ffeceb'
|
|
118823
118935
|
};
|
|
118824
118936
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (chartLightTheme);
|
|
118825
118937
|
|