amis 1.9.1-beta.28 → 1.9.1-beta.29

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. package/lib/components/AnchorNav.d.ts +8 -2
  2. package/lib/components/AnchorNav.js +24 -5
  3. package/lib/components/AnchorNav.js.map +2 -2
  4. package/lib/components/DatePicker.d.ts +41 -40
  5. package/lib/components/DatePicker.js +2 -2
  6. package/lib/components/DatePicker.js.map +2 -2
  7. package/lib/components/DateRangePicker.d.ts +44 -41
  8. package/lib/components/DateRangePicker.js +25 -8
  9. package/lib/components/DateRangePicker.js.map +2 -2
  10. package/lib/components/MonthRangePicker.d.ts +41 -40
  11. package/lib/components/MonthRangePicker.js +2 -2
  12. package/lib/components/MonthRangePicker.js.map +2 -2
  13. package/lib/components/SearchBox.d.ts +124 -42
  14. package/lib/components/SearchBox.js +181 -19
  15. package/lib/components/SearchBox.js.map +2 -2
  16. package/lib/components/Tag.d.ts +12 -10
  17. package/lib/components/Tag.js +18 -7
  18. package/lib/components/Tag.js.map +2 -2
  19. package/lib/locale/de-DE.js +1 -0
  20. package/lib/locale/de-DE.js.map +2 -2
  21. package/lib/locale/en-US.js +1 -0
  22. package/lib/locale/en-US.js.map +2 -2
  23. package/lib/locale/zh-CN.js +1 -0
  24. package/lib/locale/zh-CN.js.map +2 -2
  25. package/lib/renderers/Card.d.ts +7 -2
  26. package/lib/renderers/Card.js +11 -7
  27. package/lib/renderers/Card.js.map +2 -2
  28. package/lib/renderers/Form/InputExcel.d.ts +1 -0
  29. package/lib/renderers/Form/InputExcel.js +5 -0
  30. package/lib/renderers/Form/InputExcel.js.map +2 -2
  31. package/lib/renderers/Form/InputFile.d.ts +2 -2
  32. package/lib/renderers/Form/InputFile.js +6 -5
  33. package/lib/renderers/Form/InputFile.js.map +2 -2
  34. package/lib/renderers/Form/InputText.d.ts +8 -0
  35. package/lib/renderers/Form/InputText.js +8 -8
  36. package/lib/renderers/Form/InputText.js.map +2 -2
  37. package/lib/renderers/Table/index.js +1 -1
  38. package/lib/renderers/Table/index.js.map +2 -2
  39. package/lib/renderers/Tag.js +2 -2
  40. package/lib/renderers/Tag.js.map +2 -2
  41. package/lib/renderers/Wizard.d.ts +1 -1
  42. package/lib/renderers/Wizard.js +72 -75
  43. package/lib/renderers/Wizard.js.map +2 -2
  44. package/lib/store/formItem.js +2 -1
  45. package/lib/store/formItem.js.map +2 -2
  46. package/lib/themes/ang-ie11.css +120 -15
  47. package/lib/themes/ang.css +124 -15
  48. package/lib/themes/ang.css.map +1 -1
  49. package/lib/themes/antd-ie11.css +120 -15
  50. package/lib/themes/antd.css +124 -15
  51. package/lib/themes/antd.css.map +1 -1
  52. package/lib/themes/cxd-ie11.css +120 -15
  53. package/lib/themes/cxd.css +124 -15
  54. package/lib/themes/cxd.css.map +1 -1
  55. package/lib/themes/dark-ie11.css +120 -15
  56. package/lib/themes/dark.css +124 -15
  57. package/lib/themes/dark.css.map +1 -1
  58. package/lib/themes/default-ie11.css +120 -15
  59. package/lib/themes/default.css +124 -15
  60. package/lib/themes/default.css.map +1 -1
  61. package/package.json +3 -3
  62. package/schema.json +35 -14
  63. package/scss/_properties.scss +5 -0
  64. package/scss/components/_anchor-nav.scss +1 -0
  65. package/scss/components/_calendar.scss +32 -14
  66. package/scss/components/_search-box.scss +116 -10
  67. package/scss/components/_tag.scss +12 -3
  68. package/scss/components/form/_date-range.scss +1 -1
  69. package/sdk/ang-ie11.css +131 -14
  70. package/sdk/ang.css +135 -14
  71. package/sdk/antd-ie11.css +131 -14
  72. package/sdk/antd.css +135 -14
  73. package/sdk/cxd-ie11.css +131 -14
  74. package/sdk/cxd.css +135 -14
  75. package/sdk/dark-ie11.css +131 -14
  76. package/sdk/dark.css +135 -14
  77. package/sdk/locale/de-DE.js +1 -0
  78. package/sdk/sdk-ie11.css +131 -14
  79. package/sdk/sdk.css +135 -14
  80. package/sdk/sdk.js +17 -17
  81. package/src/components/AnchorNav.tsx +40 -7
  82. package/src/components/DatePicker.tsx +8 -4
  83. package/src/components/DateRangePicker.tsx +34 -8
  84. package/src/components/MonthRangePicker.tsx +4 -2
  85. package/src/components/SearchBox.tsx +262 -29
  86. package/src/components/Tag.tsx +14 -3
  87. package/src/locale/de-DE.ts +1 -0
  88. package/src/locale/en-US.ts +1 -0
  89. package/src/locale/zh-CN.ts +1 -0
  90. package/src/renderers/Card.tsx +24 -12
  91. package/src/renderers/Form/InputExcel.tsx +6 -0
  92. package/src/renderers/Form/InputFile.tsx +19 -18
  93. package/src/renderers/Form/InputText.tsx +20 -5
  94. package/src/renderers/Table/index.tsx +1 -1
  95. package/src/renderers/Tag.tsx +2 -0
  96. package/src/renderers/Wizard.tsx +2 -1
  97. package/src/store/formItem.ts +4 -1
