@kdcloudjs/kdesign 1.8.20 → 1.8.22

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 (45) hide show
  1. package/dist/kdesign-complete.less +245 -10
  2. package/dist/kdesign.css +675 -235
  3. package/dist/kdesign.css.map +1 -1
  4. package/dist/kdesign.js +148 -132
  5. package/dist/kdesign.js.map +1 -1
  6. package/dist/kdesign.min.css +3 -3
  7. package/dist/kdesign.min.js +8 -8
  8. package/dist/kdesign.min.js.map +1 -1
  9. package/es/cascader/style/index.less +4 -3
  10. package/es/color-picker/color-picker.js +18 -7
  11. package/es/color-picker/style/index.css +7 -4
  12. package/es/color-picker/style/index.less +5 -4
  13. package/es/config-provider/compDefaultProps.d.ts +1 -3
  14. package/es/config-provider/compDefaultProps.js +1 -3
  15. package/es/icon/icon.js +7 -4
  16. package/es/icon/style/index.less +2 -2
  17. package/es/locale/en-US.d.ts +1 -0
  18. package/es/locale/en-US.js +1 -0
  19. package/es/select/option.js +4 -2
  20. package/es/select/select.js +7 -1
  21. package/es/style/icon/kdicon.less +231 -0
  22. package/es/style/index.css +667 -1
  23. package/es/style/index.less +1 -1
  24. package/es/switch/style/index.less +2 -1
  25. package/es/tree/tree.js +4 -10
  26. package/lib/cascader/style/index.less +4 -3
  27. package/lib/color-picker/color-picker.js +19 -8
  28. package/lib/color-picker/style/index.css +7 -4
  29. package/lib/color-picker/style/index.less +5 -4
  30. package/lib/config-provider/compDefaultProps.d.ts +1 -3
  31. package/lib/config-provider/compDefaultProps.js +1 -3
  32. package/lib/icon/icon.js +7 -4
  33. package/lib/icon/style/index.less +2 -2
  34. package/lib/locale/en-US.d.ts +1 -0
  35. package/lib/locale/en-US.js +1 -0
  36. package/lib/select/option.js +4 -2
  37. package/lib/select/select.js +7 -1
  38. package/lib/style/icon/kdicon.less +231 -0
  39. package/lib/style/index.css +667 -1
  40. package/lib/style/index.less +1 -1
  41. package/lib/switch/style/index.less +2 -1
  42. package/lib/tree/tree.js +4 -10
  43. package/package.json +1 -1
  44. package/es/style/icon/kdicon.css +0 -229
  45. package/lib/style/icon/kdicon.css +0 -229
@@ -5,6 +5,7 @@
5
5
  @cascader-picker-prefix-cls: ~'@{kd-prefix}-cascader-picker';
6
6
  @cascader-menus-prefix-cls: ~'@{kd-prefix}-cascader-menus';
7
7
  @cascader-menu-prefix-cls: ~'@{kd-prefix}-cascader-menu';
8
+ @icon-prefix-cls: ~'@{kd-prefix}icon';
8
9
 
9
10
  .@{cascader-picker-prefix-cls} {
10
11
  position: relative;
@@ -18,7 +19,7 @@
18
19
  border-color: @color-border-strong;
19
20
 
20
21
  .@{kd-prefix}-input-suffix,
21
- i[class*='kdicon'] {
22
+ i[class*='@{icon-prefix-cls}'] {
22
23
  color: @cascader-disabled-color;
23
24
  }
24
25
  }
@@ -47,13 +48,13 @@
47
48
  }
48
49
 
