dtable-ui-component 7.0.1 → 7.0.2

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 (32) hide show
  1. package/lib/AsyncUserSelect/index.css +38 -28
  2. package/lib/AsyncUserSelect/index.js +32 -19
  3. package/lib/DTableCustomizeSearchInput/index.css +75 -0
  4. package/lib/DTableCustomizeSearchInput/index.js +133 -0
  5. package/lib/DTableCustomizeSelect/index.css +120 -42
  6. package/lib/DTableCustomizeSelect/index.js +12 -6
  7. package/lib/DTableFiltersPopover/utils/filter-item-utils.js +7 -19
  8. package/lib/DTableFiltersPopover/widgets/collaborator-filter/index.js +5 -9
  9. package/lib/DTableFiltersPopover/widgets/filter-item.js +15 -7
  10. package/lib/DTableFiltersPopover/widgets/filter-list/index.css +3 -3
  11. package/lib/DTableSelect/dtable-select-label.css +8 -3
  12. package/lib/DTableSelect/dtable-select-label.js +1 -1
  13. package/lib/DTableSelect/index.js +3 -3
  14. package/lib/DTableSelect/select-dropdown-indicator/index.css +16 -0
  15. package/lib/DTableSelect/select-dropdown-indicator/index.js +24 -0
  16. package/lib/DTableSelect/user-select.css +7 -46
  17. package/lib/DTableSelect/utils.js +170 -79
  18. package/lib/SelectOptionGroup/KeyCodes.js +96 -4
  19. package/lib/SelectOptionGroup/index.css +44 -54
  20. package/lib/SelectOptionGroup/index.js +35 -18
  21. package/lib/SelectOptionGroup/option.js +16 -4
  22. package/lib/assets/icons/close.svg +1 -0
  23. package/lib/assets/icons/down.svg +3 -0
  24. package/lib/index.js +3 -10
  25. package/package.json +1 -1
  26. package/lib/DTableCustomizeCollaboratorSelect/index.css +0 -86
  27. package/lib/DTableCustomizeCollaboratorSelect/index.js +0 -158
  28. package/lib/DTableGroupSelect/index.css +0 -96
  29. package/lib/DTableGroupSelect/index.js +0 -131
  30. package/lib/DTableGroupSelect/option.js +0 -42
  31. package/lib/DTableGroupSelect/select-option-group.css +0 -54
  32. package/lib/DTableGroupSelect/select-option-group.js +0 -227
@@ -4,116 +4,158 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
4
4
  Object.defineProperty(exports, "__esModule", {
5
5
  value: true
6
6
  });
7
- exports.UserSelectStyle = exports.Option = exports.MenuSelectStyle = exports.MenuList = exports.DropdownIndicator = exports.ClearIndicator = void 0;
7
+ exports.processOptionsWithClear = exports.handleSelectChange = exports.createHandleChange = exports.Option = exports.MenuSelectStyle = exports.MenuList = exports.DropdownIndicator = exports.ClearIndicator = void 0;
8
8
  var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
9
9
  var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectSpread2"));
10
10
  var _react = _interopRequireDefault(require("react"));
11
11
  var _reactSelect = require("react-select");
12
+ require("./dtable-select-label.css");
12
13
  var _jsxRuntime = require("react/jsx-runtime");
13
14
  const _excluded = ["innerProps"]; // DtableSelect is based on seatable-ui.css, so use the following content to override the default react-select style
14
15
  const DEFAULT_CONTROL_STYLE = {
15
- border: '1px solid rgba(0, 40, 100, 0.12) !important'
16
+ fontSize: '14px',
17
+ padding: '0 4px 0 8px',
18
+ border: '1px solid var(--bs-border-color) !important',
19
+ boxShadow: 'none',
20
+ backgroundColor: 'var(--bs-popover-bg)',
21
+ borderRadius: '4px',
22
+ outline: '0'
16
23
  };
