@gingkoo/pandora-metabase 1.0.118 → 1.0.119
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/lib/cjs/common/Portal/index.js +0 -2
- package/lib/cjs/common/SplitView/index.d.ts +0 -4
- package/lib/cjs/common/SplitView/index.js +0 -10
- package/lib/cjs/components/dialog/custom-column/config.js +4 -48
- package/lib/cjs/components/dialog/custom-column/expression-editor.js +3 -14
- package/lib/cjs/components/dialog/custom-column/expressions/suggest.d.ts +2 -34
- package/lib/cjs/components/dialog/custom-column/expressions/suggest.js +2 -43
- package/lib/cjs/components/dialog/custom-column/expressions/tokenizer.js +8 -65
- package/lib/cjs/components/dialog/custom-column/index.js +2 -4
- package/lib/cjs/components/dialog/custom-column/tokenized-expression.js +2 -3
- package/lib/cjs/components/dialog/custom-column/tokenizedI-input.js +1 -1
- package/lib/cjs/components/dialog/custom-editor/index.js +2 -7
- package/lib/cjs/components/dialog/diff-viewer/index copy.js +1 -16
- package/lib/cjs/components/dialog/expression/date-format-picker.js +2 -20
- package/lib/cjs/components/dialog/expression/date-format.js +2 -8
- package/lib/cjs/components/dialog/expression/index.d.ts +0 -3
- package/lib/cjs/components/dialog/expression/index.js +2 -83
- package/lib/cjs/components/dialog/formula/index.js +1 -30
- package/lib/cjs/components/dialog/formula/utils.js +2 -10
- package/lib/cjs/components/dialog/formula-list/CaseWhenGroup.d.ts +19 -0
- package/lib/cjs/components/dialog/formula-list/CaseWhenGroup.js +109 -0
- package/lib/cjs/components/dialog/formula-list/LogicGroup.d.ts +9 -0
- package/lib/cjs/components/dialog/formula-list/LogicGroup.js +43 -0
- package/lib/cjs/components/dialog/formula-list/index.d.ts +3 -0
- package/lib/cjs/components/dialog/formula-list/index.js +967 -503
- package/lib/cjs/components/dialog/formula-list/index.less +724 -0
- package/lib/cjs/components/dialog/formula-list/utils.d.ts +0 -7
- package/lib/cjs/components/dialog/formula-list/utils.js +117 -113
- package/lib/cjs/components/dialog/select-column/index.d.ts +0 -6
- package/lib/cjs/components/dialog/select-column/index.js +4 -15
- package/lib/cjs/components/dialog/select-column-multiple/index.d.ts +0 -8
- package/lib/cjs/components/dialog/select-column-multiple/index.js +6 -45
- package/lib/cjs/components/dialog/select-join/index.d.ts +0 -5
- package/lib/cjs/components/dialog/select-join/index.js +0 -6
- package/lib/cjs/components/dialog/select-join-column/index.d.ts +0 -8
- package/lib/cjs/components/dialog/select-join-column/index.js +7 -21
- package/lib/cjs/components/dialog/select-join-column-multiple/index.d.ts +0 -8
- package/lib/cjs/components/dialog/select-join-column-multiple/index.js +5 -35
- package/lib/cjs/components/dialog/select-permission-table/index.d.ts +0 -5
- package/lib/cjs/components/dialog/select-permission-table/index.js +0 -6
- package/lib/cjs/components/dialog/select-summarize/index.d.ts +3 -3
- package/lib/cjs/components/dialog/select-summarize/index.js +105 -18
- package/lib/cjs/components/dialog/select-summarize/index.less +23 -0
- package/lib/cjs/components/dialog/select-table/index.d.ts +0 -6
- package/lib/cjs/components/dialog/select-table/index.js +1 -9
- package/lib/cjs/components/metabase/index.js +72 -86
- package/lib/cjs/components/metabase/index.less +7 -7
- package/lib/cjs/components/modules/components/Wrapper.js +1 -1
- package/lib/cjs/components/modules/components/header.js +2 -2
- package/lib/cjs/components/modules/components/meta-icon.d.ts +0 -3
- package/lib/cjs/components/modules/components/meta-icon.js +2 -47
- package/lib/cjs/components/modules/custom-column.js +3 -29
- package/lib/cjs/components/modules/enum/filter-enum.js +9 -88
- package/lib/cjs/components/modules/filter.js +2 -20
- package/lib/cjs/components/modules/index.d.ts +4 -2
- package/lib/cjs/components/modules/index.js +24 -1
- package/lib/cjs/components/modules/join-data.js +13 -291
- package/lib/cjs/components/modules/row-limit.js +0 -1
- package/lib/cjs/components/modules/sort.js +1 -61
- package/lib/cjs/components/modules/summarize/group-by.d.ts +0 -5
- package/lib/cjs/components/modules/summarize/group-by.js +231 -76
- package/lib/cjs/components/modules/summarize/select-index.js +96 -46
- package/lib/cjs/components/modules/table-data.js +11 -64
- package/lib/cjs/components/popup.js +26 -32
- package/lib/cjs/hooks/patch.d.ts +1 -0
- package/lib/cjs/hooks/patch.js +104 -6
- package/lib/cjs/hooks/patch2.js +3 -165
- package/lib/cjs/hooks/use-provider.js +0 -3
- package/lib/cjs/hooks/use-state.js +55 -135
- package/lib/cjs/index.js +0 -15
- package/lib/cjs/locale/en.js +5 -0
- package/lib/cjs/locale/index.js +1 -4
- package/lib/cjs/locale/zh.js +5 -0
- package/lib/cjs/sql-formula.js +0 -1
- package/lib/cjs/store/enum.d.ts +6 -6
- package/lib/cjs/store/enum.js +0 -13
- package/lib/cjs/store/helper.d.ts +2 -1
- package/lib/cjs/store/helper.js +15 -225
- package/lib/cjs/store/types.d.ts +45 -67
- package/lib/cjs/store/types.js +3 -49
- package/lib/cjs/types.d.ts +1 -0
- package/lib/cjs/utils/cookies.js +0 -3
- package/lib/cjs/utils/event.js +1 -1
- package/lib/cjs/utils/helper-dom.d.ts +1 -0
- package/lib/cjs/utils/helper-dom.js +17 -10
- package/lib/cjs/utils/helper.js +1 -24
- package/lib/cjs/utils/keydown.js +4 -7
- package/lib/cjs/utils/platform.d.ts +0 -9
- package/lib/cjs/utils/platform.js +0 -10
- package/lib/cjs/utils/selection.js +0 -6
- package/lib/cjs/utils/storage.d.ts +0 -9
- package/lib/cjs/utils/storage.js +1 -11
- package/lib/cjs/utils/transformSql.d.ts +5 -0
- package/lib/cjs/utils/transformSql.js +42 -113
- package/lib/cjs/utils.d.ts +1 -6
- package/lib/cjs/utils.js +115 -255
- package/lib/es/common/Portal/index.js +0 -2
- package/lib/es/common/SplitView/index.d.ts +0 -4
- package/lib/es/common/SplitView/index.js +0 -10
- package/lib/es/components/dialog/custom-column/config.js +4 -48
- package/lib/es/components/dialog/custom-column/expression-editor.js +3 -14
- package/lib/es/components/dialog/custom-column/expressions/suggest.d.ts +2 -34
- package/lib/es/components/dialog/custom-column/expressions/suggest.js +2 -43
- package/lib/es/components/dialog/custom-column/expressions/tokenizer.js +8 -65
- package/lib/es/components/dialog/custom-column/index.js +2 -4
- package/lib/es/components/dialog/custom-column/tokenized-expression.js +1 -3
- package/lib/es/components/dialog/custom-column/tokenizedI-input.js +1 -1
- package/lib/es/components/dialog/custom-editor/index.js +1 -7
- package/lib/es/components/dialog/diff-viewer/index copy.js +1 -15
- package/lib/es/components/dialog/expression/date-format-picker.js +2 -20
- package/lib/es/components/dialog/expression/date-format.js +2 -8
- package/lib/es/components/dialog/expression/index.d.ts +0 -3
- package/lib/es/components/dialog/expression/index.js +2 -82
- package/lib/es/components/dialog/formula/index.js +0 -30
- package/lib/es/components/dialog/formula/utils.js +2 -10
- package/lib/es/components/dialog/formula-list/CaseWhenGroup.d.ts +19 -0
- package/lib/es/components/dialog/formula-list/CaseWhenGroup.js +102 -0
- package/lib/es/components/dialog/formula-list/LogicGroup.d.ts +9 -0
- package/lib/es/components/dialog/formula-list/LogicGroup.js +36 -0
- package/lib/es/components/dialog/formula-list/index.d.ts +3 -0
- package/lib/es/components/dialog/formula-list/index.js +966 -503
- package/lib/es/components/dialog/formula-list/index.less +724 -0
- package/lib/es/components/dialog/formula-list/utils.d.ts +0 -7
- package/lib/es/components/dialog/formula-list/utils.js +117 -113
- package/lib/es/components/dialog/index.js +3 -3
- package/lib/es/components/dialog/select-column/index.d.ts +0 -6
- package/lib/es/components/dialog/select-column/index.js +4 -14
- package/lib/es/components/dialog/select-column-multiple/index.d.ts +0 -8
- package/lib/es/components/dialog/select-column-multiple/index.js +7 -47
- package/lib/es/components/dialog/select-join/index.d.ts +0 -5
- package/lib/es/components/dialog/select-join/index.js +0 -5
- package/lib/es/components/dialog/select-join-column/index.d.ts +0 -8
- package/lib/es/components/dialog/select-join-column/index.js +7 -20
- package/lib/es/components/dialog/select-join-column-multiple/index.d.ts +0 -8
- package/lib/es/components/dialog/select-join-column-multiple/index.js +5 -34
- package/lib/es/components/dialog/select-permission-table/index.d.ts +0 -5
- package/lib/es/components/dialog/select-permission-table/index.js +0 -5
- package/lib/es/components/dialog/select-summarize/index.d.ts +3 -3
- package/lib/es/components/dialog/select-summarize/index.js +106 -18
- package/lib/es/components/dialog/select-summarize/index.less +23 -0
- package/lib/es/components/dialog/select-table/index.d.ts +0 -6
- package/lib/es/components/dialog/select-table/index.js +1 -8
- package/lib/es/components/metabase/index.js +72 -87
- package/lib/es/components/metabase/index.less +7 -7
- package/lib/es/components/modules/components/Wrapper.js +1 -1
- package/lib/es/components/modules/components/header.js +2 -2
- package/lib/es/components/modules/components/meta-icon.d.ts +0 -3
- package/lib/es/components/modules/components/meta-icon.js +2 -46
- package/lib/es/components/modules/custom-column.js +3 -29
- package/lib/es/components/modules/enum/filter-enum.js +9 -88
- package/lib/es/components/modules/filter.js +2 -19
- package/lib/es/components/modules/index.d.ts +4 -2
- package/lib/es/components/modules/index.js +24 -1
- package/lib/es/components/modules/join-data.js +13 -291
- package/lib/es/components/modules/row-limit.js +0 -1
- package/lib/es/components/modules/sort.js +1 -61
- package/lib/es/components/modules/summarize/group-by.d.ts +0 -5
- package/lib/es/components/modules/summarize/group-by.js +233 -78
- package/lib/es/components/modules/summarize/select-index.js +96 -46
- package/lib/es/components/modules/table-data.js +11 -64
- package/lib/es/components/popup.js +27 -33
- package/lib/es/hooks/patch.d.ts +1 -0
- package/lib/es/hooks/patch.js +103 -5
- package/lib/es/hooks/patch2.js +2 -164
- package/lib/es/hooks/use-provider.js +0 -3
- package/lib/es/hooks/use-state.js +55 -135
- package/lib/es/index.js +0 -14
- package/lib/es/locale/en.js +5 -0
- package/lib/es/locale/index.js +1 -4
- package/lib/es/locale/zh.js +5 -0
- package/lib/es/sql-formula.js +0 -1
- package/lib/es/store/enum.d.ts +6 -6
- package/lib/es/store/enum.js +0 -13
- package/lib/es/store/helper.d.ts +2 -1
- package/lib/es/store/helper.js +13 -224
- package/lib/es/store/types.d.ts +45 -67
- package/lib/es/store/types.js +3 -49
- package/lib/es/types.d.ts +1 -0
- package/lib/es/types.js +1 -18
- package/lib/es/utils/cookies.js +0 -3
- package/lib/es/utils/event.js +1 -1
- package/lib/es/utils/helper-dom.d.ts +1 -0
- package/lib/es/utils/helper-dom.js +16 -9
- package/lib/es/utils/helper.js +1 -24
- package/lib/es/utils/keydown.js +4 -7
- package/lib/es/utils/platform.d.ts +0 -9
- package/lib/es/utils/platform.js +0 -10
- package/lib/es/utils/selection.js +0 -6
- package/lib/es/utils/storage.d.ts +0 -9
- package/lib/es/utils/storage.js +1 -10
- package/lib/es/utils/transformSql.d.ts +5 -0
- package/lib/es/utils/transformSql.js +42 -112
- package/lib/es/utils.d.ts +1 -6
- package/lib/es/utils.js +116 -255
- package/package.json +1 -1
|
@@ -21,7 +21,13 @@
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
.Sqb-Filter-item {
|
|
24
|
+
--sqb-item-shell-margin-x: 10px;
|
|
25
|
+
--sqb-item-gap-x: 8px;
|
|
26
|
+
--sqb-item-gap-y: 8px;
|
|
27
|
+
--sqb-arrow-offset-left: -30px;
|
|
28
|
+
--sqb-arrow-offset-right: -20px;
|
|
24
29
|
position: relative;
|
|
30
|
+
margin: 0 var(--sqb-item-shell-margin-x) var(--sqb-item-gap-y);
|
|
25
31
|
&-content {
|
|
26
32
|
position: relative;
|
|
27
33
|
display: inline-flex;
|
|
@@ -49,6 +55,19 @@
|
|
|
49
55
|
display: none;
|
|
50
56
|
}
|
|
51
57
|
}
|
|
58
|
+
|
|
59
|
+
.formula-node-group {
|
|
60
|
+
padding-left: 28px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.formula-node-group {
|
|
64
|
+
.formula-node-remove,
|
|
65
|
+
.Sqb-CaseRow-actions,
|
|
66
|
+
.Sqb-CaseRecover,
|
|
67
|
+
.item-del {
|
|
68
|
+
display: none;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
52
71
|
}
|
|
53
72
|
&.item-selected {
|
|
54
73
|
.item-check {
|
|
@@ -75,9 +94,714 @@
|
|
|
75
94
|
padding-left: 8px;
|
|
76
95
|
}
|
|
77
96
|
}
|
|
97
|
+
|
|
98
|
+
&.item-composite {
|
|
99
|
+
&.item-selected {
|
|
100
|
+
.formula-node-group {
|
|
101
|
+
box-shadow: inset 0 0 0 2px rgba(80, 158, 227, 0.42);
|
|
102
|
+
background: rgba(80, 158, 227, 0.12);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
&.hover {
|
|
106
|
+
.formula-node-group {
|
|
107
|
+
box-shadow: inset 0 0 0 2px rgba(80, 158, 227, 0.55);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.item-check {
|
|
113
|
+
height: 100%;
|
|
114
|
+
|
|
115
|
+
.pd-Checkbox-mask-wrapper {
|
|
116
|
+
align-items: flex-start;
|
|
117
|
+
padding-top: 10px;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.pd-Badge {
|
|
123
|
+
display: inline-flex;
|
|
124
|
+
vertical-align: top;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
> div > .Sqb-TableName,
|
|
128
|
+
> div > span > .Sqb-TableName,
|
|
129
|
+
> .Sqb-TableName {
|
|
130
|
+
margin: 0;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
> .right-arrow,
|
|
134
|
+
> .left-arrow {
|
|
135
|
+
position: absolute;
|
|
136
|
+
top: 50%;
|
|
137
|
+
height: 40px;
|
|
138
|
+
width: 30px;
|
|
139
|
+
display: flex;
|
|
140
|
+
align-items: center;
|
|
141
|
+
justify-content: center;
|
|
142
|
+
opacity: 0.4;
|
|
143
|
+
cursor: pointer;
|
|
144
|
+
transform: translateY(-50%) scale(0);
|
|
145
|
+
transition: all 0.3s;
|
|
146
|
+
|
|
147
|
+
img {
|
|
148
|
+
transform: scale(0.8);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
&:hover {
|
|
152
|
+
opacity: 1;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
> .left-arrow {
|
|
157
|
+
left: var(--sqb-arrow-offset-left);
|
|
158
|
+
transform: translateY(-50%) rotate(180deg) scale(0);
|
|
159
|
+
transform-origin: 50% 50%;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
> .right-arrow {
|
|
163
|
+
right: var(--sqb-arrow-offset-right);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.Sqb-TableName.flow-operator {
|
|
167
|
+
background-color: rgb(242, 169, 59);
|
|
168
|
+
border-color: rgb(242, 169, 59);
|
|
169
|
+
color: #fff;
|
|
170
|
+
border-radius: 14px;
|
|
171
|
+
|
|
172
|
+
&:hover {
|
|
173
|
+
background-color: rgba(242, 169, 59, 0.88);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
&.notSelected {
|
|
177
|
+
background-color: rgba(242, 169, 59, 0.12);
|
|
178
|
+
border-color: rgba(242, 169, 59, 0.35);
|
|
179
|
+
color: rgb(186, 121, 21);
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.Sqb-TableName.logic-operator {
|
|
184
|
+
background-color: rgb(72, 125, 227);
|
|
185
|
+
border-color: rgb(72, 125, 227);
|
|
186
|
+
color: #fff;
|
|
187
|
+
border-radius: 18px;
|
|
188
|
+
|
|
189
|
+
&:hover {
|
|
190
|
+
background-color: rgba(72, 125, 227, 0.88);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
&.notSelected {
|
|
194
|
+
background-color: rgba(72, 125, 227, 0.12);
|
|
195
|
+
border-color: rgba(72, 125, 227, 0.3);
|
|
196
|
+
color: rgb(72, 125, 227);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.Sqb-TableName.logic-operator.logic-and {
|
|
201
|
+
background-color: rgb(72, 125, 227);
|
|
202
|
+
border-color: rgb(72, 125, 227);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.Sqb-TableName.logic-operator.logic-or {
|
|
206
|
+
background-color: rgb(46, 167, 138);
|
|
207
|
+
border-color: rgb(46, 167, 138);
|
|
208
|
+
|
|
209
|
+
&.notSelected {
|
|
210
|
+
background-color: rgba(46, 167, 138, 0.12);
|
|
211
|
+
border-color: rgba(46, 167, 138, 0.3);
|
|
212
|
+
color: rgb(46, 167, 138);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.Sqb-CaseKeyword {
|
|
217
|
+
display: inline-flex;
|
|
218
|
+
align-items: center;
|
|
219
|
+
padding: 0 2px;
|
|
220
|
+
color: rgb(140, 148, 163);
|
|
221
|
+
font-size: 12px;
|
|
222
|
+
line-height: 32px;
|
|
223
|
+
font-weight: 600;
|
|
224
|
+
letter-spacing: 0.08em;
|
|
225
|
+
text-transform: uppercase;
|
|
226
|
+
background: transparent;
|
|
227
|
+
border: 0;
|
|
228
|
+
pointer-events: none;
|
|
229
|
+
}
|
|
78
230
|
}
|
|
79
231
|
.Sqb-NotebookCell {
|
|
80
232
|
position: relative;
|
|
233
|
+
|
|
234
|
+
&.Sqb-NotebookCell--embedded {
|
|
235
|
+
padding: 0;
|
|
236
|
+
border-radius: 0;
|
|
237
|
+
background: transparent;
|
|
238
|
+
width: auto;
|
|
239
|
+
min-width: 0;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
&.Sqb-NotebookCell--embedded::before,
|
|
243
|
+
&.Sqb-NotebookCell--embedded::after {
|
|
244
|
+
content: none;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
&.Sqb-NotebookCell--embedded > .Sqb-TableName {
|
|
248
|
+
margin-right: var(--sqb-item-gap-x, 8px);
|
|
249
|
+
margin-bottom: var(--sqb-item-gap-y, 8px);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
&.Sqb-NotebookCell--embedded > .Sqb-Filter-item {
|
|
253
|
+
--sqb-item-shell-margin-x: 10px;
|
|
254
|
+
--sqb-item-gap-x: 8px;
|
|
255
|
+
--sqb-item-gap-y: 8px;
|
|
256
|
+
--sqb-arrow-offset-left: -22px;
|
|
257
|
+
--sqb-arrow-offset-right: -22px;
|
|
258
|
+
margin-bottom: 0;
|
|
259
|
+
margin-left: var(--sqb-item-shell-margin-x);
|
|
260
|
+
margin-right: var(--sqb-item-shell-margin-x);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.case-group-shell {
|
|
264
|
+
position: relative;
|
|
265
|
+
display: flex;
|
|
266
|
+
flex: 0 0 100%;
|
|
267
|
+
width: calc(100% - 20px);
|
|
268
|
+
margin: 0 10px;
|
|
269
|
+
|
|
270
|
+
> .right-arrow,
|
|
271
|
+
> .left-arrow {
|
|
272
|
+
position: absolute;
|
|
273
|
+
top: 50%;
|
|
274
|
+
height: 40px;
|
|
275
|
+
width: 30px;
|
|
276
|
+
display: flex;
|
|
277
|
+
align-items: center;
|
|
278
|
+
justify-content: center;
|
|
279
|
+
opacity: 0.4;
|
|
280
|
+
cursor: pointer;
|
|
281
|
+
transform: translateY(-50%) scale(0);
|
|
282
|
+
transition: all 0.3s;
|
|
283
|
+
|
|
284
|
+
img {
|
|
285
|
+
transform: scale(0.8);
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
&:hover {
|
|
289
|
+
opacity: 1;
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
> .left-arrow {
|
|
294
|
+
left: -30px;
|
|
295
|
+
transform: translateY(-50%) rotate(180deg) scale(0);
|
|
296
|
+
transform-origin: 50% 50%;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
> .right-arrow {
|
|
300
|
+
right: -20px;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
&.hover {
|
|
304
|
+
> .left-arrow {
|
|
305
|
+
transform: translateY(-50%) rotate(180deg) scale(1);
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
> .right-arrow {
|
|
309
|
+
transform: translateY(-50%) scale(1);
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.Sqb-FormulaGroup {
|
|
315
|
+
display: inline-flex;
|
|
316
|
+
margin-bottom: 8px;
|
|
317
|
+
border-radius: 16px;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.formula-node-group {
|
|
321
|
+
position: relative;
|
|
322
|
+
width: 100%;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.formula-node-remove {
|
|
326
|
+
position: absolute;
|
|
327
|
+
top: 8px;
|
|
328
|
+
right: 8px;
|
|
329
|
+
margin-left: 0;
|
|
330
|
+
z-index: 2;
|
|
331
|
+
width: 20px;
|
|
332
|
+
height: 20px;
|
|
333
|
+
min-width: 20px;
|
|
334
|
+
padding: 0;
|
|
335
|
+
border: none;
|
|
336
|
+
border-radius: 999px;
|
|
337
|
+
background: transparent;
|
|
338
|
+
color: rgba(83, 92, 112, 0.46);
|
|
339
|
+
opacity: 0.72;
|
|
340
|
+
transition:
|
|
341
|
+
color 160ms ease,
|
|
342
|
+
background-color 160ms ease,
|
|
343
|
+
opacity 160ms ease;
|
|
344
|
+
|
|
345
|
+
&:hover {
|
|
346
|
+
background: rgba(83, 92, 112, 0.08);
|
|
347
|
+
color: rgba(83, 92, 112, 0.82);
|
|
348
|
+
opacity: 1;
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.Sqb-FormulaGroup.flow-group {
|
|
353
|
+
display: flex;
|
|
354
|
+
width: 100%;
|
|
355
|
+
flex: 0 0 100%;
|
|
356
|
+
flex-direction: column;
|
|
357
|
+
align-items: stretch;
|
|
358
|
+
gap: 2px;
|
|
359
|
+
padding: 8px 12px 6px;
|
|
360
|
+
background: rgba(80, 158, 227, 0.08);
|
|
361
|
+
border: 1px solid rgba(80, 158, 227, 0.16);
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.Sqb-FormulaGroup.group-selected {
|
|
365
|
+
box-shadow: inset 0 0 0 1px rgba(80, 158, 227, 0.3);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.Sqb-FormulaGroup .group-check {
|
|
369
|
+
margin: 0 0 6px 2px;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.Sqb-FormulaGroup.logic-group {
|
|
373
|
+
display: inline-flex;
|
|
374
|
+
flex-wrap: wrap;
|
|
375
|
+
align-items: center;
|
|
376
|
+
gap: 4px;
|
|
377
|
+
width: auto;
|
|
378
|
+
max-width: 100%;
|
|
379
|
+
padding: 4px 8px;
|
|
380
|
+
background: rgba(72, 125, 227, 0.05);
|
|
381
|
+
border: 1px solid rgba(72, 125, 227, 0.12);
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.Sqb-FormulaGroup.logic-group .formula-node-remove {
|
|
385
|
+
position: static;
|
|
386
|
+
top: auto;
|
|
387
|
+
right: auto;
|
|
388
|
+
margin-left: 2px;
|
|
389
|
+
align-self: center;
|
|
390
|
+
flex: 0 0 auto;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.Sqb-LogicGroup-content {
|
|
394
|
+
display: inline-flex;
|
|
395
|
+
flex: 0 1 auto;
|
|
396
|
+
flex-wrap: wrap;
|
|
397
|
+
align-items: center;
|
|
398
|
+
min-width: 0;
|
|
399
|
+
column-gap: 4px;
|
|
400
|
+
row-gap: 2px;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.Sqb-NestedFormulaList {
|
|
404
|
+
width: 100%;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.Sqb-NestedFormulaList .Sqb-NotebookCell {
|
|
408
|
+
width: 100%;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.Sqb-NestedFormulaList .Sqb-NotebookCell.Sqb-NotebookCell--embedded {
|
|
412
|
+
display: inline-flex;
|
|
413
|
+
flex-wrap: wrap;
|
|
414
|
+
align-items: center;
|
|
415
|
+
gap: 0;
|
|
416
|
+
width: auto;
|
|
417
|
+
max-width: 100%;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.Sqb-NestedFormulaList .Sqb-NotebookCell.Sqb-NotebookCell--embedded .Sqb-TableName {
|
|
421
|
+
margin-right: var(--sqb-item-gap-x, 8px);
|
|
422
|
+
margin-bottom: var(--sqb-item-gap-y, 8px);
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.Sqb-NestedFormulaList .Sqb-NotebookCell.Sqb-NotebookCell--embedded .Sqb-Filter-item {
|
|
426
|
+
--sqb-item-shell-margin-x: 10px;
|
|
427
|
+
--sqb-item-gap-x: 8px;
|
|
428
|
+
--sqb-item-gap-y: 8px;
|
|
429
|
+
--sqb-arrow-offset-left: -22px;
|
|
430
|
+
--sqb-arrow-offset-right: -22px;
|
|
431
|
+
margin-bottom: 0;
|
|
432
|
+
margin-left: var(--sqb-item-shell-margin-x);
|
|
433
|
+
margin-right: var(--sqb-item-shell-margin-x);
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.Sqb-NestedFormulaList
|
|
437
|
+
.Sqb-NotebookCell.Sqb-NotebookCell--embedded
|
|
438
|
+
.Sqb-Filter-item
|
|
439
|
+
> .left-arrow,
|
|
440
|
+
.Sqb-NestedFormulaList
|
|
441
|
+
.Sqb-NotebookCell.Sqb-NotebookCell--embedded
|
|
442
|
+
.Sqb-Filter-item
|
|
443
|
+
> .right-arrow {
|
|
444
|
+
transform: translateY(-50%) scale(0);
|
|
445
|
+
opacity: 0;
|
|
446
|
+
pointer-events: none;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.Sqb-NestedFormulaList
|
|
450
|
+
.Sqb-NotebookCell.Sqb-NotebookCell--embedded
|
|
451
|
+
.Sqb-Filter-item:hover
|
|
452
|
+
> .left-arrow,
|
|
453
|
+
.Sqb-NestedFormulaList
|
|
454
|
+
.Sqb-NotebookCell.Sqb-NotebookCell--embedded
|
|
455
|
+
.Sqb-Filter-item.hover
|
|
456
|
+
> .left-arrow {
|
|
457
|
+
transform: translateY(-50%) rotate(180deg) scale(1);
|
|
458
|
+
opacity: 0.4;
|
|
459
|
+
pointer-events: auto;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.Sqb-NestedFormulaList
|
|
463
|
+
.Sqb-NotebookCell.Sqb-NotebookCell--embedded
|
|
464
|
+
.Sqb-Filter-item:hover
|
|
465
|
+
> .right-arrow,
|
|
466
|
+
.Sqb-NestedFormulaList
|
|
467
|
+
.Sqb-NotebookCell.Sqb-NotebookCell--embedded
|
|
468
|
+
.Sqb-Filter-item.hover
|
|
469
|
+
> .right-arrow {
|
|
470
|
+
transform: translateY(-50%) scale(1);
|
|
471
|
+
opacity: 0.4;
|
|
472
|
+
pointer-events: auto;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.Sqb-LogicGroup-content .Sqb-NestedFormulaList,
|
|
476
|
+
.Sqb-LogicGroup-content .Sqb-NestedFormulaList .Sqb-NotebookCell {
|
|
477
|
+
display: inline-flex;
|
|
478
|
+
flex-wrap: wrap;
|
|
479
|
+
align-items: center;
|
|
480
|
+
gap: 0;
|
|
481
|
+
width: auto;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.Sqb-LogicGroup-content .Sqb-Filter-item {
|
|
485
|
+
margin-bottom: 0;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.Sqb-FormulaGroup-row {
|
|
489
|
+
display: flex;
|
|
490
|
+
flex-wrap: wrap;
|
|
491
|
+
align-items: center;
|
|
492
|
+
gap: 0;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.case-section {
|
|
496
|
+
display: flex;
|
|
497
|
+
flex-wrap: wrap;
|
|
498
|
+
align-items: center;
|
|
499
|
+
gap: 0;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.case-section-condition,
|
|
503
|
+
.case-section-result,
|
|
504
|
+
.case-section-else {
|
|
505
|
+
position: relative;
|
|
506
|
+
padding: 8px 10px 2px;
|
|
507
|
+
border-radius: 12px;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.case-section-condition {
|
|
511
|
+
background: rgba(72, 125, 227, 0.1);
|
|
512
|
+
border: 1px solid rgba(72, 125, 227, 0.15);
|
|
513
|
+
margin-right: 8px;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.case-section-result,
|
|
517
|
+
.case-section-else {
|
|
518
|
+
background: rgba(46, 167, 138, 0.1);
|
|
519
|
+
border: 1px solid rgba(46, 167, 138, 0.14);
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
.case-section-condition::before,
|
|
523
|
+
.case-section-result::before,
|
|
524
|
+
.case-section-else::before {
|
|
525
|
+
content: none;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.case-section-condition .Sqb-Filter-item,
|
|
529
|
+
.case-section-result .Sqb-Filter-item,
|
|
530
|
+
.case-section-else .Sqb-Filter-item {
|
|
531
|
+
margin-top: 0;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.Sqb-FormulaGroup-row.row-case {
|
|
535
|
+
margin-bottom: 4px;
|
|
536
|
+
align-items: flex-start;
|
|
537
|
+
gap: 6px;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.Sqb-FormulaGroup-row.row-when,
|
|
541
|
+
.Sqb-FormulaGroup-row.row-else {
|
|
542
|
+
width: 100%;
|
|
543
|
+
margin-left: 12px;
|
|
544
|
+
padding-left: 10px;
|
|
545
|
+
border-left: 2px solid rgba(80, 158, 227, 0.22);
|
|
546
|
+
align-items: flex-start;
|
|
547
|
+
gap: 6px;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.Sqb-FormulaGroup-row.row-when {
|
|
551
|
+
display: flex;
|
|
552
|
+
flex-wrap: wrap;
|
|
553
|
+
align-items: flex-start;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.Sqb-CaseRow-actions {
|
|
557
|
+
display: flex;
|
|
558
|
+
align-items: center;
|
|
559
|
+
gap: 8px;
|
|
560
|
+
margin-top: 2px;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.Sqb-CaseRow-actions.when-row-actions {
|
|
564
|
+
margin: 0;
|
|
565
|
+
padding-top: 0;
|
|
566
|
+
align-self: center;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.Sqb-FormulaGroup-row.row-else,
|
|
570
|
+
.Sqb-FormulaGroup-row.row-case {
|
|
571
|
+
width: 100%;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.Sqb-FormulaGroup-row.row-end {
|
|
575
|
+
margin-left: 12px;
|
|
576
|
+
padding-left: 10px;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.Sqb-Filter-item.group-child {
|
|
580
|
+
margin-right: 0;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.Sqb-Filter-item.group-flow-child {
|
|
584
|
+
width: auto;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.Sqb-Filter-item.group-logic-child {
|
|
588
|
+
flex: 0 0 auto;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
.Sqb-Filter-item.case-row-item {
|
|
592
|
+
margin-bottom: 6px;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.Sqb-Filter-item.case-row-item-end {
|
|
596
|
+
margin-left: 0;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.Sqb-CaseSection {
|
|
600
|
+
display: flex;
|
|
601
|
+
flex-wrap: wrap;
|
|
602
|
+
align-items: center;
|
|
603
|
+
min-height: auto;
|
|
604
|
+
min-width: 0;
|
|
605
|
+
gap: 6px;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.Sqb-CaseSection-condition {
|
|
609
|
+
flex: 0 1 auto;
|
|
610
|
+
min-height: auto;
|
|
611
|
+
margin-right: 0;
|
|
612
|
+
max-width: 100%;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.Sqb-CaseSection-case {
|
|
616
|
+
flex: 1 1 320px;
|
|
617
|
+
min-height: auto;
|
|
618
|
+
margin-left: 0;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.Sqb-CaseSection-result {
|
|
622
|
+
flex: 0 1 auto;
|
|
623
|
+
min-height: auto;
|
|
624
|
+
max-width: 100%;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.Sqb-FormulaGroup.flow-group .Sqb-CaseKeyword {
|
|
628
|
+
flex: 0 0 auto;
|
|
629
|
+
line-height: 24px;
|
|
630
|
+
padding: 0;
|
|
631
|
+
font-size: 11px;
|
|
632
|
+
font-weight: 500;
|
|
633
|
+
letter-spacing: 0.06em;
|
|
634
|
+
color: rgba(83, 92, 112, 0.86);
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.Sqb-FormulaGroup.flow-group .Sqb-CaseKeyword.keyword-case,
|
|
638
|
+
.Sqb-FormulaGroup.flow-group .Sqb-CaseKeyword.keyword-end {
|
|
639
|
+
color: rgba(83, 92, 112, 0.68);
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.Sqb-FormulaGroup.flow-group .Sqb-CaseKeyword.keyword-branch {
|
|
643
|
+
color: rgba(83, 92, 112, 0.84);
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.Sqb-FormulaGroup.flow-group .Sqb-NestedFormulaList,
|
|
647
|
+
.Sqb-FormulaGroup.flow-group .Sqb-NestedFormulaList .Sqb-NotebookCell {
|
|
648
|
+
display: inline-flex;
|
|
649
|
+
flex-wrap: wrap;
|
|
650
|
+
align-items: center;
|
|
651
|
+
gap: 0;
|
|
652
|
+
width: auto;
|
|
653
|
+
min-width: 0;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.Sqb-FormulaGroup.flow-group .Sqb-NestedFormulaList .Sqb-Filter-item {
|
|
657
|
+
margin-bottom: 0;
|
|
658
|
+
margin-right: 0;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.Sqb-FormulaGroup.flow-group .Sqb-CaseSection-case,
|
|
662
|
+
.Sqb-FormulaGroup.flow-group .Sqb-CaseSection-condition,
|
|
663
|
+
.Sqb-FormulaGroup.flow-group .Sqb-CaseSection-result {
|
|
664
|
+
padding: 0;
|
|
665
|
+
border: 0;
|
|
666
|
+
border-radius: 0;
|
|
667
|
+
background: transparent;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.Sqb-FormulaGroup.flow-group .Sqb-FormulaGroup-row.row-when .Sqb-CaseSection-condition,
|
|
671
|
+
.Sqb-FormulaGroup.flow-group .Sqb-FormulaGroup-row.row-when .Sqb-CaseSection-result,
|
|
672
|
+
.Sqb-FormulaGroup.flow-group .Sqb-FormulaGroup-row.row-else .Sqb-CaseSection-result {
|
|
673
|
+
display: inline-flex;
|
|
674
|
+
flex-wrap: wrap;
|
|
675
|
+
align-items: center;
|
|
676
|
+
column-gap: 6px;
|
|
677
|
+
row-gap: 2px;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.Sqb-FormulaGroup.flow-group .Sqb-FormulaGroup-row.row-when .Sqb-NestedFormulaList,
|
|
681
|
+
.Sqb-FormulaGroup.flow-group
|
|
682
|
+
.Sqb-FormulaGroup-row.row-when
|
|
683
|
+
.Sqb-NestedFormulaList
|
|
684
|
+
.Sqb-NotebookCell,
|
|
685
|
+
.Sqb-FormulaGroup.flow-group .Sqb-FormulaGroup-row.row-else .Sqb-NestedFormulaList,
|
|
686
|
+
.Sqb-FormulaGroup.flow-group
|
|
687
|
+
.Sqb-FormulaGroup-row.row-else
|
|
688
|
+
.Sqb-NestedFormulaList
|
|
689
|
+
.Sqb-NotebookCell {
|
|
690
|
+
display: inline-flex;
|
|
691
|
+
flex-wrap: wrap;
|
|
692
|
+
align-items: center;
|
|
693
|
+
width: auto;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
.Sqb-FormulaGroup.flow-group .Sqb-CaseSection-case {
|
|
697
|
+
flex: 1 1 auto;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.Sqb-FormulaGroup.logic-group .Sqb-CaseKeyword {
|
|
701
|
+
line-height: 28px;
|
|
702
|
+
padding: 0;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.Sqb-FormulaGroup.logic-group .Sqb-TableName.logic-operator {
|
|
706
|
+
min-height: 28px;
|
|
707
|
+
padding: 0 10px;
|
|
708
|
+
border-radius: 14px;
|
|
709
|
+
margin-right: 0;
|
|
710
|
+
margin-bottom: 0;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.Sqb-FormulaGroup-row.row-else .Sqb-CaseSection-result,
|
|
714
|
+
.Sqb-FormulaGroup-row.row-case .Sqb-CaseSection-case {
|
|
715
|
+
width: 100%;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.Sqb-CaseRow-add,
|
|
719
|
+
.Sqb-CaseRow-remove {
|
|
720
|
+
flex: 0 0 auto;
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
.Sqb-CaseRecover {
|
|
724
|
+
display: inline-flex;
|
|
725
|
+
align-items: center;
|
|
726
|
+
gap: 6px;
|
|
727
|
+
margin: 2px 0 8px;
|
|
728
|
+
padding: 6px 10px;
|
|
729
|
+
border: 1px dashed rgba(80, 158, 227, 0.35);
|
|
730
|
+
border-radius: 10px;
|
|
731
|
+
background: rgba(80, 158, 227, 0.06);
|
|
732
|
+
color: rgb(80, 158, 227);
|
|
733
|
+
cursor: pointer;
|
|
734
|
+
font-size: 12px;
|
|
735
|
+
|
|
736
|
+
&:hover {
|
|
737
|
+
background: rgba(80, 158, 227, 0.12);
|
|
738
|
+
}
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.Sqb-CaseRecoverSlot {
|
|
742
|
+
display: inline-flex;
|
|
743
|
+
align-items: center;
|
|
744
|
+
justify-content: flex-start;
|
|
745
|
+
width: auto;
|
|
746
|
+
padding: 0 0 6px;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.Sqb-CaseRecover.recover-row,
|
|
750
|
+
.Sqb-CaseRecover.recover-else-row {
|
|
751
|
+
align-self: flex-start;
|
|
752
|
+
margin: 6px 0 10px 20px;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.Sqb-CaseRecover.inline-after-case {
|
|
756
|
+
margin: 4px 0 8px 32px;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.Sqb-CaseSection-case .Sqb-CaseRecover.recover-case {
|
|
760
|
+
margin: 2px 0 6px 4px;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.Sqb-CaseRow-add {
|
|
764
|
+
display: inline-flex;
|
|
765
|
+
align-items: center;
|
|
766
|
+
justify-content: center;
|
|
767
|
+
margin: 2px 0 8px;
|
|
768
|
+
border: none;
|
|
769
|
+
border-radius: 999px;
|
|
770
|
+
width: 28px;
|
|
771
|
+
height: 28px;
|
|
772
|
+
background: rgba(80, 158, 227, 0.12);
|
|
773
|
+
color: rgb(80, 158, 227);
|
|
774
|
+
cursor: pointer;
|
|
775
|
+
|
|
776
|
+
&:hover {
|
|
777
|
+
background: rgba(80, 158, 227, 0.18);
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.Sqb-CaseRow-remove {
|
|
782
|
+
display: inline-flex;
|
|
783
|
+
align-items: center;
|
|
784
|
+
justify-content: center;
|
|
785
|
+
margin: 0;
|
|
786
|
+
border: none;
|
|
787
|
+
border-radius: 999px;
|
|
788
|
+
width: 24px;
|
|
789
|
+
height: 24px;
|
|
790
|
+
background: transparent;
|
|
791
|
+
color: rgba(83, 92, 112, 0.46);
|
|
792
|
+
cursor: pointer;
|
|
793
|
+
transition:
|
|
794
|
+
color 160ms ease,
|
|
795
|
+
background-color 160ms ease,
|
|
796
|
+
transform 160ms ease;
|
|
797
|
+
|
|
798
|
+
&:hover {
|
|
799
|
+
background: rgba(245, 63, 63, 0.08);
|
|
800
|
+
color: rgba(220, 38, 38, 0.9);
|
|
801
|
+
transform: translateY(-1px);
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
|
|
81
805
|
&:hover {
|
|
82
806
|
.item-isCheck {
|
|
83
807
|
display: block;
|