package/sdk/ang-ie11.css CHANGED
@@ -31171,6 +31171,11 @@ readers do not read off random characters that represent icons */
31171
31171
  border-width: 0;
31172
31172
  }
31173
31173
 
31174
+ .amis-scope .a-CalendarMobile-pop--time {
31175
+ height: fit-content;
31176
+ max-height: 90vh;
31177
+ }
31178
+
31174
31179
  .amis-scope .a-CalendarMobile-wrap {
31175
31180
  display: flex;
31176
31181
  flex-direction: column;
@@ -31392,7 +31397,7 @@ readers do not read off random characters that represent icons */
31392
31397
  }
31393
31398
 
31394
31399
  .amis-scope .a-CalendarMobile .a-CalendarMobile-calendar-wrap .a-CalendarMobile-calendar .rdtPicker .rdtToday .calendar-wrap {
31395
- border: 1px solid #2468F2;
31400
+ border: 1px solid #2468f2;
31396
31401
  }
31397
31402
 
31398
31403
  .amis-scope .a-CalendarMobile-calendar-header {
@@ -38992,7 +38997,7 @@ readers do not read off random characters that represent icons */
38992
38997
  .amis-scope .a-SearchBox.is-active {
38993
38998
  background: #fff;
38994
38999
  border: 0.0625rem solid #d1d5db;
38995
- width: 150px;
39000
+ width: 9.375rem;
38996
39001
  }
38997
39002
 
38998
39003
  .amis-scope .a-SearchBox.is-active > input {
@@ -39008,14 +39013,8 @@ readers do not read off random characters that represent icons */
39008
39013
  }
39009
39014
 
39010
39015
  .amis-scope .a-SearchBox-searchBtn {
39011
- display: flex;
39012
- width: var(--SearchBox-height);
39013
- align-items: center;
39014
- justify-content: center;
39015
- }
39016
-
39017
- .amis-scope .a-SearchBox-searchBtn .icon {
39018
- top: 0;
39016
+ display: inline-block;
39017
+ padding: 0.3125rem 0.625rem;
39019
39018
  }
39020
39019
 
39021
39020
  .amis-scope .a-SearchBox-activeBtn,
@@ -39103,6 +39102,116 @@ readers do not read off random characters that represent icons */
39103
39102
  color: var(--SearchBox-enhonce-disabled-search-color);
39104
39103
  }
