@porscheinformatik/material-addons 14.0.0 → 14.0.1-beta.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/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.map +1 -1
- package/fesm2020/porscheinformatik-material-addons.mjs +2962 -0
- package/fesm2020/porscheinformatik-material-addons.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/package.json +13 -15
- package/porscheinformatik-material-addons.d.ts.map +1 -0
- package/{public-api.d.ts → public_api.d.ts} +1 -1
- package/public_api.d.ts.map +1 -0
package/index.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porscheinformatik/material-addons",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.1-beta.2",
|
|
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": "./esm2015/porscheinformatik-material-addons.js",
|
|
11
|
-
"main": "./bundles/porscheinformatik-material-addons.umd.js",
|
|
12
10
|
"module": "fesm2015/porscheinformatik-material-addons.mjs",
|
|
11
|
+
"es2020": "fesm2020/porscheinformatik-material-addons.mjs",
|
|
12
|
+
"esm2020": "esm2020/porscheinformatik-material-addons.mjs",
|
|
13
|
+
"fesm2020": "fesm2020/porscheinformatik-material-addons.mjs",
|
|
14
|
+
"fesm2015": "fesm2015/porscheinformatik-material-addons.mjs",
|
|
13
15
|
"typings": "index.d.ts",
|
|
14
16
|
"keywords": [
|
|
15
17
|
"angular",
|
|
@@ -24,15 +26,15 @@
|
|
|
24
26
|
"author": "porscheinformatik",
|
|
25
27
|
"license": "MIT",
|
|
26
28
|
"files": [
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
29
|
+
"index.d.ts",
|
|
30
|
+
"porscheinformatik-material-addons.d.ts.map",
|
|
31
|
+
"public_api.d.ts",
|
|
32
|
+
"public_api.d.ts.map",
|
|
31
33
|
"lib/",
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"fesm2015",
|
|
35
|
-
"
|
|
34
|
+
"themes/",
|
|
35
|
+
"esm2020/",
|
|
36
|
+
"fesm2015/",
|
|
37
|
+
"fesm2020/"
|
|
36
38
|
],
|
|
37
39
|
"dependencies": {
|
|
38
40
|
"tslib": "^2.3.0"
|
|
@@ -44,10 +46,6 @@
|
|
|
44
46
|
"@angular/core": ">= 14.0.0",
|
|
45
47
|
"@ngx-translate/core": ">= 14.0.0"
|
|
46
48
|
},
|
|
47
|
-
"es2020": "fesm2020/porscheinformatik-material-addons.mjs",
|
|
48
|
-
"esm2020": "esm2020/porscheinformatik-material-addons.mjs",
|
|
49
|
-
"fesm2020": "fesm2020/porscheinformatik-material-addons.mjs",
|
|
50
|
-
"fesm2015": "fesm2015/porscheinformatik-material-addons.mjs",
|
|
51
49
|
"exports": {
|
|
52
50
|
"./package.json": {
|
|
53
51
|
"default": "./package.json"
|
|
@@ -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"}
|
|
@@ -35,4 +35,4 @@ export * from './lib/content-panel/content-panel.module';
|
|
|
35
35
|
export * from './lib/flowbar/flowbar.component';
|
|
36
36
|
export * from './lib/flowbar/flowbar.module';
|
|
37
37
|
export * from './lib/material-addons.module';
|
|
38
|
-
//# sourceMappingURL=
|
|
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"}
|