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/dark-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 .dark-CalendarMobile-pop--time {
31175
+ height: fit-content;
31176
+ max-height: 90vh;
31177
+ }
31178
+
31174
31179
  .amis-scope .dark-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 .dark-CalendarMobile .dark-CalendarMobile-calendar-wrap .dark-CalendarMobile-calendar .rdtPicker .rdtToday .calendar-wrap {
31395
- border: 1px solid #2468F2;
31400
+ border: 1px solid #2468f2;
31396
31401
  }
31397
31402
 
31398
31403
  .amis-scope .dark-CalendarMobile-calendar-header {
@@ -38992,7 +38997,7 @@ readers do not read off random characters that represent icons */
38992
38997
  .amis-scope .dark-SearchBox.is-active {
38993
38998
  background: #3c3c3c;
38994
38999
  border: 0.0625rem solid #656565;
38995
- width: 150px;
39000
+ width: 9.375rem;
38996
39001
  }
38997
39002
 
38998
39003
  .amis-scope .dark-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 .dark-SearchBox-searchBtn {
39011
- display: flex;
39012
- width: var(--SearchBox-height);
39013
- align-items: center;
39014
- justify-content: center;
39015
- }
39016
-
39017
- .amis-scope .dark-SearchBox-searchBtn .icon {
39018
- top: 0;
39016
+ display: inline-block;
39017
+ padding: 0.3125rem 0.625rem;
39019
39018
  }
39020
39019
 
39021
39020
  .amis-scope .dark-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 .dark-SearchBox-history > .is-history {
39106
+ width: 100%;
39107
+ }
39108
+
39109
+ .amis-scope .dark-SearchBox-history .dark-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 #656565;
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 .dark-SearchBox-history .dark-SearchBox-history-dropdown.is-active {
39127
+ display: block;
39128
+ }
39129
+
39130
+ .amis-scope .dark-SearchBox-history .dark-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 .dark-SearchBox-history .dark-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 .dark-SearchBox-history .dark-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 .dark-SearchBox-history .dark-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 .dark-SearchBox-history .dark-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 .dark-SearchBox-history .dark-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 .dark-SearchBox-history .dark-SearchBox-history-tag-close {
39192
+ margin-left: 0.5rem;
39193
+ margin-right: 0.25rem;
39194
+ cursor: pointer;
39195
+ }
39196
+
39197
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-tag-close i {
39198
+ font-size: 0.5rem;
39199
+ }
39200
+
39201
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-tag-close .icon {
39202
+ width: 0.5rem;
39203
+ height: 0.5rem;
39204
+ position: inherit;
39205
+ }
39206
+
39207
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-tag-close:hover {
39208
+ opacity: 0.7;
39209
+ }
39210
+
39211
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-tag-close:active {
39212
+ opacity: 0.3;
39213
+ }
39214
+
39106
39215
  .amis-scope .dark-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: #302d2a;
48828
+ position: relative;
48719
48829
  }
48720
48830
 
