@cauca-911/material 20.2.5 → 20.2.7-beta1
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/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { Clipboard } from '@angular/cdk/clipboard';
|
|
|
7
7
|
import { ComponentType } from '@angular/cdk/portal';
|
|
8
8
|
import * as rxjs from 'rxjs';
|
|
9
9
|
import { Observable, Subject } from 'rxjs';
|
|
10
|
+
import { FaIconLibrary } from '@fortawesome/angular-fontawesome';
|
|
10
11
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
11
12
|
import { MatAutocomplete, MatAutocompleteTrigger, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
12
13
|
import { MatSelect } from '@angular/material/select';
|
|
@@ -269,6 +270,7 @@ declare class IconComponent {
|
|
|
269
270
|
faIcon: string[];
|
|
270
271
|
image: string;
|
|
271
272
|
set icon(value: string);
|
|
273
|
+
constructor(library: FaIconLibrary);
|
|
272
274
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
273
275
|
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "cauca-icon", never, { "icon": { "alias": "icon"; "required": false; }; }, {}, never, never, true, never>;
|
|
274
276
|
}
|
|
@@ -348,7 +350,7 @@ declare class PasswordInputComponent implements ControlValueAccessor {
|
|
|
348
350
|
passwordControl: FormControl;
|
|
349
351
|
disabled: WritableSignal<boolean>;
|
|
350
352
|
showPassword: WritableSignal<boolean>;
|
|
351
|
-
inputType: i0.Signal<"
|
|
353
|
+
inputType: i0.Signal<"text" | "password">;
|
|
352
354
|
constructor();
|
|
353
355
|
writeValue(value: string): void;
|
|
354
356
|
registerOnChange(fn: any): void;
|
package/package.json
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cauca-911/material",
|
|
3
|
-
"version": "20.2.
|
|
3
|
+
"version": "20.2.7-beta1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=20.2.1",
|
|
6
6
|
"@angular/core": ">=20.2.1",
|
|
7
7
|
"@angular/material": ">=20.2.0",
|
|
8
|
-
"@fortawesome/angular-fontawesome": ">=2.0.0",
|
|
9
|
-
"@fortawesome/fontawesome-svg-core": ">=7.0.0",
|
|
10
8
|
"@cauca-911/core": ">=20.2.0",
|
|
11
9
|
"ngx-mat-select-search": ">=8.0.0",
|
|
12
|
-
"ngx-color-picker": ">=20.1.1"
|
|
10
|
+
"ngx-color-picker": ">=20.1.1",
|
|
11
|
+
"@fortawesome/angular-fontawesome": "^3.0.0",
|
|
12
|
+
"@fortawesome/fontawesome-common-types": "^7.0.0",
|
|
13
|
+
"@fortawesome/fontawesome-svg-core": "^7.0.0",
|
|
14
|
+
"@fortawesome/free-brands-svg-icons": "^7.0.0",
|
|
15
|
+
"@fortawesome/free-solid-svg-icons": "^7.0.0",
|
|
16
|
+
"@fortawesome/pro-light-svg-icons": "^7.0.0"
|
|
13
17
|
},
|
|
14
18
|
"homepage": "https://cauca.ca",
|
|
15
19
|
"license": "SEE LICENSE IN LICENSE",
|