@porscheinformatik/material-addons 16.0.0 → 16.0.2
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/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 +527 -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/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 +101 -0
- package/esm2022/lib/quick-list/quick-list-compact/quick-list-compact.component.mjs +20 -0
- package/esm2022/lib/quick-list/quick-list.component.mjs +21 -0
- package/esm2022/lib/quick-list/quick-list.mjs +4 -0
- package/esm2022/lib/quick-list/quick-list.module.mjs +23 -0
- package/esm2022/lib/readonly/readonly-form-field/readonly-form-field.component.mjs +155 -0
- package/esm2022/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.mjs +185 -0
- package/esm2022/lib/readonly/readonly-form-field.module.mjs +24 -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 +41 -0
- package/fesm2022/porscheinformatik-material-addons.mjs +2983 -0
- package/fesm2022/porscheinformatik-material-addons.mjs.map +1 -0
- package/package.json +8 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porscheinformatik/material-addons",
|
|
3
|
-
"version": "16.0.
|
|
3
|
+
"version": "16.0.2",
|
|
4
4
|
"description": "Custom theme and components for Angular Material",
|
|
5
5
|
"homepage": "https://github.com/porscheinformatik/material-addons",
|
|
6
6
|
"repository": {
|
|
@@ -8,10 +8,7 @@
|
|
|
8
8
|
"url": "git@https://github.com/porscheinformatik/material-addons.git"
|
|
9
9
|
},
|
|
10
10
|
"module": "fesm2022/porscheinformatik-material-addons.mjs",
|
|
11
|
-
"
|
|
12
|
-
"esm2020": "./esm2020/porscheinformatik-material-addons.mjs",
|
|
13
|
-
"fesm2020": "./fesm2020/porscheinformatik-material-addons.mjs",
|
|
14
|
-
"fesm2015": "./fesm2015/porscheinformatik-material-addons.mjs",
|
|
11
|
+
"esm2022": "./esm2022/porscheinformatik-material-addons.mjs",
|
|
15
12
|
"typings": "index.d.ts",
|
|
16
13
|
"keywords": [
|
|
17
14
|
"angular",
|
|
@@ -32,18 +29,17 @@
|
|
|
32
29
|
"public_api.d.ts.map",
|
|
33
30
|
"lib/",
|
|
34
31
|
"themes/",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"fesm2020/"
|
|
32
|
+
"esm2022/",
|
|
33
|
+
"fesm2022/"
|
|
38
34
|
],
|
|
39
35
|
"dependencies": {
|
|
40
36
|
"tslib": "^2.6.0"
|
|
41
37
|
},
|
|
42
38
|
"peerDependencies": {
|
|
43
|
-
"@angular/cdk": ">=
|
|
44
|
-
"@angular/material": ">=
|
|
45
|
-
"@angular/common": ">=
|
|
46
|
-
"@angular/core": ">=
|
|
39
|
+
"@angular/cdk": ">= 16.0.0",
|
|
40
|
+
"@angular/material": ">= 16.0.0",
|
|
41
|
+
"@angular/common": ">= 16.0.0",
|
|
42
|
+
"@angular/core": ">= 16.0.0",
|
|
47
43
|
"@ngx-translate/core": ">= 14.0.0"
|
|
48
44
|
},
|
|
49
45
|
"exports": {
|