amis 1.5.6-beta.0 → 1.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/Root.js +1 -1
- package/lib/Root.js.map +2 -2
- package/lib/Schema.d.ts +1 -1
- package/lib/Schema.js.map +1 -1
- package/lib/SchemaRenderer.js +4 -4
- package/lib/SchemaRenderer.js.map +2 -2
- package/lib/components/AsideNav.d.ts +1 -1
- package/lib/components/AsideNav.js.map +1 -1
- package/lib/components/Card.d.ts +20 -20
- package/lib/components/Card.js +1 -1
- package/lib/components/Card.js.map +2 -2
- package/lib/components/CodeMirror.d.ts +26 -0
- package/lib/components/CodeMirror.js +104 -0
- package/lib/components/CodeMirror.js.map +13 -0
- package/lib/components/Collapse.d.ts +22 -21
- package/lib/components/Collapse.js +5 -7
- package/lib/components/Collapse.js.map +2 -2
- package/lib/components/CollapseGroup.d.ts +20 -20
- package/lib/components/CollapseGroup.js +5 -3
- package/lib/components/CollapseGroup.js.map +2 -2
- package/lib/components/ColorPicker.d.ts +85 -84
- package/lib/components/ColorPicker.js +15 -3
- package/lib/components/ColorPicker.js.map +2 -2
- package/lib/components/DatePicker.d.ts +84 -84
- package/lib/components/DatePicker.js +7 -3
- package/lib/components/DatePicker.js.map +2 -2
- package/lib/components/DateRangePicker.d.ts +85 -84
- package/lib/components/DateRangePicker.js +5 -3
- package/lib/components/DateRangePicker.js.map +2 -2
- package/lib/components/LocationPicker.d.ts +84 -84
- package/lib/components/MonthRangePicker.d.ts +85 -84
- package/lib/components/MonthRangePicker.js +5 -3
- package/lib/components/MonthRangePicker.js.map +2 -2
- package/lib/components/PickerContainer.d.ts +2 -1
- package/lib/components/PickerContainer.js +3 -3
- package/lib/components/PickerContainer.js.map +2 -2
- package/lib/components/PopUp.d.ts +93 -0
- package/lib/components/PopUp.js +58 -0
- package/lib/components/PopUp.js.map +13 -0
- package/lib/components/Rating.d.ts +203 -73
- package/lib/components/Rating.js +147 -31
- package/lib/components/Rating.js.map +2 -2
- package/lib/components/Select.d.ts +237 -237
- package/lib/components/Steps.d.ts +1 -0
- package/lib/components/Steps.js +5 -3
- package/lib/components/Steps.js.map +2 -2
- package/lib/components/Tabs.d.ts +20 -20
- package/lib/components/TabsTransferPicker.js +1 -1
- package/lib/components/TabsTransferPicker.js.map +2 -2
- package/lib/components/TransferPicker.d.ts +0 -1
- package/lib/components/TransferPicker.js +2 -15
- package/lib/components/TransferPicker.js.map +2 -2
- package/lib/components/formula/Editor.d.ts +560 -0
- package/lib/components/formula/Editor.js +186 -0
- package/lib/components/formula/Editor.js.map +13 -0
- package/lib/components/formula/FuncList.d.ts +67 -0
- package/lib/components/formula/FuncList.js +35 -0
- package/lib/components/formula/FuncList.js.map +13 -0
- package/lib/components/formula/Picker.d.ts +493 -0
- package/lib/components/formula/Picker.js +48 -0
- package/lib/components/formula/Picker.js.map +13 -0
- package/lib/components/formula/VariableList.d.ts +9 -0
- package/lib/components/formula/VariableList.js +15 -0
- package/lib/components/formula/VariableList.js.map +13 -0
- package/lib/components/formula/plugin.d.ts +18 -0
- package/lib/components/formula/plugin.js +136 -0
- package/lib/components/formula/plugin.js.map +13 -0
- package/lib/components/icons.js +2 -0
- package/lib/components/icons.js.map +2 -2
- package/lib/components/index.d.ts +2 -1
- package/lib/components/index.js +4 -2
- package/lib/components/index.js.map +2 -2
- package/lib/helper.css +57 -57
- package/lib/helper.css.map +1 -1
- package/lib/icons/star.js +12 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/lib/index.js.map +2 -2
- package/lib/renderers/CRUD.js +1 -2
- package/lib/renderers/CRUD.js.map +2 -2
- package/lib/renderers/Collapse.js +8 -2
- package/lib/renderers/Collapse.js.map +2 -2
- package/lib/renderers/CollapseGroup.js.map +2 -2
- package/lib/renderers/Form/InputCity.d.ts +84 -84
- package/lib/renderers/Form/InputColor.d.ts +84 -84
- package/lib/renderers/Form/InputColor.js +2 -2
- package/lib/renderers/Form/InputColor.js.map +2 -2
- package/lib/renderers/Form/InputDate.js +2 -2
- package/lib/renderers/Form/InputDate.js.map +2 -2
- package/lib/renderers/Form/InputDateRange.js +2 -2
- package/lib/renderers/Form/InputDateRange.js.map +2 -2
- package/lib/renderers/Form/InputFormula.d.ts +35 -0
- package/lib/renderers/Form/InputFormula.js +25 -0
- package/lib/renderers/Form/InputFormula.js.map +13 -0
- package/lib/renderers/Form/InputMonthRange.js +2 -2
- package/lib/renderers/Form/InputMonthRange.js.map +2 -2
- package/lib/renderers/Form/InputQuarterRange.js +2 -2
- package/lib/renderers/Form/InputQuarterRange.js.map +2 -2
- package/lib/renderers/Form/InputRating.d.ts +37 -0
- package/lib/renderers/Form/InputRating.js +6 -2
- package/lib/renderers/Form/InputRating.js.map +2 -2
- package/lib/renderers/Form/InputYearRange.js +2 -2
- package/lib/renderers/Form/InputYearRange.js.map +2 -2
- package/lib/renderers/Form/TreeSelect.d.ts +1 -0
- package/lib/renderers/Form/TreeSelect.js +11 -8
- package/lib/renderers/Form/TreeSelect.js.map +2 -2
- package/lib/renderers/Form/index.js +2 -1
- package/lib/renderers/Form/index.js.map +2 -2
- package/lib/renderers/Json.js +7 -0
- package/lib/renderers/Json.js.map +2 -2
- package/lib/renderers/Nav.js +4 -1
- package/lib/renderers/Nav.js.map +2 -2
- package/lib/renderers/Steps.js +2 -2
- package/lib/renderers/Steps.js.map +2 -2
- package/lib/renderers/Table/TableRow.js +4 -1
- package/lib/renderers/Table/TableRow.js.map +2 -2
- package/lib/store/formItem.js +17 -7
- package/lib/store/formItem.js.map +2 -2
- package/lib/store/table.js +1 -1
- package/lib/store/table.js.map +2 -2
- package/lib/themes/ang-ie11.css +305 -10
- package/lib/themes/ang.css +305 -10
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +305 -10
- package/lib/themes/antd.css +305 -10
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +307 -11
- package/lib/themes/cxd.css +307 -11
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +305 -10
- package/lib/themes/dark.css +305 -10
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +307 -11
- package/lib/themes/default.css.map +1 -1
- package/lib/utils/api.js +2 -2
- package/lib/utils/api.js.map +2 -2
- package/lib/utils/helper.js +2 -7
- package/lib/utils/helper.js.map +2 -2
- package/package.json +5 -3
- package/schema.json +59 -7
- package/scss/_properties.scss +3 -1
- package/scss/_variables.scss +1 -1
- package/scss/components/_formula.scss +122 -0
- package/scss/components/_popup.scss +123 -0
- package/scss/components/_steps.scss +60 -0
- package/scss/components/form/_color.scss +4 -0
- package/scss/components/form/_date-range.scss +4 -0
- package/scss/components/form/_date.scss +3 -0
- package/scss/components/form/_rating.scss +60 -21
- package/scss/components/form/_tree-select.scss +4 -0
- package/scss/helper/background/_background-color.scss +1 -1
- package/scss/helper/border/_border-color.scss +1 -1
- package/scss/helper/typography/_text-color.scss +1 -1
- package/scss/themes/_common.scss +2 -0
- package/scss/themes/_cxd-variables.scss +3 -1
- package/sdk/ang-ie11.css +922 -8
- package/sdk/ang.css +926 -10
- package/sdk/antd-ie11.css +922 -8
- package/sdk/antd.css +926 -10
- package/sdk/charts.js +17 -17
- package/sdk/codemirror.js +14 -0
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +3 -3
- package/sdk/cxd-ie11.css +923 -9
- package/sdk/cxd.css +928 -11
- package/sdk/dark-ie11.css +922 -8
- package/sdk/dark.css +926 -10
- package/sdk/exceljs.js +1 -1
- package/sdk/helper.css +57 -57
- package/sdk/helper.css.map +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +18 -18
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +923 -9
- package/sdk/sdk.css +928 -11
- package/sdk/sdk.js +1318 -1208
- package/sdk/thirds/hls.js/hls.js +18 -18
- package/sdk/thirds/mpegts.js/mpegts.js +2 -2
- package/sdk/tinymce.js +57 -57
- package/src/Root.tsx +1 -0
- package/src/Schema.ts +1 -0
- package/src/SchemaRenderer.tsx +4 -0
- package/src/components/AsideNav.tsx +1 -1
- package/src/components/Card.tsx +2 -2
- package/src/components/CodeMirror.tsx +99 -0
- package/src/components/Collapse.tsx +22 -14
- package/src/components/CollapseGroup.tsx +9 -11
- package/src/components/ColorPicker.tsx +45 -3
- package/src/components/DatePicker.tsx +33 -3
- package/src/components/DateRangePicker.tsx +17 -3
- package/src/components/MonthRangePicker.tsx +18 -4
- package/src/components/PickerContainer.tsx +10 -6
- package/src/components/PopUp.tsx +133 -0
- package/src/components/Rating.tsx +235 -47
- package/src/components/Steps.tsx +8 -3
- package/src/components/TabsTransferPicker.tsx +1 -1
- package/src/components/TransferPicker.tsx +1 -11
- package/src/components/formula/Editor.tsx +261 -0
- package/src/components/formula/FuncList.tsx +82 -0
- package/src/components/formula/Picker.tsx +86 -0
- package/src/components/formula/VariableList.tsx +49 -0
- package/src/components/formula/plugin.ts +177 -0
- package/src/components/icons.tsx +2 -0
- package/src/components/index.tsx +2 -0
- package/src/icons/star.svg +12 -0
- package/src/index.tsx +1 -0
- package/src/renderers/CRUD.tsx +1 -3
- package/src/renderers/Collapse.tsx +27 -27
- package/src/renderers/CollapseGroup.tsx +13 -12
- package/src/renderers/Form/InputColor.tsx +2 -3
- package/src/renderers/Form/InputDate.tsx +2 -0
- package/src/renderers/Form/InputDateRange.tsx +2 -0
- package/src/renderers/Form/InputFormula.tsx +75 -0
- package/src/renderers/Form/InputMonthRange.tsx +2 -0
- package/src/renderers/Form/InputQuarterRange.tsx +2 -0
- package/src/renderers/Form/InputRating.tsx +66 -3
- package/src/renderers/Form/InputYearRange.tsx +2 -0
- package/src/renderers/Form/TreeSelect.tsx +82 -63
- package/src/renderers/Form/index.tsx +2 -1
- package/src/renderers/Json.tsx +5 -0
- package/src/renderers/Nav.tsx +4 -1
- package/src/renderers/Steps.tsx +4 -2
- package/src/renderers/Table/TableRow.tsx +3 -1
- package/src/store/formItem.ts +17 -2
- package/src/store/table.ts +2 -1
- package/src/utils/api.ts +5 -2
- package/src/utils/helper.ts +5 -14
package/sdk/sdk-ie11.css
CHANGED
@@ -249,6 +249,575 @@
|
|
249
249
|
cursor: default;
|
250
250
|
}
|
251
251
|
|
252
|
+
/* BASICS */
|
253
|
+
|
254
|
+
.amis-scope .CodeMirror {
|
255
|
+
/* Set height, width, borders, and global font properties here */
|
256
|
+
font-family: monospace;
|
257
|
+
height: 300px;
|
258
|
+
color: black;
|
259
|
+
direction: ltr;
|
260
|
+
}
|
261
|
+
|
262
|
+
/* PADDING */
|
263
|
+
|
264
|
+
.amis-scope .CodeMirror-lines {
|
265
|
+
padding: 4px 0;
|
266
|
+
/* Vertical padding around content */
|
267
|
+
}
|
268
|
+
|
269
|
+
.amis-scope .CodeMirror pre.CodeMirror-line,
|
270
|
+
.amis-scope .CodeMirror pre.CodeMirror-line-like {
|
271
|
+
padding: 0 4px;
|
272
|
+
/* Horizontal padding of content */
|
273
|
+
}
|
274
|
+
|
275
|
+
.amis-scope .CodeMirror-scrollbar-filler,
|
276
|
+
.amis-scope .CodeMirror-gutter-filler {
|
277
|
+
background-color: white;
|
278
|
+
/* The little square between H and V scrollbars */
|
279
|
+
}
|
280
|
+
|
281
|
+
/* GUTTER */
|
282
|
+
|
283
|
+
.amis-scope .CodeMirror-gutters {
|
284
|
+
border-right: 1px solid #ddd;
|
285
|
+
background-color: #f7f7f7;
|
286
|
+
white-space: nowrap;
|
287
|
+
}
|
288
|
+
|
289
|
+
|
290
|
+
|
291
|
+
.amis-scope .CodeMirror-linenumber {
|
292
|
+
padding: 0 3px 0 5px;
|
293
|
+
min-width: 20px;
|
294
|
+
text-align: right;
|
295
|
+
color: #999;
|
296
|
+
white-space: nowrap;
|
297
|
+
}
|
298
|
+
|
299
|
+
.amis-scope .CodeMirror-guttermarker {
|
300
|
+
color: black;
|
301
|
+
}
|
302
|
+
|
303
|
+
.amis-scope .CodeMirror-guttermarker-subtle {
|
304
|
+
color: #999;
|
305
|
+
}
|
306
|
+
|
307
|
+
/* CURSOR */
|
308
|
+
|
309
|
+
.amis-scope .CodeMirror-cursor {
|
310
|
+
border-left: 1px solid black;
|
311
|
+
border-right: none;
|
312
|
+
width: 0;
|
313
|
+
}
|
314
|
+
|
315
|
+
/* Shown when moving in bi-directional text */
|
316
|
+
|
317
|
+
.amis-scope .CodeMirror div.CodeMirror-secondarycursor {
|
318
|
+
border-left: 1px solid silver;
|
319
|
+
}
|
320
|
+
|
321
|
+
.amis-scope .cm-fat-cursor .CodeMirror-cursor {
|
322
|
+
width: auto;
|
323
|
+
border: 0 !important;
|
324
|
+
background: #7e7;
|
325
|
+
}
|
326
|
+
|
327
|
+
.amis-scope .cm-fat-cursor div.CodeMirror-cursors {
|
328
|
+
z-index: 1;
|
329
|
+
}
|
330
|
+
|
331
|
+
.amis-scope .cm-fat-cursor .CodeMirror-line::selection,
|
332
|
+
.amis-scope .cm-fat-cursor .CodeMirror-line > span::selection,
|
333
|
+
.amis-scope .cm-fat-cursor .CodeMirror-line > span > span::selection {
|
334
|
+
background: transparent;
|
335
|
+
}
|
336
|
+
|
337
|
+
.amis-scope .cm-fat-cursor .CodeMirror-line::-moz-selection,
|
338
|
+
.amis-scope .cm-fat-cursor .CodeMirror-line > span::-moz-selection,
|
339
|
+
.amis-scope .cm-fat-cursor .CodeMirror-line > span > span::-moz-selection {
|
340
|
+
background: transparent;
|
341
|
+
}
|
342
|
+
|
343
|
+
.amis-scope .cm-fat-cursor {
|
344
|
+
caret-color: transparent;
|
345
|
+
}
|
346
|
+
|
347
|
+
@-moz-keyframes blink {
|
348
|
+
0% {
|
349
|
+
|
350
|
+
}
|
351
|
+
|
352
|
+
50% {
|
353
|
+
background-color: transparent;
|
354
|
+
}
|
355
|
+
|
356
|
+
100% {
|
357
|
+
|
358
|
+
}
|
359
|
+
}
|
360
|
+
|
361
|
+
@-webkit-keyframes blink {
|
362
|
+
0% {
|
363
|
+
|
364
|
+
}
|
365
|
+
|
366
|
+
50% {
|
367
|
+
background-color: transparent;
|
368
|
+
}
|
369
|
+
|
370
|
+
100% {
|
371
|
+
|
372
|
+
}
|
373
|
+
}
|
374
|
+
|
375
|
+
@keyframes blink {
|
376
|
+
0% {
|
377
|
+
|
378
|
+
}
|
379
|
+
|
380
|
+
50% {
|
381
|
+
background-color: transparent;
|
382
|
+
}
|
383
|
+
|
384
|
+
100% {
|
385
|
+
|
386
|
+
}
|
387
|
+
}
|
388
|
+
|
389
|
+
/* Can style cursor different in overwrite (non-insert) mode */
|
390
|
+
|
391
|
+
|
392
|
+
|
393
|
+
.amis-scope .cm-tab {
|
394
|
+
display: inline-block;
|
395
|
+
text-decoration: inherit;
|
396
|
+
}
|
397
|
+
|
398
|
+
.amis-scope .CodeMirror-rulers {
|
399
|
+
position: absolute;
|
400
|
+
left: 0;
|
401
|
+
right: 0;
|
402
|
+
top: -50px;
|
403
|
+
bottom: 0;
|
404
|
+
overflow: hidden;
|
405
|
+
}
|
406
|
+
|
407
|
+
.amis-scope .CodeMirror-ruler {
|
408
|
+
border-left: 1px solid #ccc;
|
409
|
+
top: 0;
|
410
|
+
bottom: 0;
|
411
|
+
position: absolute;
|
412
|
+
}
|
413
|
+
|
414
|
+
/* DEFAULT THEME */
|
415
|
+
|
416
|
+
.amis-scope .cm-s-default .cm-header {
|
417
|
+
color: blue;
|
418
|
+
}
|
419
|
+
|
420
|
+
.amis-scope .cm-s-default .cm-quote {
|
421
|
+
color: #090;
|
422
|
+
}
|
423
|
+
|
424
|
+
.amis-scope .cm-negative {
|
425
|
+
color: #d44;
|
426
|
+
}
|
427
|
+
|
428
|
+
.amis-scope .cm-positive {
|
429
|
+
color: #292;
|
430
|
+
}
|
431
|
+
|
432
|
+
.amis-scope .cm-header,
|
433
|
+
.amis-scope .cm-strong {
|
434
|
+
font-weight: bold;
|
435
|
+
}
|
436
|
+
|
437
|
+
.amis-scope .cm-em {
|
438
|
+
font-style: italic;
|
439
|
+
}
|
440
|
+
|
441
|
+
.amis-scope .cm-link {
|
442
|
+
text-decoration: underline;
|
443
|
+
}
|
444
|
+
|
445
|
+
.amis-scope .cm-strikethrough {
|
446
|
+
text-decoration: line-through;
|
447
|
+
}
|
448
|
+
|
449
|
+
.amis-scope .cm-s-default .cm-keyword {
|
450
|
+
color: #708;
|
451
|
+
}
|
452
|
+
|
453
|
+
.amis-scope .cm-s-default .cm-atom {
|
454
|
+
color: #219;
|
455
|
+
}
|
456
|
+
|
457
|
+
.amis-scope .cm-s-default .cm-number {
|
458
|
+
color: #164;
|
459
|
+
}
|
460
|
+
|
461
|
+
.amis-scope .cm-s-default .cm-def {
|
462
|
+
color: #00f;
|
463
|
+
}
|
464
|
+
|
465
|
+
|
466
|
+
|
467
|
+
.amis-scope .cm-s-default .cm-variable-2 {
|
468
|
+
color: #05a;
|
469
|
+
}
|
470
|
+
|
471
|
+
.amis-scope .cm-s-default .cm-variable-3,
|
472
|
+
.amis-scope .cm-s-default .cm-type {
|
473
|
+
color: #085;
|
474
|
+
}
|
475
|
+
|
476
|
+
.amis-scope .cm-s-default .cm-comment {
|
477
|
+
color: #a50;
|
478
|
+
}
|
479
|
+
|
480
|
+
.amis-scope .cm-s-default .cm-string {
|
481
|
+
color: #a11;
|
482
|
+
}
|
483
|
+
|
484
|
+
.amis-scope .cm-s-default .cm-string-2 {
|
485
|
+
color: #f50;
|
486
|
+
}
|
487
|
+
|
488
|
+
.amis-scope .cm-s-default .cm-meta {
|
489
|
+
color: #555;
|
490
|
+
}
|
491
|
+
|
492
|
+
.amis-scope .cm-s-default .cm-qualifier {
|
493
|
+
color: #555;
|
494
|
+
}
|
495
|
+
|
496
|
+
.amis-scope .cm-s-default .cm-builtin {
|
497
|
+
color: #30a;
|
498
|
+
}
|
499
|
+
|
500
|
+
.amis-scope .cm-s-default .cm-bracket {
|
501
|
+
color: #997;
|
502
|
+
}
|
503
|
+
|
504
|
+
.amis-scope .cm-s-default .cm-tag {
|
505
|
+
color: #170;
|
506
|
+
}
|
507
|
+
|
508
|
+
.amis-scope .cm-s-default .cm-attribute {
|
509
|
+
color: #00c;
|
510
|
+
}
|
511
|
+
|
512
|
+
.amis-scope .cm-s-default .cm-hr {
|
513
|
+
color: #999;
|
514
|
+
}
|
515
|
+
|
516
|
+
.amis-scope .cm-s-default .cm-link {
|
517
|
+
color: #00c;
|
518
|
+
}
|
519
|
+
|
520
|
+
.amis-scope .cm-s-default .cm-error {
|
521
|
+
color: #f00;
|
522
|
+
}
|
523
|
+
|
524
|
+
.amis-scope .cm-invalidchar {
|
525
|
+
color: #f00;
|
526
|
+
}
|
527
|
+
|
528
|
+
.amis-scope .CodeMirror-composing {
|
529
|
+
border-bottom: 2px solid;
|
530
|
+
}
|
531
|
+
|
532
|
+
/* Default styles for common addons */
|
533
|
+
|
534
|
+
.amis-scope div.CodeMirror span.CodeMirror-matchingbracket {
|
535
|
+
color: #0b0;
|
536
|
+
}
|
537
|
+
|
538
|
+
.amis-scope div.CodeMirror span.CodeMirror-nonmatchingbracket {
|
539
|
+
color: #a22;
|
540
|
+
}
|
541
|
+
|
542
|
+
.amis-scope .CodeMirror-matchingtag {
|
543
|
+
background: rgba(255, 150, 0, .3);
|
544
|
+
}
|
545
|
+
|
546
|
+
.amis-scope .CodeMirror-activeline-background {
|
547
|
+
background: #e8f2ff;
|
548
|
+
}
|
549
|
+
|
550
|
+
/* STOP */
|
551
|
+
|
552
|
+
/* The rest of this file contains styles related to the mechanics of
|
553
|
+
the editor. You probably shouldn't touch them. */
|
554
|
+
|
555
|
+
.amis-scope .CodeMirror {
|
556
|
+
position: relative;
|
557
|
+
overflow: hidden;
|
558
|
+
background: white;
|
559
|
+
}
|
560
|
+
|
561
|
+
.amis-scope .CodeMirror-scroll {
|
562
|
+
overflow: scroll !important;
|
563
|
+
/* Things will break if this is overridden */
|
564
|
+
/* 50px is the magic margin used to hide the element's real scrollbars */
|
565
|
+
/* See overflow: hidden in .CodeMirror */
|
566
|
+
margin-bottom: -50px;
|
567
|
+
margin-right: -50px;
|
568
|
+
padding-bottom: 50px;
|
569
|
+
height: 100%;
|
570
|
+
outline: none;
|
571
|
+
/* Prevent dragging from highlighting the element */
|
572
|
+
position: relative;
|
573
|
+
}
|
574
|
+
|
575
|
+
.amis-scope .CodeMirror-sizer {
|
576
|
+
position: relative;
|
577
|
+
border-right: 50px solid transparent;
|
578
|
+
}
|
579
|
+
|
580
|
+
/* The fake, visible scrollbars. Used to force redraw during scrolling
|
581
|
+
before actual scrolling happens, thus preventing shaking and
|
582
|
+
flickering artifacts. */
|
583
|
+
|
584
|
+
.amis-scope .CodeMirror-vscrollbar,
|
585
|
+
.amis-scope .CodeMirror-hscrollbar,
|
586
|
+
.amis-scope .CodeMirror-scrollbar-filler,
|
587
|
+
.amis-scope .CodeMirror-gutter-filler {
|
588
|
+
position: absolute;
|
589
|
+
z-index: 6;
|
590
|
+
display: none;
|
591
|
+
outline: none;
|
592
|
+
}
|
593
|
+
|
594
|
+
.amis-scope .CodeMirror-vscrollbar {
|
595
|
+
right: 0;
|
596
|
+
top: 0;
|
597
|
+
overflow-x: hidden;
|
598
|
+
overflow-y: scroll;
|
599
|
+
}
|
600
|
+
|
601
|
+
.amis-scope .CodeMirror-hscrollbar {
|
602
|
+
bottom: 0;
|
603
|
+
left: 0;
|
604
|
+
overflow-y: hidden;
|
605
|
+
overflow-x: scroll;
|
606
|
+
}
|
607
|
+
|
608
|
+
.amis-scope .CodeMirror-scrollbar-filler {
|
609
|
+
right: 0;
|
610
|
+
bottom: 0;
|
611
|
+
}
|
612
|
+
|
613
|
+
.amis-scope .CodeMirror-gutter-filler {
|
614
|
+
left: 0;
|
615
|
+
bottom: 0;
|
616
|
+
}
|
617
|
+
|
618
|
+
.amis-scope .CodeMirror-gutters {
|
619
|
+
position: absolute;
|
620
|
+
left: 0;
|
621
|
+
top: 0;
|
622
|
+
min-height: 100%;
|
623
|
+
z-index: 3;
|
624
|
+
}
|
625
|
+
|
626
|
+
.amis-scope .CodeMirror-gutter {
|
627
|
+
white-space: normal;
|
628
|
+
height: 100%;
|
629
|
+
display: inline-block;
|
630
|
+
vertical-align: top;
|
631
|
+
margin-bottom: -50px;
|
632
|
+
}
|
633
|
+
|
634
|
+
.amis-scope .CodeMirror-gutter-wrapper {
|
635
|
+
position: absolute;
|
636
|
+
z-index: 4;
|
637
|
+
background: none !important;
|
638
|
+
border: none !important;
|
639
|
+
}
|
640
|
+
|
641
|
+
.amis-scope .CodeMirror-gutter-background {
|
642
|
+
position: absolute;
|
643
|
+
top: 0;
|
644
|
+
bottom: 0;
|
645
|
+
z-index: 4;
|
646
|
+
}
|
647
|
+
|
648
|
+
.amis-scope .CodeMirror-gutter-elt {
|
649
|
+
position: absolute;
|
650
|
+
cursor: default;
|
651
|
+
z-index: 4;
|
652
|
+
}
|
653
|
+
|
654
|
+
.amis-scope .CodeMirror-gutter-wrapper ::selection {
|
655
|
+
background-color: transparent;
|
656
|
+
}
|
657
|
+
|
658
|
+
.amis-scope .CodeMirror-gutter-wrapper ::-moz-selection {
|
659
|
+
background-color: transparent;
|
660
|
+
}
|
661
|
+
|
662
|
+
.amis-scope .CodeMirror-lines {
|
663
|
+
cursor: text;
|
664
|
+
min-height: 1px;
|
665
|
+
/* prevents collapsing before first draw */
|
666
|
+
}
|
667
|
+
|
668
|
+
.amis-scope .CodeMirror pre.CodeMirror-line,
|
669
|
+
.amis-scope .CodeMirror pre.CodeMirror-line-like {
|
670
|
+
/* Reset some styles that the rest of the page might have set */
|
671
|
+
-moz-border-radius: 0;
|
672
|
+
-webkit-border-radius: 0;
|
673
|
+
border-radius: 0;
|
674
|
+
border-width: 0;
|
675
|
+
background: transparent;
|
676
|
+
font-family: inherit;
|
677
|
+
font-size: inherit;
|
678
|
+
margin: 0;
|
679
|
+
white-space: pre;
|
680
|
+
word-wrap: normal;
|
681
|
+
line-height: inherit;
|
682
|
+
color: inherit;
|
683
|
+
z-index: 2;
|
684
|
+
position: relative;
|
685
|
+
overflow: visible;
|
686
|
+
-webkit-tap-highlight-color: transparent;
|
687
|
+
-webkit-font-variant-ligatures: contextual;
|
688
|
+
font-variant-ligatures: contextual;
|
689
|
+
}
|
690
|
+
|
691
|
+
.amis-scope .CodeMirror-wrap pre.CodeMirror-line,
|
692
|
+
.amis-scope .CodeMirror-wrap pre.CodeMirror-line-like {
|
693
|
+
word-wrap: break-word;
|
694
|
+
white-space: pre-wrap;
|
695
|
+
word-break: normal;
|
696
|
+
}
|
697
|
+
|
698
|
+
.amis-scope .CodeMirror-linebackground {
|
699
|
+
position: absolute;
|
700
|
+
left: 0;
|
701
|
+
right: 0;
|
702
|
+
top: 0;
|
703
|
+
bottom: 0;
|
704
|
+
z-index: 0;
|
705
|
+
}
|
706
|
+
|
707
|
+
.amis-scope .CodeMirror-linewidget {
|
708
|
+
position: relative;
|
709
|
+
z-index: 2;
|
710
|
+
padding: 0.1px;
|
711
|
+
/* Force widget margins to stay inside of the container */
|
712
|
+
}
|
713
|
+
|
714
|
+
|
715
|
+
|
716
|
+
.amis-scope .CodeMirror-rtl pre {
|
717
|
+
direction: rtl;
|
718
|
+
}
|
719
|
+
|
720
|
+
.amis-scope .CodeMirror-code {
|
721
|
+
outline: none;
|
722
|
+
}
|
723
|
+
|
724
|
+
/* Force content-box sizing for the elements where we expect it */
|
725
|
+
|
726
|
+
.amis-scope .CodeMirror-scroll,
|
727
|
+
.amis-scope .CodeMirror-sizer,
|
728
|
+
.amis-scope .CodeMirror-gutter,
|
729
|
+
.amis-scope .CodeMirror-gutters,
|
730
|
+
.amis-scope .CodeMirror-linenumber {
|
731
|
+
-moz-box-sizing: content-box;
|
732
|
+
box-sizing: content-box;
|
733
|
+
}
|
734
|
+
|
735
|
+
.amis-scope .CodeMirror-measure {
|
736
|
+
position: absolute;
|
737
|
+
width: 100%;
|
738
|
+
height: 0;
|
739
|
+
overflow: hidden;
|
740
|
+
visibility: hidden;
|
741
|
+
}
|
742
|
+
|
743
|
+
.amis-scope .CodeMirror-cursor {
|
744
|
+
position: absolute;
|
745
|
+
pointer-events: none;
|
746
|
+
}
|
747
|
+
|
748
|
+
.amis-scope .CodeMirror-measure pre {
|
749
|
+
position: static;
|
750
|
+
}
|
751
|
+
|
752
|
+
.amis-scope div.CodeMirror-cursors {
|
753
|
+
visibility: hidden;
|
754
|
+
position: relative;
|
755
|
+
z-index: 3;
|
756
|
+
}
|
757
|
+
|
758
|
+
.amis-scope div.CodeMirror-dragcursors {
|
759
|
+
visibility: visible;
|
760
|
+
}
|
761
|
+
|
762
|
+
.amis-scope .CodeMirror-focused div.CodeMirror-cursors {
|
763
|
+
visibility: visible;
|
764
|
+
}
|
765
|
+
|
766
|
+
.amis-scope .CodeMirror-selected {
|
767
|
+
background: #d9d9d9;
|
768
|
+
}
|
769
|
+
|
770
|
+
.amis-scope .CodeMirror-focused .CodeMirror-selected {
|
771
|
+
background: #d7d4f0;
|
772
|
+
}
|
773
|
+
|
774
|
+
.amis-scope .CodeMirror-crosshair {
|
775
|
+
cursor: crosshair;
|
776
|
+
}
|
777
|
+
|
778
|
+
.amis-scope .CodeMirror-line::selection,
|
779
|
+
.amis-scope .CodeMirror-line > span::selection,
|
780
|
+
.amis-scope .CodeMirror-line > span > span::selection {
|
781
|
+
background: #d7d4f0;
|
782
|
+
}
|
783
|
+
|
784
|
+
.amis-scope .CodeMirror-line::-moz-selection,
|
785
|
+
.amis-scope .CodeMirror-line > span::-moz-selection,
|
786
|
+
.amis-scope .CodeMirror-line > span > span::-moz-selection {
|
787
|
+
background: #d7d4f0;
|
788
|
+
}
|
789
|
+
|
790
|
+
.amis-scope .cm-searching {
|
791
|
+
background-color: #ffa;
|
792
|
+
background-color: rgba(255, 255, 0, .4);
|
793
|
+
}
|
794
|
+
|
795
|
+
/* Used to force a border model for a node */
|
796
|
+
|
797
|
+
.amis-scope .cm-force-border {
|
798
|
+
padding-right: .1px;
|
799
|
+
}
|
800
|
+
|
801
|
+
@media print {
|
802
|
+
/* Hide the cursor when printing */
|
803
|
+
|
804
|
+
.amis-scope .CodeMirror div.CodeMirror-cursors {
|
805
|
+
visibility: hidden;
|
806
|
+
}
|
807
|
+
}
|
808
|
+
|
809
|
+
/* See issue #2901 */
|
810
|
+
|
811
|
+
.amis-scope .cm-tab-wrap-hack:after {
|
812
|
+
content: '';
|
813
|
+
}
|
814
|
+
|
815
|
+
/* Help users use markselection to safely style text background */
|
816
|
+
|
817
|
+
.amis-scope span.CodeMirror-selectedtext {
|
818
|
+
background: none;
|
819
|
+
}
|
820
|
+
|
252
821
|
/*!
|
253
822
|
* Cropper.js v1.5.12
|
254
823
|
* https://fengyuanchen.github.io/cropperjs
|
@@ -22775,6 +23344,135 @@ readers do not read off random characters that represent icons */
|
|
22775
23344
|
margin-top: -0.25rem;
|
22776
23345
|
}
|
22777
23346
|
|
23347
|
+
@keyframes PopUpIn {
|
23348
|
+
from {
|
23349
|
+
height: 0;
|
23350
|
+
}
|
23351
|
+
}
|
23352
|
+
|
23353
|
+
@keyframes PopUpOut {
|
23354
|
+
to {
|
23355
|
+
height: 0;
|
23356
|
+
}
|
23357
|
+
}
|
23358
|
+
|
23359
|
+
@keyframes PopUpOpacityIn {
|
23360
|
+
from {
|
23361
|
+
opacity: 0;
|
23362
|
+
}
|
23363
|
+
}
|
23364
|
+
|
23365
|
+
@keyframes PopUpOpacityOut {
|
23366
|
+
to {
|
23367
|
+
opacity: 0;
|
23368
|
+
}
|
23369
|
+
}
|
23370
|
+
|
23371
|
+
.amis-scope .cxd-PopUp {
|
23372
|
+
width: 100%;
|
23373
|
+
position: fixed;
|
23374
|
+
background: white;
|
23375
|
+
left: 0;
|
23376
|
+
bottom: 0;
|
23377
|
+
z-index: 1300;
|
23378
|
+
padding: 0;
|
23379
|
+
margin: 0;
|
23380
|
+
font-weight: 400;
|
23381
|
+
letter-spacing: normal;
|
23382
|
+
line-height: 1.5;
|
23383
|
+
text-align: left;
|
23384
|
+
text-align: start;
|
23385
|
+
text-decoration: none;
|
23386
|
+
text-shadow: none;
|
23387
|
+
text-transform: none;
|
23388
|
+
white-space: normal;
|
23389
|
+
word-break: normal;
|
23390
|
+
word-spacing: normal;
|
23391
|
+
word-wrap: normal;
|
23392
|
+
font-size: 0.875rem;
|
23393
|
+
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
23394
|
+
border: 0.0625rem solid #eceff8;
|
23395
|
+
border-radius: 0.25rem;
|
23396
|
+
overflow: hidden;
|
23397
|
+
}
|
23398
|
+
|
23399
|
+
.amis-scope .cxd-PopUp.in,
|
23400
|
+
.amis-scope .cxd-PopUp.out {
|
23401
|
+
animation-duration: 0s;
|
23402
|
+
animation-fill-mode: both;
|
23403
|
+
}
|
23404
|
+
|
23405
|
+
.amis-scope .cxd-PopUp.in {
|
23406
|
+
animation-name: PopUpIn;
|
23407
|
+
}
|
23408
|
+
|
23409
|
+
.amis-scope .cxd-PopUp.in .cxd-PopUp-overlay {
|
23410
|
+
animation-name: PopUpOpacityIn;
|
23411
|
+
}
|
23412
|
+
|
23413
|
+
.amis-scope .cxd-PopUp.out {
|
23414
|
+
animation-name: PopUpOut;
|
23415
|
+
}
|
23416
|
+
|
23417
|
+
.amis-scope .cxd-PopUp.out .cxd-PopUp-overlay {
|
23418
|
+
animation-name: PopUpOpacityOut;
|
23419
|
+
}
|
23420
|
+
|
23421
|
+
.amis-scope .cxd-PopUp-inner {
|
23422
|
+
position: relative;
|
23423
|
+
overflow: hidden;
|
23424
|
+
height: 100%;
|
23425
|
+
box-sizing: border-box;
|
23426
|
+
background: #fff;
|
23427
|
+
padding-top: 2.25rem;
|
23428
|
+
}
|
23429
|
+
|
23430
|
+
.amis-scope .cxd-PopUp-closeWrap {
|
23431
|
+
width: 100%;
|
23432
|
+
position: absolute !important;
|
23433
|
+
left: 0;
|
23434
|
+
top: 0;
|
23435
|
+
}
|
23436
|
+
|
23437
|
+
.amis-scope .cxd-PopUp-close {
|
23438
|
+
width: 2.125rem !important;
|
23439
|
+
height: 2.125rem !important;
|
23440
|
+
padding: 0.75rem;
|
23441
|
+
cursor: pointer;
|
23442
|
+
}
|
23443
|
+
|
23444
|
+
.amis-scope .cxd-PopUp-content {
|
23445
|
+
overflow-y: auto;
|
23446
|
+
height: 100%;
|
23447
|
+
display: flex;
|
23448
|
+
}
|
23449
|
+
|
23450
|
+
.amis-scope .cxd-PopUp > * {
|
23451
|
+
position: relative;
|
23452
|
+
z-index: 2;
|
23453
|
+
}
|
23454
|
+
|
23455
|
+
.amis-scope .cxd-PopUp-overlay {
|
23456
|
+
position: fixed !important;
|
23457
|
+
top: 0;
|
23458
|
+
left: 0;
|
23459
|
+
right: 0;
|
23460
|
+
z-index: 1;
|
23461
|
+
bottom: 0;
|
23462
|
+
background: rgba(0, 0, 0, 0.3);
|
23463
|
+
opacity: 1;
|
23464
|
+
animation-duration: 0s;
|
23465
|
+
animation-fill-mode: both;
|
23466
|
+
}
|
23467
|
+
|
23468
|
+
.amis-scope .cxd-PopUp--leftBottomLeftTop {
|
23469
|
+
margin-top: 0.25rem;
|
23470
|
+
}
|
23471
|
+
|
23472
|
+
.amis-scope .cxd-PopUp--leftTopLeftBottom {
|
23473
|
+
margin-top: -0.25rem;
|
23474
|
+
}
|
23475
|
+
|
22778
23476
|
.amis-scope .cxd-PickerColumns {
|
22779
23477
|
position: relative;
|
22780
23478
|
background-color: white;
|
@@ -26654,7 +27352,7 @@ readers do not read off random characters that represent icons */
|
|
26654
27352
|
}
|
26655
27353
|
|
26656
27354
|
.amis-scope .cxd-Table-table > tbody > tr.is-checked {
|
26657
|
-
background:
|
27355
|
+
background: #f0faff;
|
26658
27356
|
border-color: #eceff8;
|
26659
27357
|
color: #333;
|
26660
27358
|
}
|
@@ -30899,6 +31597,42 @@ readers do not read off random characters that represent icons */
|
|
30899
31597
|
border: 1px solid #2468f2;
|
30900
31598
|
}
|
30901
31599
|
|
31600
|
+
.amis-scope .cxd-Steps-mobile.cxd-Steps--horizontal .cxd-StepsItem-containerWrapper .cxd-StepsItem-body .cxd-StepsItem-title::after {
|
31601
|
+
display: none !important;
|
31602
|
+
}
|
31603
|
+
|
31604
|
+
.amis-scope .cxd-Steps-mobile.cxd-Steps--horizontal .cxd-StepsItem-containerWrapper .cxd-StepsItem-body .cxd-StepsItem-title .cxd-StepsItem-subTitle {
|
31605
|
+
padding-left: 0.3125rem;
|
31606
|
+
}
|
31607
|
+
|
31608
|
+
.amis-scope .cxd-Steps-mobile.cxd-Steps--horizontal .cxd-StepsItem-containerIcon {
|
31609
|
+
position: relative;
|
31610
|
+
display: block;
|
31611
|
+
}
|
31612
|
+
|
31613
|
+
.amis-scope .cxd-Steps-mobile.cxd-Steps--horizontal .cxd-StepsItem-containerIcon:after {
|
31614
|
+
content: "";
|
31615
|
+
position: absolute;
|
31616
|
+
right: 0;
|
31617
|
+
top: 0.9375rem;
|
31618
|
+
height: 1px;
|
31619
|
+
left: 2.5rem;
|
31620
|
+
width: 99999px;
|
31621
|
+
background-color: #b4bbc5;
|
31622
|
+
}
|
31623
|
+
|
31624
|
+
.amis-scope .cxd-Steps-mobile.cxd-Steps--horizontal .cxd-StepsItem-containerIcon.is-success:after {
|
31625
|
+
background-color: #2468f2;
|
31626
|
+
}
|
31627
|
+
|
31628
|
+
.amis-scope .cxd-Steps-mobile.cxd-Steps--horizontal .cxd-StepsItem:last-child {
|
31629
|
+
flex: 1;
|
31630
|
+
}
|
31631
|
+
|
31632
|
+
.amis-scope .cxd-Steps-mobile.cxd-Steps--horizontal .cxd-StepsItem:last-child .cxd-StepsItem-containerIcon:after {
|
31633
|
+
display: none !important;
|
31634
|
+
}
|
31635
|
+
|
30902
31636
|
.amis-scope .cxd-Portlet {
|
30903
31637
|
border: 0.0625rem solid #eceff8;
|
30904
31638
|
border-radius: 0.25rem;
|
@@ -33614,6 +34348,10 @@ readers do not read off random characters that represent icons */
|
|
33614
34348
|
border-radius: 0.25rem;
|
33615
34349
|
}
|
33616
34350
|
|
34351
|
+
.amis-scope .cxd-ColorPicker-popup {
|
34352
|
+
height: 80vh;
|
34353
|
+
}
|
34354
|
+
|
33617
34355
|
.amis-scope .cxd-ColorPicker:not(.is-disabled) {
|
33618
34356
|
cursor: pointer;
|
33619
34357
|
}
|
@@ -33878,6 +34616,10 @@ readers do not read off random characters that represent icons */
|
|
33878
34616
|
margin: -0.125rem 0 0;
|
33879
34617
|
}
|
33880
34618
|
|
34619
|
+
.amis-scope .cxd-DatePicker-popup {
|
34620
|
+
height: 80vh;
|
34621
|
+
}
|
34622
|
+
|
33881
34623
|
.amis-scope .rdt {
|
33882
34624
|
user-select: none;
|
33883
34625
|
font-size: 0.875rem;
|
@@ -34425,6 +35167,10 @@ readers do not read off random characters that represent icons */
|
|
34425
35167
|
margin: -0.125rem 0 0;
|
34426
35168
|
}
|
34427
35169
|
|
35170
|
+
.amis-scope .cxd-DateRangePicker-popup {
|
35171
|
+
height: 90vh;
|
35172
|
+
}
|
35173
|
+
|
34428
35174
|
@media (min-width: 576px) {
|
34429
35175
|
.amis-scope .cxd-DateRangePicker-wrap {
|
34430
35176
|
white-space: nowrap;
|
@@ -35767,6 +36513,10 @@ readers do not read off random characters that represent icons */
|
|
35767
36513
|
background: #ffffff;
|
35768
36514
|
}
|
35769
36515
|
|
36516
|
+
.amis-scope .cxd-TreeSelect-popup {
|
36517
|
+
height: 80vh;
|
36518
|
+
}
|
36519
|
+
|
35770
36520
|
.amis-scope .cxd-TreeSelect-popover {
|
35771
36521
|
background: transparent;
|
35772
36522
|
border: none;
|
@@ -36611,25 +37361,52 @@ readers do not read off random characters that represent icons */
|
|
36611
37361
|
}
|
36612
37362
|
|
36613
37363
|
.amis-scope .cxd-Rating {
|
37364
|
+
display: flex;
|
36614
37365
|
position: relative;
|
37366
|
+
align-items: center;
|
37367
|
+
justify-content: flex-start;
|
37368
|
+
flex-flow: row wrap;
|
37369
|
+
}
|
37370
|
+
|
37371
|
+
.amis-scope .cxd-Rating > ul {
|
37372
|
+
display: flex;
|
37373
|
+
padding: unset;
|
37374
|
+
margin: unset;
|
37375
|
+
align-items: center;
|
37376
|
+
justify-content: flex-start;
|
37377
|
+
flex-flow: row wrap;
|
37378
|
+
}
|
37379
|
+
|
37380
|
+
.amis-scope .cxd-Rating-star {
|
37381
|
+
position: relative;
|
37382
|
+
margin-right: 0.5rem;
|
36615
37383
|
overflow: hidden;
|
36616
37384
|
display: block;
|
36617
|
-
float: left;
|
36618
37385
|
font-size: 1.5rem;
|
36619
|
-
|
37386
|
+
line-height: 1;
|
36620
37387
|
cursor: pointer;
|
37388
|
+
user-select: none;
|
37389
|
+
color: #e6e6e8;
|
36621
37390
|
}
|
36622
37391
|
|
36623
|
-
.amis-scope .cxd-Rating
|
36624
|
-
|
37392
|
+
.amis-scope .cxd-Rating-star-half > svg.icon,
|
37393
|
+
.amis-scope .cxd-Rating-star > svg.icon {
|
37394
|
+
display: block;
|
37395
|
+
width: 1.5rem;
|
37396
|
+
height: 1.5rem;
|
37397
|
+
top: 0;
|
37398
|
+
}
|
37399
|
+
|
37400
|
+
.amis-scope .cxd-Rating-star:last-of-type {
|
37401
|
+
margin-right: 0;
|
36625
37402
|
}
|
36626
37403
|
|
36627
|
-
.amis-scope .cxd-Rating.is-disabled {
|
37404
|
+
.amis-scope .cxd-Rating-star.is-disabled {
|
36628
37405
|
cursor: not-allowed;
|
36629
37406
|
pointer-events: none;
|
36630
37407
|
}
|
36631
37408
|
|
36632
|
-
.amis-scope .cxd-Rating-half
|
37409
|
+
.amis-scope .cxd-Rating-star-half {
|
36633
37410
|
position: absolute;
|
36634
37411
|
overflow: hidden;
|
36635
37412
|
display: block;
|
@@ -36637,8 +37414,20 @@ readers do not read off random characters that represent icons */
|
|
36637
37414
|
top: 0;
|
36638
37415
|
left: 0;
|
36639
37416
|
width: 50%;
|
36640
|
-
|
36641
|
-
|
37417
|
+
}
|
37418
|
+
|
37419
|
+
.amis-scope .cxd-Rating-text {
|
37420
|
+
font-size: 0.75rem;
|
37421
|
+
color: #151a26;
|
37422
|
+
font-weight: 400;
|
37423
|
+
}
|
37424
|
+
|
37425
|
+
.amis-scope .cxd-Rating-text--left {
|
37426
|
+
margin-right: 0.5rem;
|
37427
|
+
}
|
37428
|
+
|
37429
|
+
.amis-scope .cxd-Rating-text--right {
|
37430
|
+
margin-left: 0.5rem;
|
36642
37431
|
}
|
36643
37432
|
|
36644
37433
|
.amis-scope .cxd-RatingControl {
|
@@ -38088,6 +38877,131 @@ readers do not read off random characters that represent icons */
|
|
38088
38877
|
margin-right: 0;
|
38089
38878
|
}
|
38090
38879
|
|
38880
|
+
.amis-scope .cxd-FormulaEditor {
|
38881
|
+
overflow: visible;
|
38882
|
+
max-width: 100%;
|
38883
|
+
box-sizing: content-box;
|
38884
|
+
}
|
38885
|
+
|
38886
|
+
.amis-scope .cxd-FormulaEditor-header {
|
38887
|
+
width: 100%;
|
38888
|
+
height: 2.5rem;
|
38889
|
+
line-height: 2.5rem;
|
38890
|
+
padding-left: 0.625rem;
|
38891
|
+
box-sizing: border-box;
|
38892
|
+
background: #f3f8fb;
|
38893
|
+
}
|
38894
|
+
|
38895
|
+
.amis-scope .cxd-FormulaEditor-editor {
|
38896
|
+
min-height: 14.875rem;
|
38897
|
+
max-height: 20rem;
|
38898
|
+
height: auto;
|
38899
|
+
border: 0.0625rem solid #dadbdd;
|
38900
|
+
}
|
38901
|
+
|
38902
|
+
.amis-scope .cxd-FormulaEditor.is-error .cxd-FormulaEditor-editor {
|
38903
|
+
border-color: #e8684a;
|
38904
|
+
}
|
38905
|
+
|
38906
|
+
.amis-scope .cxd-FormulaEditor.is-focused .cxd-FormulaEditor-editor {
|
38907
|
+
border-color: #1c53c1;
|
38908
|
+
}
|
38909
|
+
|
38910
|
+
.amis-scope .cxd-FormulaEditor-settings {
|
38911
|
+
display: flex;
|
38912
|
+
flex-direction: row;
|
38913
|
+
align-items: stretch;
|
38914
|
+
justify-content: space-between;
|
38915
|
+
max-height: 21.875rem;
|
38916
|
+
margin: 0 -5px;
|
38917
|
+
}
|
38918
|
+
|
38919
|
+
.amis-scope .cxd-FormulaEditor-settings > div {
|
38920
|
+
flex: 1;
|
38921
|
+
padding: 0 5px;
|
38922
|
+
display: flex;
|
38923
|
+
flex-direction: column;
|
38924
|
+
}
|
38925
|
+
|
38926
|
+
.amis-scope .cxd-FormulaEditor-settings > div > h3 {
|
38927
|
+
padding: 10px 0;
|
38928
|
+
margin: 0;
|
38929
|
+
flex-shrink: 0;
|
38930
|
+
}
|
38931
|
+
|
38932
|
+
.amis-scope .cxd-FormulaEditor-settings > div > div {
|
38933
|
+
flex: 1;
|
38934
|
+
min-height: 0;
|
38935
|
+
}
|
38936
|
+
|
38937
|
+
.amis-scope .cxd-FormulaEditor .cm-field,
|
38938
|
+
.amis-scope .cxd-FormulaEditor .cm-func {
|
38939
|
+
border-radius: 2px;
|
38940
|
+
color: #fff;
|
38941
|
+
margin: 0 1px;
|
38942
|
+
padding: 0 2px;
|
38943
|
+
}
|
38944
|
+
|
38945
|
+
.amis-scope .cxd-FormulaEditor .cm-field {
|
38946
|
+
background: #007bff;
|
38947
|
+
}
|
38948
|
+
|
38949
|
+
.amis-scope .cxd-FormulaEditor .cm-func {
|
38950
|
+
background: #17a2b8;
|
38951
|
+
}
|
38952
|
+
|
38953
|
+
.amis-scope .cxd-FormulaFuncList {
|
38954
|
+
display: flex;
|
38955
|
+
flex-direction: column;
|
38956
|
+
}
|
38957
|
+
|
38958
|
+
.amis-scope .cxd-FormulaFuncList > .cxd-FormulaFuncList-searchBox {
|
38959
|
+
display: flex;
|
38960
|
+
width: auto;
|
38961
|
+
flex-shrink: 0;
|
38962
|
+
margin-bottom: 0.5rem;
|
38963
|
+
}
|
38964
|
+
|
38965
|
+
.amis-scope .cxd-FormulaFuncList-columns {
|
38966
|
+
flex: 1;
|
38967
|
+
min-height: 0;
|
38968
|
+
overflow: auto;
|
38969
|
+
display: flex;
|
38970
|
+
flex-direction: row;
|
38971
|
+
justify-content: flex-start;
|
38972
|
+
}
|
38973
|
+
|
38974
|
+
.amis-scope .cxd-FormulaFuncList-columns > div:first-child {
|
38975
|
+
min-width: 200px;
|
38976
|
+
flex-shrink: 0;
|
38977
|
+
}
|
38978
|
+
|
38979
|
+
.amis-scope .cxd-FormulaFuncList-funcItem {
|
38980
|
+
padding: 0 10px;
|
38981
|
+
cursor: pointer;
|
38982
|
+
}
|
38983
|
+
|
38984
|
+
.amis-scope .cxd-FormulaFuncList-funcItem.is-active {
|
38985
|
+
color: #2468f2;
|
38986
|
+
}
|
38987
|
+
|
38988
|
+
.amis-scope .cxd-FormulaFuncList-groupTitle {
|
38989
|
+
padding: 5px 0;
|
38990
|
+
background: transparent;
|
38991
|
+
}
|
38992
|
+
|
38993
|
+
.amis-scope .cxd-FormulaFuncList-groupBody > div {
|
38994
|
+
padding: 5px 0;
|
38995
|
+
}
|
38996
|
+
|
38997
|
+
.amis-scope .cxd-FormulaFuncList-funcDetail {
|
38998
|
+
padding: 10px 20px;
|
38999
|
+
}
|
39000
|
+
|
39001
|
+
.amis-scope .cxd-FormulaPicker-icon {
|
39002
|
+
margin-left: auto;
|
39003
|
+
}
|
39004
|
+
|
38091
39005
|
/*
|
38092
39006
|
* utilities
|
38093
39007
|
*/
|