@pmeig/ngb-material 1.0.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/README.md +63 -0
- package/fesm2022/pmeig-ngb-material.mjs +144 -0
- package/fesm2022/pmeig-ngb-material.mjs.map +1 -0
- package/index.d.ts +94 -0
- package/package.json +86 -0
package/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# BMaterial
|
|
2
|
+
|
|
3
|
+
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 19.0.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
ng generate component component-name
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
ng generate --help
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Building
|
|
20
|
+
|
|
21
|
+
To build the library, run:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
ng build b-material
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
This command will compile your project, and the build artifacts will be placed in the `dist/` directory.
|
|
28
|
+
|
|
29
|
+
### Publishing the Library
|
|
30
|
+
|
|
31
|
+
Once the project is built, you can publish your library by following these steps:
|
|
32
|
+
|
|
33
|
+
1. Navigate to the `dist` directory:
|
|
34
|
+
```bash
|
|
35
|
+
cd dist/b-material
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
2. Run the `npm publish` command to publish your library to the npm registry:
|
|
39
|
+
```bash
|
|
40
|
+
npm publish
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Running unit tests
|
|
44
|
+
|
|
45
|
+
To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
ng test
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Running end-to-end tests
|
|
52
|
+
|
|
53
|
+
For end-to-end (e2e) testing, run:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
ng e2e
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
|
|
60
|
+
|
|
61
|
+
## Additional Resources
|
|
62
|
+
|
|
63
|
+
For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { FormMaterial } from '@pmeig/ngb-form';
|
|
4
|
+
import { InputMaterial } from '@pmeig/ngb-input';
|
|
5
|
+
import { LabelMaterial } from '@pmeig/ngb-label';
|
|
6
|
+
import { ButtonMaterial } from '@pmeig/ngb-button';
|
|
7
|
+
import { AccordionMaterial } from '@pmeig/ngb-accordion';
|
|
8
|
+
import { CollapseMaterial } from '@pmeig/ngb-collapse';
|
|
9
|
+
import { BadgeMaterial } from '@pmeig/ngb-badge';
|
|
10
|
+
import { AlertMaterial } from '@pmeig/ngb-alert';
|
|
11
|
+
import { SelectMaterial } from '@pmeig/ngb-select';
|
|
12
|
+
import { BreadcrumbMaterial } from '@pmeig/ngb-breadcrumb';
|
|
13
|
+
import { CardMaterial } from '@pmeig/ngb-card';
|
|
14
|
+
import { CarouselMaterial } from '@pmeig/ngb-carousel';
|
|
15
|
+
import { DropdownMaterial } from '@pmeig/ngb-dropdown';
|
|
16
|
+
import { ListMaterial } from '@pmeig/ngb-list';
|
|
17
|
+
import { OffcanvasMaterial } from '@pmeig/ngb-offcanvas';
|
|
18
|
+
import { NavbarMaterial } from '@pmeig/ngb-navbar';
|
|
19
|
+
import { PaginationMaterial } from '@pmeig/ngb-pagination';
|
|
20
|
+
import { ProgressMaterial } from '@pmeig/ngb-progress';
|
|
21
|
+
import { TooltipMaterial, PopoverMaterial } from '@pmeig/ngb-tooltip';
|
|
22
|
+
import { ToastMaterial } from '@pmeig/ngb-toast';
|
|
23
|
+
import { SpinnerMaterial } from '@pmeig/ngb-spinner';
|
|
24
|
+
import { TableMaterial } from '@pmeig/ngb-table';
|
|
25
|
+
|
|
26
|
+
const excludeModule = (excludes, modules) => {
|
|
27
|
+
const imports = modules.filter(module => !excludes.includes(module));
|
|
28
|
+
return {
|
|
29
|
+
imports,
|
|
30
|
+
exports: imports
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
const SIMPLE_MATERIAL_MODULES = [InputMaterial, LabelMaterial, ButtonMaterial, SelectMaterial];
|
|
34
|
+
class PmeigSimpleMaterial {
|
|
35
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigSimpleMaterial, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
36
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.1", ngImport: i0, type: PmeigSimpleMaterial, imports: [InputMaterial, LabelMaterial, ButtonMaterial, SelectMaterial], exports: [InputMaterial, LabelMaterial, ButtonMaterial, SelectMaterial] });
|
|
37
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigSimpleMaterial, imports: [SIMPLE_MATERIAL_MODULES, InputMaterial, LabelMaterial, ButtonMaterial, SelectMaterial] });
|
|
38
|
+
}
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigSimpleMaterial, decorators: [{
|
|
40
|
+
type: NgModule,
|
|
41
|
+
args: [{
|
|
42
|
+
imports: SIMPLE_MATERIAL_MODULES,
|
|
43
|
+
exports: SIMPLE_MATERIAL_MODULES,
|
|
44
|
+
}]
|
|
45
|
+
}] });
|
|
46
|
+
const FORMS_MATERIAL_MODULES = [PmeigSimpleMaterial, FormMaterial, AlertMaterial, DropdownMaterial,
|
|
47
|
+
ProgressMaterial, TooltipMaterial, PopoverMaterial, ToastMaterial, SpinnerMaterial];
|
|
48
|
+
class PmeigFormsMaterial {
|
|
49
|
+
static excludes(...excludes) {
|
|
50
|
+
return excludeModule(excludes, FORMS_MATERIAL_MODULES);
|
|
51
|
+
}
|
|
52
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigFormsMaterial, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
53
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.1", ngImport: i0, type: PmeigFormsMaterial, imports: [PmeigSimpleMaterial, FormMaterial, AlertMaterial, DropdownMaterial,
|
|
54
|
+
ProgressMaterial, TooltipMaterial, PopoverMaterial, ToastMaterial, SpinnerMaterial], exports: [PmeigSimpleMaterial, FormMaterial, AlertMaterial, DropdownMaterial,
|
|
55
|
+
ProgressMaterial, TooltipMaterial, PopoverMaterial, ToastMaterial, SpinnerMaterial] });
|
|
56
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigFormsMaterial, imports: [PmeigSimpleMaterial, FormMaterial, AlertMaterial, DropdownMaterial,
|
|
57
|
+
ProgressMaterial, ToastMaterial, PmeigSimpleMaterial, FormMaterial, AlertMaterial, DropdownMaterial,
|
|
58
|
+
ProgressMaterial] });
|
|
59
|
+
}
|
|
60
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigFormsMaterial, decorators: [{
|
|
61
|
+
type: NgModule,
|
|
62
|
+
args: [{
|
|
63
|
+
imports: FORMS_MATERIAL_MODULES,
|
|
64
|
+
exports: FORMS_MATERIAL_MODULES,
|
|
65
|
+
}]
|
|
66
|
+
}] });
|
|
67
|
+
const NAVIGATION_MATERIAL_MODULES = [PmeigSimpleMaterial, NavbarMaterial, CollapseMaterial,
|
|
68
|
+
OffcanvasMaterial, BreadcrumbMaterial, PaginationMaterial];
|
|
69
|
+
class PmeigNavigationMaterial {
|
|
70
|
+
static excludes(...excludes) {
|
|
71
|
+
return excludeModule(excludes, FORMS_MATERIAL_MODULES);
|
|
72
|
+
}
|
|
73
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigNavigationMaterial, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
74
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.1", ngImport: i0, type: PmeigNavigationMaterial, imports: [PmeigSimpleMaterial, NavbarMaterial, CollapseMaterial,
|
|
75
|
+
OffcanvasMaterial, BreadcrumbMaterial, PaginationMaterial], exports: [PmeigSimpleMaterial, NavbarMaterial, CollapseMaterial,
|
|
76
|
+
OffcanvasMaterial, BreadcrumbMaterial, PaginationMaterial] });
|
|
77
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigNavigationMaterial, imports: [PmeigSimpleMaterial, NavbarMaterial,
|
|
78
|
+
OffcanvasMaterial, PaginationMaterial, PmeigSimpleMaterial, NavbarMaterial] });
|
|
79
|
+
}
|
|
80
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigNavigationMaterial, decorators: [{
|
|
81
|
+
type: NgModule,
|
|
82
|
+
args: [{
|
|
83
|
+
imports: NAVIGATION_MATERIAL_MODULES,
|
|
84
|
+
exports: NAVIGATION_MATERIAL_MODULES,
|
|
85
|
+
}]
|
|
86
|
+
}] });
|
|
87
|
+
const DESIGN_MATERIAL_MODULES = [PmeigSimpleMaterial, CardMaterial, CarouselMaterial,
|
|
88
|
+
AccordionMaterial, CollapseMaterial, ListMaterial, TableMaterial];
|
|
89
|
+
class PmeigDesignMaterial {
|
|
90
|
+
static excludes(...excludes) {
|
|
91
|
+
return excludeModule(excludes, FORMS_MATERIAL_MODULES);
|
|
92
|
+
}
|
|
93
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigDesignMaterial, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
94
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.1", ngImport: i0, type: PmeigDesignMaterial, imports: [PmeigSimpleMaterial, CardMaterial, CarouselMaterial,
|
|
95
|
+
AccordionMaterial, CollapseMaterial, ListMaterial, TableMaterial], exports: [PmeigSimpleMaterial, CardMaterial, CarouselMaterial,
|
|
96
|
+
AccordionMaterial, CollapseMaterial, ListMaterial, TableMaterial] });
|
|
97
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigDesignMaterial, imports: [PmeigSimpleMaterial, CardMaterial, CarouselMaterial,
|
|
98
|
+
AccordionMaterial, ListMaterial, TableMaterial, PmeigSimpleMaterial, CardMaterial, CarouselMaterial,
|
|
99
|
+
AccordionMaterial, ListMaterial, TableMaterial] });
|
|
100
|
+
}
|
|
101
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigDesignMaterial, decorators: [{
|
|
102
|
+
type: NgModule,
|
|
103
|
+
args: [{
|
|
104
|
+
imports: DESIGN_MATERIAL_MODULES,
|
|
105
|
+
exports: DESIGN_MATERIAL_MODULES,
|
|
106
|
+
}]
|
|
107
|
+
}] });
|
|
108
|
+
const MATERIAL_MODULES = [PmeigFormsMaterial, PmeigNavigationMaterial, PmeigDesignMaterial,
|
|
109
|
+
BadgeMaterial];
|
|
110
|
+
class PmeigMaterial {
|
|
111
|
+
static excludes(excludes) {
|
|
112
|
+
const imports = [PmeigMaterial.exclude(excludes.forms, PmeigFormsMaterial),
|
|
113
|
+
PmeigMaterial.exclude(excludes.navigation, PmeigNavigationMaterial),
|
|
114
|
+
PmeigMaterial.exclude(excludes.design, PmeigDesignMaterial),
|
|
115
|
+
...[BadgeMaterial].filter(() => !excludes.default)];
|
|
116
|
+
return {
|
|
117
|
+
imports,
|
|
118
|
+
exports: imports
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
static exclude(excludes, module) {
|
|
122
|
+
if (excludes) {
|
|
123
|
+
return module.excludes(...excludes);
|
|
124
|
+
}
|
|
125
|
+
return module;
|
|
126
|
+
}
|
|
127
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigMaterial, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
128
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.1", ngImport: i0, type: PmeigMaterial, imports: [PmeigFormsMaterial, PmeigNavigationMaterial, PmeigDesignMaterial, BadgeMaterial], exports: [PmeigFormsMaterial, PmeigNavigationMaterial, PmeigDesignMaterial, BadgeMaterial] });
|
|
129
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigMaterial, imports: [PmeigFormsMaterial, PmeigNavigationMaterial, PmeigDesignMaterial, PmeigFormsMaterial, PmeigNavigationMaterial, PmeigDesignMaterial] });
|
|
130
|
+
}
|
|
131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.1", ngImport: i0, type: PmeigMaterial, decorators: [{
|
|
132
|
+
type: NgModule,
|
|
133
|
+
args: [{
|
|
134
|
+
imports: MATERIAL_MODULES,
|
|
135
|
+
exports: MATERIAL_MODULES,
|
|
136
|
+
}]
|
|
137
|
+
}] });
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* Generated bundle index. Do not edit.
|
|
141
|
+
*/
|
|
142
|
+
|
|
143
|
+
export { PmeigDesignMaterial, PmeigFormsMaterial, PmeigMaterial, PmeigNavigationMaterial, PmeigSimpleMaterial };
|
|
144
|
+
//# sourceMappingURL=pmeig-ngb-material.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pmeig-ngb-material.mjs","sources":["../../../projects/bootstrap/material/src/lib/b-material.module.ts","../../../projects/bootstrap/material/src/pmeig-ngb-material.ts"],"sourcesContent":["import { NgModule, Type } from '@angular/core';\nimport { FormMaterial } from '@pmeig/ngb-form';\nimport { InputMaterial } from '@pmeig/ngb-input';\nimport { LabelMaterial } from '@pmeig/ngb-label';\nimport { ButtonMaterial } from '@pmeig/ngb-button';\nimport { AccordionMaterial } from '@pmeig/ngb-accordion';\nimport { CollapseMaterial } from '@pmeig/ngb-collapse';\nimport { BadgeMaterial } from '@pmeig/ngb-badge';\nimport { AlertMaterial } from '@pmeig/ngb-alert';\nimport { SelectMaterial } from '@pmeig/ngb-select';\nimport { BreadcrumbMaterial } from '@pmeig/ngb-breadcrumb';\nimport { CardMaterial } from '@pmeig/ngb-card';\nimport { CarouselMaterial } from '@pmeig/ngb-carousel';\nimport { DropdownMaterial } from '@pmeig/ngb-dropdown';\nimport { ListMaterial } from '@pmeig/ngb-list';\nimport { OffcanvasMaterial } from '@pmeig/ngb-offcanvas';\nimport { NavbarMaterial } from '@pmeig/ngb-navbar';\nimport { PaginationMaterial } from '@pmeig/ngb-pagination';\nimport { ProgressMaterial } from '@pmeig/ngb-progress';\nimport { PopoverMaterial, TooltipMaterial } from '@pmeig/ngb-tooltip';\nimport { ToastMaterial } from '@pmeig/ngb-toast';\nimport { SpinnerMaterial } from '@pmeig/ngb-spinner';\nimport { TableMaterial } from '@pmeig/ngb-table';\n\nconst excludeModule = <T>(excludes: T[], modules: T[]) => {\n const imports = modules.filter(module => !excludes.includes(module));\n return {\n imports,\n exports: imports\n };\n}\n\nconst SIMPLE_MATERIAL_MODULES = [InputMaterial, LabelMaterial, ButtonMaterial, SelectMaterial];\n\n@NgModule({\n imports: SIMPLE_MATERIAL_MODULES,\n exports: SIMPLE_MATERIAL_MODULES,\n})\nexport class PmeigSimpleMaterial {\n}\n\ntype FORM_EXCLUDES = AlertMaterial | DropdownMaterial | ProgressMaterial | TooltipMaterial | PopoverMaterial | ToastMaterial | SpinnerMaterial;\nconst FORMS_MATERIAL_MODULES = [PmeigSimpleMaterial, FormMaterial, AlertMaterial, DropdownMaterial,\n ProgressMaterial, TooltipMaterial, PopoverMaterial, ToastMaterial, SpinnerMaterial];\n\n@NgModule({\n imports: FORMS_MATERIAL_MODULES,\n exports: FORMS_MATERIAL_MODULES,\n})\nexport class PmeigFormsMaterial {\n static excludes(...excludes: FORM_EXCLUDES[]) {\n return excludeModule(excludes, FORMS_MATERIAL_MODULES);\n }\n}\n\ntype NAVIGATION_EXCLUDES = NavbarMaterial | CollapseMaterial | OffcanvasMaterial | BreadcrumbMaterial | PaginationMaterial;\nconst NAVIGATION_MATERIAL_MODULES = [PmeigSimpleMaterial, NavbarMaterial, CollapseMaterial,\n OffcanvasMaterial, BreadcrumbMaterial, PaginationMaterial];\n\n@NgModule({\n imports: NAVIGATION_MATERIAL_MODULES,\n exports: NAVIGATION_MATERIAL_MODULES,\n})\nexport class PmeigNavigationMaterial {\n static excludes(...excludes: NAVIGATION_EXCLUDES[]) {\n return excludeModule(excludes, FORMS_MATERIAL_MODULES);\n }\n}\n\n\ntype DESIGN_EXCLUDES = CardMaterial | CarouselMaterial | AccordionMaterial | CollapseMaterial | ListMaterial | TableMaterial;\nconst DESIGN_MATERIAL_MODULES = [PmeigSimpleMaterial, CardMaterial, CarouselMaterial,\n AccordionMaterial, CollapseMaterial, ListMaterial, TableMaterial];\n\n@NgModule({\n imports: DESIGN_MATERIAL_MODULES,\n exports: DESIGN_MATERIAL_MODULES,\n})\nexport class PmeigDesignMaterial {\n static excludes(...excludes: DESIGN_EXCLUDES[]) {\n return excludeModule(excludes, FORMS_MATERIAL_MODULES);\n }\n}\n\nconst MATERIAL_MODULES = [PmeigFormsMaterial, PmeigNavigationMaterial, PmeigDesignMaterial,\n BadgeMaterial];\n\n@NgModule({\n imports: MATERIAL_MODULES,\n exports: MATERIAL_MODULES,\n})\nexport class PmeigMaterial {\n static excludes(excludes: {\n forms?: FORM_EXCLUDES[],\n navigation?: NAVIGATION_EXCLUDES[],\n design?: DESIGN_EXCLUDES[],\n default?: BadgeMaterial\n }) {\n const imports = [PmeigMaterial.exclude(excludes.forms, PmeigFormsMaterial),\n PmeigMaterial.exclude(excludes.navigation, PmeigNavigationMaterial),\n PmeigMaterial.exclude(excludes.design, PmeigDesignMaterial),\n ...[BadgeMaterial].filter(() => !excludes.default)];\n return {\n imports,\n exports: imports\n };\n }\n\n private static exclude<T>(excludes: T[] | undefined, module: Type<any> & {\n excludes(...excludes: T[]): any\n }): Type<any> {\n if (excludes) {\n return module.excludes(...excludes);\n }\n return module;\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Type } from '@angular/core';
|
|
3
|
+
import * as i19 from '@pmeig/ngb-accordion';
|
|
4
|
+
import { AccordionMaterial } from '@pmeig/ngb-accordion';
|
|
5
|
+
import * as i13 from '@pmeig/ngb-collapse';
|
|
6
|
+
import { CollapseMaterial } from '@pmeig/ngb-collapse';
|
|
7
|
+
import * as i22 from '@pmeig/ngb-badge';
|
|
8
|
+
import { BadgeMaterial } from '@pmeig/ngb-badge';
|
|
9
|
+
import * as i6 from '@pmeig/ngb-alert';
|
|
10
|
+
import { AlertMaterial } from '@pmeig/ngb-alert';
|
|
11
|
+
import * as i15 from '@pmeig/ngb-breadcrumb';
|
|
12
|
+
import { BreadcrumbMaterial } from '@pmeig/ngb-breadcrumb';
|
|
13
|
+
import * as i17 from '@pmeig/ngb-card';
|
|
14
|
+
import { CardMaterial } from '@pmeig/ngb-card';
|
|
15
|
+
import * as i18 from '@pmeig/ngb-carousel';
|
|
16
|
+
import { CarouselMaterial } from '@pmeig/ngb-carousel';
|
|
17
|
+
import * as i7 from '@pmeig/ngb-dropdown';
|
|
18
|
+
import { DropdownMaterial } from '@pmeig/ngb-dropdown';
|
|
19
|
+
import * as i20 from '@pmeig/ngb-list';
|
|
20
|
+
import { ListMaterial } from '@pmeig/ngb-list';
|
|
21
|
+
import * as i14 from '@pmeig/ngb-offcanvas';
|
|
22
|
+
import { OffcanvasMaterial } from '@pmeig/ngb-offcanvas';
|
|
23
|
+
import * as i12 from '@pmeig/ngb-navbar';
|
|
24
|
+
import { NavbarMaterial } from '@pmeig/ngb-navbar';
|
|
25
|
+
import * as i16 from '@pmeig/ngb-pagination';
|
|
26
|
+
import { PaginationMaterial } from '@pmeig/ngb-pagination';
|
|
27
|
+
import * as i8 from '@pmeig/ngb-progress';
|
|
28
|
+
import { ProgressMaterial } from '@pmeig/ngb-progress';
|
|
29
|
+
import * as i9 from '@pmeig/ngb-tooltip';
|
|
30
|
+
import { TooltipMaterial, PopoverMaterial } from '@pmeig/ngb-tooltip';
|
|
31
|
+
import * as i10 from '@pmeig/ngb-toast';
|
|
32
|
+
import { ToastMaterial } from '@pmeig/ngb-toast';
|
|
33
|
+
import * as i11 from '@pmeig/ngb-spinner';
|
|
34
|
+
import { SpinnerMaterial } from '@pmeig/ngb-spinner';
|
|
35
|
+
import * as i21 from '@pmeig/ngb-table';
|
|
36
|
+
import { TableMaterial } from '@pmeig/ngb-table';
|
|
37
|
+
import * as i1 from '@pmeig/ngb-input';
|
|
38
|
+
import * as i2 from '@pmeig/ngb-label';
|
|
39
|
+
import * as i3 from '@pmeig/ngb-button';
|
|
40
|
+
import * as i4 from '@pmeig/ngb-select';
|
|
41
|
+
import * as i5 from '@pmeig/ngb-form';
|
|
42
|
+
|
|
43
|
+
declare class PmeigSimpleMaterial {
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmeigSimpleMaterial, never>;
|
|
45
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PmeigSimpleMaterial, never, [typeof i1.InputMaterial, typeof i2.LabelMaterial, typeof i3.ButtonMaterial, typeof i4.SelectMaterial], [typeof i1.InputMaterial, typeof i2.LabelMaterial, typeof i3.ButtonMaterial, typeof i4.SelectMaterial]>;
|
|
46
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PmeigSimpleMaterial>;
|
|
47
|
+
}
|
|
48
|
+
type FORM_EXCLUDES = AlertMaterial | DropdownMaterial | ProgressMaterial | TooltipMaterial | PopoverMaterial | ToastMaterial | SpinnerMaterial;
|
|
49
|
+
declare class PmeigFormsMaterial {
|
|
50
|
+
static excludes(...excludes: FORM_EXCLUDES[]): {
|
|
51
|
+
imports: FORM_EXCLUDES[];
|
|
52
|
+
exports: FORM_EXCLUDES[];
|
|
53
|
+
};
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmeigFormsMaterial, never>;
|
|
55
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PmeigFormsMaterial, never, [typeof PmeigSimpleMaterial, typeof i5.FormMaterial, typeof i6.AlertMaterial, typeof i7.DropdownMaterial, typeof i8.ProgressMaterial, typeof i9.TooltipMaterial, typeof i9.PopoverMaterial, typeof i10.ToastMaterial, typeof i11.SpinnerMaterial], [typeof PmeigSimpleMaterial, typeof i5.FormMaterial, typeof i6.AlertMaterial, typeof i7.DropdownMaterial, typeof i8.ProgressMaterial, typeof i9.TooltipMaterial, typeof i9.PopoverMaterial, typeof i10.ToastMaterial, typeof i11.SpinnerMaterial]>;
|
|
56
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PmeigFormsMaterial>;
|
|
57
|
+
}
|
|
58
|
+
type NAVIGATION_EXCLUDES = NavbarMaterial | CollapseMaterial | OffcanvasMaterial | BreadcrumbMaterial | PaginationMaterial;
|
|
59
|
+
declare class PmeigNavigationMaterial {
|
|
60
|
+
static excludes(...excludes: NAVIGATION_EXCLUDES[]): {
|
|
61
|
+
imports: NAVIGATION_EXCLUDES[];
|
|
62
|
+
exports: NAVIGATION_EXCLUDES[];
|
|
63
|
+
};
|
|
64
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmeigNavigationMaterial, never>;
|
|
65
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PmeigNavigationMaterial, never, [typeof PmeigSimpleMaterial, typeof i12.NavbarMaterial, typeof i13.CollapseMaterial, typeof i14.OffcanvasMaterial, typeof i15.BreadcrumbMaterial, typeof i16.PaginationMaterial], [typeof PmeigSimpleMaterial, typeof i12.NavbarMaterial, typeof i13.CollapseMaterial, typeof i14.OffcanvasMaterial, typeof i15.BreadcrumbMaterial, typeof i16.PaginationMaterial]>;
|
|
66
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PmeigNavigationMaterial>;
|
|
67
|
+
}
|
|
68
|
+
type DESIGN_EXCLUDES = CardMaterial | CarouselMaterial | AccordionMaterial | CollapseMaterial | ListMaterial | TableMaterial;
|
|
69
|
+
declare class PmeigDesignMaterial {
|
|
70
|
+
static excludes(...excludes: DESIGN_EXCLUDES[]): {
|
|
71
|
+
imports: DESIGN_EXCLUDES[];
|
|
72
|
+
exports: DESIGN_EXCLUDES[];
|
|
73
|
+
};
|
|
74
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmeigDesignMaterial, never>;
|
|
75
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PmeigDesignMaterial, never, [typeof PmeigSimpleMaterial, typeof i17.CardMaterial, typeof i18.CarouselMaterial, typeof i19.AccordionMaterial, typeof i13.CollapseMaterial, typeof i20.ListMaterial, typeof i21.TableMaterial], [typeof PmeigSimpleMaterial, typeof i17.CardMaterial, typeof i18.CarouselMaterial, typeof i19.AccordionMaterial, typeof i13.CollapseMaterial, typeof i20.ListMaterial, typeof i21.TableMaterial]>;
|
|
76
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PmeigDesignMaterial>;
|
|
77
|
+
}
|
|
78
|
+
declare class PmeigMaterial {
|
|
79
|
+
static excludes(excludes: {
|
|
80
|
+
forms?: FORM_EXCLUDES[];
|
|
81
|
+
navigation?: NAVIGATION_EXCLUDES[];
|
|
82
|
+
design?: DESIGN_EXCLUDES[];
|
|
83
|
+
default?: BadgeMaterial;
|
|
84
|
+
}): {
|
|
85
|
+
imports: Type<any>[];
|
|
86
|
+
exports: Type<any>[];
|
|
87
|
+
};
|
|
88
|
+
private static exclude;
|
|
89
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmeigMaterial, never>;
|
|
90
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PmeigMaterial, never, [typeof PmeigFormsMaterial, typeof PmeigNavigationMaterial, typeof PmeigDesignMaterial, typeof i22.BadgeMaterial], [typeof PmeigFormsMaterial, typeof PmeigNavigationMaterial, typeof PmeigDesignMaterial, typeof i22.BadgeMaterial]>;
|
|
91
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PmeigMaterial>;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export { PmeigDesignMaterial, PmeigFormsMaterial, PmeigMaterial, PmeigNavigationMaterial, PmeigSimpleMaterial };
|
package/package.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pmeig/ngb-material",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^20.2.1",
|
|
6
|
+
"@angular/core": "^20.2.1"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"tslib": "^2.3.0",
|
|
10
|
+
"@pmeig/ngb-button": "^1.0.0-SNAPSHOT",
|
|
11
|
+
"@pmeig/ngb-form": "^1.0.0-SNAPSHOT",
|
|
12
|
+
"@pmeig/ngb-input": "^1.0.0-SNAPSHOT",
|
|
13
|
+
"@pmeig/ngb-label": "^1.0.0-SNAPSHOT",
|
|
14
|
+
"@pmeig/ngb-select": "^1.0.0-SNAPSHOT",
|
|
15
|
+
"@pmeig/ngb-accordion": "^1.0.0-SNAPSHOT",
|
|
16
|
+
"@pmeig/ngb-badge": "^1.0.0-SNAPSHOT",
|
|
17
|
+
"@pmeig/ngb-alert": "^1.0.0-SNAPSHOT",
|
|
18
|
+
"@pmeig/ngb-breadcrumb": "^1.0.0-SNAPSHOT",
|
|
19
|
+
"@pmeig/ngb-card": "^1.0.0-SNAPSHOT",
|
|
20
|
+
"@pmeig/ngb-carousel": "^1.0.0-SNAPSHOT",
|
|
21
|
+
"@pmeig/ngb-collapse": "^1.0.0-SNAPSHOT",
|
|
22
|
+
"@pmeig/ngb-dropdown": "^1.0.0-SNAPSHOT",
|
|
23
|
+
"@pmeig/ngb-list": "^1.0.0-SNAPSHOT",
|
|
24
|
+
"@pmeig/ngb-offcanvas": "^1.0.0-SNAPSHOT",
|
|
25
|
+
"@pmeig/ngb-navbar": "^1.0.0-SNAPSHOT",
|
|
26
|
+
"@pmeig/ngb-pagination": "^1.0.0-SNAPSHOT",
|
|
27
|
+
"@pmeig/ngb-progress": "^1.0.0-SNAPSHOT",
|
|
28
|
+
"@pmeig/ngb-tooltip": "^1.0.0-SNAPSHOT",
|
|
29
|
+
"@pmeig/ngb-toast": "^1.0.0-SNAPSHOT",
|
|
30
|
+
"@pmeig/ngb-spinner": "^1.0.0-SNAPSHOT",
|
|
31
|
+
"@pmeig/ngb-table": "^1.0.0-SNAPSHOT"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://github.com/pmeig/angular-material/tree/main/projects/bootstrap/material",
|
|
34
|
+
"repository": {
|
|
35
|
+
"url": "https://github.com/pmeig/angular-material"
|
|
36
|
+
},
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/pmeig/angular-material/issues",
|
|
39
|
+
"email": "pierrick.workspace@gmail.com"
|
|
40
|
+
},
|
|
41
|
+
"keywords": [
|
|
42
|
+
"angular",
|
|
43
|
+
"pmeig",
|
|
44
|
+
"ng",
|
|
45
|
+
"angular@20.2",
|
|
46
|
+
"bootstrap",
|
|
47
|
+
"bootstrap@5.8",
|
|
48
|
+
"material",
|
|
49
|
+
"form",
|
|
50
|
+
"input",
|
|
51
|
+
"label",
|
|
52
|
+
"select",
|
|
53
|
+
"accordion",
|
|
54
|
+
"badge",
|
|
55
|
+
"alert",
|
|
56
|
+
"breadcrumb",
|
|
57
|
+
"card",
|
|
58
|
+
"carousel",
|
|
59
|
+
"collapse",
|
|
60
|
+
"dropdown",
|
|
61
|
+
"list",
|
|
62
|
+
"offcanvas",
|
|
63
|
+
"navbar",
|
|
64
|
+
"pagination",
|
|
65
|
+
"progress",
|
|
66
|
+
"tooltip",
|
|
67
|
+
"popover",
|
|
68
|
+
"toast",
|
|
69
|
+
"spinner",
|
|
70
|
+
"table",
|
|
71
|
+
"button"
|
|
72
|
+
],
|
|
73
|
+
"license": "MIT",
|
|
74
|
+
"sideEffects": false,
|
|
75
|
+
"module": "fesm2022/pmeig-ngb-material.mjs",
|
|
76
|
+
"typings": "index.d.ts",
|
|
77
|
+
"exports": {
|
|
78
|
+
"./package.json": {
|
|
79
|
+
"default": "./package.json"
|
|
80
|
+
},
|
|
81
|
+
".": {
|
|
82
|
+
"types": "./index.d.ts",
|
|
83
|
+
"default": "./fesm2022/pmeig-ngb-material.mjs"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|