@rangertechnologies/ngnxt 2.1.185 → 2.1.187
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/environments/version.mjs +2 -2
- package/esm2022/lib/components/custom-dropdown/custom-dropdown.component.mjs +3 -3
- package/esm2022/lib/components/nxt-input/nxt-input.component.mjs +26 -3
- package/esm2022/lib/components/search-box/search-box.component.mjs +3 -4
- package/esm2022/lib/pages/booklet/booklet.component.mjs +2 -3
- package/fesm2022/rangertechnologies-ngnxt.mjs +31 -10
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/components/nxt-input/nxt-input.component.d.ts +5 -0
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.187.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.185.tgz +0 -0
|
@@ -3,6 +3,7 @@ import { AbstractControl, FormArray, FormControl, ValidationErrors, ValidatorFn
|
|
|
3
3
|
import { ChangeService } from '../../services/change.service';
|
|
4
4
|
import { DataService } from '../../services/data.service';
|
|
5
5
|
import { Subscription } from 'rxjs';
|
|
6
|
+
import { OwlDateTimeComponent } from '@danielmoncada/angular-datetime-picker';
|
|
6
7
|
import { QuillModules } from 'ngx-quill';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class NxtInput implements AfterViewInit {
|
|
@@ -69,6 +70,9 @@ export declare class NxtInput implements AfterViewInit {
|
|
|
69
70
|
dateTimePicker: any;
|
|
70
71
|
datePicker: any;
|
|
71
72
|
timePicker: any;
|
|
73
|
+
dtPicker: OwlDateTimeComponent<Date>;
|
|
74
|
+
dPicker: OwlDateTimeComponent<Date>;
|
|
75
|
+
tPicker: OwlDateTimeComponent<Date>;
|
|
72
76
|
inputRef: ElementRef;
|
|
73
77
|
inputs: FormArray<any>;
|
|
74
78
|
control: FormControl;
|
|
@@ -153,6 +157,7 @@ export declare class NxtInput implements AfterViewInit {
|
|
|
153
157
|
viewEditClick(ques: any): void;
|
|
154
158
|
saveChanges: (event?: CustomEvent) => void;
|
|
155
159
|
discardChanges: (event?: CustomEvent) => void;
|
|
160
|
+
openDatePicker(type: string): void;
|
|
156
161
|
static ɵfac: i0.ɵɵFactoryDeclaration<NxtInput, never>;
|
|
157
162
|
static ɵcmp: i0.ɵɵComponentDeclaration<NxtInput, "nxt-input", never, { "label": { "alias": "label"; "required": false; }; "labelFont": { "alias": "labelFont"; "required": false; }; "labelWeight": { "alias": "labelWeight"; "required": false; }; "inputWeight": { "alias": "inputWeight"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "inputValueSize": { "alias": "inputValueSize"; "required": false; }; "labelColor": { "alias": "labelColor"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "svgHeight": { "alias": "svgHeight"; "required": false; }; "svgWidth": { "alias": "svgWidth"; "required": false; }; "type": { "alias": "type"; "required": false; }; "inputIconRightSrc": { "alias": "inputIconRightSrc"; "required": false; }; "inputIconLeftSrc": { "alias": "inputIconLeftSrc"; "required": false; }; "required": { "alias": "required"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "errorMessages": { "alias": "errorMessages"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "inputBgColor": { "alias": "inputBgColor"; "required": false; }; "inputBorder": { "alias": "inputBorder"; "required": false; }; "placeholderColor": { "alias": "placeholderColor"; "required": false; }; "placeholderFont": { "alias": "placeholderFont"; "required": false; }; "placeholderWeight": { "alias": "placeholderWeight"; "required": false; }; "placeholderSize": { "alias": "placeholderSize"; "required": false; }; "inputTextColor": { "alias": "inputTextColor"; "required": false; }; "inputHeight": { "alias": "inputHeight"; "required": false; }; "inputWidth": { "alias": "inputWidth"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "inputBorderSize": { "alias": "inputBorderSize"; "required": false; }; "inputConfig": { "alias": "inputConfig"; "required": false; }; "confPassVal": { "alias": "confPassVal"; "required": false; }; "confPass": { "alias": "confPass"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "value": { "alias": "value"; "required": false; }; "question": { "alias": "question"; "required": false; }; "showSuggestion": { "alias": "showSuggestion"; "required": false; }; "ariaOwns": { "alias": "ariaOwns"; "required": false; }; "ariaHasPopup": { "alias": "ariaHasPopup"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "options": { "alias": "options"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "valueChange": "valueChange"; "inputValue": "inputValue"; "onBlur": "onBlur"; "onFocus": "onFocus"; "toggleEmit": "toggleEmit"; "clearInputEmit": "clearInputEmit"; "nativeInputRef": "nativeInputRef"; }, never, never, true, never>;
|
|
158
163
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|