ngx-vector-components 5.76.0 → 5.78.1
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/CHANGELOG.md +13 -0
- package/esm2022/lib/components/fields/button/button.component.mjs +1 -1
- package/esm2022/lib/components/fields/calendar-field/calendar-field.component.mjs +28 -4
- package/esm2022/lib/components/fields/checkbox-field/checkbox-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/currency-field/currency-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/dropdown-field/dropdown-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/filters/filters.component.mjs +1 -1
- package/esm2022/lib/components/fields/input-number-field/input-number-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/input-otp/input-otp.component.mjs +1 -1
- package/esm2022/lib/components/fields/input-switch-field/input-switch-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/multiselect-field/multiselect-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/percentage-field/percentage-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/radio-button-field/radio-button-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/range-value/range-value.component.mjs +1 -1
- package/esm2022/lib/components/fields/select-button-field/select-button-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/text-field/text-field.component.mjs +1 -1
- package/esm2022/lib/components/fields/textarea-field/textarea-field.component.mjs +1 -1
- package/esm2022/lib/models/profile.model.mjs +3 -1
- package/fesm2022/ngx-vector-components.mjs +43 -17
- package/fesm2022/ngx-vector-components.mjs.map +1 -1
- package/lib/components/fields/calendar-field/calendar-field.component.d.ts +10 -1
- package/lib/models/profile.model.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
1
2
|
import { ModalService } from '../../../services';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class CalendarComponent {
|
|
@@ -15,6 +16,14 @@ export declare class CalendarComponent {
|
|
|
15
16
|
showTime: boolean;
|
|
16
17
|
showSeconds: boolean;
|
|
17
18
|
stepMinute: number;
|
|
19
|
+
stepHour: number;
|
|
20
|
+
stepSecond: number;
|
|
21
|
+
timeOnly: boolean;
|
|
22
|
+
hourFormat: string;
|
|
23
|
+
onFocus: EventEmitter<Event>;
|
|
24
|
+
onBlur: EventEmitter<Event>;
|
|
25
|
+
onInput: EventEmitter<Event>;
|
|
26
|
+
onSelect: EventEmitter<Date>;
|
|
18
27
|
get placeholder(): string;
|
|
19
28
|
keyFilter: string;
|
|
20
29
|
constructor(modalService: ModalService);
|
|
@@ -22,5 +31,5 @@ export declare class CalendarComponent {
|
|
|
22
31
|
onShowCalendar(): void;
|
|
23
32
|
onHideCalendar(): void;
|
|
24
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "vector-calendar-field", never, { "isRequired": { "alias": "isRequired"; "required": false; }; "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showCalendarOnFocus": { "alias": "showCalendarOnFocus"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "defaultDate": { "alias": "defaultDate"; "required": false; }; "hiddenErrorMessage": { "alias": "hiddenErrorMessage"; "required": false; }; "showTime": { "alias": "showTime"; "required": false; }; "showSeconds": { "alias": "showSeconds"; "required": false; }; "stepMinute": { "alias": "stepMinute"; "required": false; }; }, {}, never, never, false, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "vector-calendar-field", never, { "isRequired": { "alias": "isRequired"; "required": false; }; "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showCalendarOnFocus": { "alias": "showCalendarOnFocus"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "defaultDate": { "alias": "defaultDate"; "required": false; }; "hiddenErrorMessage": { "alias": "hiddenErrorMessage"; "required": false; }; "showTime": { "alias": "showTime"; "required": false; }; "showSeconds": { "alias": "showSeconds"; "required": false; }; "stepMinute": { "alias": "stepMinute"; "required": false; }; "stepHour": { "alias": "stepHour"; "required": false; }; "stepSecond": { "alias": "stepSecond"; "required": false; }; "timeOnly": { "alias": "timeOnly"; "required": false; }; "hourFormat": { "alias": "hourFormat"; "required": false; }; }, { "onFocus": "onFocus"; "onBlur": "onBlur"; "onInput": "onInput"; "onSelect": "onSelect"; }, never, never, false, never>;
|
|
26
35
|
}
|
|
@@ -496,5 +496,7 @@ export declare enum ProfileModuleActionType {
|
|
|
496
496
|
SAVE_CLIENT_ORDER_TRACKING = "Save Client Order Tracking",
|
|
497
497
|
SHOW_CLIENT_ORDER_TRACKING = "Show Client Order Tracking",
|
|
498
498
|
SHOW_PARAMETER_ORDER_TRACKING = "Show Parameter Order Tracking",
|
|
499
|
-
SAVE_PARAMETER_ORDER_TRACKING = "Save Parameter Order Tracking"
|
|
499
|
+
SAVE_PARAMETER_ORDER_TRACKING = "Save Parameter Order Tracking",
|
|
500
|
+
SHOW_PARAMETERS_MONITORING = "Show Parameters Monitoring",
|
|
501
|
+
ADD_PARAMETERS_MONITORING = "Add Parameters Monitoring"
|
|
500
502
|
}
|