amis 1.5.3 → 1.5.4
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/README.md +5 -0
- package/lib/components/Card.d.ts +96 -0
- package/lib/components/Card.js +85 -0
- package/lib/components/Card.js.map +13 -0
- package/lib/components/DatePicker.d.ts +85 -84
- package/lib/components/DatePicker.js.map +2 -2
- package/lib/components/DateRangePicker.d.ts +84 -84
- package/lib/components/MonthRangePicker.d.ts +84 -84
- package/lib/components/Picker.d.ts +503 -0
- package/lib/components/Picker.js +65 -0
- package/lib/components/Picker.js.map +13 -0
- package/lib/components/PickerColumn.d.ts +29 -459
- package/lib/components/PickerColumn.js +35 -44
- package/lib/components/PickerColumn.js.map +2 -2
- package/lib/components/Select.d.ts +238 -238
- package/lib/components/Select.js +9 -2
- package/lib/components/Select.js.map +2 -2
- package/lib/components/Selection.js +1 -4
- package/lib/components/Selection.js.map +2 -2
- package/lib/components/Switch.d.ts +6 -6
- package/lib/components/Switch.js.map +2 -2
- package/lib/components/calendar/Calendar.js +15 -0
- package/lib/components/calendar/Calendar.js.map +2 -2
- package/lib/components/calendar/DaysView.js +4 -4
- package/lib/components/calendar/DaysView.js.map +2 -2
- package/lib/components/calendar/TimeView.d.ts +10 -0
- package/lib/components/calendar/TimeView.js +55 -2
- package/lib/components/calendar/TimeView.js.map +2 -2
- package/lib/components/calendar/YearsView.d.ts +9 -0
- package/lib/components/calendar/YearsView.js +19 -0
- package/lib/components/calendar/YearsView.js.map +2 -2
- package/lib/index.js +1 -1
- package/lib/renderers/Card.d.ts +81 -13
- package/lib/renderers/Card.js +178 -81
- package/lib/renderers/Card.js.map +2 -2
- package/lib/renderers/Form/DiffEditor.d.ts +145 -37
- package/lib/renderers/Form/Editor.d.ts +144 -36
- package/lib/renderers/Form/Formula.js +5 -5
- package/lib/renderers/Form/Formula.js.map +2 -2
- package/lib/renderers/Form/InputCity.d.ts +84 -84
- package/lib/renderers/Form/InputFile.js +2 -2
- package/lib/renderers/Form/InputFile.js.map +2 -2
- package/lib/renderers/Form/index.js +10 -0
- package/lib/renderers/Form/index.js.map +2 -2
- package/lib/renderers/Form/wrapControl.js +3 -2
- package/lib/renderers/Form/wrapControl.js.map +2 -2
- package/lib/store/combo.d.ts +160 -40
- package/lib/store/form.d.ts +64 -16
- package/lib/store/formItem.d.ts +4 -2
- package/lib/store/formItem.js +11 -6
- package/lib/store/formItem.js.map +2 -2
- package/lib/store/table.d.ts +128 -32
- package/lib/themes/ang-ie11.css +177 -30
- package/lib/themes/ang.css +177 -30
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +177 -30
- package/lib/themes/antd.css +177 -30
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +177 -30
- package/lib/themes/cxd.css +177 -30
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +177 -30
- package/lib/themes/dark.css +177 -30
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +177 -30
- package/lib/themes/default.css.map +1 -1
- package/lib/utils/helper.d.ts +7 -0
- package/lib/utils/helper.js +33 -1
- package/lib/utils/helper.js.map +2 -2
- package/package.json +2 -2
- package/schema.json +157 -13
- package/scss/_properties.scss +13 -2
- package/scss/components/_card.scss +155 -15
- package/scss/components/_nav.scss +1 -1
- package/scss/components/_picker-columns.scss +20 -14
- package/scss/components/form/_file.scss +2 -2
- package/scss/components/form/_selection.scss +4 -0
- package/scss/components/form/_switch.scss +6 -0
- package/sdk/ang-ie11.css +214 -40
- package/sdk/ang.css +216 -32
- package/sdk/antd-ie11.css +214 -40
- package/sdk/antd.css +216 -32
- package/sdk/charts.js +14 -14
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +206 -32
- package/sdk/cxd.css +216 -32
- package/sdk/dark-ie11.css +214 -40
- package/sdk/dark.css +216 -32
- package/sdk/exceljs.js +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 +206 -32
- package/sdk/sdk.css +216 -32
- package/sdk/sdk.js +1190 -1186
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +1 -1
- package/sdk/tinymce.js +57 -57
- package/src/components/Card.tsx +203 -0
- package/src/components/DatePicker.tsx +3 -0
- package/src/components/Picker.tsx +145 -0
- package/src/components/PickerColumn.tsx +58 -95
- package/src/components/Select.tsx +17 -12
- package/src/components/Selection.tsx +1 -4
- package/src/components/Switch.tsx +7 -7
- package/src/components/calendar/Calendar.tsx +18 -0
- package/src/components/calendar/DaysView.tsx +6 -4
- package/src/components/calendar/TimeView.tsx +80 -5
- package/src/components/calendar/YearsView.tsx +44 -1
- package/src/renderers/Card.tsx +299 -191
- package/src/renderers/Form/Formula.tsx +7 -5
- package/src/renderers/Form/InputFile.tsx +6 -2
- package/src/renderers/Form/index.tsx +12 -0
- package/src/renderers/Form/wrapControl.tsx +5 -2
- package/src/store/formItem.ts +12 -6
- package/src/utils/helper.ts +34 -0
package/sdk/dark.css
CHANGED
@@ -19184,6 +19184,7 @@ readers do not read off random characters that represent icons */
|
|
19184
19184
|
--borderWidth: 0.0625rem;
|
19185
19185
|
--fontWeightNormal: 400;
|
19186
19186
|
--fontWeightBase: var(--fontWeightNormal);
|
19187
|
+
--fontWeightMd: 500;
|
19187
19188
|
--fontWeightBold: 700;
|
19188
19189
|
--background: var(--white);
|
19189
19190
|
--code-color: var(--danger);
|
@@ -19501,6 +19502,14 @@ readers do not read off random characters that represent icons */
|
|
19501
19502
|
--Calendar-shortcuts-bg: transparent;
|
19502
19503
|
--Calendar-shortcuts-height: 1.875rem;
|
19503
19504
|
--Calendar-wLabel-color: #999;
|
19505
|
+
--Calendar-icon-bottom: -0.25rem;
|
19506
|
+
--Calendar-icon-width: 0.625rem;
|
19507
|
+
--Calendar-icon-height: 0.625rem;
|
19508
|
+
--Calendar-borderWidth: 0.0625rem;
|
19509
|
+
--Calendar-rdt-day: 6.25rem;
|
19510
|
+
--Calendar-schedule-content-padding: 0 0.25rem;
|
19511
|
+
--Calendar-schedule-content-height: 1.25rem;
|
19512
|
+
--Calendar-schedule-content-color: #fff;
|
19504
19513
|
--Card-actions-borderColor: #dfe2e6;
|
19505
19514
|
--Card-actions-fontSize: var(--fontSizeBase);
|
19506
19515
|
--Card-actions-onChecked-onHover-bg: #c2ecf9;
|
@@ -19511,6 +19520,7 @@ readers do not read off random characters that represent icons */
|
|
19511
19520
|
--Card-borderColor: var(--borderColor);
|
19512
19521
|
--Card-borderRadius: var(--borderRadius);
|
19513
19522
|
--Card-borderWidth: var(--borderWidth);
|
19523
|
+
--Card-secondary-color: #83868c;
|
19514
19524
|
--Card-onChecked-bg: #d9f3fb;
|
19515
19525
|
--Card-onChecked-borderColor: #abe4f6;
|
19516
19526
|
--Card-onChecked-color: #20b9e8;
|
@@ -20124,8 +20134,8 @@ readers do not read off random characters that represent icons */
|
|
20124
20134
|
--PickerColumns-title-lineHeight: 1.5;
|
20125
20135
|
--PickerColumns-action-padding: 0 var(--gap-sm);
|
20126
20136
|
--PickerColumns-action-fontSize: var(--fontSizeMd);
|
20127
|
-
--PickerColumns-confirmAction-color:
|
20128
|
-
--PickerColumns-cancelAction-color:
|
20137
|
+
--PickerColumns-confirmAction-color: white;
|
20138
|
+
--PickerColumns-cancelAction-color: white;
|
20129
20139
|
--PickerColumns-option-fontSize: var(--fontSizeLg);
|
20130
20140
|
--PickerColumns-optionText-color: var(--text-color);
|
20131
20141
|
--PickerColumns-optionDisabled-opacity: 0.3;
|
@@ -24132,14 +24142,9 @@ readers do not read off random characters that represent icons */
|
|
24132
24142
|
position: relative;
|
24133
24143
|
background-color: var(--PickerColumns-bg);
|
24134
24144
|
user-select: none;
|
24135
|
-
|
24136
|
-
|
24137
|
-
|
24138
|
-
position: fixed;
|
24139
|
-
bottom: 0;
|
24140
|
-
left: 0;
|
24141
|
-
width: 100%;
|
24142
|
-
padding: 0 var(--gap-sm);
|
24145
|
+
flex: 1;
|
24146
|
+
overflow: hidden;
|
24147
|
+
font-size: var(--PickerColumns-option-fontSize);
|
24143
24148
|
}
|
24144
24149
|
|
24145
24150
|
.amis-scope .dark-PickerColumns-toolbar {
|
@@ -24164,6 +24169,11 @@ readers do not read off random characters that represent icons */
|
|
24164
24169
|
opacity: 0.7;
|
24165
24170
|
}
|
24166
24171
|
|
24172
|
+
.amis-scope .dark-PickerColumns-cancel:hover,
|
24173
|
+
.amis-scope .dark-PickerColumns-confirm:hover {
|
24174
|
+
background-color: none !important;
|
24175
|
+
}
|
24176
|
+
|
24167
24177
|
.amis-scope .dark-PickerColumns-confirm {
|
24168
24178
|
color: var(--PickerColumns-confirmAction-color);
|
24169
24179
|
}
|
@@ -24211,6 +24221,18 @@ readers do not read off random characters that represent icons */
|
|
24211
24221
|
pointer-events: none;
|
24212
24222
|
}
|
24213
24223
|
|
24224
|
+
.amis-scope .dark-PickerColumns-frame::after {
|
24225
|
+
position: absolute;
|
24226
|
+
content: "";
|
24227
|
+
border-bottom: 1px solid var(--borderColor);
|
24228
|
+
border-top: 1px solid var(--borderColor);
|
24229
|
+
top: -50%;
|
24230
|
+
right: -50%;
|
24231
|
+
left: -50%;
|
24232
|
+
bottom: -50%;
|
24233
|
+
transform: scale(0.5);
|
24234
|
+
}
|
24235
|
+
|
24214
24236
|
.amis-scope .dark-PickerColumns-mask {
|
24215
24237
|
position: absolute;
|
24216
24238
|
top: 0;
|
@@ -24225,12 +24247,6 @@ readers do not read off random characters that represent icons */
|
|
24225
24247
|
pointer-events: none;
|
24226
24248
|
}
|
24227
24249
|
|
24228
|
-
.amis-scope .dark-PickerColumns-column {
|
24229
|
-
flex: 1;
|
24230
|
-
overflow: hidden;
|
24231
|
-
font-size: var(--PickerColumns-option-fontSize);
|
24232
|
-
}
|
24233
|
-
|
24234
24250
|
.amis-scope .dark-PickerColumns-columnWrapper {
|
24235
24251
|
margin: 0;
|
24236
24252
|
padding: 0;
|
@@ -25437,7 +25453,7 @@ readers do not read off random characters that represent icons */
|
|
25437
25453
|
.amis-scope .dark-Nav .dark-Nav-list--stacked .dark-Badge.is-active > .dark-Badge > a {
|
25438
25454
|
color: var(--Nav-item-onActive-color);
|
25439
25455
|
position: relative;
|
25440
|
-
background: var(--Nav-item-onActive-bg);
|
25456
|
+
background: var(--Nav-item-onActive-bg) !important;
|
25441
25457
|
}
|
25442
25458
|
|
25443
25459
|
.amis-scope .dark-Nav .dark-Nav-list--stacked .dark-Nav-item.active > a::after,
|
@@ -29998,8 +30014,9 @@ readers do not read off random characters that represent icons */
|
|
29998
30014
|
}
|
29999
30015
|
|
30000
30016
|
.amis-scope .dark-Card-title {
|
30001
|
-
color: var(--text
|
30017
|
+
color: var(--text-color);
|
30002
30018
|
font-size: var(--fontSizeMd);
|
30019
|
+
font-weight: var(--fontWeightMd);
|
30003
30020
|
white-space: nowrap;
|
30004
30021
|
overflow: hidden;
|
30005
30022
|
text-overflow: ellipsis;
|
@@ -30020,15 +30037,14 @@ readers do not read off random characters that represent icons */
|
|
30020
30037
|
}
|
30021
30038
|
|
30022
30039
|
.amis-scope .dark-Card-dragBtn {
|
30040
|
+
display: inline-block;
|
30023
30041
|
cursor: pointer;
|
30024
|
-
|
30025
|
-
margin: var(--gap-sm);
|
30042
|
+
padding: 0 var(--gap-sm);
|
30026
30043
|
}
|
30027
30044
|
|
30028
30045
|
.amis-scope .dark-Card-heading {
|
30029
30046
|
display: flex;
|
30030
|
-
|
30031
|
-
padding: var(--gap-sm) var(--gap-base);
|
30047
|
+
padding: var(--gap-md);
|
30032
30048
|
flex: 1 0 auto;
|
30033
30049
|
}
|
30034
30050
|
|
@@ -30055,7 +30071,7 @@ readers do not read off random characters that represent icons */
|
|
30055
30071
|
float: left;
|
30056
30072
|
margin-right: var(--gap-base);
|
30057
30073
|
font-size: var(--fontSizeXl);
|
30058
|
-
text-transform: uppercase;
|
30074
|
+
text-transform: uppercase();
|
30059
30075
|
}
|
30060
30076
|
|
30061
30077
|
.amis-scope .dark-Card-meta {
|
@@ -30063,11 +30079,14 @@ readers do not read off random characters that represent icons */
|
|
30063
30079
|
flex-grow: 1;
|
30064
30080
|
height: 100%;
|
30065
30081
|
position: relative;
|
30066
|
-
|
30082
|
+
}
|
30083
|
+
|
30084
|
+
.amis-scope .dark-Card-meta + .dark-Card-toolbar {
|
30085
|
+
margin-left: var(--gap-md);
|
30067
30086
|
}
|
30068
30087
|
|
30069
30088
|
.amis-scope .dark-Card-toolbar {
|
30070
|
-
|
30089
|
+
line-height: normal;
|
30071
30090
|
text-align: right;
|
30072
30091
|
}
|
30073
30092
|
|
@@ -30077,18 +30096,16 @@ readers do not read off random characters that represent icons */
|
|
30077
30096
|
height: 0.5rem;
|
30078
30097
|
border-radius: 100%;
|
30079
30098
|
display: inline-block;
|
30080
|
-
|
30081
|
-
top: var(--gap-xs);
|
30082
|
-
right: 0.125rem;
|
30099
|
+
margin: 0 var(--gap-sm);
|
30083
30100
|
}
|
30084
30101
|
|
30085
30102
|
.amis-scope .dark-Card-body {
|
30086
|
-
padding: var(--gap-
|
30103
|
+
padding: var(--gap-md);
|
30087
30104
|
flex: 1 0 auto;
|
30088
30105
|
}
|
30089
30106
|
|
30090
30107
|
.amis-scope .dark-Card-heading + .dark-Card-body {
|
30091
|
-
padding-top:
|
30108
|
+
padding-top: 0;
|
30092
30109
|
}
|
30093
30110
|
|
30094
30111
|
.amis-scope .dark-Card-field {
|
@@ -30117,6 +30134,7 @@ readers do not read off random characters that represent icons */
|
|
30117
30134
|
flex-direction: row;
|
30118
30135
|
width: 100%;
|
30119
30136
|
table-layout: fixed;
|
30137
|
+
white-space: nowrap;
|
30120
30138
|
}
|
30121
30139
|
|
30122
30140
|
.amis-scope .dark-Card-actions > a {
|
@@ -30204,6 +30222,160 @@ readers do not read off random characters that represent icons */
|
|
30204
30222
|
opacity: var(--Card-onDragging-opacity);
|
30205
30223
|
}
|
30206
30224
|
|
30225
|
+
.amis-scope .dark-Card-footer-wrapper {
|
30226
|
+
display: flex;
|
30227
|
+
align-items: center;
|
30228
|
+
justify-content: space-between;
|
30229
|
+
}
|
30230
|
+
|
30231
|
+
.amis-scope .dark-Card-actions-wrapper {
|
30232
|
+
flex: 1;
|
30233
|
+
display: flex;
|
30234
|
+
align-items: center;
|
30235
|
+
justify-content: flex-end;
|
30236
|
+
flex-wrap: wrap;
|
30237
|
+
}
|
30238
|
+
|
30239
|
+
.amis-scope .dark-Card-checkbox {
|
30240
|
+
margin: 0 var(--gap-sm) !important;
|
30241
|
+
}
|
30242
|
+
|
30243
|
+
.amis-scope .dark-Card-secondary {
|
30244
|
+
max-width: 12.5rem;
|
30245
|
+
color: var(--Card-secondary-color);
|
30246
|
+
padding: 0 var(--gap-md);
|
30247
|
+
font-size: var(--fontSizeMd);
|
30248
|
+
font-weight: var(--fontWeightBase);
|
30249
|
+
white-space: nowrap;
|
30250
|
+
overflow: hidden;
|
30251
|
+
text-overflow: ellipsis;
|
30252
|
+
}
|
30253
|
+
|
30254
|
+
.amis-scope .dark-Card-secondary + .dark-Card-actions-wrapper .dark-Card-actions {
|
30255
|
+
margin-left: unset;
|
30256
|
+
border: none;
|
30257
|
+
width: unset;
|
30258
|
+
}
|
30259
|
+
|
30260
|
+
.amis-scope .dark-Card-secondary + .dark-Card-actions-wrapper .dark-Card-actions > a {
|
30261
|
+
border: none;
|
30262
|
+
}
|
30263
|
+
|
30264
|
+
.amis-scope .dark-Card-multiMedia--top .dark-Card-actions-wrapper .dark-Card-actions,
|
30265
|
+
.amis-scope .dark-Card-multiMedia--bottom .dark-Card-actions-wrapper .dark-Card-actions,
|
30266
|
+
.amis-scope .dark-Card-multiMedia--left .dark-Card-actions-wrapper .dark-Card-actions,
|
30267
|
+
.amis-scope .dark-Card-multiMedia--right .dark-Card-actions-wrapper .dark-Card-actions {
|
30268
|
+
margin-left: unset;
|
30269
|
+
border: none;
|
30270
|
+
width: unset;
|
30271
|
+
}
|
30272
|
+
|
30273
|
+
.amis-scope .dark-Card-multiMedia--top .dark-Card-actions-wrapper .dark-Card-actions > a,
|
30274
|
+
.amis-scope .dark-Card-multiMedia--bottom .dark-Card-actions-wrapper .dark-Card-actions > a,
|
30275
|
+
.amis-scope .dark-Card-multiMedia--left .dark-Card-actions-wrapper .dark-Card-actions > a,
|
30276
|
+
.amis-scope .dark-Card-multiMedia--right .dark-Card-actions-wrapper .dark-Card-actions > a {
|
30277
|
+
border: none;
|
30278
|
+
}
|
30279
|
+
|
30280
|
+
.amis-scope .dark-Card-multiMedia--top {
|
30281
|
+
display: block;
|
30282
|
+
}
|
30283
|
+
|
30284
|
+
.amis-scope .dark-Card-multiMedia--top .dark-Card-multiMedia-img {
|
30285
|
+
border-bottom-left-radius: unset;
|
30286
|
+
border-bottom-right-radius: unset;
|
30287
|
+
}
|
30288
|
+
|
30289
|
+
.amis-scope .dark-Card-multiMedia--bottom {
|
30290
|
+
display: flex;
|
30291
|
+
flex-direction: column-reverse;
|
30292
|
+
}
|
30293
|
+
|
30294
|
+
.amis-scope .dark-Card-multiMedia--bottom .dark-Card-actions {
|
30295
|
+
border-bottom: var(--Card-borderWidth) solid var(--Card-actions-borderColor);
|
30296
|
+
}
|
30297
|
+
|
30298
|
+
.amis-scope .dark-Card-multiMedia--bottom .dark-Card-multiMedia-img {
|
30299
|
+
border-top-left-radius: unset;
|
30300
|
+
border-top-right-radius: unset;
|
30301
|
+
}
|
30302
|
+
|
30303
|
+
.amis-scope .dark-Card-multiMedia--top .dark-Card-body,
|
30304
|
+
.amis-scope .dark-Card-multiMedia--bottom .dark-Card-body {
|
30305
|
+
padding-bottom: var(--gap-md);
|
30306
|
+
}
|
30307
|
+
|
30308
|
+
.amis-scope .dark-Card-multiMedia--left {
|
30309
|
+
display: flex;
|
30310
|
+
align-items: center;
|
30311
|
+
}
|
30312
|
+
|
30313
|
+
.amis-scope .dark-Card-multiMedia--left .dark-Card-actions {
|
30314
|
+
margin-left: var(--gap-md);
|
30315
|
+
border-left: var(--Card-borderWidth) solid var(--Card-actions-borderColor);
|
30316
|
+
}
|
30317
|
+
|
30318
|
+
.amis-scope .dark-Card-multiMedia--left .dark-Card-multiMedia-img,
|
30319
|
+
.amis-scope .dark-Card-multiMedia--left .dark-Card-multiMedia-video {
|
30320
|
+
margin: var(--gap-md) 0 var(--gap-md) var(--gap-md);
|
30321
|
+
}
|
30322
|
+
|
30323
|
+
.amis-scope .dark-Card-multiMedia--right {
|
30324
|
+
display: flex;
|
30325
|
+
align-items: center;
|
30326
|
+
justify-content: space-between;
|
30327
|
+
flex-direction: row-reverse;
|
30328
|
+
}
|
30329
|
+
|
30330
|
+
.amis-scope .dark-Card-multiMedia--right .dark-Card-actions {
|
30331
|
+
margin-right: var(--gap-md);
|
30332
|
+
border-right: var(--Card-borderWidth) solid var(--Card-actions-borderColor);
|
30333
|
+
}
|
30334
|
+
|
30335
|
+
.amis-scope .dark-Card-multiMedia--right .dark-Card-multiMedia-img,
|
30336
|
+
.amis-scope .dark-Card-multiMedia--right .dark-Card-multiMedia-video {
|
30337
|
+
margin: var(--gap-md) var(--gap-md) var(--gap-md) 0;
|
30338
|
+
}
|
30339
|
+
|
30340
|
+
.amis-scope .dark-Card-multiMedia-flex {
|
30341
|
+
flex: 1;
|
30342
|
+
display: flex;
|
30343
|
+
flex-direction: column;
|
30344
|
+
justify-content: center;
|
30345
|
+
}
|
30346
|
+
|
30347
|
+
.amis-scope .dark-Card-multiMedia-img {
|
30348
|
+
display: block;
|
30349
|
+
width: 100%;
|
30350
|
+
height: auto;
|
30351
|
+
object-fit: cover;
|
30352
|
+
border-radius: var(--Card-borderRadius);
|
30353
|
+
}
|
30354
|
+
|
30355
|
+
.amis-scope .dark-Card-multiMedia-video {
|
30356
|
+
width: 11.25rem;
|
30357
|
+
height: 7.5rem;
|
30358
|
+
}
|
30359
|
+
|
30360
|
+
.amis-scope .dark-Card-multiMedia-video .dark-Video {
|
30361
|
+
width: 100%;
|
30362
|
+
height: 100%;
|
30363
|
+
min-width: unset;
|
30364
|
+
border-radius: var(--Card-borderRadius);
|
30365
|
+
overflow: hidden;
|
30366
|
+
}
|
30367
|
+
|
30368
|
+
.amis-scope .dark-Card-multiMedia-video .dark-Video .dark-Video-player {
|
30369
|
+
width: 100%;
|
30370
|
+
height: 100%;
|
30371
|
+
}
|
30372
|
+
|
30373
|
+
.amis-scope .dark-Card-multiMedia-video .dark-Video .dark-Video-player .video-react {
|
30374
|
+
width: 100%;
|
30375
|
+
height: 100%;
|
30376
|
+
padding-top: unset !important;
|
30377
|
+
}
|
30378
|
+
|
30207
30379
|
.amis-scope .dark-Field-quickEditBtn {
|
30208
30380
|
color: var(--QuickEdit-iconColor);
|
30209
30381
|
margin-left: var(--gap-xs);
|
@@ -33396,6 +33568,12 @@ readers do not read off random characters that represent icons */
|
|
33396
33568
|
margin-right: var(--Checkbox-gap);
|
33397
33569
|
}
|
33398
33570
|
|
33571
|
+
.amis-scope .dark-GroupedSelection {
|
33572
|
+
max-height: 18.75rem;
|
33573
|
+
overflow: auto;
|
33574
|
+
user-select: none;
|
33575
|
+
}
|
33576
|
+
|
33399
33577
|
.amis-scope .dark-GroupedSelection-group:not(:first-child) > .dark-GroupedSelection-itemLabel {
|
33400
33578
|
border-top: 0.0625rem solid var(--ListMenu-divider-color);
|
33401
33579
|
}
|
@@ -33759,6 +33937,12 @@ readers do not read off random characters that represent icons */
|
|
33759
33937
|
transition: all var(--animation-duration);
|
33760
33938
|
}
|
33761
33939
|
|
33940
|
+
.amis-scope .dark-Switch .text > svg {
|
33941
|
+
width: var(--fontSizeSm);
|
33942
|
+
height: var(--fontSizeSm);
|
33943
|
+
margin-top: calc((var(--Switch-height) - var(--fontSizeSm)) / 2);
|
33944
|
+
}
|
33945
|
+
|
33762
33946
|
.amis-scope .dark-Switch .slider:before {
|
33763
33947
|
content: "";
|
33764
33948
|
position: absolute;
|
@@ -35771,8 +35955,9 @@ readers do not read off random characters that represent icons */
|
|
35771
35955
|
}
|
35772
35956
|
|
35773
35957
|
.amis-scope .dark-FileControl-selectBtn {
|
35774
|
-
display: flex;
|
35958
|
+
display: inline-flex;
|
35775
35959
|
align-items: center;
|
35960
|
+
margin-right: 10px;
|
35776
35961
|
}
|
35777
35962
|
|
35778
35963
|
.amis-scope .dark-FileControl-selectBtn > svg {
|
@@ -35781,7 +35966,6 @@ readers do not read off random characters that represent icons */
|
|
35781
35966
|
}
|
35782
35967
|
|
35783
35968
|
.amis-scope .dark-FileControl-description {
|
35784
|
-
margin-left: 10px;
|
35785
35969
|
color: #999;
|
35786
35970
|
font-size: 12px;
|
35787
35971
|
}
|
package/sdk/exceljs.js
CHANGED