39105
39104
 
39105
+ .amis-scope .a-SearchBox-history > .is-history {
39106
+ width: 100%;
39107
+ }
39108
+
39109
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-dropdown {
39110
+ position: absolute;
39111
+ left: 0;
39112
+ z-index: 998;
39113
+ padding: 0.5rem 0;
39114
+ width: 100%;
39115
+ max-width: calc(9.375rem * 2);
39116
+ min-height: 4.5rem;
39117
+ max-height: 12.5rem;
39118
+ background: #fff;
39119
+ border: 0.0625rem solid #d1d5db;
39120
+ border-top: none;
39121
+ border-radius: 0.142rem;
39122
+ box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
39123
+ display: none;
39124
+ }
39125
+
39126
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-dropdown.is-active {
39127
+ display: block;
39128
+ }
39129
+
39130
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-dropdown header {
39131
+ display: flex;
39132
+ flex-flow: row nowrap;
39133
+ align-items: center;
39134
+ justify-content: space-between;
39135
+ padding: 0 1rem;
39136
+ margin-bottom: 0.625rem;
39137
+ }
39138
+
39139
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-dropdown header h4 {
39140
+ font-size: 0.875rem;
39141
+ height: 1.5rem;
39142
+ line-height: 1.5rem;
39143
+ font-weight: bold;
39144
+ margin: 0;
39145
+ }
39146
+
39147
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-dropdown header a {
39148
+ display: inline-block;
39149
+ font-size: 0.75rem;
39150
+ cursor: pointer;
39151
+ padding: 0;
39152
+ }
39153
+
39154
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-content {
39155
+ display: flex;
39156
+ flex-flow: row wrap;
39157
+ justify-content: flex-start;
39158
+ align-items: center;
39159
+ padding: 0 1rem;
39160
+ overflow-x: hidden;
39161
+ overflow-y: auto;
39162
+ max-height: calc( 12.5rem - 38px - 0.5rem * 2 );
39163
+ }
39164
+
39165
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag {
39166
+ display: inlin-flex;
39167
+ height: 1.5rem;
39168
+ padding: 0 0.5rem;
39169
+ flex-flow: row nowrap;
39170
+ justify-content: center;
39171
+ align-items: center;
39172
+ font-size: 0.75rem;
39173
+ max-width: 160px;
39174
+ border-radius: 0.125rem;
39175
+ background-color: #f2f2f4;
39176
+ color: #151a26;
39177
+ margin-bottom: 0.5rem;
39178
+ margin-right: 0.5rem;
39179
+ max-width: 96px;
39180
+ cursor: pointer;
39181
+ }
39182
+
39183
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag-text {
39184
+ display: inline-block;
39185
+ text-overflow: ellipsis;
39186
+ overflow: hidden;
39187
+ white-space: nowrap;
39188
+ line-height: 24px;
39189
+ }
39190
+
39191
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag-close {
39192
+ margin-left: 0.5rem;
39193
+ margin-right: 0.25rem;
39194
+ cursor: pointer;
39195
+ }
39196
+
39197
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag-close i {
39198
+ font-size: 0.5rem;
39199
+ }
39200
+
39201
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag-close .icon {
39202
+ width: 0.5rem;
39203
+ height: 0.5rem;
39204
+ position: inherit;
39205
+ }
39206
+
39207
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag-close:hover {
39208
+ opacity: 0.7;
39209
+ }
39210
+
39211
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag-close:active {
39212
+ opacity: 0.3;
39213
+ }
39214
+
39106
39215
  .amis-scope .a-ListMenu {
39107
39216
  background: #fff;
39108
39217
  min-width: 12.5rem;
@@ -44132,7 +44241,7 @@ readers do not read off random characters that represent icons */
44132
44241
  margin: 0;
44133
44242
  padding-left: 0.625rem;
44134
44243
  list-style: none;
44135
- background: #F7F7F9;
44244
+ background: #f7f7f9;
44136
44245
  line-height: 2rem;
44137
44246
  }
44138
44247
 
@@ -48716,6 +48825,7 @@ readers do not read off random characters that represent icons */
48716
48825
  overflow: auto;