17
- const FOCUS_CONTROL_STYLE = {
24
+ const DISABLED_CONTROL_STYLE = {
18
25
  fontSize: '14px',
19
- backgroundColor: '#ffffff',
20
- borderColor: '#1991eb',
26
+ padding: '0 4px 0 8px',
27
+ border: '1px solid rgba(0, 40, 100, 0.12)',
28
+ boxShadow: 'none',
29
+ backgroundColor: 'var(--bs-bg-color)',
30
+ borderRadius: '4px',
21
31
  outline: '0',
22
- boxShadow: '0 0 0 2px rgba(70, 127, 207, 0.25)'
32
+ cursor: 'default',
33
+ opacity: 0.65
34
+ };
35
+ const FOCUS_CONTROL_STYLE = {
36
+ fontSize: '14px',
37
+ padding: '0 4px 0 8px',
38
+ border: '1px solid var(--bs-bg-border-color)',
39
+ boxShadow: 'none',
40
+ backgroundColor: 'var(--bs-popover-bg)',
41
+ borderRadius: '4px',
42
+ outline: '0'
43
+ };
44
+ const HEADER_ICON_STYLE = {
45
+ margin: '0 0.5rem 0 0 !important',
46
+ padding: 0
23
47
  };
24
- const noneCallback = () => ({
25
- display: 'none'
26
- });
27
48
  const controlCallback = (provided, state) => {
28
49
  const isDisabled = state.isDisabled,
29
50
  isFocused = state.isFocused;
30
- if (isFocused && !isDisabled) {
31
- return (0, _objectSpread2.default)((0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), FOCUS_CONTROL_STYLE), {}, {
32
- '&:hover': (0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), FOCUS_CONTROL_STYLE)
33
- });
51
+ const headerIconStyle = {
52
+ '.header-icon': HEADER_ICON_STYLE,
53
+ '.header-icon .dtable-font': {
54
+ color: 'var(--bs-icon-secondary-color) !important'
55
+ }
56
+ };
57
+ if (isDisabled) {
58
+ return (0, _objectSpread2.default)((0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), DISABLED_CONTROL_STYLE), {}, {
59
+ ':active': {
60
+ border: '1px solid var(--bs-bg-border-color)'
61
+ }
62
+ }, headerIconStyle);
63
+ }
64
+ if (isFocused) {
65
+ return (0, _objectSpread2.default)((0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), FOCUS_CONTROL_STYLE), headerIconStyle);
34
66
  }
35
67
  return (0, _objectSpread2.default)((0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), {}, {
36
68
  fontSize: '14px',
37
69
  lineHeight: '1.5',
38
70
  cursor: 'pointer'
39
- }, DEFAULT_CONTROL_STYLE), {}, {
40
- '&:hover': (0, _objectSpread2.default)({}, DEFAULT_CONTROL_STYLE)
41
- });
71
+ }, DEFAULT_CONTROL_STYLE), headerIconStyle);
42
72
  };
43
- const UserSelectStyle = exports.UserSelectStyle = {
73
+ const MenuSelectStyle = exports.MenuSelectStyle = {
74
+ menu: base => {
75
+ return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, base), {}, {
76
+ backgroundColor: 'var(--bs-popover-bg)',
77
+ border: '1px solid var(--bs-border-secondary-color)',
78
+ borderRadius: '4px',
79
+ boxShadow: 'var(--bs-border-secondary-shadow)',
80
+ marginTop: '4px',
81
+ marginBottom: 0
82
+ });
83
+ },
84
+ menuList: provided => (0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), {}, {
85
+ padding: '8px'
86
+ }),
44
87
  option: (provided, state) => {
45
- const isDisabled = state.isDisabled,
46
- isFocused = state.isFocused;
88
+ const isDisabled = state.isDisabled;
47
89
  return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), {}, {
90
+ color: 'var(--bs-body-color)',
91
+ borderRadius: '4px',
92
+ minHeight: '32px',
93
+ padding: '8px',
48
94
  cursor: isDisabled ? 'default' : 'pointer',
49
- backgroundColor: isFocused ? '#f5f5f5' : '#fff'
95
+ backgroundColor: 'var(--bs-popover-bg)',
96
+ overflow: 'hidden',
97
+ whiteSpace: 'nowrap',
98
+ textOverflow: 'ellipsis',
99
+ ':hover': {
100
+ backgroundColor: 'var(--bs-btn-background-hover)'
101
+ },
102
+ '.header-icon': HEADER_ICON_STYLE
50
103
  });
