@porscheinformatik/material-addons 10.4.0 → 14.0.0-beta.0
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/esm2020/lib/button/button.mjs +7 -0
- package/esm2020/lib/button/button.module.mjs +26 -0
- package/esm2020/lib/button/danger-button/danger-button.component.mjs +28 -0
- package/esm2020/lib/button/flat-button/link-button.component.mjs +28 -0
- package/esm2020/lib/button/icon-button/icon-button.component.mjs +28 -0
- package/esm2020/lib/button/mad-basic-button.mjs +39 -0
- package/esm2020/lib/button/outline-button/outline-button.component.mjs +28 -0
- package/esm2020/lib/button/primary-button/primary-button.component.mjs +28 -0
- package/esm2020/lib/card/card.component.mjs +129 -0
- package/esm2020/lib/card/card.mjs +2 -0
- package/esm2020/lib/card/card.module.mjs +23 -0
- package/esm2020/lib/content-panel/content-header/content-header.component.mjs +11 -0
- package/esm2020/lib/content-panel/content-panel-container/content-panel-container.component.mjs +11 -0
- package/esm2020/lib/content-panel/content-panel-container-content/content-panel-container-content.component.mjs +11 -0
- package/esm2020/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.mjs +11 -0
- package/esm2020/lib/content-panel/content-panel.module.mjs +42 -0
- package/esm2020/lib/content-panel/main-container/main-container.component.mjs +11 -0
- package/esm2020/lib/data-table/data-table-action-type.mjs +6 -0
- package/esm2020/lib/data-table/data-table-action.mjs +2 -0
- package/esm2020/lib/data-table/data-table-column-definition.mjs +2 -0
- package/esm2020/lib/data-table/data-table-column.mjs +2 -0
- package/esm2020/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.mjs +103 -0
- package/esm2020/lib/data-table/data-table.component.mjs +504 -0
- package/esm2020/lib/data-table/data-table.mjs +3 -0
- package/esm2020/lib/data-table/data-table.module.mjs +81 -0
- package/esm2020/lib/flowbar/flowbar.component.mjs +190 -0
- package/esm2020/lib/flowbar/flowbar.module.mjs +19 -0
- package/esm2020/lib/material-action-button/material-action-button.component.mjs +34 -0
- package/esm2020/lib/material-action-button/material-action-button.module.mjs +22 -0
- package/esm2020/lib/material-addons.module.mjs +45 -0
- package/esm2020/lib/numeric-field/number-format.service.mjs +139 -0
- package/esm2020/lib/numeric-field/numeric-field.directive.mjs +295 -0
- package/esm2020/lib/numeric-field/numeric-field.mjs +2 -0
- package/esm2020/lib/numeric-field/numeric-field.module.mjs +24 -0
- package/esm2020/lib/quick-list/base-quick-list.component.mjs +101 -0
- package/esm2020/lib/quick-list/quick-list-compact/quick-list-compact.component.mjs +20 -0
- package/esm2020/lib/quick-list/quick-list.component.mjs +21 -0
- package/esm2020/lib/quick-list/quick-list.mjs +4 -0
- package/esm2020/lib/quick-list/quick-list.module.mjs +23 -0
- package/esm2020/lib/readonly/readonly-form-field/readonly-form-field.component.mjs +155 -0
- package/esm2020/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.mjs +185 -0
- package/esm2020/lib/readonly/readonly-form-field.module.mjs +24 -0
- package/esm2020/lib/stepper/mad-stepper-animation.mjs +13 -0
- package/esm2020/lib/stepper/step-header/step-header.component.mjs +78 -0
- package/esm2020/lib/stepper/stepper.component.mjs +160 -0
- package/esm2020/lib/stepper/stepper.module.mjs +23 -0
- package/esm2020/lib/table/column-header.mjs +2 -0
- package/esm2020/lib/table/table-action.mjs +2 -0
- package/esm2020/lib/table/table.component.mjs +130 -0
- package/esm2020/lib/table/table.mjs +2 -0
- package/esm2020/lib/table/table.module.mjs +56 -0
- package/esm2020/lib/throttle-click/throttle-click.directive.mjs +38 -0
- package/esm2020/lib/throttle-click/throttle-click.module.mjs +18 -0
- package/esm2020/lib/toolbar/toolbar-action.interface.mjs +2 -0
- package/esm2020/lib/toolbar/toolbar.component.mjs +78 -0
- package/esm2020/lib/toolbar/toolbar.module.mjs +56 -0
- package/esm2020/lib/toolbar/toolbar.service.mjs +124 -0
- package/esm2020/porscheinformatik-material-addons.mjs +5 -0
- package/esm2020/public_api.mjs +41 -0
- package/fesm2015/porscheinformatik-material-addons.mjs +2984 -0
- package/fesm2015/porscheinformatik-material-addons.mjs.map +1 -0
- package/fesm2020/porscheinformatik-material-addons.mjs +2962 -0
- package/fesm2020/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 +15 -0
- package/lib/button/button.module.d.ts.map +1 -0
- package/lib/button/danger-button/danger-button.component.d.ts +4 -0
- package/lib/button/danger-button/danger-button.component.d.ts.map +1 -0
- package/lib/button/flat-button/link-button.component.d.ts +4 -0
- package/lib/button/flat-button/link-button.component.d.ts.map +1 -0
- package/lib/button/icon-button/icon-button.component.d.ts +4 -0
- package/lib/button/icon-button/icon-button.component.d.ts.map +1 -0
- package/lib/button/mad-basic-button.d.ts +5 -1
- package/lib/button/mad-basic-button.d.ts.map +1 -0
- package/lib/button/outline-button/outline-button.component.d.ts +4 -0
- package/lib/button/outline-button/outline-button.component.d.ts.map +1 -0
- package/lib/button/primary-button/primary-button.component.d.ts +4 -0
- package/lib/button/primary-button/primary-button.component.d.ts.map +1 -0
- package/lib/card/card.component.d.ts +4 -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 +12 -0
- package/lib/card/card.module.d.ts.map +1 -0
- package/lib/content-panel/content-header/content-header.component.d.ts +4 -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 +4 -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 +4 -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 +4 -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 +11 -0
- package/lib/content-panel/content-panel.module.d.ts.map +1 -0
- package/lib/content-panel/main-container/main-container.component.d.ts +4 -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 +1 -0
- package/lib/data-table/data-table-action-type.d.ts.map +1 -0
- package/lib/data-table/data-table-action.d.ts +1 -0
- package/lib/data-table/data-table-action.d.ts.map +1 -0
- package/lib/data-table/data-table-column-definition.d.ts +1 -0
- package/lib/data-table/data-table-column-definition.d.ts.map +1 -0
- package/lib/data-table/data-table-column.d.ts +1 -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 +4 -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.component.d.ts +4 -0
- package/lib/data-table/data-table.component.d.ts.map +1 -0
- package/lib/data-table/data-table.d.ts +3 -0
- package/lib/data-table/data-table.d.ts.map +1 -0
- package/lib/data-table/data-table.module.d.ts +23 -0
- package/lib/data-table/data-table.module.d.ts.map +1 -0
- package/lib/flowbar/flowbar.component.d.ts +4 -0
- package/lib/flowbar/flowbar.component.d.ts.map +1 -0
- package/lib/flowbar/flowbar.module.d.ts +8 -0
- package/lib/flowbar/flowbar.module.d.ts.map +1 -0
- package/lib/material-action-button/material-action-button.component.d.ts +4 -0
- 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 +11 -0
- package/lib/material-action-button/material-action-button.module.d.ts.map +1 -0
- package/lib/material-addons.module.d.ts +13 -0
- package/lib/material-addons.module.d.ts.map +1 -0
- package/lib/numeric-field/number-format.service.d.ts +4 -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 +4 -0
- package/lib/numeric-field/numeric-field.directive.d.ts.map +1 -0
- package/lib/numeric-field/numeric-field.module.d.ts +6 -0
- package/lib/numeric-field/numeric-field.module.d.ts.map +1 -0
- package/lib/quick-list/base-quick-list.component.d.ts +5 -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 +4 -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 +4 -0
- package/lib/quick-list/quick-list.component.d.ts.map +1 -0
- package/lib/quick-list/quick-list.d.ts +4 -0
- package/lib/quick-list/quick-list.d.ts.map +1 -0
- package/lib/quick-list/quick-list.module.d.ts +12 -0
- package/lib/quick-list/quick-list.module.d.ts.map +1 -0
- package/lib/readonly/readonly-form-field/readonly-form-field.component.d.ts +4 -0
- 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 +4 -0
- 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 +13 -0
- package/lib/readonly/readonly-form-field.module.d.ts.map +1 -0
- package/lib/stepper/mad-stepper-animation.d.ts +1 -0
- package/lib/stepper/mad-stepper-animation.d.ts.map +1 -0
- package/lib/stepper/step-header/step-header.component.d.ts +4 -0
- package/lib/stepper/step-header/step-header.component.d.ts.map +1 -0
- package/lib/stepper/stepper.component.d.ts +7 -1
- package/lib/stepper/stepper.component.d.ts.map +1 -0
- package/lib/stepper/stepper.module.d.ts +12 -0
- package/lib/stepper/stepper.module.d.ts.map +1 -0
- package/lib/table/column-header.d.ts +1 -0
- package/lib/table/column-header.d.ts.map +1 -0
- package/lib/table/table-action.d.ts +1 -0
- package/lib/table/table-action.d.ts.map +1 -0
- package/lib/table/table.component.d.ts +4 -0
- package/lib/table/table.component.d.ts.map +1 -0
- package/lib/table/table.d.ts +2 -0
- package/lib/table/table.d.ts.map +1 -0
- package/lib/table/table.module.d.ts +16 -0
- package/lib/table/table.module.d.ts.map +1 -0
- package/lib/throttle-click/throttle-click.directive.d.ts +4 -0
- package/lib/throttle-click/throttle-click.directive.d.ts.map +1 -0
- package/lib/throttle-click/throttle-click.module.d.ts +7 -0
- package/lib/throttle-click/throttle-click.module.d.ts.map +1 -0
- package/lib/toolbar/toolbar-action.interface.d.ts +1 -0
- package/lib/toolbar/toolbar-action.interface.d.ts.map +1 -0
- package/lib/toolbar/toolbar.component.d.ts +4 -0
- package/lib/toolbar/toolbar.component.d.ts.map +1 -0
- package/lib/toolbar/toolbar.module.d.ts +16 -0
- package/lib/toolbar/toolbar.module.d.ts.map +1 -0
- package/lib/toolbar/toolbar.service.d.ts +4 -0
- package/lib/toolbar/toolbar.service.d.ts.map +1 -0
- package/package.json +35 -20
- package/porscheinformatik-material-addons.d.ts.map +1 -0
- package/{public-api.d.ts → public_api.d.ts} +5 -0
- package/public_api.d.ts.map +1 -0
- package/themes/common/styles.scss +23 -22
- package/bundles/porscheinformatik-material-addons.umd.js +0 -3299
- package/bundles/porscheinformatik-material-addons.umd.js.map +0 -1
- package/bundles/porscheinformatik-material-addons.umd.min.js +0 -17
- package/bundles/porscheinformatik-material-addons.umd.min.js.map +0 -1
- package/esm2015/lib/button/button.module.js +0 -21
- package/esm2015/lib/button/danger-button/danger-button.component.js +0 -25
- package/esm2015/lib/button/flat-button/link-button.component.js +0 -25
- package/esm2015/lib/button/icon-button/icon-button.component.js +0 -25
- package/esm2015/lib/button/mad-basic-button.js +0 -28
- package/esm2015/lib/button/outline-button/outline-button.component.js +0 -25
- package/esm2015/lib/button/primary-button/primary-button.component.js +0 -25
- package/esm2015/lib/card/card.component.js +0 -86
- package/esm2015/lib/card/card.module.js +0 -18
- package/esm2015/lib/content-panel/content-header/content-header.component.js +0 -11
- package/esm2015/lib/content-panel/content-panel-container/content-panel-container.component.js +0 -11
- package/esm2015/lib/content-panel/content-panel-container-content/content-panel-container-content.component.js +0 -11
- package/esm2015/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.js +0 -11
- package/esm2015/lib/content-panel/content-panel.module.js +0 -29
- package/esm2015/lib/content-panel/main-container/main-container.component.js +0 -11
- package/esm2015/lib/data-table/data-table-action-type.js +0 -6
- package/esm2015/lib/data-table/data-table-action.js +0 -1
- package/esm2015/lib/data-table/data-table-column-definition.js +0 -1
- package/esm2015/lib/data-table/data-table-column.js +0 -1
- package/esm2015/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.js +0 -93
- package/esm2015/lib/data-table/data-table.component.js +0 -459
- package/esm2015/lib/data-table/data-table.js +0 -1
- package/esm2015/lib/data-table/data-table.module.js +0 -46
- package/esm2015/lib/flowbar/flowbar.component.js +0 -182
- package/esm2015/lib/flowbar/flowbar.module.js +0 -14
- package/esm2015/lib/material-action-button/material-action-button.component.js +0 -25
- package/esm2015/lib/material-action-button/material-action-button.module.js +0 -17
- package/esm2015/lib/material-addons.module.js +0 -26
- package/esm2015/lib/numeric-field/number-format.service.js +0 -137
- package/esm2015/lib/numeric-field/numeric-field.directive.js +0 -275
- package/esm2015/lib/numeric-field/numeric-field.module.js +0 -19
- package/esm2015/lib/quick-list/base-quick-list.component.js +0 -89
- package/esm2015/lib/quick-list/quick-list-compact/quick-list-compact.component.js +0 -18
- package/esm2015/lib/quick-list/quick-list.component.js +0 -19
- package/esm2015/lib/quick-list/quick-list.module.js +0 -18
- package/esm2015/lib/readonly/readonly-form-field/readonly-form-field.component.js +0 -131
- package/esm2015/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.js +0 -164
- package/esm2015/lib/readonly/readonly-form-field.module.js +0 -19
- package/esm2015/lib/stepper/mad-stepper-animation.js +0 -13
- package/esm2015/lib/stepper/step-header/step-header.component.js +0 -75
- package/esm2015/lib/stepper/stepper.component.js +0 -169
- package/esm2015/lib/stepper/stepper.module.js +0 -18
- package/esm2015/lib/table/column-header.js +0 -1
- package/esm2015/lib/table/table-action.js +0 -1
- package/esm2015/lib/table/table.component.js +0 -106
- package/esm2015/lib/table/table.js +0 -1
- package/esm2015/lib/table/table.module.js +0 -33
- package/esm2015/lib/throttle-click/throttle-click.directive.js +0 -32
- package/esm2015/lib/throttle-click/throttle-click.module.js +0 -13
- package/esm2015/lib/toolbar/toolbar-action.interface.js +0 -1
- package/esm2015/lib/toolbar/toolbar.component.js +0 -71
- package/esm2015/lib/toolbar/toolbar.module.js +0 -33
- package/esm2015/lib/toolbar/toolbar.service.js +0 -127
- package/esm2015/porscheinformatik-material-addons.js +0 -19
- package/esm2015/public-api.js +0 -37
- package/fesm2015/porscheinformatik-material-addons.js +0 -2656
- package/fesm2015/porscheinformatik-material-addons.js.map +0 -1
- package/porscheinformatik-material-addons.d.ts +0 -19
- package/porscheinformatik-material-addons.metadata.json +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"numeric-field.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/numeric-field/numeric-field.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,mBAAmB,EAAE,MAAM,eAAe,CAAC;;;AAI9D,qBAKa,kBAAkB;IAC7B,MAAM,CAAC,OAAO,IAAI,mBAAmB,CAAC,kBAAkB,CAAC;yCAD9C,kBAAkB;0CAAlB,kBAAkB;0CAAlB,kBAAkB;CAO9B"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnInit, QueryList, TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export interface QuickListItem {
|
|
3
4
|
id: string;
|
|
4
5
|
}
|
|
@@ -7,6 +8,7 @@ export declare class BaseQuickListComponent<T> implements OnInit, AfterViewInit
|
|
|
7
8
|
allItems: T[];
|
|
8
9
|
addLabel: string;
|
|
9
10
|
addPossible: boolean;
|
|
11
|
+
removePossible: boolean;
|
|
10
12
|
blankItem: any;
|
|
11
13
|
readonly: boolean;
|
|
12
14
|
maxItems: number;
|
|
@@ -26,4 +28,7 @@ export declare class BaseQuickListComponent<T> implements OnInit, AfterViewInit
|
|
|
26
28
|
isAddAllowed(): boolean;
|
|
27
29
|
isDeleteAllowed(): boolean;
|
|
28
30
|
private interalAddItem;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseQuickListComponent<any>, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseQuickListComponent<any>, "mad-base-quick-list", never, { "allItems": "allItems"; "addLabel": "addLabel"; "addPossible": "addPossible"; "removePossible": "removePossible"; "blankItem": "blankItem"; "readonly": "readonly"; "maxItems": "maxItems"; "minItems": "minItems"; }, { "added": "added"; "removed": "removed"; }, ["itemTemplate"], never, false>;
|
|
29
33
|
}
|
|
34
|
+
//# sourceMappingURL=base-quick-list.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base-quick-list.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/base-quick-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,iBAAiB,EAGjB,UAAU,EACV,YAAY,EAEZ,MAAM,EAEN,SAAS,EACT,WAAW,EAEZ,MAAM,eAAe,CAAC;;AAEvB,MAAM,WAAW,aAAa;IAC5B,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,qBAKa,sBAAsB,CAAC,CAAC,CAAE,YAAW,MAAM,EAAE,aAAa;IAkBlD,iBAAiB,EAAE,iBAAiB;IAjB9C,QAAQ,MAAa;IACrB,QAAQ,SAAa;IACrB,WAAW,UAAQ;IACnB,cAAc,UAAQ;IACtB,SAAS,MAAa;IACtB,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IAEhB,KAAK,kBAAyB;IAC9B,OAAO,kBAAyB;IACf,YAAY,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC;IACrC,QAAQ,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;IAErD,aAAa,EAAE,MAAM,CAAC;IACtB,gBAAgB,EAAE,QAAQ,CAAC;gBAER,iBAAiB,EAAE,iBAAiB;IAEvD,QAAQ,IAAI,IAAI;IAShB,eAAe,IAAI,IAAI;IAIvB,OAAO,IAAI,IAAI;IAOf,UAAU,CAAC,IAAI,EAAE,CAAC,GAAG,IAAI;IAOzB,aAAa,IAAI,IAAI;IAarB,YAAY,IAAI,OAAO;IAIvB,eAAe,IAAI,OAAO;IAI1B,OAAO,CAAC,cAAc;yCApEX,sBAAsB;2CAAtB,sBAAsB;CAiFlC"}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { BaseQuickListComponent, QuickListItem } from '../base-quick-list.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class QuickListCompactComponent extends BaseQuickListComponent<QuickListItem> {
|
|
4
5
|
changeDetectorRef: ChangeDetectorRef;
|
|
5
6
|
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QuickListCompactComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuickListCompactComponent, "mad-quick-list-compact", never, {}, {}, never, ["label"], false>;
|
|
6
9
|
}
|
|
10
|
+
//# sourceMappingURL=quick-list-compact.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quick-list-compact.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/quick-list/quick-list-compact/quick-list-compact.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;;AAErF,qBAKa,yBAA0B,SAAQ,sBAAsB,CAAC,aAAa,CAAC;IAC/D,iBAAiB,EAAE,iBAAiB;gBAApC,iBAAiB,EAAE,iBAAiB;yCAD5C,yBAAyB;2CAAzB,yBAAyB;CAIrC"}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { BaseQuickListComponent, QuickListItem } from './base-quick-list.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class QuickListComponent extends BaseQuickListComponent<QuickListItem> {
|
|
4
5
|
changeDetectorRef: ChangeDetectorRef;
|
|
5
6
|
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QuickListComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuickListComponent, "mad-quick-list", never, {}, {}, never, ["label"], false>;
|
|
6
9
|
}
|
|
10
|
+
//# sourceMappingURL=quick-list.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quick-list.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/quick-list.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;;AAEpF,qBAKa,kBAAmB,SAAQ,sBAAsB,CAAC,aAAa,CAAC;IACxD,iBAAiB,EAAE,iBAAiB;gBAApC,iBAAiB,EAAE,iBAAiB;yCAD5C,kBAAkB;2CAAlB,kBAAkB;CAI9B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quick-list.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/quick-list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,yBAAyB,EAAC,MAAM,mDAAmD,CAAC;AAC5F,OAAO,EAAC,sBAAsB,EAAC,MAAM,6BAA6B,CAAC;AACnE,OAAO,EAAC,kBAAkB,EAAC,MAAM,wBAAwB,CAAC"}
|
|
@@ -1,2 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./quick-list.component";
|
|
3
|
+
import * as i2 from "./base-quick-list.component";
|
|
4
|
+
import * as i3 from "./quick-list-compact/quick-list-compact.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/material/button";
|
|
7
|
+
import * as i6 from "@angular/material/icon";
|
|
8
|
+
import * as i7 from "../button/button.module";
|
|
1
9
|
export declare class QuickListModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QuickListModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<QuickListModule, [typeof i1.QuickListComponent, typeof i2.BaseQuickListComponent, typeof i3.QuickListCompactComponent], [typeof i4.CommonModule, typeof i5.MatButtonModule, typeof i6.MatIconModule, typeof i7.ButtonModule], [typeof i1.QuickListComponent, typeof i3.QuickListCompactComponent, typeof i2.BaseQuickListComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<QuickListModule>;
|
|
2
13
|
}
|
|
14
|
+
//# sourceMappingURL=quick-list.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quick-list.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/quick-list.module.ts"],"names":[],"mappings":";;;;;;;;AASA,qBAKa,eAAe;yCAAf,eAAe;0CAAf,eAAe;0CAAf,eAAe;CAAG"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AfterViewChecked, ChangeDetectorRef, ElementRef, OnChanges, Renderer2, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { ErrorStateMatcher } from '@angular/material/core';
|
|
3
3
|
import { NumberFormatService } from '../../numeric-field/number-format.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/**
|
|
5
6
|
* Read-only mat-form-field representation of provided value
|
|
6
7
|
*
|
|
@@ -32,4 +33,7 @@ export declare class ReadOnlyFormFieldComponent implements OnChanges, AfterViewC
|
|
|
32
33
|
ngOnChanges(_: SimpleChanges): void;
|
|
33
34
|
ngAfterViewChecked(): void;
|
|
34
35
|
private injectUnitSymbol;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReadOnlyFormFieldComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReadOnlyFormFieldComponent, "mad-readonly-form-field", never, { "value": "value"; "label": "label"; "textAlign": "textAlign"; "formatNumber": "formatNumber"; "decimalPlaces": "decimalPlaces"; "roundValue": "roundDisplayValue"; "autofillDecimals": "autofillDecimals"; "unit": "unit"; "unitPosition": "unitPosition"; "errorMessage": "errorMessage"; "multiline": "multiline"; "rows": "rows"; "id": "id"; "shrinkIfEmpty": "shrinkIfEmpty"; }, {}, never, never, false>;
|
|
35
38
|
}
|
|
39
|
+
//# sourceMappingURL=readonly-form-field.component.d.ts.map
|
|
@@ -0,0 +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,EACL,gBAAgB,EAChB,iBAAiB,EAEjB,UAAU,EAEV,SAAS,EACT,SAAS,EACT,aAAa,EAEd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,2CAA2C,CAAC;;AAEhF;;;;GAIG;AAEH,qBAKa,0BAA2B,YAAW,SAAS,EAAE,gBAAgB;IA6BhE,OAAO,CAAC,cAAc;IAAqB,OAAO,CAAC,QAAQ;IAAa,OAAO,CAAC,mBAAmB;IA5B/F,KAAK,EAAE,GAAG,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACV,SAAS,EAAE,OAAO,GAAG,MAAM,CAAU;IAClC,YAAY,UAAS;IACpB,aAAa,SAAK;IACd,UAAU,UAAS;IACpB,gBAAgB,UAAS;IACrC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAQ;IACnB,YAAY,EAAE,OAAO,GAAG,MAAM,CAAU;IACxC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAQ;IACjD,SAAS,UAAS;IAClB,IAAI,SAAK;IACT,EAAE,EAAE,MAAM,CAAC;IAOX,aAAa,UAAS;IACT,OAAO,EAAE,UAAU,CAAC;IAC1C,YAAY,EAAE,iBAAiB,CAE7B;IAEF,OAAO,CAAC,QAAQ,CAAkB;IAClC,OAAO,CAAC,QAAQ,CAAkB;gBAEd,cAAc,EAAE,iBAAiB,EAAU,QAAQ,EAAE,SAAS,EAAU,mBAAmB,EAAE,mBAAmB;IAEpI,WAAW,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAiBnC,kBAAkB,IAAI,IAAI;IAI1B,OAAO,CAAC,gBAAgB;yCApDb,0BAA0B;2CAA1B,0BAA0B;CAsGtC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AfterViewChecked, AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/**
|
|
3
4
|
* Wraps a mat-form-field to replace it by a readOnly representation if necessary
|
|
4
5
|
*
|
|
@@ -65,4 +66,7 @@ export declare class ReadOnlyFormFieldWrapperComponent implements OnInit, AfterV
|
|
|
65
66
|
private isEllipsisForTextOverflowEnabled;
|
|
66
67
|
private isTextOverflown;
|
|
67
68
|
private calculateToolTipText;
|
|
69
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReadOnlyFormFieldWrapperComponent, never>;
|
|
70
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReadOnlyFormFieldWrapperComponent, "mad-readonly-form-field-wrapper", never, { "readonly": "readonly"; "value": "value"; "textAlign": "textAlign"; "formatNumber": "formatNumber"; "decimalPlaces": "decimalPlaces"; "roundValue": "roundDisplayValue"; "autofillDecimals": "autofillDecimals"; "unit": "unit"; "unitPosition": "unitPosition"; "errorMessage": "errorMessage"; "id": "id"; "multiline": "multiline"; "rows": "rows"; "shrinkIfEmpty": "shrinkIfEmpty"; }, {}, never, ["*"], false>;
|
|
68
71
|
}
|
|
72
|
+
//# sourceMappingURL=readonly-form-field-wrapper.component.d.ts.map
|
package/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"readonly-form-field-wrapper.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,aAAa,EACb,iBAAiB,EAEjB,UAAU,EAEV,SAAS,EACT,MAAM,EACN,aAAa,EAEd,MAAM,eAAe,CAAC;;AAEvB;;;;GAIG;AACH,qBAKa,iCAAkC,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS,EAAE,gBAAgB;IAsD9F,OAAO,CAAC,cAAc;IAAqB,OAAO,CAAC,UAAU;IApDzE,eAAe,EAAE,UAAU,CAAC;IAE5B,sBAAsB,EAAE,UAAU,CAAC;IAEnC;;;OAGG;IACM,QAAQ,UAAQ;IAEzB;;;OAGG;IACa,KAAK,EAAE,GAAG,CAAC;IAEP,SAAS,EAAE,OAAO,GAAG,MAAM,CAAU;IAClC,YAAY,UAAS;IACpB,aAAa,SAAK;IACd,UAAU,UAAS;IACpB,gBAAgB,UAAS;IACrC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAQ;IACnB,YAAY,EAAE,OAAO,GAAG,MAAM,CAAU;IACxC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAQ;IACjD,EAAE,EAAE,MAAM,CAAC;IACpB;;;OAGG;IACM,SAAS,UAAS;IAE3B;;OAEG;IACM,IAAI,SAAK;IAElB;;;;;OAKG;IACM,aAAa,UAAS;IAE/B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd,sBAAsB,UAAS;IAC/B,WAAW,EAAE,MAAM,CAAC;gBAEA,cAAc,EAAE,iBAAiB,EAAU,UAAU,EAAE,UAAU;IAErF,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAKvB,kBAAkB,IAAI,IAAI;IAK1B,WAAW,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAInC,QAAQ,IAAI,MAAM;IAOlB,OAAO,CAAC,WAAW;IAYnB,OAAO,CAAC,YAAY;IAQpB,OAAO,CAAC,YAAY;IAOpB,OAAO,CAAC,qBAAqB;IAY7B,OAAO,CAAC,yBAAyB;IAWjC,OAAO,CAAC,2BAA2B;IAcnC,OAAO,CAAC,gCAAgC;IAIxC,OAAO,CAAC,eAAe;IAOvB,OAAO,CAAC,oBAAoB;yCA5JjB,iCAAiC;2CAAjC,iCAAiC;CAmK7C"}
|
|
@@ -1,2 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./readonly-form-field/readonly-form-field.component";
|
|
3
|
+
import * as i2 from "./readonly-form-field-wrapper/readonly-form-field-wrapper.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/router";
|
|
6
|
+
import * as i5 from "@angular/material/form-field";
|
|
7
|
+
import * as i6 from "@angular/material/input";
|
|
8
|
+
import * as i7 from "@angular/forms";
|
|
9
|
+
import * as i8 from "@angular/material/tooltip";
|
|
1
10
|
export declare class ReadOnlyFormFieldModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReadOnlyFormFieldModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ReadOnlyFormFieldModule, [typeof i1.ReadOnlyFormFieldComponent, typeof i2.ReadOnlyFormFieldWrapperComponent], [typeof i3.CommonModule, typeof i4.RouterModule, typeof i5.MatFormFieldModule, typeof i6.MatInputModule, typeof i7.FormsModule, typeof i8.MatTooltipModule], [typeof i1.ReadOnlyFormFieldComponent, typeof i2.ReadOnlyFormFieldWrapperComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ReadOnlyFormFieldModule>;
|
|
2
14
|
}
|
|
15
|
+
//# sourceMappingURL=readonly-form-field.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"readonly-form-field.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/readonly/readonly-form-field.module.ts"],"names":[],"mappings":";;;;;;;;;AAUA,qBAKa,uBAAuB;yCAAvB,uBAAuB;0CAAvB,uBAAuB;0CAAvB,uBAAuB;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mad-stepper-animation.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/stepper/mad-stepper-animation.ts"],"names":[],"mappings":"AAAA,OAAO,EAA8C,wBAAwB,EAAE,MAAM,qBAAqB,CAAC;AAE3G;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE;IACjC,QAAQ,CAAC,sBAAsB,EAAE,wBAAwB,CAAC;CAQ3D,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { CdkStepHeader, StepState } from '@angular/cdk/stepper';
|
|
2
2
|
import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
|
|
3
3
|
import { FocusMonitor, FocusOrigin } from '@angular/cdk/a11y';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class StepHeaderComponent extends CdkStepHeader implements AfterViewInit, OnDestroy {
|
|
5
6
|
private _focusMonitor;
|
|
6
7
|
index: number;
|
|
@@ -20,4 +21,7 @@ export declare class StepHeaderComponent extends CdkStepHeader implements AfterV
|
|
|
20
21
|
focus(origin?: FocusOrigin, options?: FocusOptions): void;
|
|
21
22
|
getCssForState(): string;
|
|
22
23
|
getIcon(): string;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepHeaderComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepHeaderComponent, "mad-step-header", never, { "color": "color"; "index": "index"; "label": "label"; "state": "state"; "errorMessage": "errorMessage"; "selected": "selected"; "active": "active"; "optional": "optional"; "hasError": "hasError"; "completed": "completed"; "closed": "closed"; }, {}, never, never, false>;
|
|
23
26
|
}
|
|
27
|
+
//# sourceMappingURL=step-header.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"step-header.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/stepper/step-header/step-header.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAc,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAC5E,OAAO,EAAE,aAAa,EAAsC,UAAU,EAAS,SAAS,EAAqB,MAAM,eAAe,CAAC;AACnI,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;;AAE9D,qBAYa,mBAAoB,SAAQ,aAAc,YAAW,aAAa,EAAE,SAAS;IAuB5E,OAAO,CAAC,aAAa;IArBjC,KAAK,EAAE,MAAM,CAAC;IAGd,KAAK,EAAE,MAAM,CAAC;IAEL,KAAK,EAAE,SAAS,CAAC;IAEjB,YAAY,EAAE,MAAM,CAAC;IAErB,QAAQ,EAAE,OAAO,CAAC;IAElB,MAAM,EAAE,OAAO,CAAC;IAEhB,QAAQ,EAAE,OAAO,CAAC;IAElB,QAAQ,EAAE,OAAO,CAAC;IAElB,SAAS,EAAE,OAAO,CAAC;IAEnB,MAAM,EAAE,OAAO,CAAC;gBAEL,aAAa,EAAE,YAAY,EAAE,WAAW,EAAE,UAAU,CAAC,WAAW,CAAC;IAIrF,eAAe,IAAI,IAAI;IAIvB,WAAW,IAAI,IAAI;IAInB,+BAA+B;IAC/B,KAAK,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,OAAO,CAAC,EAAE,YAAY,GAAG,IAAI;IAQzD,cAAc,IAAI,MAAM;IAUxB,OAAO,IAAI,MAAM;yCAtDN,mBAAmB;2CAAnB,mBAAmB;CA8D/B"}
|
|
@@ -4,6 +4,7 @@ import { AnimationEvent } from '@angular/animations';
|
|
|
4
4
|
import { AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit, QueryList, ViewContainerRef } from '@angular/core';
|
|
5
5
|
import { Subject } from 'rxjs';
|
|
6
6
|
import { StepHeaderComponent } from './step-header/step-header.component';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class StepComponent extends CdkStep implements AfterContentInit, OnDestroy {
|
|
8
9
|
private stepper;
|
|
9
10
|
private _viewContainerRef;
|
|
@@ -23,6 +24,8 @@ export declare class StepComponent extends CdkStep implements AfterContentInit,
|
|
|
23
24
|
completeLast(): void;
|
|
24
25
|
resetValidations(): void;
|
|
25
26
|
private stepValidation;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepComponent, "mad-step", never, {}, { "onNext": "onNext"; "onDone": "onDone"; "onHeaderClick": "onHeaderClick"; }, never, ["*"], false>;
|
|
26
29
|
}
|
|
27
30
|
export declare class StepperComponent extends CdkStepper implements OnInit, AfterContentInit {
|
|
28
31
|
/** Event emitted when the current step is done transitioning in. */
|
|
@@ -36,7 +39,7 @@ export declare class StepperComponent extends CdkStepper implements OnInit, Afte
|
|
|
36
39
|
/** Steps that belong to the current stepper, excluding ones from nested steppers. */
|
|
37
40
|
steps: QueryList<StepComponent>;
|
|
38
41
|
readonly _animationDone: Subject<AnimationEvent>;
|
|
39
|
-
constructor(dir: Directionality, changeDetectorRef: ChangeDetectorRef, elementRef: ElementRef<HTMLElement
|
|
42
|
+
constructor(dir: Directionality, changeDetectorRef: ChangeDetectorRef, elementRef: ElementRef<HTMLElement>);
|
|
40
43
|
ngOnInit(): void;
|
|
41
44
|
ngAfterContentInit(): void;
|
|
42
45
|
/**
|
|
@@ -44,4 +47,7 @@ export declare class StepperComponent extends CdkStepper implements OnInit, Afte
|
|
|
44
47
|
*/
|
|
45
48
|
_getAnimationDirection(index: number): StepContentPositionState;
|
|
46
49
|
_stepIsNavigable(index: number, step: StepComponent): boolean;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, [{ optional: true; }, null, null]>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "mad-stepper", never, { "nextButtonLabel": "nextButtonLabel"; "doneButtonLabel": "doneButtonLabel"; }, { "animationDone": "animationDone"; }, ["_steps"], never, false>;
|
|
47
52
|
}
|
|
53
|
+
//# sourceMappingURL=stepper.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stepper.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/stepper/stepper.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,cAAc,EAAC,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAC,OAAO,EAAE,UAAU,EAAc,wBAAwB,EAAC,MAAM,sBAAsB,CAAC;AAC/F,OAAO,EAAC,cAAc,EAAC,MAAM,qBAAqB,CAAC;AACnD,OAAO,EACL,gBAAgB,EAEhB,iBAAiB,EAGjB,UAAU,EACV,YAAY,EAIZ,SAAS,EACT,MAAM,EAGN,SAAS,EAET,gBAAgB,EAEjB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,OAAO,EAAe,MAAM,MAAM,CAAC;AAE3C,OAAO,EAAC,mBAAmB,EAAC,MAAM,qCAAqC,CAAC;;AAGxE,qBAQa,aAAc,SAAQ,OAAQ,YAAW,gBAAgB,EAAE,SAAS;IAiBvB,OAAO,CAAC,OAAO;IAAoB,OAAO,CAAC,iBAAiB;IAhBpH,qGAAqG;IAErG,MAAM,oBAA2B;IAEjC,sGAAsG;IAEtG,MAAM,oBAA2B;IAEjC,4GAA4G;IAE5G,aAAa,oBAA2B;IAExC,UAAU,UAAS;IAEnB,OAAO,CAAC,WAAW,CAAsB;gBAEuB,OAAO,EAAE,gBAAgB,EAAU,iBAAiB,EAAE,gBAAgB;IAItI,kBAAkB;IAclB,WAAW;IAIX,IAAI,CAAC,iBAAiB,UAAO,GAAG,IAAI;IASpC,sBAAsB,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAU3C,YAAY,IAAI,IAAI;IAWpB,gBAAgB,IAAI,IAAI;IAMxB,OAAO,CAAC,cAAc;yCA3EX,aAAa;2CAAb,aAAa;CAyFzB;AAED,qBAea,gBAAiB,SAAQ,UAAW,YAAW,MAAM,EAAE,gBAAgB;IAClF,oEAAoE;IAC1D,QAAQ,CAAC,aAAa,EAAE,YAAY,CAAC,IAAI,CAAC,CAA4B;IAGhF,eAAe,EAAE,MAAM,CAAC;IAGxB,eAAe,EAAE,MAAM,CAAC;IACxB,mDAAmD;IAChB,WAAW,EAAE,SAAS,CAAC,mBAAmB,CAAC,CAAC;IAE/E,+BAA+B;IACsB,MAAM,EAAE,SAAS,CAAC,aAAa,CAAC,CAAC;IAEtF,qFAAqF;IACrF,KAAK,EAAE,SAAS,CAAC,aAAa,CAAC,CAAkC;IAEjE,QAAQ,CAAC,cAAc,0BAAiC;gBAG1C,GAAG,EAAE,cAAc,EAC/B,iBAAiB,EAAE,iBAAiB,EACpC,UAAU,EAAE,UAAU,CAAC,WAAW,CAAC;IAMrC,QAAQ;IAKR,kBAAkB;IAmBlB;;OAEG;IACH,sBAAsB,CAAC,KAAK,EAAE,MAAM,GAAG,wBAAwB;IAQ/D,gBAAgB,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,aAAa,GAAG,OAAO;yCAhElD,gBAAgB;2CAAhB,gBAAgB;CAmE5B"}
|
|
@@ -1,2 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./stepper.component";
|
|
3
|
+
import * as i2 from "./step-header/step-header.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/material/button";
|
|
6
|
+
import * as i5 from "@angular/material/icon";
|
|
7
|
+
import * as i6 from "@angular/cdk/stepper";
|
|
8
|
+
import * as i7 from "@angular/flex-layout";
|
|
1
9
|
export declare class StepperModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StepperModule, [typeof i1.StepperComponent, typeof i2.StepHeaderComponent, typeof i1.StepComponent], [typeof i3.CommonModule, typeof i4.MatButtonModule, typeof i5.MatIconModule, typeof i6.CdkStepperModule, typeof i7.FlexModule], [typeof i1.StepperComponent, typeof i2.StepHeaderComponent, typeof i1.StepComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<StepperModule>;
|
|
2
13
|
}
|
|
14
|
+
//# sourceMappingURL=stepper.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stepper.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/stepper/stepper.module.ts"],"names":[],"mappings":";;;;;;;;AASA,qBAKa,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"column-header.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/table/column-header.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table-action.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/table/table-action.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,GAAG,CAAC;CACjB"}
|
|
@@ -4,6 +4,7 @@ import { MatPaginator } from '@angular/material/paginator';
|
|
|
4
4
|
import { MatSort, Sort } from '@angular/material/sort';
|
|
5
5
|
import { ColumnHeader } from './column-header';
|
|
6
6
|
import { TableAction } from './table-action';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class TableComponent implements OnInit, AfterViewInit {
|
|
8
9
|
columns: ColumnHeader[];
|
|
9
10
|
filterLabel: string;
|
|
@@ -36,4 +37,7 @@ export declare class TableComponent implements OnInit, AfterViewInit {
|
|
|
36
37
|
onTableAction(tableAction: TableAction): void;
|
|
37
38
|
private setFilterValue;
|
|
38
39
|
private isClickOnRowMenuIcon;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "mad-table", never, { "columns": "columns"; "filterLabel": "filterLabel"; "filterPlaceholder": "filterPlaceholder"; "noDataText": "noDataText"; "pageSizeOptions": "pageSizeOptions"; "defaultPageSize": "defaultPageSize"; "rowActions": "rowActions"; "tableActions": "tableActions"; "displayedData": "displayedData"; "paginationEnabled": "paginationEnabled"; "filterEnabled": "filterEnabled"; }, { "tableAction": "tableAction"; "rowAction": "rowAction"; "sortEvent": "sortEvent"; }, never, never, false>;
|
|
39
42
|
}
|
|
43
|
+
//# sourceMappingURL=table.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/table/table.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,YAAY,EAAS,MAAM,EAAqB,MAAM,eAAe,CAAC;AACzG,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;;AAE7C,qBAKa,cAAe,YAAW,MAAM,EAAE,aAAa;IACjD,OAAO,EAAE,YAAY,EAAE,CAAM;IAC7B,WAAW,SAAa;IACxB,iBAAiB,SAAa;IAC9B,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,WAAe;IAC9B,eAAe,SAAmC;IAClD,UAAU,EAAE,WAAW,EAAE,CAAM;IAC/B,YAAY,EAAE,WAAW,EAAE,CAAM;IAEhC,WAAW,4BAAmC;IAC9C,SAAS,4BAAmC;IAC5C,SAAS,qBAA4B;IAEH,SAAS,EAAE,YAAY,CAAC;IAC9B,IAAI,EAAE,OAAO,CAAC;IAEpD,QAAQ,CAAC,kBAAkB,gBAAgB;IAC3C,UAAU,EAAE,kBAAkB,CAAC,GAAG,EAAE,CAAC,CAAC;IACtC,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,cAAc,EAAE,OAAO,CAAC;IACxB,aAAa,EAAE,WAAW,CAAC;IAC3B,eAAe,UAAS;IACxB,mBAAmB,UAAS;IAE5B,IAAa,aAAa,CAAC,IAAI,EAAE,GAAG,EAAE,EAMrC;IAED,IAAa,iBAAiB,CAAC,mBAAmB,EAAE,OAAO,EAO1D;IAED,IACI,aAAa,CAAC,eAAe,EAAE,OAAO,EAGzC;IAED,QAAQ,IAAI,IAAI;IAShB,eAAe,IAAI,IAAI;IASvB,QAAQ,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAI7B,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,cAAqB,GAAG,IAAI;IAM1E,cAAc,CAAC,aAAa,EAAE,IAAI,GAAG,IAAI;IAIzC,aAAa,CAAC,WAAW,EAAE,WAAW,GAAG,IAAI;IAM7C,OAAO,CAAC,cAAc;IAItB,OAAO,CAAC,oBAAoB;yCA1FjB,cAAc;2CAAd,cAAc;CA6F1B"}
|
package/lib/table/table.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/table/table.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAC,cAAc,EAAC,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,2 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./table.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/button";
|
|
5
|
+
import * as i4 from "@angular/material/icon";
|
|
6
|
+
import * as i5 from "@angular/material/form-field";
|
|
7
|
+
import * as i6 from "@angular/material/input";
|
|
8
|
+
import * as i7 from "@angular/material/menu";
|
|
9
|
+
import * as i8 from "@angular/material/paginator";
|
|
10
|
+
import * as i9 from "@angular/material/sort";
|
|
11
|
+
import * as i10 from "@angular/material/table";
|
|
12
|
+
import * as i11 from "../button/button.module";
|
|
1
13
|
export declare class TableModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof i1.TableComponent], [typeof i2.CommonModule, typeof i3.MatButtonModule, typeof i4.MatIconModule, typeof i5.MatFormFieldModule, typeof i6.MatInputModule, typeof i7.MatMenuModule, typeof i8.MatPaginatorModule, typeof i9.MatSortModule, typeof i10.MatTableModule, typeof i11.ButtonModule], [typeof i1.TableComponent]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TableModule>;
|
|
2
17
|
}
|
|
18
|
+
//# sourceMappingURL=table.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/table/table.module.ts"],"names":[],"mappings":";;;;;;;;;;;;AAaA,qBAgBa,WAAW;yCAAX,WAAW;0CAAX,WAAW;0CAAX,WAAW;CAAG"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ThrottleClickDirective implements OnInit, OnDestroy {
|
|
3
4
|
throttleTime: number;
|
|
4
5
|
throttleClick: EventEmitter<any>;
|
|
@@ -7,4 +8,7 @@ export declare class ThrottleClickDirective implements OnInit, OnDestroy {
|
|
|
7
8
|
clickEvent(event: any): void;
|
|
8
9
|
ngOnInit(): void;
|
|
9
10
|
ngOnDestroy(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThrottleClickDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ThrottleClickDirective, "[madThrottleClick]", never, { "throttleTime": "throttleTime"; }, { "throttleClick": "throttleClick"; }, never, never, false>;
|
|
10
13
|
}
|
|
14
|
+
//# sourceMappingURL=throttle-click.directive.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"throttle-click.directive.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/throttle-click/throttle-click.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAuB,SAAS,EAAE,MAAM,EAAU,MAAM,eAAe,CAAC;;AAIxG,qBAGa,sBAAuB,YAAW,MAAM,EAAE,SAAS;IACrD,YAAY,SAAO;IAClB,aAAa,oBAAsB;IAC7C,OAAO,CAAC,MAAM,CAAiB;IAC/B,OAAO,CAAC,YAAY,CAAe;IAGnC,UAAU,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAM5B,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;yCAjBR,sBAAsB;2CAAtB,sBAAsB;CAoBlC"}
|
|
@@ -1,2 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./throttle-click.directive";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
export declare class ThrottleClickModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThrottleClickModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ThrottleClickModule, [typeof i1.ThrottleClickDirective], [typeof i2.CommonModule], [typeof i1.ThrottleClickDirective]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ThrottleClickModule>;
|
|
2
8
|
}
|
|
9
|
+
//# sourceMappingURL=throttle-click.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"throttle-click.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/throttle-click/throttle-click.module.ts"],"names":[],"mappings":";;;AAIA,qBAKa,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toolbar-action.interface.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/toolbar/toolbar-action.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAEtD,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,EAAE,MAAM,CAAC;IACnB,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED,MAAM,WAAW,UAAW,SAAQ,MAAM;IACxC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,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"}
|
|
@@ -3,6 +3,7 @@ import { ToolbarService } from './toolbar.service';
|
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
5
5
|
import { Action, BackAction, MainAction, ToolbarAction } from './toolbar-action.interface';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class ToolbarComponent {
|
|
7
8
|
private breakpointObserver;
|
|
8
9
|
private titleService;
|
|
@@ -21,4 +22,7 @@ export declare class ToolbarComponent {
|
|
|
21
22
|
getToolbarActionsMenuTitle(): string;
|
|
22
23
|
showBadgeForMenu(): boolean;
|
|
23
24
|
hasImportantToolbarActions(): boolean;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "mad-toolbar", never, {}, {}, never, never, false>;
|
|
24
27
|
}
|
|
28
|
+
//# sourceMappingURL=toolbar.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toolbar.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/toolbar/toolbar.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,UAAU,EAAM,MAAM,MAAM,CAAC;AACtC,OAAO,EAAE,kBAAkB,EAAe,MAAM,qBAAqB,CAAC;AAEtE,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;;AAE3F,qBAKa,gBAAgB;IAGf,OAAO,CAAC,kBAAkB;IAAsB,OAAO,CAAC,YAAY;IAAS,OAAO,CAAC,cAAc;IAF/G,UAAU,EAAE,UAAU,CAAC,OAAO,CAAC,CAA8F;gBAEzG,kBAAkB,EAAE,kBAAkB,EAAU,YAAY,EAAE,KAAK,EAAU,cAAc,EAAE,cAAc;IAE/H,QAAQ,IAAI,MAAM;IAOlB,iBAAiB,IAAI,aAAa,EAAE;IAIpC,cAAc,IAAI,UAAU,EAAE;IAI9B,aAAa,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,OAAO,CAAC;IAOlD,YAAY,IAAI,OAAO;IAIvB,cAAc,IAAI,OAAO;IAIzB,QAAQ,IAAI,OAAO;IAInB,aAAa,IAAI,UAAU;IAI3B,6BAA6B,IAAI,OAAO;IAIxC,0BAA0B,IAAI,MAAM;IAIpC,gBAAgB,IAAI,OAAO;IAQ3B,0BAA0B,IAAI,OAAO;yCA3D1B,gBAAgB;2CAAhB,gBAAgB;CA8D5B"}
|
|
@@ -1,2 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./toolbar.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/router";
|
|
5
|
+
import * as i4 from "@angular/material/menu";
|
|
6
|
+
import * as i5 from "@angular/material/button";
|
|
7
|
+
import * as i6 from "@angular/material/toolbar";
|
|
8
|
+
import * as i7 from "@angular/material/icon";
|
|
9
|
+
import * as i8 from "../material-action-button/material-action-button.module";
|
|
10
|
+
import * as i9 from "@angular/material/tooltip";
|
|
11
|
+
import * as i10 from "../button/button.module";
|
|
12
|
+
import * as i11 from "@angular/material/badge";
|
|
1
13
|
export declare class ToolbarModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ToolbarModule, [typeof i1.ToolbarComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i4.MatMenuModule, typeof i5.MatButtonModule, typeof i6.MatToolbarModule, typeof i7.MatIconModule, typeof i8.MaterialActionButtonModule, typeof i9.MatTooltipModule, typeof i10.ButtonModule, typeof i11.MatBadgeModule], [typeof i1.ToolbarComponent]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ToolbarModule>;
|
|
2
17
|
}
|
|
18
|
+
//# sourceMappingURL=toolbar.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toolbar.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/toolbar/toolbar.module.ts"],"names":[],"mappings":";;;;;;;;;;;;AAaA,qBAgBa,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAAG"}
|
|
@@ -3,6 +3,7 @@ import { 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';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class ToolbarService implements OnDestroy {
|
|
7
8
|
private router;
|
|
8
9
|
private translate;
|
|
@@ -37,4 +38,7 @@ export declare class ToolbarService implements OnDestroy {
|
|
|
37
38
|
addBackAction(goBackRoute: string, isAbsoluteUrl?: boolean): void;
|
|
38
39
|
addSimpleBackButton(overrideIfPresent?: boolean): void;
|
|
39
40
|
clearMainActions(): void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarService, never>;
|
|
42
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ToolbarService>;
|
|
40
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;IAYlC,OAAO,CAAC,MAAM;IAAU,OAAO,CAAC,SAAS;IAXrD,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;gBAEP,MAAM,EAAE,MAAM,EAAU,SAAS,EAAE,gBAAgB;IAcvE,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;yCAjIb,cAAc;6CAAd,cAAc;CAoI1B"}
|
package/package.json
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porscheinformatik/material-addons",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.0-beta.0",
|
|
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
|
-
"es2015": "
|
|
11
|
-
"main": "bundles/porscheinformatik-material-addons.umd.js",
|
|
12
|
-
"module": "fesm2015/porscheinformatik-material-addons.
|
|
13
|
-
"
|
|
14
|
-
"typings": "porscheinformatik-material-addons.d.ts",
|
|
10
|
+
"es2015": "./esm2015/porscheinformatik-material-addons.js",
|
|
11
|
+
"main": "./bundles/porscheinformatik-material-addons.umd.js",
|
|
12
|
+
"module": "fesm2015/porscheinformatik-material-addons.mjs",
|
|
13
|
+
"typings": "index.d.ts",
|
|
15
14
|
"keywords": [
|
|
16
15
|
"angular",
|
|
17
16
|
"angular-material",
|
|
@@ -25,28 +24,44 @@
|
|
|
25
24
|
"author": "porscheinformatik",
|
|
26
25
|
"license": "MIT",
|
|
27
26
|
"files": [
|
|
27
|
+
"index.d.ts",
|
|
28
28
|
"themes/*.scss",
|
|
29
29
|
"themes/common/*.scss",
|
|
30
|
-
"porscheinformatik-material-addons.metadata.json",
|
|
31
30
|
"porscheinformatik-material-addons.d.ts",
|
|
32
|
-
"
|
|
31
|
+
"porscheinformatik-material-addons.d.ts.map",
|
|
32
|
+
"public_api.d.ts",
|
|
33
|
+
"public_api.d.ts.map",
|
|
33
34
|
"lib/",
|
|
34
|
-
"
|
|
35
|
-
"esm2015",
|
|
35
|
+
"esm2020",
|
|
36
36
|
"fesm2015",
|
|
37
|
-
"
|
|
37
|
+
"fesm2020"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"tslib": "^2.
|
|
40
|
+
"tslib": "^2.3.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@angular/cdk": ">=
|
|
44
|
-
"@angular/material": ">=
|
|
45
|
-
"@angular/common": ">=
|
|
46
|
-
"@angular/core": ">=
|
|
47
|
-
"@ngx-translate/core": ">=
|
|
43
|
+
"@angular/cdk": ">= 14.0.0",
|
|
44
|
+
"@angular/material": ">= 14.0.0",
|
|
45
|
+
"@angular/common": ">= 14.0.0",
|
|
46
|
+
"@angular/core": ">= 14.0.0",
|
|
47
|
+
"@ngx-translate/core": ">= 14.0.0"
|
|
48
|
+
},
|
|
49
|
+
"es2020": "fesm2020/porscheinformatik-material-addons.mjs",
|
|
50
|
+
"esm2020": "esm2020/porscheinformatik-material-addons.mjs",
|
|
51
|
+
"fesm2020": "fesm2020/porscheinformatik-material-addons.mjs",
|
|
52
|
+
"fesm2015": "fesm2015/porscheinformatik-material-addons.mjs",
|
|
53
|
+
"exports": {
|
|
54
|
+
"./package.json": {
|
|
55
|
+
"default": "./package.json"
|
|
56
|
+
},
|
|
57
|
+
".": {
|
|
58
|
+
"types": "./index.d.ts",
|
|
59
|
+
"esm2020": "./esm2020/porscheinformatik-material-addons.mjs",
|
|
60
|
+
"es2020": "./fesm2020/porscheinformatik-material-addons.mjs",
|
|
61
|
+
"es2015": "./fesm2015/porscheinformatik-material-addons.mjs",
|
|
62
|
+
"node": "./fesm2015/porscheinformatik-material-addons.mjs",
|
|
63
|
+
"default": "./fesm2020/porscheinformatik-material-addons.mjs"
|
|
64
|
+
}
|
|
48
65
|
},
|
|
49
|
-
"esm2015": "esm2015/porscheinformatik-material-addons.js",
|
|
50
|
-
"fesm2015": "fesm2015/porscheinformatik-material-addons.js",
|
|
51
66
|
"sideEffects": false
|
|
52
|
-
}
|
|
67
|
+
}
|
|
@@ -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"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './lib/material-action-button/material-action-button.component';
|
|
2
2
|
export * from './lib/material-action-button/material-action-button.module';
|
|
3
|
+
export * from './lib/button/button';
|
|
3
4
|
export * from './lib/button/button.module';
|
|
4
5
|
export * from './lib/readonly/readonly-form-field.module';
|
|
5
6
|
export * from './lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component';
|
|
@@ -8,9 +9,12 @@ export * from './lib/toolbar/toolbar.module';
|
|
|
8
9
|
export * from './lib/toolbar/toolbar.component';
|
|
9
10
|
export * from './lib/toolbar/toolbar.service';
|
|
10
11
|
export * from './lib/toolbar/toolbar-action.interface';
|
|
12
|
+
export * from './lib/numeric-field/numeric-field';
|
|
11
13
|
export * from './lib/numeric-field/numeric-field.module';
|
|
12
14
|
export * from './lib/numeric-field/number-format.service';
|
|
15
|
+
export * from './lib/card/card';
|
|
13
16
|
export * from './lib/card/card.module';
|
|
17
|
+
export * from './lib/quick-list/quick-list';
|
|
14
18
|
export * from './lib/quick-list/quick-list.module';
|
|
15
19
|
export * from './lib/table/table';
|
|
16
20
|
export * from './lib/table/table.module';
|
|
@@ -31,3 +35,4 @@ export * from './lib/content-panel/content-panel.module';
|
|
|
31
35
|
export * from './lib/flowbar/flowbar.component';
|
|
32
36
|
export * from './lib/flowbar/flowbar.module';
|
|
33
37
|
export * from './lib/material-addons.module';
|
|
38
|
+
//# 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"}
|