@porscheinformatik/material-addons 0.0.34 → 0.0.99
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/README.md +29 -29
- package/esm2022/lib/button/button.mjs +7 -0
- package/esm2022/lib/button/button.module.mjs +26 -0
- package/esm2022/lib/button/danger-button/danger-button.component.mjs +28 -0
- package/esm2022/lib/button/flat-button/link-button.component.mjs +28 -0
- package/esm2022/lib/button/icon-button/icon-button.component.mjs +28 -0
- package/esm2022/lib/button/mad-basic-button.mjs +39 -0
- package/esm2022/lib/button/outline-button/outline-button.component.mjs +28 -0
- package/esm2022/lib/button/primary-button/primary-button.component.mjs +28 -0
- package/esm2022/lib/card/card.component.mjs +129 -0
- package/esm2022/lib/card/card.mjs +2 -0
- package/esm2022/lib/card/card.module.mjs +23 -0
- package/esm2022/lib/content-panel/content-header/content-header.component.mjs +11 -0
- package/esm2022/lib/content-panel/content-panel-container/content-panel-container.component.mjs +11 -0
- package/esm2022/lib/content-panel/content-panel-container-content/content-panel-container-content.component.mjs +11 -0
- package/esm2022/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.mjs +11 -0
- package/esm2022/lib/content-panel/content-panel.module.mjs +42 -0
- package/esm2022/lib/content-panel/main-container/main-container.component.mjs +11 -0
- package/esm2022/lib/data-table/data-table-action-type.mjs +6 -0
- package/esm2022/lib/data-table/data-table-action.mjs +2 -0
- package/esm2022/lib/data-table/data-table-column-definition.mjs +2 -0
- package/esm2022/lib/data-table/data-table-column.mjs +2 -0
- package/esm2022/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.mjs +103 -0
- package/esm2022/lib/data-table/data-table-row.mjs +2 -0
- package/esm2022/lib/data-table/data-table.component.mjs +529 -0
- package/esm2022/lib/data-table/data-table.mjs +3 -0
- package/esm2022/lib/data-table/data-table.module.mjs +81 -0
- package/esm2022/lib/file-upload/drag-and-drop-directive.directive.mjs +61 -0
- package/esm2022/lib/file-upload/file-upload.component.mjs +78 -0
- package/esm2022/lib/flowbar/flowbar.component.mjs +190 -0
- package/esm2022/lib/flowbar/flowbar.module.mjs +19 -0
- package/esm2022/lib/material-action-button/material-action-button.component.mjs +34 -0
- package/esm2022/lib/material-action-button/material-action-button.module.mjs +22 -0
- package/esm2022/lib/material-addons.module.mjs +45 -0
- package/esm2022/lib/numeric-field/number-format.service.mjs +139 -0
- package/esm2022/lib/numeric-field/numeric-field.directive.mjs +295 -0
- package/esm2022/lib/numeric-field/numeric-field.mjs +2 -0
- package/esm2022/lib/numeric-field/numeric-field.module.mjs +24 -0
- package/esm2022/lib/quick-list/base-quick-list.component.mjs +124 -0
- package/esm2022/lib/quick-list/quick-list-compact/quick-list-compact.component.mjs +22 -0
- package/esm2022/lib/quick-list/quick-list.component.mjs +23 -0
- package/esm2022/lib/quick-list/quick-list.mjs +6 -0
- package/esm2022/lib/quick-list/quick-list.module.mjs +46 -0
- package/esm2022/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.mjs +22 -0
- package/esm2022/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.mjs +22 -0
- package/esm2022/lib/readonly/readonly-form-field/readonly-form-field.component.mjs +181 -0
- package/esm2022/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.mjs +206 -0
- package/esm2022/lib/readonly/readonly-form-field.module.mjs +25 -0
- package/esm2022/lib/stepper/mad-stepper-animation.mjs +13 -0
- package/esm2022/lib/stepper/step-header/step-header.component.mjs +77 -0
- package/esm2022/lib/stepper/stepper.component.mjs +159 -0
- package/esm2022/lib/stepper/stepper.module.mjs +23 -0
- package/esm2022/lib/table/column-header.mjs +2 -0
- package/esm2022/lib/table/table-action.mjs +2 -0
- package/esm2022/lib/table/table.component.mjs +130 -0
- package/esm2022/lib/table/table.mjs +2 -0
- package/esm2022/lib/table/table.module.mjs +56 -0
- package/esm2022/lib/throttle-click/throttle-click.directive.mjs +38 -0
- package/esm2022/lib/throttle-click/throttle-click.module.mjs +18 -0
- package/esm2022/lib/toolbar/toolbar-action.interface.mjs +2 -0
- package/esm2022/lib/toolbar/toolbar.component.mjs +78 -0
- package/esm2022/lib/toolbar/toolbar.module.mjs +56 -0
- package/esm2022/lib/toolbar/toolbar.service.mjs +124 -0
- package/esm2022/porscheinformatik-material-addons.mjs +5 -0
- package/esm2022/public_api.mjs +42 -0
- package/fesm2022/porscheinformatik-material-addons.mjs +3229 -0
- package/fesm2022/porscheinformatik-material-addons.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/lib/button/button.d.ts +7 -0
- package/lib/button/button.d.ts.map +1 -0
- package/lib/button/button.module.d.ts +17 -0
- package/lib/button/button.module.d.ts.map +1 -0
- package/lib/button/danger-button/danger-button.component.d.ts +13 -0
- package/lib/button/danger-button/danger-button.component.d.ts.map +1 -0
- package/lib/button/flat-button/link-button.component.d.ts +13 -0
- package/lib/button/flat-button/link-button.component.d.ts.map +1 -0
- package/lib/button/icon-button/icon-button.component.d.ts +13 -0
- package/lib/button/icon-button/icon-button.component.d.ts.map +1 -0
- package/lib/button/mad-basic-button.d.ts +14 -0
- package/lib/button/mad-basic-button.d.ts.map +1 -0
- package/lib/button/outline-button/outline-button.component.d.ts +13 -0
- package/lib/button/outline-button/outline-button.component.d.ts.map +1 -0
- package/lib/button/primary-button/primary-button.component.d.ts +13 -0
- package/lib/button/primary-button/primary-button.component.d.ts.map +1 -0
- package/lib/card/card.component.d.ts +28 -0
- package/lib/card/card.component.d.ts.map +1 -0
- package/lib/card/card.d.ts +2 -0
- package/lib/card/card.d.ts.map +1 -0
- package/lib/card/card.module.d.ts +14 -0
- package/lib/card/card.module.d.ts.map +1 -0
- package/lib/content-panel/content-header/content-header.component.d.ts +6 -0
- package/lib/content-panel/content-header/content-header.component.d.ts.map +1 -0
- package/lib/content-panel/content-panel-container/content-panel-container.component.d.ts +6 -0
- package/lib/content-panel/content-panel-container/content-panel-container.component.d.ts.map +1 -0
- package/lib/content-panel/content-panel-container-content/content-panel-container-content.component.d.ts +6 -0
- package/lib/content-panel/content-panel-container-content/content-panel-container-content.component.d.ts.map +1 -0
- package/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.d.ts +6 -0
- package/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.d.ts.map +1 -0
- package/lib/content-panel/content-panel.module.d.ts +13 -0
- package/lib/content-panel/content-panel.module.d.ts.map +1 -0
- package/lib/content-panel/main-container/main-container.component.d.ts +6 -0
- package/lib/content-panel/main-container/main-container.component.d.ts.map +1 -0
- package/lib/data-table/data-table-action-type.d.ts +6 -0
- package/lib/data-table/data-table-action-type.d.ts.map +1 -0
- package/lib/data-table/data-table-action.d.ts +8 -0
- package/lib/data-table/data-table-action.d.ts.map +1 -0
- package/lib/data-table/data-table-column-definition.d.ts +28 -0
- package/lib/data-table/data-table-column-definition.d.ts.map +1 -0
- package/lib/data-table/data-table-column.d.ts +11 -0
- package/lib/data-table/data-table-column.d.ts.map +1 -0
- package/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.d.ts +27 -0
- package/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.d.ts.map +1 -0
- package/lib/data-table/data-table-row.d.ts +7 -0
- package/lib/data-table/data-table-row.d.ts.map +1 -0
- package/lib/data-table/data-table.component.d.ts +123 -0
- package/lib/data-table/data-table.component.d.ts.map +1 -0
- package/lib/data-table/data-table.d.ts +6 -0
- package/lib/data-table/data-table.d.ts.map +1 -0
- package/lib/data-table/data-table.module.d.ts +25 -0
- package/lib/data-table/data-table.module.d.ts.map +1 -0
- package/lib/file-upload/drag-and-drop-directive.directive.d.ts +13 -0
- package/lib/file-upload/drag-and-drop-directive.directive.d.ts.map +1 -0
- package/lib/file-upload/file-upload.component.d.ts +22 -0
- package/lib/file-upload/file-upload.component.d.ts.map +1 -0
- package/lib/flowbar/flowbar.component.d.ts +47 -0
- package/lib/flowbar/flowbar.component.d.ts.map +1 -0
- package/lib/flowbar/flowbar.module.d.ts +10 -0
- package/lib/flowbar/flowbar.module.d.ts.map +1 -0
- package/lib/material-action-button/material-action-button.component.d.ts +12 -8
- package/lib/material-action-button/material-action-button.component.d.ts.map +1 -0
- package/lib/material-action-button/material-action-button.module.d.ts +13 -2
- package/lib/material-action-button/material-action-button.module.d.ts.map +1 -0
- package/lib/material-addons.module.d.ts +15 -2
- package/lib/material-addons.module.d.ts.map +1 -0
- package/lib/numeric-field/number-format.service.d.ts +31 -0
- package/lib/numeric-field/number-format.service.d.ts.map +1 -0
- package/lib/numeric-field/numeric-field.d.ts +2 -0
- package/lib/numeric-field/numeric-field.d.ts.map +1 -0
- package/lib/numeric-field/numeric-field.directive.d.ts +45 -0
- package/lib/numeric-field/numeric-field.directive.d.ts.map +1 -0
- package/lib/numeric-field/numeric-field.module.d.ts +10 -0
- package/lib/numeric-field/numeric-field.module.d.ts.map +1 -0
- package/lib/quick-list/base-quick-list.component.d.ts +41 -0
- package/lib/quick-list/base-quick-list.component.d.ts.map +1 -0
- package/lib/quick-list/quick-list-compact/quick-list-compact.component.d.ts +12 -0
- package/lib/quick-list/quick-list-compact/quick-list-compact.component.d.ts.map +1 -0
- package/lib/quick-list/quick-list.component.d.ts +12 -0
- package/lib/quick-list/quick-list.component.d.ts.map +1 -0
- package/lib/quick-list/quick-list.d.ts +6 -0
- package/lib/quick-list/quick-list.d.ts.map +1 -0
- package/lib/quick-list/quick-list.module.d.ts +17 -0
- package/lib/quick-list/quick-list.module.d.ts.map +1 -0
- package/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.d.ts +12 -0
- package/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.d.ts.map +1 -0
- package/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.d.ts +12 -0
- package/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.d.ts.map +1 -0
- package/lib/readonly/readonly-form-field/readonly-form-field.component.d.ts +56 -14
- package/lib/readonly/readonly-form-field/readonly-form-field.component.d.ts.map +1 -0
- package/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.d.ts +89 -31
- package/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.d.ts.map +1 -0
- package/lib/readonly/readonly-form-field.module.d.ts +16 -2
- package/lib/readonly/readonly-form-field.module.d.ts.map +1 -0
- package/lib/stepper/mad-stepper-animation.d.ts +8 -0
- package/lib/stepper/mad-stepper-animation.d.ts.map +1 -0
- package/lib/stepper/step-header/step-header.component.d.ts +27 -0
- package/lib/stepper/step-header/step-header.component.d.ts.map +1 -0
- package/lib/stepper/stepper.component.d.ts +53 -0
- package/lib/stepper/stepper.component.d.ts.map +1 -0
- package/lib/stepper/stepper.module.d.ts +14 -0
- package/lib/stepper/stepper.module.d.ts.map +1 -0
- package/lib/table/column-header.d.ts +8 -0
- package/lib/table/column-header.d.ts.map +1 -0
- package/lib/table/table-action.d.ts +6 -0
- package/lib/table/table-action.d.ts.map +1 -0
- package/lib/table/table.component.d.ts +43 -0
- package/lib/table/table.component.d.ts.map +1 -0
- package/lib/table/table.d.ts +4 -0
- package/lib/table/table.d.ts.map +1 -0
- package/lib/table/table.module.d.ts +18 -0
- package/lib/table/table.module.d.ts.map +1 -0
- package/lib/throttle-click/throttle-click.directive.d.ts +14 -0
- package/lib/throttle-click/throttle-click.directive.d.ts.map +1 -0
- package/lib/throttle-click/throttle-click.module.d.ts +9 -0
- package/lib/throttle-click/throttle-click.module.d.ts.map +1 -0
- package/lib/toolbar/toolbar-action.interface.d.ts +28 -18
- package/lib/toolbar/toolbar-action.interface.d.ts.map +1 -0
- package/lib/toolbar/toolbar.component.d.ts +28 -19
- package/lib/toolbar/toolbar.component.d.ts.map +1 -0
- package/lib/toolbar/toolbar.module.d.ts +18 -2
- package/lib/toolbar/toolbar.module.d.ts.map +1 -0
- package/lib/toolbar/toolbar.service.d.ts +44 -33
- package/lib/toolbar/toolbar.service.d.ts.map +1 -0
- package/package.json +29 -24
- package/porscheinformatik-material-addons.d.ts.map +1 -0
- package/public_api.d.ts +39 -0
- package/public_api.d.ts.map +1 -0
- package/themes/common/styles.scss +359 -303
- package/themes/pbv.scss +64 -56
- package/themes/poa.scss +64 -40
- package/bundles/porscheinformatik-material-addons.umd.js +0 -755
- package/esm2015/lib/material-action-button/material-action-button.component.js +0 -43
- package/esm2015/lib/material-action-button/material-action-button.module.js +0 -19
- package/esm2015/lib/material-addons.module.js +0 -16
- package/esm2015/lib/readonly/readonly-form-field/readonly-form-field.component.js +0 -61
- package/esm2015/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.js +0 -124
- package/esm2015/lib/readonly/readonly-form-field.module.js +0 -20
- package/esm2015/lib/toolbar/toolbar-action.interface.js +0 -47
- package/esm2015/lib/toolbar/toolbar.component.js +0 -112
- package/esm2015/lib/toolbar/toolbar.module.js +0 -29
- package/esm2015/lib/toolbar/toolbar.service.js +0 -197
- package/esm2015/porscheinformatik-material-addons.js +0 -9
- package/esm2015/public-api.js +0 -18
- package/esm5/lib/material-action-button/material-action-button.component.js +0 -45
- package/esm5/lib/material-action-button/material-action-button.module.js +0 -23
- package/esm5/lib/material-addons.module.js +0 -20
- package/esm5/lib/readonly/readonly-form-field/readonly-form-field.component.js +0 -67
- package/esm5/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.js +0 -145
- package/esm5/lib/readonly/readonly-form-field.module.js +0 -24
- package/esm5/lib/toolbar/toolbar-action.interface.js +0 -47
- package/esm5/lib/toolbar/toolbar.component.js +0 -131
- package/esm5/lib/toolbar/toolbar.module.js +0 -33
- package/esm5/lib/toolbar/toolbar.service.js +0 -245
- package/esm5/porscheinformatik-material-addons.js +0 -9
- package/esm5/public-api.js +0 -18
- package/porscheinformatik-material-addons.d.ts +0 -4
- package/porscheinformatik-material-addons.metadata.json +0 -1
- package/public-api.d.ts +0 -10
|
@@ -1,33 +1,44 @@
|
|
|
1
|
-
import { OnDestroy } from '@angular/core';
|
|
2
|
-
import { Router } from '@angular/router';
|
|
3
|
-
import { Subscription } from 'rxjs';
|
|
4
|
-
import { TranslateService } from '@ngx-translate/core';
|
|
5
|
-
import { BackAction, MainAction, ToolbarAction } from './toolbar-action.interface';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
private
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
dataTitle: string;
|
|
15
|
-
routerSubscription: Subscription;
|
|
16
|
-
private title;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
toolbarTitle: string;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
5
|
+
import { BackAction, MainAction, ToolbarAction } from './toolbar-action.interface';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ToolbarService implements OnDestroy {
|
|
8
|
+
private router;
|
|
9
|
+
private translate;
|
|
10
|
+
backAction: BackAction;
|
|
11
|
+
mainActions: MainAction[];
|
|
12
|
+
toolbarActions: ToolbarAction[];
|
|
13
|
+
toolbarActionsAlwaysAsMenu: boolean;
|
|
14
|
+
dataTitle: string;
|
|
15
|
+
routerSubscription: Subscription;
|
|
16
|
+
private title;
|
|
17
|
+
private toolbarActionsMenuTitle;
|
|
18
|
+
private currentUrl;
|
|
19
|
+
constructor(router: Router, translate: TranslateService);
|
|
20
|
+
get toolbarTitle(): string;
|
|
21
|
+
set toolbarTitle(toolbarTitle: string);
|
|
22
|
+
ngOnDestroy(): void;
|
|
23
|
+
getToolbarActions(): ToolbarAction[];
|
|
24
|
+
addToolbarAction(action: ToolbarAction): void;
|
|
25
|
+
setDataTitle(dataTitle: string): void;
|
|
26
|
+
setToolbarActionsAlwaysAsMenu(toolbarActionsAlwaysAsMenu: boolean): void;
|
|
27
|
+
getToolbarActionsAlwaysAsMenu(): boolean;
|
|
28
|
+
getDataTitle(): string;
|
|
29
|
+
clearToolbarActions(): void;
|
|
30
|
+
getMainActions(): MainAction[];
|
|
31
|
+
getBackAction(): BackAction;
|
|
32
|
+
setToolbarActionsMenuTitle(toolbarActionsMenuTitle: string): void;
|
|
33
|
+
getToolbarActionsMenuTitle(): string;
|
|
34
|
+
addMainAction(mainAction: MainAction): void;
|
|
35
|
+
/**
|
|
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
|
+
*/
|
|
38
|
+
addBackAction(goBackRoute: string, isAbsoluteUrl?: boolean): void;
|
|
39
|
+
addSimpleBackButton(overrideIfPresent?: boolean): void;
|
|
40
|
+
clearMainActions(): void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarService, never>;
|
|
42
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ToolbarService>;
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=toolbar.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toolbar.service.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/toolbar/toolbar.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,SAAS,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAiB,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACxD,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,mBAAmB,CAAC,iBAAiB,UAAQ,GAAG,IAAI;IAcpD,gBAAgB,IAAI,IAAI;yCApIb,cAAc;6CAAd,cAAc;CAuI1B"}
|
package/package.json
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porscheinformatik/material-addons",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.99",
|
|
4
4
|
"description": "Custom theme and components for Angular Material",
|
|
5
5
|
"homepage": "https://github.com/porscheinformatik/material-addons",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git@https://github.com/porscheinformatik/material-addons.git"
|
|
9
9
|
},
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"metadata": "porscheinformatik-material-addons.metadata.json",
|
|
14
|
-
"typings": "porscheinformatik-material-addons.d.ts",
|
|
10
|
+
"module": "fesm2022/porscheinformatik-material-addons.mjs",
|
|
11
|
+
"esm2022": "./esm2022/porscheinformatik-material-addons.mjs",
|
|
12
|
+
"typings": "index.d.ts",
|
|
15
13
|
"keywords": [
|
|
16
14
|
"angular",
|
|
17
15
|
"angular-material",
|
|
@@ -25,28 +23,35 @@
|
|
|
25
23
|
"author": "porscheinformatik",
|
|
26
24
|
"license": "MIT",
|
|
27
25
|
"files": [
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"public-api.d.ts",
|
|
26
|
+
"index.d.ts",
|
|
27
|
+
"porscheinformatik-material-addons.d.ts.map",
|
|
28
|
+
"public_api.d.ts",
|
|
29
|
+
"public_api.d.ts.map",
|
|
33
30
|
"lib/",
|
|
34
|
-
"
|
|
35
|
-
"
|
|
31
|
+
"themes/",
|
|
32
|
+
"esm2022/",
|
|
33
|
+
"fesm2022/"
|
|
36
34
|
],
|
|
37
35
|
"dependencies": {
|
|
38
|
-
"
|
|
39
|
-
"@angular/material": "^8.2.3",
|
|
40
|
-
"tslib": "^1.9.0"
|
|
36
|
+
"tslib": "^2.6.0"
|
|
41
37
|
},
|
|
42
38
|
"peerDependencies": {
|
|
43
|
-
"@angular/
|
|
44
|
-
"@angular/
|
|
45
|
-
"@
|
|
39
|
+
"@angular/cdk": ">= 16.0.0",
|
|
40
|
+
"@angular/material": ">= 16.0.0",
|
|
41
|
+
"@angular/common": ">= 16.0.0",
|
|
42
|
+
"@angular/core": ">= 16.0.0",
|
|
43
|
+
"@ngx-translate/core": ">= 14.0.0"
|
|
44
|
+
},
|
|
45
|
+
"exports": {
|
|
46
|
+
"./package.json": {
|
|
47
|
+
"default": "./package.json"
|
|
48
|
+
},
|
|
49
|
+
".": {
|
|
50
|
+
"types": "./index.d.ts",
|
|
51
|
+
"esm2022": "./esm2022/porscheinformatik-material-addons.mjs",
|
|
52
|
+
"esm": "./esm2022/porscheinformatik-material-addons.mjs",
|
|
53
|
+
"default": "./fesm2022/porscheinformatik-material-addons.mjs"
|
|
54
|
+
}
|
|
46
55
|
},
|
|
47
|
-
"esm5": "esm5/porscheinformatik-material-addons.js",
|
|
48
|
-
"esm2015": "esm2015/porscheinformatik-material-addons.js",
|
|
49
|
-
"fesm5": "fesm5/porscheinformatik-material-addons.js",
|
|
50
|
-
"fesm2015": "fesm2015/porscheinformatik-material-addons.js",
|
|
51
56
|
"sideEffects": false
|
|
52
|
-
}
|
|
57
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"porscheinformatik-material-addons.d.ts","sourceRoot":"","sources":["../../projects/material-addons/src/porscheinformatik-material-addons.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,cAAc,cAAc,CAAC"}
|
package/public_api.d.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export * from './lib/material-action-button/material-action-button.component';
|
|
2
|
+
export * from './lib/material-action-button/material-action-button.module';
|
|
3
|
+
export * from './lib/button/button';
|
|
4
|
+
export * from './lib/button/button.module';
|
|
5
|
+
export * from './lib/readonly/readonly-form-field.module';
|
|
6
|
+
export * from './lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component';
|
|
7
|
+
export * from './lib/readonly/readonly-form-field/readonly-form-field.component';
|
|
8
|
+
export * from './lib/toolbar/toolbar.module';
|
|
9
|
+
export * from './lib/toolbar/toolbar.component';
|
|
10
|
+
export * from './lib/toolbar/toolbar.service';
|
|
11
|
+
export * from './lib/toolbar/toolbar-action.interface';
|
|
12
|
+
export * from './lib/numeric-field/numeric-field';
|
|
13
|
+
export * from './lib/numeric-field/numeric-field.module';
|
|
14
|
+
export * from './lib/numeric-field/number-format.service';
|
|
15
|
+
export * from './lib/card/card';
|
|
16
|
+
export * from './lib/card/card.module';
|
|
17
|
+
export * from './lib/quick-list/quick-list';
|
|
18
|
+
export * from './lib/quick-list/quick-list.module';
|
|
19
|
+
export * from './lib/table/table';
|
|
20
|
+
export * from './lib/table/table.module';
|
|
21
|
+
export * from './lib/data-table/data-table';
|
|
22
|
+
export * from './lib/data-table/data-table.module';
|
|
23
|
+
export * from './lib/throttle-click/throttle-click.directive';
|
|
24
|
+
export * from './lib/throttle-click/throttle-click.module';
|
|
25
|
+
export * from './lib/stepper/stepper.component';
|
|
26
|
+
export * from './lib/stepper/step-header/step-header.component';
|
|
27
|
+
export * from './lib/stepper/mad-stepper-animation';
|
|
28
|
+
export * from './lib/stepper/stepper.module';
|
|
29
|
+
export * from './lib/content-panel/content-header/content-header.component';
|
|
30
|
+
export * from './lib/content-panel/content-panel-container/content-panel-container.component';
|
|
31
|
+
export * from './lib/content-panel/content-panel-container-content/content-panel-container-content.component';
|
|
32
|
+
export * from './lib/content-panel/content-panel-container-footer/content-panel-container-footer.component';
|
|
33
|
+
export * from './lib/content-panel/main-container/main-container.component';
|
|
34
|
+
export * from './lib/content-panel/content-panel.module';
|
|
35
|
+
export * from './lib/flowbar/flowbar.component';
|
|
36
|
+
export * from './lib/flowbar/flowbar.module';
|
|
37
|
+
export * from './lib/material-addons.module';
|
|
38
|
+
export * from './lib/file-upload/file-upload.component';
|
|
39
|
+
//# sourceMappingURL=public_api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"public_api.d.ts","sourceRoot":"","sources":["../../projects/material-addons/src/public_api.ts"],"names":[],"mappings":"AAGA,cAAc,+DAA+D,CAAC;AAC9E,cAAc,4DAA4D,CAAC;AAC3E,cAAc,qBAAqB,CAAC;AACpC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,2CAA2C,CAAC;AAC1D,cAAc,kFAAkF,CAAC;AACjG,cAAc,kEAAkE,CAAC;AACjF,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wCAAwC,CAAC;AACvD,cAAc,mCAAmC,CAAC;AAClD,cAAc,0CAA0C,CAAC;AACzD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,oCAAoC,CAAC;AACnD,cAAc,mBAAmB,CAAC;AAClC,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,oCAAoC,CAAC;AACnD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,iCAAiC,CAAC;AAChD,cAAc,iDAAiD,CAAC;AAChE,cAAc,qCAAqC,CAAC;AACpD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6DAA6D,CAAC;AAC5E,cAAc,+EAA+E,CAAC;AAC9F,cAAc,+FAA+F,CAAC;AAC9G,cAAc,6FAA6F,CAAC;AAC5G,cAAc,6DAA6D,CAAC;AAC5E,cAAc,0CAA0C,CAAC;AACzD,cAAc,iCAAiC,CAAC;AAChD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yCAAyC,CAAC"}
|