@teamix/pro 1.4.25-bugfix.2 → 1.4.25-bugfix.3
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.css +1 -1
- package/dist/pro.js +64943 -84006
- package/dist/pro.min.css +1 -1
- package/dist/pro.min.js +1 -1
- package/dist/pro.min.js.LICENSE.txt +6 -13
- package/es/actions/base.js +21 -8
- package/es/actions/dialog-component.js +9 -2
- package/es/actions/dialog-form.js +75 -37
- package/es/actions/dialog-info.js +5 -1
- package/es/actions/dialog.js +95 -57
- package/es/actions/index.d.ts +0 -7
- package/es/actions/index.js +153 -93
- package/es/actions/index.scss +1 -6
- package/es/actions/link.js +5 -3
- package/es/actions/request.js +27 -12
- package/es/actions/utils.js +9 -1
- package/es/card/card-container.js +5 -0
- package/es/card/divider.js +5 -0
- package/es/card/index.js +100 -61
- package/es/card/index.scss +0 -15
- package/es/card/selectable.js +13 -4
- package/es/card/tab.js +10 -1
- package/es/card/utils.js +2 -0
- package/es/form/Components/Editable/index.js +55 -16
- package/es/form/Components/FormGroup/index.d.ts +0 -1
- package/es/form/Components/FormGroup/index.js +22 -7
- package/es/form/Components/LightFilter/index.js +35 -15
- package/es/form/Components/ProField/index.js +14 -2
- package/es/form/Components/ProField/mapDateFormat.js +28 -2
- package/es/form/Components/Text/index.d.ts +0 -1
- package/es/form/Components/Text/index.js +11 -2
- package/es/form/Filter/AdvancedFilter.js +26 -11
- package/es/form/Filter/Layout.js +24 -11
- package/es/form/Filter/LightFilter.js +24 -13
- package/es/form/Filter/SimpleFilter.js +21 -7
- package/es/form/Filter/index.js +171 -117
- package/es/form/Filter/index2.js +28 -11
- package/es/form/Filter/layout.scss +1 -1
- package/es/form/Filter/useBindUrl.js +46 -18
- package/es/form/Filter/useSpecialProps.js +13 -8
- package/es/form/ProForm/customComponent.js +5 -0
- package/es/form/ProForm/index.js +38 -30
- package/es/form/ProForm/useAutoLayout.js +42 -21
- package/es/form/ProForm/useAutoSubmit.js +8 -3
- package/es/form/ProForm/useFieldRequest.js +5 -0
- package/es/form/ProForm/useFormDisplayValues.js +28 -12
- package/es/form/ProForm/useInitialRequest.js +5 -0
- package/es/form/SchemaForm/adapterComponent.js +3 -0
- package/es/form/SchemaForm/adapterDecorator.d.ts +1 -1
- package/es/form/SchemaForm/adapterDecorator.js +8 -0
- package/es/form/SchemaForm/adapterType.js +2 -0
- package/es/form/SchemaForm/index.js +114 -78
- package/es/form/SchemaForm/initializeArrayCards.js +6 -0
- package/es/form/SchemaForm/initializeArrayCollapse.js +6 -0
- package/es/form/SchemaForm/initializeArrayItems.js +9 -2
- package/es/form/SchemaForm/initializeArrayTable.js +34 -21
- package/es/form/SchemaForm/initializeDataSource.js +6 -2
- package/es/form/SchemaForm/initializeFormButton.js +31 -14
- package/es/form/SchemaForm/initializeFormCollapse.js +18 -8
- package/es/form/SchemaForm/initializeFormGroup.js +20 -10
- package/es/form/SchemaForm/initializeFormStep.js +23 -11
- package/es/form/SchemaForm/initializeFormTab.js +20 -10
- package/es/form/SchemaForm/initializeReactions.js +33 -9
- package/es/form/SchemaForm/initializeRequest.js +16 -2
- package/es/form/SchemaForm/initializeRules.js +22 -4
- package/es/form/SchemaForm/initializeSelectTable.js +33 -7
- package/es/form/SchemaForm/reactions.js +34 -19
- package/es/form/docs/ActionResponse.d.ts +0 -1
- package/es/form/index.d.ts +9 -9
- package/es/form/index.js +9 -0
- package/es/form/typing.d.ts +4 -26
- package/es/form/utils.d.ts +1 -1
- package/es/form/utils.js +49 -4
- package/es/form/warning.js +7 -2
- package/es/global.scss +1 -3
- package/es/index-without-icon.js +3 -4
- package/es/index.d.ts +1 -1
- package/es/index.js +8 -18
- package/es/info/components/InfoGroup/index.js +32 -21
- package/es/info/components/InfoValueItem/index.js +119 -66
- package/es/info/components/ProInfoItem/index.js +21 -13
- package/es/info/components/baseInfo/index.js +27 -17
- package/es/info/components/headerInfo/index.js +20 -8
- package/es/info/components/tableInfo/index.js +50 -20
- package/es/info/index.js +86 -61
- package/es/info/typing.d.ts +0 -2
- package/es/info/utils/index.js +11 -0
- package/es/nocode/configurators/ProTable.js +22 -1
- package/es/nocode/configurators/common.js +6 -5
- package/es/nocode/configurators/index.js +3 -2
- package/es/nocode/index.js +6 -6
- package/es/nocode/pages/editor.js +9 -5
- package/es/nocode/pages/index.js +30 -5
- package/es/nocode/pages/playground.js +35 -18
- package/es/nocode/pages/renderer.js +42 -9
- package/es/nocode/playground.js +23 -10
- package/es/page-header/index.d.ts +2 -2
- package/es/page-header/index.js +76 -40
- package/es/page-header/index.scss +1 -2
- package/es/sidebar/components/sidebar-container/index.js +69 -54
- package/es/sidebar/components/sidebar-container/index.scss +14 -21
- package/es/sidebar/components/tree/index.js +138 -100
- package/es/sidebar/components/tree-node/components/HoverTooltip/index.js +26 -11
- package/es/sidebar/components/tree-node/components/IconAction/index.js +35 -9
- package/es/sidebar/components/tree-node/components/IconSwitch/index.d.ts +2 -2
- package/es/sidebar/components/tree-node/components/IconSwitch/index.js +25 -12
- package/es/sidebar/components/tree-node/components/IconSwitch/index.scss +1 -1
- package/es/sidebar/components/tree-node/index.js +84 -42
- package/es/sidebar/components/tree-node/index.scss +0 -6
- package/es/sidebar/index.d.ts +0 -2
- package/es/sidebar/index.js +95 -72
- package/es/sidebar/typing.d.ts +0 -4
- package/es/sidebar/utils/action-ref.js +7 -2
- package/es/sidebar/utils/index.d.ts +2 -5
- package/es/sidebar/utils/index.js +98 -41
- package/es/table/components/Filter/index.d.ts +3 -6
- package/es/table/components/Filter/index.js +128 -115
- package/es/table/components/Layout/index.js +47 -32
- package/es/table/components/Layout/index.scss +1 -2
- package/es/table/components/Pagination/index.js +58 -25
- package/es/table/components/QuickAction/index.d.ts +0 -1
- package/es/table/components/QuickAction/index.js +11 -3
- package/es/table/components/ToolBar/DensityIcon.js +31 -19
- package/es/table/components/ToolBar/FilterColumnIcon.js +125 -87
- package/es/table/components/ToolBar/FullScreenIcon.js +62 -7
- package/es/table/components/ToolBar/Fullscreen.js +28 -25
- package/es/table/components/ToolBar/RefreshIcon.js +27 -162
- package/es/table/components/ToolBar/index.d.ts +1 -1
- package/es/table/components/ToolBar/index.js +38 -130
- package/es/table/components/ToolBar/index.scss +3 -49
- package/es/table/index.js +423 -455
- package/es/table/index.scss +0 -8
- package/es/table/typing.d.ts +6 -125
- package/es/table/utils/columnRender.d.ts +3 -3
- package/es/table/utils/columnRender.js +79 -39
- package/es/table/utils/genProColumnToColumn.d.ts +2 -2
- package/es/table/utils/genProColumnToColumn.js +16 -13
- package/es/table/utils/index.js +47 -14
- package/es/table/utils/pureColumnRender.js +53 -21
- package/es/table/utils/pureGenProColumnToColumn.d.ts +1 -1
- package/es/table/utils/pureGenProColumnToColumn.js +10 -2
- package/es/table/utils/useTableSelection.js +33 -6
- package/es/templates/List/index.js +9 -2
- package/es/timeline/ProTimeLineItem/index.js +65 -25
- package/es/timeline/index.js +22 -8
- package/es/timeline/typing.d.ts +0 -1
- package/es/utils/message.d.ts +2 -2
- package/es/utils/message.js +5 -0
- package/lib/actions/base.js +24 -8
- package/lib/actions/confirm.js +5 -0
- package/lib/actions/danger-confirm.js +5 -0
- package/lib/actions/danger-pop-confirm.js +4 -0
- package/lib/actions/dialog-component.js +15 -2
- package/lib/actions/dialog-form.js +89 -36
- package/lib/actions/dialog-info.js +10 -1
- package/lib/actions/dialog-table.js +5 -0
- package/lib/actions/dialog.js +112 -55
- package/lib/actions/drawer-form.js +3 -0
- package/lib/actions/drawer-info.js +3 -0
- package/lib/actions/drawer-table.js +3 -0
- package/lib/actions/drawer.js +4 -0
- package/lib/actions/error.js +5 -0
- package/lib/actions/index.d.ts +0 -7
- package/lib/actions/index.js +184 -115
- package/lib/actions/index.scss +1 -6
- package/lib/actions/link.js +10 -1
- package/lib/actions/notice.js +5 -0
- package/lib/actions/pop-confirm.js +5 -0
- package/lib/actions/request.js +32 -8
- package/lib/actions/utils.js +9 -1
- package/lib/card/card-container.js +9 -0
- package/lib/card/divider.js +7 -0
- package/lib/card/index.js +127 -61
- package/lib/card/index.scss +0 -15
- package/lib/card/selectable.js +20 -4
- package/lib/card/tab.js +14 -1
- package/lib/card/utils.js +6 -0
- package/lib/field/index.js +6 -0
- package/lib/form/Components/Editable/index.js +65 -15
- package/lib/form/Components/FormGroup/index.d.ts +0 -1
- package/lib/form/Components/FormGroup/index.js +28 -7
- package/lib/form/Components/LightFilter/index.js +47 -15
- package/lib/form/Components/ProField/index.js +21 -2
- package/lib/form/Components/ProField/mapDateFormat.js +32 -2
- package/lib/form/Components/Text/index.d.ts +0 -1
- package/lib/form/Components/Text/index.js +16 -2
- package/lib/form/Filter/AdvancedFilter.js +34 -11
- package/lib/form/Filter/Layout.js +33 -11
- package/lib/form/Filter/LightFilter.js +32 -13
- package/lib/form/Filter/SimpleFilter.js +27 -5
- package/lib/form/Filter/index.js +191 -116
- package/lib/form/Filter/index2.js +38 -11
- package/lib/form/Filter/layout.scss +1 -1
- package/lib/form/Filter/useBindUrl.js +50 -18
- package/lib/form/Filter/useSpecialProps.js +13 -6
- package/lib/form/ProForm/customComponent.js +8 -0
- package/lib/form/ProForm/index.js +60 -30
- package/lib/form/ProForm/useAutoLayout.js +45 -21
- package/lib/form/ProForm/useAutoSubmit.js +10 -1
- package/lib/form/ProForm/useFieldRequest.js +8 -0
- package/lib/form/ProForm/useFormDisplayValues.js +34 -12
- package/lib/form/ProForm/useInitialRequest.js +6 -0
- package/lib/form/SchemaForm/adapterComponent.js +6 -0
- package/lib/form/SchemaForm/adapterDecorator.d.ts +1 -1
- package/lib/form/SchemaForm/adapterDecorator.js +12 -0
- package/lib/form/SchemaForm/adapterType.js +5 -0
- package/lib/form/SchemaForm/index.js +144 -78
- package/lib/form/SchemaForm/initializeArrayCards.js +7 -0
- package/lib/form/SchemaForm/initializeArrayCollapse.js +7 -0
- package/lib/form/SchemaForm/initializeArrayItems.js +10 -2
- package/lib/form/SchemaForm/initializeArrayTable.js +34 -21
- package/lib/form/SchemaForm/initializeDataSource.js +8 -2
- package/lib/form/SchemaForm/initializeFormButton.js +32 -14
- package/lib/form/SchemaForm/initializeFormCollapse.js +18 -8
- package/lib/form/SchemaForm/initializeFormGroup.js +20 -10
- package/lib/form/SchemaForm/initializeFormStep.js +23 -11
- package/lib/form/SchemaForm/initializeFormTab.js +20 -10
- package/lib/form/SchemaForm/initializeReactions.js +37 -9
- package/lib/form/SchemaForm/initializeRequest.js +18 -2
- package/lib/form/SchemaForm/initializeRules.js +24 -4
- package/lib/form/SchemaForm/initializeSelectTable.js +36 -7
- package/lib/form/SchemaForm/reactions.js +37 -17
- package/lib/form/docs/ActionResponse.d.ts +0 -1
- package/lib/form/docs/ActionResponse.js +5 -0
- package/lib/form/index.d.ts +9 -9
- package/lib/form/index.js +25 -0
- package/lib/form/typing.d.ts +4 -26
- package/lib/form/utils.d.ts +1 -1
- package/lib/form/utils.js +61 -4
- package/lib/form/warning.js +8 -2
- package/lib/global.scss +1 -3
- package/lib/hooks/index.js +5 -0
- package/lib/index-without-icon.js +36 -2
- package/lib/index.d.ts +1 -1
- package/lib/index.js +40 -13
- package/lib/info/components/InfoGroup/index.js +42 -21
- package/lib/info/components/InfoValueItem/index.js +134 -66
- package/lib/info/components/ProInfoItem/index.js +29 -13
- package/lib/info/components/baseInfo/index.js +39 -17
- package/lib/info/components/headerInfo/index.js +31 -8
- package/lib/info/components/tableInfo/index.js +62 -20
- package/lib/info/index.js +101 -61
- package/lib/info/typing.d.ts +0 -2
- package/lib/info/utils/index.js +19 -0
- package/lib/info/utils/utils.js +1 -0
- package/lib/nocode/configurators/PageHeader.js +2 -0
- package/lib/nocode/configurators/ProTable.js +24 -1
- package/lib/nocode/configurators/common.js +10 -5
- package/lib/nocode/configurators/index.js +10 -2
- package/lib/nocode/configurators/map.js +5 -0
- package/lib/nocode/index.js +11 -0
- package/lib/nocode/pages/editor.js +19 -5
- package/lib/nocode/pages/index.js +35 -3
- package/lib/nocode/pages/playground.js +52 -18
- package/lib/nocode/pages/renderer.js +53 -9
- package/lib/nocode/playground.js +35 -10
- package/lib/page-container/index.js +6 -0
- package/lib/page-header/index.d.ts +2 -2
- package/lib/page-header/index.js +90 -39
- package/lib/page-header/index.scss +1 -2
- package/lib/sidebar/components/sidebar-container/index.js +81 -54
- package/lib/sidebar/components/sidebar-container/index.scss +14 -21
- package/lib/sidebar/components/tree/index.js +152 -100
- package/lib/sidebar/components/tree-node/components/HoverTooltip/index.js +34 -11
- package/lib/sidebar/components/tree-node/components/IconAction/index.js +46 -9
- package/lib/sidebar/components/tree-node/components/IconSwitch/index.d.ts +2 -2
- package/lib/sidebar/components/tree-node/components/IconSwitch/index.js +35 -12
- package/lib/sidebar/components/tree-node/components/IconSwitch/index.scss +1 -1
- package/lib/sidebar/components/tree-node/index.js +100 -42
- package/lib/sidebar/components/tree-node/index.scss +0 -6
- package/lib/sidebar/index.d.ts +0 -2
- package/lib/sidebar/index.js +111 -79
- package/lib/sidebar/typing.d.ts +0 -4
- package/lib/sidebar/utils/action-ref.js +8 -2
- package/lib/sidebar/utils/index.d.ts +2 -5
- package/lib/sidebar/utils/index.js +106 -41
- package/lib/skeleton/index.js +6 -0
- package/lib/table/components/EmptyContent/index.js +6 -0
- package/lib/table/components/Filter/index.d.ts +3 -6
- package/lib/table/components/Filter/index.js +137 -114
- package/lib/table/components/Layout/index.js +60 -32
- package/lib/table/components/Layout/index.scss +1 -2
- package/lib/table/components/Pagination/index.js +68 -25
- package/lib/table/components/QuickAction/index.d.ts +0 -1
- package/lib/table/components/QuickAction/index.js +15 -3
- package/lib/table/components/ToolBar/DensityIcon.js +42 -19
- package/lib/table/components/ToolBar/FilterColumnIcon.js +136 -86
- package/lib/table/components/ToolBar/FullScreenIcon.js +74 -10
- package/lib/table/components/ToolBar/Fullscreen.js +35 -25
- package/lib/table/components/ToolBar/RefreshIcon.js +36 -164
- package/lib/table/components/ToolBar/index.d.ts +1 -1
- package/lib/table/components/ToolBar/index.js +47 -133
- package/lib/table/components/ToolBar/index.scss +3 -49
- package/lib/table/index.js +445 -454
- package/lib/table/index.scss +0 -8
- package/lib/table/typing.d.ts +6 -125
- package/lib/table/utils/columnRender.d.ts +3 -3
- package/lib/table/utils/columnRender.js +92 -39
- package/lib/table/utils/genProColumnToColumn.d.ts +2 -2
- package/lib/table/utils/genProColumnToColumn.js +21 -13
- package/lib/table/utils/getTableProps.js +2 -0
- package/lib/table/utils/getTableSortIcons.js +5 -0
- package/lib/table/utils/index.js +55 -12
- package/lib/table/utils/pureColumnRender.js +64 -21
- package/lib/table/utils/pureGenProColumnToColumn.d.ts +1 -1
- package/lib/table/utils/pureGenProColumnToColumn.js +11 -2
- package/lib/table/utils/useTableSelection.js +35 -6
- package/lib/templates/Detail/index.js +5 -0
- package/lib/templates/Form/index.js +5 -0
- package/lib/templates/List/index.js +19 -2
- package/lib/templates/index.js +6 -0
- package/lib/timeline/ProTimeLineItem/index.js +76 -25
- package/lib/timeline/index.js +33 -8
- package/lib/timeline/typing.d.ts +0 -1
- package/lib/utils/index.js +6 -0
- package/lib/utils/message.d.ts +2 -2
- package/lib/utils/message.js +10 -0
- package/package.json +1 -1
- package/dist/pro.all.min.css +0 -1
- package/dist/pro.xconsole.min.css +0 -1
- package/es/actions/quick.d.ts +0 -2
- package/es/actions/quick.js +0 -26
- package/es/card/xconsole.scss +0 -3
- package/es/form/ProForm/addCascadeEffect.d.ts +0 -2
- package/es/form/ProForm/addCascadeEffect.js +0 -203
- package/es/next-xconsole.scss +0 -34
- package/es/page-header/xconsole.scss +0 -5
- package/es/table/components/CardView/index.d.ts +0 -5
- package/es/table/components/CardView/index.js +0 -392
- package/es/table/components/CardView/index.scss +0 -46
- package/es/table/components/LoadMore/index.d.ts +0 -20
- package/es/table/components/LoadMore/index.js +0 -88
- package/es/table/components/LoadMore/index.scss +0 -19
- package/es/table/components/ToolBar/CardSwitch.d.ts +0 -8
- package/es/table/components/ToolBar/CardSwitch.js +0 -52
- package/es/table/utils/util.d.ts +0 -5
- package/es/table/utils/util.js +0 -19
- package/es/xconsole.scss +0 -503
- package/lib/actions/quick.d.ts +0 -2
- package/lib/actions/quick.js +0 -33
- package/lib/card/xconsole.scss +0 -3
- package/lib/form/ProForm/addCascadeEffect.d.ts +0 -2
- package/lib/form/ProForm/addCascadeEffect.js +0 -210
- package/lib/next-xconsole.scss +0 -34
- package/lib/page-header/xconsole.scss +0 -5
- package/lib/table/components/CardView/index.d.ts +0 -5
- package/lib/table/components/CardView/index.js +0 -402
- package/lib/table/components/CardView/index.scss +0 -46
- package/lib/table/components/LoadMore/index.d.ts +0 -20
- package/lib/table/components/LoadMore/index.js +0 -99
- package/lib/table/components/LoadMore/index.scss +0 -19
- package/lib/table/components/ToolBar/CardSwitch.d.ts +0 -8
- package/lib/table/components/ToolBar/CardSwitch.js +0 -60
- package/lib/table/utils/util.d.ts +0 -5
- package/lib/table/utils/util.js +0 -25
- package/lib/xconsole.scss +0 -503
package/es/table/utils/util.js
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
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; }
|
2
|
-
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; }
|
3
|
-
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; }
|
4
|
-
export function getUrlStateFilter(urlState, actionRef) {
|
5
|
-
var _actionRef$current$ge, _actionRef$current, _actionRef$current$ge2, _actionRef$current$ge3, _actionRef$current2, _actionRef$current2$s;
|
6
|
-
var filters = Object.keys(urlState).filter(function (item) {
|
7
|
-
return /^filter.+$/.test(item);
|
8
|
-
});
|
9
|
-
var urlStateParams = Object.fromEntries(filters.map(function (item) {
|
10
|
-
var _item$split, _urlState$item, _urlState$item$join, _urlState$item$split, _urlState$item2, _urlState$item2$split;
|
11
|
-
return [(_item$split = item.split('filter')) === null || _item$split === void 0 ? void 0 : _item$split[1], {
|
12
|
-
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],
|
13
|
-
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 : []
|
14
|
-
}];
|
15
|
-
}));
|
16
|
-
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 : {};
|
17
|
-
// 再设置所有的列筛选状态
|
18
|
-
(_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));
|
19
|
-
}
|
package/es/xconsole.scss
DELETED
@@ -1,503 +0,0 @@
|
|
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/lib/actions/quick.d.ts
DELETED
package/lib/actions/quick.js
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.createAction = createAction;
|
7
|
-
var _ = _interopRequireDefault(require("./"));
|
8
|
-
var _reactDom = _interopRequireDefault(require("react-dom"));
|
9
|
-
var _react = _interopRequireDefault(require("react"));
|
10
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
11
|
-
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; }
|
12
|
-
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; }
|
13
|
-
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; }
|
14
|
-
function createAction(props) {
|
15
|
-
var parentDom = document.getElementById('teamix-pro-actions-identification-par');
|
16
|
-
if (!parentDom) {
|
17
|
-
parentDom = document.createElement('div');
|
18
|
-
parentDom.setAttribute('id', 'teamix-pro-actions-identification-par');
|
19
|
-
document.body.appendChild(parentDom);
|
20
|
-
} else {
|
21
|
-
parentDom.innerHTML = '';
|
22
|
-
}
|
23
|
-
var divDom = document.createElement('div');
|
24
|
-
divDom.style.display = 'none';
|
25
|
-
divDom.setAttribute('class', 'teamix-pro-actions-identification');
|
26
|
-
_reactDom.default.render( /*#__PURE__*/_react.default.createElement(_.default, _objectSpread({}, props)), divDom);
|
27
|
-
parentDom.appendChild(divDom);
|
28
|
-
setTimeout(function () {
|
29
|
-
var _divDom$children, _divDom$children$, _divDom$children$$cli;
|
30
|
-
// @ts-ignore
|
31
|
-
divDom === null || divDom === void 0 ? void 0 : (_divDom$children = divDom.children) === null || _divDom$children === void 0 ? void 0 : (_divDom$children$ = _divDom$children[0]) === null || _divDom$children$ === void 0 ? void 0 : (_divDom$children$$cli = _divDom$children$.click) === null || _divDom$children$$cli === void 0 ? void 0 : _divDom$children$$cli.call(_divDom$children$);
|
32
|
-
});
|
33
|
-
}
|
package/lib/card/xconsole.scss
DELETED