@aplus-frontend/ui 6.31.1 → 6.33.0

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 (176) hide show
  1. package/es/index.mjs +65 -61
  2. package/es/src/ag-grid/components/body-cell/index.vue2.mjs +14 -12
  3. package/es/src/ag-grid/editable/form-item.vue.d.ts +16 -0
  4. package/es/src/ag-grid/editable/form-item.vue.mjs +215 -0
  5. package/es/src/ag-grid/editable/form-item.vue2.mjs +4 -0
  6. package/es/src/ag-grid/editable/index.vue.d.ts +18 -0
  7. package/es/src/ag-grid/editable/index.vue.mjs +233 -0
  8. package/es/src/ag-grid/editable/index.vue2.mjs +4 -0
  9. package/es/src/ag-grid/editable/interface.d.ts +96 -0
  10. package/es/src/ag-grid/editable/interface.mjs +1 -0
  11. package/es/src/ag-grid/editable/style/css.d.ts +0 -0
  12. package/es/src/ag-grid/editable/style/css.js +1 -0
  13. package/es/src/ag-grid/editable/style/index.d.ts +0 -0
  14. package/es/src/ag-grid/editable/style/index.js +1 -0
  15. package/es/src/ag-grid/editable/utils.d.ts +5 -0
  16. package/es/src/ag-grid/editable/utils.mjs +23 -0
  17. package/es/src/ag-grid/hooks/use-editable-api.d.ts +15 -0
  18. package/es/src/ag-grid/hooks/use-editable-api.mjs +150 -0
  19. package/es/src/ag-grid/hooks/use-editable-columns.d.ts +6 -0
  20. package/es/src/ag-grid/hooks/use-editable-columns.mjs +96 -0
  21. package/es/src/ag-grid/hooks/use-editable-form-item-api.d.ts +15 -0
  22. package/es/src/ag-grid/hooks/use-editable-form-item-api.mjs +174 -0
  23. package/es/src/ag-grid/index.d.ts +4 -1
  24. package/es/src/ag-grid/index.mjs +3 -0
  25. package/es/src/ag-grid/index.vue.mjs +70 -66
  26. package/es/src/ag-grid/interface.d.ts +20 -1
  27. package/es/src/ag-grid/utils.d.ts +2 -0
  28. package/es/src/ag-grid/utils.mjs +12 -7
  29. package/es/src/ap-drawer/interface.d.ts +5 -0
  30. package/es/src/ap-drawer/utils/createDrawer.mjs +22 -19
  31. package/es/src/ap-field/date/index.vue.mjs +29 -28
  32. package/es/src/ap-field/radio/index.vue.d.ts +4 -0
  33. package/es/src/ap-field/radio/index.vue.mjs +9 -8
  34. package/es/src/ap-field/radio/read.vue2.mjs +5 -4
  35. package/es/src/ap-field/rate/index.vue.d.ts +20 -0
  36. package/es/src/ap-field/rate/index.vue.mjs +12 -11
  37. package/es/src/ap-form/interface.d.ts +4 -0
  38. package/es/src/ap-form/item/index.vue.mjs +41 -39
  39. package/es/src/ap-form/items/checkbox/index.vue.mjs +5 -5
  40. package/es/src/ap-form/items/date/index.vue.mjs +9 -9
  41. package/es/src/ap-form/items/date-range/index.vue.mjs +8 -8
  42. package/es/src/ap-form/items/number/index.vue.mjs +11 -11
  43. package/es/src/ap-form/items/radio/index.vue.d.ts +8 -0
  44. package/es/src/ap-form/items/radio/index.vue.mjs +6 -6
  45. package/es/src/ap-form/items/select/index.vue.mjs +3 -3
  46. package/es/src/ap-form/items/switch/index.vue.mjs +2 -2
  47. package/es/src/ap-form/items/text/index.vue2.mjs +12 -12
  48. package/es/src/ap-form/items/text/password.vue.mjs +2 -2
  49. package/es/src/ap-form/items/text-area/index.vue.d.ts +4 -4
  50. package/es/src/ap-form/items/text-area/index.vue.mjs +3 -3
  51. package/es/src/ap-form/items/tree-select/index.vue.mjs +6 -6
  52. package/es/src/ap-form/render/item.vue.mjs +6 -5
  53. package/es/src/ap-grid/utils/editable.d.ts +2 -1
  54. package/es/src/ap-modal/index.d.ts +1 -0
  55. package/es/src/ap-modal/index.mjs +29 -27
  56. package/es/src/ap-modal/interface.d.ts +5 -0
  57. package/es/src/ap-modal/utils/confirm.mjs +35 -34
  58. package/es/src/ap-modal/utils/createModal.mjs +39 -37
  59. package/es/src/ap-modal/utils/util.d.ts +3 -0
  60. package/es/src/ap-modal/utils/util.mjs +8 -2
  61. package/es/src/ap-table/constants.d.ts +4 -0
  62. package/es/src/ap-table/interface.d.ts +5 -0
  63. package/es/src/ap-table/utils.mjs +76 -71
  64. package/es/src/ap-upload/components/MultipleFile.vue.d.ts +10 -0
  65. package/es/src/business/ap-appendix/ap-appendix.vue2.mjs +67 -68
  66. package/es/src/business/ap-view/ap-view.vue2.mjs +20 -18
  67. package/es/src/business/ap-view/interface.d.ts +4 -0
  68. package/es/src/business/batch-input-group/form-item.vue.mjs +1 -1
  69. package/es/src/config-provider/config-provider.mjs +32 -24
  70. package/es/src/editable-table/utils.d.ts +3 -2
  71. package/es/src/index.mjs +57 -53
  72. package/es/src/version.d.ts +1 -1
  73. package/es/src/version.mjs +1 -1
  74. package/lib/index.js +1 -1
  75. package/lib/src/ag-grid/components/body-cell/index.vue2.js +1 -1
  76. package/lib/src/ag-grid/editable/form-item.vue.d.ts +16 -0
  77. package/lib/src/ag-grid/editable/form-item.vue.js +1 -0
  78. package/lib/src/ag-grid/editable/form-item.vue2.js +1 -0
  79. package/lib/src/ag-grid/editable/index.vue.d.ts +18 -0
  80. package/lib/src/ag-grid/editable/index.vue.js +1 -0
  81. package/lib/src/ag-grid/editable/index.vue2.js +1 -0
  82. package/lib/src/ag-grid/editable/interface.d.ts +96 -0
  83. package/lib/src/ag-grid/editable/interface.js +1 -0
  84. package/lib/src/ag-grid/editable/style/css.cjs +1 -0
  85. package/lib/src/ag-grid/editable/style/css.d.ts +0 -0
  86. package/lib/src/ag-grid/editable/style/index.cjs +1 -0
  87. package/lib/src/ag-grid/editable/style/index.d.ts +0 -0
  88. package/lib/src/ag-grid/editable/utils.d.ts +5 -0
  89. package/lib/src/ag-grid/editable/utils.js +1 -0
  90. package/lib/src/ag-grid/hooks/use-editable-api.d.ts +15 -0
  91. package/lib/src/ag-grid/hooks/use-editable-api.js +1 -0
  92. package/lib/src/ag-grid/hooks/use-editable-columns.d.ts +6 -0
  93. package/lib/src/ag-grid/hooks/use-editable-columns.js +1 -0
  94. package/lib/src/ag-grid/hooks/use-editable-form-item-api.d.ts +15 -0
  95. package/lib/src/ag-grid/hooks/use-editable-form-item-api.js +1 -0
  96. package/lib/src/ag-grid/index.d.ts +4 -1
  97. package/lib/src/ag-grid/index.js +1 -1
  98. package/lib/src/ag-grid/index.vue.js +1 -1
  99. package/lib/src/ag-grid/interface.d.ts +20 -1
  100. package/lib/src/ag-grid/utils.d.ts +2 -0
  101. package/lib/src/ag-grid/utils.js +1 -1
  102. package/lib/src/ap-drawer/interface.d.ts +5 -0
  103. package/lib/src/ap-drawer/utils/createDrawer.js +1 -1
  104. package/lib/src/ap-field/date/index.vue.js +1 -1
  105. package/lib/src/ap-field/radio/index.vue.d.ts +4 -0
  106. package/lib/src/ap-field/radio/index.vue.js +1 -1
  107. package/lib/src/ap-field/radio/read.vue2.js +1 -1
  108. package/lib/src/ap-field/rate/index.vue.d.ts +20 -0
  109. package/lib/src/ap-field/rate/index.vue.js +1 -1
  110. package/lib/src/ap-form/interface.d.ts +4 -0
  111. package/lib/src/ap-form/item/index.vue.js +1 -1
  112. package/lib/src/ap-form/items/checkbox/index.vue.js +1 -1
  113. package/lib/src/ap-form/items/date/index.vue.js +1 -1
  114. package/lib/src/ap-form/items/date-range/index.vue.js +1 -1
  115. package/lib/src/ap-form/items/number/index.vue.js +1 -1
  116. package/lib/src/ap-form/items/radio/index.vue.d.ts +8 -0
  117. package/lib/src/ap-form/items/radio/index.vue.js +1 -1
  118. package/lib/src/ap-form/items/select/index.vue.js +1 -1
  119. package/lib/src/ap-form/items/switch/index.vue.js +1 -1
  120. package/lib/src/ap-form/items/text/index.vue2.js +1 -1
  121. package/lib/src/ap-form/items/text/password.vue.js +1 -1
  122. package/lib/src/ap-form/items/text-area/index.vue.d.ts +4 -4
  123. package/lib/src/ap-form/items/text-area/index.vue.js +1 -1
  124. package/lib/src/ap-form/items/tree-select/index.vue.js +1 -1
  125. package/lib/src/ap-form/render/item.vue.js +1 -1
  126. package/lib/src/ap-grid/utils/editable.d.ts +2 -1
  127. package/lib/src/ap-modal/index.d.ts +1 -0
  128. package/lib/src/ap-modal/index.js +1 -1
  129. package/lib/src/ap-modal/interface.d.ts +5 -0
  130. package/lib/src/ap-modal/utils/confirm.js +1 -1
  131. package/lib/src/ap-modal/utils/createModal.js +1 -1
  132. package/lib/src/ap-modal/utils/util.d.ts +3 -0
  133. package/lib/src/ap-modal/utils/util.js +1 -1
  134. package/lib/src/ap-table/constants.d.ts +4 -0
  135. package/lib/src/ap-table/interface.d.ts +5 -0
  136. package/lib/src/ap-table/utils.js +1 -1
  137. package/lib/src/ap-upload/components/MultipleFile.vue.d.ts +10 -0
  138. package/lib/src/business/ap-appendix/ap-appendix.vue2.js +1 -1
  139. package/lib/src/business/ap-view/ap-view.vue2.js +1 -1
  140. package/lib/src/business/ap-view/interface.d.ts +4 -0
  141. package/lib/src/business/batch-input-group/form-item.vue.js +1 -1
  142. package/lib/src/config-provider/config-provider.js +1 -1
  143. package/lib/src/editable-table/utils.d.ts +3 -2
  144. package/lib/src/index.js +1 -1
  145. package/lib/src/version.d.ts +1 -1
  146. package/lib/src/version.js +1 -1
  147. package/package.json +3 -3
  148. package/theme/ag-grid/editable.css +52 -0
  149. package/theme/ag-grid/editable.less +11 -0
  150. package/theme/ag-grid/index.css +19 -0
  151. package/theme/ag-grid/index.less +2 -0
  152. package/theme/ap-appendix/ap-appendix.css +4 -13
  153. package/theme/ap-appendix/ap-appendix.less +5 -12
  154. package/theme/ap-form/ap-form-item.css +12 -0
  155. package/theme/ap-form/ap-form-item.less +12 -0
  156. package/theme/ap-form/index.css +12 -0
  157. package/theme/ap-form/search-form.css +12 -0
  158. package/theme/ap-grid/editable.css +1 -0
  159. package/theme/ap-grid/editable.less +1 -0
  160. package/theme/ap-grid/index.css +13 -0
  161. package/theme/ap-grid/index.less +1 -0
  162. package/theme/ap-table/ap-table.css +12 -0
  163. package/theme/ap-table-modal/index.css +12 -0
  164. package/theme/css-var.css +2 -0
  165. package/theme/css-var.less +4 -0
  166. package/theme/editable-table/index.css +13 -0
  167. package/theme/editable-table/index.less +1 -0
  168. package/theme/index.css +28 -13
  169. package/es/src/business/ap-appendix/icons/empty-admin-icon.vue.d.ts +0 -3
  170. package/es/src/business/ap-appendix/icons/empty-admin-icon.vue.mjs +0 -20
  171. package/es/src/business/ap-appendix/icons/empty-aplus-icon.vue.d.ts +0 -3
  172. package/es/src/business/ap-appendix/icons/empty-aplus-icon.vue.mjs +0 -20
  173. package/lib/src/business/ap-appendix/icons/empty-admin-icon.vue.d.ts +0 -3
  174. package/lib/src/business/ap-appendix/icons/empty-admin-icon.vue.js +0 -1
  175. package/lib/src/business/ap-appendix/icons/empty-aplus-icon.vue.d.ts +0 -3
  176. package/lib/src/business/ap-appendix/icons/empty-aplus-icon.vue.js +0 -1
