@tiba-spark/client-shared-lib 25.3.0-620 → 25.3.0-629
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/esm2022/libraries/components/index.mjs +14 -12
- package/esm2022/libraries/components/message-bar/message-bar-container/message-bar-container.component.mjs +4 -3
- package/esm2022/libraries/components/overlay-loading-container/{empty-resutls/empty-resutls.component.mjs → empty-results/empty-results.component.mjs} +1 -1
- package/esm2022/libraries/components/overlay-loading-container/error-results/error-results.component.mjs +26 -0
- package/esm2022/libraries/components/overlay-loading-container/index.mjs +3 -2
- package/esm2022/libraries/components/overlay-loading-container/loading-overlay.component.mjs +7 -9
- package/esm2022/libraries/components/restart-link/restart-link.component.mjs +41 -0
- package/esm2022/libraries/components/restart-link/restart-link.module.mjs +28 -0
- package/esm2022/libraries/constants/global-constants.mjs +3 -1
- package/esm2022/libraries/modules/auth/refresh-token.state.mjs +1 -1
- package/esm2022/libraries/pipes/humanize.pipe.mjs +25 -0
- package/esm2022/libraries/pipes/index.mjs +2 -1
- package/esm2022/libraries/pipes/shared-pipes.module.mjs +11 -6
- package/esm2022/libraries/resolvers/version.resolver.mjs +4 -1
- package/esm2022/libraries/services/refresh-token.service.mjs +35 -6
- package/esm2022/libraries/services/smartpark.service.mjs +18 -5
- package/fesm2022/tiba-spark-client-shared-lib.mjs +863 -723
- package/fesm2022/tiba-spark-client-shared-lib.mjs.map +1 -1
- package/libraries/components/index.d.ts +13 -11
- package/libraries/components/index.d.ts.map +1 -1
- package/libraries/components/message-bar/message-bar-container/message-bar-container.component.d.ts +1 -0
- package/libraries/components/message-bar/message-bar-container/message-bar-container.component.d.ts.map +1 -1
- package/libraries/components/overlay-loading-container/{empty-resutls/empty-resutls.component.d.ts → empty-results/empty-results.component.d.ts} +1 -1
- package/libraries/components/overlay-loading-container/{empty-resutls/empty-resutls.component.d.ts.map → empty-results/empty-results.component.d.ts.map} +1 -1
- package/libraries/components/overlay-loading-container/error-results/error-results.component.d.ts +10 -0
- package/libraries/components/overlay-loading-container/error-results/error-results.component.d.ts.map +1 -0
- package/libraries/components/overlay-loading-container/index.d.ts +2 -1
- package/libraries/components/overlay-loading-container/index.d.ts.map +1 -1
- package/libraries/components/overlay-loading-container/loading-overlay.component.d.ts +0 -2
- package/libraries/components/overlay-loading-container/loading-overlay.component.d.ts.map +1 -1
- package/libraries/components/restart-link/restart-link.component.d.ts +19 -0
- package/libraries/components/restart-link/restart-link.component.d.ts.map +1 -0
- package/libraries/components/restart-link/restart-link.module.d.ts +10 -0
- package/libraries/components/restart-link/restart-link.module.d.ts.map +1 -0
- package/libraries/constants/global-constants.d.ts +2 -0
- package/libraries/constants/global-constants.d.ts.map +1 -1
- package/libraries/pipes/humanize.pipe.d.ts +16 -0
- package/libraries/pipes/humanize.pipe.d.ts.map +1 -0
- package/libraries/pipes/index.d.ts +1 -0
- package/libraries/pipes/index.d.ts.map +1 -1
- package/libraries/pipes/shared-pipes.module.d.ts +2 -1
- package/libraries/pipes/shared-pipes.module.d.ts.map +1 -1
- package/libraries/resolvers/version.resolver.d.ts.map +1 -1
- package/libraries/services/refresh-token.service.d.ts +6 -2
- package/libraries/services/refresh-token.service.d.ts.map +1 -1
- package/libraries/services/smartpark.service.d.ts +3 -1
- package/libraries/services/smartpark.service.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/libraries/theme/_expansion-panel.scss +6 -1
- package/src/libraries/theme/mat-components/_mat-nav-list.scss +13 -0
|
@@ -1,23 +1,25 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './common-pages';
|
|
2
|
+
export * from './device';
|
|
2
3
|
export * from './icon';
|
|
3
4
|
export * from './message-bar';
|
|
4
|
-
export * from './overlay-loading-container';
|
|
5
|
-
export * from './common-pages';
|
|
6
5
|
export * from './notification';
|
|
7
|
-
export * from './
|
|
6
|
+
export * from './overlay-loading-container';
|
|
7
|
+
export * from './restart-link/restart-link.module';
|
|
8
|
+
export * from './shared-components.module';
|
|
9
|
+
export * from './account-frame-message-bar/account-frame-message-bar.component';
|
|
10
|
+
export * from './base/base.component';
|
|
11
|
+
export * from './cloud-confirm-dialog/cloud-confirm-dialog.component';
|
|
12
|
+
export * from './com-status-icon/com-status-icon.component';
|
|
13
|
+
export * from './dynamic-container/dynamic-container.component';
|
|
8
14
|
export * from './field-label/field-label.component';
|
|
9
15
|
export * from './field-validations/field-validations.component';
|
|
10
16
|
export * from './form-validations/form-validations.component';
|
|
11
|
-
export * from './com-status-icon/com-status-icon.component';
|
|
12
17
|
export * from './global-message-container/global-message-container.component';
|
|
13
18
|
export * from './logo/logo.component';
|
|
14
|
-
export * from './cloud-confirm-dialog/cloud-confirm-dialog.component';
|
|
15
|
-
export * from './search-value-highlight/search-value-highlight.component';
|
|
16
|
-
export * from './dynamic-container/dynamic-container.component';
|
|
17
|
-
export * from './account-frame-message-bar/account-frame-message-bar.component';
|
|
18
|
-
export * from './time-elapsed-counter/time-elapsed-counter.component';
|
|
19
19
|
export * from './modal-buttons-wrapper/modal-buttons-wrapper.component';
|
|
20
|
-
export * from './base/base.component';
|
|
21
20
|
export * from './module-menu/module-menu-base.component';
|
|
21
|
+
export * from './restart-link/restart-link.component';
|
|
22
|
+
export * from './search-value-highlight/search-value-highlight.component';
|
|
22
23
|
export * from './status-icon/status-icon.component';
|
|
24
|
+
export * from './time-elapsed-counter/time-elapsed-counter.component';
|
|
23
25
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/components/index.ts"],"names":[],"mappings":"AACA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/components/index.ts"],"names":[],"mappings":"AACA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,6BAA6B,CAAC;AAC5C,cAAc,oCAAoC,CAAC;AACnD,cAAc,4BAA4B,CAAC;AAG3C,cAAc,iEAAiE,CAAC;AAChF,cAAc,uBAAuB,CAAC;AACtC,cAAc,uDAAuD,CAAC;AACtE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,iDAAiD,CAAC;AAChE,cAAc,qCAAqC,CAAC;AACpD,cAAc,iDAAiD,CAAC;AAChE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,+DAA+D,CAAC;AAC9E,cAAc,uBAAuB,CAAC;AACtC,cAAc,yDAAyD,CAAC;AACxE,cAAc,0CAA0C,CAAC;AACzD,cAAc,uCAAuC,CAAC;AACtD,cAAc,2DAA2D,CAAC;AAC1E,cAAc,qCAAqC,CAAC;AACpD,cAAc,uDAAuD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message-bar-container.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/client-shared-lib/src/libraries/components/message-bar/message-bar-container/message-bar-container.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAqD,MAAM,EAAY,MAAM,eAAe,CAAC;AAGpG,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AACvD,OAAO,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAExE,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;;AAExD,qBAWa,4BAA6B,YAAW,MAAM;IAmB7C,OAAO,CAAC,SAAS;IACoB,IAAI,CAAC,EAAE,WAAW;IAlBnE,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,GAAG;QACzC,CAAC,KAAK,EAAE,MAAM,GAAG,GAAG,CAAC;KACtB,CAAC;IAEO,WAAW,EAAE,WAAW,CAAC;IAClC,IAAa,IAAI,CAAC,KAAK,EAAE,OAAO,EAK/B;IAED,cAAc,0BAAoB;IAClC,WAAW,qBAAe;IAE1B,eAAe,EAAE,OAAO,CAAC;gBAEL,SAAS,EAAE,gBAAgB,EACE,IAAI,CAAC,EAAE,WAAW;IAGnE,QAAQ,IAAI,IAAI;IAMhB,UAAU
|
|
1
|
+
{"version":3,"file":"message-bar-container.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/client-shared-lib/src/libraries/components/message-bar/message-bar-container/message-bar-container.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAqD,MAAM,EAAY,MAAM,eAAe,CAAC;AAGpG,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AACvD,OAAO,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAExE,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;;AAExD,qBAWa,4BAA6B,YAAW,MAAM;IAmB7C,OAAO,CAAC,SAAS;IACoB,IAAI,CAAC,EAAE,WAAW;IAlBnE,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,GAAG;QACzC,CAAC,KAAK,EAAE,MAAM,GAAG,GAAG,CAAC;KACtB,CAAC;IAEO,WAAW,EAAE,WAAW,CAAC;IAClC,IAAa,IAAI,CAAC,KAAK,EAAE,OAAO,EAK/B;IAED,cAAc,0BAAoB;IAClC,WAAW,qBAAe;IAE1B,eAAe,EAAE,OAAO,CAAC;gBAEL,SAAS,EAAE,gBAAgB,EACE,IAAI,CAAC,EAAE,WAAW;IAGnE,QAAQ,IAAI,IAAI;IAMhB,UAAU;;;;;;;yCA7BC,4BAA4B;2CAA5B,4BAA4B;CAiDxC"}
|
|
@@ -9,4 +9,4 @@ export declare class EmptyResultsComponent extends BaseComponent implements OnIn
|
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<EmptyResultsComponent, never>;
|
|
10
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyResultsComponent, "tb-empty-results", never, { "options": { "alias": "options"; "required": false; }; }, {}, never, never, true, never>;
|
|
11
11
|
}
|
|
12
|
-
//# sourceMappingURL=empty-
|
|
12
|
+
//# sourceMappingURL=empty-results.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"empty-
|
|
1
|
+
{"version":3,"file":"empty-results.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/client-shared-lib/src/libraries/components/overlay-loading-container/empty-results/empty-results.component.ts"],"names":[],"mappings":"AACA,OAAO,EAA6C,MAAM,EAAE,MAAM,eAAe,CAAC;AAElF,OAAO,EAAE,mBAAmB,EAAE,MAAM,oDAAoD,CAAC;AAEzF,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;;AAG1D,qBAaa,qBAAsB,SAAQ,aAAc,YAAW,MAAM;IAE/D,OAAO,EAAE,mBAAmB,CAAC;;IAMtC,QAAQ,IAAI,IAAI;yCARL,qBAAqB;2CAArB,qBAAqB;CAUjC"}
|
package/libraries/components/overlay-loading-container/error-results/error-results.component.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IconsHelper } from '../../../enums/icon.enum';
|
|
2
|
+
import { BaseComponent } from '../../base/base.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ErrorResultsComponent extends BaseComponent {
|
|
5
|
+
IconsHelper: typeof IconsHelper;
|
|
6
|
+
constructor();
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorResultsComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorResultsComponent, "tb-error-results", never, {}, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=error-results.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"error-results.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/client-shared-lib/src/libraries/components/overlay-loading-container/error-results/error-results.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAEvD,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;;AAG1D,qBAYa,qBAAsB,SAAQ,aAAa;IAEtD,WAAW,qBAAe;;yCAFf,qBAAqB;2CAArB,qBAAqB;CAOjC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/client-shared-lib/src/libraries/components/overlay-loading-container/index.ts"],"names":[],"mappings":"AACA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/client-shared-lib/src/libraries/components/overlay-loading-container/index.ts"],"names":[],"mappings":"AACA,cAAc,yCAAyC,CAAC;AACxD,cAAc,yCAAyC,CAAC;AACxD,cAAc,6BAA6B,CAAC"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { IconsHelper } from '../../enums/icon.enum';
|
|
2
1
|
import { SpinnerDiameterSize } from '../../enums/spinner-diameter-size.enum';
|
|
3
2
|
import { LoadingOverlayOptions } from '../../interfaces/loading-overlay-options';
|
|
4
3
|
import { ActionStatusService } from '../../utils/ngxs/action-status.service';
|
|
@@ -10,7 +9,6 @@ export declare class LoadingOverlayComponent extends BaseComponent {
|
|
|
10
9
|
private _loadingOverlayOptions;
|
|
11
10
|
get loadingOverlayOptions(): LoadingOverlayOptions;
|
|
12
11
|
set loadingOverlayOptions(loadingOverlayOptions: LoadingOverlayOptions);
|
|
13
|
-
IconsHelper: typeof IconsHelper;
|
|
14
12
|
SpinnerDiameterSize: typeof SpinnerDiameterSize;
|
|
15
13
|
constructor(actionStatusService: ActionStatusService);
|
|
16
14
|
init(loadingOverlayOptions: LoadingOverlayOptions): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"loading-overlay.component.d.ts","sourceRoot":"","sources":["../../../../../projects/client-shared-lib/src/libraries/components/overlay-loading-container/loading-overlay.component.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"loading-overlay.component.d.ts","sourceRoot":"","sources":["../../../../../projects/client-shared-lib/src/libraries/components/overlay-loading-container/loading-overlay.component.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,qBAAqB,EAAE,MAAM,0CAA0C,CAAC;AAEjF,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;;AAKvD,qBAca,uBAAwB,SAAQ,aAAa;IAgB5C,OAAO,CAAC,mBAAmB;IAd9B,IAAI,EAAE,GAAG,CAAC;IAEnB,OAAO,CAAC,sBAAsB,CAAwB;IACtD,IACI,qBAAqB,IAAI,qBAAqB,CAEjD;IACD,IAAI,qBAAqB,CAAC,qBAAqB,EAAE,qBAAqB,EAGrE;IAED,mBAAmB,6BAAuB;gBAEtB,mBAAmB,EAAE,mBAAmB;IAI5D,IAAI,CAAC,qBAAqB,EAAE,qBAAqB,GAAG,IAAI;yCApB7C,uBAAuB;2CAAvB,uBAAuB;CAiCnC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { Store } from '@ngxs/store';
|
|
4
|
+
import { IconsHelper } from '../../enums/icon.enum';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class RestartLinkComponent implements OnInit {
|
|
7
|
+
private translate;
|
|
8
|
+
private store;
|
|
9
|
+
private elementRef;
|
|
10
|
+
label: string;
|
|
11
|
+
messageText: string;
|
|
12
|
+
IconSettings: typeof IconsHelper;
|
|
13
|
+
constructor(translate: TranslateService, store: Store, elementRef: ElementRef);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
onClick(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RestartLinkComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RestartLinkComponent, "tb-restart-link", never, { "label": { "alias": "label"; "required": false; }; "messageText": { "alias": "messageText"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=restart-link.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"restart-link.component.d.ts","sourceRoot":"","sources":["../../../../../projects/client-shared-lib/src/libraries/components/restart-link/restart-link.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAS,MAAM,EAAE,MAAM,eAAe,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEpC,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;;AAMpD,qBAKa,oBAAqB,YAAW,MAAM;IAQ/C,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,UAAU;IARX,KAAK,EAAE,MAAM,CAAqE;IAClF,WAAW,EAAE,MAAM,CAAkF;IAE9G,YAAY,qBAAe;gBAGjB,SAAS,EAAE,gBAAgB,EAC3B,KAAK,EAAE,KAAK,EACZ,UAAU,EAAE,UAAU;IAGhC,QAAQ,IAAI,IAAI;IAST,OAAO,IAAI,IAAI;yCAtBX,oBAAoB;2CAApB,oBAAoB;CAyBhC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./restart-link.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../icon/icon.module";
|
|
5
|
+
export declare class RestartLinkModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RestartLinkModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RestartLinkModule, [typeof i1.RestartLinkComponent], [typeof i2.CommonModule, typeof i3.IconModule], [typeof i1.RestartLinkComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<RestartLinkModule>;
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=restart-link.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"restart-link.module.d.ts","sourceRoot":"","sources":["../../../../../projects/client-shared-lib/src/libraries/components/restart-link/restart-link.module.ts"],"names":[],"mappings":";;;;AAKA,qBAYa,iBAAiB;yCAAjB,iBAAiB;0CAAjB,iBAAiB;0CAAjB,iBAAiB;CAAI"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { LanguageTypeKeys } from "../enums/language-type-keys.enum";
|
|
1
2
|
import { FrequentParkingAction } from "../service-proxy/edge-service-proxies";
|
|
2
3
|
export declare const DISABLED_FOCUS_ELEMENT_TYPES: string[];
|
|
3
4
|
export declare const DISABLED_FOCUS_ELEMENT_CLASSES: string[];
|
|
@@ -164,4 +165,5 @@ export declare const MaxDisplayTimeout = 255;
|
|
|
164
165
|
export declare const MinDisplayTimeout = 1;
|
|
165
166
|
export declare const DefaultImageTimeout = 10;
|
|
166
167
|
export declare const MaxIPV4TextLength = 15;
|
|
168
|
+
export declare const RTL_LANGUAGES: LanguageTypeKeys[];
|
|
167
169
|
//# sourceMappingURL=global-constants.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"global-constants.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/constants/global-constants.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"global-constants.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/constants/global-constants.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Transforms a string by replacing all underscores with spaces.
|
|
5
|
+
*
|
|
6
|
+
* @param value - The input string that may contain underscores.
|
|
7
|
+
* @returns The transformed string with underscores replaced by spaces.
|
|
8
|
+
* Split the string whenever an uppercase letter starts
|
|
9
|
+
* Returns an empty string if the input is null, undefined, or empty.
|
|
10
|
+
*/
|
|
11
|
+
export declare class HumanizePipe implements PipeTransform {
|
|
12
|
+
transform(value: string | null | undefined): string;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HumanizePipe, never>;
|
|
14
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<HumanizePipe, "humanizePipe", true>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=humanize.pipe.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"humanize.pipe.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/pipes/humanize.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;;AAEpD;;;;;;;GAOG;AAEH,qBACa,YAAa,YAAW,aAAa;IAChD,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,MAAM;yCADxC,YAAY;uCAAZ,YAAY;CAOxB"}
|
|
@@ -11,6 +11,7 @@ export * from './filter-numbers.pipe';
|
|
|
11
11
|
export * from './filter.pipe';
|
|
12
12
|
export * from './format.pipe';
|
|
13
13
|
export * from './group-permission.pipe';
|
|
14
|
+
export * from './humanize.pipe';
|
|
14
15
|
export * from './order-by.pipe';
|
|
15
16
|
export * from './orphan-facilities.pipe';
|
|
16
17
|
export * from './smartpark-time.pipe';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/pipes/index.ts"],"names":[],"mappings":"AACA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AAGtC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,yBAAyB,CAAC;AACxC,cAAc,iBAAiB,CAAC;AAChC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,yBAAyB,CAAC;AACxC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/pipes/index.ts"],"names":[],"mappings":"AACA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AAGtC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,yBAAyB,CAAC;AACxC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,yBAAyB,CAAC;AACxC,cAAc,iBAAiB,CAAC;AAChC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC"}
|
|
@@ -23,9 +23,10 @@ import * as i21 from "./zerofy-negative.pipe";
|
|
|
23
23
|
import * as i22 from "./substr-highlight.pipe";
|
|
24
24
|
import * as i23 from "./group-permission.pipe";
|
|
25
25
|
import * as i24 from "./orphan-facilities.pipe";
|
|
26
|
+
import * as i25 from "./humanize.pipe";
|
|
26
27
|
export declare class SharedPipesModule {
|
|
27
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedPipesModule, never>;
|
|
28
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedPipesModule, never, [typeof i1.SmartparkDateTimePipe, typeof i2.CLogItPipe, typeof i3.CentToCoinPipe, typeof i4.CurlyToBoldPipe, typeof i5.DecimalToAmountPipe, typeof i6.DecimalToCurrencyPipe, typeof i7.EnumsToArrayPipe, typeof i8.FilterKeysPipe, typeof i9.FilterNumbersPipe, typeof i10.FilterPipe, typeof i11.TBFormatPipe, typeof i12.OrderByPipe, typeof i13.SortPipe, typeof i14.StringItPipe, typeof i15.TimeAgoPipe, typeof i16.TimeElapsedPipe, typeof i17.TimeRangePipe, typeof i18.TranslateLocalPipe, typeof i19.TreeFilterKeysPipe, typeof i20.WrapFnPipe, typeof i21.ZerofyNegativePipe, typeof i22.SubstrHightlightPipe, typeof i23.GroupPermissionsPipe, typeof i24.OrphanFacilitiesPipe], [typeof i1.SmartparkDateTimePipe, typeof i2.CLogItPipe, typeof i3.CentToCoinPipe, typeof i4.CurlyToBoldPipe, typeof i5.DecimalToAmountPipe, typeof i6.DecimalToCurrencyPipe, typeof i7.EnumsToArrayPipe, typeof i8.FilterKeysPipe, typeof i9.FilterNumbersPipe, typeof i10.FilterPipe, typeof i11.TBFormatPipe, typeof i12.OrderByPipe, typeof i13.SortPipe, typeof i14.StringItPipe, typeof i15.TimeAgoPipe, typeof i16.TimeElapsedPipe, typeof i17.TimeRangePipe, typeof i18.TranslateLocalPipe, typeof i19.TreeFilterKeysPipe, typeof i20.WrapFnPipe, typeof i21.ZerofyNegativePipe, typeof i22.SubstrHightlightPipe, typeof i23.GroupPermissionsPipe, typeof i24.OrphanFacilitiesPipe]>;
|
|
29
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedPipesModule, never, [typeof i1.SmartparkDateTimePipe, typeof i2.CLogItPipe, typeof i3.CentToCoinPipe, typeof i4.CurlyToBoldPipe, typeof i5.DecimalToAmountPipe, typeof i6.DecimalToCurrencyPipe, typeof i7.EnumsToArrayPipe, typeof i8.FilterKeysPipe, typeof i9.FilterNumbersPipe, typeof i10.FilterPipe, typeof i11.TBFormatPipe, typeof i12.OrderByPipe, typeof i13.SortPipe, typeof i14.StringItPipe, typeof i15.TimeAgoPipe, typeof i16.TimeElapsedPipe, typeof i17.TimeRangePipe, typeof i18.TranslateLocalPipe, typeof i19.TreeFilterKeysPipe, typeof i20.WrapFnPipe, typeof i21.ZerofyNegativePipe, typeof i22.SubstrHightlightPipe, typeof i23.GroupPermissionsPipe, typeof i24.OrphanFacilitiesPipe, typeof i25.HumanizePipe], [typeof i1.SmartparkDateTimePipe, typeof i2.CLogItPipe, typeof i3.CentToCoinPipe, typeof i4.CurlyToBoldPipe, typeof i5.DecimalToAmountPipe, typeof i6.DecimalToCurrencyPipe, typeof i7.EnumsToArrayPipe, typeof i8.FilterKeysPipe, typeof i9.FilterNumbersPipe, typeof i10.FilterPipe, typeof i11.TBFormatPipe, typeof i12.OrderByPipe, typeof i13.SortPipe, typeof i14.StringItPipe, typeof i15.TimeAgoPipe, typeof i16.TimeElapsedPipe, typeof i17.TimeRangePipe, typeof i18.TranslateLocalPipe, typeof i19.TreeFilterKeysPipe, typeof i20.WrapFnPipe, typeof i21.ZerofyNegativePipe, typeof i22.SubstrHightlightPipe, typeof i23.GroupPermissionsPipe, typeof i24.OrphanFacilitiesPipe, typeof i25.HumanizePipe]>;
|
|
29
30
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedPipesModule>;
|
|
30
31
|
}
|
|
31
32
|
//# sourceMappingURL=shared-pipes.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shared-pipes.module.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/pipes/shared-pipes.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"shared-pipes.module.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/pipes/shared-pipes.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AA2BA,qBA0Da,iBAAiB;yCAAjB,iBAAiB;0CAAjB,iBAAiB;0CAAjB,iBAAiB;CAAI"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.resolver.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/resolvers/version.resolver.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,
|
|
1
|
+
{"version":3,"file":"version.resolver.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/resolvers/version.resolver.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,EAAc,UAAU,EAAM,MAAM,MAAM,CAAC;AAGlD,OAAO,EAAE,qBAAqB,EAAE,uCAAuC,EAAE,MAAM,wCAAwC,CAAC;;AAExH,qBACa,eAAe;IAEd,OAAO,CAAC,qBAAqB;IAAyB,OAAO,CAAC,KAAK;gBAA3D,qBAAqB,EAAE,qBAAqB,EAAU,KAAK,EAAE,KAAK;IAGtF,OAAO,IAAI,UAAU,CAAC,uCAAuC,CAAC;yCALnD,eAAe;6CAAf,eAAe;CAe3B"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HttpHandler, HttpRequest } from '@angular/common/http';
|
|
2
|
-
import { Store } from '@ngxs/store';
|
|
2
|
+
import { Actions, Store } from '@ngxs/store';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { RefreshInfo } from '../modules/auth/model/refresh-info.interface';
|
|
5
5
|
import { Identity } from '../service-proxy';
|
|
@@ -10,15 +10,19 @@ export declare class RefreshTokenService {
|
|
|
10
10
|
private store;
|
|
11
11
|
private usersServiceProxyIdentity;
|
|
12
12
|
private sessionStorageService;
|
|
13
|
+
private actions$;
|
|
13
14
|
private mobileServiceProxyIdentity;
|
|
14
15
|
private isRefreshing;
|
|
15
16
|
private refreshTokenSubject;
|
|
16
|
-
constructor(store: Store, usersServiceProxyIdentity: UsersServiceProxyIdentity, sessionStorageService: SessionStorageService, mobileServiceProxyIdentity: Identity.MobileServiceProxyIdentity);
|
|
17
|
+
constructor(store: Store, usersServiceProxyIdentity: UsersServiceProxyIdentity, sessionStorageService: SessionStorageService, actions$: Actions, mobileServiceProxyIdentity: Identity.MobileServiceProxyIdentity);
|
|
17
18
|
handleRefreshToken(request: HttpRequest<any>, next: HttpHandler): Observable<any>;
|
|
18
19
|
handleMobileRefreshToken(request: HttpRequest<any>, next: HttpHandler): Observable<any>;
|
|
19
20
|
getRefreshToken(): Observable<any>;
|
|
20
21
|
getNewRefreshInfo(tokenResult: RefreshTokenDto): RefreshInfo;
|
|
21
22
|
setAuthSession(tokenResult: RefreshTokenDto): void;
|
|
23
|
+
private listenToLogoutAction;
|
|
24
|
+
private listenToLogoutMobileAction;
|
|
25
|
+
private clearRefreshTokenQueue;
|
|
22
26
|
private handleRefreshTokenQueue;
|
|
23
27
|
private addToken;
|
|
24
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<RefreshTokenService, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"refresh-token.service.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/services/refresh-token.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAEhE,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"refresh-token.service.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/services/refresh-token.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAEhE,OAAO,EAAE,OAAO,EAAsB,KAAK,EAAE,MAAM,aAAa,CAAC;AACjE,OAAO,EAAS,UAAU,EAAqC,MAAM,MAAM,CAAC;AAG5E,OAAO,EAAE,WAAW,EAAE,MAAM,8CAA8C,CAAC;AAE3E,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,yBAAyB,EAAE,MAAM,2CAA2C,CAAC;AACvG,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;;AAElE,qBACa,mBAAmB;IAKlB,OAAO,CAAC,KAAK;IAAS,OAAO,CAAC,yBAAyB;IAA6B,OAAO,CAAC,qBAAqB;IAC3H,OAAO,CAAC,QAAQ;IAAW,OAAO,CAAC,0BAA0B;IAJ/D,OAAO,CAAC,YAAY,CAAS;IAC7B,OAAO,CAAC,mBAAmB,CAAoC;gBAE3C,KAAK,EAAE,KAAK,EAAU,yBAAyB,EAAE,yBAAyB,EAAU,qBAAqB,EAAE,qBAAqB,EAC1I,QAAQ,EAAE,OAAO,EAAU,0BAA0B,EAAE,QAAQ,CAAC,0BAA0B;IAK7F,kBAAkB,CAAC,OAAO,EAAE,WAAW,CAAC,GAAG,CAAC,EAAE,IAAI,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG,CAAC;IA6BjF,wBAAwB,CAAC,OAAO,EAAE,WAAW,CAAC,GAAG,CAAC,EAAE,IAAI,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG,CAAC;IA6BvF,eAAe,IAAI,UAAU,CAAC,GAAG,CAAC;IAOlC,iBAAiB,CAAC,WAAW,EAAE,eAAe,GAAG,WAAW;IAW5D,cAAc,CAAC,WAAW,EAAE,eAAe;IAMlD,OAAO,CAAC,oBAAoB;IAQ5B,OAAO,CAAC,0BAA0B;IAQlC,OAAO,CAAC,sBAAsB;IAM9B,OAAO,CAAC,uBAAuB;IAQ/B,OAAO,CAAC,QAAQ;yCA3HL,mBAAmB;6CAAnB,mBAAmB;CAkI/B"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ActionType, Store } from '@ngxs/store';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
+
import { MessageBarService } from '../components';
|
|
3
4
|
import { LoadingOverlayOptions } from '../interfaces/loading-overlay-options';
|
|
4
5
|
import { AppModule } from '../service-proxy/cloud-service-proxies';
|
|
5
6
|
import { FacilityServiceProxy, SmartParkWrapperDtoHttpResponseData } from '../service-proxy/edge-service-proxies';
|
|
@@ -9,11 +10,12 @@ export declare class SmartparkService {
|
|
|
9
10
|
private store;
|
|
10
11
|
private facilityServiceProxy;
|
|
11
12
|
private actionStatusService;
|
|
13
|
+
private messageBarService;
|
|
12
14
|
get loading$(): Observable<boolean>;
|
|
13
15
|
get hasError$(): Observable<boolean>;
|
|
14
16
|
private loading;
|
|
15
17
|
private hasError;
|
|
16
|
-
constructor(store: Store, facilityServiceProxy: FacilityServiceProxy, actionStatusService: ActionStatusService);
|
|
18
|
+
constructor(store: Store, facilityServiceProxy: FacilityServiceProxy, actionStatusService: ActionStatusService, messageBarService: MessageBarService);
|
|
17
19
|
getSmartparkBasicAll(appModule: AppModule, setSmartparkBasic?: boolean): Observable<SmartParkWrapperDtoHttpResponseData>;
|
|
18
20
|
getLoadingOverlayOptions(actions: ActionType | ActionType[], noDataMessage?: string): LoadingOverlayOptions;
|
|
19
21
|
private getLoadingStream;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"smartpark.service.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/services/smartpark.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAChD,OAAO,EAA8C,UAAU,EAAE,MAAM,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"smartpark.service.d.ts","sourceRoot":"","sources":["../../../../projects/client-shared-lib/src/libraries/services/smartpark.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAChD,OAAO,EAA8C,UAAU,EAAE,MAAM,MAAM,CAAC;AAE9E,OAAO,EAAE,iBAAiB,EAAqC,MAAM,eAAe,CAAC;AAErF,OAAO,EAAE,qBAAqB,EAAE,MAAM,uCAAuC,CAAC;AAI9E,OAAO,EAAE,SAAS,EAAkB,MAAM,wCAAwC,CAAC;AACnF,OAAO,EAAE,oBAAoB,EAAE,mCAAmC,EAAE,MAAM,uCAAuC,CAAC;AAClH,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;;AAE1E,qBACa,gBAAgB;IAczB,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,oBAAoB;IAC5B,OAAO,CAAC,mBAAmB;IAC3B,OAAO,CAAC,iBAAiB;IAf3B,IAAI,QAAQ,IAAI,UAAU,CAAC,OAAO,CAAC,CAElC;IAED,IAAI,SAAS,IAAI,UAAU,CAAC,OAAO,CAAC,CAEnC;IAED,OAAO,CAAC,OAAO,CAAwD;IACvE,OAAO,CAAC,QAAQ,CAAwD;gBAG9D,KAAK,EAAE,KAAK,EACZ,oBAAoB,EAAE,oBAAoB,EAC1C,mBAAmB,EAAE,mBAAmB,EACxC,iBAAiB,EAAE,iBAAiB;IAIvC,oBAAoB,CAAC,SAAS,EAAE,SAAS,EAAE,iBAAiB,UAAO,GAAG,UAAU,CAAC,mCAAmC,CAAC;IAsCrH,wBAAwB,CAAC,OAAO,EAAE,UAAU,GAAG,UAAU,EAAE,EAAE,aAAa,GAAE,MAAa,GAAG,qBAAqB;IAOxH,OAAO,CAAC,gBAAgB;IAexB,OAAO,CAAC,cAAc;IAItB,OAAO,CAAC,2BAA2B;yCArFxB,gBAAgB;6CAAhB,gBAAgB;CAiG5B"}
|
package/package.json
CHANGED
|
@@ -60,9 +60,14 @@
|
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
// only the expansion indicator can expend the panel
|
|
63
|
-
.tb-expansion-
|
|
63
|
+
.tb-expansion-panel-header-title {
|
|
64
64
|
pointer-events: auto;
|
|
65
65
|
order: 0;
|
|
66
|
+
|
|
67
|
+
&:focus,
|
|
68
|
+
&:hover {
|
|
69
|
+
background: variables.$drawer-item-hover-background;
|
|
70
|
+
}
|
|
66
71
|
}
|
|
67
72
|
|
|
68
73
|
.mat-icon {
|
|
@@ -8,6 +8,10 @@ mat-nav-list.mat-mdc-nav-list.tb-nav-items {
|
|
|
8
8
|
.tb-active {
|
|
9
9
|
background-color: variables.$drawer-item-background !important;
|
|
10
10
|
pointer-events: none;
|
|
11
|
+
|
|
12
|
+
.mdc-list-item__content {
|
|
13
|
+
pointer-events: none;
|
|
14
|
+
}
|
|
11
15
|
}
|
|
12
16
|
|
|
13
17
|
.mat-mdc-list-item {
|
|
@@ -55,3 +59,12 @@ mat-nav-list.mat-mdc-nav-list.tb-nav-items.command-center-menu {
|
|
|
55
59
|
white-space: nowrap;
|
|
56
60
|
}
|
|
57
61
|
}
|
|
62
|
+
|
|
63
|
+
a[isrouteactive="true"] {
|
|
64
|
+
background-color: variables.$drawer-item-background;
|
|
65
|
+
pointer-events: none;
|
|
66
|
+
|
|
67
|
+
.mdc-list-item__content {
|
|
68
|
+
pointer-events: none;
|
|
69
|
+
}
|
|
70
|
+
}
|