@progress/kendo-react-gauges 13.3.0-develop.9 → 13.4.0-develop.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.
Files changed (47) hide show
  1. package/ArcCenter.d.ts +58 -0
  2. package/ArcGauge.d.ts +39 -0
  3. package/ArcGaugeProps.d.ts +46 -0
  4. package/BaseGauge.d.ts +98 -0
  5. package/BaseGaugeProps.d.ts +58 -0
  6. package/CircularGauge.d.ts +13 -0
  7. package/CircularGaugeProps.d.ts +24 -0
  8. package/GaugeContext.d.ts +19 -0
  9. package/LinearGauge.d.ts +38 -0
  10. package/LinearGaugeProps.d.ts +32 -0
  11. package/RadialGauge.d.ts +38 -0
  12. package/RadialGaugeProps.d.ts +32 -0
  13. package/common/gauges.d.ts +12 -0
  14. package/dist/cdn/js/kendo-react-gauges.js +1 -1
  15. package/index.d.mts +11 -685
  16. package/index.d.ts +11 -685
  17. package/package-metadata.d.ts +12 -0
  18. package/package-metadata.js +1 -1
  19. package/package-metadata.mjs +10 -16
  20. package/package.json +4 -4
  21. package/store/reducer.d.ts +21 -0
  22. package/store/store.d.ts +32 -0
  23. package/types/arc-scale.interface.d.ts +35 -0
  24. package/types/border.interface.d.ts +25 -0
  25. package/types/cap.interface.d.ts +20 -0
  26. package/types/circular-scale.interface.d.ts +17 -0
  27. package/types/color-range.interface.d.ts +28 -0
  28. package/types/dash-type.interface.d.ts +11 -0
  29. package/types/gauge-area.interface.d.ts +34 -0
  30. package/types/labels.interface.d.ts +54 -0
  31. package/types/line-cap.d.ts +11 -0
  32. package/types/line.interface.d.ts +29 -0
  33. package/types/linear-pointer-shape.d.ts +11 -0
  34. package/types/linear-pointer.interface.d.ts +43 -0
  35. package/types/linear-scale.interface.d.ts +33 -0
  36. package/types/margin.interface.d.ts +28 -0
  37. package/types/padding.interface.d.ts +28 -0
  38. package/types/radial-label-position.d.ts +11 -0
  39. package/types/radial-labels.interface.d.ts +15 -0
  40. package/types/radial-pointer.interface.d.ts +29 -0
  41. package/types/radial-scale.interface.d.ts +35 -0
  42. package/types/range.interface.d.ts +28 -0
  43. package/types/scale.interface.d.ts +54 -0
  44. package/types/ticks.interface.d.ts +28 -0
  45. package/types.d.ts +28 -0
  46. package/utils/common.d.ts +8 -0
  47. package/utils/css-variables.d.ts +72 -0
