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.
Files changed (119) hide show
  1. package/README.md +5 -0
  2. package/lib/components/Card.d.ts +96 -0
  3. package/lib/components/Card.js +85 -0
  4. package/lib/components/Card.js.map +13 -0
  5. package/lib/components/DatePicker.d.ts +85 -84
  6. package/lib/components/DatePicker.js.map +2 -2
  7. package/lib/components/DateRangePicker.d.ts +84 -84
  8. package/lib/components/MonthRangePicker.d.ts +84 -84
  9. package/lib/components/Picker.d.ts +503 -0
  10. package/lib/components/Picker.js +65 -0
  11. package/lib/components/Picker.js.map +13 -0
  12. package/lib/components/PickerColumn.d.ts +29 -459
  13. package/lib/components/PickerColumn.js +35 -44
  14. package/lib/components/PickerColumn.js.map +2 -2
  15. package/lib/components/Select.d.ts +238 -238
  16. package/lib/components/Select.js +9 -2
  17. package/lib/components/Select.js.map +2 -2
  18. package/lib/components/Selection.js +1 -4
  19. package/lib/components/Selection.js.map +2 -2
  20. package/lib/components/Switch.d.ts +6 -6
  21. package/lib/components/Switch.js.map +2 -2
  22. package/lib/components/calendar/Calendar.js +15 -0
  23. package/lib/components/calendar/Calendar.js.map +2 -2
  24. package/lib/components/calendar/DaysView.js +4 -4
  25. package/lib/components/calendar/DaysView.js.map +2 -2
  26. package/lib/components/calendar/TimeView.d.ts +10 -0
  27. package/lib/components/calendar/TimeView.js +55 -2
  28. package/lib/components/calendar/TimeView.js.map +2 -2
  29. package/lib/components/calendar/YearsView.d.ts +9 -0
  30. package/lib/components/calendar/YearsView.js +19 -0
  31. package/lib/components/calendar/YearsView.js.map +2 -2
  32. package/lib/index.js +1 -1
  33. package/lib/renderers/Card.d.ts +81 -13
  34. package/lib/renderers/Card.js +178 -81
  35. package/lib/renderers/Card.js.map +2 -2
  36. package/lib/renderers/Form/DiffEditor.d.ts +145 -37
  37. package/lib/renderers/Form/Editor.d.ts +144 -36
  38. package/lib/renderers/Form/Formula.js +5 -5
  39. package/lib/renderers/Form/Formula.js.map +2 -2
  40. package/lib/renderers/Form/InputCity.d.ts +84 -84
  41. package/lib/renderers/Form/InputFile.js +2 -2
  42. package/lib/renderers/Form/InputFile.js.map +2 -2
  43. package/lib/renderers/Form/index.js +10 -0
  44. package/lib/renderers/Form/index.js.map +2 -2
  45. package/lib/renderers/Form/wrapControl.js +3 -2
  46. package/lib/renderers/Form/wrapControl.js.map +2 -2
  47. package/lib/store/combo.d.ts +160 -40
  48. package/lib/store/form.d.ts +64 -16
  49. package/lib/store/formItem.d.ts +4 -2
  50. package/lib/store/formItem.js +11 -6
  51. package/lib/store/formItem.js.map +2 -2
  52. package/lib/store/table.d.ts +128 -32
  53. package/lib/themes/ang-ie11.css +177 -30
  54. package/lib/themes/ang.css +177 -30
  55. package/lib/themes/ang.css.map +1 -1
  56. package/lib/themes/antd-ie11.css +177 -30
  57. package/lib/themes/antd.css +177 -30
  58. package/lib/themes/antd.css.map +1 -1
  59. package/lib/themes/cxd-ie11.css +177 -30
  60. package/lib/themes/cxd.css +177 -30
  61. package/lib/themes/cxd.css.map +1 -1
  62. package/lib/themes/dark-ie11.css +177 -30
  63. package/lib/themes/dark.css +177 -30
  64. package/lib/themes/dark.css.map +1 -1
  65. package/lib/themes/default.css +177 -30
  66. package/lib/themes/default.css.map +1 -1
  67. package/lib/utils/helper.d.ts +7 -0
  68. package/lib/utils/helper.js +33 -1
  69. package/lib/utils/helper.js.map +2 -2
  70. package/package.json +2 -2
  71. package/schema.json +157 -13
  72. package/scss/_properties.scss +13 -2
  73. package/scss/components/_card.scss +155 -15
  74. package/scss/components/_nav.scss +1 -1
  75. package/scss/components/_picker-columns.scss +20 -14
  76. package/scss/components/form/_file.scss +2 -2
  77. package/scss/components/form/_selection.scss +4 -0
  78. package/scss/components/form/_switch.scss +6 -0
  79. package/sdk/ang-ie11.css +214 -40
  80. package/sdk/ang.css +216 -32
  81. package/sdk/antd-ie11.css +214 -40
  82. package/sdk/antd.css +216 -32
  83. package/sdk/charts.js +14 -14
  84. package/sdk/color-picker.js +65 -65
  85. package/sdk/cropperjs.js +2 -2
  86. package/sdk/cxd-ie11.css +206 -32
  87. package/sdk/cxd.css +216 -32
  88. package/sdk/dark-ie11.css +214 -40
  89. package/sdk/dark.css +216 -32
  90. package/sdk/exceljs.js +1 -1
  91. package/sdk/markdown.js +69 -69
  92. package/sdk/papaparse.js +1 -1
  93. package/sdk/renderers/Form/CityDB.js +1 -1
  94. package/sdk/rest.js +18 -18
  95. package/sdk/rich-text.js +62 -62
  96. package/sdk/sdk-ie11.css +206 -32
  97. package/sdk/sdk.css +216 -32
  98. package/sdk/sdk.js +1190 -1186
  99. package/sdk/thirds/hls.js/hls.js +1 -1
  100. package/sdk/thirds/mpegts.js/mpegts.js +1 -1
  101. package/sdk/tinymce.js +57 -57
  102. package/src/components/Card.tsx +203 -0
  103. package/src/components/DatePicker.tsx +3 -0
  104. package/src/components/Picker.tsx +145 -0
  105. package/src/components/PickerColumn.tsx +58 -95
  106. package/src/components/Select.tsx +17 -12
  107. package/src/components/Selection.tsx +1 -4
  108. package/src/components/Switch.tsx +7 -7
  109. package/src/components/calendar/Calendar.tsx +18 -0
  110. package/src/components/calendar/DaysView.tsx +6 -4
  111. package/src/components/calendar/TimeView.tsx +80 -5
  112. package/src/components/calendar/YearsView.tsx +44 -1
  113. package/src/renderers/Card.tsx +299 -191
  114. package/src/renderers/Form/Formula.tsx +7 -5
  115. package/src/renderers/Form/InputFile.tsx +6 -2
  116. package/src/renderers/Form/index.tsx +12 -0
  117. package/src/renderers/Form/wrapControl.tsx +5 -2
  118. package/src/store/formItem.ts +12 -6
  119. package/src/utils/helper.ts +34 -0