@@ -101,6 +101,12 @@
101
101
  .aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
102
102
  padding-right: 8px;
103
103
  }
104
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) {
105
+ padding-inline-end: 0;
106
+ }
107
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) .ant-input {
108
+ padding-inline-start: 0;
109
+ }
104
110
  .aplus-ap-form-item--bordered .ant-picker {
105
111
  padding: 0;
106
112
  }
@@ -153,6 +159,12 @@
153
159
  .aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
154
160
  width: calc(100% + 12px);
155
161
  }
162
+ .aplus-ap-form-item--disabled {
163
+ background-color: var(--color-bg-container-disabled);
164
+ }
165
+ .aplus-ap-form-item--disabled .ant-select-selector {
166
+ background: transparent !important;
167
+ }
156
168
  .aplus-ap-form-item--focused {
157
169
  border-color: var(--ap-active-color-base);
158
170
  box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
@@ -534,6 +546,12 @@
534
546
  font-size: 12px;
535
547
  display: inline-flex;
536
548
  }
549
+ .aplus-editable-aggrid .ant-form-item {
550
+ margin-bottom: 16px;
551
+ }
552
+ .aplus-editable-aggrid .ag-cell:has(.is-editable) {
553
+ padding-block: 16px 0px !important;
554
+ }
537
555
  .aplus-ag-grid ::-webkit-scrollbar {
538
556
  width: 10px;
539
557
  height: 10px;
@@ -682,6 +700,7 @@
682
700
  width: 100%;
683
701
  }
