@aplus-frontend/ui 6.31.1 → 6.32.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 (142) hide show
  1. package/es/index.mjs +39 -37
  2. package/es/src/ag-grid/components/body-cell/index.vue2.mjs +14 -12
  3. package/es/src/ag-grid/editable/index.vue.d.ts +18 -0
  4. package/es/src/ag-grid/editable/index.vue.mjs +233 -0
  5. package/es/src/ag-grid/editable/index.vue2.mjs +4 -0
  6. package/es/src/ag-grid/editable/interface.d.ts +96 -0
  7. package/es/src/ag-grid/editable/interface.mjs +1 -0
  8. package/es/src/ag-grid/editable/style/css.d.ts +0 -0
  9. package/es/src/ag-grid/editable/style/css.js +1 -0
  10. package/es/src/ag-grid/editable/style/index.d.ts +0 -0
  11. package/es/src/ag-grid/editable/style/index.js +1 -0
  12. package/es/src/ag-grid/editable/utils.d.ts +5 -0
  13. package/es/src/ag-grid/editable/utils.mjs +23 -0
  14. package/es/src/ag-grid/hooks/use-editable-api.d.ts +15 -0
  15. package/es/src/ag-grid/hooks/use-editable-api.mjs +150 -0
  16. package/es/src/ag-grid/hooks/use-editable-columns.d.ts +6 -0
  17. package/es/src/ag-grid/hooks/use-editable-columns.mjs +96 -0
  18. package/es/src/ag-grid/hooks/use-editable-form-item-api.d.ts +14 -0
  19. package/es/src/ag-grid/index.d.ts +3 -1
  20. package/es/src/ag-grid/index.mjs +2 -0
  21. package/es/src/ag-grid/index.vue.mjs +70 -66
  22. package/es/src/ag-grid/interface.d.ts +20 -1
  23. package/es/src/ag-grid/utils.d.ts +2 -0
  24. package/es/src/ag-grid/utils.mjs +12 -7
  25. package/es/src/ap-field/date/index.vue.mjs +29 -28
  26. package/es/src/ap-field/radio/index.vue.d.ts +4 -0
  27. package/es/src/ap-field/radio/index.vue.mjs +9 -8
  28. package/es/src/ap-field/radio/read.vue2.mjs +5 -4
  29. package/es/src/ap-field/rate/index.vue.d.ts +20 -0
  30. package/es/src/ap-field/rate/index.vue.mjs +12 -11
  31. package/es/src/ap-form/interface.d.ts +4 -0
  32. package/es/src/ap-form/item/index.vue.mjs +41 -39
  33. package/es/src/ap-form/items/checkbox/index.vue.mjs +5 -5
  34. package/es/src/ap-form/items/date/index.vue.mjs +9 -9
  35. package/es/src/ap-form/items/date-range/index.vue.mjs +8 -8
  36. package/es/src/ap-form/items/number/index.vue.mjs +11 -11
  37. package/es/src/ap-form/items/radio/index.vue.d.ts +8 -0
  38. package/es/src/ap-form/items/radio/index.vue.mjs +6 -6
  39. package/es/src/ap-form/items/select/index.vue.mjs +3 -3
  40. package/es/src/ap-form/items/switch/index.vue.mjs +2 -2
  41. package/es/src/ap-form/items/text/index.vue2.mjs +12 -12
  42. package/es/src/ap-form/items/text/password.vue.mjs +2 -2
  43. package/es/src/ap-form/items/text-area/index.vue.d.ts +4 -4
  44. package/es/src/ap-form/items/text-area/index.vue.mjs +3 -3
  45. package/es/src/ap-form/items/tree-select/index.vue.mjs +6 -6
  46. package/es/src/ap-form/render/item.vue.mjs +6 -5
  47. package/es/src/ap-grid/utils/editable.d.ts +2 -1
  48. package/es/src/ap-table/constants.d.ts +4 -0
  49. package/es/src/ap-table/interface.d.ts +5 -0
  50. package/es/src/ap-table/utils.mjs +76 -71
  51. package/es/src/ap-upload/components/MultipleFile.vue.d.ts +10 -0
  52. package/es/src/business/ap-appendix/ap-appendix.vue2.mjs +67 -68
  53. package/es/src/business/batch-input-group/form-item.vue.mjs +1 -1
  54. package/es/src/editable-table/utils.d.ts +3 -2
  55. package/es/src/index.mjs +42 -40
  56. package/es/src/version.d.ts +1 -1
  57. package/es/src/version.mjs +1 -1
  58. package/lib/index.js +1 -1
  59. package/lib/src/ag-grid/components/body-cell/index.vue2.js +1 -1
  60. package/lib/src/ag-grid/editable/index.vue.d.ts +18 -0
  61. package/lib/src/ag-grid/editable/index.vue.js +1 -0
  62. package/lib/src/ag-grid/editable/index.vue2.js +1 -0
  63. package/lib/src/ag-grid/editable/interface.d.ts +96 -0
  64. package/lib/src/ag-grid/editable/interface.js +1 -0
  65. package/lib/src/ag-grid/editable/style/css.cjs +1 -0
  66. package/lib/src/ag-grid/editable/style/css.d.ts +0 -0
  67. package/lib/src/ag-grid/editable/style/index.cjs +1 -0
  68. package/lib/src/ag-grid/editable/style/index.d.ts +0 -0
  69. package/lib/src/ag-grid/editable/utils.d.ts +5 -0
  70. package/lib/src/ag-grid/editable/utils.js +1 -0
  71. package/lib/src/ag-grid/hooks/use-editable-api.d.ts +15 -0
  72. package/lib/src/ag-grid/hooks/use-editable-api.js +1 -0
  73. package/lib/src/ag-grid/hooks/use-editable-columns.d.ts +6 -0
  74. package/lib/src/ag-grid/hooks/use-editable-columns.js +1 -0
  75. package/lib/src/ag-grid/hooks/use-editable-form-item-api.d.ts +14 -0
  76. package/lib/src/ag-grid/index.d.ts +3 -1
  77. package/lib/src/ag-grid/index.js +1 -1
  78. package/lib/src/ag-grid/index.vue.js +1 -1
  79. package/lib/src/ag-grid/interface.d.ts +20 -1
  80. package/lib/src/ag-grid/utils.d.ts +2 -0
  81. package/lib/src/ag-grid/utils.js +1 -1
  82. package/lib/src/ap-field/date/index.vue.js +1 -1
  83. package/lib/src/ap-field/radio/index.vue.d.ts +4 -0
  84. package/lib/src/ap-field/radio/index.vue.js +1 -1
  85. package/lib/src/ap-field/radio/read.vue2.js +1 -1
  86. package/lib/src/ap-field/rate/index.vue.d.ts +20 -0
  87. package/lib/src/ap-field/rate/index.vue.js +1 -1
  88. package/lib/src/ap-form/interface.d.ts +4 -0
  89. package/lib/src/ap-form/item/index.vue.js +1 -1
  90. package/lib/src/ap-form/items/checkbox/index.vue.js +1 -1
  91. package/lib/src/ap-form/items/date/index.vue.js +1 -1
  92. package/lib/src/ap-form/items/date-range/index.vue.js +1 -1
  93. package/lib/src/ap-form/items/number/index.vue.js +1 -1
  94. package/lib/src/ap-form/items/radio/index.vue.d.ts +8 -0
  95. package/lib/src/ap-form/items/radio/index.vue.js +1 -1
  96. package/lib/src/ap-form/items/select/index.vue.js +1 -1
  97. package/lib/src/ap-form/items/switch/index.vue.js +1 -1
  98. package/lib/src/ap-form/items/text/index.vue2.js +1 -1
  99. package/lib/src/ap-form/items/text/password.vue.js +1 -1
  100. package/lib/src/ap-form/items/text-area/index.vue.d.ts +4 -4
  101. package/lib/src/ap-form/items/text-area/index.vue.js +1 -1
  102. package/lib/src/ap-form/items/tree-select/index.vue.js +1 -1
  103. package/lib/src/ap-form/render/item.vue.js +1 -1
  104. package/lib/src/ap-grid/utils/editable.d.ts +2 -1
  105. package/lib/src/ap-table/constants.d.ts +4 -0
  106. package/lib/src/ap-table/interface.d.ts +5 -0
  107. package/lib/src/ap-table/utils.js +1 -1
  108. package/lib/src/ap-upload/components/MultipleFile.vue.d.ts +10 -0
  109. package/lib/src/business/ap-appendix/ap-appendix.vue2.js +1 -1
  110. package/lib/src/business/batch-input-group/form-item.vue.js +1 -1
  111. package/lib/src/editable-table/utils.d.ts +3 -2
  112. package/lib/src/index.js +1 -1
  113. package/lib/src/version.d.ts +1 -1
  114. package/lib/src/version.js +1 -1
  115. package/package.json +3 -3
  116. package/theme/ag-grid/editable.css +52 -0
  117. package/theme/ag-grid/editable.less +11 -0
  118. package/theme/ag-grid/index.css +18 -0
  119. package/theme/ag-grid/index.less +1 -0
  120. package/theme/ap-appendix/ap-appendix.css +4 -13
  121. package/theme/ap-appendix/ap-appendix.less +5 -12
  122. package/theme/ap-form/ap-form-item.css +12 -0
  123. package/theme/ap-form/ap-form-item.less +12 -0
  124. package/theme/ap-form/index.css +12 -0
  125. package/theme/ap-form/search-form.css +12 -0
  126. package/theme/ap-grid/editable.css +1 -0
  127. package/theme/ap-grid/editable.less +1 -0
  128. package/theme/ap-grid/index.css +13 -0
  129. package/theme/ap-grid/index.less +1 -0
  130. package/theme/ap-table/ap-table.css +12 -0
  131. package/theme/ap-table-modal/index.css +12 -0
  132. package/theme/editable-table/index.css +13 -0
  133. package/theme/editable-table/index.less +1 -0
  134. package/theme/index.css +25 -13
  135. package/es/src/business/ap-appendix/icons/empty-admin-icon.vue.d.ts +0 -3
  136. package/es/src/business/ap-appendix/icons/empty-admin-icon.vue.mjs +0 -20
  137. package/es/src/business/ap-appendix/icons/empty-aplus-icon.vue.d.ts +0 -3
  138. package/es/src/business/ap-appendix/icons/empty-aplus-icon.vue.mjs +0 -20
  139. package/lib/src/business/ap-appendix/icons/empty-admin-icon.vue.d.ts +0 -3
  140. package/lib/src/business/ap-appendix/icons/empty-admin-icon.vue.js +0 -1
  141. package/lib/src/business/ap-appendix/icons/empty-aplus-icon.vue.d.ts +0 -3
  142. package/lib/src/business/ap-appendix/icons/empty-aplus-icon.vue.js +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: rgba(0, 0, 0, 0.04);
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: rgba(0, 0, 0, 0.04);
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));
@@ -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: rgba(0, 0, 0, 0.04);
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
@@ -1097,6 +1097,12 @@
1097
1097
  .aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