package/sdk/ang.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: var(--Button--info-bg);
20128
- --PickerColumns-cancelAction-color: var(--Button--light-bg);
20137
+ --PickerColumns-confirmAction-color: #99a6ad;
20138
+ --PickerColumns-cancelAction-color: #dfe3e6;
20129
20139
  --PickerColumns-option-fontSize: var(--fontSizeLg);
20130
20140
  --PickerColumns-optionText-color: var(--text-color);
20131
20141
  --PickerColumns-optionDisabled-opacity: 0.3;
@@ -24048,14 +24058,9 @@ readers do not read off random characters that represent icons */
24048
24058
  position: relative;
24049
24059
  background-color: var(--PickerColumns-bg);
24050
24060
  user-select: none;
24051
- }
24052
-
24053
- .amis-scope .a-PickerColumns-popOver {
24054
- position: fixed;
24055
- bottom: 0;
24056
- left: 0;
24057
- width: 100%;
24058
- padding: 0 var(--gap-sm);
24061
+ flex: 1;
24062
+ overflow: hidden;
24063
+ font-size: var(--PickerColumns-option-fontSize);
24059
24064
  }
24060
24065
 
24061
24066
  .amis-scope .a-PickerColumns-toolbar {
@@ -24080,6 +24085,11 @@ readers do not read off random characters that represent icons */
24080
24085
  opacity: 0.7;
24081
24086
  }
