@everymatrix/player-elevate-card 1.0.69

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 (87) hide show
  1. package/dist/cjs/app-globals-3a1e7e63.js +5 -0
  2. package/dist/cjs/general-styling-wrapper_5.cjs.entry.js +3061 -0
  3. package/dist/cjs/index-b1cf5517.js +1634 -0
  4. package/dist/cjs/index.cjs.js +2 -0
  5. package/dist/cjs/loader.cjs.js +15 -0
  6. package/dist/cjs/player-elevate-card.cjs.js +25 -0
  7. package/dist/collection/collection-manifest.json +22 -0
  8. package/dist/collection/components/player-elevate-card/index.js +1 -0
  9. package/dist/collection/components/player-elevate-card/player-elevate-card-items.js +22 -0
  10. package/dist/collection/components/player-elevate-card/player-elevate-card.css +64 -0
  11. package/dist/collection/components/player-elevate-card/player-elevate-card.js +279 -0
  12. package/dist/collection/components/player-elevate-card-data/player-elevate-card-data.css +192 -0
  13. package/dist/collection/components/player-elevate-card-data/player-elevate-card-data.js +231 -0
  14. package/dist/collection/components/player-elevate-loyaltycard/player-elevate-loyaltycard.css +68 -0
  15. package/dist/collection/components/player-elevate-loyaltycard/player-elevate-loyaltycard.js +285 -0
  16. package/dist/collection/components/player-elevate-pointcard/player-elevate-pointcard.css +70 -0
  17. package/dist/collection/components/player-elevate-pointcard/player-elevate-pointcard.js +316 -0
  18. package/dist/collection/components/static/button-default.svg +42 -0
  19. package/dist/collection/components/static/button-disabled.svg +4 -0
  20. package/dist/collection/components/static/button-hover.svg +4 -0
  21. package/dist/collection/components/static/button-level.svg +27 -0
  22. package/dist/collection/components/static/button-pressed.svg +18 -0
  23. package/dist/collection/components/static/button-redeem.svg +36 -0
  24. package/dist/collection/components/static/card-ground-over.png +0 -0
  25. package/dist/collection/components/static/card-ground-over.svg +903 -0
  26. package/dist/collection/components/static/card-ground.png +0 -0
  27. package/dist/collection/components/static/card-ground.svg +34 -0
  28. package/dist/collection/components/static/info.svg +4 -0
  29. package/dist/collection/components/static/level-badge.png +0 -0
  30. package/dist/collection/components/static/level-percent.svg +80 -0
  31. package/dist/collection/components/static/tips-info.svg +21 -0
  32. package/dist/collection/components/static/user.svg +3 -0
  33. package/dist/collection/index.js +1 -0
  34. package/dist/collection/models/player-elevate.js +1 -0
  35. package/dist/collection/utils/locale.utils.js +144 -0
  36. package/dist/collection/utils/utils.js +51 -0
  37. package/dist/esm/app-globals-0f993ce5.js +3 -0
  38. package/dist/esm/general-styling-wrapper_5.entry.js +3053 -0
  39. package/dist/esm/index-cd7a4beb.js +1604 -0
  40. package/dist/esm/index.js +1 -0
  41. package/dist/esm/loader.js +11 -0
  42. package/dist/esm/player-elevate-card.js +20 -0
  43. package/dist/index.cjs.js +1 -0
  44. package/dist/index.js +1 -0
  45. package/dist/player-elevate-card/index.esm.js +0 -0
  46. package/dist/player-elevate-card/p-37a424ba.entry.js +1 -0
  47. package/dist/player-elevate-card/p-ba534fa2.js +2 -0
  48. package/dist/player-elevate-card/p-e1255160.js +1 -0
  49. package/dist/player-elevate-card/player-elevate-card.esm.js +1 -0
  50. package/dist/static/button-default.svg +42 -0
  51. package/dist/static/button-disabled.svg +4 -0
  52. package/dist/static/button-hover.svg +4 -0
  53. package/dist/static/button-level.svg +27 -0
  54. package/dist/static/button-pressed.svg +18 -0
  55. package/dist/static/button-redeem.svg +36 -0
  56. package/dist/static/card-ground-over.png +0 -0
  57. package/dist/static/card-ground-over.svg +903 -0
  58. package/dist/static/card-ground.png +0 -0
  59. package/dist/static/card-ground.svg +34 -0
  60. package/dist/static/info.svg +4 -0
  61. package/dist/static/level-badge.png +0 -0
  62. package/dist/static/level-percent.svg +80 -0
  63. package/dist/static/tips-info.svg +21 -0
  64. package/dist/static/user.svg +3 -0
  65. package/dist/stencil.config.dev.js +17 -0
  66. package/dist/stencil.config.js +17 -0
  67. package/dist/types/Users/raul.vasile/workspace/everymatrix/widgets-monorepo/packages/stencil/player-elevate-card/.stencil/packages/stencil/player-elevate-card/stencil.config.d.ts +2 -0
  68. package/dist/types/Users/raul.vasile/workspace/everymatrix/widgets-monorepo/packages/stencil/player-elevate-card/.stencil/packages/stencil/player-elevate-card/stencil.config.dev.d.ts +2 -0
  69. package/dist/types/components/player-elevate-card/index.d.ts +1 -0
  70. package/dist/types/components/player-elevate-card/player-elevate-card-items.d.ts +19 -0
  71. package/dist/types/components/player-elevate-card/player-elevate-card.d.ts +54 -0
  72. package/dist/types/components/player-elevate-card-data/player-elevate-card-data.d.ts +23 -0
  73. package/dist/types/components/player-elevate-loyaltycard/player-elevate-loyaltycard.d.ts +54 -0
  74. package/dist/types/components/player-elevate-pointcard/player-elevate-pointcard.d.ts +67 -0
  75. package/dist/types/components.d.ts +350 -0
  76. package/dist/types/index.d.ts +1 -0
  77. package/dist/types/models/player-elevate.d.ts +40 -0
  78. package/dist/types/stencil-public-runtime.d.ts +1674 -0
  79. package/dist/types/utils/locale.utils.d.ts +15 -0
  80. package/dist/types/utils/utils.d.ts +1 -0
  81. package/loader/cdn.js +1 -0
  82. package/loader/index.cjs.js +1 -0
  83. package/loader/index.d.ts +24 -0
  84. package/loader/index.es2017.js +1 -0
  85. package/loader/index.js +2 -0
  86. package/loader/package.json +11 -0
  87. package/package.json +26 -0
