@unipin/angular-applet 18.6.9 → 18.6.12
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/components/buttons/group/btn-group.component.mjs +8 -10
- package/esm2022/lib/components/containers/column-container/column-container.component.mjs +3 -3
- package/esm2022/lib/components/filter/filter.component.mjs +3 -3
- package/esm2022/lib/components/filter/interfaces/filter-field.interface.mjs +1 -1
- package/esm2022/lib/components/forms/date/form-date.component.mjs +8 -4
- package/fesm2022/unipin-angular-applet.mjs +18 -16
- package/fesm2022/unipin-angular-applet.mjs.map +1 -1
- package/lib/components/buttons/group/btn-group.component.d.ts +3 -3
- package/lib/components/filter/interfaces/filter-field.interface.d.ts +1 -0
- package/lib/components/forms/date/form-date.component.d.ts +3 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SimpleChanges } from '@angular/core';
|
|
1
|
+
import { InputSignal, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { PopoverController } from '@ionic/angular';
|
|
3
3
|
import { ButtonGroupConfig } from './interfaces/btn-group-config.interface';
|
|
4
4
|
import { ButtonLoadingComponent } from '../loading/btn-loading.component';
|
|
@@ -6,7 +6,7 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
export declare class ButtonGroupComponent {
|
|
7
7
|
id: string;
|
|
8
8
|
protected readonly popoverCtrl: PopoverController;
|
|
9
|
-
config: ButtonGroupConfig[]
|
|
9
|
+
readonly config: InputSignal<ButtonGroupConfig[]>;
|
|
10
10
|
protected isHidden: boolean;
|
|
11
11
|
activeIndex: number;
|
|
12
12
|
constructor(id: string, popoverCtrl: PopoverController);
|
|
@@ -14,5 +14,5 @@ export declare class ButtonGroupComponent {
|
|
|
14
14
|
clickBtn(b: ButtonLoadingComponent): void;
|
|
15
15
|
change(i: number): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonGroupComponent, [{ attribute: "id"; }, null]>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonGroupComponent, "up-btn-group", never, { "config": { "alias": "config"; "required": true; }; }, {}, never, never, true, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonGroupComponent, "up-btn-group", never, { "config": { "alias": "config"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
18
18
|
}
|
|
@@ -9,6 +9,8 @@ export declare class FormDateComponent implements ControlValueAccessor, Validato
|
|
|
9
9
|
required: boolean;
|
|
10
10
|
disabled: boolean;
|
|
11
11
|
presentation: 'date' | 'date-time';
|
|
12
|
+
minDate?: string;
|
|
13
|
+
maxDate?: string;
|
|
12
14
|
isTouched: boolean;
|
|
13
15
|
value: string;
|
|
14
16
|
localValue: string;
|
|
@@ -26,5 +28,5 @@ export declare class FormDateComponent implements ControlValueAccessor, Validato
|
|
|
26
28
|
validate(control: AbstractControl): ValidationErrors | null;
|
|
27
29
|
changeDate({ detail: { value } }: any): void;
|
|
28
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormDateComponent, [{ attribute: "name"; }, { attribute: "placeholder"; }, null]>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormDateComponent, "up-date", never, { "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "presentation": { "alias": "presentation"; "required": false; }; }, {}, never, ["[icon]"], true, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormDateComponent, "up-date", never, { "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "presentation": { "alias": "presentation"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; }, {}, never, ["[icon]"], true, never>;
|
|
30
32
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unipin/angular-applet",
|
|
3
|
-
"version": "18.6.
|
|
3
|
+
"version": "18.6.12",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"homepage": "https://backoffice.unipin.com/",
|
|
6
6
|
"description": "Angular specific wrappers for UniPin applet",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"tslib": "^2.3.0",
|
|
19
|
-
"angular-split": "
|
|
19
|
+
"angular-split": "18.x.x",
|
|
20
20
|
"@angular/elements": "18.x.x",
|
|
21
21
|
"@ng-select/ng-select": "13.x.x",
|
|
22
22
|
"@ag-grid-community/core": "31.x.x",
|