@porscheinformatik/material-addons 19.0.6 → 19.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/fesm2022/porscheinformatik-material-addons.mjs +200 -260
- package/fesm2022/porscheinformatik-material-addons.mjs.map +1 -1
- package/lib/layout/toolbar/toolbar-action.interface.d.ts +2 -0
- package/lib/layout/toolbar/toolbar-action.interface.d.ts.map +1 -1
- package/lib/layout/toolbar/toolbar.service.d.ts +5 -1
- package/lib/layout/toolbar/toolbar.service.d.ts.map +1 -1
- package/lib/readonly/readonly-form-field/readonly-form-field.component.d.ts +53 -49
- package/lib/readonly/readonly-form-field/readonly-form-field.component.d.ts.map +1 -1
- package/lib/size-change/size-change.directive.d.ts +12 -0
- package/lib/size-change/size-change.directive.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { ThemePalette } from '@angular/material/core';
|
|
3
|
+
import { Params } from '@angular/router';
|
|
3
4
|
export interface Action {
|
|
4
5
|
matIcon: string;
|
|
5
6
|
i18nActionKey: string;
|
|
@@ -14,6 +15,7 @@ export interface MainAction extends Action {
|
|
|
14
15
|
}
|
|
15
16
|
export interface BackAction extends Action {
|
|
16
17
|
routerLink?: string;
|
|
18
|
+
queryParams?: Params;
|
|
17
19
|
href?: string;
|
|
18
20
|
action?: () => any;
|
|
19
21
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbar-action.interface.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/layout/toolbar/toolbar-action.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"toolbar-action.interface.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/layout/toolbar/toolbar-action.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEzC,MAAM,WAAW,MAAM;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC;CAC9B;AAED,MAAM,WAAW,UAAW,SAAQ,MAAM;IACxC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,GAAG,CAAC;IACnB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,UAAW,SAAQ,MAAM;IACxC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,GAAG,CAAC;CACpB;AAED,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,GAAG,CAAC;IACX,KAAK,CAAC,EAAE,YAAY,CAAC;CACtB;AAED,MAAM,WAAW,aAAc,SAAQ,MAAM;IAC3C,MAAM,EAAE,MAAM,GAAG,CAAC;IAClB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,KAAK,CAAC,EAAE,kBAAkB,CAAC;CAC5B"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
|
-
import { Router } from '@angular/router';
|
|
2
|
+
import { Params, Router } from '@angular/router';
|
|
3
3
|
import { Subscription } from 'rxjs';
|
|
4
4
|
import { TranslateService } from '@ngx-translate/core';
|
|
5
5
|
import { BackAction, MainAction, ToolbarAction } from './toolbar-action.interface';
|
|
@@ -36,6 +36,10 @@ export declare class ToolbarService implements OnDestroy {
|
|
|
36
36
|
* Per default the goBackRoute is a routerLink. But if a href should be used (for absolute browser routing) then isAbsoluteUrl can be set to true.
|
|
37
37
|
*/
|
|
38
38
|
addBackAction(goBackRoute: string, isAbsoluteUrl?: boolean): void;
|
|
39
|
+
/**
|
|
40
|
+
* Only supports routerLink (no href), but with additional query parameters
|
|
41
|
+
*/
|
|
42
|
+
addBackActionRoute(goBackRoute: string, queryParams?: Params): void;
|
|
39
43
|
addSimpleBackButton(overrideIfPresent?: boolean): void;
|
|
40
44
|
clearMainActions(): void;
|
|
41
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarService, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toolbar.service.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/layout/toolbar/toolbar.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,SAAS,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAiB,MAAM,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"toolbar.service.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/layout/toolbar/toolbar.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,SAAS,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAiB,MAAM,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAChE,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;;AAEnF,qBAGa,cAAe,YAAW,SAAS;IAa5C,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,SAAS;IAbnB,UAAU,EAAE,UAAU,CAAC;IACvB,WAAW,EAAE,UAAU,EAAE,CAAM;IAC/B,cAAc,EAAE,aAAa,EAAE,CAAM;IACrC,0BAA0B,UAAS;IACnC,SAAS,EAAE,MAAM,CAAC;IAClB,kBAAkB,EAAE,YAAY,CAAC;IACjC,OAAO,CAAC,KAAK,CAAS;IACtB,OAAO,CAAC,uBAAuB,CAAU;IAEzC,OAAO,CAAC,UAAU,CAAS;gBAGjB,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,gBAAgB;IAerC,IAAI,YAAY,IAAI,MAAM,CAEzB;IAED,IAAI,YAAY,CAAC,YAAY,EAAE,MAAM,EAEpC;IAED,WAAW,IAAI,IAAI;IAMnB,iBAAiB,IAAI,aAAa,EAAE;IAIpC,gBAAgB,CAAC,MAAM,EAAE,aAAa,GAAG,IAAI;IAU7C,YAAY,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;IAIrC,6BAA6B,CAAC,0BAA0B,EAAE,OAAO,GAAG,IAAI;IAIxE,6BAA6B,IAAI,OAAO;IAIxC,YAAY,IAAI,MAAM;IAItB,mBAAmB,IAAI,IAAI;IAI3B,cAAc,IAAI,UAAU,EAAE;IAI9B,aAAa,IAAI,UAAU;IAI3B,0BAA0B,CAAC,uBAAuB,EAAE,MAAM,GAAG,IAAI;IAIjE,0BAA0B,IAAI,MAAM;IAIpC,aAAa,CAAC,UAAU,EAAE,UAAU,GAAG,IAAI;IAU3C;;OAEG;IACH,aAAa,CAAC,WAAW,EAAE,MAAM,EAAE,aAAa,UAAQ,GAAG,IAAI;IAY/D;;OAEG;IACH,kBAAkB,CAAC,WAAW,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI;IASnE,mBAAmB,CAAC,iBAAiB,UAAQ,GAAG,IAAI;IAcpD,gBAAgB,IAAI,IAAI;yCAhJb,cAAc;6CAAd,cAAc;CAmJ1B"}
|
|
@@ -1,66 +1,70 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ErrorStateMatcher } from '@angular/material/core';
|
|
3
|
-
import { NumberFormatService } from '../../numeric-field/number-format.service';
|
|
1
|
+
import { ElementRef, InjectionToken } from '@angular/core';
|
|
4
2
|
import * as i0 from "@angular/core";
|
|
3
|
+
export interface FormFieldDefaultOptions {
|
|
4
|
+
textAlign?: 'left' | 'right';
|
|
5
|
+
unitPosition?: 'left' | 'right';
|
|
6
|
+
textOverflow?: 'ellipsis' | 'clip' | '';
|
|
7
|
+
multiline?: boolean;
|
|
8
|
+
multilineAutosize?: boolean;
|
|
9
|
+
rows?: number;
|
|
10
|
+
shrinkIfEmpty?: boolean;
|
|
11
|
+
autofillDecimals?: boolean;
|
|
12
|
+
decimalPlaces?: number;
|
|
13
|
+
formatNumber?: boolean;
|
|
14
|
+
roundDisplayValue?: boolean;
|
|
15
|
+
}
|
|
16
|
+
export declare const MAD_READONLY_FORM_FIELD_DEFAULT_CONFIGURATION: InjectionToken<FormFieldDefaultOptions>;
|
|
5
17
|
/**
|
|
6
18
|
* Read-only mat-form-field representation of provided value
|
|
7
19
|
*
|
|
8
20
|
* @author Stefan Laesser
|
|
9
21
|
*/
|
|
10
|
-
export declare class ReadOnlyFormFieldComponent
|
|
11
|
-
private
|
|
12
|
-
private
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
useProjectedContent: boolean
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
multiline: boolean
|
|
28
|
-
rows: number;
|
|
29
|
-
id: string;
|
|
30
|
-
shrinkIfEmpty: boolean;
|
|
22
|
+
export declare class ReadOnlyFormFieldComponent {
|
|
23
|
+
private readonly defaultConfig;
|
|
24
|
+
private readonly numberFormatService;
|
|
25
|
+
readonly inputEl: import("@angular/core").Signal<ElementRef<HTMLInputElement>>;
|
|
26
|
+
readonly label: import("@angular/core").InputSignal<string>;
|
|
27
|
+
readonly value: import("@angular/core").InputSignal<any>;
|
|
28
|
+
readonly useProjectedContent: import("@angular/core").InputSignal<boolean>;
|
|
29
|
+
readonly textAlign: import("@angular/core").InputSignal<"left" | "right">;
|
|
30
|
+
readonly textOverflow: import("@angular/core").InputSignal<"" | "ellipsis" | "clip">;
|
|
31
|
+
readonly errorMessage: import("@angular/core").InputSignal<string>;
|
|
32
|
+
readonly id: import("@angular/core").InputSignal<string>;
|
|
33
|
+
readonly unit: import("@angular/core").InputSignal<string>;
|
|
34
|
+
readonly unitPosition: import("@angular/core").InputSignal<"left" | "right">;
|
|
35
|
+
readonly formatNumber: import("@angular/core").InputSignal<boolean>;
|
|
36
|
+
readonly decimalPlaces: import("@angular/core").InputSignal<number>;
|
|
37
|
+
readonly roundDisplayValue: import("@angular/core").InputSignal<boolean>;
|
|
38
|
+
readonly autofillDecimals: import("@angular/core").InputSignal<boolean>;
|
|
39
|
+
readonly multiline: import("@angular/core").InputSignal<boolean>;
|
|
31
40
|
/**
|
|
32
|
-
*
|
|
41
|
+
* if cdkTextareaAutosize is active for textareas
|
|
33
42
|
*/
|
|
34
|
-
|
|
43
|
+
readonly multilineAutoSize: import("@angular/core").InputSignal<boolean>;
|
|
44
|
+
readonly shrinkIfEmpty: import("@angular/core").InputSignal<boolean>;
|
|
45
|
+
readonly rows: import("@angular/core").InputSignal<number>;
|
|
35
46
|
/**
|
|
36
|
-
*
|
|
47
|
+
* suffix iocon
|
|
37
48
|
*/
|
|
38
|
-
|
|
49
|
+
readonly suffix: import("@angular/core").InputSignal<string>;
|
|
39
50
|
/**
|
|
40
|
-
*
|
|
51
|
+
* prefix iocon
|
|
41
52
|
*/
|
|
42
|
-
|
|
43
|
-
suffixClickedEmitter:
|
|
44
|
-
prefixClickedEmitter:
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
private
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
53
|
+
readonly prefix: import("@angular/core").InputSignal<string>;
|
|
54
|
+
readonly suffixClickedEmitter: import("@angular/core").OutputEmitterRef<void>;
|
|
55
|
+
readonly prefixClickedEmitter: import("@angular/core").OutputEmitterRef<void>;
|
|
56
|
+
protected readonly errorMatcher: import("@angular/core").Signal<{
|
|
57
|
+
isErrorState: () => boolean;
|
|
58
|
+
}>;
|
|
59
|
+
private readonly displayValue;
|
|
60
|
+
protected readonly displayValueWithUnit: import("@angular/core").Signal<any>;
|
|
61
|
+
protected readonly actualAmountOfRows: import("@angular/core").Signal<number>;
|
|
62
|
+
protected readonly sizeChanges: import("@angular/core").WritableSignal<ResizeObserverEntry>;
|
|
63
|
+
protected toolTipForInputEnabled: import("@angular/core").Signal<boolean>;
|
|
64
|
+
protected toolTipText: import("@angular/core").Signal<any>;
|
|
54
65
|
suffixClicked(): void;
|
|
55
66
|
prefixClicked(): void;
|
|
56
|
-
private injectUnitSymbol;
|
|
57
|
-
private setReadonlyFieldStyle;
|
|
58
|
-
private getTextOverFlowStyleValue;
|
|
59
|
-
private setTooltipForOverflownField;
|
|
60
|
-
private isEllipsisForTextOverflowEnabled;
|
|
61
|
-
private isTextOverflown;
|
|
62
|
-
private calculateToolTipText;
|
|
63
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReadOnlyFormFieldComponent, never>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReadOnlyFormFieldComponent, "mad-readonly-form-field", never, { "
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReadOnlyFormFieldComponent, "mad-readonly-form-field", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "useProjectedContent": { "alias": "useProjectedContent"; "required": false; "isSignal": true; }; "textAlign": { "alias": "textAlign"; "required": false; "isSignal": true; }; "textOverflow": { "alias": "textOverflow"; "required": false; "isSignal": true; }; "errorMessage": { "alias": "errorMessage"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "unit": { "alias": "unit"; "required": false; "isSignal": true; }; "unitPosition": { "alias": "unitPosition"; "required": false; "isSignal": true; }; "formatNumber": { "alias": "formatNumber"; "required": false; "isSignal": true; }; "decimalPlaces": { "alias": "decimalPlaces"; "required": false; "isSignal": true; }; "roundDisplayValue": { "alias": "roundDisplayValue"; "required": false; "isSignal": true; }; "autofillDecimals": { "alias": "autofillDecimals"; "required": false; "isSignal": true; }; "multiline": { "alias": "multiline"; "required": false; "isSignal": true; }; "multilineAutoSize": { "alias": "multilineAutoSize"; "required": false; "isSignal": true; }; "shrinkIfEmpty": { "alias": "shrinkIfEmpty"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "suffix": { "alias": "suffix"; "required": false; "isSignal": true; }; "prefix": { "alias": "prefix"; "required": false; "isSignal": true; }; }, { "suffixClickedEmitter": "suffixClickedEmitter"; "prefixClickedEmitter": "prefixClickedEmitter"; }, never, ["*"], true, never>;
|
|
65
69
|
}
|
|
66
70
|
//# sourceMappingURL=readonly-form-field.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"readonly-form-field.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/readonly/readonly-form-field/readonly-form-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"readonly-form-field.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/readonly/readonly-form-field/readonly-form-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,UAAU,EAEV,cAAc,EAKf,MAAM,eAAe,CAAC;;AAWvB,MAAM,WAAW,uBAAuB;IACtC,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAC7B,YAAY,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAChC,YAAY,CAAC,EAAE,UAAU,GAAG,MAAM,GAAG,EAAE,CAAC;IAExC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,iBAAiB,CAAC,EAAE,OAAO,CAAC;CAC7B;AAED,eAAO,MAAM,6CAA6C,yCAEzD,CAAC;AAkBF;;;;GAIG;AAEH,qBAiBa,0BAA0B;IACrC,OAAO,CAAC,QAAQ,CAAC,aAAa,CAA6E;IAC3G,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAA+B;IAEnE,QAAQ,CAAC,OAAO,+DAAkE;IAElF,QAAQ,CAAC,KAAK,8CAA4B;IAE1C,QAAQ,CAAC,KAAK,2CAAgB;IAC9B,QAAQ,CAAC,mBAAmB,+CAAgB;IAC5C,QAAQ,CAAC,SAAS,wDAAgF;IAClG,QAAQ,CAAC,YAAY,gEAA8F;IACnH,QAAQ,CAAC,YAAY,8CAA8B;IACnD,QAAQ,CAAC,EAAE,8CAAmB;IAE9B,QAAQ,CAAC,IAAI,8CAA8B;IAC3C,QAAQ,CAAC,YAAY,wDAAsF;IAE3G,QAAQ,CAAC,YAAY,+CAAoE;IACzF,QAAQ,CAAC,aAAa,8CAAsE;IAC5F,QAAQ,CAAC,iBAAiB,+CAA+E;IACzG,QAAQ,CAAC,gBAAgB,+CAA4E;IAErG,QAAQ,CAAC,SAAS,+CAA6D;IAC/E;;OAEG;IACH,QAAQ,CAAC,iBAAiB,+CAA8E;IAOxG,QAAQ,CAAC,aAAa,+CAAuE;IAC7F,QAAQ,CAAC,IAAI,8CAA2D;IAExE;;OAEG;IACH,QAAQ,CAAC,MAAM,8CAAmB;IAClC;;OAEG;IACH,QAAQ,CAAC,MAAM,8CAAmB;IAElC,QAAQ,CAAC,oBAAoB,iDAAY;IACzC,QAAQ,CAAC,oBAAoB,iDAAY;IAEzC,SAAS,CAAC,QAAQ,CAAC,YAAY;;OAE3B;IAEJ,OAAO,CAAC,QAAQ,CAAC,YAAY,CAU1B;IAEH,SAAS,CAAC,QAAQ,CAAC,oBAAoB,sCAMpC;IAEH,SAAS,CAAC,QAAQ,CAAC,kBAAkB,yCAGlC;IAEH,SAAS,CAAC,QAAQ,CAAC,WAAW,8DAE3B;IAEH,SAAS,CAAC,sBAAsB,0CAQ7B;IAEH,SAAS,CAAC,WAAW,sCAKlB;IAEH,aAAa;IAIb,aAAa;yCAvGF,0BAA0B;2CAA1B,0BAA0B;CA0GtC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SizeChangeDirective implements OnDestroy {
|
|
4
|
+
private elRef;
|
|
5
|
+
readonly madSizeChange: import("@angular/core").OutputEmitterRef<ResizeObserverEntry>;
|
|
6
|
+
private readonly changes;
|
|
7
|
+
constructor(elRef: ElementRef<HTMLElement>);
|
|
8
|
+
ngOnDestroy(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SizeChangeDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SizeChangeDirective, "[madSizeChange]", never, {}, { "madSizeChange": "madSizeChange"; }, never, never, true, never>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=size-change.directive.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"size-change.directive.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/size-change/size-change.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,SAAS,EAAU,MAAM,eAAe,CAAC;;AAEzE,qBAGa,mBAAoB,YAAW,SAAS;IAOvC,OAAO,CAAC,KAAK;IANzB,QAAQ,CAAC,aAAa,gEAAiC;IAEvD,OAAO,CAAC,QAAQ,CAAC,OAAO,CAErB;gBAEiB,KAAK,EAAE,UAAU,CAAC,WAAW,CAAC;IAIlD,WAAW;yCAXA,mBAAmB;2CAAnB,mBAAmB;CAc/B"}
|
package/package.json
CHANGED