684
702
  .aplus-ag-grid .ag-tooltip {
703
+ font-size: 12px;
685
704
  max-width: 300px;
686
705
  word-break: break-all;
687
706
  }
@@ -5,6 +5,7 @@
5
5
  @import '../ap-field/index.less';
6
6
  @import '../ap-action/item.less';
7
7
  @import '../ap-action/item-dropdown.less';
8
+ @import './editable.less';
8
9
 
9
10
  @aggrid: ~'@{ns}-ag-grid-grid-wrapper';
10
11
  @pg: ~'@{ns}-ag-grid-pagination-wrapper';
@@ -151,6 +152,7 @@
151
152
  }
152
153
  }
153
154
  .ag-tooltip {
155
+ font-size: @font-size-base;
154
156
  max-width: 300px;
155
157
  word-break: break-all;
156
158
  }
@@ -115,18 +115,9 @@
115
115
  .aplus-ap-appendix__file-area-content-item--loading-content:hover .ant-typography {
116
116
  color: var(--ap-text-color-4);
117
117
  }
118
- .aplus-ap-appendix__empty {
119
- display: flex;
120
- align-items: center;
121
- justify-content: center;
122
- color: var(--ap-text-color-3);
123
- font-size: 12px;
124
- line-height: 18px;
118
+ .aplus-ap-appendix__empty .ant-empty {
119
+ margin: 0;
125
120
  }
126
- .aplus-ap-appendix__empty-content {
127
- display: flex;
128
- flex-direction: column;
129
- align-items: center;
130
- justify-content: center;
131
- gap: 8px;
121
+ .aplus-ap-appendix__empty .ant-empty-description {
122
+ margin-bottom: 0;
132
123
  }
@@ -75,18 +75,11 @@
75
75
  }
76
76
  }
77
77
  &__empty{
78
- display: flex;
79
- align-items: center;
80
- justify-content: center;
81
- color: var(--ap-text-color-3);
82
- font-size: @font-size-base;
83
- line-height: @line-height-base;
84
- &-content {
85
- display: flex;
86
- flex-direction: column;
87
- align-items: center;
88
- justify-content: center;
89
- gap: 8px;
78
+ .ant-empty {
79
+ margin: 0;
80
+ &-description {
81
+ margin-bottom: 0;
82
+ }
90
83
  }
91
84
  }
92
85
  });
@@ -56,6 +56,12 @@
56
56
  .aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
57
57
  padding-right: 8px;
58
58
  }
59
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) {
60
+ padding-inline-end: 0;
61
+ }
62
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) .ant-input {
63
+ padding-inline-start: 0;
64
+ }
59
65
  .aplus-ap-form-item--bordered .ant-picker {
60
66
  padding: 0;
61
67
  }
@@ -108,6 +114,12 @@
108
114
  .aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
109
115
  width: calc(100% + 12px);
110
116
  }
117
+ .aplus-ap-form-item--disabled {
118
+ background-color: var(--color-bg-container-disabled);
119
+ }
120
+ .aplus-ap-form-item--disabled .ant-select-selector {
121
+ background: transparent !important;
122
+ }
111
123
  .aplus-ap-form-item--focused {
112
124
  border-color: var(--ap-active-color-base);
113
125
  box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
@@ -18,6 +18,12 @@
18
18
  padding-right: @spacing;
19
19
  }
20
20
  }
21
+ &:has(textarea.ant-input) {
22
+ padding-inline-end: 0;
23
+ .ant-input {
24
+ padding-inline-start: 0;
25
+ }
26
+ }
21
27
  .ant-picker {
22
28
  padding: 0;
23
29
  }
@@ -79,6 +85,12 @@
79
85
  width: calc(100% + 12px);
80
86
  }
81
87
  }
88
+ &--disabled {
89
+ background-color: var(--color-bg-container-disabled);
90
+ .ant-select-selector {
91
+ background: transparent !important;
92
+ }
93
+ }
82
94
  &--focused {
83
95
  border-color: var(--ap-active-color-base);
84
96
  box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
@@ -65,6 +65,12 @@
65
65
  .aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
66
66
  padding-right: 8px;
67
67
  }
68
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) {
69
+ padding-inline-end: 0;
70
+ }
71
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) .ant-input {
72
+ padding-inline-start: 0;
73
+ }
68
74
  .aplus-ap-form-item--bordered .ant-picker {
69
75
  padding: 0;
70
76
  }
@@ -117,6 +123,12 @@
117
123
  .aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
118
124
  width: calc(100% + 12px);
119
125
  }
126
+ .aplus-ap-form-item--disabled {
127
+ background-color: var(--color-bg-container-disabled);
128
+ }
129
+ .aplus-ap-form-item--disabled .ant-select-selector {
130
+ background: transparent !important;
131
+ }
120
132
  .aplus-ap-form-item--focused {
121
133
  border-color: var(--ap-active-color-base);
122
134
  box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
@@ -56,6 +56,12 @@
56
56
  .aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
57
57
  padding-right: 8px;
58
58
  }
59
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) {
60
+ padding-inline-end: 0;
61
+ }
62
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) .ant-input {
63
+ padding-inline-start: 0;
64
+ }
59
65
  .aplus-ap-form-item--bordered .ant-picker {
60
66
  padding: 0;
61
67
  }
@@ -108,6 +114,12 @@
108
114
  .aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
109
115
  width: calc(100% + 12px);
110
116
  }
117
+ .aplus-ap-form-item--disabled {
118
+ background-color: var(--color-bg-container-disabled);
119
+ }
120
+ .aplus-ap-form-item--disabled .ant-select-selector {
121
+ background: transparent !important;
122
+ }
111
123
  .aplus-ap-form-item--focused {
112
124
  border-color: var(--ap-active-color-base);
113
125
  box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
@@ -58,6 +58,7 @@
58
58
  max-width: 100%;
59
59
  vertical-align: middle;
60
60
  word-break: break-all;
61
+ text-align: right;
61
62
  flex: 1;
62
63
  }
63
64
  .aplus-editable-grid .ant-form-item {
@@ -16,6 +16,7 @@
16
16
  max-width: 100%;
17
17
  vertical-align: middle;
18
18
  word-break: break-all;
19
+ text-align: right;
19
20
  flex: 1;
20
21
  }
21
22
  }
@@ -65,6 +65,12 @@
65
65
  .aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
66
66
  padding-right: 8px;
67
67
  }
68
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) {
69
+ padding-inline-end: 0;
70
+ }
71
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) .ant-input {
72
+ padding-inline-start: 0;
73
+ }
68
74
  .aplus-ap-form-item--bordered .ant-picker {
69
75
  padding: 0;
70
76
  }
@@ -117,6 +123,12 @@
117
123
  .aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
118
124
  width: calc(100% + 12px);
119
125
  }
126
+ .aplus-ap-form-item--disabled {
127
+ background-color: var(--color-bg-container-disabled);
128
+ }
129
+ .aplus-ap-form-item--disabled .ant-select-selector {
130
+ background: transparent !important;
131
+ }
120
132
  .aplus-ap-form-item--focused {
121
133
  border-color: var(--ap-active-color-base);
122
134
  box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
@@ -659,6 +671,7 @@
659
671
  word-break: break-all;
660
672
  flex: 1;
661
673
  font-weight: bold;
674
+ text-align: right;
662
675
  }
