@kyfe/ks-query-table 0.0.21 → 0.0.22
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.
- package/.bitmap +38 -0
- package/.editorconfig +5 -0
- package/.env.dev +2 -0
- package/.env.gray +2 -0
- package/.env.prod +2 -0
- package/.env.stg +3 -0
- package/.env.uat +2 -0
- package/.eslintignore +1 -0
- package/.eslintrc.js +25 -0
- package/.gitmodules +4 -0
- package/.prettierrc +11 -0
- package/README.md +15 -0
- package/babel.config.js +10 -0
- package/build-apm.sh +9 -0
- package/build.sh +16 -0
- package/config/index.js +20 -0
- package/jsconfig.json +7 -0
- package/kuasheng-sdk/index.js +80 -0
- package/kuasheng-sdk/lib/assets.js +304 -0
- package/kuasheng-sdk/lib/context.js +199 -0
- package/kuasheng-sdk/lib/layout.js +346 -0
- package/kuasheng-sdk/lib/location.js +46 -0
- package/kuasheng-sdk/lib/media.js +342 -0
- package/kuasheng-sdk/lib/navigation.js +30 -0
- package/kuasheng-sdk/lib/request.js +76 -0
- package/kuasheng-sdk/lib/system.js +190 -0
- package/kuasheng-sdk/lib/userinfo.js +98 -0
- package/kuasheng-sdk/util/check.js +102 -0
- package/kuasheng-sdk/util/config.js +47 -0
- package/kuasheng-sdk/util/device.js +25 -0
- package/kuasheng-sdk/util/error.js +19 -0
- package/kuasheng-sdk/util/funtional.js +153 -0
- package/kuasheng-sdk/util/mixin.js +36 -0
- package/kuasheng-sdk/util/requestUtil.js +41 -0
- package/kuasheng-sdk/util/response.js +33 -0
- package/kuasheng-sdk/util/warn.js +35 -0
- package/kuasheng-ui/CHANGELOG.md +9 -0
- package/kuasheng-ui/components/card.vue +57 -0
- package/kuasheng-ui/components/ks-area-select/README.md +43 -0
- package/kuasheng-ui/components/ks-area-select/area-picker.vue +554 -0
- package/kuasheng-ui/components/ks-area-select/area-search.vue +363 -0
- package/kuasheng-ui/components/ks-area-select/areas-pop.vue +56 -0
- package/kuasheng-ui/components/ks-area-select/common.js +183 -0
- package/kuasheng-ui/components/ks-area-select/index.vue +355 -0
- package/kuasheng-ui/components/ks-area-select/mixins.js +216 -0
- package/kuasheng-ui/components/ks-area-single-select/README.md +50 -0
- package/kuasheng-ui/components/ks-area-single-select/hot-city.js +45 -0
- package/kuasheng-ui/components/ks-area-single-select/index.vue +324 -0
- package/kuasheng-ui/components/ks-calendar/index.vue +269 -0
- package/kuasheng-ui/components/ks-call-phone/call-tips.vue +70 -0
- package/kuasheng-ui/components/ks-call-phone/call.vue +178 -0
- package/kuasheng-ui/components/ks-call-phone/index.js +48 -0
- package/kuasheng-ui/components/ks-call-phone/index.vue +131 -0
- package/kuasheng-ui/components/ks-call-phone//345/221/274/345/217/253/347/273/204/344/273/266.md +0 -0
- package/kuasheng-ui/components/ks-date-picker/README.md +23 -0
- package/kuasheng-ui/components/ks-date-picker/date-picker-bottom.vue +123 -0
- package/kuasheng-ui/components/ks-date-picker/date-picker-dropdown.vue +80 -0
- package/kuasheng-ui/components/ks-date-picker/date-picker-right.vue +87 -0
- package/kuasheng-ui/components/ks-date-picker/date-picker-top.vue +88 -0
- package/kuasheng-ui/components/ks-date-picker/date-picker.js +15 -0
- package/kuasheng-ui/components/ks-date-picker/date-range-select.vue +92 -0
- package/kuasheng-ui/components/ks-date-picker/date-select.vue +65 -0
- package/kuasheng-ui/components/ks-date-picker/date-week-month.vue +131 -0
- package/kuasheng-ui/components/ks-date-picker/index.js +12 -0
- package/kuasheng-ui/components/ks-date-picker/mixin.js +92 -0
- package/kuasheng-ui/components/ks-date-picker/month-range-select.vue +129 -0
- package/kuasheng-ui/components/ks-date-picker/month-select.vue +85 -0
- package/kuasheng-ui/components/ks-date-picker/quarter-select.vue +94 -0
- package/kuasheng-ui/components/ks-date-picker/style.less +121 -0
- package/kuasheng-ui/components/ks-date-picker/utils.js +109 -0
- package/kuasheng-ui/components/ks-date-picker/week-select.vue +99 -0
- package/kuasheng-ui/components/ks-decrypt/index.vue +159 -0
- package/kuasheng-ui/components/ks-employee/README.md +78 -0
- package/kuasheng-ui/components/ks-employee/employee-input.vue +173 -0
- package/kuasheng-ui/components/ks-employee/employee-list.vue +662 -0
- package/kuasheng-ui/components/ks-employee/employee-popup.vue +197 -0
- package/kuasheng-ui/components/ks-employee/employee-search.vue +250 -0
- package/kuasheng-ui/components/ks-employee/employee-selected.vue +173 -0
- package/kuasheng-ui/components/ks-employee/index.js +17 -0
- package/kuasheng-ui/components/ks-employee/package-lock.json +5 -0
- package/kuasheng-ui/components/ks-employee/package.json +15 -0
- package/kuasheng-ui/components/ks-employee/yarn.lock +4 -0
- package/kuasheng-ui/components/ks-field-money/index.js +8 -0
- package/kuasheng-ui/components/ks-field-money/index.vue +212 -0
- package/kuasheng-ui/components/ks-field-money/package.json +11 -0
- package/kuasheng-ui/components/ks-field-money/utils.js +65 -0
- package/kuasheng-ui/components/ks-field-money//351/207/221/351/242/235/350/275/254/346/215/242/345/231/250.md +0 -0
- package/kuasheng-ui/components/ks-history-search/history-input.vue +131 -0
- package/kuasheng-ui/components/ks-history-search/history-list.vue +188 -0
- package/kuasheng-ui/components/ks-history-search/img/delete.png +0 -0
- package/kuasheng-ui/components/ks-history-search/index.js +9 -0
- package/kuasheng-ui/components/ks-history-search/index.vue +125 -0
- package/kuasheng-ui/components/ks-history-search/package-lock.json +5 -0
- package/kuasheng-ui/components/ks-history-search/package.json +15 -0
- package/kuasheng-ui/components/ks-history-search/utils.js +35 -0
- package/kuasheng-ui/components/ks-input-search/index.vue +106 -0
- package/kuasheng-ui/components/ks-list/index.vue +75 -0
- package/kuasheng-ui/components/ks-loading/index.js +16 -0
- package/kuasheng-ui/components/ks-month/index.vue +47 -0
- package/kuasheng-ui/components/ks-month/package.json +3 -0
- package/kuasheng-ui/components/ks-month/range.vue +172 -0
- package/kuasheng-ui/components/ks-month/single.vue +136 -0
- package/kuasheng-ui/components/ks-month/style.less +125 -0
- package/kuasheng-ui/components/ks-month/utils.js +35 -0
- package/kuasheng-ui/components/ks-nav/index.vue +264 -0
- package/kuasheng-ui/components/ks-nav-bar.js +35 -0
- package/kuasheng-ui/components/ks-org/ks-org-tree.vue +247 -0
- package/kuasheng-ui/components/ks-org/ks-popup-tree.vue +154 -0
- package/kuasheng-ui/components/ks-org/ks-tree-input.vue +240 -0
- package/kuasheng-ui/components/ks-org/ks-tree-node.vue +94 -0
- package/kuasheng-ui/components/ks-org/ks-tree.vue +229 -0
- package/kuasheng-ui/components/ks-org/utils.js +54 -0
- package/kuasheng-ui/components/ks-popover/index.vue +457 -0
- package/kuasheng-ui/components/ks-popover/mixin.js +28 -0
- package/kuasheng-ui/components/ks-popover/utils.js +60 -0
- package/kuasheng-ui/components/ks-pull-refresh/index.vue +43 -0
- package/kuasheng-ui/components/ks-quarter/index.vue +256 -0
- package/kuasheng-ui/components/ks-table/README.md +103 -0
- package/kuasheng-ui/components/ks-table/cell.vue +31 -0
- package/kuasheng-ui/components/ks-table/index.js +8 -0
- package/kuasheng-ui/components/ks-table/index.less +486 -0
- package/kuasheng-ui/components/ks-table/index.vue +1088 -0
- package/kuasheng-ui/components/ks-table/package.json +12 -0
- package/kuasheng-ui/components/ks-table/release.md +7 -0
- package/kuasheng-ui/components/ks-toast.js +35 -0
- package/kuasheng-ui/components/ks-upload/index.vue +174 -0
- package/kuasheng-ui/components/ks-user-access.vue +229 -0
- package/kuasheng-ui/components/no-data/README.md +45 -0
- package/kuasheng-ui/components/no-data/image.js +1 -0
- package/kuasheng-ui/components/no-data/index.vue +83 -0
- package/kuasheng-ui/components/notice-bar.vue +16 -0
- package/kuasheng-ui/components/steps.js +11 -0
- package/kuasheng-ui/components/tabs.vue +40 -0
- package/kuasheng-ui/index.js +239 -0
- package/kuasheng-ui/patch/datetime-picker/datetimePicker.md +0 -0
- package/kuasheng-ui/patch/datetime-picker/index.js +46 -0
- package/kuasheng-ui/patch/datetime-picker/utils.js +78 -0
- package/kuasheng-ui/patch/field/field.md +1 -0
- package/kuasheng-ui/patch/field/index.js +122 -0
- package/kuasheng-ui/patch/field/utils.js +36 -0
- package/kuasheng-ui/patch/form/form.md +7 -0
- package/kuasheng-ui/patch/form/index.js +106 -0
- package/kuasheng-ui/patch/index.js +12 -0
- package/kuasheng-ui/patch/pagination/index.js +78 -0
- package/kuasheng-ui/style/animation-ui.less +31 -0
- package/kuasheng-ui/style/font/number/font-number1.otf +0 -0
- package/kuasheng-ui/style/font/number/font-number2.ttf +0 -0
- package/kuasheng-ui/style/images/checked.svg +1 -0
- package/kuasheng-ui/style/images/success.svg +1 -0
- package/kuasheng-ui/style/index.less +6 -0
- package/kuasheng-ui/style/kuasheng-ui.less +207 -0
- package/kuasheng-ui/style/reset-vant.less +307 -0
- package/kuasheng-ui/style/vant-var.less +138 -0
- package/kuasheng-ui/utils/apis.js +17 -0
- package/kuasheng-ui/utils/axios-adapter.js +47 -0
- package/kuasheng-ui/utils/bem.js +39 -0
- package/kuasheng-ui/utils/bus.js +97 -0
- package/kuasheng-ui/utils/common.js +88 -0
- package/kuasheng-ui/utils/decrypt/config.js +12 -0
- package/kuasheng-ui/utils/decrypt/decrypt-api.js +139 -0
- package/kuasheng-ui/utils/decrypt/index.js +6 -0
- package/kuasheng-ui/utils/decrypt/mask.js +36 -0
- package/kuasheng-ui/utils/decrypt/virtual.js +44 -0
- package/kuasheng-ui/utils/directive.js +57 -0
- package/kuasheng-ui/utils/directive.md +23 -0
- package/kuasheng-ui/utils/drcheck-plugin.js +219 -0
- package/kuasheng-ui/utils/error-plugin.js +88 -0
- package/kuasheng-ui/utils/filter.js +149 -0
- package/kuasheng-ui/utils/http-interceptors.js +18 -0
- package/kuasheng-ui/utils/http.js +140 -0
- package/kuasheng-ui/utils/index.js +5 -0
- package/kuasheng-ui/utils/init-event.js +20 -0
- package/kuasheng-ui/utils/log.js +309 -0
- package/kuasheng-ui/utils/token.js +9 -0
- package/kuasheng-ui/utils/type.js +45 -0
- package/kuasheng-ui/utils/validate.js +20 -0
- package/kuasheng-ui/utils/watermark.js +67 -0
- package/kuasheng-ui/version.js +1 -0
- package/ky-apm/client.js +37 -0
- package/ky-apm/customHttp.js +38 -0
- package/ky-apm/index.js +68 -0
- package/ky-apm/plugins/performance.js +84 -0
- package/ky-apm/plugins/self-error.js +26 -0
- package/ky-apm/warn-log.js +3 -0
- package/package.json +81 -10
- package/plugin/ks-chii-webpack-html/index.js +53 -0
- package/plugin/ks-chii-webpack-html/package.json +16 -0
- package/postcss.config.js +15 -0
- package/public/capsule-positon.js +50 -0
- package/public/fonts/DingTalkJinBuTi.ttf +0 -0
- package/public/framework/axios@0.19.0.min.js +9 -0
- package/public/framework/fastclick@1.0.6.min.js +1 -0
- package/public/framework/iconfont/iconfont.css +91 -0
- package/public/framework/iconfont/iconfont.js +1 -0
- package/public/framework/iconfont/iconfont.json +142 -0
- package/public/framework/iconfont/iconfont.ttf +0 -0
- package/public/framework/iconfont/iconfont.woff +0 -0
- package/public/framework/iconfont/iconfont.woff2 +0 -0
- package/public/framework/vant@2.5.6.min.js +7 -0
- package/public/framework/vue-router@3.1.3.min.js +6 -0
- package/public/framework/vue@2.6.10.runtime.min.js +6 -0
- package/public/framework/vuex@3.1.1.min.js +6 -0
- package/public/index.html +260 -0
- package/public/ks@3.0.8.umd.min.js +1 -0
- package/public/ksui@4.0.27.umd.min.js +10 -0
- package/public/status-bar-preset.js +39 -0
- package/{index.js → qt-npm/index.js} +3 -3
- package/qt-npm/package.json +13 -0
- package/src/App.vue +204 -0
- package/src/README.md +15 -0
- package/src/common/README.md +94 -0
- package/src/common/http/axios-adapter.js +47 -0
- package/src/common/http/common.js +88 -0
- package/src/common/http/http-interceptors.js +18 -0
- package/src/common/http/http-lock.js +45 -0
- package/src/common/http/index.js +163 -0
- package/src/common/http/token.js +9 -0
- package/src/common/styles/font/AlibabaSans102Ver2-Md.ttf +0 -0
- package/src/common/styles/font.less +12 -0
- package/src/common/styles/variables.less +43 -0
- package/src/common/utils/index.js +1 -0
- package/src/common/utils/platform/README.md +1 -0
- package/src/common/utils/platform/android/.gitkeep +0 -0
- package/src/common/utils/platform/core/index.js +24 -0
- package/src/common/utils/platform/index.js +164 -0
- package/src/common/utils/platform/ios/.gitkeep +0 -0
- package/src/common/utils/platform/subscribe/helper.js +38 -0
- package/src/common/utils/platform/subscribe/index.js +204 -0
- package/src/common/utils/platform/subscribe/table-animation.js +75 -0
- package/src/config/index.js +31 -0
- package/src/config.js +1 -0
- package/src/main.js +73 -0
- package/src/router.js +52 -0
- package/src/view/home/config.js +101 -0
- package/src/view/home/demo1.vue +223 -0
- package/src/view/home/demo2.vue +124 -0
- package/src/view/home/demo3.vue +51 -0
- package/src/view/home/demo4.vue +140 -0
- package/src/view/home/index.vue +97 -0
- package/src/view/home/query-table/README.md +45 -0
- package/src/view/home/query-table/api/index.js +12 -0
- package/src/view/home/query-table/assets/horizontal-back.svg +1 -0
- package/src/view/home/query-table/components/pe-table/cell.js +181 -0
- package/src/view/home/query-table/components/pe-table/collapse.js +334 -0
- package/src/view/home/query-table/components/pe-table/empty.vue +48 -0
- package/src/view/home/query-table/components/pe-table/header.js +328 -0
- package/src/view/home/query-table/components/pe-table/images/abnormal.png +0 -0
- package/src/view/home/query-table/components/pe-table/images/empty.png +0 -0
- package/src/view/home/query-table/components/pe-table/images/fold.svg +1 -0
- package/src/view/home/query-table/components/pe-table/images/sort.svg +1 -0
- package/src/view/home/query-table/components/pe-table/images/sorting.svg +1 -0
- package/src/view/home/query-table/components/pe-table/images/unfold.svg +1 -0
- package/src/view/home/query-table/components/pe-table/index.vue +847 -0
- package/src/view/home/query-table/components/pe-table/load-more.js +46 -0
- package/src/view/home/query-table/components/pe-table/props/index.js +193 -0
- package/src/view/home/query-table/components/pe-table/row.vue +118 -0
- package/src/view/home/query-table/components/pe-table/scrollbar.js +424 -0
- package/src/view/home/query-table/components/pe-table/stretch-damping.js +112 -0
- package/src/view/home/query-table/components/pe-table/style/cell.less +89 -0
- package/src/view/home/query-table/components/pe-table/style/empty.less +48 -0
- package/src/view/home/query-table/components/pe-table/style/header.less +141 -0
- package/src/view/home/query-table/components/pe-table/style/index.less +88 -0
- package/src/view/home/query-table/components/pe-table/style/load-more.less +61 -0
- package/src/view/home/query-table/components/pe-table/style/row.less +6 -0
- package/src/view/home/query-table/components/pe-table/table-loading.vue +120 -0
- package/src/view/home/query-table/components/pe-table/table-total.vue +57 -0
- package/src/view/home/query-table/components/pe-table/utils/animate.js +80 -0
- package/src/view/home/query-table/components/pe-table/utils/columns.js +290 -0
- package/src/view/home/query-table/components/pe-table/utils/data.js +12 -0
- package/src/view/home/query-table/components/pe-table/utils/fixed.js +69 -0
- package/src/view/home/query-table/components/pe-table/utils/formatter.js +327 -0
- package/src/view/home/query-table/components/pe-table/utils/render-cells.js +424 -0
- package/src/view/home/query-table/components/pe-table/utils/slot.js +28 -0
- package/src/view/home/query-table/components/pe-table/utils/tools.js +84 -0
- package/src/view/home/query-table/components/pe-table/utils/touch-scroll.js +417 -0
- package/src/view/home/query-table/components/query-table/index.vue +497 -0
- package/src/view/home/query-table/components/query-table/mixins/column-mixin.js +102 -0
- package/src/view/home/query-table/components/query-table/mixins/column-setting.js +143 -0
- package/src/view/home/query-table/components/query-table/mixins/data-mixin.js +519 -0
- package/src/view/home/query-table/components/query-table/mixins/pagination-mixin.js +26 -0
- package/src/view/home/query-table/components/query-table/mixins/table-fixed.js +130 -0
- package/src/view/home/query-table/components/query-table/mixins/table-horizontal.js +119 -0
- package/src/view/home/query-table/components/table-horizontal.vue +99 -0
- package/src/view/home/query-table/components/table-pagination.vue +32 -0
- package/src/view/home/query-table/components/table-settings/assets/arrpw-up.svg +1 -0
- package/src/view/home/query-table/components/table-settings/assets/disabled-down.svg +1 -0
- package/src/view/home/query-table/components/table-settings/assets/disabled-up.svg +1 -0
- package/src/view/home/query-table/components/table-settings/assets/down.svg +1 -0
- package/src/view/home/query-table/components/table-settings/assets/up.svg +1 -0
- package/src/view/home/query-table/components/table-settings/index.less +294 -0
- package/src/view/home/query-table/components/table-settings/index.vue +260 -0
- package/src/view/home/query-table/components/table-settings/settings.vue +479 -0
- package/src/view/home/query-table/components/table-settings/test.js +626 -0
- package/src/view/home/query-table/components/table-settings//344/270/252/346/200/247/350/256/276/347/275/256.md +0 -0
- package/src/view/home/query-table/components/tooltip.js +124 -0
- package/src/view/home/query-table/hooks/use-cache-promise.js +27 -0
- package/src/view/home/query-table/hooks/use-column-config.js +190 -0
- package/src/view/home/query-table/hooks/use-encryption.js +0 -0
- package/src/view/home/query-table/hooks/use-generic-search.js +95 -0
- package/src/view/home/query-table/index.js +7 -0
- package/src/view/home/query-table/store/column-store.js +0 -0
- package/src/view/home/query-table/styles/table.less +24 -0
- package/src/view/home/query-table/utils/column.js +36 -0
- package/src/view/home/query-table/utils/config.js +12 -0
- package/src/view/home/query-table/utils/encryption.js +32 -0
- package/src/view/home/query-table/utils/http.js +1 -0
- package/src/view/home/query-table/utils/localStorage.js +35 -0
- package/src/view/home//351/246/226/351/241/265.md +0 -0
- package/src/web.js +99 -0
- package/vue.config.js +131 -0
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
|
|
2
|
+
export default {
|
|
3
|
+
data() {
|
|
4
|
+
return {
|
|
5
|
+
// table外部容器是否已经滚到外部容器底部
|
|
6
|
+
isBottom: false,
|
|
7
|
+
// 表格Y轴是否能滚动
|
|
8
|
+
fixedScrollY: false,
|
|
9
|
+
// table内部的滚动top
|
|
10
|
+
tabledScrollTop: null,
|
|
11
|
+
lastY: 0
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
mounted() {
|
|
15
|
+
this.initFixed()
|
|
16
|
+
this.autoResizeHeight()
|
|
17
|
+
},
|
|
18
|
+
beforeDestroy() {
|
|
19
|
+
this._resizeObserver?.disconnect()
|
|
20
|
+
this._resizeObserver = null
|
|
21
|
+
},
|
|
22
|
+
methods: {
|
|
23
|
+
initFixed() {
|
|
24
|
+
// 不需要吸顶, 打开滚动
|
|
25
|
+
if (!this.$slots.topUnfixed) {
|
|
26
|
+
this.fixedScrollY = true
|
|
27
|
+
return
|
|
28
|
+
}
|
|
29
|
+
console.log(this.$slots, 'this.$slots')
|
|
30
|
+
this.tableParentContainer = this.$refs.tableBoxRef
|
|
31
|
+
if (this.tableParentContainer) {
|
|
32
|
+
this.tabledFixedTop()
|
|
33
|
+
this.touchEvent()
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
touchEvent() {
|
|
37
|
+
document.addEventListener('touchmove', event => {
|
|
38
|
+
// 获取当前触摸点的 Y 坐标
|
|
39
|
+
let currentY = event.touches[0].clientY;
|
|
40
|
+
if (this.tabledScrollTop === 0 && this.isBottom) {
|
|
41
|
+
// 判断滑动方向
|
|
42
|
+
if (currentY > this.lastY) {
|
|
43
|
+
// 下滑
|
|
44
|
+
this.fixedScrollY = false
|
|
45
|
+
if (this.tabledScrollTop === 0) {
|
|
46
|
+
this.tableParentContainer.style.overflow = 'auto'
|
|
47
|
+
}
|
|
48
|
+
} else if (currentY < this.lastY) {
|
|
49
|
+
// 上滑
|
|
50
|
+
this.fixedScrollY = true
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
// 更新上一次的 Y 坐标
|
|
54
|
+
this.lastY = currentY
|
|
55
|
+
})
|
|
56
|
+
document.addEventListener('touchend', () => {
|
|
57
|
+
if (this.tabledScrollTop === 0) {
|
|
58
|
+
this.tableParentContainer.style.overflow = 'auto'
|
|
59
|
+
}
|
|
60
|
+
})
|
|
61
|
+
},
|
|
62
|
+
tabledFixedTop() {
|
|
63
|
+
let container = this.$refs.tableBoxRef
|
|
64
|
+
container.addEventListener('scroll', () => {
|
|
65
|
+
// 滚动条已到底部
|
|
66
|
+
this.isBottom = Math.ceil(container.scrollTop + container.clientHeight) >= Math.ceil(container.scrollHeight)
|
|
67
|
+
// 开启表格滚动
|
|
68
|
+
this.fixedScrollY = this.isBottom
|
|
69
|
+
})
|
|
70
|
+
},
|
|
71
|
+
fixedTableScroll(e) {
|
|
72
|
+
if (!this.$slots.topUnfixed) return
|
|
73
|
+
this.tableParentContainer.style.overflow = (e.scrollTop !== 0 && this.isBottom) ? 'hidden' : 'auto'
|
|
74
|
+
this.tabledScrollTop = e.scrollTop
|
|
75
|
+
},
|
|
76
|
+
autoScorollX() {
|
|
77
|
+
this.$nextTick(() => {
|
|
78
|
+
this.$refs.peTable.setScrollOffsetX(this.$refs.peTable.offsetX || 0)
|
|
79
|
+
this.$refs.peTable.renderViewportCells()
|
|
80
|
+
})
|
|
81
|
+
},
|
|
82
|
+
autoResizeHeight() {
|
|
83
|
+
this.$nextTick(() => {
|
|
84
|
+
const targetElement = this.$el.querySelector('.table').parentNode
|
|
85
|
+
let previousHeight = null
|
|
86
|
+
let previousWidth = null
|
|
87
|
+
let resizeTimeout // 用于防抖的定时器
|
|
88
|
+
|
|
89
|
+
const resizeObserver = new ResizeObserver(entries => {
|
|
90
|
+
if (window.PE_tableHorizontal) return
|
|
91
|
+
// 如果定时器存在,清除它
|
|
92
|
+
if (resizeTimeout) {
|
|
93
|
+
clearTimeout(resizeTimeout)
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// 使用防抖技术,延迟执行回调
|
|
97
|
+
// resizeTimeout = setTimeout(() => {
|
|
98
|
+
for (let entry of entries) {
|
|
99
|
+
let topFixedHeight = this.$el.querySelector('.top-fixed') ? this.$el.querySelector('.top-fixed').clientHeight : 0
|
|
100
|
+
let pageHeight = this.$el.querySelector('.pager') ? this.$el.querySelector('.pager').clientHeight : 0
|
|
101
|
+
const newHeight = entry.contentRect.height - topFixedHeight - pageHeight
|
|
102
|
+
const newWidth = entry.contentRect.width
|
|
103
|
+
// 仅在高度变化时执行某些操作
|
|
104
|
+
if (newHeight !== previousHeight) {
|
|
105
|
+
// console.log('新高度:', newHeight)
|
|
106
|
+
previousHeight = newHeight // 更新之前的高度
|
|
107
|
+
this.height = newHeight
|
|
108
|
+
}
|
|
109
|
+
if (newWidth !== previousWidth) {
|
|
110
|
+
// console.log('新宽度:', newWidth)
|
|
111
|
+
previousWidth = newWidth
|
|
112
|
+
this.tableWidth = newWidth
|
|
113
|
+
this.autoScorollX()
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
// }, 0) // 100ms 延迟
|
|
117
|
+
})
|
|
118
|
+
|
|
119
|
+
this._resizeObserver = resizeObserver
|
|
120
|
+
// 开始观察目标元素
|
|
121
|
+
resizeObserver.observe(targetElement)
|
|
122
|
+
})
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
// beforeDestroy() {
|
|
126
|
+
// this._resizeObserver = null
|
|
127
|
+
// this.$bus.$off('onFoldStateChanged', this.onFoldStateChanged)
|
|
128
|
+
// this.$bus.$off('screenChange', this.screenChange)
|
|
129
|
+
// }
|
|
130
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import TableHorizontal from '../../table-horizontal.vue'
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
data() {
|
|
7
|
+
return {
|
|
8
|
+
isShowHorizontal: false,
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
methods: {
|
|
12
|
+
// 横屏
|
|
13
|
+
createHorizontal() {
|
|
14
|
+
const slot = this.$slots.default ? this.$slots.default[0] : this.$scopedSlots
|
|
15
|
+
const horizontalAttrs = {
|
|
16
|
+
props: {
|
|
17
|
+
show: this.isShowHorizontal,
|
|
18
|
+
statusHeight: this.statusHeight,
|
|
19
|
+
tableTag: this.tableTag,
|
|
20
|
+
},
|
|
21
|
+
on: {
|
|
22
|
+
close: this.closeHorizontal,
|
|
23
|
+
},
|
|
24
|
+
ref: 'tableHorizontal',
|
|
25
|
+
scopedSlots: {
|
|
26
|
+
top: slot['horizontal-top'],
|
|
27
|
+
content: slot['horizontal-content'],
|
|
28
|
+
},
|
|
29
|
+
}
|
|
30
|
+
return <TableHorizontal {...horizontalAttrs}></TableHorizontal>
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
toggleHorizontalTable (flag) {
|
|
34
|
+
if (flag) {
|
|
35
|
+
this.openHorizontal({ disableAppend: true })
|
|
36
|
+
return
|
|
37
|
+
}
|
|
38
|
+
this.closeHorizontal({ disableAppend: true })
|
|
39
|
+
},
|
|
40
|
+
// 启动横屏
|
|
41
|
+
async openHorizontal(options = {}) {
|
|
42
|
+
const { isHideBar = true, disableAppend = false } = options;
|
|
43
|
+
this.spTableWidth = this.$el.parentNode.offsetWidth
|
|
44
|
+
// 如果存在传入的height优先使用,否则取负极的高度
|
|
45
|
+
this.spTableHeight = this.height || this.$el.parentNode.offsetHeight
|
|
46
|
+
// this.isShowHorizontal = true
|
|
47
|
+
if (!disableAppend) {
|
|
48
|
+
this.isShowHorizontal = true
|
|
49
|
+
}
|
|
50
|
+
await this.$nextTick()
|
|
51
|
+
let hpWidth = Math.max(window.innerHeight, window.innerWidth) - this.statusHeight
|
|
52
|
+
// - 安卓状态栏高度 - 弹窗头部高度48 - 安全距离10
|
|
53
|
+
let hpHeight = window.innerWidth - this.statusHeight - 48 - 10
|
|
54
|
+
// 针对表格上方需要配置显示内容,需要减去这个区域的高度
|
|
55
|
+
if (this.$slots && this.$slots['horizontal-content']) {
|
|
56
|
+
hpHeight = hpHeight - 32
|
|
57
|
+
}
|
|
58
|
+
setTimeout(async () => {
|
|
59
|
+
if (!disableAppend) {
|
|
60
|
+
this.$refs.tableHorizontal.$refs.horizontalTable.appendChild(this.$refs.peTable.$el)
|
|
61
|
+
}
|
|
62
|
+
window.PE_tableHorizontal = true
|
|
63
|
+
// this.$refs.tableHorizontal.$refs.horizontalTable.appendChild(this.$refs.cellPopup.$el)
|
|
64
|
+
window.ks.callFunc({ method: 'setInterfaceOrientation', params: { orientation: 1 } }).catch(() => {
|
|
65
|
+
/**ignore*/
|
|
66
|
+
})
|
|
67
|
+
// 宽度横屏完成后设置,防止横屏前表格高度变低
|
|
68
|
+
this.tableWidth = hpWidth
|
|
69
|
+
this.tableHeight = hpHeight
|
|
70
|
+
window.ks.callFunc({ method: 'setCloseButton', params: { isShow: false } })
|
|
71
|
+
this.isHideBar = isHideBar
|
|
72
|
+
isHideBar && window.ks.callFunc({ method: 'setStockTabVisible', params: { isShow: false } })
|
|
73
|
+
this.isCurTableEmit = true
|
|
74
|
+
// this.containerPopover = this.$refs.tableHorizontal.$el
|
|
75
|
+
this.$nextTick(() => {
|
|
76
|
+
requestAnimationFrame(() => this.$refs.peTable.scrollToLeft(this.$refs.peTable.offsetX))
|
|
77
|
+
})
|
|
78
|
+
this.$emit('hrizontalChange', true)
|
|
79
|
+
}, 0)
|
|
80
|
+
},
|
|
81
|
+
// 关闭横屏
|
|
82
|
+
async closeHorizontal() {
|
|
83
|
+
this.tableWidth = this.spTableWidth
|
|
84
|
+
this.tableHeight = this.spTableHeight
|
|
85
|
+
// this.setHtmlFontSize()
|
|
86
|
+
// this.containerPopover = this.$refs.peTableWrappper
|
|
87
|
+
this.$refs.mesosphereWrap.appendChild(this.$refs.peTable.$el)
|
|
88
|
+
// this.$refs.mesosphereWrap.appendChild(this.$refs.cellPopup.$el)
|
|
89
|
+
window.ks.callFunc({ method: 'setInterfaceOrientation', params: { orientation: 0 } }).catch(() => {
|
|
90
|
+
/**ignore*/
|
|
91
|
+
})
|
|
92
|
+
// 横屏切换竖屏
|
|
93
|
+
this.$nextTick(() => {
|
|
94
|
+
// 如果是滑动到底部,切回竖屏,需要重置滚动
|
|
95
|
+
if (this.$refs.peTable && this.$refs.peTable.scrollToTop) {
|
|
96
|
+
const scrollableHeight = (this.$refs.peTable.state && this.$refs.peTable.state.scrollableHeight) || 0
|
|
97
|
+
const peTableOffsetY = this.$refs.peTable.offsetY || 0
|
|
98
|
+
const offset = this.loadOptions.offset || 0
|
|
99
|
+
if (scrollableHeight - peTableOffsetY <= offset) {
|
|
100
|
+
// 如果切换横屏前,表格不是滑动状态的,自动滑动到顶部
|
|
101
|
+
this.$refs.peTable.scrollToTop(peTableOffsetY)
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
this.$refs.peTable.resetStretch()
|
|
105
|
+
})
|
|
106
|
+
|
|
107
|
+
await this.$nextTick()
|
|
108
|
+
this.isShowHorizontal = false
|
|
109
|
+
|
|
110
|
+
if (!this.disabledAutoHideClose) {
|
|
111
|
+
window.ks.callFunc({ method: 'setCloseButton', params: { isShow: true } })
|
|
112
|
+
}
|
|
113
|
+
this.isHideBar && window.ks.callFunc({ method: 'setStockTabVisible', params: { isShow: true } })
|
|
114
|
+
window.PE_tableHorizontal = false
|
|
115
|
+
this.isCurTableEmit = true
|
|
116
|
+
this.$emit('hrizontalChange', false)
|
|
117
|
+
},
|
|
118
|
+
}
|
|
119
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
export default {
|
|
3
|
+
props: {
|
|
4
|
+
show: {
|
|
5
|
+
type: Boolean,
|
|
6
|
+
default: false,
|
|
7
|
+
},
|
|
8
|
+
statusHeight: {
|
|
9
|
+
type: [Number, String],
|
|
10
|
+
default: 0,
|
|
11
|
+
},
|
|
12
|
+
tableTag: {
|
|
13
|
+
type: String,
|
|
14
|
+
default: '',
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
data() {
|
|
18
|
+
return {}
|
|
19
|
+
},
|
|
20
|
+
methods: {
|
|
21
|
+
closeHorizontal() {
|
|
22
|
+
this.$emit('close')
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
computed: {},
|
|
26
|
+
render() {
|
|
27
|
+
const slot = this.$slots.default ? this.$slots.default[0] : this.$scopedSlots
|
|
28
|
+
const style = {
|
|
29
|
+
paddingLeft: this.statusHeight + 'PX',
|
|
30
|
+
width: '100%',
|
|
31
|
+
}
|
|
32
|
+
return (
|
|
33
|
+
<van-popup
|
|
34
|
+
value={this.show}
|
|
35
|
+
get-container="body"
|
|
36
|
+
class="horizontal-popup pe-common-popup-container"
|
|
37
|
+
tableTag={this.tableTag}
|
|
38
|
+
style={style}
|
|
39
|
+
overlay={false}
|
|
40
|
+
closeable={false}
|
|
41
|
+
close-on-click-overlay={false}
|
|
42
|
+
close-on-popstate={true}
|
|
43
|
+
>
|
|
44
|
+
<div class="popup-title">
|
|
45
|
+
<div onClick={() => this.closeHorizontal()} class="title-back">
|
|
46
|
+
<div class="left-img">
|
|
47
|
+
<img src={require('../assets/horizontal-back.svg')} width="24" height="24" />
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
<div class="title-right">{slot.top ? slot.top() : null}</div>
|
|
51
|
+
</div>
|
|
52
|
+
<div v-if="slot.content">{slot.content ? slot.content() : null}</div>
|
|
53
|
+
<div ref="horizontalTable" class="popup-content"></div>
|
|
54
|
+
</van-popup>
|
|
55
|
+
)
|
|
56
|
+
},
|
|
57
|
+
}
|
|
58
|
+
</script>
|
|
59
|
+
<style lang="less" scoped>
|
|
60
|
+
.horizontal-popup {
|
|
61
|
+
user-select: none;
|
|
62
|
+
-webkit-user-select: none; /* Safari */
|
|
63
|
+
-moz-user-select: none; /* Firefox */
|
|
64
|
+
-ms-user-select: none; /* IE 10 and IE 11 */
|
|
65
|
+
display: flex;
|
|
66
|
+
flex-flow: column nowrap;
|
|
67
|
+
justify-content: space-between;
|
|
68
|
+
height: 100%;
|
|
69
|
+
width: 100%;
|
|
70
|
+
background-color: #fff;
|
|
71
|
+
.popup-title {
|
|
72
|
+
display: flex;
|
|
73
|
+
align-items: center;
|
|
74
|
+
height: 48px;
|
|
75
|
+
background-color: #fff;
|
|
76
|
+
.title-back {
|
|
77
|
+
display: flex;
|
|
78
|
+
height: 100%;
|
|
79
|
+
align-items: center;
|
|
80
|
+
padding-right: 12px;
|
|
81
|
+
.left-img {
|
|
82
|
+
font-size: 0;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
.title-right {
|
|
86
|
+
flex: 1;
|
|
87
|
+
font-size: 18px;
|
|
88
|
+
.right-text {
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
.popup-content {
|
|
93
|
+
flex: 1;
|
|
94
|
+
overflow-y: auto;
|
|
95
|
+
padding-bottom: constant(safe-area-inset-bottom);
|
|
96
|
+
padding-bottom: env(safe-area-inset-bottom);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
</style>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="pager">
|
|
3
|
+
<ks-pagination v-model="currentPage"
|
|
4
|
+
:page-count="totalPages"
|
|
5
|
+
force-ellipses
|
|
6
|
+
@change="pageChange" />
|
|
7
|
+
</div>
|
|
8
|
+
</template>
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
export default {
|
|
12
|
+
props: {
|
|
13
|
+
totalPages: {
|
|
14
|
+
type: Number,
|
|
15
|
+
required: true,
|
|
16
|
+
},
|
|
17
|
+
currentPage: {
|
|
18
|
+
type: Number,
|
|
19
|
+
required: true,
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
methods: {
|
|
23
|
+
pageChange(val) {
|
|
24
|
+
console.log('pageChange', val)
|
|
25
|
+
this.$emit('pageChanged', val)
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
}
|
|
29
|
+
</script>
|
|
30
|
+
|
|
31
|
+
<style scoped>
|
|
32
|
+
</style>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="8" height="8" viewBox="0 0 8 8"><g><g transform="matrix(0,-1,-1,0,12.940673828125,12.940673828125)"><path d="M7.341234828125,11.44463L10.679883828125,9.08793C10.868023828125,8.95513,10.868023828125,8.67609,10.679883828125,8.543289999999999L7.341234828125,6.1865939C7.120430828125,6.0307319,6.815673828125,6.1886434,6.815673828125,6.458917L6.815673828125,11.1723C6.815673828125,11.44258,7.120430828125,11.60049,7.341234828125,11.44463Z" fill="#6B7175" fill-opacity="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="16" height="16" viewBox="0 0 16 16"><g><g transform="matrix(0.7071067690849304,0.7071067690849304,0.7071067690849304,-0.7071067690849304,-4.142928544541064,10.001914630709507)"><path d="M5.1700439453125,7.40048828125L9.1700439453125,7.40048828125Q9.229133945312501,7.40048828125,9.287093945312499,7.41201728125Q9.3450539453125,7.42354628125,9.399653945312501,7.44616028125Q9.4542539453125,7.46877528125,9.5033839453125,7.50160628125Q9.552523945312501,7.53443828125,9.5943039453125,7.57622428125Q9.6360939453125,7.61801028125,9.6689239453125,7.66714628125Q9.7017539453125,7.71628128125,9.7243739453125,7.77087828125Q9.7469839453125,7.82547428125,9.758513945312501,7.88343428125Q9.7700439453125,7.9413934812499996,9.7700439453125,8.00048828125L9.7700439453125,12.00048828125Q9.7700439453125,12.059578281250001,9.758513945312501,12.117538281249999Q9.7469839453125,12.17549828125,9.7243739453125,12.230098281250001Q9.7017539453125,12.28469828125,9.6689239453125,12.33382828125Q9.6360939453125,12.382968281250001,9.5943039453125,12.42474828125Q9.552523945312501,12.46653828125,9.5033839453125,12.49936828125Q9.4542539453125,12.53219828125,9.399653945312501,12.55481828125Q9.3450539453125,12.57742828125,9.287093945312499,12.588958281250001Q9.229133945312501,12.60048828125,9.1700439453125,12.60048828125Q9.1109439453125,12.60048828125,9.052993945312501,12.588958281250001Q8.9950339453125,12.57742828125,8.940433945312499,12.55481828125Q8.8858339453125,12.53219828125,8.8367039453125,12.49936828125Q8.787563945312499,12.46653828125,8.7457839453125,12.42474828125Q8.7039939453125,12.382968281250001,8.6711639453125,12.33382828125Q8.6383339453125,12.28469828125,8.6157139453125,12.230098281250001Q8.5931039453125,12.17549828125,8.581573945312499,12.117538281249999Q8.5700439453125,12.059578281250001,8.5700439453125,12.00048828125L8.5700439453125,8.60048828125L5.1700439453125,8.60048828125Q5.1109491453124996,8.60048828125,5.0529899453125,8.58895928125Q4.9950299453125,8.57743028125,4.9404339453125,8.55481628125Q4.8858369453125,8.53220128125,4.8367019453125,8.49937028125Q4.7875659453125,8.46653828125,4.7457799453125,8.42475228125Q4.7039939453125,8.38296628125,4.6711619453125,8.33383028125Q4.6383309453125,8.28469528125,4.6157159453125,8.23009828125Q4.5931019453125,8.175502281250001,4.5815729453125,8.11754228125Q4.5700439453125,8.05958308125,4.5700439453125,8.00048828125Q4.5700439453125,7.9413934812499996,4.5815729453125,7.88343428125Q4.5931019453125,7.82547428125,4.6157159453125,7.77087828125Q4.6383309453125,7.71628128125,4.6711619453125,7.66714628125Q4.7039939453125,7.61801028125,4.7457799453125,7.57622428125Q4.7875659453125,7.53443828125,4.8367019453125,7.50160628125Q4.8858369453125,7.46877528125,4.9404339453125,7.44616028125Q4.9950299453125,7.42354628125,5.0529899453125,7.41201728125Q5.1109491453124996,7.40048828125,5.1700439453125,7.40048828125Z" fill-rule="evenodd" fill="#C2C0C0" fill-opacity="1"/></g><g transform="matrix(1,0,0,-1,0,26.7978515625)"><path d="M4,12.79892578125L12,12.79892578125Q12.05909,12.79892578125,12.11705,12.81045478125Q12.17501,12.82198378125,12.22961,12.84459778125Q12.28421,12.86721278125,12.33334,12.90004378125Q12.38248,12.93287578125,12.42426,12.97466178125Q12.46605,13.01644778125,12.49888,13.06558378125Q12.53171,13.11471878125,12.55433,13.16931578125Q12.57694,13.223911781249999,12.58847,13.28187178125Q12.6,13.33983098125,12.6,13.39892578125Q12.6,13.45802058125,12.58847,13.51597978125Q12.57694,13.573939781250001,12.55433,13.62853578125Q12.53171,13.68313278125,12.49888,13.73226778125Q12.46605,13.78140378125,12.42426,13.82318978125Q12.38248,13.86497578125,12.33334,13.89780778125Q12.28421,13.93063878125,12.22961,13.95325378125Q12.17501,13.97586778125,12.11705,13.98739678125Q12.05909,13.99892578125,12,13.99892578125L4,13.99892578125Q3.9409052,13.99892578125,3.882946,13.98739678125Q3.824986,13.97586778125,3.77039,13.95325378125Q3.715793,13.93063878125,3.666658,13.89780778125Q3.617522,13.86497578125,3.575736,13.82318978125Q3.53395,13.78140378125,3.501118,13.73226778125Q3.468287,13.68313278125,3.445672,13.62853578125Q3.423058,13.573939781250001,3.411529,13.51597978125Q3.4,13.45802058125,3.4,13.39892578125Q3.4,13.33983098125,3.411529,13.28187178125Q3.423058,13.223911781249999,3.445672,13.16931578125Q3.468287,13.11471878125,3.501118,13.06558378125Q3.53395,13.01644778125,3.575736,12.97466178125Q3.617522,12.93287578125,3.666658,12.90004378125Q3.715793,12.86721278125,3.77039,12.84459778125Q3.824986,12.82198378125,3.882946,12.81045478125Q3.9409052,12.79892578125,4,12.79892578125Z" fill-rule="evenodd" fill="#C2C0C0" fill-opacity="1"/></g><g transform="matrix(0,1,1,0,4.9993896484375,-4.9993896484375)"><path d="M7.9993896484375,2.4L14.9993896484375,2.4Q15.058479648437501,2.4,15.116439648437499,2.411529Q15.1743996484375,2.423058,15.228999648437501,2.445672Q15.2835996484375,2.468287,15.3327296484375,2.501118Q15.381869648437501,2.53395,15.4236496484375,2.575736Q15.4654396484375,2.617522,15.4982696484375,2.666658Q15.5310996484375,2.715793,15.5537196484375,2.77039Q15.5763296484375,2.824986,15.587859648437501,2.882946Q15.5993896484375,2.9409052,15.5993896484375,3Q15.5993896484375,3.0590948,15.587859648437501,3.117054Q15.5763296484375,3.175014,15.5537196484375,3.22961Q15.5310996484375,3.284207,15.4982696484375,3.333342Q15.4654396484375,3.382478,15.4236496484375,3.424264Q15.381869648437501,3.46605,15.3327296484375,3.498882Q15.2835996484375,3.531713,15.228999648437501,3.554328Q15.1743996484375,3.576942,15.116439648437499,3.588471Q15.058479648437501,3.6,14.9993896484375,3.6L7.9993896484375,3.6Q7.9402948484374996,3.6,7.8823356484375,3.588471Q7.8243756484375,3.576942,7.7697796484375,3.554328Q7.7151826484375,3.531713,7.6660476484375,3.498882Q7.6169116484375,3.46605,7.5751256484375,3.424264Q7.5333396484375,3.382478,7.5005076484375,3.333342Q7.4676766484375,3.284207,7.4450616484375,3.22961Q7.4224476484375,3.175014,7.4109186484375,3.117054Q7.3993896484375,3.0590948,7.3993896484375,3Q7.3993896484375,2.9409052,7.4109186484375,2.882946Q7.4224476484375,2.824986,7.4450616484375,2.77039Q7.4676766484375,2.715793,7.5005076484375,2.666658Q7.5333396484375,2.617522,7.5751256484375,2.575736Q7.6169116484375,2.53395,7.6660476484375,2.501118Q7.7151826484375,2.468287,7.7697796484375,2.445672Q7.8243756484375,2.423058,7.8823356484375,2.411529Q7.9402948484374996,2.4,7.9993896484375,2.4Z" fill-rule="evenodd" fill="#C2C0C0" fill-opacity="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="16" height="16" viewBox="0 0 16 16"><g><g transform="matrix(0.7071067690849304,-0.7071067690849304,0.7071067690849304,0.7071067690849304,-4.424321130871249,6.115618564210308)"><path d="M5.1700439453125,7.7984375L9.1700439453125,7.7984375Q9.229133945312501,7.7984375,9.287093945312499,7.8099665Q9.3450539453125,7.8214955,9.399653945312501,7.8441095Q9.4542539453125,7.8667245,9.5033839453125,7.8995555Q9.552523945312501,7.9323875,9.5943039453125,7.9741735Q9.6360939453125,8.0159595,9.6689239453125,8.0650955Q9.7017539453125,8.1142305,9.7243739453125,8.1688275Q9.7469839453125,8.223423499999999,9.758513945312501,8.2813835Q9.7700439453125,8.3393427,9.7700439453125,8.3984375L9.7700439453125,12.3984375Q9.7700439453125,12.457527500000001,9.758513945312501,12.515487499999999Q9.7469839453125,12.5734475,9.7243739453125,12.628047500000001Q9.7017539453125,12.6826475,9.6689239453125,12.7317775Q9.6360939453125,12.780917500000001,9.5943039453125,12.8226975Q9.552523945312501,12.8644875,9.5033839453125,12.8973175Q9.4542539453125,12.9301475,9.399653945312501,12.9527675Q9.3450539453125,12.9753775,9.287093945312499,12.986907500000001Q9.229133945312501,12.9984375,9.1700439453125,12.9984375Q9.1109439453125,12.9984375,9.052993945312501,12.986907500000001Q8.9950339453125,12.9753775,8.940433945312499,12.9527675Q8.8858339453125,12.9301475,8.8367039453125,12.8973175Q8.787563945312499,12.8644875,8.7457839453125,12.8226975Q8.7039939453125,12.780917500000001,8.6711639453125,12.7317775Q8.6383339453125,12.6826475,8.6157139453125,12.628047500000001Q8.5931039453125,12.5734475,8.581573945312499,12.515487499999999Q8.5700439453125,12.457527500000001,8.5700439453125,12.3984375L8.5700439453125,8.9984375L5.1700439453125,8.9984375Q5.1109491453124996,8.9984375,5.0529899453125,8.9869085Q4.9950299453125,8.9753795,4.9404339453125,8.9527655Q4.8858369453125,8.9301505,4.8367019453125,8.8973195Q4.7875659453125,8.8644875,4.7457799453125,8.8227015Q4.7039939453125,8.7809155,4.6711619453125,8.7317795Q4.6383309453125,8.6826445,4.6157159453125,8.6280475Q4.5931019453125,8.573451500000001,4.5815729453125,8.5154915Q4.5700439453125,8.4575323,4.5700439453125,8.3984375Q4.5700439453125,8.3393427,4.5815729453125,8.2813835Q4.5931019453125,8.223423499999999,4.6157159453125,8.1688275Q4.6383309453125,8.1142305,4.6711619453125,8.0650955Q4.7039939453125,8.0159595,4.7457799453125,7.9741735Q4.7875659453125,7.9323875,4.8367019453125,7.8995555Q4.8858369453125,7.8667245,4.9404339453125,7.8441095Q4.9950299453125,7.8214955,5.0529899453125,7.8099665Q5.1109491453124996,7.7984375,5.1700439453125,7.7984375Z" fill-rule="evenodd" fill="#C2C0C0" fill-opacity="1"/></g><g><path d="M4,2.4L12,2.4Q12.05909,2.4,12.11705,2.411529Q12.17501,2.423058,12.22961,2.445672Q12.28421,2.468287,12.33334,2.501118Q12.38248,2.53395,12.42426,2.575736Q12.46605,2.617522,12.49888,2.666658Q12.53171,2.715793,12.55433,2.77039Q12.57694,2.824986,12.58847,2.882946Q12.6,2.9409052,12.6,3Q12.6,3.0590948,12.58847,3.117054Q12.57694,3.175014,12.55433,3.22961Q12.53171,3.284207,12.49888,3.333342Q12.46605,3.382478,12.42426,3.424264Q12.38248,3.46605,12.33334,3.498882Q12.28421,3.531713,12.22961,3.554328Q12.17501,3.576942,12.11705,3.588471Q12.05909,3.6,12,3.6L4,3.6Q3.9409052,3.6,3.882946,3.588471Q3.824986,3.576942,3.77039,3.554328Q3.715793,3.531713,3.666658,3.498882Q3.617522,3.46605,3.575736,3.424264Q3.53395,3.382478,3.501118,3.333342Q3.468287,3.284207,3.445672,3.22961Q3.423058,3.175014,3.411529,3.117054Q3.4,3.0590948,3.4,3Q3.4,2.9409052,3.411529,2.882946Q3.423058,2.824986,3.445672,2.77039Q3.468287,2.715793,3.501118,2.666658Q3.53395,2.617522,3.575736,2.575736Q3.617522,2.53395,3.666658,2.501118Q3.715793,2.468287,3.77039,2.445672Q3.824986,2.423058,3.882946,2.411529Q3.9409052,2.4,4,2.4Z" fill-rule="evenodd" fill="#C2C0C0" fill-opacity="1"/></g><g transform="matrix(0,-1,1,0,-5.3995361328125,21.3983154296875)"><path d="M7.9993896484375,12.79892578125L14.9993896484375,12.79892578125Q15.058479648437501,12.79892578125,15.116439648437499,12.81045478125Q15.1743996484375,12.82198378125,15.228999648437501,12.84459778125Q15.2835996484375,12.86721278125,15.3327296484375,12.90004378125Q15.381869648437501,12.93287578125,15.4236496484375,12.97466178125Q15.4654396484375,13.01644778125,15.4982696484375,13.06558378125Q15.5310996484375,13.11471878125,15.5537196484375,13.16931578125Q15.5763296484375,13.223911781249999,15.587859648437501,13.28187178125Q15.5993896484375,13.33983098125,15.5993896484375,13.39892578125Q15.5993896484375,13.45802058125,15.587859648437501,13.51597978125Q15.5763296484375,13.573939781250001,15.5537196484375,13.62853578125Q15.5310996484375,13.68313278125,15.4982696484375,13.73226778125Q15.4654396484375,13.78140378125,15.4236496484375,13.82318978125Q15.381869648437501,13.86497578125,15.3327296484375,13.89780778125Q15.2835996484375,13.93063878125,15.228999648437501,13.95325378125Q15.1743996484375,13.97586778125,15.116439648437499,13.98739678125Q15.058479648437501,13.99892578125,14.9993896484375,13.99892578125L7.9993896484375,13.99892578125Q7.9402948484374996,13.99892578125,7.8823356484375,13.98739678125Q7.8243756484375,13.97586778125,7.7697796484375,13.95325378125Q7.7151826484375,13.93063878125,7.6660476484375,13.89780778125Q7.6169116484375,13.86497578125,7.5751256484375,13.82318978125Q7.5333396484375,13.78140378125,7.5005076484375,13.73226778125Q7.4676766484375,13.68313278125,7.4450616484375,13.62853578125Q7.4224476484375,13.573939781250001,7.4109186484375,13.51597978125Q7.3993896484375,13.45802058125,7.3993896484375,13.39892578125Q7.3993896484375,13.33983098125,7.4109186484375,13.28187178125Q7.4224476484375,13.223911781249999,7.4450616484375,13.16931578125Q7.4676766484375,13.11471878125,7.5005076484375,13.06558378125Q7.5333396484375,13.01644778125,7.5751256484375,12.97466178125Q7.6169116484375,12.93287578125,7.6660476484375,12.90004378125Q7.7151826484375,12.86721278125,7.7697796484375,12.84459778125Q7.8243756484375,12.82198378125,7.8823356484375,12.81045478125Q7.9402948484374996,12.79892578125,7.9993896484375,12.79892578125Z" fill-rule="evenodd" fill="#C2C0C0" fill-opacity="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="16" height="16" viewBox="0 0 16 16"><g><g transform="matrix(0.7071067690849304,0.7071067690849304,0.7071067690849304,-0.7071067690849304,-4.142928544541064,10.001914630709507)"><path d="M5.1700439453125,7.40048828125L9.1700439453125,7.40048828125Q9.229133945312501,7.40048828125,9.287093945312499,7.41201728125Q9.3450539453125,7.42354628125,9.399653945312501,7.44616028125Q9.4542539453125,7.46877528125,9.5033839453125,7.50160628125Q9.552523945312501,7.53443828125,9.5943039453125,7.57622428125Q9.6360939453125,7.61801028125,9.6689239453125,7.66714628125Q9.7017539453125,7.71628128125,9.7243739453125,7.77087828125Q9.7469839453125,7.82547428125,9.758513945312501,7.88343428125Q9.7700439453125,7.9413934812499996,9.7700439453125,8.00048828125L9.7700439453125,12.00048828125Q9.7700439453125,12.059578281250001,9.758513945312501,12.117538281249999Q9.7469839453125,12.17549828125,9.7243739453125,12.230098281250001Q9.7017539453125,12.28469828125,9.6689239453125,12.33382828125Q9.6360939453125,12.382968281250001,9.5943039453125,12.42474828125Q9.552523945312501,12.46653828125,9.5033839453125,12.49936828125Q9.4542539453125,12.53219828125,9.399653945312501,12.55481828125Q9.3450539453125,12.57742828125,9.287093945312499,12.588958281250001Q9.229133945312501,12.60048828125,9.1700439453125,12.60048828125Q9.1109439453125,12.60048828125,9.052993945312501,12.588958281250001Q8.9950339453125,12.57742828125,8.940433945312499,12.55481828125Q8.8858339453125,12.53219828125,8.8367039453125,12.49936828125Q8.787563945312499,12.46653828125,8.7457839453125,12.42474828125Q8.7039939453125,12.382968281250001,8.6711639453125,12.33382828125Q8.6383339453125,12.28469828125,8.6157139453125,12.230098281250001Q8.5931039453125,12.17549828125,8.581573945312499,12.117538281249999Q8.5700439453125,12.059578281250001,8.5700439453125,12.00048828125L8.5700439453125,8.60048828125L5.1700439453125,8.60048828125Q5.1109491453124996,8.60048828125,5.0529899453125,8.58895928125Q4.9950299453125,8.57743028125,4.9404339453125,8.55481628125Q4.8858369453125,8.53220128125,4.8367019453125,8.49937028125Q4.7875659453125,8.46653828125,4.7457799453125,8.42475228125Q4.7039939453125,8.38296628125,4.6711619453125,8.33383028125Q4.6383309453125,8.28469528125,4.6157159453125,8.23009828125Q4.5931019453125,8.175502281250001,4.5815729453125,8.11754228125Q4.5700439453125,8.05958308125,4.5700439453125,8.00048828125Q4.5700439453125,7.9413934812499996,4.5815729453125,7.88343428125Q4.5931019453125,7.82547428125,4.6157159453125,7.77087828125Q4.6383309453125,7.71628128125,4.6711619453125,7.66714628125Q4.7039939453125,7.61801028125,4.7457799453125,7.57622428125Q4.7875659453125,7.53443828125,4.8367019453125,7.50160628125Q4.8858369453125,7.46877528125,4.9404339453125,7.44616028125Q4.9950299453125,7.42354628125,5.0529899453125,7.41201728125Q5.1109491453124996,7.40048828125,5.1700439453125,7.40048828125Z" fill-rule="evenodd" fill="#1C2023" fill-opacity="1"/></g><g transform="matrix(1,0,0,-1,0,26.7978515625)"><path d="M4,12.79892578125L12,12.79892578125Q12.05909,12.79892578125,12.11705,12.81045478125Q12.17501,12.82198378125,12.22961,12.84459778125Q12.28421,12.86721278125,12.33334,12.90004378125Q12.38248,12.93287578125,12.42426,12.97466178125Q12.46605,13.01644778125,12.49888,13.06558378125Q12.53171,13.11471878125,12.55433,13.16931578125Q12.57694,13.223911781249999,12.58847,13.28187178125Q12.6,13.33983098125,12.6,13.39892578125Q12.6,13.45802058125,12.58847,13.51597978125Q12.57694,13.573939781250001,12.55433,13.62853578125Q12.53171,13.68313278125,12.49888,13.73226778125Q12.46605,13.78140378125,12.42426,13.82318978125Q12.38248,13.86497578125,12.33334,13.89780778125Q12.28421,13.93063878125,12.22961,13.95325378125Q12.17501,13.97586778125,12.11705,13.98739678125Q12.05909,13.99892578125,12,13.99892578125L4,13.99892578125Q3.9409052,13.99892578125,3.882946,13.98739678125Q3.824986,13.97586778125,3.77039,13.95325378125Q3.715793,13.93063878125,3.666658,13.89780778125Q3.617522,13.86497578125,3.575736,13.82318978125Q3.53395,13.78140378125,3.501118,13.73226778125Q3.468287,13.68313278125,3.445672,13.62853578125Q3.423058,13.573939781250001,3.411529,13.51597978125Q3.4,13.45802058125,3.4,13.39892578125Q3.4,13.33983098125,3.411529,13.28187178125Q3.423058,13.223911781249999,3.445672,13.16931578125Q3.468287,13.11471878125,3.501118,13.06558378125Q3.53395,13.01644778125,3.575736,12.97466178125Q3.617522,12.93287578125,3.666658,12.90004378125Q3.715793,12.86721278125,3.77039,12.84459778125Q3.824986,12.82198378125,3.882946,12.81045478125Q3.9409052,12.79892578125,4,12.79892578125Z" fill-rule="evenodd" fill="#1C2023" fill-opacity="1"/></g><g transform="matrix(0,1,1,0,4.9993896484375,-4.9993896484375)"><path d="M7.9993896484375,2.4L14.9993896484375,2.4Q15.058479648437501,2.4,15.116439648437499,2.411529Q15.1743996484375,2.423058,15.228999648437501,2.445672Q15.2835996484375,2.468287,15.3327296484375,2.501118Q15.381869648437501,2.53395,15.4236496484375,2.575736Q15.4654396484375,2.617522,15.4982696484375,2.666658Q15.5310996484375,2.715793,15.5537196484375,2.77039Q15.5763296484375,2.824986,15.587859648437501,2.882946Q15.5993896484375,2.9409052,15.5993896484375,3Q15.5993896484375,3.0590948,15.587859648437501,3.117054Q15.5763296484375,3.175014,15.5537196484375,3.22961Q15.5310996484375,3.284207,15.4982696484375,3.333342Q15.4654396484375,3.382478,15.4236496484375,3.424264Q15.381869648437501,3.46605,15.3327296484375,3.498882Q15.2835996484375,3.531713,15.228999648437501,3.554328Q15.1743996484375,3.576942,15.116439648437499,3.588471Q15.058479648437501,3.6,14.9993896484375,3.6L7.9993896484375,3.6Q7.9402948484374996,3.6,7.8823356484375,3.588471Q7.8243756484375,3.576942,7.7697796484375,3.554328Q7.7151826484375,3.531713,7.6660476484375,3.498882Q7.6169116484375,3.46605,7.5751256484375,3.424264Q7.5333396484375,3.382478,7.5005076484375,3.333342Q7.4676766484375,3.284207,7.4450616484375,3.22961Q7.4224476484375,3.175014,7.4109186484375,3.117054Q7.3993896484375,3.0590948,7.3993896484375,3Q7.3993896484375,2.9409052,7.4109186484375,2.882946Q7.4224476484375,2.824986,7.4450616484375,2.77039Q7.4676766484375,2.715793,7.5005076484375,2.666658Q7.5333396484375,2.617522,7.5751256484375,2.575736Q7.6169116484375,2.53395,7.6660476484375,2.501118Q7.7151826484375,2.468287,7.7697796484375,2.445672Q7.8243756484375,2.423058,7.8823356484375,2.411529Q7.9402948484374996,2.4,7.9993896484375,2.4Z" fill-rule="evenodd" fill="#1C2023" fill-opacity="1"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="16" height="16" viewBox="0 0 16 16"><g><g transform="matrix(0.7071067690849304,-0.7071067690849304,0.7071067690849304,0.7071067690849304,-4.424321130871249,6.115618564210308)"><path d="M5.1700439453125,7.7984375L9.1700439453125,7.7984375Q9.229133945312501,7.7984375,9.287093945312499,7.8099665Q9.3450539453125,7.8214955,9.399653945312501,7.8441095Q9.4542539453125,7.8667245,9.5033839453125,7.8995555Q9.552523945312501,7.9323875,9.5943039453125,7.9741735Q9.6360939453125,8.0159595,9.6689239453125,8.0650955Q9.7017539453125,8.1142305,9.7243739453125,8.1688275Q9.7469839453125,8.223423499999999,9.758513945312501,8.2813835Q9.7700439453125,8.3393427,9.7700439453125,8.3984375L9.7700439453125,12.3984375Q9.7700439453125,12.457527500000001,9.758513945312501,12.515487499999999Q9.7469839453125,12.5734475,9.7243739453125,12.628047500000001Q9.7017539453125,12.6826475,9.6689239453125,12.7317775Q9.6360939453125,12.780917500000001,9.5943039453125,12.8226975Q9.552523945312501,12.8644875,9.5033839453125,12.8973175Q9.4542539453125,12.9301475,9.399653945312501,12.9527675Q9.3450539453125,12.9753775,9.287093945312499,12.986907500000001Q9.229133945312501,12.9984375,9.1700439453125,12.9984375Q9.1109439453125,12.9984375,9.052993945312501,12.986907500000001Q8.9950339453125,12.9753775,8.940433945312499,12.9527675Q8.8858339453125,12.9301475,8.8367039453125,12.8973175Q8.787563945312499,12.8644875,8.7457839453125,12.8226975Q8.7039939453125,12.780917500000001,8.6711639453125,12.7317775Q8.6383339453125,12.6826475,8.6157139453125,12.628047500000001Q8.5931039453125,12.5734475,8.581573945312499,12.515487499999999Q8.5700439453125,12.457527500000001,8.5700439453125,12.3984375L8.5700439453125,8.9984375L5.1700439453125,8.9984375Q5.1109491453124996,8.9984375,5.0529899453125,8.9869085Q4.9950299453125,8.9753795,4.9404339453125,8.9527655Q4.8858369453125,8.9301505,4.8367019453125,8.8973195Q4.7875659453125,8.8644875,4.7457799453125,8.8227015Q4.7039939453125,8.7809155,4.6711619453125,8.7317795Q4.6383309453125,8.6826445,4.6157159453125,8.6280475Q4.5931019453125,8.573451500000001,4.5815729453125,8.5154915Q4.5700439453125,8.4575323,4.5700439453125,8.3984375Q4.5700439453125,8.3393427,4.5815729453125,8.2813835Q4.5931019453125,8.223423499999999,4.6157159453125,8.1688275Q4.6383309453125,8.1142305,4.6711619453125,8.0650955Q4.7039939453125,8.0159595,4.7457799453125,7.9741735Q4.7875659453125,7.9323875,4.8367019453125,7.8995555Q4.8858369453125,7.8667245,4.9404339453125,7.8441095Q4.9950299453125,7.8214955,5.0529899453125,7.8099665Q5.1109491453124996,7.7984375,5.1700439453125,7.7984375Z" fill-rule="evenodd" fill="#1C2023" fill-opacity="1"/></g><g><path d="M4,2.4L12,2.4Q12.05909,2.4,12.11705,2.411529Q12.17501,2.423058,12.22961,2.445672Q12.28421,2.468287,12.33334,2.501118Q12.38248,2.53395,12.42426,2.575736Q12.46605,2.617522,12.49888,2.666658Q12.53171,2.715793,12.55433,2.77039Q12.57694,2.824986,12.58847,2.882946Q12.6,2.9409052,12.6,3Q12.6,3.0590948,12.58847,3.117054Q12.57694,3.175014,12.55433,3.22961Q12.53171,3.284207,12.49888,3.333342Q12.46605,3.382478,12.42426,3.424264Q12.38248,3.46605,12.33334,3.498882Q12.28421,3.531713,12.22961,3.554328Q12.17501,3.576942,12.11705,3.588471Q12.05909,3.6,12,3.6L4,3.6Q3.9409052,3.6,3.882946,3.588471Q3.824986,3.576942,3.77039,3.554328Q3.715793,3.531713,3.666658,3.498882Q3.617522,3.46605,3.575736,3.424264Q3.53395,3.382478,3.501118,3.333342Q3.468287,3.284207,3.445672,3.22961Q3.423058,3.175014,3.411529,3.117054Q3.4,3.0590948,3.4,3Q3.4,2.9409052,3.411529,2.882946Q3.423058,2.824986,3.445672,2.77039Q3.468287,2.715793,3.501118,2.666658Q3.53395,2.617522,3.575736,2.575736Q3.617522,2.53395,3.666658,2.501118Q3.715793,2.468287,3.77039,2.445672Q3.824986,2.423058,3.882946,2.411529Q3.9409052,2.4,4,2.4Z" fill-rule="evenodd" fill="#1C2023" fill-opacity="1"/></g><g transform="matrix(0,-1,1,0,-5.3995361328125,21.3983154296875)"><path d="M7.9993896484375,12.79892578125L14.9993896484375,12.79892578125Q15.058479648437501,12.79892578125,15.116439648437499,12.81045478125Q15.1743996484375,12.82198378125,15.228999648437501,12.84459778125Q15.2835996484375,12.86721278125,15.3327296484375,12.90004378125Q15.381869648437501,12.93287578125,15.4236496484375,12.97466178125Q15.4654396484375,13.01644778125,15.4982696484375,13.06558378125Q15.5310996484375,13.11471878125,15.5537196484375,13.16931578125Q15.5763296484375,13.223911781249999,15.587859648437501,13.28187178125Q15.5993896484375,13.33983098125,15.5993896484375,13.39892578125Q15.5993896484375,13.45802058125,15.587859648437501,13.51597978125Q15.5763296484375,13.573939781250001,15.5537196484375,13.62853578125Q15.5310996484375,13.68313278125,15.4982696484375,13.73226778125Q15.4654396484375,13.78140378125,15.4236496484375,13.82318978125Q15.381869648437501,13.86497578125,15.3327296484375,13.89780778125Q15.2835996484375,13.93063878125,15.228999648437501,13.95325378125Q15.1743996484375,13.97586778125,15.116439648437499,13.98739678125Q15.058479648437501,13.99892578125,14.9993896484375,13.99892578125L7.9993896484375,13.99892578125Q7.9402948484374996,13.99892578125,7.8823356484375,13.98739678125Q7.8243756484375,13.97586778125,7.7697796484375,13.95325378125Q7.7151826484375,13.93063878125,7.6660476484375,13.89780778125Q7.6169116484375,13.86497578125,7.5751256484375,13.82318978125Q7.5333396484375,13.78140378125,7.5005076484375,13.73226778125Q7.4676766484375,13.68313278125,7.4450616484375,13.62853578125Q7.4224476484375,13.573939781250001,7.4109186484375,13.51597978125Q7.3993896484375,13.45802058125,7.3993896484375,13.39892578125Q7.3993896484375,13.33983098125,7.4109186484375,13.28187178125Q7.4224476484375,13.223911781249999,7.4450616484375,13.16931578125Q7.4676766484375,13.11471878125,7.5005076484375,13.06558378125Q7.5333396484375,13.01644778125,7.5751256484375,12.97466178125Q7.6169116484375,12.93287578125,7.6660476484375,12.90004378125Q7.7151826484375,12.86721278125,7.7697796484375,12.84459778125Q7.8243756484375,12.82198378125,7.8823356484375,12.81045478125Q7.9402948484374996,12.79892578125,7.9993896484375,12.79892578125Z" fill-rule="evenodd" fill="#1C2023" fill-opacity="1"/></g></g></svg>
|