51
104
  },
52
105
  control: controlCallback,
53
- indicatorSeparator: noneCallback,
54
- dropdownIndicator: noneCallback,
55
- clearIndicator: noneCallback,
56
- multiValue: provided => {
106
+ menuPortal: base => (0, _objectSpread2.default)((0, _objectSpread2.default)({}, base), {}, {
107
+ zIndex: 9999,
108
+ backgroundColor: 'var(--bs-popover-bg)',
109
+ color: 'var(--bs-body-color)',
110
+ borderColor: 'var(--bs-border-secondary-color)'
111
+ }),
112
+ singleValue: provided => {
57
113
  return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), {}, {
58
- display: 'inline-flex',
59
- alignItems: 'center',
60
- background: '#eaeaea',
61
- borderRadius: '10px',
62
- margin: '0 10px 0 0',
63
- padding: '0 0 0 2px'
114
+ color: 'var(--bs-body-color)',
115
+ margin: 0
64
116
  });
65
117
  },
66
- multiValueLabel: provided => {
118
+ multiValue: provided => {
67
119
  return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), {}, {
68
- padding: '0px'
120
+ color: 'var(--bs-body-color)',
121
+ margin: 0
69
122
  });
70
123
  },
71
- multiValueRemove: provided => {
124
+ multiValueRemove: styles => (0, _objectSpread2.default)((0, _objectSpread2.default)({}, styles), {}, {
125
+ '.dtable-font': {
126
+ color: 'var(--bs-icon-color)'
127
+ },
128
+ '.dtable-font:hover': {
129
+ backgroundColor: 'transparent',
130
+ color: 'var(--bs-icon-color)'
131
+ }
132
+ }),
133
+ input: styles => (0, _objectSpread2.default)((0, _objectSpread2.default)({}, styles), {}, {
134
+ color: 'var(--bs-body-color)'
135
+ }),
136
+ placeholder: (provided, state) => {
137
+ const isDisabled = state.isDisabled;
72
138
  return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), {}, {
73
- color: '#666',
74
- ':hover': {
75
- backgroundColor: 'transparent',
76
- color: '#555555'
77
- }
139
+ color: 'var(--bs-bg-placeholder-color)',
140
+ opacity: isDisabled ? 0.65 : 1,
141
+ margin: 0
78
142
  });
79
143
  },
80
- singleValue: provided => {
81
- return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), {}, {
82
- display: 'inline-flex',
83
- alignItems: 'center',
84
- background: '#eaeaea',
85
- borderRadius: '10px',
86
- margin: '0',
87
- padding: '0 2px',
88
- width: 'fit-content'
89
- });
90
- }
91
- };
92
- const MenuSelectStyle = exports.MenuSelectStyle = {
93
- option: (provided, state) => {
94
- const isDisabled = state.isDisabled,
95
- isFocused = state.isFocused;
144
+ indicatorSeparator: (styles, state) => {
145
+ return {
146
+ 'display': 'none'
147
+ };
148
+ },
149
+ dropdownIndicator: (provided, state) => {
150
+ const isDisabled = state.isDisabled;
96
151
  return (0, _objectSpread2.default)((0, _objectSpread2.default)({}, provided), {}, {
97
- fontSize: '13px',
98
- color: '#212529',
99
- cursor: isDisabled ? 'default' : 'pointer',
100
- backgroundColor: isFocused ? '#f5f5f5' : '#fff',
101
- ':active': {
102
- backgroundColor: '#f5f5f5'
103
- },
104
- '.header-icon .dtable-font': {
105
- color: '#aaa'
106
- },
107
- '.header-icon .multicolor-icon': {
108
- color: '#aaa'
152
+ paddingRight: '12px',
153
+ '.dtable-font': {
154
+ color: 'var(--bs-icon-color) !important',
155
+ opacity: isDisabled ? 0.65 : 1
109
156
  }
110
157
  });
111
- },
112
- control: controlCallback,
113
- menuPortal: base => (0, _objectSpread2.default)((0, _objectSpread2.default)({}, base), {}, {
114
- zIndex: 9999
115
- }),
116
- indicatorSeparator: noneCallback
158
+ }
117
159
  };
118
160
  const DropdownIndicator = props => {
119
161
  return _reactSelect.components.DropdownIndicator && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactSelect.components.DropdownIndicator, (0, _objectSpread2.default)((0, _objectSpread2.default)({}, props), {}, {
@@ -121,7 +163,9 @@ const DropdownIndicator = props => {
121
163
  className: "dtable-font dtable-icon-down3",
122
164
  style: {
123
165
  fontSize: '12px',
124
- marginLeft: '-2px'
166
+ marginLeft: '-2px',
167
+ color: 'var(--bs-icon-color)',
168
+ paddingRight: 0
125
169
  }
126
170
  })
127
171
  }));