663
676
  .aplus-ap-grid-table-header__title--single {
664
677
  flex: unset;
@@ -167,6 +167,7 @@
167
167
  word-break: break-all;
168
168
  flex: 1;
169
169
  font-weight: bold;
170
+ text-align: right;
170
171
  &--single {
171
172
  flex: unset;
172
173
  }
@@ -258,6 +258,12 @@
258
258
  .aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
259
259
  padding-right: 8px;
260
260
  }
261
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) {
262
+ padding-inline-end: 0;
263
+ }
264
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) .ant-input {
265
+ padding-inline-start: 0;
266
+ }
261
267
  .aplus-ap-form-item--bordered .ant-picker {
262
268
  padding: 0;
263
269
  }
@@ -310,6 +316,12 @@
310
316
  .aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
311
317
  width: calc(100% + 12px);
312
318
  }
319
+ .aplus-ap-form-item--disabled {
320
+ background-color: var(--color-bg-container-disabled);
321
+ }
322
+ .aplus-ap-form-item--disabled .ant-select-selector {
323
+ background: transparent !important;
324
+ }
313
325
  .aplus-ap-form-item--focused {
314
326
  border-color: var(--ap-active-color-base);
315
327
  box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
@@ -258,6 +258,12 @@
258
258
  .aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
259
259
  padding-right: 8px;
260
260
  }
261
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) {
262
+ padding-inline-end: 0;
263
+ }
264
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) .ant-input {
265
+ padding-inline-start: 0;
266
+ }
261
267
  .aplus-ap-form-item--bordered .ant-picker {
262
268
  padding: 0;
263
269
  }
@@ -310,6 +316,12 @@
310
316
  .aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
311
317
  width: calc(100% + 12px);
312
318
  }
319
+ .aplus-ap-form-item--disabled {
320
+ background-color: var(--color-bg-container-disabled);
321
+ }
322
+ .aplus-ap-form-item--disabled .ant-select-selector {
323
+ background: transparent !important;
324
+ }
313
325
  .aplus-ap-form-item--focused {
314
326
  border-color: var(--ap-active-color-base);
315
327
  box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
package/theme/css-var.css CHANGED
@@ -25,6 +25,7 @@
25
25
  --ap-scrollbar-thumb-color-hover: #959ca7;
26
26
  --ap-scrollbar-track-color-hover: #f2f6f9;
27
27
  --ap-text-color-4: #abb7cc;
28
+ --color-bg-container-disabled: #f2f6f9;
28
29
  --batch-input-group-trigger-color-disabled: rgba(24, 41, 72, 0.25);
29
30
  --ap-radio-group-item-active-bg-color: rgba(0, 112, 255, 0.12);
30
31
  --ap-drawer-wrapper-shadow: -8px 2px 24px 0px rgba(24, 41, 72, 0.2);
@@ -73,6 +74,7 @@
73
74
  --ap-scrollbar-thumb-color-hover: #787878;
74
75
  --ap-scrollbar-track-color-hover: #f7f7f7;
75
76
  --ap-text-color-4: #bfbfbf;
77
+ --color-bg-container-disabled: #f5f5f5;
76
78
  --batch-input-group-trigger-color-disabled: rgba(0, 0, 0, 0.25);
77
79
  --ap-radio-group-item-active-bg-color: rgba(52, 183, 124, 0.12);
78
80
  --ap-drawer-wrapper-shadow: -8px 2px 24px 0px rgba(51, 51, 51, 0.2);
@@ -51,6 +51,8 @@
51
51
  --ap-scrollbar-track-color-hover: #f2f6f9;
52
52
  // 文本颜色4号色(三级)
53
53
  --ap-text-color-4: #abb7cc;
54
+ // 通用的背景禁用色
55
+ --color-bg-container-disabled: #f2f6f9;
54
56
  // 批量输入组禁用色
55
57
  --batch-input-group-trigger-color-disabled: rgba(24, 41, 72, 0.25);
56
58
  --ap-radio-group-item-active-bg-color: rgba(#0070ff, 0.12);
@@ -125,6 +127,8 @@
125
127
  --ap-scrollbar-track-color-hover: #f7f7f7;
126
128
  // 文本颜色4号色(三级)
127
129
  --ap-text-color-4: #bfbfbf;
130
+ // 通用的背景禁用色
131
+ --color-bg-container-disabled: #f5f5f5;
128
132
  // 批量输入组禁用色
129
133
  --batch-input-group-trigger-color-disabled: rgba(0, 0, 0, 0.25);
130
134
  --ap-radio-group-item-active-bg-color: rgba(#34b77c, 0.12);
@@ -65,6 +65,12 @@
65
65
  .aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
66
66
  padding-right: 8px;
67
67
  }
68
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) {
69
+ padding-inline-end: 0;
70
+ }
71
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) .ant-input {
72
+ padding-inline-start: 0;
73
+ }
68
74
  .aplus-ap-form-item--bordered .ant-picker {
69
75
  padding: 0;
70
76
  }
@@ -117,6 +123,12 @@
117
123
  .aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
118
124
  width: calc(100% + 12px);
119
125
  }
126
+ .aplus-ap-form-item--disabled {
127
+ background-color: var(--color-bg-container-disabled);
128
+ }
129
+ .aplus-ap-form-item--disabled .ant-select-selector {
130
+ background: transparent !important;
131
+ }
120
132
  .aplus-ap-form-item--focused {
121
133
  border-color: var(--ap-active-color-base);
122
134
  box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
@@ -557,4 +569,5 @@
557
569
  vertical-align: middle;
558
570
  word-break: break-all;
559
571
  flex: 1;
572
+ text-align: right;
560
573
  }
@@ -68,6 +68,7 @@
68
68
  vertical-align: middle;
69
69
  word-break: break-all;
70
70
  flex: 1;
71
+ text-align: right;
71
72
  }
72
73
  }
73
74
  });
package/theme/index.css CHANGED
@@ -25,6 +25,7 @@
25
25
  --ap-scrollbar-thumb-color-hover: #959ca7;
26
26
  --ap-scrollbar-track-color-hover: #f2f6f9;
27
27
  --ap-text-color-4: #abb7cc;
28
+ --color-bg-container-disabled: #f2f6f9;
28
29
  --batch-input-group-trigger-color-disabled: rgba(24, 41, 72, 0.25);
29
30
  --ap-radio-group-item-active-bg-color: rgba(0, 112, 255, 0.12);
30
31
  --ap-drawer-wrapper-shadow: -8px 2px 24px 0px rgba(24, 41, 72, 0.2);
@@ -73,6 +74,7 @@
73
74
  --ap-scrollbar-thumb-color-hover: #787878;
74
75
  --ap-scrollbar-track-color-hover: #f7f7f7;
75
76
  --ap-text-color-4: #bfbfbf;
77
+ --color-bg-container-disabled: #f5f5f5;
76
78
  --batch-input-group-trigger-color-disabled: rgba(0, 0, 0, 0.25);
77
79
  --ap-radio-group-item-active-bg-color: rgba(52, 183, 124, 0.12);
78
80
  --ap-drawer-wrapper-shadow: -8px 2px 24px 0px rgba(51, 51, 51, 0.2);
@@ -1097,6 +1099,12 @@
1097
1099
  .aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
1098
1100
  padding-right: 8px;
1099
1101
  }