48717
48826
  scroll-behavior: smooth;
48718
48827
  background: #fff;
48828
+ position: relative;
48719
48829
  }
48720
48830
 
48721
48831
  .amis-scope .a-AnchorNav-section-wrap > .a-AnchorNav-section {
@@ -49697,19 +49807,25 @@ readers do not read off random characters that represent icons */
49697
49807
  display: inline-flex;
49698
49808
  height: 1.5rem;
49699
49809
  padding: 0 0.5rem;
49810
+ flex-flow: row nowrap;
49700
49811
  justify-content: center;
49701
49812
  align-items: center;
49702
49813
  font-size: 0.75rem;
49703
49814
  max-width: 160px;
49704
- text-overflow: ellipsis;
49705
- overflow: hidden;
49706
- white-space: nowrap;
49707
49815
  transition: all 0.3;
49708
49816
  border-radius: 0.125rem;
49709
49817
  background-color: #f2f2f4;
49710
49818
  color: #151a26;
49711
49819
  }
49712
49820
 
49821
+ .amis-scope .a-Tag-text {
49822
+ display: inline-block;
49823
+ text-overflow: ellipsis;
49824
+ overflow: hidden;
49825
+ white-space: nowrap;
49826
+ line-height: 1.5rem;
49827
+ }
49828
+
49713
49829
  .amis-scope .a-Tag:not(:last-child) {
49714
49830
  margin-right: 0.5rem;
49715
49831
  }
@@ -49751,6 +49867,7 @@ readers do not read off random characters that represent icons */
49751
49867
  border-radius: calc((1.5rem + 2px) / 2);
49752
49868
  border: 1px solid #f2f2f4;
49753
49869
  color: #f2f2f4;
49870
+ line-height: 22px;
49754
49871
  }
49755
49872
 
49756
49873
  .amis-scope .a-Tag--rounded--inactive {
package/sdk/ang.css CHANGED
@@ -14735,6 +14735,10 @@ readers do not read off random characters that represent icons */
14735
14735
  --default-padding: 4px 12px;
14736
14736
  --menu-min-width: 150px;
14737
14737
  --menu-sub-min-width: 100px;
14738
+ --SearchBox-height: 1.875rem;
14739
+ --SearchBox-width: 9.375rem;
14740
+ --SearchBox-history-dropdown-maxWidth: calc(var(--SearchBox-width) * 2);
14741
+ --SearchBox-history-dropdown-maxHeight: 12.5rem;
14738
14742
  }
14739
14743
 
14740
14744
  /* BASICS */
@@ -32667,6 +32671,11 @@ readers do not read off random characters that represent icons */
32667
32671
  border-width: 0;
32668
32672
  }
32669
32673
 
32674
+ .amis-scope .a-CalendarMobile-pop--time {
32675
+ height: fit-content;
32676
+ max-height: 90vh;
32677
+ }
32678
+
32670
32679
  .amis-scope .a-CalendarMobile-wrap {
32671
32680
  display: flex;
32672
32681
  flex-direction: column;
@@ -32888,7 +32897,7 @@ readers do not read off random characters that represent icons */
32888
32897
  }
32889
32898
 
32890
32899
  .amis-scope .a-CalendarMobile .a-CalendarMobile-calendar-wrap .a-CalendarMobile-calendar .rdtPicker .rdtToday .calendar-wrap {
32891
- border: 1px solid #2468F2;
32900
+ border: 1px solid #2468f2;
32892
32901
  }
32893
32902
 