@@ -142,7 +186,8 @@ const ClearIndicator = _ref => {
142
186
  className: "dtable-font dtable-icon-fork-number",
143
187
  style: {
144
188
  fontSize: '12px',
145
- marginRight: '-2px'
189
+ marginRight: '-2px',
190
+ color: 'var(--bs-icon-color)'
146
191
  }
147
192
  })
148
193
  }));
@@ -157,9 +202,55 @@ const MenuList = props => /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
157
202
  });
158
203
  exports.MenuList = MenuList;
159
204
  const Option = props => {
160
- return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
161
- style: props.data.style,
162
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactSelect.components.Option, (0, _objectSpread2.default)({}, props))
163
- });
205
+ const isSelected = props.isSelected,
206
+ label = props.label;
207
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactSelect.components.Option, (0, _objectSpread2.default)((0, _objectSpread2.default)({}, props), {}, {
208
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
209
+ style: {
210
+ display: 'flex',
211
+ alignItems: 'center',
212
+ justifyContent: 'space-between',
213
+ width: '100%',
214
+ whiteSpace: 'pre-line'
215
+ },
216
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
217
+ className: "seatable-option",
218
+ children: label
219
+ }), isSelected && /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
220
+ className: "dtable-font dtable-icon-check",
221
+ style: {
222
+ fontSize: '14px',
223
+ color: 'var(--bs-icon-color)',
224
+ paddingLeft: '16px'
225
+ }
226
+ })]
227
+ })
228
+ }));
229
+ };
230
+ exports.Option = Option;
231
+ const processOptionsWithClear = (options, isClearable) => {
232
+ if (isClearable && options && options.length > 0) {
233
+ return [{
234
+ label: '--',
235
+ value: '__clear__'
236
+ }, ...options];
237
+ }
238
+ return options;
239
+ };
240
+ exports.processOptionsWithClear = processOptionsWithClear;
241
+ const handleSelectChange = (selectedOption, actionMeta, onChangeCallback) => {
242
+ if (selectedOption && selectedOption.value === '__clear__') {
243
+ onChangeCallback(null, (0, _objectSpread2.default)((0, _objectSpread2.default)({}, actionMeta), {}, {
244
+ action: 'clear'
245
+ }));
246
+ } else {
247
+ onChangeCallback(selectedOption, actionMeta);
248
+ }
249
+ };
250
+ exports.handleSelectChange = handleSelectChange;
251
+ const createHandleChange = onChange => {
252
+ return (selectedOption, actionMeta) => {
253
+ handleSelectChange(selectedOption, actionMeta, onChange);
254
+ };
164
255
  };
