@sumaris-net/ngx-components 0.26.2 → 0.26.3
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/sumaris-net.ngx-components.umd.js +114 -9
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +2 -2
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/doc/changelog.md +1 -0
- package/esm2015/src/app/shared/material/badge/badge-icon.directive.js +62 -0
- package/esm2015/src/app/shared/material/badge/badge-icon.module.js +23 -0
- package/esm2015/src/app/shared/material/badge/badge-icon.test.js +10 -0
- package/esm2015/src/app/shared/material/material.module.js +4 -2
- package/esm2015/src/app/shared/material/testing/material.testing.module.js +9 -2
- package/esm2015/src/app/shared/material/testing/material.testing.page.js +2 -2
- package/esm2015/sumaris-net.ngx-components.js +10 -7
- package/fesm2015/sumaris-net.ngx-components.js +99 -4
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/material/badge/badge-icon.directive.d.ts +15 -0
- package/src/app/shared/material/badge/badge-icon.module.d.ts +2 -0
- package/src/app/shared/material/badge/badge-icon.test.d.ts +2 -0
- package/sumaris-net.ngx-components.d.ts +9 -6
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { MatBadgeSize } from '@angular/material/badge';
|
|
3
|
+
import { PredefinedColors } from '@ionic/core';
|
|
4
|
+
import { ThemePalette } from '@angular/material/core';
|
|
5
|
+
export declare type MatBadgeFill = 'clear' | 'solid';
|
|
6
|
+
export declare class MatBadgeIconDirective implements OnInit {
|
|
7
|
+
private el;
|
|
8
|
+
size: MatBadgeSize;
|
|
9
|
+
color: PredefinedColors | ThemePalette | 'transparent';
|
|
10
|
+
fill: MatBadgeFill;
|
|
11
|
+
matIcon: string;
|
|
12
|
+
ionIcon: string;
|
|
13
|
+
constructor(el: ElementRef);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
}
|
|
@@ -2,11 +2,14 @@
|
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
4
|
export * from './public_api';
|
|
5
|
-
export { RegisterForm as
|
|
6
|
-
export { RegisterModal as
|
|
7
|
-
export { AccountValidatorService as
|
|
8
|
-
export { LocalSettingsValidatorService as
|
|
9
|
-
export { UserSettingsValidatorService as
|
|
10
|
-
export { isFocusableElement as
|
|
5
|
+
export { RegisterForm as ɵg } from './src/app/core/register/form/form-register';
|
|
6
|
+
export { RegisterModal as ɵi } from './src/app/core/register/modal/modal-register';
|
|
7
|
+
export { AccountValidatorService as ɵh } from './src/app/core/services/validator/account.validator';
|
|
8
|
+
export { LocalSettingsValidatorService as ɵk } from './src/app/core/services/validator/local-settings.validator';
|
|
9
|
+
export { UserSettingsValidatorService as ɵj } from './src/app/core/services/validator/user-settings.validator';
|
|
10
|
+
export { isFocusableElement as ɵe } from './src/app/shared/focusable';
|
|
11
|
+
export { MatBadgeIconDirective as ɵd } from './src/app/shared/material/badge/badge-icon.directive';
|
|
12
|
+
export { SharedMatBadgeIconModule as ɵc } from './src/app/shared/material/badge/badge-icon.module';
|
|
13
|
+
export { MatBadgeIconTestPage as ɵf } from './src/app/shared/material/badge/badge-icon.test';
|
|
11
14
|
export { MatNumpadDomService as ɵb } from './src/app/shared/material/numpad/numpad.dom-service';
|
|
12
15
|
export { CustomReuseStrategy as ɵa } from './src/app/shared/shared-routing.module';
|