32894
32903
  .amis-scope .a-CalendarMobile-calendar-header {
@@ -40412,7 +40421,7 @@ readers do not read off random characters that represent icons */
40412
40421
  .amis-scope .a-SearchBox.is-active {
40413
40422
  background: var(--Form-input-bg);
40414
40423
  border: var(--Form-input-borderWidth) solid var(--Form-input-borderColor);
40415
- width: 150px;
40424
+ width: var(--SearchBox-width);
40416
40425
  }
40417
40426
 
40418
40427
  .amis-scope .a-SearchBox.is-active > input {
@@ -40428,14 +40437,8 @@ readers do not read off random characters that represent icons */
40428
40437
  }
40429
40438
 
40430
40439
  .amis-scope .a-SearchBox-searchBtn {
40431
- display: flex;
40432
- width: var(--SearchBox-height);
40433
- align-items: center;
40434
- justify-content: center;
40435
- }
40436
-
40437
- .amis-scope .a-SearchBox-searchBtn .icon {
40438
- top: 0;
40440
+ display: inline-block;
40441
+ padding: 0.3125rem 0.625rem;
40439
40442
  }
40440
40443
 
40441
40444
  .amis-scope .a-SearchBox-activeBtn,
@@ -40523,6 +40526,116 @@ readers do not read off random characters that represent icons */
40523
40526
  color: var(--SearchBox-enhonce-disabled-search-color);
40524
40527
  }
40525
40528
 
40529
+ .amis-scope .a-SearchBox-history > .is-history {
40530
+ width: 100%;
40531
+ }
40532
+
40533
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-dropdown {
40534
+ position: absolute;
40535
+ left: 0;
40536
+ z-index: 998;
40537
+ padding: var(--gap-sm) 0;
40538
+ width: 100%;
40539
+ max-width: var(--SearchBox-history-dropdown-maxWidth);
40540
+ min-height: 4.5rem;
40541
+ max-height: var(--SearchBox-history-dropdown-maxHeight);
40542
+ background: var(--white);
40543
+ border: var(--borderWidth) solid var(--borderColor);
40544
+ border-top: none;
40545
+ border-radius: var(--borderRadius);
40546
+ box-shadow: var(--boxShadow);
40547
+ display: none;
40548
+ }
40549
+
40550
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-dropdown.is-active {
40551
+ display: block;
40552
+ }
40553
+
40554
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-dropdown header {
40555
+ display: flex;
40556
+ flex-flow: row nowrap;
40557
+ align-items: center;
40558
+ justify-content: space-between;
40559
+ padding: 0 var(--gap-md);
40560
+ margin-bottom: 0.625rem;
40561
+ }
40562
+
40563
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-dropdown header h4 {
40564
+ font-size: var(--fontSizeBase);
40565
+ height: 1.5rem;
40566
+ line-height: 1.5rem;
40567
+ font-weight: bold;
40568
+ margin: 0;
40569
+ }
40570
+
40571
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-dropdown header a {
40572
+ display: inline-block;
40573
+ font-size: var(--fontSizeSm);
40574
+ cursor: pointer;
40575
+ padding: 0;
40576
+ }
40577
+
40578
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-content {
40579
+ display: flex;
40580
+ flex-flow: row wrap;
40581
+ justify-content: flex-start;
40582
+ align-items: center;
40583
+ padding: 0 var(--gap-md);
40584
+ overflow-x: hidden;
40585
+ overflow-y: auto;
40586
+ max-height: calc( var(--SearchBox-history-dropdown-maxHeight) - 38px - var(--gap-sm) * 2 );
40587
+ }
40588
+
40589
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag {
40590
+ display: inlin-flex;
40591
+ height: var(--Tag-height);
40592
+ padding: 0 var(--gap-sm);
40593
+ flex-flow: row nowrap;
40594
+ justify-content: center;
40595
+ align-items: center;
40596
+ font-size: var(--Tag-content-fontSize);
40597
+ max-width: 160px;
40598
+ border-radius: var(--Tag-borderRadius);
40599
+ background-color: var(--Tag-default-color);
40600
+ color: var(--Tag-fontColor);
40601
+ margin-bottom: var(--gap-sm);
40602
+ margin-right: var(--gap-sm);
40603
+ max-width: 96px;
40604
+ cursor: pointer;
40605
+ }
40606
+
40607
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag-text {
40608
+ display: inline-block;
40609
+ text-overflow: ellipsis;
40610
+ overflow: hidden;
40611
+ white-space: nowrap;
40612
+ line-height: 24px;
40613
+ }
40614
+
40615
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag-close {
40616
+ margin-left: var(--gap-sm);
40617
+ margin-right: var(--gap-xs);
40618
+ cursor: pointer;
40619
+ }
40620
+
40621
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag-close i {
40622
+ font-size: 0.5rem;
40623
+ }
40624
+
40625
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag-close .icon {
40626
+ width: 0.5rem;
40627
+ height: 0.5rem;
40628
+ position: inherit;
40629
+ }
40630
+
40631
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag-close:hover {
40632
+ opacity: 0.7;
40633
+ }
40634
+
40635
+ .amis-scope .a-SearchBox-history .a-SearchBox-history-tag-close:active {
40636
+ opacity: 0.3;
40637
+ }
40638
+
40526
40639
  .amis-scope .a-ListMenu {
40527
40640
  background: var(--ListMenu-item-bg);
40528
40641
  min-width: 12.5rem;
@@ -45445,7 +45558,7 @@ readers do not read off random characters that represent icons */
45445
45558
  margin: 0;
45446
45559
  padding-left: 0.625rem;
45447
45560
  list-style: none;
45448
- background: #F7F7F9;
45561
+ background: #f7f7f9;
45449
45562
  line-height: 2rem;
45450
45563
  }