165
- exports.Option = Option;
256
+ exports.createHandleChange = createHandleChange;
@@ -5,13 +5,105 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
  const KeyCodes = {
8
+ Backspace: 8,
9
+ Tab: 9,
10
+ Enter: 13,
11
+ Shift: 16,
12
+ Ctrl: 17,
13
+ Alt: 18,
14
+ PauseBreak: 19,
15
+ CapsLock: 20,
16
+ Escape: 27,
17
+ Esc: 27,
18
+ Space: 32,
19
+ PageUp: 33,
20
+ PageDown: 34,
21
+ End: 35,
22
+ Home: 36,
8
23
  LeftArrow: 37,
9
24
  UpArrow: 38,
10
25
  RightArrow: 39,
11
26
  DownArrow: 40,
12
- Enter: 13,
13
- Tab: 9,
14
- Escape: 27,
15
- Esc: 27
27
+ Insert: 45,
28
+ Delete: 46,
29
+ 0: 48,
30
+ 1: 49,
31
+ 2: 50,
32
+ 3: 51,
33
+ 4: 52,
34
+ 5: 53,
35
+ 6: 54,
36
+ 7: 55,
37
+ 8: 56,
38
+ 9: 57,
39
+ a: 65,
40
+ b: 66,
41
+ c: 67,
42
+ d: 68,
43
+ e: 69,
44
+ f: 70,
45
+ g: 71,
46
+ h: 72,
47
+ i: 73,
48
+ j: 74,
49
+ k: 75,
50
+ l: 76,
51
+ m: 77,
52
+ n: 78,
53
+ o: 79,
54
+ p: 80,
55
+ q: 81,
56
+ r: 82,
57
+ s: 83,
58
+ t: 84,
59
+ u: 85,
60
+ v: 86,
61
+ w: 87,
62
+ x: 88,
63
+ y: 89,
64
+ z: 90,
65
+ LeftWindowKey: 91,
66
+ RightWindowKey: 92,
67
+ SelectKey: 93,
68
+ NumPad0: 96,
69
+ NumPad1: 97,
70
+ NumPad2: 98,
71
+ NumPad3: 99,
72
+ NumPad4: 100,
73
+ NumPad5: 101,
74
+ NumPad6: 102,
75
+ NumPad7: 103,
76
+ NumPad8: 104,
77
+ NumPad9: 105,
78
+ Multiply: 106,
79
+ Add: 107,
80
+ Subtract: 109,
81
+ DecimalPoint: 110,
82
+ Divide: 111,
83
+ F1: 112,
84
+ F2: 113,
85
+ F3: 114,
86
+ F4: 115,
87
+ F5: 116,
88
+ F6: 117,
89
+ F7: 118,
90
+ F8: 119,
91
+ F9: 120,
92
+ F10: 121,
93
+ F12: 123,
94
+ NumLock: 144,
95
+ ScrollLock: 145,
96
+ SemiColon: 186,
97
+ EqualSign: 187,
98
+ Comma: 188,
99
+ Dash: 189,
100
+ Period: 190,
101
+ ForwardSlash: 191,
102
+ GraveAccent: 192,
103
+ OpenBracket: 219,
104
+ BackSlash: 220,
105
+ CloseBracket: 221,
106
+ SingleQuote: 222,
107
+ ChineseInputMethod: 229
16
108
  };
17
109
  var _default = exports.default = KeyCodes;
