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/lib/themes/ang-ie11.css
CHANGED
@@ -1048,7 +1048,9 @@
|
|
1048
1048
|
--ResultBox-value--onHover-bg: rgba(0, 145, 255, 0.1);
|
1049
1049
|
--ResultBox-value-bg: #f5f5f5;
|
1050
1050
|
--ResultBox-value-color: #000;
|
1051
|
-
--Rating-
|
1051
|
+
--Rating-inactive-color: #e6e6e8;
|
1052
|
+
--Rating-star-margin: 0.5rem;
|
1053
|
+
--Rating-star-size: 1.5rem;
|
1052
1054
|
--Satus-icon-width: var(--gap-lg);
|
1053
1055
|
--Satus-icon-height: var(--Satus-icon-width);
|
1054
1056
|
--Sparkline-line-color: var(--info);
|
@@ -4499,6 +4501,117 @@ input[type=button].a-Button--block {
|
|
4499
4501
|
margin-top: -0.25rem;
|
4500
4502
|
}
|
4501
4503
|
|
4504
|
+
@keyframes PopUpIn {
|
4505
|
+
from {
|
4506
|
+
height: 0;
|
4507
|
+
}
|
4508
|
+
}
|
4509
|
+
@keyframes PopUpOut {
|
4510
|
+
to {
|
4511
|
+
height: 0;
|
4512
|
+
}
|
4513
|
+
}
|
4514
|
+
@keyframes PopUpOpacityIn {
|
4515
|
+
from {
|
4516
|
+
opacity: 0;
|
4517
|
+
}
|
4518
|
+
}
|
4519
|
+
@keyframes PopUpOpacityOut {
|
4520
|
+
to {
|
4521
|
+
opacity: 0;
|
4522
|
+
}
|
4523
|
+
}
|
4524
|
+
.a-PopUp {
|
4525
|
+
width: 100%;
|
4526
|
+
position: fixed;
|
4527
|
+
background: var(--PopOver-bg);
|
4528
|
+
left: 0;
|
4529
|
+
bottom: 0;
|
4530
|
+
z-index: 1300;
|
4531
|
+
padding: 0;
|
4532
|
+
margin: 0;
|
4533
|
+
font-weight: var(--fontWeightNormal);
|
4534
|
+
letter-spacing: normal;
|
4535
|
+
line-height: var(--lineHeightBase);
|
4536
|
+
text-align: left;
|
4537
|
+
text-align: start;
|
4538
|
+
text-decoration: none;
|
4539
|
+
text-shadow: none;
|
4540
|
+
text-transform: none;
|
4541
|
+
white-space: normal;
|
4542
|
+
word-break: normal;
|
4543
|
+
word-spacing: normal;
|
4544
|
+
word-wrap: normal;
|
4545
|
+
font-size: var(--fontSizeBase);
|
4546
|
+
box-shadow: var(--boxShadow);
|
4547
|
+
border: var(--borderWidth) solid var(--borderColor);
|
4548
|
+
border-radius: var(--borderRadius);
|
4549
|
+
overflow: hidden;
|
4550
|
+
}
|
4551
|
+
.a-PopUp.in, .a-PopUp.out {
|
4552
|
+
animation-duration: var(--animation-duration);
|
4553
|
+
animation-fill-mode: both;
|
4554
|
+
}
|
4555
|
+
.a-PopUp.in {
|
4556
|
+
animation-name: PopUpIn;
|
4557
|
+
}
|
4558
|
+
.a-PopUp.in .a-PopUp-overlay {
|
4559
|
+
animation-name: PopUpOpacityIn;
|
4560
|
+
}
|
4561
|
+
.a-PopUp.out {
|
4562
|
+
animation-name: PopUpOut;
|
4563
|
+
}
|
4564
|
+
.a-PopUp.out .a-PopUp-overlay {
|
4565
|
+
animation-name: PopUpOpacityOut;
|
4566
|
+
}
|
4567
|
+
.a-PopUp-inner {
|
4568
|
+
position: relative;
|
4569
|
+
overflow: hidden;
|
4570
|
+
height: 100%;
|
4571
|
+
box-sizing: border-box;
|
4572
|
+
background: #fff;
|
4573
|
+
padding-top: 2.25rem;
|
4574
|
+
}
|
4575
|
+
.a-PopUp-closeWrap {
|
4576
|
+
width: 100%;
|
4577
|
+
position: absolute !important;
|
4578
|
+
left: 0;
|
4579
|
+
top: 0;
|
4580
|
+
}
|
4581
|
+
.a-PopUp-close {
|
4582
|
+
width: 2.125rem !important;
|
4583
|
+
height: 2.125rem !important;
|
4584
|
+
padding: 0.75rem;
|
4585
|
+
cursor: pointer;
|
4586
|
+
}
|
4587
|
+
.a-PopUp-content {
|
4588
|
+
overflow-y: auto;
|
4589
|
+
height: 100%;
|
4590
|
+
display: flex;
|
4591
|
+
}
|
4592
|
+
.a-PopUp > * {
|
4593
|
+
position: relative;
|
4594
|
+
z-index: 2;
|
4595
|
+
}
|
4596
|
+
.a-PopUp-overlay {
|
4597
|
+
position: fixed !important;
|
4598
|
+
top: 0;
|
4599
|
+
left: 0;
|
4600
|
+
right: 0;
|
4601
|
+
z-index: 1;
|
4602
|
+
bottom: 0;
|
4603
|
+
background: rgba(0, 0, 0, 0.3);
|
4604
|
+
opacity: 1;
|
4605
|
+
animation-duration: var(--animation-duration);
|
4606
|
+
animation-fill-mode: both;
|
4607
|
+
}
|
4608
|
+
.a-PopUp--leftBottomLeftTop {
|
4609
|
+
margin-top: 0.25rem;
|
4610
|
+
}
|
4611
|
+
.a-PopUp--leftTopLeftBottom {
|
4612
|
+
margin-top: -0.25rem;
|
4613
|
+
}
|
4614
|
+
|
4502
4615
|
.a-PickerColumns {
|
4503
4616
|
position: relative;
|
4504
4617
|
background-color: var(--PickerColumns-bg);
|
@@ -11101,6 +11214,36 @@ input[type=button].a-Button--block {
|
|
11101
11214
|
border: 1px solid var(--Steps-status-success);
|
11102
11215
|
}
|
11103
11216
|
|
11217
|
+
.a-Steps-mobile.a-Steps--horizontal .a-StepsItem-containerWrapper .a-StepsItem-body .a-StepsItem-title::after {
|
11218
|
+
display: none !important;
|
11219
|
+
}
|
11220
|
+
.a-Steps-mobile.a-Steps--horizontal .a-StepsItem-containerWrapper .a-StepsItem-body .a-StepsItem-title .a-StepsItem-subTitle {
|
11221
|
+
padding-left: 0.3125rem;
|
11222
|
+
}
|
11223
|
+
.a-Steps-mobile.a-Steps--horizontal .a-StepsItem-containerIcon {
|
11224
|
+
position: relative;
|
11225
|
+
display: block;
|
11226
|
+
}
|
11227
|
+
.a-Steps-mobile.a-Steps--horizontal .a-StepsItem-containerIcon:after {
|
11228
|
+
content: "";
|
11229
|
+
position: absolute;
|
11230
|
+
right: 0;
|
11231
|
+
top: 0.9375rem;
|
11232
|
+
height: 1px;
|
11233
|
+
left: 2.5rem;
|
11234
|
+
width: 99999px;
|
11235
|
+
background-color: var(--Steps-line-bg);
|
11236
|
+
}
|
11237
|
+
.a-Steps-mobile.a-Steps--horizontal .a-StepsItem-containerIcon.is-success:after {
|
11238
|
+
background-color: var(--Steps-line-success-bg);
|
11239
|
+
}
|
11240
|
+
.a-Steps-mobile.a-Steps--horizontal .a-StepsItem:last-child {
|
11241
|
+
flex: 1;
|
11242
|
+
}
|
11243
|
+
.a-Steps-mobile.a-Steps--horizontal .a-StepsItem:last-child .a-StepsItem-containerIcon:after {
|
11244
|
+
display: none !important;
|
11245
|
+
}
|
11246
|
+
|
11104
11247
|
.a-Portlet {
|
11105
11248
|
border: var(--Portlet-borderWidth) var(--Portlet-borderStyle) var(--Portlet-borderColor);
|
11106
11249
|
border-radius: var(--Portlet-borderRadius);
|
@@ -13322,6 +13465,9 @@ fieldset.a-Collapse--lg:after {
|
|
13322
13465
|
color: var(--ColorPicker-color);
|
13323
13466
|
border-radius: var(--borderRadius);
|
13324
13467
|
}
|
13468
|
+
.a-ColorPicker-popup {
|
13469
|
+
height: 80vh;
|
13470
|
+
}
|
13325
13471
|
.a-ColorPicker:not(.is-disabled) {
|
13326
13472
|
cursor: pointer;
|
13327
13473
|
}
|
@@ -13547,6 +13693,10 @@ fieldset.a-Collapse--lg:after {
|
|
13547
13693
|
margin: -0.125rem 0 0;
|
13548
13694
|
}
|
13549
13695
|
|
13696
|
+
.a-DatePicker-popup {
|
13697
|
+
height: 80vh;
|
13698
|
+
}
|
13699
|
+
|
13550
13700
|
.rdt {
|
13551
13701
|
user-select: none;
|
13552
13702
|
font-size: var(--Calendar-fontSize);
|
@@ -14010,6 +14160,10 @@ td.rdtQuarter.rdtDisabled > span {
|
|
14010
14160
|
margin: -0.125rem 0 0;
|
14011
14161
|
}
|
14012
14162
|
|
14163
|
+
.a-DateRangePicker-popup {
|
14164
|
+
height: 90vh;
|
14165
|
+
}
|
14166
|
+
|
14013
14167
|
@media (min-width: 576px) {
|
14014
14168
|
.a-DateRangePicker-wrap {
|
14015
14169
|
white-space: nowrap;
|
@@ -15125,6 +15279,9 @@ td.rdtQuarter.rdtDisabled > span {
|
|
15125
15279
|
box-shadow: var(--Form-input-boxShadow);
|
15126
15280
|
background: var(--Form-input-onFocused-bg);
|
15127
15281
|
}
|
15282
|
+
.a-TreeSelect-popup {
|
15283
|
+
height: 80vh;
|
15284
|
+
}
|
15128
15285
|
|
15129
15286
|
.a-TreeSelect-popover {
|
15130
15287
|
background: transparent;
|
@@ -15802,22 +15959,45 @@ td.rdtQuarter.rdtDisabled > span {
|
|
15802
15959
|
}
|
15803
15960
|
|
15804
15961
|
.a-Rating {
|
15962
|
+
display: flex;
|
15963
|
+
position: relative;
|
15964
|
+
align-items: center;
|
15965
|
+
justify-content: flex-start;
|
15966
|
+
flex-flow: row wrap;
|
15967
|
+
}
|
15968
|
+
.a-Rating > ul {
|
15969
|
+
display: flex;
|
15970
|
+
padding: unset;
|
15971
|
+
margin: unset;
|
15972
|
+
align-items: center;
|
15973
|
+
justify-content: flex-start;
|
15974
|
+
flex-flow: row wrap;
|
15975
|
+
}
|
15976
|
+
.a-Rating-star {
|
15805
15977
|
position: relative;
|
15978
|
+
margin-right: var(--Rating-star-margin);
|
15806
15979
|
overflow: hidden;
|
15807
15980
|
display: block;
|
15808
|
-
|
15809
|
-
|
15810
|
-
color: var(--dark);
|
15981
|
+
font-size: var(--Rating-star-size);
|
15982
|
+
line-height: 1;
|
15811
15983
|
cursor: pointer;
|
15984
|
+
user-select: none;
|
15985
|
+
color: var(--Rating-inactive-color);
|
15812
15986
|
}
|
15813
|
-
.a-Rating.
|
15814
|
-
|
15987
|
+
.a-Rating-star-half > svg.icon, .a-Rating-star > svg.icon {
|
15988
|
+
display: block;
|
15989
|
+
width: 1.5rem;
|
15990
|
+
height: 1.5rem;
|
15991
|
+
top: 0;
|
15815
15992
|
}
|
15816
|
-
.a-Rating
|
15993
|
+
.a-Rating-star:last-of-type {
|
15994
|
+
margin-right: 0;
|
15995
|
+
}
|
15996
|
+
.a-Rating-star.is-disabled {
|
15817
15997
|
cursor: not-allowed;
|
15818
15998
|
pointer-events: none;
|
15819
15999
|
}
|
15820
|
-
.a-Rating-half
|
16000
|
+
.a-Rating-star-half {
|
15821
16001
|
position: absolute;
|
15822
16002
|
overflow: hidden;
|
15823
16003
|
display: block;
|
@@ -15825,8 +16005,17 @@ td.rdtQuarter.rdtDisabled > span {
|
|
15825
16005
|
top: 0;
|
15826
16006
|
left: 0;
|
15827
16007
|
width: 50%;
|
15828
|
-
|
15829
|
-
|
16008
|
+
}
|
16009
|
+
.a-Rating-text {
|
16010
|
+
font-size: var(--fontSizeSm);
|
16011
|
+
color: var(--text-color);
|
16012
|
+
font-weight: var(--fontWeightNormal);
|
16013
|
+
}
|
16014
|
+
.a-Rating-text--left {
|
16015
|
+
margin-right: var(--Rating-star-margin);
|
16016
|
+
}
|
16017
|
+
.a-Rating-text--right {
|
16018
|
+
margin-left: var(--Rating-star-margin);
|
15830
16019
|
}
|
15831
16020
|
|
15832
16021
|
.a-RatingControl {
|
@@ -17011,6 +17200,112 @@ td.rdtQuarter.rdtDisabled > span {
|
|
17011
17200
|
margin-right: 0;
|
17012
17201
|
}
|
17013
17202
|
|
17203
|
+
.a-FormulaEditor {
|
17204
|
+
overflow: visible;
|
17205
|
+
max-width: 100%;
|
17206
|
+
box-sizing: content-box;
|
17207
|
+
}
|
17208
|
+
.a-FormulaEditor-header {
|
17209
|
+
width: 100%;
|
17210
|
+
height: 2.5rem;
|
17211
|
+
line-height: 2.5rem;
|
17212
|
+
padding-left: 0.625rem;
|
17213
|
+
box-sizing: border-box;
|
17214
|
+
background: #f3f8fb;
|
17215
|
+
}
|
17216
|
+
.a-FormulaEditor-editor {
|
17217
|
+
min-height: 14.875rem;
|
17218
|
+
max-height: 20rem;
|
17219
|
+
height: auto;
|
17220
|
+
border: var(--Form-input-borderWidth) solid var(--Form-input-borderColor);
|
17221
|
+
}
|
17222
|
+
.a-FormulaEditor.is-error .a-FormulaEditor-editor {
|
17223
|
+
border-color: var(--Form-input-onError-borderColor);
|
17224
|
+
}
|
17225
|
+
.a-FormulaEditor.is-focused .a-FormulaEditor-editor {
|
17226
|
+
border-color: var(--Form-input-onFocused-borderColor);
|
17227
|
+
}
|
17228
|
+
.a-FormulaEditor-settings {
|
17229
|
+
display: flex;
|
17230
|
+
flex-direction: row;
|
17231
|
+
align-items: stretch;
|
17232
|
+
justify-content: space-between;
|
17233
|
+
max-height: 21.875rem;
|
17234
|
+
margin: 0 -5px;
|
17235
|
+
}
|
17236
|
+
.a-FormulaEditor-settings > div {
|
17237
|
+
flex: 1;
|
17238
|
+
padding: 0 5px;
|
17239
|
+
display: flex;
|
17240
|
+
flex-direction: column;
|
17241
|
+
}
|
17242
|
+
.a-FormulaEditor-settings > div > h3 {
|
17243
|
+
padding: 10px 0;
|
17244
|
+
margin: 0;
|
17245
|
+
flex-shrink: 0;
|
17246
|
+
}
|
17247
|
+
.a-FormulaEditor-settings > div > div {
|
17248
|
+
flex: 1;
|
17249
|
+
min-height: 0;
|
17250
|
+
}
|
17251
|
+
.a-FormulaEditor .cm-field,
|
17252
|
+
.a-FormulaEditor .cm-func {
|
17253
|
+
border-radius: 2px;
|
17254
|
+
color: #fff;
|
17255
|
+
margin: 0 1px;
|
17256
|
+
padding: 0 2px;
|
17257
|
+
}
|
17258
|
+
.a-FormulaEditor .cm-field {
|
17259
|
+
background: #007bff;
|
17260
|
+
}
|
17261
|
+
.a-FormulaEditor .cm-func {
|
17262
|
+
background: #17a2b8;
|
17263
|
+
}
|
17264
|
+
|
17265
|
+
.a-FormulaFuncList {
|
17266
|
+
display: flex;
|
17267
|
+
flex-direction: column;
|
17268
|
+
}
|
17269
|
+
.a-FormulaFuncList > .a-FormulaFuncList-searchBox {
|
17270
|
+
display: flex;
|
17271
|
+
width: auto;
|
17272
|
+
flex-shrink: 0;
|
17273
|
+
margin-bottom: 0.5rem;
|
17274
|
+
}
|
17275
|
+
.a-FormulaFuncList-columns {
|
17276
|
+
flex: 1;
|
17277
|
+
min-height: 0;
|
17278
|
+
overflow: auto;
|
17279
|
+
display: flex;
|
17280
|
+
flex-direction: row;
|
17281
|
+
justify-content: flex-start;
|
17282
|
+
}
|
17283
|
+
.a-FormulaFuncList-columns > div:first-child {
|
17284
|
+
min-width: 200px;
|
17285
|
+
flex-shrink: 0;
|
17286
|
+
}
|
17287
|
+
.a-FormulaFuncList-funcItem {
|
17288
|
+
padding: 0 10px;
|
17289
|
+
cursor: pointer;
|
17290
|
+
}
|
17291
|
+
.a-FormulaFuncList-funcItem.is-active {
|
17292
|
+
color: var(--primary);
|
17293
|
+
}
|
17294
|
+
.a-FormulaFuncList-groupTitle {
|
17295
|
+
padding: 5px 0;
|
17296
|
+
background: transparent;
|
17297
|
+
}
|
17298
|
+
.a-FormulaFuncList-groupBody > div {
|
17299
|
+
padding: 5px 0;
|
17300
|
+
}
|
17301
|
+
.a-FormulaFuncList-funcDetail {
|
17302
|
+
padding: 10px 20px;
|
17303
|
+
}
|
17304
|
+
|
17305
|
+
.a-FormulaPicker-icon {
|
17306
|
+
margin-left: auto;
|
17307
|
+
}
|
17308
|
+
|
17014
17309
|
/*
|
17015
17310
|
* utilities
|
17016
17311
|
*/
|