45451
45564
 
@@ -49909,6 +50022,7 @@ readers do not read off random characters that represent icons */
49909
50022
  overflow: auto;
49910
50023
  scroll-behavior: smooth;
49911
50024
  background: var(--Tabs-content-bg);
50025
+ position: relative;
49912
50026
  }
49913
50027
 
49914
50028
  .amis-scope .a-AnchorNav-section-wrap > .a-AnchorNav-section {
@@ -50884,19 +50998,25 @@ readers do not read off random characters that represent icons */
50884
50998
  display: inline-flex;
50885
50999
  height: var(--Tag-height);
50886
51000
  padding: 0 var(--gap-sm);
51001
+ flex-flow: row nowrap;
50887
51002
  justify-content: center;
50888
51003
  align-items: center;
50889
51004
  font-size: var(--Tag-content-fontSize);
50890
51005
  max-width: 160px;
50891
- text-overflow: ellipsis;
50892
- overflow: hidden;
50893
- white-space: nowrap;
50894
51006
  transition: all 0.3;
50895
51007
  border-radius: var(--Tag-borderRadius);
50896
51008
  background-color: var(--Tag-default-color);
50897
51009
  color: var(--Tag-fontColor);
50898
51010
  }
50899
51011
 
51012
+ .amis-scope .a-Tag-text {
51013
+ display: inline-block;
51014
+ text-overflow: ellipsis;
51015
+ overflow: hidden;
51016
+ white-space: nowrap;
51017
+ line-height: var(--Tag-height);
51018
+ }
51019
+
50900
51020
  .amis-scope .a-Tag:not(:last-child) {
50901
51021
  margin-right: var(--gap-sm);
50902
51022
  }
@@ -50938,6 +51058,7 @@ readers do not read off random characters that represent icons */
50938
51058
  border-radius: calc((var(--Tag-height) + 2px) / 2);
50939
51059
  border: 1px solid var(--Tag-default-color);
50940
51060
  color: var(--Tag-default-color);
51061
+ line-height: 22px;
50941
51062
  }
50942
51063
 
50943
51064
  .amis-scope .a-Tag--rounded--inactive {
package/sdk/antd-ie11.css CHANGED
@@ -31149,6 +31149,11 @@ readers do not read off random characters that represent icons */
31149
31149
  border-width: 0;
31150
31150
  }
31151
31151
 
31152
+ .amis-scope .antd-CalendarMobile-pop--time {
31153
+ height: fit-content;
31154
+ max-height: 90vh;
31155
+ }
31156
+
31152
31157
  .amis-scope .antd-CalendarMobile-wrap {
31153
31158
  display: flex;
31154
31159
  flex-direction: column;
@@ -31370,7 +31375,7 @@ readers do not read off random characters that represent icons */
31370
31375
  }
31371
31376
 
31372
31377
  .amis-scope .antd-CalendarMobile .antd-CalendarMobile-calendar-wrap .antd-CalendarMobile-calendar .rdtPicker .rdtToday .calendar-wrap {
31373
- border: 1px solid #2468F2;
31378
+ border: 1px solid #2468f2;
31374
31379
  }
31375
31380
 
