@porscheinformatik/material-addons 10.2.1 → 10.2.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/bundles/porscheinformatik-material-addons.umd.js +465 -5
- package/bundles/porscheinformatik-material-addons.umd.js.map +1 -1
- package/bundles/porscheinformatik-material-addons.umd.min.js +2 -2
- package/bundles/porscheinformatik-material-addons.umd.min.js.map +1 -1
- package/esm2015/lib/content-panel/content-header/content-header.component.js +15 -0
- package/esm2015/lib/content-panel/content-panel-container/content-panel-container.component.js +15 -0
- package/esm2015/lib/content-panel/content-panel-container-content/content-panel-container-content.component.js +15 -0
- package/esm2015/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.js +15 -0
- package/esm2015/lib/content-panel/content-panel.module.js +29 -0
- package/esm2015/lib/content-panel/main-container/main-container.component.js +15 -0
- package/esm2015/lib/data-table/data-table-action.js +1 -0
- package/esm2015/lib/data-table/data-table-column-header.js +1 -0
- package/esm2015/lib/data-table/data-table.component.js +103 -0
- package/esm2015/lib/data-table/data-table.js +1 -0
- package/esm2015/lib/data-table/data-table.module.js +33 -0
- package/esm2015/lib/flowbar/flowbar.component.js +186 -0
- package/esm2015/lib/flowbar/flowbar.module.js +14 -0
- package/esm2015/lib/table/table.component.js +1 -1
- package/esm2015/lib/table/table.module.js +3 -3
- package/esm2015/porscheinformatik-material-addons.js +2 -1
- package/esm2015/public-api.js +11 -1
- package/fesm2015/porscheinformatik-material-addons.js +409 -2
- package/fesm2015/porscheinformatik-material-addons.js.map +1 -1
- package/lib/content-panel/content-header/content-header.component.d.ts +5 -0
- package/lib/content-panel/content-panel-container/content-panel-container.component.d.ts +5 -0
- package/lib/content-panel/content-panel-container-content/content-panel-container-content.component.d.ts +5 -0
- package/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.d.ts +5 -0
- package/lib/content-panel/content-panel.module.d.ts +2 -0
- package/lib/content-panel/main-container/main-container.component.d.ts +5 -0
- package/lib/data-table/data-table-action.d.ts +5 -0
- package/lib/data-table/data-table-column-header.d.ts +6 -0
- package/lib/data-table/data-table.component.d.ts +39 -0
- package/lib/data-table/data-table.d.ts +2 -0
- package/lib/data-table/data-table.module.d.ts +2 -0
- package/lib/flowbar/flowbar.component.d.ts +42 -0
- package/lib/flowbar/flowbar.module.d.ts +2 -0
- package/package.json +1 -1
- package/porscheinformatik-material-addons.d.ts +1 -0
- package/porscheinformatik-material-addons.metadata.json +1 -1
- package/public-api.d.ts +10 -0
package/public-api.d.ts
CHANGED
|
@@ -14,10 +14,20 @@ export * from './lib/card/card.module';
|
|
|
14
14
|
export * from './lib/quick-list/quick-list.module';
|
|
15
15
|
export * from './lib/table/table';
|
|
16
16
|
export * from './lib/table/table.module';
|
|
17
|
+
export * from './lib/data-table/data-table';
|
|
18
|
+
export * from './lib/data-table/data-table.module';
|
|
17
19
|
export * from './lib/throttle-click/throttle-click.directive';
|
|
18
20
|
export * from './lib/throttle-click/throttle-click.module';
|
|
19
21
|
export * from './lib/stepper/stepper.component';
|
|
20
22
|
export * from './lib/stepper/step-header/step-header.component';
|
|
21
23
|
export * from './lib/stepper/mad-stepper-animation';
|
|
22
24
|
export * from './lib/stepper/stepper.module';
|
|
25
|
+
export * from './lib/content-panel/content-header/content-header.component';
|
|
26
|
+
export * from './lib/content-panel/content-panel-container/content-panel-container.component';
|
|
27
|
+
export * from './lib/content-panel/content-panel-container-content/content-panel-container-content.component';
|
|
28
|
+
export * from './lib/content-panel/content-panel-container-footer/content-panel-container-footer.component';
|
|
29
|
+
export * from './lib/content-panel/main-container/main-container.component';
|
|
30
|
+
export * from './lib/content-panel/content-panel.module';
|
|
31
|
+
export * from './lib/flowbar/flowbar.component';
|
|
32
|
+
export * from './lib/flowbar/flowbar.module';
|
|
23
33
|
export * from './lib/material-addons.module';
|