@cauca-911/material 16.0.0 → 17.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/esm2022/lib/cauca-input-file/cauca-input-file.component.mjs +10 -11
- package/esm2022/lib/cauca-input-multiple-langue/cauca-input-multiple-langue.component.mjs +5 -6
- package/esm2022/lib/cauca-material.component.mjs +4 -6
- package/esm2022/lib/cauca-material.module.mjs +8 -4
- package/esm2022/lib/cauca-material.service.mjs +3 -4
- package/esm2022/lib/cauca-menu-sidebar/cauca-menu-sidebar.component.mjs +5 -6
- package/esm2022/lib/cauca-menu-vertical/cauca-menu-vertical.component.mjs +8 -14
- package/esm2022/lib/cauca-simple-dialog/cauca-simple-dialog.component.mjs +6 -6
- package/esm2022/lib/cauca-slideshow/cauca-slideshow.component.mjs +4 -3
- package/fesm2022/cauca-911-material.mjs +46 -54
- package/fesm2022/cauca-911-material.mjs.map +1 -1
- package/lib/cauca-material.component.d.ts +1 -4
- package/lib/cauca-material.module.d.ts +2 -1
- package/lib/cauca-material.service.d.ts +0 -1
- package/lib/cauca-menu-sidebar/cauca-menu-sidebar.component.d.ts +3 -4
- package/lib/cauca-menu-vertical/cauca-menu-vertical.component.d.ts +2 -3
- package/lib/cauca-simple-dialog/cauca-simple-dialog.component.d.ts +1 -3
- package/lib/cauca-slideshow/cauca-slideshow.component.d.ts +0 -1
- package/package.json +7 -7
|
@@ -15,8 +15,9 @@ import * as i13 from "@angular/material/form-field";
|
|
|
15
15
|
import * as i14 from "@angular/material/icon";
|
|
16
16
|
import * as i15 from "@angular/material/input";
|
|
17
17
|
import * as i16 from "@angular/material/tabs";
|
|
18
|
+
import * as i17 from "@angular/material/dialog";
|
|
18
19
|
export declare class CaucaMaterialModule {
|
|
19
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaucaMaterialModule, never>;
|
|
20
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CaucaMaterialModule, [typeof i1.CaucaMaterialComponent, typeof i2.CaucaInputFileComponent, typeof i3.CaucaInputMultipleLangueComponent, typeof i4.CaucaMenuSidebarComponent, typeof i5.CaucaMenuVerticalComponent, typeof i6.CaucaSimpleDialogComponent, typeof i7.CaucaSlideshowComponent], [typeof i8.CommonModule, typeof i9.CaucaCoreForChildModule, typeof i10.FontAwesomeModule, typeof i11.FormsModule, typeof i11.ReactiveFormsModule, typeof i12.MatButtonModule, typeof i13.MatFormFieldModule, typeof i14.MatIconModule, typeof i15.MatInputModule, typeof i16.MatTabsModule], [typeof i1.CaucaMaterialComponent, typeof i2.CaucaInputFileComponent, typeof i3.CaucaInputMultipleLangueComponent, typeof i4.CaucaMenuSidebarComponent, typeof i5.CaucaMenuVerticalComponent, typeof i6.CaucaSimpleDialogComponent, typeof i7.CaucaSlideshowComponent]>;
|
|
21
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CaucaMaterialModule, [typeof i1.CaucaMaterialComponent, typeof i2.CaucaInputFileComponent, typeof i3.CaucaInputMultipleLangueComponent, typeof i4.CaucaMenuSidebarComponent, typeof i5.CaucaMenuVerticalComponent, typeof i6.CaucaSimpleDialogComponent, typeof i7.CaucaSlideshowComponent], [typeof i8.CommonModule, typeof i9.CaucaCoreForChildModule, typeof i10.FontAwesomeModule, typeof i11.FormsModule, typeof i11.ReactiveFormsModule, typeof i12.MatButtonModule, typeof i13.MatFormFieldModule, typeof i14.MatIconModule, typeof i15.MatInputModule, typeof i16.MatTabsModule, typeof i17.MatDialogModule], [typeof i1.CaucaMaterialComponent, typeof i2.CaucaInputFileComponent, typeof i3.CaucaInputMultipleLangueComponent, typeof i4.CaucaMenuSidebarComponent, typeof i5.CaucaMenuVerticalComponent, typeof i6.CaucaSimpleDialogComponent, typeof i7.CaucaSlideshowComponent]>;
|
|
21
22
|
static ɵinj: i0.ɵɵInjectorDeclaration<CaucaMaterialModule>;
|
|
22
23
|
}
|
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
import { ElementRef
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
2
|
import { MenuItem } from '../shared/models/menu-item';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CaucaMenuSidebarComponent
|
|
4
|
+
export declare class CaucaMenuSidebarComponent {
|
|
5
5
|
menuItems: MenuItem[];
|
|
6
6
|
version: string;
|
|
7
7
|
private hostElement;
|
|
8
8
|
private keepMenuExpanded;
|
|
9
9
|
constructor(element: ElementRef);
|
|
10
|
-
onResize(
|
|
11
|
-
ngOnInit(): void;
|
|
10
|
+
onResize(_e: any): void;
|
|
12
11
|
onMenuItemClick(): void;
|
|
13
12
|
hideOnMobile(): void;
|
|
14
13
|
showOnMobile(): void;
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
import { EventEmitter
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { MenuItem } from '../shared/models/menu-item';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CaucaMenuVerticalComponent
|
|
5
|
+
export declare class CaucaMenuVerticalComponent {
|
|
6
6
|
private router;
|
|
7
7
|
itemClick: EventEmitter<any>;
|
|
8
8
|
menuItems: MenuItem[];
|
|
9
9
|
constructor(router: Router);
|
|
10
|
-
ngOnInit(): void;
|
|
11
10
|
goTo(path: string, e: any): void;
|
|
12
11
|
private selectActiveRoute;
|
|
13
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaucaMenuVerticalComponent, never>;
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
1
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
2
|
import { SimpleDialogData } from '../shared/models/simple-dialog-data';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CaucaSimpleDialogComponent
|
|
4
|
+
export declare class CaucaSimpleDialogComponent {
|
|
6
5
|
private dialogRef;
|
|
7
6
|
data: SimpleDialogData;
|
|
8
7
|
constructor(dialogRef: MatDialogRef<CaucaSimpleDialogComponent>, data: SimpleDialogData);
|
|
9
|
-
ngOnInit(): void;
|
|
10
8
|
onClick(buttonIndex: number): void;
|
|
11
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<CaucaSimpleDialogComponent, never>;
|
|
12
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<CaucaSimpleDialogComponent, "cauca-simple-dialog", never, {}, {}, never, never, false, never>;
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cauca-911/material",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.0.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": ">=
|
|
6
|
-
"@angular/core": ">=
|
|
7
|
-
"@angular/material": ">=
|
|
8
|
-
"@fortawesome/angular-fontawesome": ">=0.
|
|
9
|
-
"@fortawesome/fontawesome-svg-core": ">=6.
|
|
5
|
+
"@angular/common": ">=17.0.0",
|
|
6
|
+
"@angular/core": ">=17.0.0",
|
|
7
|
+
"@angular/material": ">=17.0.0",
|
|
8
|
+
"@fortawesome/angular-fontawesome": ">=0.14.0",
|
|
9
|
+
"@fortawesome/fontawesome-svg-core": ">=6.5.0",
|
|
10
10
|
"@cauca-911/core": ">=16.0.0"
|
|
11
11
|
},
|
|
12
12
|
"homepage": "https://cauca.ca",
|
|
13
13
|
"license": "SEE LICENSE IN LICENSE",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"tslib": ">=2.
|
|
15
|
+
"tslib": ">=2.6.2"
|
|
16
16
|
},
|
|
17
17
|
"keywords": [
|
|
18
18
|
"CAUCA",
|