48721
48831
  .amis-scope .dark-AnchorNav-section-wrap > .dark-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 .dark-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 .dark-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 .dark-Tag--rounded--inactive {
package/sdk/dark.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
  :root {
@@ -32755,6 +32759,11 @@ readers do not read off random characters that represent icons */
32755
32759
  border-width: 0;
32756
32760
  }
32757
32761
 
32762
+ .amis-scope .dark-CalendarMobile-pop--time {
32763
+ height: fit-content;
32764
+ max-height: 90vh;
32765
+ }
32766
+
32758
32767
  .amis-scope .dark-CalendarMobile-wrap {
32759
32768
  display: flex;
32760
32769
  flex-direction: column;
@@ -32976,7 +32985,7 @@ readers do not read off random characters that represent icons */
32976
32985
  }
32977
32986
 
32978
32987
  .amis-scope .dark-CalendarMobile .dark-CalendarMobile-calendar-wrap .dark-CalendarMobile-calendar .rdtPicker .rdtToday .calendar-wrap {
32979
- border: 1px solid #2468F2;
32988
+ border: 1px solid #2468f2;
32980
32989
  }
32981
32990
 
32982
32991
  .amis-scope .dark-CalendarMobile-calendar-header {
@@ -40500,7 +40509,7 @@ readers do not read off random characters that represent icons */
40500
40509
  .amis-scope .dark-SearchBox.is-active {
40501
40510
  background: var(--Form-input-bg);
40502
40511
  border: var(--Form-input-borderWidth) solid var(--Form-input-borderColor);
40503
- width: 150px;
40512
+ width: var(--SearchBox-width);
40504
40513
  }
40505
40514
 
40506
40515
  .amis-scope .dark-SearchBox.is-active > input {
@@ -40516,14 +40525,8 @@ readers do not read off random characters that represent icons */
40516
40525
  }
40517
40526
 
40518
40527
  .amis-scope .dark-SearchBox-searchBtn {
40519
- display: flex;
40520
- width: var(--SearchBox-height);
40521
- align-items: center;
40522
- justify-content: center;
40523
- }
40524
-
40525
- .amis-scope .dark-SearchBox-searchBtn .icon {
40526
- top: 0;
40528
+ display: inline-block;
40529
+ padding: 0.3125rem 0.625rem;
40527
40530
  }
40528
40531
 
40529
40532
  .amis-scope .dark-SearchBox-activeBtn,
@@ -40611,6 +40614,116 @@ readers do not read off random characters that represent icons */
40611
40614
  color: var(--SearchBox-enhonce-disabled-search-color);
40612
40615
  }
40613
40616
 
40617
+ .amis-scope .dark-SearchBox-history > .is-history {
40618
+ width: 100%;
40619
+ }
40620
+
40621
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-dropdown {
40622
+ position: absolute;
40623
+ left: 0;
40624
+ z-index: 998;
40625
+ padding: var(--gap-sm) 0;
40626
+ width: 100%;
40627
+ max-width: var(--SearchBox-history-dropdown-maxWidth);
40628
+ min-height: 4.5rem;
40629
+ max-height: var(--SearchBox-history-dropdown-maxHeight);
40630
+ background: var(--white);
40631
+ border: var(--borderWidth) solid var(--borderColor);
40632
+ border-top: none;
40633
+ border-radius: var(--borderRadius);
40634
+ box-shadow: var(--boxShadow);
40635
+ display: none;
40636
+ }
40637
+
40638
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-dropdown.is-active {
40639
+ display: block;
40640
+ }
40641
+
40642
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-dropdown header {
40643
+ display: flex;
40644
+ flex-flow: row nowrap;
40645
+ align-items: center;
40646
+ justify-content: space-between;
40647
+ padding: 0 var(--gap-md);
40648
+ margin-bottom: 0.625rem;
40649
+ }
40650
+
40651
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-dropdown header h4 {
40652
+ font-size: var(--fontSizeBase);
40653
+ height: 1.5rem;
40654
+ line-height: 1.5rem;
40655
+ font-weight: bold;
40656
+ margin: 0;
40657
+ }
40658
+
40659
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-dropdown header a {
40660
+ display: inline-block;
40661
+ font-size: var(--fontSizeSm);
40662
+ cursor: pointer;
40663
+ padding: 0;
40664
+ }
40665
+
40666
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-content {
40667
+ display: flex;
40668
+ flex-flow: row wrap;
40669
+ justify-content: flex-start;
40670
+ align-items: center;
40671
+ padding: 0 var(--gap-md);
40672
+ overflow-x: hidden;
40673
+ overflow-y: auto;
40674
+ max-height: calc( var(--SearchBox-history-dropdown-maxHeight) - 38px - var(--gap-sm) * 2 );
40675
+ }
40676
+
40677
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-tag {
40678
+ display: inlin-flex;
40679
+ height: var(--Tag-height);
40680
+ padding: 0 var(--gap-sm);
40681
+ flex-flow: row nowrap;
40682
+ justify-content: center;
40683
+ align-items: center;
40684
+ font-size: var(--Tag-content-fontSize);
40685
+ max-width: 160px;
40686
+ border-radius: var(--Tag-borderRadius);
40687
+ background-color: var(--Tag-default-color);
40688
+ color: var(--Tag-fontColor);
40689
+ margin-bottom: var(--gap-sm);
40690
+ margin-right: var(--gap-sm);
40691
+ max-width: 96px;
40692
+ cursor: pointer;
40693
+ }
40694
+
40695
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-tag-text {
40696
+ display: inline-block;
40697
+ text-overflow: ellipsis;
40698
+ overflow: hidden;
40699
+ white-space: nowrap;
40700
+ line-height: 24px;
40701
+ }
40702
+
40703
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-tag-close {
40704
+ margin-left: var(--gap-sm);
40705
+ margin-right: var(--gap-xs);
40706
+ cursor: pointer;
40707
+ }
40708
+
40709
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-tag-close i {
40710
+ font-size: 0.5rem;
40711
+ }
40712
+
40713
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-tag-close .icon {
40714
+ width: 0.5rem;
40715
+ height: 0.5rem;
40716
+ position: inherit;
40717
+ }
40718
+
40719
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-tag-close:hover {
40720
+ opacity: 0.7;
40721
+ }
40722
+
40723
+ .amis-scope .dark-SearchBox-history .dark-SearchBox-history-tag-close:active {
40724
+ opacity: 0.3;
40725
+ }
40726
+
40614
40727
  .amis-scope .dark-ListMenu {
40615
40728
  background: var(--ListMenu-item-bg);
40616
40729
  min-width: 12.5rem;
@@ -45533,7 +45646,7 @@ readers do not read off random characters that represent icons */
45533
45646
  margin: 0;
45534
45647
  padding-left: 0.625rem;
45535
45648
  list-style: none;
45536
- background: #F7F7F9;
45649
+ background: #f7f7f9;
45537
45650
  line-height: 2rem;
45538
45651
  }
45539
45652
 
@@ -49997,6 +50110,7 @@ readers do not read off random characters that represent icons */
49997
50110
  overflow: auto;
49998
50111
  scroll-behavior: smooth;
49999
50112
  background: var(--Tabs-content-bg);
50113
+ position: relative;
50000
50114
  }
