@sumaris-net/ngx-components 18.6.11 → 18.6.13
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/doc/changelog.md +8 -0
- package/esm2022/src/app/shared/image/gallery/image-gallery.component.mjs +11 -4
- package/esm2022/src/app/shared/image/gallery/testing/gallery.testing.mjs +1 -1
- package/fesm2022/sumaris-net.ngx-components.mjs +11 -4
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/image/gallery/image-gallery.component.d.ts +4 -1
- package/src/assets/manifest.json +1 -1
- package/src/theme/_mixins.scss +2 -0
package/package.json
CHANGED
|
@@ -49,8 +49,10 @@ export declare class AppImageGalleryComponent<T extends Image> implements OnInit
|
|
|
49
49
|
showToolbar: boolean;
|
|
50
50
|
showFabButton: boolean;
|
|
51
51
|
showTitle: boolean;
|
|
52
|
+
showAddTextButton: boolean;
|
|
52
53
|
showAddCardButton: boolean;
|
|
53
54
|
addButtonColor: AppColors;
|
|
55
|
+
addButtonText: string;
|
|
54
56
|
set dataSource(dataSource: TableDataSource<T, any, any, any>);
|
|
55
57
|
get dataSource(): TableDataSource<T, any, any, any>;
|
|
56
58
|
get enabled(): boolean;
|
|
@@ -95,7 +97,7 @@ export declare class AppImageGalleryComponent<T extends Image> implements OnInit
|
|
|
95
97
|
}): Promise<boolean>;
|
|
96
98
|
protected markForCheck(): void;
|
|
97
99
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppImageGalleryComponent<any>, [null, null, null, null, null, { optional: true; }]>;
|
|
98
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AppImageGalleryComponent<any>, "app-image-gallery", never, { "cardColor": { "alias": "cardColor"; "required": false; }; "debug": { "alias": "debug"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "mobile": { "alias": "mobile"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "confirmBeforeDelete": { "alias": "confirmBeforeDelete"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "showFabButton": { "alias": "showFabButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "showAddCardButton": { "alias": "showAddCardButton"; "required": false; }; "addButtonColor": { "alias": "addButtonColor"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; }, { "onBeforeDeleteRows": "onBeforeDeleteRows"; "onAfterAddRows": "onAfterAddRows"; "onAfterEditRow": "onAfterEditRow"; }, never, never, false, never>;
|
|
100
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppImageGalleryComponent<any>, "app-image-gallery", never, { "cardColor": { "alias": "cardColor"; "required": false; }; "debug": { "alias": "debug"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "mobile": { "alias": "mobile"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "confirmBeforeDelete": { "alias": "confirmBeforeDelete"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "showFabButton": { "alias": "showFabButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "showAddTextButton": { "alias": "showAddTextButton"; "required": false; }; "showAddCardButton": { "alias": "showAddCardButton"; "required": false; }; "addButtonColor": { "alias": "addButtonColor"; "required": false; }; "addButtonText": { "alias": "addButtonText"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; }, { "onBeforeDeleteRows": "onBeforeDeleteRows"; "onAfterAddRows": "onAfterAddRows"; "onAfterEditRow": "onAfterEditRow"; }, never, never, false, never>;
|
|
99
101
|
static ngAcceptInputType_debug: unknown;
|
|
100
102
|
static ngAcceptInputType_disabled: unknown;
|
|
101
103
|
static ngAcceptInputType_readOnly: unknown;
|
|
@@ -103,5 +105,6 @@ export declare class AppImageGalleryComponent<T extends Image> implements OnInit
|
|
|
103
105
|
static ngAcceptInputType_showToolbar: unknown;
|
|
104
106
|
static ngAcceptInputType_showFabButton: unknown;
|
|
105
107
|
static ngAcceptInputType_showTitle: unknown;
|
|
108
|
+
static ngAcceptInputType_showAddTextButton: unknown;
|
|
106
109
|
static ngAcceptInputType_showAddCardButton: unknown;
|
|
107
110
|
}
|
package/src/assets/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ngx-sumaris-components",
|
|
3
3
|
"short_name": "ngx-sumaris-components",
|
|
4
4
|
"manifest_version": 1,
|
|
5
|
-
"version": "18.6.
|
|
5
|
+
"version": "18.6.13",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|
package/src/theme/_mixins.scss
CHANGED
|
@@ -118,6 +118,8 @@
|
|
|
118
118
|
|
|
119
119
|
--expansion-panel-padding: var(--ion-padding);
|
|
120
120
|
--expansion-panel-header-padding: var(--ion-padding);
|
|
121
|
+
--mat-expansion-container-background-color: var(--ion-background-color);
|
|
122
|
+
--mat-expansion-container-text-color: var(--ion-text-color);
|
|
121
123
|
|
|
122
124
|
--mat-tab-link-height: #{$mat-tab-link-height};
|
|
123
125
|
--mat-tab-bar-height: #{$mat-tab-bar-height};
|