huiyi-select-table 0.0.2 → 0.0.8

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/favicon.ico ADDED
Binary file
Binary file
@@ -0,0 +1,127 @@
1
+ import { defineComponent as M, resolveComponent as w, openBlock as g, createElementBlock as x, createVNode as I, unref as _, isRef as j, withDirectives as A, createElementVNode as H, withCtx as F, Fragment as K, renderList as N, createBlock as U, vShow as q } from "vue";
2
+ const Q = { class: "spanDiv" }, $ = /* @__PURE__ */ M({
3
+ name: "InputSelectCompont",
4
+ __name: "SelectTable",
5
+ props: {
6
+ originalData: Object,
7
+ showValue: String,
8
+ columnList: Object
9
+ },
10
+ emits: ["slectValue"],
11
+ setup(o, { emit: u }) {
12
+ const r = o, a = ref(""), s = ref(!1), t = ref([]), b = ref([]), p = ref(!1), n = ref(-1), v = ref(-1), h = ref(null), d = () => {
13
+ s.value = !0, a.value ? (t.value = r.originalData.filter((e) => Object.keys(e).some((l) => String(e[l]).toLowerCase().includes(a.value.toLowerCase()))), console.log(t.value), n.value = -1, v.value = -1) : t.value = r.originalData;
14
+ }, C = u, D = (e) => {
15
+ b.value = e;
16
+ }, y = (e) => {
17
+ b.value = e, e && (a.value = e[r.showValue], s.value = !1), C("slectValue", e);
18
+ }, V = () => {
19
+ p.value == !1 && (s.value = !1);
20
+ }, S = () => {
21
+ p.value = !0;
22
+ }, R = () => {
23
+ p.value = !1;
24
+ }, T = (e) => {
25
+ if (console.log(e.key, "event.key "), t.value.length !== 0)
26
+ if (e.key == "ArrowDown") {
27
+ e.preventDefault();
28
+ let l = n.value + 1;
29
+ l >= t.value.length && (l = 0), console.log(l, "newIndex"), k(l);
30
+ } else if (e.key == "ArrowUp") {
31
+ e.preventDefault();
32
+ let l = n.value - 1;
33
+ l < 0 && (l = t.value.length - 1), k(l);
34
+ } else
35
+ e.key === "Enter" && (e.preventDefault(), s.value == !0 ? O() : d());
36
+ }, O = () => {
37
+ if (n.value >= 0) {
38
+ v.value === n.value ? v.value = -1 : v.value = n.value;
39
+ const e = t.value;
40
+ console.log(e[n.value], n.value, "hh[currentHighlightIndex]"), y(t.value[n.value]);
41
+ }
42
+ }, k = (e) => {
43
+ n.value = e, nextTick(() => {
44
+ if (h.value && t.value.length > 0 && e >= 0 && e < t.value.length) {
45
+ const c = h.value.$el.querySelectorAll(".el-table__row");
46
+ console.log(c, "rows"), c.length > 0 && e < c.length && c[e].scrollIntoView({ behavior: "smooth", block: "nearest" }), h.value.setCurrentRow(t.value[n.value]);
47
+ }
48
+ });
49
+ };
50
+ return (e, l) => {
51
+ const c = w("el-input"), E = w("el-table-column"), L = w("el-table");
52
+ return g(), x("span", {
53
+ class: "spanInput",
54
+ onMouseover: S,
55
+ onMouseout: R
56
+ }, [
57
+ I(c, {
58
+ placeholder: "请输入搜索内容",
59
+ modelValue: _(a),
60
+ "onUpdate:modelValue": l[0] || (l[0] = (i) => j(a) ? a.value = i : null),
61
+ id: "filterInput",
62
+ onInput: d,
63
+ style: { width: "200px" },
64
+ onFocus: d,
65
+ onBlur: V,
66
+ onKeydown: T
67
+ }, null, 8, ["modelValue"]),
68
+ A(H("div", Q, [
69
+ I(L, {
70
+ ref_key: "singleTableRef",
71
+ ref: h,
72
+ border: "",
73
+ class: "spanInputTable",
74
+ "row-class-name": o.originalData,
75
+ "highlight-current-row": "",
76
+ data: _(t),
77
+ style: { width: "300px", height: "230px", position: "fixed" },
78
+ onCurrentChange: D,
79
+ onRowClick: y
80
+ }, {
81
+ default: F(() => [
82
+ (g(!0), x(K, null, N(o.columnList, (i, B) => (g(), U(E, {
83
+ key: B,
84
+ prop: i.prop,
85
+ label: i.label,
86
+ width: i.width,
87
+ "show-overflow-tooltip": "",
88
+ align: "center"
89
+ }, null, 8, ["prop", "label", "width"]))), 128))
90
+ ]),
91
+ _: 1
92
+ }, 8, ["row-class-name", "data"])
93
+ ], 512), [
94
+ [q, _(s)]
95
+ ])
96
+ ], 32);
97
+ };
98
+ }
99
+ });
100
+ const z = (o, u) => {
101
+ const r = o.__vccOpts || o;
102
+ for (const [a, s] of u)
103
+ r[a] = s;
104
+ return r;
105
+ }, f = /* @__PURE__ */ z($, [["__scopeId", "data-v-e18f660a"]]);
106
+ f.install = (o) => {
107
+ o.component(f.name, f);
108
+ };
109
+ const G = [
110
+ f
111
+ ], m = function(o) {
112
+ m.installed || G.forEach((u) => {
113
+ o.component(u.name, u);
114
+ });
115
+ };
116
+ typeof window < "u" && window.Vue && m(window.Vue);
117
+ const P = {
118
+ // 导出的对象必须具有 install,才能被 Vue.use() 方法安装
119
+ install: m,
120
+ // 以下是具体的组件列表
121
+ SelectTable: f
122
+ };
123
+ export {
124
+ f as SelectTable,
125
+ P as default,
126
+ m as install
127
+ };
@@ -0,0 +1 @@
1
+ (function(s,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],e):(s=typeof globalThis<"u"?globalThis:s||self,e(s.HuiyiSelectTable={},s.Vue))})(this,function(s,e){"use strict";const L="",k={class:"spanDiv"},C=e.defineComponent({name:"InputSelectCompont",__name:"SelectTable",props:{originalData:Object,showValue:String,columnList:Object},emits:["slectValue"],setup(a,{emit:i}){const f=a,r=ref(""),c=ref(!1),n=ref([]),m=ref([]),g=ref(!1),o=ref(-1),w=ref(-1),_=ref(null),v=()=>{c.value=!0,r.value?(n.value=f.originalData.filter(l=>Object.keys(l).some(t=>String(l[t]).toLowerCase().includes(r.value.toLowerCase()))),console.log(n.value),o.value=-1,w.value=-1):n.value=f.originalData},I=i,V=l=>{m.value=l},b=l=>{m.value=l,l&&(r.value=l[f.showValue],c.value=!1),I("slectValue",l)},T=()=>{g.value==!1&&(c.value=!1)},D=()=>{g.value=!0},R=()=>{g.value=!1},O=l=>{if(console.log(l.key,"event.key "),n.value.length!==0)if(l.key=="ArrowDown"){l.preventDefault();let t=o.value+1;t>=n.value.length&&(t=0),console.log(t,"newIndex"),y(t)}else if(l.key=="ArrowUp"){l.preventDefault();let t=o.value-1;t<0&&(t=n.value.length-1),y(t)}else l.key==="Enter"&&(l.preventDefault(),c.value==!0?B():v())},B=()=>{if(o.value>=0){w.value===o.value?w.value=-1:w.value=o.value;const l=n.value;console.log(l[o.value],o.value,"hh[currentHighlightIndex]"),b(n.value[o.value])}},y=l=>{o.value=l,nextTick(()=>{if(_.value&&n.value.length>0&&l>=0&&l<n.value.length){const d=_.value.$el.querySelectorAll(".el-table__row");console.log(d,"rows"),d.length>0&&l<d.length&&d[l].scrollIntoView({behavior:"smooth",block:"nearest"}),_.value.setCurrentRow(n.value[o.value])}})};return(l,t)=>{const d=e.resolveComponent("el-input"),E=e.resolveComponent("el-table-column"),M=e.resolveComponent("el-table");return e.openBlock(),e.createElementBlock("span",{class:"spanInput",onMouseover:D,onMouseout:R},[e.createVNode(d,{placeholder:"请输入搜索内容",modelValue:e.unref(r),"onUpdate:modelValue":t[0]||(t[0]=p=>e.isRef(r)?r.value=p:null),id:"filterInput",onInput:v,style:{width:"200px"},onFocus:v,onBlur:T,onKeydown:O},null,8,["modelValue"]),e.withDirectives(e.createElementVNode("div",k,[e.createVNode(M,{ref_key:"singleTableRef",ref:_,border:"",class:"spanInputTable","row-class-name":a.originalData,"highlight-current-row":"",data:e.unref(n),style:{width:"300px",height:"230px",position:"fixed"},onCurrentChange:V,onRowClick:b},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.columnList,(p,j)=>(e.openBlock(),e.createBlock(E,{key:j,prop:p.prop,label:p.label,width:p.width,"show-overflow-tooltip":"",align:"center"},null,8,["prop","label","width"]))),128))]),_:1},8,["row-class-name","data"])],512),[[e.vShow,e.unref(c)]])],32)}}}),H="",u=((a,i)=>{const f=a.__vccOpts||a;for(const[r,c]of i)f[r]=c;return f})(C,[["__scopeId","data-v-e18f660a"]]);u.install=a=>{a.component(u.name,u)};const S=[u],h=function(a){h.installed||S.forEach(i=>{a.component(i.name,i)})};typeof window<"u"&&window.Vue&&h(window.Vue);const x={install:h,SelectTable:u};s.SelectTable=u,s.default=x,s.install=h,Object.defineProperties(s,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
package/index.html ADDED
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html>
2
+ <html lang="">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width,initial-scale=1.0">
7
+ <link rel="icon" href="<%= BASE_URL %>favicon.ico">
8
+ <title><%= htmlWebpackPlugin.options.title %></title>
9
+ </head>
10
+ <body>
11
+ <noscript>
12
+ <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
13
+ </noscript>
14
+ <div id="app"></div>
15
+ <!-- built files will be auto injected -->
16
+ </body>
17
+ </html>
package/package.json CHANGED
@@ -1,27 +1,19 @@
1
1
  {
2
2
  "name": "huiyi-select-table",
3
- "version": "0.0.2",
4
- "description": "select,table",
5
- "type": "module",
6
- "types": "dist/index.d.ts",
7
- "main": "dist/huiyi-select-table.umd.js",
8
- "module": "dist/huiyi-select-table.es.js",
9
- "files": ["dist"],
10
- "scripts": {
11
- "dev": "vite",
12
- "build": "vite build --config vite.config.lib.ts && tsc --emitDeclarationOnly --declaration",
13
- "prepublishOnly": "npm run build"
14
- },
15
- "dependencies": {
16
- "element-plus": "^2.11.7",
17
- "vue": "^3.5.24"
18
- },
19
- "devDependencies": {
20
- "@types/node": "^24.10.0",
21
- "@vitejs/plugin-vue": "^6.0.1",
22
- "@vue/tsconfig": "^0.8.1",
23
- "typescript": "^5.7.3",
24
- "vite": "^7.2.2",
25
- "vue-tsc": "^2.2.0"
3
+ "version": "0.0.8",
4
+ "description": "A Vue.js select table component",
5
+ "main": "huiyi-select-table.umd.js",
6
+ "module": "huiyi-select-table.mjs",
7
+ "unpkg": "huiyi-select-table.umd.js",
8
+ "browser": "huiyi-select-table.umd.js",
9
+ "keywords": [
10
+ "vue",
11
+ "component",
12
+ "select-table"
13
+ ],
14
+ "author": "Time Components Up",
15
+ "license": "MIT",
16
+ "peerDependencies": {
17
+ "vue": "^3.0.0"
26
18
  }
27
19
  }
package/style.css ADDED
@@ -0,0 +1 @@
1
+ .el-table .warning-row[data-v-e18f660a]{--el-table-tr-bg-color: #141}.spanInput[data-v-e18f660a]{display:inline-block;position:relative}.spanDiv[data-v-e18f660a]{z-index:10000;position:absolute;top:35px;background-color:#fff;height:230px;border:1px solid #eee}
package/README.md DELETED
@@ -1,5 +0,0 @@
1
- # Vue 3 + TypeScript + Vite
2
-
3
- This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
-
5
- Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
@@ -1 +0,0 @@
1
- .el-table .warning-row[data-v-2d4704ea]{--el-table-tr-bg-color: #141}.spanInput[data-v-2d4704ea]{display:inline-block;position:relative}.spanDiv[data-v-2d4704ea]{z-index:10000;position:absolute;top:35px;background-color:#fff;height:230px;border:1px solid #eee}
@@ -1,123 +0,0 @@
1
- import { defineComponent as j, resolveComponent as w, createElementBlock as C, openBlock as g, createVNode as I, withDirectives as A, unref as m, isRef as H, createElementVNode as N, withCtx as F, Fragment as K, renderList as U, createBlock as q, vShow as Q } from "vue";
2
- const $ = { class: "spanDiv" }, z = /* @__PURE__ */ j({
3
- name: "InputSelectCompont",
4
- __name: "SelectTable",
5
- props: {
6
- originalData: Object,
7
- showValue: String,
8
- columnList: Object
9
- },
10
- emits: ["slectValue"],
11
- setup(n, { emit: u }) {
12
- const r = n, a = ref(""), s = ref(!1), t = ref([]), _ = ref([]), p = ref(!1), o = ref(-1), f = ref(-1), h = ref(null), d = () => {
13
- s.value = !0, a.value ? (t.value = r.originalData.filter((e) => Object.keys(e).some((l) => String(e[l]).toLowerCase().includes(a.value.toLowerCase()))), console.log(t.value), o.value = -1, f.value = -1) : t.value = r.originalData;
14
- }, x = u, D = (e) => {
15
- _.value = e;
16
- }, k = (e) => {
17
- _.value = e, e && (a.value = e[r.showValue], s.value = !1), x("slectValue", e);
18
- }, R = () => {
19
- p.value == !1 && (s.value = !1);
20
- }, S = () => {
21
- p.value = !0;
22
- }, O = () => {
23
- p.value = !1;
24
- }, E = (e) => {
25
- if (console.log(e.key, "event.key "), t.value.length !== 0)
26
- if (e.key == "ArrowDown") {
27
- e.preventDefault();
28
- let l = o.value + 1;
29
- l >= t.value.length && (l = 0), console.log(l, "newIndex"), y(l);
30
- } else if (e.key == "ArrowUp") {
31
- e.preventDefault();
32
- let l = o.value - 1;
33
- l < 0 && (l = t.value.length - 1), y(l);
34
- } else e.key === "Enter" && (e.preventDefault(), s.value == !0 ? T() : d());
35
- }, T = () => {
36
- if (o.value >= 0) {
37
- f.value === o.value ? f.value = -1 : f.value = o.value;
38
- const e = t.value;
39
- console.log(e[o.value], o.value, "hh[currentHighlightIndex]"), k(t.value[o.value]);
40
- }
41
- }, y = (e) => {
42
- o.value = e, nextTick(() => {
43
- if (h.value && t.value.length > 0 && e >= 0 && e < t.value.length) {
44
- const c = h.value.$el.querySelectorAll(".el-table__row");
45
- console.log(c, "rows"), c.length > 0 && e < c.length && c[e].scrollIntoView({ behavior: "smooth", block: "nearest" }), h.value.setCurrentRow(t.value[o.value]);
46
- }
47
- });
48
- };
49
- return (e, l) => {
50
- const c = w("el-input"), L = w("el-table-column"), B = w("el-table");
51
- return g(), C("span", {
52
- class: "spanInput",
53
- onMouseover: S,
54
- onMouseout: O
55
- }, [
56
- I(c, {
57
- placeholder: "请输入搜索内容",
58
- modelValue: m(a),
59
- "onUpdate:modelValue": l[0] || (l[0] = (i) => H(a) ? a.value = i : null),
60
- id: "filterInput",
61
- onInput: d,
62
- style: { width: "200px" },
63
- onFocus: d,
64
- onBlur: R,
65
- onKeydown: E
66
- }, null, 8, ["modelValue"]),
67
- A(N("div", $, [
68
- I(B, {
69
- ref_key: "singleTableRef",
70
- ref: h,
71
- border: "",
72
- class: "spanInputTable",
73
- "row-class-name": e.tableRowClassName,
74
- "highlight-current-row": "",
75
- data: m(t),
76
- style: { width: "300px", height: "230px", position: "fixed" },
77
- onCurrentChange: D,
78
- onRowClick: k
79
- }, {
80
- default: F(() => [
81
- (g(!0), C(K, null, U(n.columnList, (i, M) => (g(), q(L, {
82
- key: M,
83
- prop: i.prop,
84
- label: i.label,
85
- width: i.width,
86
- "show-overflow-tooltip": "",
87
- align: "center"
88
- }, null, 8, ["prop", "label", "width"]))), 128))
89
- ]),
90
- _: 1
91
- }, 8, ["row-class-name", "data"])
92
- ], 512), [
93
- [Q, m(s)]
94
- ])
95
- ], 32);
96
- };
97
- }
98
- }), G = (n, u) => {
99
- const r = n.__vccOpts || n;
100
- for (const [a, s] of u)
101
- r[a] = s;
102
- return r;
103
- }, v = /* @__PURE__ */ G(z, [["__scopeId", "data-v-2d4704ea"]]);
104
- v.install = (n) => {
105
- n.component(v.name, v);
106
- };
107
- const V = [
108
- v
109
- ], b = function(n) {
110
- b.installed || V.forEach((u) => {
111
- n.component(u.name, u);
112
- });
113
- };
114
- typeof window < "u" && window.Vue && b(window.Vue);
115
- const P = {
116
- install: b,
117
- ...V
118
- };
119
- export {
120
- v as SelectTable,
121
- P as default,
122
- b as install
123
- };
@@ -1 +0,0 @@
1
- (function(a,l){typeof exports=="object"&&typeof module<"u"?l(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],l):(a=typeof globalThis<"u"?globalThis:a||self,l(a.HuiyiSelectTable={},a.Vue))})(this,(function(a,l){"use strict";const C={class:"spanDiv"},d=((s,c)=>{const i=s.__vccOpts||s;for(const[r,u]of c)i[r]=u;return i})(l.defineComponent({name:"InputSelectCompont",__name:"SelectTable",props:{originalData:Object,showValue:String,columnList:Object},emits:["slectValue"],setup(s,{emit:c}){const i=s,r=ref(""),u=ref(!1),n=ref([]),b=ref([]),g=ref(!1),o=ref(-1),w=ref(-1),m=ref(null),v=()=>{u.value=!0,r.value?(n.value=i.originalData.filter(e=>Object.keys(e).some(t=>String(e[t]).toLowerCase().includes(r.value.toLowerCase()))),console.log(n.value),o.value=-1,w.value=-1):n.value=i.originalData},V=c,S=e=>{b.value=e},y=e=>{b.value=e,e&&(r.value=e[i.showValue],u.value=!1),V("slectValue",e)},x=()=>{g.value==!1&&(u.value=!1)},D=()=>{g.value=!0},T=()=>{g.value=!1},R=e=>{if(console.log(e.key,"event.key "),n.value.length!==0)if(e.key=="ArrowDown"){e.preventDefault();let t=o.value+1;t>=n.value.length&&(t=0),console.log(t,"newIndex"),k(t)}else if(e.key=="ArrowUp"){e.preventDefault();let t=o.value-1;t<0&&(t=n.value.length-1),k(t)}else e.key==="Enter"&&(e.preventDefault(),u.value==!0?O():v())},O=()=>{if(o.value>=0){w.value===o.value?w.value=-1:w.value=o.value;const e=n.value;console.log(e[o.value],o.value,"hh[currentHighlightIndex]"),y(n.value[o.value])}},k=e=>{o.value=e,nextTick(()=>{if(m.value&&n.value.length>0&&e>=0&&e<n.value.length){const f=m.value.$el.querySelectorAll(".el-table__row");console.log(f,"rows"),f.length>0&&e<f.length&&f[e].scrollIntoView({behavior:"smooth",block:"nearest"}),m.value.setCurrentRow(n.value[o.value])}})};return(e,t)=>{const f=l.resolveComponent("el-input"),B=l.resolveComponent("el-table-column"),E=l.resolveComponent("el-table");return l.openBlock(),l.createElementBlock("span",{class:"spanInput",onMouseover:D,onMouseout:T},[l.createVNode(f,{placeholder:"请输入搜索内容",modelValue:l.unref(r),"onUpdate:modelValue":t[0]||(t[0]=p=>l.isRef(r)?r.value=p:null),id:"filterInput",onInput:v,style:{width:"200px"},onFocus:v,onBlur:x,onKeydown:R},null,8,["modelValue"]),l.withDirectives(l.createElementVNode("div",C,[l.createVNode(E,{ref_key:"singleTableRef",ref:m,border:"",class:"spanInputTable","row-class-name":e.tableRowClassName,"highlight-current-row":"",data:l.unref(n),style:{width:"300px",height:"230px",position:"fixed"},onCurrentChange:S,onRowClick:y},{default:l.withCtx(()=>[(l.openBlock(!0),l.createElementBlock(l.Fragment,null,l.renderList(s.columnList,(p,M)=>(l.openBlock(),l.createBlock(B,{key:M,prop:p.prop,label:p.label,width:p.width,"show-overflow-tooltip":"",align:"center"},null,8,["prop","label","width"]))),128))]),_:1},8,["row-class-name","data"])],512),[[l.vShow,l.unref(u)]])],32)}}}),[["__scopeId","data-v-2d4704ea"]]);d.install=s=>{s.component(d.name,d)};const _=[d],h=function(s){h.installed||_.forEach(c=>{s.component(c.name,c)})};typeof window<"u"&&window.Vue&&h(window.Vue);const I={install:h,..._};a.SelectTable=d,a.default=I,a.install=h,Object.defineProperties(a,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})}));
package/dist/vite.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>