31376
31381
  .amis-scope .antd-CalendarMobile-calendar-header {
@@ -38970,7 +38975,7 @@ readers do not read off random characters that represent icons */
38970
38975
  .amis-scope .antd-SearchBox.is-active {
38971
38976
  background: #fff;
38972
38977
  border: 0.0625rem solid #d9d9d9;
38973
- width: 150px;
38978
+ width: 9.375rem;
38974
38979
  }
38975
38980
 
38976
38981
  .amis-scope .antd-SearchBox.is-active > input {
@@ -38986,14 +38991,8 @@ readers do not read off random characters that represent icons */
38986
38991
  }
38987
38992
 
38988
38993
  .amis-scope .antd-SearchBox-searchBtn {
38989
- display: flex;
38990
- width: var(--SearchBox-height);
38991
- align-items: center;
38992
- justify-content: center;
38993
- }
38994
-
38995
- .amis-scope .antd-SearchBox-searchBtn .icon {
38996
- top: 0;
38994
+ display: inline-block;
38995
+ padding: 0.3125rem 0.625rem;
38997
38996
  }
38998
38997
 
38999
38998
  .amis-scope .antd-SearchBox-activeBtn,
@@ -39081,6 +39080,116 @@ readers do not read off random characters that represent icons */
39081
39080
  color: var(--SearchBox-enhonce-disabled-search-color);
39082
39081
  }
39083
39082
 
39083
+ .amis-scope .antd-SearchBox-history > .is-history {
39084
+ width: 100%;
39085
+ }
39086
+
39087
+ .amis-scope .antd-SearchBox-history .antd-SearchBox-history-dropdown {
39088
+ position: absolute;
39089
+ left: 0;
39090
+ z-index: 998;
39091
+ padding: 0.5rem 0;
39092
+ width: 100%;
39093
+ max-width: calc(9.375rem * 2);
39094
+ min-height: 4.5rem;
39095
+ max-height: 12.5rem;
39096
+ background: #fff;
39097
+ border: 0.0625rem solid #d9d9d9;
39098
+ border-top: none;
39099
+ border-radius: 2px;
39100
+ box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
39101
+ display: none;
39102
+ }
39103
+
39104
+ .amis-scope .antd-SearchBox-history .antd-SearchBox-history-dropdown.is-active {
39105
+ display: block;
39106
+ }
39107
+
39108
+ .amis-scope .antd-SearchBox-history .antd-SearchBox-history-dropdown header {
39109
+ display: flex;
39110
+ flex-flow: row nowrap;
39111
+ align-items: center;
39112
+ justify-content: space-between;
39113
+ padding: 0 1rem;
39114
+ margin-bottom: 0.625rem;
39115
+ }
39116
+
39117
+ .amis-scope .antd-SearchBox-history .antd-SearchBox-history-dropdown header h4 {
39118
+ font-size: 0.875rem;
39119
+ height: 1.5rem;
39120
+ line-height: 1.5rem;
39121
+ font-weight: bold;
39122
+ margin: 0;
39123
+ }
39124
+
39125
+ .amis-scope .antd-SearchBox-history .antd-SearchBox-history-dropdown header a {
39126
+ display: inline-block;
39127
+ font-size: 0.75rem;
39128
+ cursor: pointer;
39129
+ padding: 0;
39130
+ }
39131
+
39132
+ .amis-scope .antd-SearchBox-history .antd-SearchBox-history-content {
39133
+ display: flex;
39134
+ flex-flow: row wrap;
39135
+ justify-content: flex-start;
39136
+ align-items: center;
39137
+ padding: 0 1rem;
39138
+ overflow-x: hidden;
39139
+ overflow-y: auto;
39140
+ max-height: calc( 12.5rem - 38px - 0.5rem * 2 );
39141
+ }
39142
+
39143
+ .amis-scope .antd-SearchBox-history .antd-SearchBox-history-tag {
39144
+ display: inlin-flex;
39145
+ height: 1.5rem;
39146
+ padding: 0 0.5rem;
39147
+ flex-flow: row nowrap;
39148
+ justify-content: center;
39149
+ align-items: center;
39150
+ font-size: 0.75rem;
39151
+ max-width: 160px;
39152
+ border-radius: 0.125rem;
39153
+ background-color: #f2f2f4;
39154
+ color: #151a26;
39155
+ margin-bottom: 0.5rem;
39156
+ margin-right: 0.5rem;
39157
+ max-width: 96px;
39158
+ cursor: pointer;
39159
+ }
39160
+
39161
+ .amis-scope .antd-SearchBox-history .antd-SearchBox-history-tag-text {
39162
+ display: inline-block;
39163
+ text-overflow: ellipsis;
39164
+ overflow: hidden;
39165
+ white-space: nowrap;
39166
+ line-height: 24px;
39167
+ }
39168
+
39169
+ .amis-scope .antd-SearchBox-history .antd-SearchBox-history-tag-close {
39170
+ margin-left: 0.5rem;
39171
+ margin-right: 0.25rem;
39172
+ cursor: pointer;
39173
+ }
39174
+
39175
+ .amis-scope .antd-SearchBox-history .antd-SearchBox-history-tag-close i {
39176
+ font-size: 0.5rem;
39177
+ }
39178
+
39179
+ .amis-scope .antd-SearchBox-history .antd-SearchBox-history-tag-close .icon {
39180
+ width: 0.5rem;
39181
+ height: 0.5rem;
39182
+ position: inherit;
39183
+ }
39184
+
39185
+ .amis-scope .antd-SearchBox-history .antd-SearchBox-history-tag-close:hover {
39186
+ opacity: 0.7;
39187
+ }
39188
+
39189
+ .amis-scope .antd-SearchBox-history .antd-SearchBox-history-tag-close:active {
39190
+ opacity: 0.3;
39191
+ }
39192
+
39084
39193
  .amis-scope .antd-ListMenu {
39085
39194
  background: #fff;
39086
39195
  min-width: 12.5rem;
@@ -44107,7 +44216,7 @@ readers do not read off random characters that represent icons */
44107
44216
  margin: 0;
44108
44217
  padding-left: 0.625rem;
44109
44218
  list-style: none;
44110
- background: #F7F7F9;
44219
+ background: #f7f7f9;
44111
44220
  line-height: 2rem;
44112
44221
  }