24082
24087
 
24088
+ .amis-scope .a-PickerColumns-cancel:hover,
24089
+ .amis-scope .a-PickerColumns-confirm:hover {
24090
+ background-color: none !important;
24091
+ }
24092
+
24083
24093
  .amis-scope .a-PickerColumns-confirm {
24084
24094
  color: var(--PickerColumns-confirmAction-color);
24085
24095
  }
@@ -24127,6 +24137,18 @@ readers do not read off random characters that represent icons */
24127
24137
  pointer-events: none;
24128
24138
  }
24129
24139
 
24140
+ .amis-scope .a-PickerColumns-frame::after {
24141
+ position: absolute;
24142
+ content: "";
24143
+ border-bottom: 1px solid var(--borderColor);
24144
+ border-top: 1px solid var(--borderColor);
24145
+ top: -50%;
24146
+ right: -50%;
24147
+ left: -50%;
24148
+ bottom: -50%;
24149
+ transform: scale(0.5);
24150
+ }
24151
+
24130
24152
  .amis-scope .a-PickerColumns-mask {
24131
24153
  position: absolute;
24132
24154
  top: 0;
@@ -24141,12 +24163,6 @@ readers do not read off random characters that represent icons */
24141
24163
  pointer-events: none;
24142
24164
  }
24143
24165
 
24144
- .amis-scope .a-PickerColumns-column {
24145
- flex: 1;
24146
- overflow: hidden;
24147
- font-size: var(--PickerColumns-option-fontSize);
24148
- }
24149
-
24150
24166
  .amis-scope .a-PickerColumns-columnWrapper {
24151
24167
  margin: 0;
24152
24168
  padding: 0;
@@ -25353,7 +25369,7 @@ readers do not read off random characters that represent icons */
25353
25369
  .amis-scope .a-Nav .a-Nav-list--stacked .a-Badge.is-active > .a-Badge > a {
25354
25370
  color: var(--Nav-item-onActive-color);
25355
25371
  position: relative;
25356
- background: var(--Nav-item-onActive-bg);
25372
+ background: var(--Nav-item-onActive-bg) !important;
25357
25373
  }
25358
25374
 
25359
25375
  .amis-scope .a-Nav .a-Nav-list--stacked .a-Nav-item.active > a::after,
@@ -29914,8 +29930,9 @@ readers do not read off random characters that represent icons */
29914
29930
  }
29915
29931
 
29916
29932
  .amis-scope .a-Card-title {
29917
- color: var(--text--loud-color);
29933
+ color: var(--text-color);
29918
29934
  font-size: var(--fontSizeMd);
29935
+ font-weight: var(--fontWeightMd);
29919
29936
  white-space: nowrap;
29920
29937
  overflow: hidden;
29921
29938
  text-overflow: ellipsis;
@@ -29936,15 +29953,14 @@ readers do not read off random characters that represent icons */
29936
29953
  }
29937
29954
 
29938
29955
  .amis-scope .a-Card-dragBtn {
29956
+ display: inline-block;
29939
29957
  cursor: pointer;
29940
- float: right;
29941
- margin: var(--gap-sm);
29958
+ padding: 0 var(--gap-sm);
29942
29959
  }
29943
29960
 