@@ -1,12 +1,10 @@
1
- .option-group {
2
- display: flex;
3
- flex-direction: column;
1
+ .seatable-option-group {
4
2
  position: absolute;
5
3
  left: 0;
6
4
  min-height: 60px;
7
5
  min-width: 100%;
8
6
  max-width: 15rem;
9
- padding: 0.5rem 0;
7
+ padding-top: 0;
10
8
  box-shadow: var(--bs-border-secondary-shadow);
11
9
  background: #fff;
12
10
  border: 1px solid var(--bs-border-secondary-color);
@@ -14,34 +12,33 @@
14
12
  z-index: 10001;
15
13
  }
16
14
 
17
- .option-group .option-group-search {
15
+ .seatable-option-group .seatable-select-search {
18
16
  width: 100%;
19
17
  min-width: 170px;
20
- padding: 0 10px 6px;
21
- }
22
-
23
- .option-group-search .form-control {
24
- height: 31px;
18
+ position: relative;
25
19
  }
26
20
 
27
- .option-group .none-search-result {
21
+ .seatable-option-group .none-search-result {
28
22
  height: 100px;
29
23
  width: 100%;
30
- padding: 10px;
31
- color: #666666;
24
+ padding: 8px;
25
+ color: var(--bs-icon-color);
32
26
  }
33
27
 
34
- .option-group .option-group-content {
35
- flex: 1;
28
+ .seatable-option-group .seatable-option-group-content {
36
29
  max-height: 252px;
37
30
  overflow-y: auto;
31
+ padding: 8px;
38
32
  }
39
33
 
40
- .option {
41
- display: block;
34
+ .seatable-select-option {
35
+ position: relative;
36
+ display: flex;
37
+ justify-content: space-between;
38
+ align-items: center;
42
39
  width: 100%;
43
40
  line-height: 24px;
44
- padding: 0.25rem 10px;
41
+ padding: 0.25rem 8px;
45
42
  clear: both;
46
43
  font-weight: 400;
47
44
  text-align: inherit;
@@ -50,64 +47,57 @@
50
47
  overflow: hidden;
51
48
  text-overflow: ellipsis;
52
49
  white-space: nowrap;
50
+ border-radius: 4px;
51
+ height: 32px;
53
52
  }
54
53
 
55
- .option.option-active {
56
- background-color: #20a0ff;
57
- color: #fff;
54
+ .seatable-select-option.seatable-select-option-active {
58
55
  cursor: pointer;
56
+ background-color: var(--bs-btn-background-hover);
59
57
  }
60
58
 
61
- .option:hover .header-icon .dtable-font,
62
- .option:hover .header-icon .multicolor-icon,
63
- .option.option-active .select-option-name {
64
- color: #fff;
65
- }
66
-
67
- .option.option-active .header-icon .dtable-font,
68
- .option.option-active .header-icon .multicolor-icon {
69
- color: #fff;
70
- }
71
-
72
- .option:not(.option-active):hover .header-icon .dtable-font,
73
- .option:not(.option-active):hover .header-icon .multicolor-icon {
74
- color: #aaa;
59
+ .seatable-select-option .select-option-name .multiple-select-option {
60
+ margin: 0;
75
61
  }
76
62
 
77
- .option .select-option-name .single-select-option {
78
- margin: 0 0 0 12px;
63
+ .seatable-option-group .dtable-icon-check {
64
+ color: var(--bs-icon-color);
79
65
  }
80
66
 
81
- .option .select-option-name .multiple-select-option {
82
- margin: 0;
67
+ .select-label {
68
+ width: 100%;
83
69
  }
84
70
 
85
- .option-group-dtable-ui-single-select-selector .select-option-name,
86
- .option-group-dtable-ui-multiple-select-selector .multiple-option-name {
71
+ .seatable-option-group-selector-multiple-select .select-label,
72
+ .seatable-option-group-selector-single-select .select-option-name,
73
+ .seatable-option-group-selector-multiple-select .multiple-option-name,
74
+ .selector-group-select .group-option-name {
87
75
  display: flex;
88
76
  align-items: center;
89
77
  justify-content: space-between;
78
+ width: 100%;
90
79
  }
91
80
 
92
- .option-group-dtable-ui-multiple-select-selector .multiple-check-icon {
81
+ .seatable-option-group-selector-multiple-select .multiple-check-icon,
82
+ .selector-group-select .group-check-icon {
93
83
  display: inline-flex;
94
- width: 20px;
95
84
  text-align: center;
85
+ color: var(--bs-icon-color);
96
86
  }
97
87
 
98
- .option-group-dtable-ui-multiple-select-selector .multiple-check-icon .dtable-icon-check-mark {
99
- font-size: 12px;
100
- color: #798d99;
88
+ .selector-group-select .multiple-check-icon .dtable-icon-check,
89
+ .seatable-option-group-selector-multiple-select .multiple-check-icon .dtable-icon-check,
90
+ .selector-group-select .group-check-icon .dtable-icon-check {
91
+ font-size: 14px;
101
92
  }
102
93
 
103
- .option-group-dtable-ui-single-select-selector .option:hover,
104
- .option-group-dtable-ui-single-select-selector .option.option-active,
105
- .option-group-dtable-ui-multiple-select-selector .option:hover,
106
- .option-group-dtable-ui-multiple-select-selector .option.option-active {
107
- background-color: #f5f5f5;
94
+ .selector-group-select .seatable-select-option:hover,
95
+ .selector-group-select .seatable-select-option.seatable-select-option-active {
96
+ background-color: var(--bs-btn-background-hover);
108
97
  }
109
98
 
110
- .option-group-selector-single-select .option.option-active .select-option-name,
111
- .option-group-selector-multiple-select .option.option-active .select-option-name {
112
- color: #212529;
99
+ .select-label .header-icon {
100
+ display: inline-block;
101
+ padding: 0 .5rem 0 0 !important;
102
+ margin-left: 0 !important;
113
103
  }