@mparticle/aquarium 1.33.1-fix-exported-types.1 → 1.33.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.
@@ -5,5 +5,5 @@ export interface IFloatButtonProps extends AntFloatButtonProps {
5
5
  export declare const FloatButton: {
6
6
  (props: IFloatButtonProps): import("react/jsx-runtime").JSX.Element;
7
7
  BackTop: import("react").ForwardRefExoticComponent<import("antd/es/float-button/interface").BackTopProps & import("react").RefAttributes<import("antd").FloatButtonRef>>;
8
- Group: import("react").FC<Readonly<import("antd").FloatButtonGroupProps>>;
8
+ Group: import("react").NamedExoticComponent<import("antd").FloatButtonGroupProps>;
9
9
  };
@@ -15,6 +15,6 @@ export declare const Menu: {
15
15
  (props: IMenuProps): import("react/jsx-runtime").JSX.Element;
16
16
  SubMenu: import("react").FC<import("antd").SubMenuProps>;
17
17
  Item: Omit<import("react").FunctionComponent<import("antd").MenuItemProps>, ""> & (<T extends import("antd").MenuItemProps>(props: T extends infer U extends import("antd").MenuItemProps ? unknown extends U ? import("antd").MenuItemProps : U : import("antd").MenuItemProps, context?: any) => import("react").ReactNode);
18
- ItemGroup: import("react").ForwardRefExoticComponent<Omit<import("rc-menu").MenuItemGroupProps, "ref"> & import("react").RefAttributes<HTMLLIElement>>;
18
+ ItemGroup: import("react").ForwardRefExoticComponent<Pick<import("rc-menu").MenuItemGroupProps, "className" | "style" | "title" | "children" | "eventKey" | "warnKey"> & import("react").RefAttributes<HTMLLIElement>>;
19
19
  Divider: import("react").FC<import("antd/es/menu").MenuDividerProps>;
20
20
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mparticle/aquarium",
3
- "version": "1.33.1-fix-exported-types.1",
3
+ "version": "1.33.1",
4
4
  "description": "mParticle Component Library",
5
5
  "license": "Apache-2.0",
6
6
  "keywords": [
@@ -17,12 +17,18 @@
17
17
  "main": "dist/aquarium.umd.cjs",
18
18
  "module": "dist/aquarium.js",
19
19
  "files": [
20
- "dist"
20
+ "dist/aquarium.umd.cjs",
21
+ "dist/aquarium.js",
22
+ "dist/index.d.ts",
23
+ "dist/style.css",
24
+ "dist/style.ts",
25
+ "dist/src"
21
26
  ],
22
27
  "peerDependencies": {
23
- "antd": ">=5.20.0",
28
+ "antd": "5.20.x",
24
29
  "react": ">=17.0.2",
25
- "react-dom": ">=17.0.2"
30
+ "react-dom": ">=17.0.2",
31
+ "dayjs": "1.11.x"
26
32
  },
27
33
  "devDependencies": {
28
34
  "@commitlint/cli": "19.2.1",
@@ -1,427 +0,0 @@
1
- :root {
2
- --blue: #1677FF;
3
- --purple: #722ED1;
4
- --cyan: #13C2C2;
5
- --green: #52C41A;
6
- --magenta: #EB2F96;
7
- --pink: #EB2F96;
8
- --red: #F5222D;
9
- --orange: #FA8C16;
10
- --yellow: #FADB14;
11
- --volcano: #FA541C;
12
- --geekblue: #2F54EB;
13
- --gold: #FAAD14;
14
- --lime: #A0D911;
15
- --color-primary: #3600d1;
16
- --color-success: #52c41a;
17
- --color-warning: #faad14;
18
- --color-error: #ff4d4f;
19
- --color-info: #3600d1;
20
- --color-link: #3600d1;
21
- --color-text-base: #000;
22
- --color-bg-base: #fff;
23
- --font-family: 'GT America', -system-ui, sans-serif;
24
- --font-family-code: ‘Roboto Mono’, monospace;
25
- --font-size: 14px;
26
- --line-width: 1px;
27
- --line-type: solid;
28
- --motion-unit: 0.1;
29
- --motion-base: 0;
30
- --motion-ease-out-circ: cubic-bezier(0.08, 0.82, 0.17, 1);
31
- --motion-ease-in-out-circ: cubic-bezier(0.78, 0.14, 0.15, 0.86);
32
- --motion-ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
33
- --motion-ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
34
- --motion-ease-out-back: cubic-bezier(0.12, 0.4, 0.29, 1.46);
35
- --motion-ease-in-back: cubic-bezier(0.71, -0.46, 0.88, 0.6);
36
- --motion-ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
37
- --motion-ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
38
- --border-radius: 6px;
39
- --size-unit: 4px;
40
- --size-step: 4px;
41
- --size-popup-arrow: 16px;
42
- --control-height: 32px;
43
- --z-index-base: 0;
44
- --z-index-popup-base: 1000;
45
- --opacity-image: 1;
46
- --wireframe: false;
47
- --motion: true;
48
- --color-text: rgba(0, 0, 0, 0.95);
49
- --color-text-secondary: rgba(0, 0, 0, 0.75);
50
- --color-text-tertiary: rgba(0, 0, 0, 0.55);
51
- --color-text-quaternary: rgba(0, 0, 0, 0.4);
52
- --color-border: #c3aeff;
53
- --color-border-secondary: #eceae9;
54
- --color-fill: rgba(32, 0, 122, 0.15);
55
- --color-fill-secondary: rgba(32, 0, 122, 0.06);
56
- --color-fill-tertiary: rgba(32, 0, 122, 0.04);
57
- --color-fill-quaternary: rgba(32, 0, 122, 0.02);
58
- --color-info-bg: #f8f6fb;
59
- --color-info-bg-hover: #ebe8f8;
60
- --color-info-border: #c3aeff;
61
- --color-info-border-hover: #ab8eff;
62
- --color-info-hover: #5f29f8;
63
- --color-info-active: #2c00aa;
64
- --color-info-text-hover: #5f29f8;
65
- --color-info-text: #2c00aa;
66
- --color-info-text-active: #20007a;
67
- --color-primary-bg: #f8f6fb;
68
- --color-primary-bg-hover: #ebe8f8;
69
- --color-primary-border: #c3aeff;
70
- --color-primary-border-hover: #ab8eff;
71
- --color-primary-hover: #5f29f8;
72
- --color-primary-active: #2c00aa;
73
- --color-primary-text-hover: #5f29f8;
74
- --color-primary-text: #2c00aa;
75
- --color-primary-text-active: #20007a;
76
- --control-outline: rgba(54, 0, 209, 0.1);
77
- --font-weight-strong: 500;
78
- --color-fill-alter-solid: #f8f6fb;
79
- --color-filled-handle-bg: #ebe8f8;
80
- --mp-brand-primary-1: #f8f6fb;
81
- --mp-brand-primary-2: #ebe8f8;
82
- --mp-brand-primary-3: #dbceff;
83
- --mp-brand-primary-4: #c3aeff;
84
- --mp-brand-primary-5: #ab8eff;
85
- --mp-brand-primary-6: #8255ff;
86
- --mp-brand-primary-7: #5f29f8;
87
- --mp-brand-primary-8: #3600d1;
88
- --mp-brand-primary-9: #2c00aa;
89
- --mp-brand-primary-10: #20007a;
90
- --mp-brand-secondary-1: #ffffff;
91
- --mp-brand-secondary-2: #faf9f8;
92
- --mp-brand-secondary-3: #eceae9;
93
- --mp-brand-secondary-4: #dcdcd8;
94
- --mp-brand-secondary-5: #babbb5;
95
- --mp-brand-secondary-6: #717368;
96
- --mp-brand-secondary-7: #505249;
97
- --mp-brand-secondary-8: #2c2d2b;
98
- --mp-brand-secondary-9: #212020;
99
- --mp-brand-secondary-10: #0f0e0e;
100
- --mp-color-icon-strong: #0f0e0e;
101
- --mp-color-icon-brand: #20007a;
102
- --mp-color-border-disabled: #dcdcd8;
103
- --mp-icon-size-xs: 12px;
104
- --mp-icon-size-sm: 16px;
105
- --mp-icon-size-md: 20px;
106
- --mp-icon-size-lg: 24px;
107
- --mp-icon-size-xl: 28px;
108
- --mp-icon-size-xxl: 32px;
109
- --mp-icon-size-xxxl: 40px;
110
- --mp-icon-size-xxxxl: 48px;
111
- --mp-query-item-height: 32px;
112
- --mp-query-item-padding: 4px;
113
- --mp-query-item-gap: 4px;
114
- --mp-query-item-border-width: 0 0 1px 0;
115
- --mp-query-item-border-width-active: 0 0 2px 0;
116
- --mp-query-item-border-radius: 2px;
117
- --mp-query-item-border-color: #c3aeff;
118
- --mp-query-item-border-color-focus: #3600d1;
119
- --mp-query-item-border-color-hover: #3600d1;
120
- --mp-query-item-border-color-active: #3600d1;
121
- --mp-query-item-border-color-disabled: #dcdcd8;
122
- --mp-query-item-border-color-error: #ff4d4f;
123
- --mp-query-item-bg-color: #ffffff;
124
- --mp-query-item-bg-color-hover: #f8f6fb;
125
- --mp-query-item-bg-color-active: #ebe8f8;
126
- --mp-query-item-bg-color-disabled: rgba(15, 14, 14, 0.04);
127
- --mp-query-item-color-disabled: rgba(0, 0, 0, 0.4);
128
- --mp-query-item-shadow: none;
129
- --mp-query-item-shadow-focus: 0 0 0 2px rgba(54, 0, 209, 0.1);
130
- --mp-query-item-shadow-active: 0 0 0 2px rgba(54, 0, 209, 0.1);
131
- --mp-query-item-value-selector-font-weight: 500;
132
- --mp-query-item-value-selector-color: #20007a;
133
- --mp-query-item-action-primary-color: #3600d1;
134
- --mp-query-item-action-secondary-color: rgba(0, 0, 0, 0.55);
135
- --mp-query-item-action-font-weight: 400;
136
- --blue1: #e6f4ff;
137
- --blue2: #bae0ff;
138
- --blue3: #91caff;
139
- --blue4: #69b1ff;
140
- --blue5: #4096ff;
141
- --blue6: #1677ff;
142
- --blue7: #0958d9;
143
- --blue8: #003eb3;
144
- --blue9: #002c8c;
145
- --blue10: #001d66;
146
- --purple1: #f9f0ff;
147
- --purple2: #efdbff;
148
- --purple3: #d3adf7;
149
- --purple4: #b37feb;
150
- --purple5: #9254de;
151
- --purple6: #722ed1;
152
- --purple7: #531dab;
153
- --purple8: #391085;
154
- --purple9: #22075e;
155
- --purple10: #120338;
156
- --cyan1: #e6fffb;
157
- --cyan2: #b5f5ec;
158
- --cyan3: #87e8de;
159
- --cyan4: #5cdbd3;
160
- --cyan5: #36cfc9;
161
- --cyan6: #13c2c2;
162
- --cyan7: #08979c;
163
- --cyan8: #006d75;
164
- --cyan9: #00474f;
165
- --cyan10: #002329;
166
- --green1: #f6ffed;
167
- --green2: #d9f7be;
168
- --green3: #b7eb8f;
169
- --green4: #95de64;
170
- --green5: #73d13d;
171
- --green6: #52c41a;
172
- --green7: #389e0d;
173
- --green8: #237804;
174
- --green9: #135200;
175
- --green10: #092b00;
176
- --magenta1: #fff0f6;
177
- --magenta2: #ffd6e7;
178
- --magenta3: #ffadd2;
179
- --magenta4: #ff85c0;
180
- --magenta5: #f759ab;
181
- --magenta6: #eb2f96;
182
- --magenta7: #c41d7f;
183
- --magenta8: #9e1068;
184
- --magenta9: #780650;
185
- --magenta10: #520339;
186
- --pink1: #fff0f6;
187
- --pink2: #ffd6e7;
188
- --pink3: #ffadd2;
189
- --pink4: #ff85c0;
190
- --pink5: #f759ab;
191
- --pink6: #eb2f96;
192
- --pink7: #c41d7f;
193
- --pink8: #9e1068;
194
- --pink9: #780650;
195
- --pink10: #520339;
196
- --red1: #fff1f0;
197
- --red2: #ffccc7;
198
- --red3: #ffa39e;
199
- --red4: #ff7875;
200
- --red5: #ff4d4f;
201
- --red6: #f5222d;
202
- --red7: #cf1322;
203
- --red8: #a8071a;
204
- --red9: #820014;
205
- --red10: #5c0011;
206
- --orange1: #fff7e6;
207
- --orange2: #ffe7ba;
208
- --orange3: #ffd591;
209
- --orange4: #ffc069;
210
- --orange5: #ffa940;
211
- --orange6: #fa8c16;
212
- --orange7: #d46b08;
213
- --orange8: #ad4e00;
214
- --orange9: #873800;
215
- --orange10: #612500;
216
- --yellow1: #feffe6;
217
- --yellow2: #ffffb8;
218
- --yellow3: #fffb8f;
219
- --yellow4: #fff566;
220
- --yellow5: #ffec3d;
221
- --yellow6: #fadb14;
222
- --yellow7: #d4b106;
223
- --yellow8: #ad8b00;
224
- --yellow9: #876800;
225
- --yellow10: #614700;
226
- --volcano1: #fff2e8;
227
- --volcano2: #ffd8bf;
228
- --volcano3: #ffbb96;
229
- --volcano4: #ff9c6e;
230
- --volcano5: #ff7a45;
231
- --volcano6: #fa541c;
232
- --volcano7: #d4380d;
233
- --volcano8: #ad2102;
234
- --volcano9: #871400;
235
- --volcano10: #610b00;
236
- --geekblue1: #f0f5ff;
237
- --geekblue2: #d6e4ff;
238
- --geekblue3: #adc6ff;
239
- --geekblue4: #85a5ff;
240
- --geekblue5: #597ef7;
241
- --geekblue6: #2f54eb;
242
- --geekblue7: #1d39c4;
243
- --geekblue8: #10239e;
244
- --geekblue9: #061178;
245
- --geekblue10: #030852;
246
- --gold1: #fffbe6;
247
- --gold2: #fff1b8;
248
- --gold3: #ffe58f;
249
- --gold4: #ffd666;
250
- --gold5: #ffc53d;
251
- --gold6: #faad14;
252
- --gold7: #d48806;
253
- --gold8: #ad6800;
254
- --gold9: #874d00;
255
- --gold10: #613400;
256
- --lime1: #fcffe6;
257
- --lime2: #f4ffb8;
258
- --lime3: #eaff8f;
259
- --lime4: #d3f261;
260
- --lime5: #bae637;
261
- --lime6: #a0d911;
262
- --lime7: #7cb305;
263
- --lime8: #5b8c00;
264
- --lime9: #3f6600;
265
- --lime10: #254000;
266
- --color-bg-layout: #f5f5f5;
267
- --color-bg-container: #ffffff;
268
- --color-bg-elevated: #ffffff;
269
- --color-bg-spotlight: rgba(0, 0, 0, 0.85);
270
- --color-bg-blur: transparent;
271
- --color-success-bg: #f6ffed;
272
- --color-success-bg-hover: #d9f7be;
273
- --color-success-border: #b7eb8f;
274
- --color-success-border-hover: #95de64;
275
- --color-success-hover: #95de64;
276
- --color-success-active: #389e0d;
277
- --color-success-text-hover: #73d13d;
278
- --color-success-text: #52c41a;
279
- --color-success-text-active: #389e0d;
280
- --color-error-bg: #fff2f0;
281
- --color-error-bg-hover: #fff1f0;
282
- --color-error-bg-active: #ffccc7;
283
- --color-error-border: #ffccc7;
284
- --color-error-border-hover: #ffa39e;
285
- --color-error-hover: #ff7875;
286
- --color-error-active: #d9363e;
287
- --color-error-text-hover: #ff7875;
288
- --color-error-text: #ff4d4f;
289
- --color-error-text-active: #d9363e;
290
- --color-warning-bg: #fffbe6;
291
- --color-warning-bg-hover: #fff1b8;
292
- --color-warning-border: #ffe58f;
293
- --color-warning-border-hover: #ffd666;
294
- --color-warning-hover: #ffd666;
295
- --color-warning-active: #d48806;
296
- --color-warning-text-hover: #ffc53d;
297
- --color-warning-text: #faad14;
298
- --color-warning-text-active: #d48806;
299
- --color-link-hover: #804beb;
300
- --color-link-active: #2800ab;
301
- --color-bg-mask: rgba(0, 0, 0, 0.45);
302
- --color-white: #fff;
303
- --font-size-sm: 12px;
304
- --font-size-lg: 16px;
305
- --font-size-xl: 20px;
306
- --font-size-heading1: 38px;
307
- --font-size-heading2: 30px;
308
- --font-size-heading3: 24px;
309
- --font-size-heading4: 20px;
310
- --font-size-heading5: 16px;
311
- --line-height: 1.5714285714285714;
312
- --line-height-lg: 1.5;
313
- --line-height-sm: 1.6666666666666667;
314
- --font-height: 22px;
315
- --font-height-lg: 24px;
316
- --font-height-sm: 20px;
317
- --line-height-heading1: 1.2105263157894737;
318
- --line-height-heading2: 1.2666666666666666;
319
- --line-height-heading3: 1.3333333333333333;
320
- --line-height-heading4: 1.4;
321
- --line-height-heading5: 1.5;
322
- --size-xxl: 48px;
323
- --size-xl: 32px;
324
- --size-lg: 24px;
325
- --size-md: 20px;
326
- --size-ms: 16px;
327
- --size: 16px;
328
- --size-sm: 12px;
329
- --size-xs: 8px;
330
- --size-xxs: 4px;
331
- --control-height-sm: 24px;
332
- --control-height-xs: 16px;
333
- --control-height-lg: 40px;
334
- --motion-duration-fast: 0.1s;
335
- --motion-duration-mid: 0.2s;
336
- --motion-duration-slow: 0.3s;
337
- --line-width-bold: 2px;
338
- --border-radius-xs: 2px;
339
- --border-radius-sm: 4px;
340
- --border-radius-lg: 8px;
341
- --border-radius-outer: 4px;
342
- --color-fill-content: rgba(32, 0, 122, 0.06);
343
- --color-fill-content-hover: rgba(32, 0, 122, 0.15);
344
- --color-fill-alter: rgba(32, 0, 122, 0.02);
345
- --color-bg-container-disabled: rgba(32, 0, 122, 0.04);
346
- --color-border-bg: #ffffff;
347
- --color-split: rgba(44, 22, 11, 0.09);
348
- --color-text-placeholder: rgba(0, 0, 0, 0.4);
349
- --color-text-disabled: rgba(0, 0, 0, 0.4);
350
- --color-text-heading: rgba(0, 0, 0, 0.95);
351
- --color-text-label: rgba(0, 0, 0, 0.75);
352
- --color-text-description: rgba(0, 0, 0, 0.55);
353
- --color-text-light-solid: #fff;
354
- --color-highlight: #ff4d4f;
355
- --color-bg-text-hover: rgba(32, 0, 122, 0.06);
356
- --color-bg-text-active: rgba(32, 0, 122, 0.15);
357
- --color-icon: rgba(0, 0, 0, 0.55);
358
- --color-icon-hover: rgba(0, 0, 0, 0.95);
359
- --color-error-outline: rgba(255, 38, 5, 0.06);
360
- --color-warning-outline: rgba(255, 215, 5, 0.1);
361
- --font-size-icon: 12px;
362
- --line-width-focus: 4px;
363
- --control-outline-width: 2px;
364
- --control-interactive-size: 16px;
365
- --control-item-bg-hover: rgba(32, 0, 122, 0.04);
366
- --control-item-bg-active: #f8f6fb;
367
- --control-item-bg-active-hover: #ebe8f8;
368
- --control-item-bg-active-disabled: rgba(32, 0, 122, 0.15);
369
- --control-tmp-outline: rgba(32, 0, 122, 0.02);
370
- --opacity-loading: 0.65;
371
- --link-decoration: none;
372
- --link-hover-decoration: none;
373
- --link-focus-decoration: none;
374
- --control-padding-horizontal: 12px;
375
- --control-padding-horizontal-sm: 8px;
376
- --padding-xxs: 4px;
377
- --padding-xs: 8px;
378
- --padding-sm: 12px;
379
- --padding: 16px;
380
- --padding-md: 20px;
381
- --padding-lg: 24px;
382
- --padding-xl: 32px;
383
- --padding-content-horizontal-lg: 24px;
384
- --padding-content-vertical-lg: 16px;
385
- --padding-content-horizontal: 16px;
386
- --padding-content-vertical: 12px;
387
- --padding-content-horizontal-sm: 16px;
388
- --padding-content-vertical-sm: 8px;
389
- --margin-xxs: 4px;
390
- --margin-xs: 8px;
391
- --margin-sm: 12px;
392
- --margin: 16px;
393
- --margin-md: 20px;
394
- --margin-lg: 24px;
395
- --margin-xl: 32px;
396
- --margin-xxl: 48px;
397
- --box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05) ;
398
- --box-shadow-secondary: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05) ;
399
- --box-shadow-tertiary: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02) ;
400
- --screen-xs: 480px;
401
- --screen-xs-min: 480px;
402
- --screen-xs-max: 575px;
403
- --screen-sm: 576px;
404
- --screen-sm-min: 576px;
405
- --screen-sm-max: 767px;
406
- --screen-md: 768px;
407
- --screen-md-min: 768px;
408
- --screen-md-max: 991px;
409
- --screen-lg: 992px;
410
- --screen-lg-min: 992px;
411
- --screen-lg-max: 1199px;
412
- --screen-xl: 1200px;
413
- --screen-xl-min: 1200px;
414
- --screen-xl-max: 1599px;
415
- --screen-xxl: 1600px;
416
- --screen-xxl-min: 1600px;
417
- --box-shadow-popover-arrow: 2px 2px 5px rgba(0, 0, 0, 0.05);
418
- --box-shadow-card: 0 1px 2px -2px rgba(0, 0, 0, 0.16), 0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09) ;
419
- --box-shadow-drawer-right: -6px 0 16px 0 rgba(0, 0, 0, 0.08), -3px 0 6px -4px rgba(0, 0, 0, 0.12), -9px 0 28px 8px rgba(0, 0, 0, 0.05) ;
420
- --box-shadow-drawer-left: 6px 0 16px 0 rgba(0, 0, 0, 0.08), 3px 0 6px -4px rgba(0, 0, 0, 0.12), 9px 0 28px 8px rgba(0, 0, 0, 0.05) ;
421
- --box-shadow-drawer-up: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05) ;
422
- --box-shadow-drawer-down: 0 -6px 16px 0 rgba(0, 0, 0, 0.08), 0 -3px 6px -4px rgba(0, 0, 0, 0.12), 0 -9px 28px 8px rgba(0, 0, 0, 0.05) ;
423
- --box-shadow-tabs-overflow-left: inset 10px 0 8px -8px rgba(0, 0, 0, 0.08);
424
- --box-shadow-tabs-overflow-right: inset -10px 0 8px -8px rgba(0, 0, 0, 0.08);
425
- --box-shadow-tabs-overflow-top: inset 0 10px 8px -8px rgba(0, 0, 0, 0.08);
426
- --box-shadow-tabs-overflow-bottom: inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08);
427
- }