@devtron-labs/devtron-fe-common-lib 1.19.0-pre-6 → 1.19.1
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/dist/{@code-editor-C4ZrS_SZ.js → @code-editor-CIWrAu92.js} +8352 -8405
- package/dist/{@common-rjsf-CJeMTP5a.js → @common-rjsf-BtyeBkM1.js} +1 -1
- package/dist/Common/Common.service.d.ts +1 -1
- package/dist/Common/Constants.d.ts +0 -3
- package/dist/Common/ErrorPage.d.ts +1 -1
- package/dist/Common/ErrorScreenManager.d.ts +1 -1
- package/dist/Common/Helper.d.ts +1 -1
- package/dist/Common/Hooks/UseRegisterShortcut/index.d.ts +0 -1
- package/dist/Common/Hooks/UseRegisterShortcut/types.d.ts +0 -1
- package/dist/Common/Hooks/UseRegisterShortcut/utils.d.ts +1 -1
- package/dist/Common/RJSF/Form.d.ts +1 -1
- package/dist/Common/RJSF/utils.d.ts +1 -1
- package/dist/Common/Types.d.ts +5 -13
- package/dist/Common/index.d.ts +0 -1
- package/dist/Shared/Components/ActionMenu/useActionMenu.hook.d.ts +8 -8
- package/dist/Shared/Components/Backdrop/types.d.ts +2 -11
- package/dist/Shared/Components/Button/Button.component.d.ts +68 -68
- package/dist/Shared/Components/CodeEditor/utils.d.ts +1 -1
- package/dist/Shared/Components/DTFocusTrap/DTFocusTrap.d.ts +1 -1
- package/dist/Shared/Components/DTFocusTrap/types.d.ts +9 -0
- package/dist/Shared/Components/GenericModal/types.d.ts +1 -1
- package/dist/Shared/Components/Header/utils.d.ts +2 -2
- package/dist/Shared/Components/Icon/Icon.d.ts +1 -12
- package/dist/Shared/Components/Illustration/Illustration.d.ts +0 -1
- package/dist/Shared/Components/License/DevtronLicenseCard.d.ts +1 -1
- package/dist/Shared/Components/License/constants.d.ts +1 -0
- package/dist/Shared/Components/License/types.d.ts +4 -2
- package/dist/Shared/Components/License/utils.d.ts +2 -2
- package/dist/Shared/Components/MaterialHistory/MaterialHistory.component.d.ts +1 -1
- package/dist/Shared/Components/MaterialHistory/types.d.ts +2 -1
- package/dist/Shared/Components/Popover/utils.d.ts +1 -1
- package/dist/Shared/Components/Security/SecurityModal/utils.d.ts +1 -1
- package/dist/Shared/Components/Table/TableContent.d.ts +1 -1
- package/dist/Shared/Components/Table/types.d.ts +4 -8
- package/dist/Shared/Components/Table/utils.d.ts +1 -1
- package/dist/Shared/Components/index.d.ts +0 -1
- package/dist/Shared/Hooks/useUserPreferences/service.d.ts +1 -1
- package/dist/Shared/Hooks/useUserPreferences/types.d.ts +2 -31
- package/dist/Shared/Services/ToastManager/ToastContent.d.ts +1 -2
- package/dist/Shared/Services/ToastManager/constants.d.ts +2 -2
- package/dist/Shared/Services/ToastManager/toastManager.service.d.ts +1 -1
- package/dist/Shared/Services/ToastManager/types.d.ts +3 -23
- package/dist/Shared/Services/app.service.d.ts +3 -3
- package/dist/Shared/types.d.ts +9 -2
- package/dist/assets/@code-editor.css +1 -1
- package/dist/assets/ic-upgrade-enterprise.49cbd888.svg +320 -0
- package/dist/index.js +899 -903
- package/package.json +1 -1
- package/dist/Common/InteractiveCellText/InteractiveCellText.d.ts +0 -27
- package/dist/Common/InteractiveCellText/index.d.ts +0 -2
- package/dist/Common/InteractiveCellText/types.d.ts +0 -10
- package/dist/Shared/Components/KeyboardShortcut/KeyboardShortcut.component.d.ts +0 -3
- package/dist/Shared/Components/KeyboardShortcut/index.d.ts +0 -1
- package/dist/Shared/Components/KeyboardShortcut/types.d.ts +0 -4
- package/dist/assets/ic-diff-added.6ef6f938.svg +0 -3
- package/dist/assets/ic-diff-deleted.54eb24dd.svg +0 -3
- package/dist/assets/ic-diff-updated.294b925e.svg +0 -4
- package/dist/assets/ic-group-filter-applied.2cdb11e7.svg +0 -20
- package/dist/assets/ic-group-filter.ed1869f5.svg +0 -19
- package/dist/assets/ic-input.57281408.svg +0 -3
- package/dist/assets/ic-locked.dd40e181.svg +0 -3
- package/dist/assets/ic-storage.03f282b6.svg +0 -21
- package/dist/assets/ic-tag.5fdc7834.svg +0 -3
- package/dist/assets/ic-warning-fill.bfea8b38.svg +0 -4
- package/dist/assets/img-mechanical-operation.04a318d6.svg +0 -17
@@ -0,0 +1,320 @@
|
|
1
|
+
<svg width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<style>
|
3
|
+
.diamond {
|
4
|
+
animation: obj-rotate 3s forwards ease;
|
5
|
+
transform-origin: center;
|
6
|
+
transform-box: fill-box;
|
7
|
+
}
|
8
|
+
|
9
|
+
@keyframes obj-rotate {
|
10
|
+
0% {transform: rotate(-90deg);}
|
11
|
+
30% {transform: rotate(0deg);}
|
12
|
+
100% {transform: rotate(0deg);}
|
13
|
+
}
|
14
|
+
.shape-bottom-left {
|
15
|
+
animation: anim-bottom-left 3s forwards ease;
|
16
|
+
transform-origin: center;
|
17
|
+
transform-box: fill-box;
|
18
|
+
}
|
19
|
+
|
20
|
+
@keyframes anim-bottom-left {
|
21
|
+
0% {
|
22
|
+
d: path("M59.5 160L4.5 132L60 226.5L59.5 160Z"); opacity: 0;
|
23
|
+
}
|
24
|
+
25% {
|
25
|
+
d: path("M59.5 160L4.5 132L60 226.5L59.5 160Z"); opacity: .2;
|
26
|
+
}
|
27
|
+
100% {
|
28
|
+
d: path("M2 83.6167L113.5 240L58.5 126.737L2 83.6167Z"); opacity: 1;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
.shape-bottom-right {
|
33
|
+
animation: anim-bottom-right 3s forwards ease;
|
34
|
+
transform-origin: center;
|
35
|
+
transform-box: fill-box;
|
36
|
+
}
|
37
|
+
|
38
|
+
@keyframes anim-bottom-right {
|
39
|
+
0% {
|
40
|
+
d: path("M191.5 160.289L246.5 132L192 226L191.5 160.289Z"); opacity: 0;
|
41
|
+
}
|
42
|
+
25% {
|
43
|
+
d: path("M191.5 160.289L246.5 132L192 226L191.5 160.289Z"); opacity: .2;
|
44
|
+
}
|
45
|
+
100% {
|
46
|
+
d: path("M197 126.7L248 85.3701L135.5 240L197 126.7Z"); opacity: 1;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
.shape-bottom-front {
|
51
|
+
animation: anim-bottom-front 3s forwards ease;
|
52
|
+
transform-origin: center;
|
53
|
+
transform-box: fill-box;
|
54
|
+
}
|
55
|
+
|
56
|
+
@keyframes anim-bottom-front {
|
57
|
+
0% {
|
58
|
+
d: path("M125.5 199.5L71 232.999H180L125.5 199.5Z"); opacity: 0;
|
59
|
+
}
|
60
|
+
25% {
|
61
|
+
d: path("M125.5 199.5L71 232.999H180L125.5 199.5Z"); opacity: .2;
|
62
|
+
}
|
63
|
+
100% {
|
64
|
+
d: path("M125 243L70 127H180.706L125 243Z"); opacity: 1;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
.shape-top-tl {
|
69
|
+
animation: anim-top-tl 2.8s forwards ease;
|
70
|
+
transform-origin: center;
|
71
|
+
transform-box: fill-box;
|
72
|
+
}
|
73
|
+
|
74
|
+
@keyframes anim-top-tl {
|
75
|
+
0% {
|
76
|
+
d: path("M78.5 56.7344L42.7498 119L3.66296 119L58.8896 23L78.5 56.7344Z"); opacity: 1;
|
77
|
+
}
|
78
|
+
25% {
|
79
|
+
d: path("M78.5 56.7344L42.7498 119L3.66296 119L58.8896 23L78.5 56.7344Z"); opacity: 1;
|
80
|
+
}
|
81
|
+
100% {
|
82
|
+
d: path("M35 43L7.5 73.5L4.51562 73.5L33.5 42.5L35 43Z"); opacity: 0;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
|
86
|
+
.shape-top-front {
|
87
|
+
animation: anim-top-bottom 3s forwards ease;
|
88
|
+
transform-origin: center;
|
89
|
+
transform-box: fill-box;
|
90
|
+
}
|
91
|
+
|
92
|
+
@keyframes anim-top-bottom {
|
93
|
+
0% {
|
94
|
+
d: path("M161.707 199.402L90.1915 199.402L70.7853 233.252L181.415 233.252L161.707 199.402Z");
|
95
|
+
}
|
96
|
+
25% {
|
97
|
+
d: path("M161.707 199.402L90.1915 199.402L70.7853 233.252L181.415 233.252L161.707 199.402Z");
|
98
|
+
}
|
99
|
+
100% {
|
100
|
+
d: path("M166.67 68.5L83.6699 68.5L70 116.999L180.67 116.999L166.67 68.5Z");
|
101
|
+
}
|
102
|
+
}
|
103
|
+
|
104
|
+
.shape-top-bl {
|
105
|
+
animation: anim-top-bl 3s forwards ease;
|
106
|
+
transform-origin: center;
|
107
|
+
transform-box: fill-box;
|
108
|
+
}
|
109
|
+
|
110
|
+
@keyframes anim-top-bl {
|
111
|
+
0% {
|
112
|
+
d: path("M43.0001 132L79 193.5L59.5 227.711L3.87202 131.979L43.0001 132Z");
|
113
|
+
}
|
114
|
+
25% {
|
115
|
+
d: path("M43.0001 132L79 193.5L59.5 227.711L3.87202 131.979L43.0001 132Z");
|
116
|
+
}
|
117
|
+
100% {
|
118
|
+
d: path("M33.5 41.5L73.5 65L59.5 114L4 73.5L33.5 41.5Z");
|
119
|
+
}
|
120
|
+
}
|
121
|
+
|
122
|
+
.shape-top-br {
|
123
|
+
animation: anim-top-br 3s forwards ease;
|
124
|
+
transform-origin: center;
|
125
|
+
transform-box: fill-box;
|
126
|
+
}
|
127
|
+
|
128
|
+
@keyframes anim-top-br {
|
129
|
+
0% {
|
130
|
+
d: path("M208 132L247 132L192 226.5L172.5 193L208 132Z");
|
131
|
+
}
|
132
|
+
25% {
|
133
|
+
d: path("M208 132L247 132L192 226.5L172.5 193L208 132Z");
|
134
|
+
}
|
135
|
+
100% {
|
136
|
+
d: path("M216.5 41L248.5 75.5L194 115.5L177.5 64.5L216.5 41Z");
|
137
|
+
}
|
138
|
+
}
|
139
|
+
|
140
|
+
.shape-top-face {
|
141
|
+
animation: anim-top-face 3s forwards ease;
|
142
|
+
transform-origin: center;
|
143
|
+
transform-box: fill-box;
|
144
|
+
}
|
145
|
+
|
146
|
+
@keyframes anim-top-face {
|
147
|
+
0% {
|
148
|
+
d: path("M96.6555 75.9063L153.343 75.9062L181.687 124.999L153.343 174.092L96.6555 174.092L68.3118 124.999L96.6555 75.9063Z");
|
149
|
+
}
|
150
|
+
25% {
|
151
|
+
d: path("M96.6555 75.9063L153.343 75.9062L181.687 124.999L153.343 174.092L96.6555 174.092L68.3118 124.999L96.6555 75.9063Z");
|
152
|
+
}
|
153
|
+
100% {
|
154
|
+
d: path("M83.5 9L166.5 9L209 34L166.5 58.5L83.5 58.5L41 34L83.5 9Z");
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
.shape-top-back {
|
159
|
+
animation: anim-top-tf 2.5s forwards ease;
|
160
|
+
transform-origin: center;
|
161
|
+
transform-box: fill-box;
|
162
|
+
}
|
163
|
+
|
164
|
+
@keyframes anim-top-tf {
|
165
|
+
0% {
|
166
|
+
d: path("M89.3207 50.5973L160.863 50.5978L180.33 16.7476L69.7941 16.7471L89.3207 50.5973Z"); opacity: 1;
|
167
|
+
}
|
168
|
+
25% {
|
169
|
+
d: path("M89.3207 50.5973L160.863 50.5978L180.33 16.7476L69.7941 16.7471L89.3207 50.5973Z"); opacity: 1;
|
170
|
+
}
|
171
|
+
100% {
|
172
|
+
d: path("M97.0755 13L155.973 13L172 11L81 11L97.0755 13Z"); opacity: .1;
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
176
|
+
.shape-top-tr {
|
177
|
+
animation: anim-top-tr 2.8s forwards ease;
|
178
|
+
transform-origin: center;
|
179
|
+
transform-box: fill-box;
|
180
|
+
}
|
181
|
+
|
182
|
+
@keyframes anim-top-tr {
|
183
|
+
0% {
|
184
|
+
d: path("M191 23L171.62 57L207.54 119L246.663 119L191 23Z"); opacity: 1;
|
185
|
+
}
|
186
|
+
25% {
|
187
|
+
d: path("M191 23L171.62 57L207.54 119L246.663 119L191 23Z"); opacity: 1;
|
188
|
+
}
|
189
|
+
100% {
|
190
|
+
d: path("M215.5 42L214 43L242.5 73.5L244.5 73.5L215.5 42Z"); opacity: 0;
|
191
|
+
}
|
192
|
+
}
|
193
|
+
|
194
|
+
.small-star {
|
195
|
+
animation: twinkle 2.9s infinite ease;
|
196
|
+
transform-origin: center center;
|
197
|
+
transform-box: fill-box;
|
198
|
+
}
|
199
|
+
|
200
|
+
.big-star {
|
201
|
+
animation: twinkle 2.6s infinite ease;
|
202
|
+
transform-origin: center center;
|
203
|
+
transform-box: fill-box;
|
204
|
+
}
|
205
|
+
|
206
|
+
@keyframes twinkle {
|
207
|
+
0% { transform: rotate(0deg) scale(0); opacity: 0;}
|
208
|
+
60% { transform: rotate(0deg) scale(0); opacity: 1;}
|
209
|
+
80% { transform: rotate(180deg) scale(1); opacity: 1;}
|
210
|
+
100% { transform: rotate(360deg) scale(0); opacity: 0;}
|
211
|
+
}
|
212
|
+
}
|
213
|
+
</style>
|
214
|
+
<g class="diamond">
|
215
|
+
<path class="shape-top-tr" d="M191 23L171.62 57L207.54 119H246.663L191 23Z" fill="url(#paint8_linear_637_2386)"/>
|
216
|
+
<path class="shape-bottom-left" d="M59.5 160L4.5 132L60 226.5L59.5 160Z" fill="url(#paint6_linear_637_2386)"/>
|
217
|
+
<path class="shape-bottom-right" d="M191.5 160.289L246.5 132L192 226L191.5 160.289Z" fill="url(#paint2_linear_637_2386)"/>
|
218
|
+
<path class="shape-bottom-front" d="M125.5 199.5L71 232.999H180L125.5 199.5Z" fill="url(#paint4_linear_637_2386)"/>
|
219
|
+
<path class="shape-top-back" d="M89.3207 50.5973L160.863 50.5978L180.33 16.7476L69.7941 16.7471L89.3207 50.5973Z" fill="url(#paint0_linear_637_2386)"/>
|
220
|
+
<path class="shape-top-tl" d="M78.5 56.7344L42.7498 119H3.66296L58.8896 23L78.5 56.7344Z" fill="url(#paint1_linear_637_2386)"/>
|
221
|
+
<path class="shape-top-bl" d="M43.0001 132L79 193.5L59.5 227.711L3.87202 131.979L43.0001 132Z" fill="url(#paint7_linear_637_2386)"/>
|
222
|
+
<path class="shape-top-face" d="M96.6555 75.9063L153.343 75.9062L181.687 124.999L153.343 174.092H96.6555L68.3118 124.999L96.6555 75.9063Z" fill="url(#paint9_linear_637_2386)"/>
|
223
|
+
<path class="shape-top-br" d="M208 132H247L192 226.5L172.5 193L208 132Z" fill="url(#paint3_linear_637_2386)"/>
|
224
|
+
<path class="shape-top-front" d="M161.707 199.402H90.1915L70.7853 233.252H181.415L161.707 199.402Z" fill="url(#paint5_linear_637_2386)"/>
|
225
|
+
<path class="big-star" d="M195 62C195 62 194.739 92.6268 207.056 104.944C219.373 117.261 250 117 250 117C250 117 219.373 116.739 207.056 129.056C194.739 141.373 195 172 195 172C195 172 195.261 141.373 182.944 129.056C170.627 116.739 140 117 140 117C140 117 170.627 117.261 182.944 104.944C195.261 92.6268 195 62 195 62Z" fill="#FFFCD0"/>
|
226
|
+
<path class="small-star" d="M44 12C44 12 43.8577 28.7055 50.5761 35.4239C57.2945 42.1423 74 42 74 42C74 42 57.2945 41.8577 50.5761 48.5761C43.8577 55.2945 44 72 44 72C44 72 44.1423 55.2945 37.4239 48.5761C30.7055 41.8577 14 42 14 42C14 42 30.7055 42.1423 37.4239 35.4239C44.1423 28.7055 44 12 44 12Z" fill="#FFFCD0"/>
|
227
|
+
<defs>
|
228
|
+
<linearGradient id="paint0_linear_637_2386" gradientUnits="userSpaceOnUse">
|
229
|
+
<stop offset="0%" stop-color="#F7E373">
|
230
|
+
<animate attributeName="stop-color" values="#F7E373;#F7E373" dur="3s" fill="freeze" />
|
231
|
+
</stop>
|
232
|
+
<stop offset="100%" stop-color="#FC9500">
|
233
|
+
<animate attributeName="stop-color" values="#FC9500;#FC9500" dur="3s" fill="freeze" />
|
234
|
+
</stop>
|
235
|
+
</linearGradient>
|
236
|
+
|
237
|
+
<linearGradient id="paint1_linear_637_2386" gradientUnits="userSpaceOnUse">
|
238
|
+
<stop offset="0%" stop-color="#FFCF08">
|
239
|
+
<animate attributeName="stop-color" values="#FFCF08;#F99A00" dur="3s" fill="freeze" />
|
240
|
+
</stop>
|
241
|
+
<stop offset="100%" stop-color="#E37600">
|
242
|
+
<animate attributeName="stop-color" values="#E37600;#FFD800" dur="3s" fill="freeze" />
|
243
|
+
</stop>
|
244
|
+
</linearGradient>
|
245
|
+
|
246
|
+
<linearGradient id="paint2_linear_637_2386" gradientUnits="userSpaceOnUse">
|
247
|
+
<stop offset="55%" stop-color="#C64200">
|
248
|
+
<animate attributeName="stop-color" values="#FF9518;#C64200" dur="3s" fill="freeze" />
|
249
|
+
</stop>
|
250
|
+
<stop offset="95%" stop-color="#FF9518">
|
251
|
+
<animate attributeName="stop-color" values="#C64200;#FF9518" dur="3s" fill="freeze" />
|
252
|
+
</stop>
|
253
|
+
</linearGradient>
|
254
|
+
|
255
|
+
<linearGradient id="paint3_linear_637_2386" gradientUnits="userSpaceOnUse">
|
256
|
+
<stop offset="75%" stop-color="#F7E373">
|
257
|
+
<animate attributeName="stop-color" values="#FC9500;#F7E373" dur="3s" fill="freeze" />
|
258
|
+
</stop>
|
259
|
+
<stop offset="90%" stop-color="#FC9500">
|
260
|
+
<animate attributeName="stop-color" values="#F7E373;#FC9500" dur="3s" fill="freeze" />
|
261
|
+
</stop>
|
262
|
+
</linearGradient>
|
263
|
+
|
264
|
+
<linearGradient id="paint4_linear_637_2386" gradientUnits="userSpaceOnUse">
|
265
|
+
<stop offset="32%" stop-color="#DA5724">
|
266
|
+
<animate attributeName="stop-color" values="#FCAC1A;#DA5724" dur="3s" fill="freeze" />
|
267
|
+
</stop>
|
268
|
+
<stop offset="60%" stop-color="#FCAC1A">
|
269
|
+
<animate attributeName="stop-color" values="#DA5724;#FCAC1A" dur="3s" fill="freeze" />
|
270
|
+
</stop>
|
271
|
+
</linearGradient>
|
272
|
+
|
273
|
+
<linearGradient id="paint5_linear_637_2386" gradientUnits="userSpaceOnUse">
|
274
|
+
<stop offset="0%" stop-color="#EA8101">
|
275
|
+
<animate attributeName="stop-color" values="#FFF000;#EA8101" dur="2s" fill="freeze" />
|
276
|
+
</stop>
|
277
|
+
<stop offset="80%" stop-color="#FFF000">
|
278
|
+
<animate attributeName="stop-color" values="#FFF000;#FFF000" dur="2s" fill="freeze" />
|
279
|
+
</stop>
|
280
|
+
</linearGradient>
|
281
|
+
|
282
|
+
<linearGradient id="paint6_linear_637_2386" gradientUnits="userSpaceOnUse">
|
283
|
+
<stop offset="0%" stop-color="#CC501F">
|
284
|
+
<animate attributeName="stop-color" values="#D97600;#CC501F" dur="3s" fill="freeze" />
|
285
|
+
</stop>
|
286
|
+
<stop offset="40%" stop-color="#D97600">
|
287
|
+
<animate attributeName="stop-color" values="#CC501F;#D97600" dur="3s" fill="freeze" />
|
288
|
+
</stop>
|
289
|
+
</linearGradient>
|
290
|
+
|
291
|
+
<linearGradient id="paint7_linear_637_2386" gradientUnits="userSpaceOnUse">
|
292
|
+
<stop offset="8%" stop-color="#E37600">
|
293
|
+
<animate attributeName="stop-color" values="#FFCF08;#E37600" dur="3s" fill="freeze" />
|
294
|
+
</stop>
|
295
|
+
<stop offset="30%" stop-color="#FFCF08">
|
296
|
+
<animate attributeName="stop-color" values="#E37600;#FFCF08" dur="3s" fill="freeze" />
|
297
|
+
</stop>
|
298
|
+
</linearGradient>
|
299
|
+
|
300
|
+
<linearGradient id="paint8_linear_637_2386" gradientUnits="userSpaceOnUse">
|
301
|
+
<stop offset="0%" stop-color="#F7E373">
|
302
|
+
<animate attributeName="stop-color" values="#F7E373;#F7E373" dur="3s" fill="freeze" />
|
303
|
+
</stop>
|
304
|
+
<stop offset="100%" stop-color="#FC9500">
|
305
|
+
<animate attributeName="stop-color" values="#FC9500;#FC9500" dur="3s" fill="freeze" />
|
306
|
+
</stop>
|
307
|
+
</linearGradient>
|
308
|
+
|
309
|
+
<linearGradient id="paint9_linear_637_2386" gradientUnits="userSpaceOnUse">
|
310
|
+
<stop offset="30%" stop-color="#F99A00">
|
311
|
+
<animate attributeName="stop-color" values="#FFD800;#F99A00" dur="3s" fill="freeze" />
|
312
|
+
</stop>
|
313
|
+
<stop offset="55%" stop-color="#FFD800">
|
314
|
+
<animate attributeName="stop-color" values="#F99A00;#FFD800" dur="3s" fill="freeze" />
|
315
|
+
</stop>
|
316
|
+
</linearGradient>
|
317
|
+
</defs>
|
318
|
+
|
319
|
+
</g>
|
320
|
+
</svg>
|