1098
1098
  padding-right: 8px;
1099
1099
  }
1100
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) {
1101
+ padding-inline-end: 0;
1102
+ }
1103
+ .aplus-ap-form-item--bordered:has(textarea.ant-input) .ant-input {
1104
+ padding-inline-start: 0;
1105
+ }
1100
1106
  .aplus-ap-form-item--bordered .ant-picker {
1101
1107
  padding: 0;
1102
1108
  }
@@ -1149,6 +1155,12 @@
1149
1155
  .aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
1150
1156
  width: calc(100% + 12px);
1151
1157
  }
1158
+ .aplus-ap-form-item--disabled {
1159
+ background-color: rgba(0, 0, 0, 0.04);
1160
+ }
1161
+ .aplus-ap-form-item--disabled .ant-select-selector {
1162
+ background: transparent !important;
1163
+ }
1152
1164
  .aplus-ap-form-item--focused {
1153
1165
  border-color: var(--ap-active-color-base);
1154
1166
  box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
@@ -2947,6 +2959,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
2947
2959
  vertical-align: middle;
2948
2960
  word-break: break-all;
2949
2961
  flex: 1;
2962
+ text-align: right;
2950
2963
  }
2951
2964
  .aplus-work-order-modal .ant-form-item .ant-form-item-label {
2952
2965
  min-width: 86px;
@@ -3124,20 +3137,11 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
3124
3137
  .aplus-ap-appendix__file-area-content-item--loading-content:hover .ant-typography {
3125
3138
  color: var(--ap-text-color-4);
3126
3139
  }
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;
3140
+ .aplus-ap-appendix__empty .ant-empty {
3141
+ margin: 0;
3134
3142
  }
3135
- .aplus-ap-appendix__empty-content {
3136
- display: flex;
3137
- flex-direction: column;
3138
- align-items: center;
3139
- justify-content: center;
3140
- gap: 8px;
3143
+ .aplus-ap-appendix__empty .ant-empty-description {
3144
+ margin-bottom: 0;
3141
3145
  }
3142
3146
  .aplus-ap-group-search__search > .ant-select-selector {
3143
3147
  padding: 0px 10px 0 0 !important;
@@ -3580,6 +3584,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
3580
3584
  word-break: break-all;
3581
3585
  flex: 1;
3582
3586
  font-weight: bold;
3587
+ text-align: right;
3583
3588
  }
3584
3589
  .aplus-ap-grid-table-header__title--single {
3585
3590
  flex: unset;
@@ -3640,6 +3645,7 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
3640
3645
  max-width: 100%;
3641
3646
  vertical-align: middle;
3642
3647
  word-break: break-all;
3648
+ text-align: right;
3643
3649
  flex: 1;
3644
3650
  }
3645
3651
  .aplus-editable-grid .ant-form-item {
@@ -4248,6 +4254,12 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
4248
4254
  .aplus-ag-custom-header__sorter-down.active {
4249
4255
  color: var(--ap-color-primary);
4250
4256
  }
4257
+ .aplus-editable-aggrid .ant-form-item {
4258
+ margin-bottom: 16px;
4259
+ }
4260
+ .aplus-editable-aggrid .ag-cell:has(.is-editable) {
4261
+ padding-block: 16px 0px !important;
4262
+ }
4251
4263
  .aplus-ag-grid ::-webkit-scrollbar {
4252
4264
  width: 10px;
4253
4265
  height: 10px;
@@ -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;