29944
29961
  .amis-scope .a-Card-heading {
29945
29962
  display: flex;
29946
- flex-direction: row;
29947
- padding: var(--gap-sm) var(--gap-base);
29963
+ padding: var(--gap-md);
29948
29964
  flex: 1 0 auto;
29949
29965
  }
29950
29966
 
@@ -29971,7 +29987,7 @@ readers do not read off random characters that represent icons */
29971
29987
  float: left;
29972
29988
  margin-right: var(--gap-base);
29973
29989
  font-size: var(--fontSizeXl);
29974
- text-transform: uppercase;
29990
+ text-transform: uppercase();
29975
29991
  }
29976
29992
 
29977
29993
  .amis-scope .a-Card-meta {
@@ -29979,11 +29995,14 @@ readers do not read off random characters that represent icons */
29979
29995
  flex-grow: 1;
29980
29996
  height: 100%;
29981
29997
  position: relative;
29982
- margin-right: var(--gap-md);
29998
+ }
29999
+
30000
+ .amis-scope .a-Card-meta + .a-Card-toolbar {
30001
+ margin-left: var(--gap-md);
29983
30002
  }
29984
30003
 
29985
30004
  .amis-scope .a-Card-toolbar {
29986
- margin-right: calc(-1 * var(--gap-base));
30005
+ line-height: normal;
29987
30006
  text-align: right;
29988
30007
  }
29989
30008
 
@@ -29993,18 +30012,16 @@ readers do not read off random characters that represent icons */
29993
30012
  height: 0.5rem;
29994
30013
  border-radius: 100%;
29995
30014
  display: inline-block;
29996
- position: absolute;
29997
- top: var(--gap-xs);
29998
- right: 0.125rem;
30015
+ margin: 0 var(--gap-sm);
29999
30016
  }
30000
30017
 
30001
30018
  .amis-scope .a-Card-body {
30002
- padding: var(--gap-base);
30019
+ padding: var(--gap-md);
30003
30020
  flex: 1 0 auto;
30004
30021
  }
30005
30022
 
30006
30023
  .amis-scope .a-Card-heading + .a-Card-body {
30007
- padding-top: var(--gap-xs);
30024
+ padding-top: 0;
30008
30025
  }
30009
30026
 
30010
30027
  .amis-scope .a-Card-field {
@@ -30033,6 +30050,7 @@ readers do not read off random characters that represent icons */
30033
30050
  flex-direction: row;
30034
30051
  width: 100%;
30035
30052
  table-layout: fixed;
30053
+ white-space: nowrap;
30036
30054
  }
30037
30055
 
30038
30056
  .amis-scope .a-Card-actions > a {
@@ -30120,6 +30138,160 @@ readers do not read off random characters that represent icons */
30120
30138
  opacity: var(--Card-onDragging-opacity);
30121
30139
  }
30122
30140
 