@@ -0,0 +1,316 @@
1
+ import { Fragment, getAssetPath, h } from "@stencil/core";
2
+ import { translate, TRANSLATIONS } from "../../utils/locale.utils";
3
+ import { PlayerAvatar, PlayerPoints, } from "../player-elevate-card/player-elevate-card-items";
4
+ export class PlayerElevatePointcard {
5
+ constructor() {
6
+ this.isPointDetailCard = this.buttonType === 'earningRule';
7
+ this.endpoint = undefined;
8
+ this.theme = 'Dark';
9
+ this.session = undefined;
10
+ this.playerAvatarUrl = undefined;
11
+ this.language = 'en';
12
+ this.playerName = undefined;
13
+ this.cardTitle = undefined;
14
+ this.buttonType = 'earningRule';
15
+ this.dateFormat = 'yyyy-MM-dd';
16
+ this.clientStyling = '';
17
+ this.clientStylingUrl = '';
18
+ this.translationUrl = '';
19
+ this.pointExpireString = undefined;
20
+ this.playerElevateLevel = undefined;
21
+ this.elevateWalletTotal = undefined;
22
+ this.elevateSPTotal = undefined;
23
+ }
24
+ onSessionOrEndpointChange() {
25
+ this.paramProxy = Object.assign(Object.assign({}, this.paramProxy), { session: this.session, endpoint: this.endpoint, language: this.language });
26
+ }
27
+ playerElevateLeveLoadedHandler(event) {
28
+ if (!event.detail) {
29
+ return;
30
+ }
31
+ if (event.detail['elevateLevelWalletTotal']) {
32
+ this.elevateWalletTotal = event.detail['elevateLevelWalletTotal'];
33
+ this.elevateSPTotal = event.detail['loyaltyWalletTotal'];
34
+ }
35
+ if (event.detail['elevateLevel']) {
36
+ this.playerElevateLevel = event.detail['elevateLevel'];
37
+ }
38
+ if (event.detail['pointExpireString']) {
39
+ this.pointExpireString = event.detail.pointExpireString;
40
+ }
41
+ }
42
+ onDetailsClick() {
43
+ window.postMessage({ type: this.isPointDetailCard ? 'BEEPointRulesClicked' : 'BEEDetailsClicked',
44
+ path: this.isPointDetailCard ? 'player-elevate-level' : 'player-elevate-point-details' }, window.location.href);
45
+ }
46
+ componentWillLoad() {
47
+ this.paramProxy = {
48
+ endpoint: this.endpoint,
49
+ session: this.session,
50
+ language: this.language,
51
+ };
52
+ }
53
+ render() {
54
+ const backgroundOuterImagePath = getAssetPath('../static/card-ground.svg');
55
+ const backgroundInnerImagePath = getAssetPath('../static/card-ground-over.svg');
56
+ return (h("div", { key: '13461fc9cf8b777337a539c15da4bb2781f5a837', class: `ElevateCardWrapper ${this.theme}` }, h("div", { key: '526e72c0ada871f74ba4a07f0a125bc25840c09c', class: "PointsCard Outer ", style: { 'backgroundImage': `url(${backgroundOuterImagePath}` } }, h("general-styling-wrapper", { key: '95e358ceb8fa3c247660f7ca15a4684b132874be', clientStyling: this.clientStyling, clientStylingUrl: this.clientStylingUrl, targetTranslations: TRANSLATIONS, translationUrl: this.translationUrl }), h("player-elevate-card-data", { key: '24c765d743446ac597a9dcc9cd22515e7e39e6db', params: this.paramProxy }), h("div", { key: '309db4bbfc244a7fb97827774d9d4383109ca0d7', class: 'OuterCover Inner', style: { 'backgroundImage': `url(${backgroundInnerImagePath}` } }, h("div", { key: '9d5614ded2f73b505e60900675a7d95b3cfbcbc6', class: 'Content Row' }, this.playerElevateLevel && (h(Fragment, { key: '9a17e809083e61aad19f7ffef5d5ee5885ae8b4d' }, h("div", { key: '47068df3c0070ee2785b0d0201b08766fe0d71e8', class: "PlayerImg" }, h(PlayerAvatar, { key: '40115f8b190d871c85f9531fbf0bafb8fbd739e2', onlyBadge: true, loyaltyIconUrl: this.playerElevateLevel.presentation.asset })), h("div", { key: '278cd70c23ecb48655e90810af570ce5366d13d5', class: `LevelInfo ${this.playerElevateLevel.name}` }, h("div", { key: 'ce682ff881c5b12ed0b736ffcc67ad07b3713999', class: "PointsTxt Label" }, this.cardTitle ? this.cardTitle : translate('spendablePoints')), h("div", { key: 'eeebc5c468cf6e3d566f708fd47a19956ad9defe', class: 'PointsTxt SPPoints' }, h(PlayerPoints, { key: 'ad58990b7fa789cf2d5c524191447196e97c8a16', spendablePoints: this.playerElevateLevel.spendablePoints, language: this.language }), h("a", { key: '0dbdd6cd84e1cb43dac4485f4e3eec3130d6c65c', class: "TC", onClick: () => {
57
+ this.onDetailsClick();
58
+ } }, translate('termAndConditions', this.language))), this.pointExpireString && (h("div", { key: '45c3267d390995fabe34974913adf97b112cf8c2', class: 'ExpirationPoints' }, this.pointExpireString, " "))))))))));
59
+ }
60
+ static get is() { return "player-elevate-pointcard"; }
61
+ static get encapsulation() { return "shadow"; }
62
+ static get originalStyleUrls() {
63
+ return {
64
+ "$": ["player-elevate-pointcard.scss"]
65
+ };
66
+ }
67
+ static get styleUrls() {
68
+ return {
69
+ "$": ["player-elevate-pointcard.css"]
70
+ };
71
+ }
72
+ static get properties() {
73
+ return {
74
+ "endpoint": {
75
+ "type": "string",
76
+ "mutable": false,
77
+ "complexType": {
78
+ "original": "string",
79
+ "resolved": "string",
80
+ "references": {}
81
+ },
82
+ "required": true,
83
+ "optional": false,
84
+ "docs": {
85
+ "tags": [],
86
+ "text": "The NWA endpoint"
87
+ },
88
+ "attribute": "endpoint",
89
+ "reflect": true
90
+ },
91
+ "theme": {
92
+ "type": "string",
93
+ "mutable": false,
94
+ "complexType": {
95
+ "original": "string",
96
+ "resolved": "string",
97
+ "references": {}
98
+ },
99
+ "required": false,
100
+ "optional": false,
101
+ "docs": {
102
+ "tags": [],
103
+ "text": "The style that widget shows,available value: Dark, Light\nDefault: Dark"
104
+ },
105
+ "attribute": "theme",
106
+ "reflect": true,
107
+ "defaultValue": "'Dark'"
108
+ },
109
+ "session": {
110
+ "type": "string",
111
+ "mutable": false,
112
+ "complexType": {
113
+ "original": "string",
114
+ "resolved": "string",
115
+ "references": {}
116
+ },
117
+ "required": true,
118
+ "optional": false,
119
+ "docs": {
120
+ "tags": [],
121
+ "text": "The NWA session for the logged-in user"
122
+ },
123
+ "attribute": "session",
124
+ "reflect": true
125
+ },
126
+ "playerAvatarUrl": {
127
+ "type": "string",
128
+ "mutable": false,
129
+ "complexType": {
130
+ "original": "string",
131
+ "resolved": "string",
132
+ "references": {}
133
+ },
134
+ "required": false,
135
+ "optional": false,
136
+ "docs": {
137
+ "tags": [],
138
+ "text": "Widget, player avatar url"
139
+ },
140
+ "attribute": "player-avatar-url",
141
+ "reflect": true
142
+ },
143
+ "language": {
144
+ "type": "string",
145
+ "mutable": false,
146
+ "complexType": {
147
+ "original": "string",
148
+ "resolved": "string",
149
+ "references": {}
150
+ },
151
+ "required": false,
152
+ "optional": false,
153
+ "docs": {
154
+ "tags": [],
155
+ "text": "Widget Language to show"
156
+ },
157
+ "attribute": "language",
158
+ "reflect": true,
159
+ "defaultValue": "'en'"
160
+ },
161
+ "playerName": {
162
+ "type": "string",
163
+ "mutable": false,
164
+ "complexType": {
165
+ "original": "string",
166
+ "resolved": "string",
167
+ "references": {}
168
+ },
169
+ "required": false,
170
+ "optional": false,
171
+ "docs": {
172
+ "tags": [],
173
+ "text": "The first name"
174
+ },
175
+ "attribute": "player-name",
176
+ "reflect": true
177
+ },
178
+ "cardTitle": {
179
+ "type": "string",
180
+ "mutable": false,
181
+ "complexType": {
182
+ "original": "string",
183
+ "resolved": "string",
184
+ "references": {}
185
+ },
186
+ "required": false,
187
+ "optional": false,
188
+ "docs": {
189
+ "tags": [],
190
+ "text": "The title displayed in card, default: translation of 'spendablePoints'"
191
+ },
192
+ "attribute": "card-title",
193
+ "reflect": true
194
+ },
195
+ "buttonType": {
196
+ "type": "string",
197
+ "mutable": false,
198
+ "complexType": {
199
+ "original": "string",
200
+ "resolved": "string",
201
+ "references": {}
202
+ },
203
+ "required": false,
204
+ "optional": false,
205
+ "docs": {
206
+ "tags": [],
207
+ "text": "Check if the card used in points details widget, default: 'earningRule'\nvalue: 'details'/'earningRule'\nIt effected the button in card\n'earningRule': button text, 'earning rules', post 'BEEPointRulesClicked' when clicked\n'details': button text, 'details', post 'BEEDetailsClicked' when clicked"
208
+ },
209
+ "attribute": "button-type",
210
+ "reflect": true,
211
+ "defaultValue": "'earningRule'"
212
+ },
213
+ "dateFormat": {
214
+ "type": "string",
215
+ "mutable": false,
216
+ "complexType": {
217
+ "original": "string",
218
+ "resolved": "string",
219
+ "references": {}
220
+ },
221
+ "required": false,
222
+ "optional": false,
223
+ "docs": {
224
+ "tags": [],
225
+ "text": "datePattern"
226
+ },
227
+ "attribute": "date-format",
228
+ "reflect": true,
229
+ "defaultValue": "'yyyy-MM-dd'"
230
+ },
231
+ "clientStyling": {
232
+ "type": "string",
233
+ "mutable": false,
234
+ "complexType": {
235
+ "original": "string",
236
+ "resolved": "string",
237
+ "references": {}
238
+ },
239
+ "required": false,
240
+ "optional": false,
241
+ "docs": {
242
+ "tags": [],
243
+ "text": "Client custom styling via inline styles"
244
+ },
245
+ "attribute": "client-styling",
246
+ "reflect": true,
247
+ "defaultValue": "''"
248
+ },
249
+ "clientStylingUrl": {
250
+ "type": "string",
251
+ "mutable": false,
252
+ "complexType": {
253
+ "original": "string",
254
+ "resolved": "string",
255
+ "references": {}
256
+ },
257
+ "required": false,
258
+ "optional": false,
259
+ "docs": {
260
+ "tags": [],
261
+ "text": "Client custom styling via url"
262
+ },
263
+ "attribute": "client-styling-url",
264
+ "reflect": true,
265
+ "defaultValue": "''"
266
+ },
267
+ "translationUrl": {
268
+ "type": "string",
269
+ "mutable": false,
270
+ "complexType": {
271
+ "original": "string",
272
+ "resolved": "string",
273
+ "references": {}
274
+ },
275
+ "required": false,
276
+ "optional": false,
277
+ "docs": {
278
+ "tags": [],
279
+ "text": "Translation via url"
280
+ },
281
+ "attribute": "translation-url",
282
+ "reflect": true,
283
+ "defaultValue": "''"
284
+ }
285
+ };
286
+ }
287
+ static get states() {
288
+ return {
289
+ "pointExpireString": {},
290
+ "playerElevateLevel": {},
291
+ "elevateWalletTotal": {},
292
+ "elevateSPTotal": {}
293
+ };
294
+ }
295
+ static get watchers() {
296
+ return [{
297
+ "propName": "session",
298
+ "methodName": "onSessionOrEndpointChange"
299
+ }, {
300
+ "propName": "endpoint",
301
+ "methodName": "onSessionOrEndpointChange"
302
+ }, {
303
+ "propName": "language",
304
+ "methodName": "onSessionOrEndpointChange"
305
+ }];
306
+ }
307
+ static get listeners() {
308
+ return [{
309
+ "name": "playerElevateLeveLoaded",
310
+ "method": "playerElevateLeveLoadedHandler",
311
+ "target": undefined,
312
+ "capture": false,
313
+ "passive": false
314
+ }];
315
+ }
316
+ }
@@ -0,0 +1,42 @@
1
+ <svg width="95" height="51" viewBox="0 0 95 51" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_bd_169_22604)">
3
+ <rect x="4" width="87" height="43" rx="14" fill="#26CC37" shape-rendering="crispEdges"/>
4
+ <rect x="5" y="1" width="85" height="41" rx="13" stroke="url(#paint0_linear_169_22604)" stroke-opacity="0.6"
5
+ stroke-width="2" shape-rendering="crispEdges"/>
6
+ <rect x="5" y="1" width="85" height="41" rx="13" stroke="url(#paint1_linear_169_22604)" stroke-width="2"
7
+ shape-rendering="crispEdges"/>
8
+ <rect x="5" y="1" width="85" height="41" rx="13" stroke="url(#paint2_linear_169_22604)" stroke-width="2"
9
+ shape-rendering="crispEdges"/>
10
+ </g>
11
+ <defs>
12
+ <filter id="filter0_bd_169_22604" x="-36" y="-40" width="167" height="123" filterUnits="userSpaceOnUse"
13
+ color-interpolation-filters="sRGB">
14
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
15
+ <feGaussianBlur in="BackgroundImageFix" stdDeviation="20"/>
16
+ <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_169_22604"/>
17
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
18
+ result="hardAlpha"/>
19
+ <feOffset dy="4"/>
20
+ <feGaussianBlur stdDeviation="2"/>
21
+ <feComposite in2="hardAlpha" operator="out"/>
22
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
23
+ <feBlend mode="normal" in2="effect1_backgroundBlur_169_22604" result="effect2_dropShadow_169_22604"/>
24
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_169_22604" result="shape"/>
25
+ </filter>
26
+ <linearGradient id="paint0_linear_169_22604" x1="107.683" y1="17.19" x2="78.0658" y2="19.0918"
27
+ gradientUnits="userSpaceOnUse">
28
+ <stop stop-color="white"/>
29
+ <stop offset="1" stop-color="#EFEFEF" stop-opacity="0"/>
30
+ </linearGradient>
31
+ <linearGradient id="paint1_linear_169_22604" x1="4" y1="0" x2="24.9374" y2="22.5174"
32
+ gradientUnits="userSpaceOnUse">
33
+ <stop stop-color="white" stop-opacity="0.5"/>
34
+ <stop offset="1" stop-color="white" stop-opacity="0"/>
35
+ </linearGradient>
36
+ <linearGradient id="paint2_linear_169_22604" x1="91" y1="43" x2="61.9374" y2="28.5031"
37
+ gradientUnits="userSpaceOnUse">
38
+ <stop stop-color="white" stop-opacity="0.5"/>
39
+ <stop offset="1" stop-color="white" stop-opacity="0"/>
40
+ </linearGradient>
41
+ </defs>
42
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="87" height="43" viewBox="0 0 87 43" fill="none"
2
+ xmlns="http://www.w3.org/2000/svg">
3
+ <rect width="87" height="43" rx="14" fill="#474A52"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="87" height="43" viewBox="0 0 87 43" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="1" y="1" width="85" height="41" rx="13" fill="#26CC37"/>
3
+ <rect x="1" y="1" width="85" height="41" rx="13" stroke="white" stroke-width="2"/>
4
+ </svg>
@@ -0,0 +1,27 @@
1
+ <svg width="190" height="75" viewBox="0 0 190 75" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_dd_179_4415)">
3
+ <path d="M16 20C16 15.5817 19.5817 12 24 12H151C155.418 12 159 15.5817 159 20V32C159 36.4183 155.418 40 151 40H24C19.5817 40 16 36.4183 16 32V20Z" fill="url(#paint0_linear_179_4415)" shape-rendering="crispEdges"/>
4
+ </g>
5
+ <defs>
6
+ <filter id="filter0_dd_179_4415" x="0.842043" y="0.631533" width="188.474" height="73.4739" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
7
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
8
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
9
+ <feOffset dx="7.57898" dy="11.3685"/>
10
+ <feGaussianBlur stdDeviation="11.3685"/>
11
+ <feComposite in2="hardAlpha" operator="out"/>
12
+ <feColorMatrix type="matrix" values="0 0 0 0 0.0862745 0 0 0 0 0.0980392 0 0 0 0 0.141176 0 0 0 0.25 0"/>
13
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_179_4415"/>
14
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
15
+ <feOffset dx="-2" dy="-2"/>
16
+ <feGaussianBlur stdDeviation="3.5"/>
17
+ <feComposite in2="hardAlpha" operator="out"/>
18
+ <feColorMatrix type="matrix" values="0 0 0 0 0.74902 0 0 0 0 0.470588 0 0 0 0 0.0235294 0 0 0 0.75 0"/>
19
+ <feBlend mode="normal" in2="effect1_dropShadow_179_4415" result="effect2_dropShadow_179_4415"/>
20
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_179_4415" result="shape"/>
21
+ </filter>
22
+ <linearGradient id="paint0_linear_179_4415" x1="87.5" y1="12" x2="87.5" y2="40" gradientUnits="userSpaceOnUse">
23
+ <stop stop-color="#FCC410"/>
24
+ <stop offset="1" stop-color="#FFBD2B" stop-opacity="0"/>
25
+ </linearGradient>
26
+ </defs>
27
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg width="95" height="51" viewBox="0 0 95 51" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_d_169_22603)">
3
+ <rect x="4" width="87" height="43" rx="14" fill="#008B0E" shape-rendering="crispEdges"/>
4
+ <rect x="5" y="1" width="85" height="41" rx="13" stroke="#71FF7F" stroke-width="2" shape-rendering="crispEdges"/>
5
+ </g>
6
+ <defs>
7
+ <filter id="filter0_d_169_22603" x="0" y="0" width="95" height="51" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
8
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
9
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
10
+ <feOffset dy="4"/>
11
+ <feGaussianBlur stdDeviation="2"/>
12
+ <feComposite in2="hardAlpha" operator="out"/>
13
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
14
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_169_22603"/>
15
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_169_22603" result="shape"/>
16
+ </filter>
17
+ </defs>
18
+ </svg>
@@ -0,0 +1,36 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="106" height="51" viewBox="0 0 106 51" fill="none">
2
+ <g filter="url(#filter0_bd_169_22606)">
3
+ <rect x="4" width="98" height="43" rx="14" fill="#26CC37" shape-rendering="crispEdges"/>
4
+
5
+
6
+ <rect x="5" y="1" width="96" height="41" rx="13" stroke="url(#paint0_linear_169_22606)" stroke-opacity="0.6" stroke-width="2" shape-rendering="crispEdges"/>
7
+ <rect x="5" y="1" width="96" height="41" rx="13" stroke="url(#paint1_linear_169_22606)" stroke-width="2" shape-rendering="crispEdges"/>
8
+ <rect x="5" y="1" width="96" height="41" rx="13" stroke="url(#paint2_linear_169_22606)" stroke-width="2" shape-rendering="crispEdges"/>
9
+ </g>
10
+ <defs>
11
+ <filter id="filter0_bd_169_22606" x="-36" y="-40" width="178" height="123" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feGaussianBlur in="BackgroundImageFix" stdDeviation="20"/>
14
+ <feComposite in2="SourceAlpha" operator="in" result="effect1_backgroundBlur_169_22606"/>
15
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
16
+ <feOffset dy="4"/>
17
+ <feGaussianBlur stdDeviation="2"/>
18
+ <feComposite in2="hardAlpha" operator="out"/>
19
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
20
+ <feBlend mode="normal" in2="effect1_backgroundBlur_169_22606" result="effect2_dropShadow_169_22606"/>
21
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_169_22606" result="shape"/>
22
+ </filter>
23
+ <linearGradient id="paint0_linear_169_22606" x1="120.793" y1="17.19" x2="87.4673" y2="19.6005" gradientUnits="userSpaceOnUse">
24
+ <stop stop-color="white"/>
25
+ <stop offset="1" stop-color="#EFEFEF" stop-opacity="0"/>
26
+ </linearGradient>
27
+ <linearGradient id="paint1_linear_169_22606" x1="4" y1="0" x2="24.6125" y2="24.9708" gradientUnits="userSpaceOnUse">
28
+ <stop stop-color="white" stop-opacity="0.5"/>
29
+ <stop offset="1" stop-color="white" stop-opacity="0"/>
30
+ </linearGradient>
31
+ <linearGradient id="paint2_linear_169_22606" x1="102" y1="43" x2="70.9273" y2="25.5407" gradientUnits="userSpaceOnUse">
32
+ <stop stop-color="white" stop-opacity="0.5"/>
33
+ <stop offset="1" stop-color="white" stop-opacity="0"/>
34
+ </linearGradient>
35
+ </defs>
36
+ </svg>