1102
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) {
1103
+ padding-inline-end: 0;
1104
+ }
1105
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) .ant-input {
1106
+ padding-inline-start: 0;
1107
+ }
1100
1108
  .aplus-ap-form-item--bordered .ant-picker {
1101
1109
  padding: 0;
1102
1110
  }
@@ -1149,6 +1157,12 @@
1149
1157
  .aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
1150
1158
  width: calc(100% + 12px);
1151
1159
  }
1160
+ .aplus-ap-form-item--disabled {
1161
+ background-color: var(--color-bg-container-disabled);
1162
+ }
1163
+ .aplus-ap-form-item--disabled .ant-select-selector {
1164
+ background: transparent !important;
1165
+ }
1152
1166
  .aplus-ap-form-item--focused {
1153
1167
  border-color: var(--ap-active-color-base);
1154
1168
  box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
@@ -2947,6 +2961,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
2947
2961
  vertical-align: middle;
2948
2962
  word-break: break-all;
2949
2963
  flex: 1;
2964
+ text-align: right;
2950
2965
  }
2951
2966
  .aplus-work-order-modal .ant-form-item .ant-form-item-label {
2952
2967
  min-width: 86px;
@@ -3124,20 +3139,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
3124
3139
  .aplus-ap-appendix__file-area-content-item--loading-content:hover .ant-typography {
3125
3140
  color: var(--ap-text-color-4);
3126
3141
  }
3127
- .aplus-ap-appendix__empty {
3128
- display: flex;
3129
- align-items: center;
3130
- justify-content: center;
3131
- color: var(--ap-text-color-3);
3132
- font-size: 12px;
3133
- line-height: 18px;
3142
+ .aplus-ap-appendix__empty .ant-empty {
3143
+ margin: 0;
3134
3144
  }
3135
- .aplus-ap-appendix__empty-content {
3136
- display: flex;
3137
- flex-direction: column;
3138
- align-items: center;
3139
- justify-content: center;
3140
- gap: 8px;
3145
+ .aplus-ap-appendix__empty .ant-empty-description {
3146
+ margin-bottom: 0;
3141
3147
  }
3142
3148
  .aplus-ap-group-search__search > .ant-select-selector {
3143
3149
  padding: 0px 10px 0 0 !important;
@@ -3580,6 +3586,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
3580
3586
  word-break: break-all;
3581
3587
  flex: 1;
3582
3588
  font-weight: bold;
3589
+ text-align: right;
3583
3590
  }
3584
3591
  .aplus-ap-grid-table-header__title--single {
3585
3592
  flex: unset;
@@ -3640,6 +3647,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
3640
3647
  max-width: 100%;
3641
3648
  vertical-align: middle;
3642
3649
  word-break: break-all;
3650
+ text-align: right;
3643
3651
  flex: 1;
3644
3652
  }
3645
3653
  .aplus-editable-grid .ant-form-item {
@@ -4248,6 +4256,12 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
4248
4256
  .aplus-ag-custom-header__sorter-down.active {
4249
4257
  color: var(--ap-color-primary);
4250
4258
  }
4259
+ .aplus-editable-aggrid .ant-form-item {
4260
+ margin-bottom: 16px;
4261
+ }
4262
+ .aplus-editable-aggrid .ag-cell:has(.is-editable) {
4263
+ padding-block: 16px 0px !important;
4264
+ }
4251
4265
  .aplus-ag-grid ::-webkit-scrollbar {
4252
4266
  width: 10px;
4253
4267
  height: 10px;
@@ -4396,6 +4410,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
4396
4410
  width: 100%;
4397
4411
  }
4398
4412
  .aplus-ag-grid .ag-tooltip {
4413
+ font-size: 12px;
4399
4414
  max-width: 300px;
4400
4415
  word-break: break-all;
4401
4416
  }
@@ -1,3 +0,0 @@
1
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
- declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
3
- export default _default;
@@ -1,20 +0,0 @@
1
- import { createElementBlock as l, openBlock as i, createStaticVNode as e } from "vue";
2
- import Q from "../../../../_virtual/_plugin-vue_export-helper.mjs";
3
- const o = {}, L = {
4
- xmlns: "http://www.w3.org/2000/svg",
5
- "xmlns:xlink": "http://www.w3.org/1999/xlink",
6
- fill: "none",
7
- version: "1.1",
8
- width: "88",
9
- height: "88.5078125",
10
- viewBox: "0 0 88 88.5078125"
11
- };
12
- function r(p, t) {
13
- return i(), l("svg", L, t[0] || (t[0] = [
14
- e('<defs><clipPath id="master_svg0_373_19161"><rect x="0" y="33" width="88" height="55.507694244384766" rx="0"></rect></clipPath></defs><g><g clip-path="url(#master_svg0_373_19161)"><g><g><path d="M12.375,72.37709593772888C4.71416,74.08249593772888,0,76.40572593772887,0,78.96611593772889C0,84.20009593772889,19.6995,88.44299593772888,44,88.44299593772888C68.3005,88.44299593772888,88,84.20009593772889,88,78.96611593772889C88,76.40572593772887,83.2858,74.08249593772888,75.625,72.37709608666788C75.625,72.37709608666788,75.625,76.50840593772888,75.625,76.50840593772888C75.625,79.38261593772889,73.81,81.73831593772888,71.5687,81.73831593772888C71.5687,81.73831593772888,16.4312,81.73831593772888,16.4312,81.73831593772888C14.19,81.73831593772888,12.375,79.38126593772888,12.375,76.50840593772888C12.375,76.50840593772888,12.375,72.37709593772888,12.375,72.37709593772888Z" fill="#000000" fill-opacity="0.03999999910593033"></path></g><g><g><path d="M57.2179,55.92138781272888C57.2179,53.74846781272888,58.5846,51.95462166272888,60.28,51.95326781272888C60.28,51.95326781272888,75.625,51.95326781272888,75.625,51.95326781272888C75.625,51.95326781272888,75.625,76.50796781272888,75.625,76.50796781272888C75.625,79.38216781272888,73.81,81.73786781272888,71.5687,81.73786781272888C71.5687,81.73786781272888,16.43125,81.73786781272888,16.43125,81.73786781272888C14.19,81.73786781272888,12.375,79.38086781272888,12.375,76.50796781272888C12.375,76.50796781272888,12.375,51.95326781272888,12.375,51.95326781272888C12.375,51.95326781272888,27.72,51.95326781272888,27.72,51.95326781272888C29.4154,51.95326781272888,30.7821,53.74440781272888,30.7821,55.917327812728885C30.7821,55.917327812728885,30.7821,55.947117812728884,30.7821,55.947117812728884C30.7821,58.12003781272888,32.164,59.874617812728886,33.858000000000004,59.874617812728886C33.858000000000004,59.874617812728886,54.142,59.874617812728886,54.142,59.874617812728886C55.836,59.874617812728886,57.2179,58.10378781272888,57.2179,55.930867812728884C57.2179,55.930867812728884,57.2179,55.92138781272888,57.2179,55.92138781272888C57.2179,55.92138781272888,57.2179,55.92138781272888,57.2179,55.92138781272888Z" fill="#000000" fill-opacity="0.03999999910593033"></path><path d="M57.7179,55.930867812728884L57.7179,55.92138781272888Q57.7179,54.45772781272888,58.5096,53.42769781272888Q59.258,52.45408381272888,60.28,52.45326781272888L75.125,52.45326781272888L75.125,76.50796781272888Q75.125,78.49546781272889,74.0419,79.89476781272889Q73.00229999999999,81.23786781272888,71.5687,81.23786781272888L16.43125,81.23786781272888Q14.997869999999999,81.23786781272888,13.95808,79.89426781272888Q12.875,78.49466781272888,12.875,76.50796781272888L12.875,52.45326781272888L27.72,52.45326781272888Q28.7425,52.45326781272888,29.4906,53.42538781272888Q30.2821,54.45397781272888,30.2821,55.917327812728885L30.2821,55.947117812728884Q30.2821,57.74781781272888,31.2914,59.03433781272888Q32.3429,60.37462781272888,33.858000000000004,60.374617812728886L54.142,60.374617812728886Q55.6567,60.374617812728886,56.7094,59.02511781272888Q57.7179,57.73234781272888,57.7179,55.930867812728884ZM57.7168,52.81828281272888Q56.7179,54.11781781272888,56.7179,55.92138781272888L56.7179,55.930867812728884Q56.7179,57.38843781272888,55.921,58.41005781272888Q55.1685,59.374617812728886,54.142,59.374617812728886L33.858000000000004,59.374617812728886Q32.8294,59.374617812728886,32.078199999999995,58.41708781272888Q31.2821,57.40236781272888,31.2821,55.947117812728884L31.2821,55.917327812728885Q31.2821,54.11374781272888,30.2831,52.81551981272888Q29.2348,51.45326781272888,27.72,51.45326781272888L11.875,51.45326781272888L11.875,76.50796781272888Q11.875,78.83636781272888,13.167231,80.50626781272888Q14.50727,82.23786781272888,16.43125,82.23786781272888L71.5687,82.23786781272888Q73.49289999999999,82.23786781272888,74.8327,80.50676781272888Q76.125,78.83726781272888,76.125,76.50796781272888L76.125,51.45326781272888L60.28,51.45326781272888Q58.765,51.45447781272888,57.7168,52.81828281272888Z" fill-rule="evenodd" fill="#000000" fill-opacity="0.15000000596046448"></path></g><g><path d="M25.9259,36.227007812728885L12.002564,51.77106781272888L12.747436,52.43826781272888L26.726100000000002,36.83247781272888L26.7485,36.79707781272888Q27.676299999999998,35.32826781272888,29.0029,35.32826781272888L58.9971,35.32826781272888Q60.324,35.32826781272888,61.2514,36.798187812728884L61.2738,36.833737812728884L75.2526,52.43696781272888L75.9974,51.76966781272888L62.0741,36.228457812728884Q60.8579,34.32826781272888,58.9971,34.32826781272888L29.0029,34.32826781272888Q27.142699999999998,34.32826781272888,25.9259,36.227007812728885Z" fill-rule="evenodd" fill="#000000" fill-opacity="0.15000000596046448"></path></g></g></g></g></g>', 2)
15
- ]));
16
- }
17
- const g = /* @__PURE__ */ Q(o, [["render", r]]);
18
- export {
19
- g as default
20
- };
@@ -1,3 +0,0 @@
1
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
- declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
3
- export default _default;
@@ -1,20 +0,0 @@
1
- import { createElementBlock as l, openBlock as e, createStaticVNode as i } from "vue";
2
- import Q from "../../../../_virtual/_plugin-vue_export-helper.mjs";
3
- const o = {}, L = {
4
- xmlns: "http://www.w3.org/2000/svg",
5
- "xmlns:xlink": "http://www.w3.org/1999/xlink",
6
- fill: "none",
7
- version: "1.1",
8
- width: "88",
9
- height: "88.5078125",
10
- viewBox: "0 0 88 88.5078125"
11
- };
12
- function p(r, t) {
13
- return e(), l("svg", L, t[0] || (t[0] = [
14
- i('<defs><clipPath id="master_svg0_373_19161"><rect x="0" y="33" width="88" height="55.507694244384766" rx="0"></rect></clipPath></defs><g><g clip-path="url(#master_svg0_373_19161)"><g><g><path d="M12.375,72.37709593772888C4.71416,74.08249593772888,0,76.40572593772887,0,78.96611593772889C0,84.20009593772889,19.6995,88.44299593772888,44,88.44299593772888C68.3005,88.44299593772888,88,84.20009593772889,88,78.96611593772889C88,76.40572593772887,83.2858,74.08249593772888,75.625,72.37709608666788C75.625,72.37709608666788,75.625,76.50840593772888,75.625,76.50840593772888C75.625,79.38261593772889,73.81,81.73831593772888,71.5687,81.73831593772888C71.5687,81.73831593772888,16.4312,81.73831593772888,16.4312,81.73831593772888C14.19,81.73831593772888,12.375,79.38126593772888,12.375,76.50840593772888C12.375,76.50840593772888,12.375,72.37709593772888,12.375,72.37709593772888Z" fill="#F6F6F8" fill-opacity="1"></path></g><g><g><path d="M57.2179,55.92138781272888C57.2179,53.74846781272888,58.5846,51.95462166272888,60.28,51.95326781272888C60.28,51.95326781272888,75.625,51.95326781272888,75.625,51.95326781272888C75.625,51.95326781272888,75.625,76.50796781272888,75.625,76.50796781272888C75.625,79.38216781272888,73.81,81.73786781272888,71.5687,81.73786781272888C71.5687,81.73786781272888,16.43125,81.73786781272888,16.43125,81.73786781272888C14.19,81.73786781272888,12.375,79.38086781272888,12.375,76.50796781272888C12.375,76.50796781272888,12.375,51.95326781272888,12.375,51.95326781272888C12.375,51.95326781272888,27.72,51.95326781272888,27.72,51.95326781272888C29.4154,51.95326781272888,30.7821,53.74440781272888,30.7821,55.917327812728885C30.7821,55.917327812728885,30.7821,55.947117812728884,30.7821,55.947117812728884C30.7821,58.12003781272888,32.164,59.874617812728886,33.858000000000004,59.874617812728886C33.858000000000004,59.874617812728886,54.142,59.874617812728886,54.142,59.874617812728886C55.836,59.874617812728886,57.2179,58.10378781272888,57.2179,55.930867812728884C57.2179,55.930867812728884,57.2179,55.92138781272888,57.2179,55.92138781272888C57.2179,55.92138781272888,57.2179,55.92138781272888,57.2179,55.92138781272888Z" fill="#FAFBFB" fill-opacity="1"></path><path d="M57.7179,55.930867812728884L57.7179,55.92138781272888Q57.7179,54.45772781272888,58.5096,53.42769781272888Q59.258,52.45408381272888,60.28,52.45326781272888L75.125,52.45326781272888L75.125,76.50796781272888Q75.125,78.49546781272889,74.0419,79.89476781272889Q73.00229999999999,81.23786781272888,71.5687,81.23786781272888L16.43125,81.23786781272888Q14.997869999999999,81.23786781272888,13.95808,79.89426781272888Q12.875,78.49466781272888,12.875,76.50796781272888L12.875,52.45326781272888L27.72,52.45326781272888Q28.7425,52.45326781272888,29.4906,53.42538781272888Q30.2821,54.45397781272888,30.2821,55.917327812728885L30.2821,55.947117812728884Q30.2821,57.74781781272888,31.2914,59.03433781272888Q32.3429,60.37462781272888,33.858000000000004,60.374617812728886L54.142,60.374617812728886Q55.6567,60.374617812728886,56.7094,59.02511781272888Q57.7179,57.73234781272888,57.7179,55.930867812728884ZM57.7168,52.81828281272888Q56.7179,54.11781781272888,56.7179,55.92138781272888L56.7179,55.930867812728884Q56.7179,57.38843781272888,55.921,58.41005781272888Q55.1685,59.374617812728886,54.142,59.374617812728886L33.858000000000004,59.374617812728886Q32.8294,59.374617812728886,32.078199999999995,58.41708781272888Q31.2821,57.40236781272888,31.2821,55.947117812728884L31.2821,55.917327812728885Q31.2821,54.11374781272888,30.2831,52.81551981272888Q29.2348,51.45326781272888,27.72,51.45326781272888L11.875,51.45326781272888L11.875,76.50796781272888Q11.875,78.83636781272888,13.167231,80.50626781272888Q14.50727,82.23786781272888,16.43125,82.23786781272888L71.5687,82.23786781272888Q73.49289999999999,82.23786781272888,74.8327,80.50676781272888Q76.125,78.83726781272888,76.125,76.50796781272888L76.125,51.45326781272888L60.28,51.45326781272888Q58.765,51.45447781272888,57.7168,52.81828281272888Z" fill-rule="evenodd" fill="#DBDFE4" fill-opacity="1"></path></g><g><path d="M25.9259,36.227007812728885L12.002564,51.77106781272888L12.747436,52.43826781272888L26.726100000000002,36.83247781272888L26.7485,36.79707781272888Q27.676299999999998,35.32826781272888,29.0029,35.32826781272888L58.9971,35.32826781272888Q60.324,35.32826781272888,61.2514,36.798187812728884L61.2738,36.833737812728884L75.2526,52.43696781272888L75.9974,51.76966781272888L62.0741,36.228457812728884Q60.8579,34.32826781272888,58.9971,34.32826781272888L29.0029,34.32826781272888Q27.142699999999998,34.32826781272888,25.9259,36.227007812728885Z" fill-rule="evenodd" fill="#DBDFE4" fill-opacity="1"></path></g></g></g></g></g>', 2)
15
- ]));
16
- }
17
- const g = /* @__PURE__ */ Q(o, [["render", p]]);
18
- export {
19
- g as default
20
- };
@@ -1,3 +0,0 @@
1
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
- declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
3
- export default _default;
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),l=require("../../../../_virtual/_plugin-vue_export-helper.js"),i={},r={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",fill:"none",version:"1.1",width:"88",height:"88.5078125",viewBox:"0 0 88 88.5078125"};function o(n,t){return e.openBlock(),e.createElementBlock("svg",r,t[0]||(t[0]=[e.createStaticVNode('<defs><clipPath id="master_svg0_373_19161"><rect x="0" y="33" width="88" height="55.507694244384766" rx="0"></rect></clipPath></defs><g><g clip-path="url(#master_svg0_373_19161)"><g><g><path d="M12.375,72.37709593772888C4.71416,74.08249593772888,0,76.40572593772887,0,78.96611593772889C0,84.20009593772889,19.6995,88.44299593772888,44,88.44299593772888C68.3005,88.44299593772888,88,84.20009593772889,88,78.96611593772889C88,76.40572593772887,83.2858,74.08249593772888,75.625,72.37709608666788C75.625,72.37709608666788,75.625,76.50840593772888,75.625,76.50840593772888C75.625,79.38261593772889,73.81,81.73831593772888,71.5687,81.73831593772888C71.5687,81.73831593772888,16.4312,81.73831593772888,16.4312,81.73831593772888C14.19,81.73831593772888,12.375,79.38126593772888,12.375,76.50840593772888C12.375,76.50840593772888,12.375,72.37709593772888,12.375,72.37709593772888Z" fill="#000000" fill-opacity="0.03999999910593033"></path></g><g><g><path d="M57.2179,55.92138781272888C57.2179,53.74846781272888,58.5846,51.95462166272888,60.28,51.95326781272888C60.28,51.95326781272888,75.625,51.95326781272888,75.625,51.95326781272888C75.625,51.95326781272888,75.625,76.50796781272888,75.625,76.50796781272888C75.625,79.38216781272888,73.81,81.73786781272888,71.5687,81.73786781272888C71.5687,81.73786781272888,16.43125,81.73786781272888,16.43125,81.73786781272888C14.19,81.73786781272888,12.375,79.38086781272888,12.375,76.50796781272888C12.375,76.50796781272888,12.375,51.95326781272888,12.375,51.95326781272888C12.375,51.95326781272888,27.72,51.95326781272888,27.72,51.95326781272888C29.4154,51.95326781272888,30.7821,53.74440781272888,30.7821,55.917327812728885C30.7821,55.917327812728885,30.7821,55.947117812728884,30.7821,55.947117812728884C30.7821,58.12003781272888,32.164,59.874617812728886,33.858000000000004,59.874617812728886C33.858000000000004,59.874617812728886,54.142,59.874617812728886,54.142,59.874617812728886C55.836,59.874617812728886,57.2179,58.10378781272888,57.2179,55.930867812728884C57.2179,55.930867812728884,57.2179,55.92138781272888,57.2179,55.92138781272888C57.2179,55.92138781272888,57.2179,55.92138781272888,57.2179,55.92138781272888Z" fill="#000000" fill-opacity="0.03999999910593033"></path><path d="M57.7179,55.930867812728884L57.7179,55.92138781272888Q57.7179,54.45772781272888,58.5096,53.42769781272888Q59.258,52.45408381272888,60.28,52.45326781272888L75.125,52.45326781272888L75.125,76.50796781272888Q75.125,78.49546781272889,74.0419,79.89476781272889Q73.00229999999999,81.23786781272888,71.5687,81.23786781272888L16.43125,81.23786781272888Q14.997869999999999,81.23786781272888,13.95808,79.89426781272888Q12.875,78.49466781272888,12.875,76.50796781272888L12.875,52.45326781272888L27.72,52.45326781272888Q28.7425,52.45326781272888,29.4906,53.42538781272888Q30.2821,54.45397781272888,30.2821,55.917327812728885L30.2821,55.947117812728884Q30.2821,57.74781781272888,31.2914,59.03433781272888Q32.3429,60.37462781272888,33.858000000000004,60.374617812728886L54.142,60.374617812728886Q55.6567,60.374617812728886,56.7094,59.02511781272888Q57.7179,57.73234781272888,57.7179,55.930867812728884ZM57.7168,52.81828281272888Q56.7179,54.11781781272888,56.7179,55.92138781272888L56.7179,55.930867812728884Q56.7179,57.38843781272888,55.921,58.41005781272888Q55.1685,59.374617812728886,54.142,59.374617812728886L33.858000000000004,59.374617812728886Q32.8294,59.374617812728886,32.078199999999995,58.41708781272888Q31.2821,57.40236781272888,31.2821,55.947117812728884L31.2821,55.917327812728885Q31.2821,54.11374781272888,30.2831,52.81551981272888Q29.2348,51.45326781272888,27.72,51.45326781272888L11.875,51.45326781272888L11.875,76.50796781272888Q11.875,78.83636781272888,13.167231,80.50626781272888Q14.50727,82.23786781272888,16.43125,82.23786781272888L71.5687,82.23786781272888Q73.49289999999999,82.23786781272888,74.8327,80.50676781272888Q76.125,78.83726781272888,76.125,76.50796781272888L76.125,51.45326781272888L60.28,51.45326781272888Q58.765,51.45447781272888,57.7168,52.81828281272888Z" fill-rule="evenodd" fill="#000000" fill-opacity="0.15000000596046448"></path></g><g><path d="M25.9259,36.227007812728885L12.002564,51.77106781272888L12.747436,52.43826781272888L26.726100000000002,36.83247781272888L26.7485,36.79707781272888Q27.676299999999998,35.32826781272888,29.0029,35.32826781272888L58.9971,35.32826781272888Q60.324,35.32826781272888,61.2514,36.798187812728884L61.2738,36.833737812728884L75.2526,52.43696781272888L75.9974,51.76966781272888L62.0741,36.228457812728884Q60.8579,34.32826781272888,58.9971,34.32826781272888L29.0029,34.32826781272888Q27.142699999999998,34.32826781272888,25.9259,36.227007812728885Z" fill-rule="evenodd" fill="#000000" fill-opacity="0.15000000596046448"></path></g></g></g></g></g>',2)]))}const Q=l.default(i,[["render",o]]);exports.default=Q;
@@ -1,3 +0,0 @@
1
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
- declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
3
- export default _default;
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),l=require("../../../../_virtual/_plugin-vue_export-helper.js"),i={},r={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",fill:"none",version:"1.1",width:"88",height:"88.5078125",viewBox:"0 0 88 88.5078125"};function o(n,t){return e.openBlock(),e.createElementBlock("svg",r,t[0]||(t[0]=[e.createStaticVNode('<defs><clipPath id="master_svg0_373_19161"><rect x="0" y="33" width="88" height="55.507694244384766" rx="0"></rect></clipPath></defs><g><g clip-path="url(#master_svg0_373_19161)"><g><g><path d="M12.375,72.37709593772888C4.71416,74.08249593772888,0,76.40572593772887,0,78.96611593772889C0,84.20009593772889,19.6995,88.44299593772888,44,88.44299593772888C68.3005,88.44299593772888,88,84.20009593772889,88,78.96611593772889C88,76.40572593772887,83.2858,74.08249593772888,75.625,72.37709608666788C75.625,72.37709608666788,75.625,76.50840593772888,75.625,76.50840593772888C75.625,79.38261593772889,73.81,81.73831593772888,71.5687,81.73831593772888C71.5687,81.73831593772888,16.4312,81.73831593772888,16.4312,81.73831593772888C14.19,81.73831593772888,12.375,79.38126593772888,12.375,76.50840593772888C12.375,76.50840593772888,12.375,72.37709593772888,12.375,72.37709593772888Z" fill="#F6F6F8" fill-opacity="1"></path></g><g><g><path d="M57.2179,55.92138781272888C57.2179,53.74846781272888,58.5846,51.95462166272888,60.28,51.95326781272888C60.28,51.95326781272888,75.625,51.95326781272888,75.625,51.95326781272888C75.625,51.95326781272888,75.625,76.50796781272888,75.625,76.50796781272888C75.625,79.38216781272888,73.81,81.73786781272888,71.5687,81.73786781272888C71.5687,81.73786781272888,16.43125,81.73786781272888,16.43125,81.73786781272888C14.19,81.73786781272888,12.375,79.38086781272888,12.375,76.50796781272888C12.375,76.50796781272888,12.375,51.95326781272888,12.375,51.95326781272888C12.375,51.95326781272888,27.72,51.95326781272888,27.72,51.95326781272888C29.4154,51.95326781272888,30.7821,53.74440781272888,30.7821,55.917327812728885C30.7821,55.917327812728885,30.7821,55.947117812728884,30.7821,55.947117812728884C30.7821,58.12003781272888,32.164,59.874617812728886,33.858000000000004,59.874617812728886C33.858000000000004,59.874617812728886,54.142,59.874617812728886,54.142,59.874617812728886C55.836,59.874617812728886,57.2179,58.10378781272888,57.2179,55.930867812728884C57.2179,55.930867812728884,57.2179,55.92138781272888,57.2179,55.92138781272888C57.2179,55.92138781272888,57.2179,55.92138781272888,57.2179,55.92138781272888Z" fill="#FAFBFB" fill-opacity="1"></path><path d="M57.7179,55.930867812728884L57.7179,55.92138781272888Q57.7179,54.45772781272888,58.5096,53.42769781272888Q59.258,52.45408381272888,60.28,52.45326781272888L75.125,52.45326781272888L75.125,76.50796781272888Q75.125,78.49546781272889,74.0419,79.89476781272889Q73.00229999999999,81.23786781272888,71.5687,81.23786781272888L16.43125,81.23786781272888Q14.997869999999999,81.23786781272888,13.95808,79.89426781272888Q12.875,78.49466781272888,12.875,76.50796781272888L12.875,52.45326781272888L27.72,52.45326781272888Q28.7425,52.45326781272888,29.4906,53.42538781272888Q30.2821,54.45397781272888,30.2821,55.917327812728885L30.2821,55.947117812728884Q30.2821,57.74781781272888,31.2914,59.03433781272888Q32.3429,60.37462781272888,33.858000000000004,60.374617812728886L54.142,60.374617812728886Q55.6567,60.374617812728886,56.7094,59.02511781272888Q57.7179,57.73234781272888,57.7179,55.930867812728884ZM57.7168,52.81828281272888Q56.7179,54.11781781272888,56.7179,55.92138781272888L56.7179,55.930867812728884Q56.7179,57.38843781272888,55.921,58.41005781272888Q55.1685,59.374617812728886,54.142,59.374617812728886L33.858000000000004,59.374617812728886Q32.8294,59.374617812728886,32.078199999999995,58.41708781272888Q31.2821,57.40236781272888,31.2821,55.947117812728884L31.2821,55.917327812728885Q31.2821,54.11374781272888,30.2831,52.81551981272888Q29.2348,51.45326781272888,27.72,51.45326781272888L11.875,51.45326781272888L11.875,76.50796781272888Q11.875,78.83636781272888,13.167231,80.50626781272888Q14.50727,82.23786781272888,16.43125,82.23786781272888L71.5687,82.23786781272888Q73.49289999999999,82.23786781272888,74.8327,80.50676781272888Q76.125,78.83726781272888,76.125,76.50796781272888L76.125,51.45326781272888L60.28,51.45326781272888Q58.765,51.45447781272888,57.7168,52.81828281272888Z" fill-rule="evenodd" fill="#DBDFE4" fill-opacity="1"></path></g><g><path d="M25.9259,36.227007812728885L12.002564,51.77106781272888L12.747436,52.43826781272888L26.726100000000002,36.83247781272888L26.7485,36.79707781272888Q27.676299999999998,35.32826781272888,29.0029,35.32826781272888L58.9971,35.32826781272888Q60.324,35.32826781272888,61.2514,36.798187812728884L61.2738,36.833737812728884L75.2526,52.43696781272888L75.9974,51.76966781272888L62.0741,36.228457812728884Q60.8579,34.32826781272888,58.9971,34.32826781272888L29.0029,34.32826781272888Q27.142699999999998,34.32826781272888,25.9259,36.227007812728885Z" fill-rule="evenodd" fill="#DBDFE4" fill-opacity="1"></path></g></g></g></g></g>',2)]))}const Q=l.default(i,[["render",o]]);exports.default=Q;