package/index.d.ts CHANGED
@@ -5,688 +5,14 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { Group } from '@progress/kendo-drawing';
9
- import * as React_2 from 'react';
10
- import { Surface } from '@progress/kendo-drawing';
11
-
12
- export declare class ArcGauge extends React_2.Component<ArcGaugeProps, {}> {
13
- private _baseGauge;
14
- protected gaugeType: any;
15
- /**
16
- * @hidden
17
- */
18
- get gaugeInstance(): any;
19
- /**
20
- * The Drawing `Surface` of the Gauge.
21
- */
22
- get surface(): Surface | null;
23
- /**
24
- * The DOM element of the Gauge.
25
- */
26
- get element(): HTMLDivElement | null;
27
- /**
28
- * @hidden
29
- */
30
- render(): any;
31
- /**
32
- * Exports a Gauge component as a Drawing `Scene`.
33
- *
34
- * @param {any} options - The parameters for the export operation.
35
- * @returns {Promise<Group>} - A promise that returns the root `Group` of the scene.
36
- */
37
- exportVisual(options?: any): Promise<Group>;
38
- private getTarget;
39
- private deriveOptionsFromParent;
40
- }
41
-
42
- /**
43
- * Represents the props of the [KendoReact ArcGauge component](https://www.telerik.com/kendo-react-ui/components/gauges/arcgauge).
44
- */
45
- export declare interface ArcGaugeProps extends BaseGaugeProps {
46
- /**
47
- * The value of the Gauge.
48
- */
49
- value: number;
50
- /**
51
- * The color of the value pointer. Accepts a valid CSS color string, including hex and rgb.
52
- */
53
- color?: string;
54
- /**
55
- * The color ranges of the value pointer
56
- * ([see example](https://www.telerik.com/kendo-react-ui/components/gauges/arcgauge/color-ranges)).
57
- */
58
- colors?: ColorRange[];
59
- /**
60
- * The opacity of the value pointer.
61
- */
62
- opacity?: number;
63
- /**
64
- * The scale options of the ArcGauge.
65
- */
66
- scale?: ArcScale;
67
- /**
68
- * @hidden
69
- *
70
- * Alias for backwards compatbility.
71
- */
72
- arcCenterRender?: (value: number, color: string) => React.ReactElement<any>;
73
- /**
74
- *
75
- * A function that renders the center template of the Gauge.
76
- */
77
- centerRender?: (value: number, color: string) => React.ReactElement<any>;
78
- }
79
-
80
- /**
81
- * The scale options of the Gauge.
82
- */
83
- export declare interface ArcScale extends Scale {
84
- /**
85
- * Configures the scale labels.
86
- */
87
- labels?: RadialLabels;
88
- /**
89
- * The distance between the range indicators and the ticks.
90
- */
91
- rangeDistance?: number;
92
- /**
93
- * The `lineCap` style of the ranges.
94
- */
95
- rangeLineCap?: LineCap;
96
- /**
97
- * The starting angle of the Gauge. The Gauge is rendered clockwise (0 degrees equal 180 degrees in the polar coordinate system).
98
- */
99
- startAngle?: number;
100
- /**
101
- * The ending angle of the Gauge. The Gauge is rendered clockwise (0 degrees equals 180 degrees in the polar coordinate system).
102
- */
103
- endAngle?: number;
104
- }
105
-
106
- /**
107
- * @hidden
108
- */
109
- declare interface BaseGaugeProps {
110
- /**
111
- * Determines the children nodes.
112
- */
113
- children?: React.ReactNode;
114
- /**
115
- * Represents the `dir` HTML attribute.
116
- */
117
- dir?: string;
118
- /**
119
- * The styles that are applied to the component.
120
- */
121
- style?: React.CSSProperties;
122
- /**
123
- * Sets additional CSS classes to the component.
124
- */
125
- className?: string;
126
- /**
127
- * Sets the preferred rendering engine. If not supported by the browser, the Gauge switches to the first available mode.
128
- *
129
- * The supported values are:
130
- * - `"svg"`&mdash;If available, renders the component as an inline `.svg` file.
131
- * - `"canvas"`&mdash;If available, renders the component as a `canvas` element.
132
- */
133
- renderAs?: 'svg' | 'canvas';
134
- /**
135
- * If set to `true`, the Gauge plays animations when it displays the series. By default, animations are enabled.
136
- */
137
- transitions?: boolean;
138
- }
139
-
140
- /**
141
- * The appearance settings for the border lines.
142
- */
143
- export declare interface Border {
144
- /**
145
- * The color of the border line. Accepts valid CSS color strings, including hex and rgb.
146
- */
147
- color?: string;
148
- /**
149
- * The dash type of the border line.
150
- */
151
- dashType?: DashType;
152
- /**
153
- * The width of the border line in pixels.
154
- */
155
- width?: number;
156
- }
157
-
158
- /**
159
- * The configuration options for the RadialGauge pointer cap.
160
- */
161
- export declare interface Cap {
162
- /**
163
- * The color of the cap. Accepts valid CSS color strings, including hex and rgb.
164
- */
165
- color?: string;
166
- /**
167
- * The size of the cap in percent (from 0 to 1).
168
- */
169
- size?: number;
170
- }
171
-
172
- export declare class CircularGauge extends ArcGauge implements React_2.Component<CircularGaugeProps, {}> {
173
- protected gaugeType: any;
174
- }
175
-
176
- /**
177
- * Represents the props of the [KendoReact CircularGauge component](https://www.telerik.com/kendo-react-ui/components/gauges/circulargauge).
178
- */
179
- export declare interface CircularGaugeProps extends ArcGaugeProps {
180
- /**
181
- * The color ranges of the value pointer
182
- * ([see example](https://www.telerik.com/kendo-react-ui/components/gauges/circulargauge/color-ranges)).
183
- */
184
- colors?: ColorRange[];
185
- /**
186
- * The scale options of the CircularGauge.
187
- */
188
- scale?: CircularScale;
189
- }
190
-
191
- /**
192
- * The scale options of the Gauge.
193
- */
194
- declare interface CircularScale extends ArcScale {
195
- /**
196
- * @hidden
197
- */
198
- endAngle?: number;
199
- }
200
-
201
- /**
202
- * The color range configuration.
203
- */
204
- export declare interface ColorRange {
205
- /**
206
- * The color of the range. Accepts valid CSS color strings, including hex and rgb.
207
- */
208
- color?: string;
209
- /**
210
- * The opacity of the range.
211
- */
212
- opacity?: number;
213
- /**
214
- * The range start value.
215
- */
216
- from?: number;
217
- /**
218
- * The range end value.
219
- */
220
- to?: number;
221
- }
222
-
223
- /**
224
- * The dash type of a line.
225
- */
226
- export declare type DashType = 'dash' | 'dashDot' | 'dot' | 'longDash' | 'longDashDot' | 'longDashDotDot' | 'solid';
227
-
228
- /**
229
- * The configuration options for the Gauge area. Represents the entire visible area of the Gauge.
230
- */
231
- export declare interface GaugeArea {
232
- /**
233
- * The background of the Gauge area. Accepts valid CSS color strings, including hex and rgb.
234
- */
235
- background?: string;
236
- /**
237
- * The border of the Gauge area.
238
- */
239
- border?: Border;
240
- /**
241
- * The height of the Gauge area.
242
- */
243
- height?: number;
244
- /**
245
- * The margin of the Gauge area.
246
- */
247
- margin?: number | Margin;
248
- /**
249
- * The height of the Gauge area.
250
- */
251
- width?: number;
252
- }
253
-
254
- export declare type Gauges = ArcGauge | LinearGauge | RadialGauge;
255
-
256
- /**
257
- * The configuration of the scale labels.
258
- */
259
- export declare interface Labels {
260
- /**
261
- * The background of the labels. Accepts valid CSS color strings, including hex and rgb.
262
- */
263
- background?: string;
264
- /**
265
- * The border of the labels.
266
- */
267
- border?: Border;
268
- /**
269
- * The color of the labels. Accepts valid CSS color strings, including hex and rgb.
270
- */
271
- color?: string;
272
- /**
273
- * The font of the labels.
274
- */
275
- font?: string;
276
- /**
277
- * The format that is used to display the labels. Uses the IntlService [`format`](https://www.telerik.com/kendo-react-ui/components/intl/api/intlservice#toc-format) method.
278
- */
279
- format?: string;
280
- /**
281
- * The margin of the labels.
282
- */
283
- margin?: number | Margin;
284
- /**
285
- * The padding of the labels.
286
- */
287
- padding?: number | Padding;
288
- /**
289
- * The function which returns the label content.
290
- *
291
- * The available fields in the function argument are:
292
- * - `value`&mdash;The value of the label.
293
- */
294
- content?: (e: any) => string;
295
- /**
296
- * The visibility of the labels.
297
- */
298
- visible?: boolean;
299
- }
300
-
301
- /**
302
- * The scale line options.
303
- */
304
- export declare interface Line {
305
- /**
306
- * The color of the lines. Accepts valid CSS color strings, including hex and rgb.
307
- */
308
- color?: string;
309
- /**
310
- * The dash type of the line.
311
- */
312
- dashType?: DashType;
313
- /**
314
- * The visibility of the lines.
315
- */
316
- visible?: boolean;
317
- /**
318
- * The width of the line.
319
- */
320
- width?: number;
321
- }
322
-
323
- export declare class LinearGauge extends React_2.Component<LinearGaugeProps, {}> {
324
- private _baseGauge;
325
- /**
326
- * @hidden
327
- */
328
- get gaugeInstance(): any;
329
- /**
330
- * The Drawing `Surface` of the Gauge.
331
- */
332
- get surface(): Surface | null;
333
- /**
334
- * The DOM element of the Gauge.
335
- */
336
- get element(): HTMLDivElement | null;
337
- /**
338
- * @hidden
339
- */
340
- render(): any;
341
- /**
342
- * Exports a Gauge component as a Drawing `Scene`.
343
- *
344
- * @param {any} options - The parameters for the export operation.
345
- * @returns {Promise<Group>} - A promise that returns the root `Group` of the scene.
346
- */
347
- exportVisual(options?: any): Promise<Group>;
348
- private getTarget;
349
- private deriveOptionsFromParent;
350
- }
351
-
352
- /**
353
- * Represents the props of the [KendoReact LinearGauge component](https://www.telerik.com/kendo-react-ui/components/gauges/lineargauge).
354
- */
355
- export declare interface LinearGaugeProps extends BaseGaugeProps {
356
- /**
357
- * The configuration of the pointers ([see example](https://www.telerik.com/kendo-react-ui/components/gauges/lineargauge/multiple-pointers)).
358
- *
359
- * Example:
360
- * ```jsx
361
- * <LinearGauge pointer={{ value: 75 }} />
362
- * ```
363
- */
364
- pointer: LinearPointer | LinearPointer[];
365
- /**
366
- * The configuration of the scale.
367
- *
368
- * Example:
369
- * ```jsx
370
- * <LinearGauge scale={{ min: 0, max: 100 }} />
371
- * ```
372
- */
373
- scale?: LinearScale;
374
- }
375
-
376
- /**
377
- * The configuration options for the LinearGauge pointer.
378
- */
379
- export declare interface LinearPointer {
380
- /**
381
- * The border of the Gauge area.
382
- */
383
- border?: Border;
384
- /**
385
- * The color of the pointer. Accepts valid CSS color strings, including hex and rgb.
386
- */
387
- color?: string;
388
- /**
389
- * The margin of the pointer.
390
- */
391
- margin?: number | Margin;
392
- /**
393
- * The opacity of the pointer.
394
- */
395
- opacity?: number;
396
- /**
397
- * The shape of the pointer.
398
- */
399
- shape?: LinearPointerShape;
400
- /**
401
- * The size of the pointer.
402
- */
403
- size?: number;
404
- /**
405
- * The value of the pointer.
406
- */
407
- value?: number;
408
- }
409
-
410
- /**
411
- * The shape of the pointer.
412
- */
413
- export declare type LinearPointerShape = 'barIndicator' | 'arrow';
414
-
415
- /**
416
- * The scale options of the Gauge.
417
- */
418
- export declare interface LinearScale extends Scale {
419
- /**
420
- * Configures the scale line.
421
- */
422
- line?: Line;
423
- /**
424
- * The ranges of the scale.
425
- */
426
- ranges?: Range_2[];
427
- /**
428
- * Mirrors the scale labels and ticks. If the labels are normally on the left side of the scale, the mirroring of the scale will render them to the right.
429
- */
430
- mirror?: boolean;
431
- /**
432
- * Specifies if the scale will be vertical ([see example](https://www.telerik.com/kendo-react-ui/components/gauges/lineargauge/orientation)).
433
- *
434
- * @default true
435
- */
436
- vertical?: boolean;
437
- }
438
-
439
- /**
440
- * The cap style of a line.
441
- */
442
- export declare type LineCap = 'butt' | 'round' | 'square';
443
-
444
- /**
445
- * The margin configuration for each side.
446
- */
447
- export declare interface Margin {
448
- /**
449
- * The top margin in pixels.
450
- */
451
- top?: number;
452
- /**
453
- * The right margin in pixels.
454
- */
455
- right?: number;
456
- /**
457
- * The bottom margin in pixels.
458
- */
459
- bottom?: number;
460
- /**
461
- * The left margin in pixels.
462
- */
463
- left?: number;
464
- }
465
-
466
- /**
467
- * The padding configuration for each side.
468
- */
469
- export declare interface Padding {
470
- /**
471
- * The top padding in pixels.
472
- */
473
- top?: number;
474
- /**
475
- * The right padding in pixels.
476
- */
477
- right?: number;
478
- /**
479
- * The bottom padding in pixels.
480
- */
481
- bottom?: number;
482
- /**
483
- * The left padding in pixels.
484
- */
485
- left?: number;
486
- }
487
-
488
- export declare class RadialGauge extends React_2.Component<RadialGaugeProps, {}> {
489
- private _baseGauge;
490
- /**
491
- * @hidden
492
- */
493
- get gaugeInstance(): any;
494
- /**
495
- * The Drawing `Surface` of the Gauge.
496
- */
497
- get surface(): Surface | null;
498
- /**
499
- * The DOM element of the Gauge.
500
- */
501
- get element(): HTMLDivElement | null;
502
- /**
503
- * @hidden
504
- */
505
- render(): any;
506
- /**
507
- * Exports a Gauge component as a Drawing `Scene`.
508
- *
509
- * @param {any} options - The parameters for the export operation.
510
- * @returns {Promise<Group>} - A promise that returns the root `Group` of the scene.
511
- */
512
- exportVisual(options?: any): Promise<Group>;
513
- private getTarget;
514
- private deriveOptionsFromParent;
515
- }
516
-
517
- /**
518
- * Represents the props of the [KendoReact RadialGauge component](https://www.telerik.com/kendo-react-ui/components/gauges/radialgauge).
519
- */
520
- export declare interface RadialGaugeProps extends BaseGaugeProps {
521
- /**
522
- * The configuration of the pointers ([see example](https://www.telerik.com/kendo-react-ui/components/gauges/radialgauge/multiple-pointers)).
523
- *
524
- * Example:
525
- * ```jsx
526
- * <RadialGauge pointer={{ value: 50 }} />
527
- * ```
528
- */
529
- pointer: RadialPointer | RadialPointer[];
530
- /**
531
- * The configuration of the scale.
532
- *
533
- * Example:
534
- * ```jsx
535
- * <RadialGauge scale={{ startAngle: -90, endAngle: 180 }} />
536
- * ```
537
- */
538
- scale?: RadialScale;
539
- }
540
-
541
- /**
542
- * The position of the RadialGauge labels.
543
- */
544
- export declare type RadialLabelPosition = 'inside' | 'outside';
545
-
546
- export declare interface RadialLabels extends Labels {
547
- /**
548
- * The position of the labels.
549
- */
550
- position?: RadialLabelPosition;
551
- }
552
-
553
- /**
554
- * The configuration options for the RadialGauge pointer.
555
- */
556
- export declare interface RadialPointer {
557
- /**
558
- * The configuration options for the cap.
559
- */
560
- cap?: Cap;
561
- /**
562
- * The color of the pointer. Accepts valid CSS color strings, including hex and rgb.
563
- */
564
- color?: string;
565
- /**
566
- * The pointer length (in percent) that is based on the distance to the scale. The default length of `1` indicates that the pointer exactly reaches the scale. Accepts values between `0.1` and `1.5`.
567
- */
568
- length?: number;
569
- /**
570
- * The pointer value.
571
- */
572
- value?: number;
573
- }
574
-
575
- /**
576
- * The scale options of the Gauge.
577
- */
578
- export declare interface RadialScale extends Scale {
579
- /**
580
- * Configures the scale labels.
581
- */
582
- labels?: RadialLabels;
583
- /**
584
- * The distance between the range indicators and the ticks.
585
- */
586
- rangeDistance?: number;
587
- /**
588
- * The ranges of the scale.
589
- */
590
- ranges?: Range_2[];
591
- /**
592
- * The starting angle of the Gauge. The Gauge is rendered clockwise (0 degrees equal 180 degrees in the polar coordinate system).
593
- */
594
- startAngle?: number;
595
- /**
596
- * The ending angle of the Gauge. The Gauge is rendered clockwise (0 degrees equal to 180 degrees in the polar coordinate system).
597
- */
598
- endAngle?: number;
599
- }
600
-
601
- /**
602
- * The configuration for the scale ranges.
603
- */
604
- declare interface Range_2 {
605
- /**
606
- * The start position of the range.
607
- */
608
- from?: number;
609
- /**
610
- * The end position of the range.
611
- */
612
- to?: number;
613
- /**
614
- * The range opacity.
615
- */
616
- opacity?: number;
617
- /**
618
- * The color of the range. Accepts valid CSS color strings, including hex and rgb.
619
- */
620
- color?: string;
621
- }
622
- export { Range_2 as Range }
623
-
624
- /**
625
- * The scale options of the Gauge.
626
- */
627
- export declare interface Scale {
628
- /**
629
- * Configures the scale labels.
630
- */
631
- labels?: Labels;
632
- /**
633
- * Configures the major scale ticks.
634
- */
635
- majorTicks?: Ticks;
636
- /**
637
- * Configures the minor scale ticks.
638
- */
639
- minorTicks?: Ticks;
640
- /**
641
- * The minimum value of the scale.
642
- */
643
- min?: number;
644
- /**
645
- * The maximum value of the scale.
646
- */
647
- max?: number;
648
- /**
649
- * The interval between minor divisions.
650
- */
651
- minorUnit?: number;
652
- /**
653
- * The interval between major divisions.
654
- */
655
- majorUnit?: number;
656
- /**
657
- * Reverses the scale direction.
658
- */
659
- reverse?: boolean;
660
- /**
661
- * The width of the range indicators.
662
- */
663
- rangeSize?: number;
664
- /**
665
- * The default color of the ranges.
666
- */
667
- rangePlaceholderColor?: string;
668
- }
669
-
670
- /**
671
- * The options for the scale ticks.
672
- */
673
- export declare interface Ticks {
674
- /**
675
- * The color of the ticks. Accepts a valid CSS color string, including hex and rgb.
676
- */
677
- color?: string;
678
- /**
679
- * The size of the ticks. Represents the length of the line (in pixels) that is drawn to indicate the tick on the scale.
680
- */
681
- size?: number;
682
- /**
683
- * The visibility of the ticks.
684
- */
685
- visible?: boolean;
686
- /**
687
- * The ticks width (in pixels).
688
- */
689
- width?: number;
690
- }
691
-
692
- export { }
8
+ import { ArcGauge } from './ArcGauge.js';
9
+ import { ArcGaugeProps } from './ArcGaugeProps.js';
10
+ import { CircularGauge } from './CircularGauge.js';
11
+ import { CircularGaugeProps } from './CircularGaugeProps.js';
12
+ import { LinearGauge } from './LinearGauge.js';
13
+ import { LinearGaugeProps } from './LinearGaugeProps.js';
14
+ import { RadialGauge } from './RadialGauge.js';
15
+ import { RadialGaugeProps } from './RadialGaugeProps.js';
16
+ export * from './common/gauges.js';
17
+ export * from './types.js';
18
+ export { ArcGauge, ArcGaugeProps, CircularGauge, CircularGaugeProps, LinearGauge, LinearGaugeProps, RadialGauge, RadialGaugeProps };
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { PackageMetadata } from '@progress/kendo-licensing';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export declare const packageMetadata: PackageMetadata;
@@ -5,4 +5,4 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=Object.freeze({name:"@progress/kendo-react-gauges",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1768491563,version:"13.3.0-develop.9",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"});exports.packageMetadata=e;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=Object.freeze({name:"@progress/kendo-react-gauges",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1770219148,version:"13.4.0-develop.1",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui/components/my-license/"});exports.packageMetadata=e;