30141
+ .amis-scope .a-Card-footer-wrapper {
30142
+ display: flex;
30143
+ align-items: center;
30144
+ justify-content: space-between;
30145
+ }
30146
+
30147
+ .amis-scope .a-Card-actions-wrapper {
30148
+ flex: 1;
30149
+ display: flex;
30150
+ align-items: center;
30151
+ justify-content: flex-end;
30152
+ flex-wrap: wrap;
30153
+ }
30154
+
30155
+ .amis-scope .a-Card-checkbox {
30156
+ margin: 0 var(--gap-sm) !important;
30157
+ }
30158
+
30159
+ .amis-scope .a-Card-secondary {
30160
+ max-width: 12.5rem;
30161
+ color: var(--Card-secondary-color);
30162
+ padding: 0 var(--gap-md);
30163
+ font-size: var(--fontSizeMd);
30164
+ font-weight: var(--fontWeightBase);
30165
+ white-space: nowrap;
30166
+ overflow: hidden;
30167
+ text-overflow: ellipsis;
30168
+ }
30169
+
30170
+ .amis-scope .a-Card-secondary + .a-Card-actions-wrapper .a-Card-actions {
30171
+ margin-left: unset;
30172
+ border: none;
30173
+ width: unset;
30174
+ }
30175
+
30176
+ .amis-scope .a-Card-secondary + .a-Card-actions-wrapper .a-Card-actions > a {
30177
+ border: none;
30178
+ }
30179
+
30180
+ .amis-scope .a-Card-multiMedia--top .a-Card-actions-wrapper .a-Card-actions,
30181
+ .amis-scope .a-Card-multiMedia--bottom .a-Card-actions-wrapper .a-Card-actions,
30182
+ .amis-scope .a-Card-multiMedia--left .a-Card-actions-wrapper .a-Card-actions,
30183
+ .amis-scope .a-Card-multiMedia--right .a-Card-actions-wrapper .a-Card-actions {
30184
+ margin-left: unset;
30185
+ border: none;
30186
+ width: unset;
30187
+ }
30188
+
30189
+ .amis-scope .a-Card-multiMedia--top .a-Card-actions-wrapper .a-Card-actions > a,
30190
+ .amis-scope .a-Card-multiMedia--bottom .a-Card-actions-wrapper .a-Card-actions > a,
30191
+ .amis-scope .a-Card-multiMedia--left .a-Card-actions-wrapper .a-Card-actions > a,
30192
+ .amis-scope .a-Card-multiMedia--right .a-Card-actions-wrapper .a-Card-actions > a {
30193
+ border: none;
30194
+ }
30195
+
30196
+ .amis-scope .a-Card-multiMedia--top {
30197
+ display: block;
30198
+ }
30199
+
30200
+ .amis-scope .a-Card-multiMedia--top .a-Card-multiMedia-img {
30201
+ border-bottom-left-radius: unset;
30202
+ border-bottom-right-radius: unset;
30203
+ }
30204
+
30205
+ .amis-scope .a-Card-multiMedia--bottom {
30206
+ display: flex;
30207
+ flex-direction: column-reverse;
30208
+ }
30209
+
30210
+ .amis-scope .a-Card-multiMedia--bottom .a-Card-actions {
30211
+ border-bottom: var(--Card-borderWidth) solid var(--Card-actions-borderColor);
30212
+ }
30213
+
30214
+ .amis-scope .a-Card-multiMedia--bottom .a-Card-multiMedia-img {
30215
+ border-top-left-radius: unset;
30216
+ border-top-right-radius: unset;
30217
+ }
30218
+
30219
+ .amis-scope .a-Card-multiMedia--top .a-Card-body,
30220
+ .amis-scope .a-Card-multiMedia--bottom .a-Card-body {
30221
+ padding-bottom: var(--gap-md);
30222
+ }
30223
+
30224
+ .amis-scope .a-Card-multiMedia--left {
30225
+ display: flex;
30226
+ align-items: center;
30227
+ }
30228
+
30229
+ .amis-scope .a-Card-multiMedia--left .a-Card-actions {
30230
+ margin-left: var(--gap-md);
30231
+ border-left: var(--Card-borderWidth) solid var(--Card-actions-borderColor);
30232
+ }
30233
+
30234
+ .amis-scope .a-Card-multiMedia--left .a-Card-multiMedia-img,
30235
+ .amis-scope .a-Card-multiMedia--left .a-Card-multiMedia-video {
30236
+ margin: var(--gap-md) 0 var(--gap-md) var(--gap-md);
30237
+ }
30238
+
30239
+ .amis-scope .a-Card-multiMedia--right {
30240
+ display: flex;
30241
+ align-items: center;
30242
+ justify-content: space-between;
30243
+ flex-direction: row-reverse;
30244
+ }
30245
+
30246
+ .amis-scope .a-Card-multiMedia--right .a-Card-actions {
30247
+ margin-right: var(--gap-md);
30248
+ border-right: var(--Card-borderWidth) solid var(--Card-actions-borderColor);
30249
+ }
30250
+
30251
+ .amis-scope .a-Card-multiMedia--right .a-Card-multiMedia-img,
30252
+ .amis-scope .a-Card-multiMedia--right .a-Card-multiMedia-video {
30253
+ margin: var(--gap-md) var(--gap-md) var(--gap-md) 0;
30254
+ }
30255
+
30256
+ .amis-scope .a-Card-multiMedia-flex {
30257
+ flex: 1;
30258
+ display: flex;
30259
+ flex-direction: column;
30260
+ justify-content: center;
30261
+ }
30262
+
30263
+ .amis-scope .a-Card-multiMedia-img {
30264
+ display: block;
30265
+ width: 100%;
30266
+ height: auto;
30267
+ object-fit: cover;
30268
+ border-radius: var(--Card-borderRadius);
30269
+ }
30270
+
30271
+ .amis-scope .a-Card-multiMedia-video {
30272
+ width: 11.25rem;
30273
+ height: 7.5rem;
30274
+ }
30275
+
30276
+ .amis-scope .a-Card-multiMedia-video .a-Video {
30277
+ width: 100%;
30278
+ height: 100%;
30279
+ min-width: unset;
30280
+ border-radius: var(--Card-borderRadius);
30281
+ overflow: hidden;
30282
+ }
30283
+
30284
+ .amis-scope .a-Card-multiMedia-video .a-Video .a-Video-player {
30285
+ width: 100%;
30286
+ height: 100%;
30287
+ }
30288
+
30289
+ .amis-scope .a-Card-multiMedia-video .a-Video .a-Video-player .video-react {
30290
+ width: 100%;
30291
+ height: 100%;
30292
+ padding-top: unset !important;
30293
+ }
30294
+
30123
30295
  .amis-scope .a-Field-quickEditBtn {
30124
30296
  color: var(--QuickEdit-iconColor);
30125
30297
  margin-left: var(--gap-xs);
@@ -33312,6 +33484,12 @@ readers do not read off random characters that represent icons */
33312
33484
  margin-right: var(--Checkbox-gap);
33313
33485
  }