44113
44222
 
@@ -48686,6 +48795,7 @@ readers do not read off random characters that represent icons */
48686
48795
  overflow: auto;
48687
48796
  scroll-behavior: smooth;
48688
48797
  background: #fff;
48798
+ position: relative;
48689
48799
  }
48690
48800
 
48691
48801
  .amis-scope .antd-AnchorNav-section-wrap > .antd-AnchorNav-section {
@@ -49667,19 +49777,25 @@ readers do not read off random characters that represent icons */
49667
49777
  display: inline-flex;
49668
49778
  height: 1.5rem;
49669
49779
  padding: 0 0.5rem;
49780
+ flex-flow: row nowrap;
49670
49781
  justify-content: center;
49671
49782
  align-items: center;
49672
49783
  font-size: 0.75rem;
49673
49784
  max-width: 160px;
49674
- text-overflow: ellipsis;
49675
- overflow: hidden;
49676
- white-space: nowrap;
49677
49785
  transition: all 0.3;
49678
49786
  border-radius: 0.125rem;
49679
49787
  background-color: #f2f2f4;
49680
49788
  color: #151a26;
49681
49789
  }
49682
49790
 
49791
+ .amis-scope .antd-Tag-text {
49792
+ display: inline-block;
49793
+ text-overflow: ellipsis;
49794
+ overflow: hidden;
49795
+ white-space: nowrap;
49796
+ line-height: 1.5rem;
49797
+ }
49798
+
49683
49799
  .amis-scope .antd-Tag:not(:last-child) {
49684
49800
  margin-right: 0.5rem;
49685
49801
  }
@@ -49721,6 +49837,7 @@ readers do not read off random characters that represent icons */
49721
49837
  border-radius: calc((1.5rem + 2px) / 2);
49722
49838
  border: 1px solid #f2f2f4;
49723
49839
  color: #f2f2f4;
49840
+ line-height: 22px;
49724
49841
  }
49725
49842
 
49726
49843
  .amis-scope .antd-Tag--rounded--inactive {