50001
50115
 
50002
50116
  .amis-scope .dark-AnchorNav-section-wrap > .dark-AnchorNav-section {
@@ -50972,19 +51086,25 @@ readers do not read off random characters that represent icons */
50972
51086
  display: inline-flex;
50973
51087
  height: var(--Tag-height);
50974
51088
  padding: 0 var(--gap-sm);
51089
+ flex-flow: row nowrap;
50975
51090
  justify-content: center;
50976
51091
  align-items: center;
50977
51092
  font-size: var(--Tag-content-fontSize);
50978
51093
  max-width: 160px;
50979
- text-overflow: ellipsis;
50980
- overflow: hidden;
50981
- white-space: nowrap;
50982
51094
  transition: all 0.3;
50983
51095
  border-radius: var(--Tag-borderRadius);
50984
51096
  background-color: var(--Tag-default-color);
50985
51097
  color: var(--Tag-fontColor);
50986
51098
  }
50987
51099
 
51100
+ .amis-scope .dark-Tag-text {
51101
+ display: inline-block;
51102
+ text-overflow: ellipsis;
51103
+ overflow: hidden;
51104
+ white-space: nowrap;
51105
+ line-height: var(--Tag-height);
51106
+ }
51107
+
50988
51108
  .amis-scope .dark-Tag:not(:last-child) {
50989
51109
  margin-right: var(--gap-sm);
50990
51110
  }
@@ -51026,6 +51146,7 @@ readers do not read off random characters that represent icons */
51026
51146
  border-radius: calc((var(--Tag-height) + 2px) / 2);
51027
51147
  border: 1px solid var(--Tag-default-color);
51028
51148
  color: var(--Tag-default-color);
51149
+ line-height: 22px;
51029
51150
  }
51030
51151
 