33314
33486
 
33487
+ .amis-scope .a-GroupedSelection {
33488
+ max-height: 18.75rem;
33489
+ overflow: auto;
33490
+ user-select: none;
33491
+ }
33492
+
33315
33493
  .amis-scope .a-GroupedSelection-group:not(:first-child) > .a-GroupedSelection-itemLabel {
33316
33494
  border-top: 0.0625rem solid var(--ListMenu-divider-color);
33317
33495
  }
@@ -33675,6 +33853,12 @@ readers do not read off random characters that represent icons */
33675
33853
  transition: all var(--animation-duration);
33676
33854
  }
33677
33855
 
33856
+ .amis-scope .a-Switch .text > svg {
33857
+ width: var(--fontSizeSm);
33858
+ height: var(--fontSizeSm);
33859
+ margin-top: calc((var(--Switch-height) - var(--fontSizeSm)) / 2);
33860
+ }
33861
+
33678
33862
  .amis-scope .a-Switch .slider:before {
33679
33863
  content: "";
33680
33864
  position: absolute;
@@ -35687,8 +35871,9 @@ readers do not read off random characters that represent icons */
35687
35871
  }
35688
35872
 
35689
35873
  .amis-scope .a-FileControl-selectBtn {
35690
- display: flex;
35874
+ display: inline-flex;
35691
35875
  align-items: center;
35876
+ margin-right: 10px;
35692
35877
  }
35693
35878
 
35694
35879
  .amis-scope .a-FileControl-selectBtn > svg {
@@ -35697,7 +35882,6 @@ readers do not read off random characters that represent icons */
35697
35882
  }
35698
35883
 
35699
35884
  .amis-scope .a-FileControl-description {
35700
- margin-left: 10px;
35701
35885
  color: #999;
35702
35886
  font-size: 12px;
35703
35887
  }