49
50
  &.expand {
50
- i[class*='kdicon'] {
51
+ i[class*='@{icon-prefix-cls}'] {
51
52
  transform: rotate(180deg);
52
53
  }
53
54
  }
54
55
 
55
56
  .@{kd-prefix}-input-suffix,
56
- i[class*='kdicon'] {
57
+ i[class*='@{icon-prefix-cls}'] {
57
58
  transition: all 0.2s;
58
59
  }
59
60
  }
@@ -1,7 +1,16 @@
1
1
  import _extends from "@babel/runtime-corejs3/helpers/extends";
2
2
  import _defineProperty from "@babel/runtime-corejs3/helpers/defineProperty";
3
3
  import _slicedToArray from "@babel/runtime-corejs3/helpers/slicedToArray";
4
+ import _Object$getOwnPropertySymbols from "@babel/runtime-corejs3/core-js-stable/object/get-own-property-symbols";
4
5
  import _findInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/find";
6
+ var __rest = this && this.__rest || function (s, e) {
7
+ var t = {};
8
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
9
+ if (s != null && typeof _Object$getOwnPropertySymbols === "function") for (var i = 0, p = _Object$getOwnPropertySymbols(s); i < p.length; i++) {
10
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
11
+ }
12
+ return t;
13
+ };
5
14
  import React, { useContext, useState, useRef, useEffect, useCallback } from 'react';
6
15
  import classNames from 'classnames';
7
16
  import { ConfigContext } from '../config-provider';
@@ -43,10 +52,12 @@ var ColorPicker = function ColorPicker(props) {
43
52
  defaultValue = colorPickerProps.defaultValue,
44
53
  defaultOpen = colorPickerProps.defaultOpen,
45
54
  visible = colorPickerProps.visible,
55
+ popperClassName = colorPickerProps.popperClassName,
46
56
  suffixIcon = colorPickerProps.suffixIcon,
47
57
  prefixIcon = colorPickerProps.prefixIcon,
48
58
  onChange = colorPickerProps.onChange,
49
- onVisibleChange = colorPickerProps.onVisibleChange;
59
+ onVisibleChange = colorPickerProps.onVisibleChange,
60
+ otherProps = __rest(colorPickerProps, ["value", "className", "style", "pure", "functionalColor", "functionalColorName", "switchName", "showAlphaInput", "showClear", "showSwitch", "showColorTransfer", "showPresetColor", "showColorPickerBox", "format", "panelFormatConfig", "borderType", "presetColor", "historicalColor", "placeholder", "defaultValue", "defaultOpen", "visible", "popperClassName", "suffixIcon", "prefixIcon", "onChange", "onVisibleChange"]);
50
61
  var _useState = useState(defaultValue || ''),
51
62
  _useState2 = _slicedToArray(_useState, 2),
52
63
  inputColorValue = _useState2[0],
@@ -92,9 +103,9 @@ var ColorPicker = function ColorPicker(props) {
92
103
  clickedHistoricalColorIndex = _useState22[0],
93
104
  setClickedHistoricalColorIndex = _useState22[1];
94
105
  var colorPickerPrefixCls = getPrefixCls(prefixCls, 'color-picker');
95
- var popUpLayer = getPrefixCls(prefixCls, 'color-picker-pop');
96
- var containerCls = classNames("".concat(colorPickerPrefixCls, "-container"), _defineProperty({}, "".concat(colorPickerPrefixCls, "-container-pure"), pure));
97
- var inputCls = classNames("".concat(colorPickerPrefixCls, "-input"), className);
106
+ var popUpLayer = classNames(getPrefixCls(prefixCls, 'color-picker-pop'), popperClassName);
107
+ var containerCls = classNames("".concat(colorPickerPrefixCls, "-container"), className, _defineProperty({}, "".concat(colorPickerPrefixCls, "-container-pure"), pure));
108
+ var inputCls = classNames("".concat(colorPickerPrefixCls, "-input"));
98
109
  var inputRef = useRef(null);
99
110
  var showColorPickerPanel = showColorTransfer || typeof showPresetColor === 'boolean' && showPresetColor && ((presetColor === null || presetColor === void 0 ? void 0 : presetColor.length) || systemPresetColor.length) || typeof showPresetColor === 'undefined' || showClear || (historicalColor === null || historicalColor === void 0 ? void 0 : historicalColor.length) || (functionalColor === null || functionalColor === void 0 ? void 0 : functionalColor.length) && showSwitch || (showColorPickerBox === null || showColorPickerBox === void 0 ? void 0 : showColorPickerBox.showBox) || (showColorPickerBox === null || showColorPickerBox === void 0 ? void 0 : showColorPickerBox.showHue) || (showColorPickerBox === null || showColorPickerBox === void 0 ? void 0 : showColorPickerBox.showOpacity);
100
111
  var setClickColorIndex = function setClickColorIndex(value) {
@@ -207,7 +218,8 @@ var ColorPicker = function ColorPicker(props) {
207
218
  }, [borderType, colTypeArr, colorPickerPrefixCls, inputCorrectColorValue, value]);
208
219
  var colorInputEle = React.createElement("div", {
209
220
  className: containerCls,
210
- ref: inputRef
221
+ ref: inputRef,
222
+ style: style
211
223
  }, React.createElement(Input, {
212
224
  borderType: pure ? 'bordered' : borderType,
213
225
  placeholder: placeholder,
@@ -215,7 +227,6 @@ var ColorPicker = function ColorPicker(props) {
215
227
  className: inputCls,
216
228
  onChange: handleChange,
217
229
  onBlur: handleBlur,
218
- style: style,
219
230
  onClick: handleClick,
220
231
  prefix: React.createElement("div", {
221
232
  onClick: handleClick,
@@ -269,7 +280,7 @@ var ColorPicker = function ColorPicker(props) {
269
280
  currentColorType: currentColorType,
270
281
  showColorPickerPanel: showColorPickerPanel
271
282
  });
272
- var popperProps = _extends(_extends({}, colorPickerProps), {
283
+ var popperProps = _extends(_extends({}, otherProps), {
273
284
  popperClassName: popUpLayer,
274
285
  placement: 'bottomLeft',
275
286
  defaultVisible: showPanel,
@@ -106,6 +106,7 @@
106
106
  .kd-color-picker-container {
107
107
  position: relative;
108
108
  width: var(--kd-c-color-picker-input-sizing-width, 230px);
109
+ height: var(--kd-c-color-picker-input-sizing-height, 28px);
109
110
  }
110
111
  .kd-color-picker-container-pure {
111
112
  width: 28px;
@@ -132,8 +133,8 @@
132
133
  display: none;
133
134
  }
134
135
  .kd-color-picker-container .kd-color-picker-input {
135
- width: var(--kd-c-color-picker-input-sizing-width, 230px);
136
- height: var(--kd-c-color-picker-input-sizing-height, 28px);
136
+ height: 100%;
137
+ width: 100%;
137
138
  padding: 0 8px;
138
139
  border-bottom: 1px solid #d9d9d9;
139
140
  font-size: var(--kd-c-color-picker-input-font-size, var(--kd-g-font-size-middle, 14px));
@@ -163,7 +164,8 @@
163
164
  width: var(--kd-c-color-picker-input-prefix-line-sizing-width, 1px);
164
165
  height: var(--kd-c-color-picker-input-prefix-line-sizing-height, 22.6px);
165
166
  background-color: #ff2e3d;
166
- rotate: 45deg;
167
+ -webkit-transform: rotate(45deg);
168
+ transform: rotate(45deg);
167
169
  }
168
170
  .kd-color-picker-pop {
169
171
  width: var(--kd-c-color-picker-panel-sizing-width, 304px);
@@ -223,7 +225,8 @@
223
225
  width: 1px;
224
226
  height: 22.6px;
225
227
  background-color: #ff2e3d;
226
- rotate: 45deg;
228
+ -webkit-transform: rotate(45deg);
229
+ transform: rotate(45deg);
227
230
  }
228
231
  .kd-color-picker-pop .kd-color-picker-panel-clear-box .active {
229
232
  content: '';
@@ -7,6 +7,7 @@
7
7
  .@{color-picker-prefix-cls}-container {
8
8
  position: relative;
9
9
  width: @color-picker-input-sizing-width;
10
+ height: @color-picker-input-sizing-height;
10
11
 
11
12
  &-pure {
12
13
  width: 28px;
@@ -32,8 +33,8 @@
32
33
  }
33
34
 
34
35
  .@{color-picker-prefix-cls}-input {
35
- width: @color-picker-input-sizing-width;
36
- height: @color-picker-input-sizing-height;
36
+ height: 100%;
37
+ width: 100%;
37
38
  padding: 0 8px;
38
39
  border-bottom: 1px solid rgba(217, 217, 217, 1);
39
40
  font-size: @color-picker-input-font-size;
@@ -58,7 +59,7 @@
58
59
  width: @color-picker-input-prefix-line-sizing-width;
59
60
  height: @color-picker-input-prefix-line-sizing-height;
60
61
  background-color: #ff2e3d;
61
- rotate: 45deg;
62
+ transform: rotate(45deg);
62
63
  }
63
64
  }
64
65
  }
@@ -117,7 +118,7 @@
117
118
  width: 1px;
118
119
  height: 22.6px;
119
120
  background-color: #ff2e3d;
120
- rotate: 45deg;
121
+ transform: rotate(45deg);
121
122
  }
122
123
 
123
124
  .active {
@@ -156,9 +156,7 @@ declare const compDefaultProps: {
156
156
  labelAlign: string;
157
157
  size: string;
158
158
  };
159
- Icon: {
160
- prefix: string;
161
- };
159
+ Icon: {};
162
160
  Input: {
163
161
  type: string;
164
162
  size: string;
@@ -155,9 +155,7 @@ var compDefaultProps = {
155
155
  labelAlign: 'left',
156
156
  size: 'middle'
157
157
  },
158
- Icon: {
159
- prefix: 'kdicon'
160
- },
158
+ Icon: {},
161
159
  Input: {
162
160
  type: 'text',
163
161
  size: 'middle',
package/es/icon/icon.js CHANGED
@@ -17,12 +17,14 @@ import { getCompProps } from '../_utils';
17
17
  var InternalIcon = function InternalIcon(props, ref) {
18
18
  var _context, _classNames;
19
19
  var _useContext = useContext(ConfigContext),
20
- userDefaultProps = _useContext.compDefaultProps;
20
+ getPrefixCls = _useContext.getPrefixCls,
21
+ userDefaultProps = _useContext.compDefaultProps,
22
+ prefixCls = _useContext.prefixCls;
21
23
  var iconProps = getCompProps('Icon', userDefaultProps, props);
22
24
  var type = iconProps.type,
23
25
  spin = iconProps.spin,
24
26
  style = iconProps.style,
25
- prefix = iconProps.prefix,
27
+ customPrefixcls = iconProps.prefix,
26
28
  className = iconProps.className,
27
29
  rotate = iconProps.rotate,
28
30
  onClick = iconProps.onClick,
@@ -31,8 +33,9 @@ var InternalIcon = function InternalIcon(props, ref) {
31
33
  others = __rest(iconProps, ["type", "spin", "style", "prefix", "className", "rotate", "onClick", "onMouseEnter", "onMouseLeave"]);
32
34
  var innerRef = React.useRef();
33
35
  var iconRef = ref || innerRef;
34
- var iconPrefix = prefix || iconProps.iconPrefix;
35
- var iconClass = classNames(iconPrefix, className, (_classNames = {}, _defineProperty(_classNames, _concatInstanceProperty(_context = "".concat(iconPrefix, "-")).call(_context, type), type), _defineProperty(_classNames, "icon-spin", spin), _classNames));
36
+ var iconPrefix = getPrefixCls(prefixCls, 'icon', customPrefixcls);
37
+ var iconPrefixCls = iconPrefix.replace(/-/g, '');
38
+ var iconClass = classNames(iconPrefixCls, className, (_classNames = {}, _defineProperty(_classNames, _concatInstanceProperty(_context = "".concat(iconPrefixCls, "-")).call(_context, type), type), _defineProperty(_classNames, "icon-spin", spin), _classNames));
36
39
  var handleClick = function handleClick(e) {
37
40
  onClick && onClick(e);
38
41
  };
@@ -1,8 +1,8 @@
1
1
 
2
2
  @import '../../style/themes/index';
3
- @icon-prefix-cls: ~'@{icon-css-prefix}';
3
+ @icon-prefix-cls: ~'@{kd-prefix}icon';
4
4
 
5
- [class^="kdicon"] {
5
+ [class^="@{icon-prefix-cls}"] {
6
6
  display: inline-block;
7
7
  text-align: center;
8
8
  vertical-align: middle;
@@ -19,6 +19,7 @@ declare const locale: {
19
19
  'DatePicker.rangeWeekPlaceholder': string[];
20
20
  'DatePicker.rangeQuarterPlaceholder': string[];
21
21
  'DatePicker.rangeTimePlaceholder': string[];
22
+ 'DatePicker.monthBeforeYear': boolean;
22
23
  'global.selectholder': string;
23
24
  'global.placeholder': string;
24
25
  'global.cancel': string;
@@ -19,6 +19,7 @@ var locale = {
19
19
  'DatePicker.rangeWeekPlaceholder': ['Start week', 'End week'],
20
20
  'DatePicker.rangeQuarterPlaceholder': ['Start quarter', 'End quarter'],
21
21
  'DatePicker.rangeTimePlaceholder': ['Start time', 'End time'],
22
+ 'DatePicker.monthBeforeYear': true,
22
23
  'global.selectholder': 'Please select',
23
24
  'global.placeholder': 'Please enter search content',
24
25
  'global.cancel': 'Cancel',
@@ -42,11 +42,13 @@ var InternalOption = function InternalOption(props, ref) {
42
42
  var contentCls = classNames(_defineProperty({}, "".concat(selectOptionPrefixCls, "-option-content"), true));
43
43
  var handleClick = function handleClick(e) {
44
44
  e.preventDefault();
45
+ var newVal = isSelected;
45
46
  if (optionProps.disabled || value === undefined) return;
46
47
  if (isMultiple) {
47
- setSelected(!isSelected);
48
+ newVal = !isSelected;
49
+ setSelected(newVal);
48
50
  }
49
- onChangeSelect && onChangeSelect(value, children, isSelected);
51
+ onChangeSelect && onChangeSelect(value, children, newVal);
50
52
  };
51
53
  var handleOnMouseEnter = function handleOnMouseEnter() {
52
54
  onChangeActiveIndex && onChangeActiveIndex(index);
@@ -831,7 +831,13 @@ var InternalSelect = function InternalSelect(props, ref) {
831
831
  if (!item) return;
832
832
  var key = ((_a = item.props) === null || _a === void 0 ? void 0 : _a.value) || item.value;
833
833
  var label = ((_b = item.props) === null || _b === void 0 ? void 0 : _b.children) || item.label;
834
- handleOption(key, label, true);
834
+ var flag = true;
835
+ if (isMultiple) {
836
+ flag = !(mulOptions === null || mulOptions === void 0 ? void 0 : mulOptions.some(function (item) {
837
+ return item.value === key;
838
+ }));
839
+ }
840
+ handleOption(key, label, flag);
835
841
  if (searchValue) {
836
842
  setActiveIndex(_findIndexInstanceProperty(realChildren).call(realChildren, function (child) {
837
843
  var _a;
@@ -0,0 +1,231 @@
1
+ @icon-prefix-cls: ~'@{kd-prefix}icon';
2
+
3
+ @font-face {
4
+ font-family: "kdicon";
5
+ src: url("kdicon.woff?t=1668600442688") format("woff")
6
+ }
7
+ .@{icon-prefix-cls} {
8
+ font-family: "kdicon" !important;
9
+ font-style:normal;
10
+ -webkit-font-smoothing: antialiased;
11
+ -moz-osx-font-smoothing: grayscale;
12
+ }
13
+ .@{icon-prefix-cls}-add-child:before { content: "\e6c0"; }
14
+ .@{icon-prefix-cls}-add-indentation:before { content: "\e6a7"; }
15
+ .@{icon-prefix-cls}-add-line:before { content: "\e6c5"; }
16
+ .@{icon-prefix-cls}-add-solid:before { content: "\e643"; }
17
+ .@{icon-prefix-cls}-add-word:before { content: "\e6ed"; }
18
+ .@{icon-prefix-cls}-add:before { content: "\e628"; }
19
+ .@{icon-prefix-cls}-address:before { content: "\e6cc"; }
20
+ .@{icon-prefix-cls}-align-center:before { content: "\e69a"; }
21
+ .@{icon-prefix-cls}-align-left:before { content: "\e6af"; }
22
+ .@{icon-prefix-cls}-align-right:before { content: "\e67a"; }
23
+ .@{icon-prefix-cls}-all-border:before { content: "\e677"; }
24
+ .@{icon-prefix-cls}-allowance-workbench:before { content: "\e714"; }
25
+ .@{icon-prefix-cls}-analysis:before { content: "\e6ce"; }
26
+ .@{icon-prefix-cls}-arrow-down-solid:before { content: "\e656"; }
27
+ .@{icon-prefix-cls}-arrow-down:before { content: "\e627"; }
28
+ .@{icon-prefix-cls}-arrow-left-circle-solid:before { content: "\e720"; }
29
+ .@{icon-prefix-cls}-arrow-left-solid:before { content: "\e657"; }
30
+ .@{icon-prefix-cls}-arrow-left:before { content: "\e63f"; }
31
+ .@{icon-prefix-cls}-arrow-right-circle-solid:before { content: "\e71f"; }
32
+ .@{icon-prefix-cls}-arrow-right-solid:before { content: "\e655"; }
33
+ .@{icon-prefix-cls}-arrow-right:before { content: "\e62c"; }
34
+ .@{icon-prefix-cls}-arrow-up-solid:before { content: "\e654"; }
35
+ .@{icon-prefix-cls}-arrow-up:before { content: "\e62b"; }
36
+ .@{icon-prefix-cls}-arrow:before { content: "\e69c"; }
37
+ .@{icon-prefix-cls}-attachment:before { content: "\e694"; }
38
+ .@{icon-prefix-cls}-avatar-default:before { content: "\e717"; }
39
+ .@{icon-prefix-cls}-avatar-head-default:before { content: "\e718"; }
40
+ .@{icon-prefix-cls}-avatar-solid:before { content: "\e711"; }
41
+ .@{icon-prefix-cls}-back:before { content: "\e6cd"; }
42
+ .@{icon-prefix-cls}-bankcard:before { content: "\e705"; }
43
+ .@{icon-prefix-cls}-bellOutlined:before { content: "\e71a"; }
44
+ .@{icon-prefix-cls}-bold-solid:before { content: "\e668"; }
45
+ .@{icon-prefix-cls}-border:before { content: "\e6f9"; }
46
+ .@{icon-prefix-cls}-bottom-border:before { content: "\e704"; }
47
+ .@{icon-prefix-cls}-business-type:before { content: "\e716"; }
48
+ .@{icon-prefix-cls}-cancel:before { content: "\e68f"; }
49
+ .@{icon-prefix-cls}-cell:before { content: "\e692"; }
50
+ .@{icon-prefix-cls}-change:before { content: "\e6e2"; }
51
+ .@{icon-prefix-cls}-chart-display:before { content: "\e710"; }
52
+ .@{icon-prefix-cls}-chart:before { content: "\e6d0"; }
53
+ .@{icon-prefix-cls}-classify:before { content: "\e6d4"; }
54
+ .@{icon-prefix-cls}-close-bold:before { content: "\e647"; }
55
+ .@{icon-prefix-cls}-close-full-screen:before { content: "\e679"; }
56
+ .@{icon-prefix-cls}-close-solid:before { content: "\e644"; }
57
+ .@{icon-prefix-cls}-close:before { content: "\e62f"; }
58
+ .@{icon-prefix-cls}-cn:before { content: "\e6b5"; }
59
+ .@{icon-prefix-cls}-code:before { content: "\e6ca"; }
60
+ .@{icon-prefix-cls}-collect:before { content: "\e6ec"; }
61
+ .@{icon-prefix-cls}-comment:before { content: "\e6bc"; }
62
+ .@{icon-prefix-cls}-communication-solid:before { content: "\e65e"; }
63
+ .@{icon-prefix-cls}-contract:before { content: "\e69f"; }
64
+ .@{icon-prefix-cls}-cooperation:before { content: "\e6fb"; }
65
+ .@{icon-prefix-cls}-copy-code:before { content: "\e6e1"; }
66
+ .@{icon-prefix-cls}-copy:before { content: "\e678"; }
67
+ .@{icon-prefix-cls}-counterclockwise:before { content: "\e6e5"; }
68
+ .@{icon-prefix-cls}-customize:before { content: "\e707"; }
69
+ .@{icon-prefix-cls}-dashboard:before { content: "\e71c"; }
70
+ .@{icon-prefix-cls}-date-selection:before { content: "\e70f"; }
71
+ .@{icon-prefix-cls}-date:before { content: "\e6eb"; }
72
+ .@{icon-prefix-cls}-delete-indentation:before { content: "\e697"; }
73
+ .@{icon-prefix-cls}-delete-line:before { content: "\e68c"; }
74
+ .@{icon-prefix-cls}-delete-solid:before { content: "\e667"; }
75
+ .@{icon-prefix-cls}-delete:before { content: "\e6ee"; }
76
+ .@{icon-prefix-cls}-detail:before { content: "\e6c4"; }
77
+ .@{icon-prefix-cls}-detect:before { content: "\e68e"; }
78
+ .@{icon-prefix-cls}-division-solid:before { content: "\e65a"; }
79
+ .@{icon-prefix-cls}-double-arrow-left:before { content: "\e64a"; }
80
+ .@{icon-prefix-cls}-double-arrow-right:before { content: "\e649"; }
81
+ .@{icon-prefix-cls}-download:before { content: "\e70a"; }
82
+ .@{icon-prefix-cls}-edit-border:before { content: "\e6c8"; }
83
+ .@{icon-prefix-cls}-edit-view:before { content: "\e6c7"; }
84
+ .@{icon-prefix-cls}-edit:before { content: "\e6a6"; }
85
+ .@{icon-prefix-cls}-education:before { content: "\e69d"; }
86
+ .@{icon-prefix-cls}-eliminate-solid:before { content: "\e659"; }
87
+ .@{icon-prefix-cls}-en:before { content: "\e6b6"; }
88
+ .@{icon-prefix-cls}-enlarge:before { content: "\e6d5"; }
89
+ .@{icon-prefix-cls}-equal:before { content: "\e6a3"; }
90
+ .@{icon-prefix-cls}-exclamatory:before { content: "\e64e"; }
91
+ .@{icon-prefix-cls}-expand:before { content: "\e651"; }
92
+ .@{icon-prefix-cls}-experience:before { content: "\e6ff"; }
93
+ .@{icon-prefix-cls}-fail:before { content: "\e6a5"; }
94
+ .@{icon-prefix-cls}-feedback:before { content: "\e6d6"; }
95
+ .@{icon-prefix-cls}-female:before { content: "\e684"; }
96
+ .@{icon-prefix-cls}-filter-solid:before { content: "\e66a"; }
97
+ .@{icon-prefix-cls}-filter-switch:before { content: "\e6b1"; }
98
+ .@{icon-prefix-cls}-filter:before { content: "\e6a0"; }
99
+ .@{icon-prefix-cls}-finish:before { content: "\e6dc"; }
100
+ .@{icon-prefix-cls}-first:before { content: "\e630"; }
101
+ .@{icon-prefix-cls}-fixed-shrink:before { content: "\e693"; }
102
+ .@{icon-prefix-cls}-fixed-solid:before { content: "\e65f"; }
103
+ .@{icon-prefix-cls}-fixed-window:before { content: "\e6d1"; }
104
+ .@{icon-prefix-cls}-fixed:before { content: "\e6e3"; }
105
+ .@{icon-prefix-cls}-fold:before { content: "\e71d"; }
106
+ .@{icon-prefix-cls}-foldmenu:before { content: "\e70e"; }
107
+ .@{icon-prefix-cls}-font-background-solid:before { content: "\e673"; }
108
+ .@{icon-prefix-cls}-font-color-solid:before { content: "\e674"; }
109
+ .@{icon-prefix-cls}-forbid:before { content: "\e69b"; }
110
+ .@{icon-prefix-cls}-git:before { content: "\e6c1"; }
111
+ .@{icon-prefix-cls}-graffiti:before { content: "\e6fe"; }
112
+ .@{icon-prefix-cls}-greater-equal:before { content: "\e6d7"; }
113
+ .@{icon-prefix-cls}-have-attachment:before { content: "\e6a8"; }
114
+ .@{icon-prefix-cls}-hide:before { content: "\e6a9"; }
115
+ .@{icon-prefix-cls}-hyperlink:before { content: "\e6c9"; }
116
+ .@{icon-prefix-cls}-image:before { content: "\e687"; }
117
+ .@{icon-prefix-cls}-import:before { content: "\e6cb"; }
118
+ .@{icon-prefix-cls}-international:before { content: "\e719"; }
119
+ .@{icon-prefix-cls}-job-info:before { content: "\e68d"; }
120
+ .@{icon-prefix-cls}-last:before { content: "\e631"; }
121
+ .@{icon-prefix-cls}-left-border:before { content: "\e708"; }
122
+ .@{icon-prefix-cls}-left-extension:before { content: "\e6ae"; }
123
+ .@{icon-prefix-cls}-left-unfold-solid:before { content: "\e675"; }
124
+ .@{icon-prefix-cls}-left-unfold:before { content: "\e709"; }
125
+ .@{icon-prefix-cls}-like:before { content: "\e67f"; }
126
+ .@{icon-prefix-cls}-list:before { content: "\e6e6"; }
127
+ .@{icon-prefix-cls}-little-k:before { content: "\e700"; }
128
+ .@{icon-prefix-cls}-loadding-circle:before { content: "\e645"; }
129
+ .@{icon-prefix-cls}-loadding:before { content: "\e62d"; }
130
+ .@{icon-prefix-cls}-location-solid:before { content: "\e640"; }
131
+ .@{icon-prefix-cls}-location:before { content: "\e695"; }
132
+ .@{icon-prefix-cls}-lock-solid:before { content: "\e66b"; }
133
+ .@{icon-prefix-cls}-lock:before { content: "\e68b"; }
134
+ .@{icon-prefix-cls}-male:before { content: "\e683"; }
135
+ .@{icon-prefix-cls}-material:before { content: "\e6db"; }
136
+ .@{icon-prefix-cls}-medical-report:before { content: "\e703"; }
137
+ .@{icon-prefix-cls}-menu:before { content: "\e6d8"; }
138
+ .@{icon-prefix-cls}-merge-cell:before { content: "\e6f3"; }
139
+ .@{icon-prefix-cls}-more-info-solid:before { content: "\e660"; }
140
+ .@{icon-prefix-cls}-more-info:before { content: "\e6e4"; }
141
+ .@{icon-prefix-cls}-more-item:before { content: "\e6f4"; }
142
+ .@{icon-prefix-cls}-more:before { content: "\e6a1"; }
143
+ .@{icon-prefix-cls}-mosaic-solid:before { content: "\e663"; }
144
+ .@{icon-prefix-cls}-multiply:before { content: "\e65b"; }
145
+ .@{icon-prefix-cls}-my-receipt:before { content: "\e715"; }
146
+ .@{icon-prefix-cls}-no-border:before { content: "\e6f8"; }
147
+ .@{icon-prefix-cls}-not-equal:before { content: "\e6dd"; }
148
+ .@{icon-prefix-cls}-notice:before { content: "\e658"; }
149
+ .@{icon-prefix-cls}-oblique-solid:before { content: "\e66e"; }
150
+ .@{icon-prefix-cls}-operating-element:before { content: "\e6a4"; }
151
+ .@{icon-prefix-cls}-order-facet:before { content: "\e713"; }
152
+ .@{icon-prefix-cls}-order:before { content: "\e6d2"; }
153
+ .@{icon-prefix-cls}-ordered-list:before { content: "\e6fa"; }
154
+ .@{icon-prefix-cls}-person-solid:before { content: "\e669"; }
155
+ .@{icon-prefix-cls}-phone:before { content: "\e6d3"; }
156
+ .@{icon-prefix-cls}-platform:before { content: "\e6f1"; }
157
+ .@{icon-prefix-cls}-preview-view:before { content: "\e6ba"; }
158
+ .@{icon-prefix-cls}-preview:before { content: "\e6ac"; }
159
+ .@{icon-prefix-cls}-print:before { content: "\e690"; }
160
+ .@{icon-prefix-cls}-processing-solid:before { content: "\e665"; }
161
+ .@{icon-prefix-cls}-project:before { content: "\e681"; }
162
+ .@{icon-prefix-cls}-push-down:before { content: "\e702"; }
163
+ .@{icon-prefix-cls}-put-bottom:before { content: "\e6b4"; }
164
+ .@{icon-prefix-cls}-put-off:before { content: "\e685"; }
165
+ .@{icon-prefix-cls}-put-on:before { content: "\e6bd"; }
166
+ .@{icon-prefix-cls}-put-top:before { content: "\e6b3"; }
167
+ .@{icon-prefix-cls}-qrcode:before { content: "\e6df"; }
168
+ .@{icon-prefix-cls}-qualification-info:before { content: "\e6b2"; }
169
+ .@{icon-prefix-cls}-quit:before { content: "\e6fc"; }
170
+ .@{icon-prefix-cls}-quote-solid:before { content: "\e66d"; }
171
+ .@{icon-prefix-cls}-reduce:before { content: "\e696"; }
172
+ .@{icon-prefix-cls}-reduction:before { content: "\e6f2"; }
173
+ .@{icon-prefix-cls}-refresh-solid:before { content: "\e642"; }
174
+ .@{icon-prefix-cls}-refresh:before { content: "\e629"; }
175
+ .@{icon-prefix-cls}-report-form:before { content: "\e712"; }
176
+ .@{icon-prefix-cls}-reset:before { content: "\e6b9"; }
177
+ .@{icon-prefix-cls}-resign-report:before { content: "\e699"; }
178
+ .@{icon-prefix-cls}-return:before { content: "\e6e0"; }
179
+ .@{icon-prefix-cls}-right-bold:before { content: "\e648"; }
180
+ .@{icon-prefix-cls}-right-border:before { content: "\e67c"; }
181
+ .@{icon-prefix-cls}-right-extension:before { content: "\e6aa"; }
182
+ .@{icon-prefix-cls}-right-solid:before { content: "\e641"; }
183
+ .@{icon-prefix-cls}-right-unfold-solid:before { content: "\e672"; }
184
+ .@{icon-prefix-cls}-right-unfold:before { content: "\e6ab"; }
185
+ .@{icon-prefix-cls}-right:before { content: "\e62e"; }
186
+ .@{icon-prefix-cls}-rough-border:before { content: "\e6de"; }
187
+ .@{icon-prefix-cls}-save:before { content: "\e6c2"; }
188
+ .@{icon-prefix-cls}-scanning:before { content: "\e67d"; }
189
+ .@{icon-prefix-cls}-search-border:before { content: "\e6da"; }
190
+ .@{icon-prefix-cls}-search:before { content: "\e62a"; }
191
+ .@{icon-prefix-cls}-setting:before { content: "\e652"; }
192
+ .@{icon-prefix-cls}-share:before { content: "\e6cf"; }
193
+ .@{icon-prefix-cls}-shoppingcart:before { content: "\e6bf"; }
194
+ .@{icon-prefix-cls}-shrink:before { content: "\e6fd"; }
195
+ .@{icon-prefix-cls}-shutdown:before { content: "\e686"; }
196
+ .@{icon-prefix-cls}-sigma:before { content: "\e71b"; }
197
+ .@{icon-prefix-cls}-spin:before { content: "\e6f7"; }
198
+ .@{icon-prefix-cls}-split:before { content: "\e6c3"; }
199
+ .@{icon-prefix-cls}-star:before { content: "\e653"; }
200
+ .@{icon-prefix-cls}-stop:before { content: "\e691"; }
201
+ .@{icon-prefix-cls}-strike-solid:before { content: "\e664"; }
202
+ .@{icon-prefix-cls}-sun-solid:before { content: "\e670"; }
203
+ .@{icon-prefix-cls}-switch-down:before { content: "\e698"; }
204
+ .@{icon-prefix-cls}-switch-up:before { content: "\e680"; }
205
+ .@{icon-prefix-cls}-switch:before { content: "\e6e7"; }
206
+ .@{icon-prefix-cls}-table-setting:before { content: "\e6c6"; }
207
+ .@{icon-prefix-cls}-task-process:before { content: "\e6ea"; }
208
+ .@{icon-prefix-cls}-timezone-solid:before { content: "\e662"; }
209
+ .@{icon-prefix-cls}-tips-solid:before { content: "\e66c"; }
210
+ .@{icon-prefix-cls}-tips:before { content: "\e650"; }
211
+ .@{icon-prefix-cls}-title-solid:before { content: "\e65c"; }
212
+ .@{icon-prefix-cls}-top-border:before { content: "\e6ef"; }
213
+ .@{icon-prefix-cls}-two-window:before { content: "\e6f6"; }
214
+ .@{icon-prefix-cls}-underline-solid:before { content: "\e671"; }
215
+ .@{icon-prefix-cls}-unfold-all:before { content: "\e6ad"; }
216
+ .@{icon-prefix-cls}-unfold:before { content: "\e71e"; }
217
+ .@{icon-prefix-cls}-unfoldmenu:before { content: "\e70d"; }
218
+ .@{icon-prefix-cls}-unlock-solid:before { content: "\e666"; }
219
+ .@{icon-prefix-cls}-unlock:before { content: "\e69e"; }
220
+ .@{icon-prefix-cls}-upload-cloud:before { content: "\e632"; }
221
+ .@{icon-prefix-cls}-upload:before { content: "\e70b"; }
222
+ .@{icon-prefix-cls}-user-info:before { content: "\e682"; }
223
+ .@{icon-prefix-cls}-vertical-center:before { content: "\e6f5"; }
224
+ .@{icon-prefix-cls}-voice:before { content: "\e6d9"; }
225
+ .@{icon-prefix-cls}-waiting:before { content: "\e64b"; }
226
+ .@{icon-prefix-cls}-warning-solid:before { content: "\e64c"; }
227
+ .@{icon-prefix-cls}-warning:before { content: "\e64d"; }
228
+ .@{icon-prefix-cls}-workbench:before { content: "\e64f"; }
229
+ .@{icon-prefix-cls}-wrap:before { content: "\e6b0"; }
230
+ .@{icon-prefix-cls}-yunzhijia:before { content: "\e706"; }
231
+ .@{icon-prefix-cls}-zoom:before { content: "\e70c"; }