51031
51152
  .amis-scope .dark-Tag--rounded--inactive {
@@ -184,6 +184,7 @@ amisRequire('amis').registerLocale('de-DE', {
184
184
  'saveFailed': 'Fehler beim Speichern',
185
185
  'saveSuccess': 'Erfolgreich gespeichert',
186
186
  'search': 'Suchen',
187
+ 'searchHistory': 'Suchverlauf',
187
188
  'searchResult': 'Suchergebnis',
188
189
  'Checkboxes.selectAll': 'Alle auswählen/abwählen',
189
190
  'Select.checkAll': 'Alle markieren',
package/sdk/sdk-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 .cxd-CalendarMobile-pop--time {
31153
+ height: fit-content;
31154
+ max-height: 90vh;
31155
+ }
31156
+
31152
31157
  .amis-scope .cxd-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 .cxd-CalendarMobile .cxd-CalendarMobile-calendar-wrap .cxd-CalendarMobile-calendar .rdtPicker .rdtToday .calendar-wrap {
31373
- border: 1px solid #2468F2;
31378
+ border: 1px solid #2468f2;
31374
31379
  }
31375
31380
 
31376
31381
  .amis-scope .cxd-CalendarMobile-calendar-header {
@@ -38969,7 +38974,7 @@ readers do not read off random characters that represent icons */
38969
38974
  .amis-scope .cxd-SearchBox.is-active {
38970
38975
  background: #ffffff;
38971
38976
  border: 0.0625rem solid #e8e9eb;
38972
- width: 150px;
38977
+ width: 9.375rem;
38973
38978
  }
38974
38979
 
38975
38980
  .amis-scope .cxd-SearchBox.is-active > input {
@@ -38985,14 +38990,8 @@ readers do not read off random characters that represent icons */
38985
38990
  }
38986
38991
 
38987
38992
  .amis-scope .cxd-SearchBox-searchBtn {
38988
- display: flex;
38989
- width: 1.875rem;
38990
- align-items: center;
38991
- justify-content: center;
38992
- }
38993
-
38994
- .amis-scope .cxd-SearchBox-searchBtn .icon {
38995
- top: 0;
38993
+ display: inline-block;
38994
+ padding: 0.3125rem 0.625rem;
38996
38995
  }
38997
38996
 
38998
38997
  .amis-scope .cxd-SearchBox-activeBtn,
@@ -39080,6 +39079,116 @@ readers do not read off random characters that represent icons */
39080
39079
  color: #b8babf;
39081
39080
  }
39082
39081
 
39082
+ .amis-scope .cxd-SearchBox-history > .is-history {
39083
+ width: 100%;
39084
+ }
39085
+
39086
+ .amis-scope .cxd-SearchBox-history .cxd-SearchBox-history-dropdown {
39087
+ position: absolute;
39088
+ left: 0;
39089
+ z-index: 998;
39090
+ padding: 0.5rem 0;
39091
+ width: 100%;
39092
+ max-width: calc(9.375rem * 2);
39093
+ min-height: 4.5rem;
39094
+ max-height: 12.5rem;
39095
+ background: #fff;
39096
+ border: 0.0625rem solid #e8e9eb;
39097
+ border-top: none;
39098
+ border-radius: 0.25rem;
39099
+ box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
39100
+ display: none;
39101
+ }
39102
+
39103
+ .amis-scope .cxd-SearchBox-history .cxd-SearchBox-history-dropdown.is-active {
39104
+ display: block;
39105
+ }
39106
+
39107
+ .amis-scope .cxd-SearchBox-history .cxd-SearchBox-history-dropdown header {
39108
+ display: flex;
39109
+ flex-flow: row nowrap;
39110
+ align-items: center;
39111
+ justify-content: space-between;
39112
+ padding: 0 1rem;
39113
+ margin-bottom: 0.625rem;
39114
+ }
39115
+
39116
+ .amis-scope .cxd-SearchBox-history .cxd-SearchBox-history-dropdown header h4 {
39117
+ font-size: 14px;
39118
+ height: 1.5rem;
39119
+ line-height: 1.5rem;
39120
+ font-weight: bold;
39121
+ margin: 0;
39122
+ }
39123
+
39124
+ .amis-scope .cxd-SearchBox-history .cxd-SearchBox-history-dropdown header a {
39125
+ display: inline-block;
39126
+ font-size: 12px;
39127
+ cursor: pointer;
39128
+ padding: 0;
39129
+ }
39130
+
39131
+ .amis-scope .cxd-SearchBox-history .cxd-SearchBox-history-content {
39132
+ display: flex;
39133
+ flex-flow: row wrap;
39134
+ justify-content: flex-start;
39135
+ align-items: center;
39136
+ padding: 0 1rem;
39137
+ overflow-x: hidden;
39138
+ overflow-y: auto;
39139
+ max-height: calc( 12.5rem - 38px - 0.5rem * 2 );
39140
+ }
39141
+
39142
+ .amis-scope .cxd-SearchBox-history .cxd-SearchBox-history-tag {
39143
+ display: inlin-flex;
39144
+ height: 1.5rem;
39145
+ padding: 0 0.5rem;
39146
+ flex-flow: row nowrap;
39147
+ justify-content: center;
39148
+ align-items: center;
39149
+ font-size: 12px;
39150
+ max-width: 160px;
39151
+ border-radius: 0.125rem;
39152
+ background-color: #f2f2f4;
39153
+ color: #151a26;
39154
+ margin-bottom: 0.5rem;
39155
+ margin-right: 0.5rem;
39156
+ max-width: 96px;
39157
+ cursor: pointer;
39158
+ }
39159
+
39160
+ .amis-scope .cxd-SearchBox-history .cxd-SearchBox-history-tag-text {
39161
+ display: inline-block;
39162
+ text-overflow: ellipsis;
39163
+ overflow: hidden;
39164
+ white-space: nowrap;
39165
+ line-height: 24px;
39166
+ }
39167
+
39168
+ .amis-scope .cxd-SearchBox-history .cxd-SearchBox-history-tag-close {
39169
+ margin-left: 0.5rem;
39170
+ margin-right: 0.25rem;
39171
+ cursor: pointer;
39172
+ }
39173
+
39174
+ .amis-scope .cxd-SearchBox-history .cxd-SearchBox-history-tag-close i {
39175
+ font-size: 0.5rem;
39176
+ }
39177
+
39178
+ .amis-scope .cxd-SearchBox-history .cxd-SearchBox-history-tag-close .icon {
39179
+ width: 0.5rem;
39180
+ height: 0.5rem;
39181
+ position: inherit;
39182
+ }
39183
+
39184
+ .amis-scope .cxd-SearchBox-history .cxd-SearchBox-history-tag-close:hover {
39185
+ opacity: 0.7;
39186
+ }
39187
+
39188
+ .amis-scope .cxd-SearchBox-history .cxd-SearchBox-history-tag-close:active {
39189
+ opacity: 0.3;
39190
+ }
39191
+
39083
39192
  .amis-scope .cxd-ListMenu {
39084
39193
  background: #fff;
39085
39194
  min-width: 12.5rem;
@@ -44105,7 +44214,7 @@ readers do not read off random characters that represent icons */
44105
44214
  margin: 0;
44106
44215
  padding-left: 0.625rem;
44107
44216
  list-style: none;
44108
- background: #F7F7F9;
44217
+ background: #f7f7f9;
44109
44218
  line-height: 2rem;
44110
44219
  }
44111
44220
 
@@ -48673,6 +48782,7 @@ readers do not read off random characters that represent icons */
48673
48782
  overflow: auto;
48674
48783
  scroll-behavior: smooth;
48675
48784
  background: #fff;
48785
+ position: relative;
48676
48786
  }
48677
48787
 
48678
48788
  .amis-scope .cxd-AnchorNav-section-wrap > .cxd-AnchorNav-section {
@@ -49654,19 +49764,25 @@ readers do not read off random characters that represent icons */
49654
49764
  display: inline-flex;
49655
49765
  height: 1.5rem;
49656
49766
  padding: 0 0.5rem;
49767
+ flex-flow: row nowrap;
49657
49768
  justify-content: center;
49658
49769
  align-items: center;
49659
49770
  font-size: 12px;
49660
49771
  max-width: 160px;
49661
- text-overflow: ellipsis;
49662
- overflow: hidden;
49663
- white-space: nowrap;
49664
49772
  transition: all 0.3;
49665
49773
  border-radius: 0.125rem;
49666
49774
  background-color: #f2f2f4;
49667
49775
  color: #151a26;
49668
49776
  }
49669
49777
 
49778
+ .amis-scope .cxd-Tag-text {
49779
+ display: inline-block;
49780
+ text-overflow: ellipsis;
49781
+ overflow: hidden;
49782
+ white-space: nowrap;
49783
+ line-height: 1.5rem;
49784
+ }
49785
+
49670
49786
  .amis-scope .cxd-Tag:not(:last-child) {
49671
49787
  margin-right: 0.5rem;
49672
49788
  }
@@ -49708,6 +49824,7 @@ readers do not read off random characters that represent icons */
49708
49824
  border-radius: calc((1.5rem + 2px) / 2);
49709
49825
  border: 1px solid #f2f2f4;
49710
49826
  color: #f2f2f4;
49827
+ line-height: 22px;
49711
49828
  }
49712
49829
 
49713
49830
  .amis-scope .cxd-Tag--rounded--inactive {