novo-elements 8.3.1-next.1 → 8.4.0-next.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/addons/ace-editor/AceEditor.d.ts +4 -2
- package/addons/code-editor/CodeEditor.d.ts +31 -0
- package/addons/code-editor/CodeEditor.module.d.ts +9 -0
- package/addons/code-editor/CodeEditor.scss +5 -0
- package/addons/code-editor/index.d.ts +2 -0
- package/addons/code-editor/novo-elements-addons-code-editor.d.ts +5 -0
- package/addons/code-editor/package.json +10 -0
- package/addons/index.d.ts +1 -0
- package/elements/aside/aside.component.scss +1 -1
- package/elements/calendar/Calendar.module.d.ts +2 -3
- package/elements/checkbox/CheckList.scss +1 -1
- package/elements/checkbox/Checkbox.scss +1 -1
- package/elements/common/overlay/Overlay.d.ts +1 -0
- package/elements/date-picker/DatePicker.module.d.ts +2 -2
- package/elements/date-picker/DatePickerInput.d.ts +8 -5
- package/elements/date-picker/MultiDateInput.d.ts +0 -1
- package/elements/date-time-picker/DateTimePicker.module.d.ts +2 -3
- package/elements/drag-drop/drag-drop-box.d.ts +45 -0
- package/elements/drag-drop/drag-drop.module.d.ts +7 -0
- package/elements/drag-drop/index.d.ts +2 -0
- package/elements/drag-drop/novo-elements-elements-drag-drop.d.ts +5 -0
- package/elements/drag-drop/package.json +10 -0
- package/elements/field/formats/date-time-format.d.ts +2 -2
- package/elements/form/Control.d.ts +9 -6
- package/elements/form/ControlTemplates.d.ts +1 -1
- package/elements/form/Form.module.d.ts +6 -6
- package/elements/form/controls/code-editor/CodeEditorControl.d.ts +5 -0
- package/elements/form/controls/code-editor/index.d.ts +1 -0
- package/elements/form/controls/index.d.ts +2 -1
- package/elements/form/extras/FormExtras.module.d.ts +4 -4
- package/elements/form/extras/file/FileInput.d.ts +15 -16
- package/elements/form/extras/file/FileInput.scss +58 -30
- package/elements/index.d.ts +1 -0
- package/elements/query-builder/condition-builder/condition-builder.component.scss +1 -1
- package/elements/query-builder/condition-definitions/address-condition.definition.d.ts +1 -1
- package/elements/select-search/select-search.component.scss +1 -1
- package/elements/table/Table.module.d.ts +5 -6
- package/elements/time-picker/TimePicker.d.ts +2 -3
- package/elements/time-picker/TimePicker.module.d.ts +3 -4
- package/elements/time-picker/TimePickerInput.d.ts +0 -1
- package/esm2020/addons/ace-editor/AceEditor.mjs +8 -4
- package/esm2020/addons/ckeditor/CKEditor.mjs +8 -1
- package/esm2020/addons/code-editor/CodeEditor.mjs +129 -0
- package/esm2020/addons/code-editor/CodeEditor.module.mjs +19 -0
- package/esm2020/addons/code-editor/index.mjs +3 -0
- package/esm2020/addons/code-editor/novo-elements-addons-code-editor.mjs +5 -0
- package/esm2020/addons/index.mjs +2 -1
- package/esm2020/elements/calendar/Calendar.module.mjs +5 -7
- package/esm2020/elements/calendar/calendar.component.mjs +3 -3
- package/esm2020/elements/calendar/month-select/month-select.component.mjs +3 -3
- package/esm2020/elements/calendar/month-view/month-view.component.mjs +3 -3
- package/esm2020/elements/calendar/year-select/year-select.component.mjs +3 -3
- package/esm2020/elements/common/overlay/Overlay.mjs +11 -5
- package/esm2020/elements/date-picker/DatePicker.module.mjs +6 -6
- package/esm2020/elements/date-picker/DatePickerInput.mjs +50 -29
- package/esm2020/elements/date-picker/DateRangeInput.mjs +10 -16
- package/esm2020/elements/date-picker/MultiDateInput.mjs +1 -17
- package/esm2020/elements/date-time-picker/DateTimePicker.module.mjs +4 -5
- package/esm2020/elements/drag-drop/drag-drop-box.mjs +224 -0
- package/esm2020/elements/drag-drop/drag-drop.module.mjs +16 -0
- package/esm2020/elements/drag-drop/index.mjs +3 -0
- package/esm2020/elements/drag-drop/novo-elements-elements-drag-drop.mjs +5 -0
- package/esm2020/elements/field/formats/date-format.mjs +5 -5
- package/esm2020/elements/field/formats/date-range-format.mjs +5 -5
- package/esm2020/elements/field/formats/date-time-format.mjs +12 -12
- package/esm2020/elements/field/formats/time-format.mjs +6 -6
- package/esm2020/elements/form/Control.mjs +20 -8
- package/esm2020/elements/form/ControlTemplates.mjs +54 -27
- package/esm2020/elements/form/Form.module.mjs +12 -13
- package/esm2020/elements/form/NovoFormControl.mjs +1 -2
- package/esm2020/elements/form/controls/code-editor/CodeEditorControl.mjs +9 -0
- package/esm2020/elements/form/controls/code-editor/index.mjs +2 -0
- package/esm2020/elements/form/controls/index.mjs +3 -2
- package/esm2020/elements/form/controls/timezone/TimezoneControl.mjs +2 -2
- package/esm2020/elements/form/extras/FormExtras.module.mjs +8 -9
- package/esm2020/elements/form/extras/file/FileInput.mjs +38 -261
- package/esm2020/elements/index.mjs +2 -1
- package/esm2020/elements/query-builder/condition-definitions/address-condition.definition.mjs +2 -2
- package/esm2020/elements/table/Table.module.mjs +1 -6
- package/esm2020/elements/time-picker/TimePicker.mjs +5 -6
- package/esm2020/elements/time-picker/TimePicker.module.mjs +4 -5
- package/esm2020/elements/time-picker/TimePickerInput.mjs +3 -65
- package/esm2020/index.mjs +1 -1
- package/esm2020/novo-elements.module.mjs +9 -3
- package/esm2020/novo-elements.providers.mjs +2 -2
- package/esm2020/services/date-format/DateFormat.mjs +153 -47
- package/esm2020/services/global/global.service.mjs +7 -1
- package/esm2020/utils/date/Date.mjs +1 -1
- package/esm2020/utils/date/index.mjs +3 -2
- package/esm2020/utils/date/timezone-support.mjs +87 -0
- package/fesm2015/novo-elements-addons-ace-editor.mjs +7 -3
- package/fesm2015/novo-elements-addons-ace-editor.mjs.map +1 -1
- package/fesm2015/novo-elements-addons-ckeditor.mjs +7 -0
- package/fesm2015/novo-elements-addons-ckeditor.mjs.map +1 -1
- package/fesm2015/novo-elements-addons-code-editor.mjs +150 -0
- package/fesm2015/novo-elements-addons-code-editor.mjs.map +1 -0
- package/fesm2015/novo-elements-addons.mjs +155 -5
- package/fesm2015/novo-elements-addons.mjs.map +1 -1
- package/fesm2015/novo-elements-elements-calendar.mjs +12 -13
- package/fesm2015/novo-elements-elements-calendar.mjs.map +1 -1
- package/fesm2015/novo-elements-elements-common.mjs +10 -2
- package/fesm2015/novo-elements-elements-common.mjs.map +1 -1
- package/fesm2015/novo-elements-elements-date-picker.mjs +64 -62
- package/fesm2015/novo-elements-elements-date-picker.mjs.map +1 -1
- package/fesm2015/novo-elements-elements-date-time-picker.mjs +3 -4
- package/fesm2015/novo-elements-elements-date-time-picker.mjs.map +1 -1
- package/fesm2015/novo-elements-elements-drag-drop.mjs +245 -0
- package/fesm2015/novo-elements-elements-drag-drop.mjs.map +1 -0
- package/fesm2015/novo-elements-elements-field.mjs +19 -19
- package/fesm2015/novo-elements-elements-field.mjs.map +1 -1
- package/fesm2015/novo-elements-elements-form.mjs +124 -300
- package/fesm2015/novo-elements-elements-form.mjs.map +1 -1
- package/fesm2015/novo-elements-elements-query-builder.mjs.map +1 -1
- package/fesm2015/novo-elements-elements-table.mjs +0 -4
- package/fesm2015/novo-elements-elements-table.mjs.map +1 -1
- package/fesm2015/novo-elements-elements-time-picker.mjs +7 -71
- package/fesm2015/novo-elements-elements-time-picker.mjs.map +1 -1
- package/fesm2015/novo-elements-elements.mjs +1 -0
- package/fesm2015/novo-elements-elements.mjs.map +1 -1
- package/fesm2015/novo-elements-services.mjs +158 -46
- package/fesm2015/novo-elements-services.mjs.map +1 -1
- package/fesm2015/novo-elements-utils.mjs +88 -1
- package/fesm2015/novo-elements-utils.mjs.map +1 -1
- package/fesm2015/novo-elements.mjs +8 -2
- package/fesm2015/novo-elements.mjs.map +1 -1
- package/fesm2020/novo-elements-addons-ace-editor.mjs +7 -3
- package/fesm2020/novo-elements-addons-ace-editor.mjs.map +1 -1
- package/fesm2020/novo-elements-addons-ckeditor.mjs +7 -0
- package/fesm2020/novo-elements-addons-ckeditor.mjs.map +1 -1
- package/fesm2020/novo-elements-addons-code-editor.mjs +150 -0
- package/fesm2020/novo-elements-addons-code-editor.mjs.map +1 -0
- package/fesm2020/novo-elements-addons.mjs +155 -5
- package/fesm2020/novo-elements-addons.mjs.map +1 -1
- package/fesm2020/novo-elements-elements-calendar.mjs +12 -13
- package/fesm2020/novo-elements-elements-calendar.mjs.map +1 -1
- package/fesm2020/novo-elements-elements-common.mjs +8 -2
- package/fesm2020/novo-elements-elements-common.mjs.map +1 -1
- package/fesm2020/novo-elements-elements-date-picker.mjs +62 -62
- package/fesm2020/novo-elements-elements-date-picker.mjs.map +1 -1
- package/fesm2020/novo-elements-elements-date-time-picker.mjs +3 -4
- package/fesm2020/novo-elements-elements-date-time-picker.mjs.map +1 -1
- package/fesm2020/novo-elements-elements-drag-drop.mjs +244 -0
- package/fesm2020/novo-elements-elements-drag-drop.mjs.map +1 -0
- package/fesm2020/novo-elements-elements-field.mjs +19 -19
- package/fesm2020/novo-elements-elements-field.mjs.map +1 -1
- package/fesm2020/novo-elements-elements-form.mjs +125 -302
- package/fesm2020/novo-elements-elements-form.mjs.map +1 -1
- package/fesm2020/novo-elements-elements-query-builder.mjs.map +1 -1
- package/fesm2020/novo-elements-elements-table.mjs +0 -4
- package/fesm2020/novo-elements-elements-table.mjs.map +1 -1
- package/fesm2020/novo-elements-elements-time-picker.mjs +7 -71
- package/fesm2020/novo-elements-elements-time-picker.mjs.map +1 -1
- package/fesm2020/novo-elements-elements.mjs +1 -0
- package/fesm2020/novo-elements-elements.mjs.map +1 -1
- package/fesm2020/novo-elements-services.mjs +158 -46
- package/fesm2020/novo-elements-services.mjs.map +1 -1
- package/fesm2020/novo-elements-utils.mjs +88 -1
- package/fesm2020/novo-elements-utils.mjs.map +1 -1
- package/fesm2020/novo-elements.mjs +8 -2
- package/fesm2020/novo-elements.mjs.map +1 -1
- package/novo-elements.module.d.ts +1 -1
- package/novo-elements.scss +1 -1
- package/package.json +23 -4
- package/services/date-format/DateFormat.d.ts +62 -3
- package/services/global/global.service.d.ts +3 -0
- package/styles/content/root.scss +1 -1
- package/styles/themes/light-test.scss +1 -1
- package/styles/themes/light.scss +1 -1
- package/styles/variables.scss +1 -1
- package/utils/date/index.d.ts +2 -1
- package/utils/date/timezone-support.d.ts +5 -0
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import 'brace/
|
|
3
|
+
import 'brace/ext/language_tools.js';
|
|
4
4
|
import 'brace/mode/javascript';
|
|
5
5
|
import 'brace/theme/chrome';
|
|
6
|
-
import 'brace/ext/language_tools.js';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated Use NovoCodeEditor instead
|
|
9
|
+
*/
|
|
8
10
|
export declare class NovoAceEditor implements ControlValueAccessor, OnInit, OnDestroy {
|
|
9
11
|
private elementRef;
|
|
10
12
|
set theme(theme: any);
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { EditorView } from '@codemirror/view';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class NovoCodeEditor implements ControlValueAccessor, OnInit, OnDestroy, AfterViewInit {
|
|
6
|
+
private elementRef;
|
|
7
|
+
theme: string;
|
|
8
|
+
lineNumbers: boolean;
|
|
9
|
+
name: string;
|
|
10
|
+
blur: EventEmitter<any>;
|
|
11
|
+
focus: EventEmitter<any>;
|
|
12
|
+
private changed;
|
|
13
|
+
mode: string;
|
|
14
|
+
editorRoot: ElementRef<HTMLElement>;
|
|
15
|
+
editorView: EditorView;
|
|
16
|
+
initialValue: string;
|
|
17
|
+
private disabled;
|
|
18
|
+
constructor(elementRef: ElementRef);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
ngOnDestroy(): void;
|
|
21
|
+
ngAfterViewInit(): void;
|
|
22
|
+
createEditorView(): void;
|
|
23
|
+
onFocus(): void;
|
|
24
|
+
onBlur(): void;
|
|
25
|
+
writeValue(value: any): void;
|
|
26
|
+
registerOnChange(fn: any): void;
|
|
27
|
+
registerOnTouched(fn: any): void;
|
|
28
|
+
setDisabledState(isDisabled: boolean): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NovoCodeEditor, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NovoCodeEditor, "novo-code-editor", never, { "theme": "theme"; "lineNumbers": "lineNumbers"; "name": "name"; "mode": "mode"; }, { "blur": "blur"; "focus": "focus"; }, never, never>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./CodeEditor";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
export declare class NovoCodeEditorModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NovoCodeEditorModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoCodeEditorModule, [typeof i1.NovoCodeEditor], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.NovoCodeEditor]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NovoCodeEditorModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"module": "../../fesm2015/novo-elements-addons-code-editor.mjs",
|
|
3
|
+
"es2020": "../../fesm2020/novo-elements-addons-code-editor.mjs",
|
|
4
|
+
"esm2020": "../../esm2020/addons/code-editor/novo-elements-addons-code-editor.mjs",
|
|
5
|
+
"fesm2020": "../../fesm2020/novo-elements-addons-code-editor.mjs",
|
|
6
|
+
"fesm2015": "../../fesm2015/novo-elements-addons-code-editor.mjs",
|
|
7
|
+
"typings": "novo-elements-addons-code-editor.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"name": "novo-elements/addons/code-editor"
|
|
10
|
+
}
|
package/addons/index.d.ts
CHANGED
|
@@ -7,10 +7,9 @@ import * as i5 from "@angular/common";
|
|
|
7
7
|
import * as i6 from "@angular/forms";
|
|
8
8
|
import * as i7 from "novo-elements/elements/button";
|
|
9
9
|
import * as i8 from "novo-elements/pipes";
|
|
10
|
-
import * as i9 from "
|
|
11
|
-
import * as i10 from "novo-elements/elements/icon";
|
|
10
|
+
import * as i9 from "novo-elements/elements/icon";
|
|
12
11
|
export declare class NovoCalendarModule {
|
|
13
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovoCalendarModule, never>;
|
|
14
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoCalendarModule, [typeof i1.NovoMonthViewElement, typeof i2.NovoMonthSelectElement, typeof i3.NovoYearSelectElement, typeof i4.NovoCalendarElement], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.NovoButtonModule, typeof i8.NovoPipesModule, typeof i9.
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoCalendarModule, [typeof i1.NovoMonthViewElement, typeof i2.NovoMonthSelectElement, typeof i3.NovoYearSelectElement, typeof i4.NovoCalendarElement], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.NovoButtonModule, typeof i8.NovoPipesModule, typeof i9.NovoIconModule], [typeof i1.NovoMonthViewElement, typeof i2.NovoMonthSelectElement, typeof i3.NovoYearSelectElement, typeof i4.NovoCalendarElement]>;
|
|
15
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<NovoCalendarModule>;
|
|
16
15
|
}
|
|
@@ -58,6 +58,7 @@ export declare class NovoOverlayTemplateComponent implements OnDestroy {
|
|
|
58
58
|
protected getConnectedElement(): ElementRef;
|
|
59
59
|
protected elementIsInNestedOverlay(el: any): boolean;
|
|
60
60
|
protected getHostWidth(): number;
|
|
61
|
+
isBlurRecipient(event: FocusEvent): boolean;
|
|
61
62
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovoOverlayTemplateComponent, [null, null, null, null, { optional: true; }]>;
|
|
62
63
|
static ɵcmp: i0.ɵɵComponentDeclaration<NovoOverlayTemplateComponent, "novo-overlay-template", never, { "position": "position"; "scrollStrategy": "scrollStrategy"; "width": "width"; "height": "height"; "closeOnSelect": "closeOnSelect"; "hasBackdrop": "hasBackdrop"; "parent": "parent"; }, { "select": "select"; "opening": "opening"; "closing": "closing"; }, never, ["*"]>;
|
|
63
64
|
}
|
|
@@ -8,12 +8,12 @@ import * as i6 from "@angular/forms";
|
|
|
8
8
|
import * as i7 from "novo-elements/elements/button";
|
|
9
9
|
import * as i8 from "novo-elements/pipes";
|
|
10
10
|
import * as i9 from "novo-elements/elements/common";
|
|
11
|
-
import * as i10 from "
|
|
11
|
+
import * as i10 from "angular-imask";
|
|
12
12
|
import * as i11 from "novo-elements/elements/icon";
|
|
13
13
|
import * as i12 from "novo-elements/elements/chips";
|
|
14
14
|
import * as i13 from "novo-elements/elements/calendar";
|
|
15
15
|
export declare class NovoDatePickerModule {
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovoDatePickerModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoDatePickerModule, [typeof i1.NovoDatePickerElement, typeof i2.NovoDatePickerInputElement, typeof i3.NovoDateRangeInputElement, typeof i4.NovoMultiDateInputElement], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.NovoButtonModule, typeof i8.NovoPipesModule, typeof i9.NovoOverlayModule, typeof i10.
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoDatePickerModule, [typeof i1.NovoDatePickerElement, typeof i2.NovoDatePickerInputElement, typeof i3.NovoDateRangeInputElement, typeof i4.NovoMultiDateInputElement], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.NovoButtonModule, typeof i8.NovoPipesModule, typeof i9.NovoOverlayModule, typeof i10.IMaskDirectiveModule, typeof i11.NovoIconModule, typeof i12.NovoChipsModule, typeof i13.NovoCalendarModule], [typeof i1.NovoDatePickerElement, typeof i2.NovoDatePickerInputElement, typeof i3.NovoDateRangeInputElement, typeof i4.NovoMultiDateInputElement]>;
|
|
18
18
|
static ɵinj: i0.ɵɵInjectorDeclaration<NovoDatePickerModule>;
|
|
19
19
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { NovoOverlayTemplateComponent } from 'novo-elements/elements/common';
|
|
4
4
|
import { DateFormatService, NovoLabelService } from 'novo-elements/services';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class NovoDatePickerInputElement implements OnInit, OnChanges, ControlValueAccessor {
|
|
6
|
+
export declare class NovoDatePickerInputElement implements OnInit, OnChanges, AfterViewInit, ControlValueAccessor {
|
|
7
7
|
element: ElementRef;
|
|
8
8
|
labels: NovoLabelService;
|
|
9
9
|
private _changeDetectorRef;
|
|
@@ -35,7 +35,7 @@ export declare class NovoDatePickerInputElement implements OnInit, OnChanges, Co
|
|
|
35
35
|
**/
|
|
36
36
|
placeholder: string;
|
|
37
37
|
/**
|
|
38
|
-
* MaskOptions to pass to the
|
|
38
|
+
* MaskOptions to pass to the angular-imask plugin
|
|
39
39
|
**/
|
|
40
40
|
maskOptions: any;
|
|
41
41
|
/**
|
|
@@ -61,6 +61,7 @@ export declare class NovoDatePickerInputElement implements OnInit, OnChanges, Co
|
|
|
61
61
|
constructor(element: ElementRef, labels: NovoLabelService, _changeDetectorRef: ChangeDetectorRef, dateFormatService: DateFormatService);
|
|
62
62
|
ngOnInit(): void;
|
|
63
63
|
ngOnChanges(changes: SimpleChanges): void;
|
|
64
|
+
ngAfterViewInit(): void;
|
|
64
65
|
_initFormatOptions(): void;
|
|
65
66
|
/** BEGIN: Convenient Panel Methods. */
|
|
66
67
|
openPanel(): void;
|
|
@@ -70,14 +71,16 @@ export declare class NovoDatePickerInputElement implements OnInit, OnChanges, Co
|
|
|
70
71
|
_handleKeydown(event: KeyboardEvent): void;
|
|
71
72
|
_handleInput(event: KeyboardEvent): void;
|
|
72
73
|
_handleBlur(event: FocusEvent): void;
|
|
74
|
+
_handleOverlayClickout(): void;
|
|
73
75
|
_handleFocus(event: FocusEvent): void;
|
|
74
|
-
|
|
76
|
+
_handleValueUpdate(value: string, blur: boolean): void;
|
|
77
|
+
handleMaskAccept(maskValue: string): void;
|
|
75
78
|
protected formatDate(value: string, blur: boolean): void;
|
|
76
79
|
writeValue(value: any): void;
|
|
77
80
|
registerOnChange(fn: (value: any) => {}): void;
|
|
78
81
|
registerOnTouched(fn: () => {}): void;
|
|
79
82
|
setDisabledState(disabled: boolean): void;
|
|
80
|
-
handleInvalidDate(): void;
|
|
83
|
+
handleInvalidDate(fromPanelClose?: boolean): void;
|
|
81
84
|
setupInvalidDateErrorMessage(): void;
|
|
82
85
|
dispatchOnChange(newValue?: any, blur?: boolean, skip?: boolean): void;
|
|
83
86
|
private _setTriggerValue;
|
|
@@ -51,7 +51,6 @@ export declare class NovoMultiDateInputElement implements OnInit, ControlValueAc
|
|
|
51
51
|
registerOnTouched(fn: any): void;
|
|
52
52
|
private onChangeCallback;
|
|
53
53
|
private onTouchedCallback;
|
|
54
|
-
private _setFormValue;
|
|
55
54
|
/**
|
|
56
55
|
* This method closes the panel, and if a value is specified, also sets the associated
|
|
57
56
|
* control to that value. It will also mark the control as dirty if this interaction
|
|
@@ -6,10 +6,9 @@ import * as i4 from "@angular/forms";
|
|
|
6
6
|
import * as i5 from "novo-elements/elements/date-picker";
|
|
7
7
|
import * as i6 from "novo-elements/elements/time-picker";
|
|
8
8
|
import * as i7 from "angular-imask";
|
|
9
|
-
import * as i8 from "
|
|
10
|
-
import * as i9 from "novo-elements/elements/common";
|
|
9
|
+
import * as i8 from "novo-elements/elements/common";
|
|
11
10
|
export declare class NovoDateTimePickerModule {
|
|
12
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovoDateTimePickerModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoDateTimePickerModule, [typeof i1.NovoDateTimePickerElement, typeof i2.NovoDateTimePickerInputElement], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.NovoDatePickerModule, typeof i6.NovoTimePickerModule, typeof i7.IMaskDirectiveModule, typeof i8.
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoDateTimePickerModule, [typeof i1.NovoDateTimePickerElement, typeof i2.NovoDateTimePickerInputElement], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.NovoDatePickerModule, typeof i6.NovoTimePickerModule, typeof i7.IMaskDirectiveModule, typeof i8.NovoOverlayModule], [typeof i1.NovoDateTimePickerElement, typeof i2.NovoDateTimePickerInputElement]>;
|
|
14
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<NovoDateTimePickerModule>;
|
|
15
14
|
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, Renderer2 } from '@angular/core';
|
|
2
|
+
import { ReplaySubject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface NovoDragFinishEvent<T> {
|
|
5
|
+
draggedItem: T;
|
|
6
|
+
allItems: T[];
|
|
7
|
+
event: DragEvent;
|
|
8
|
+
}
|
|
9
|
+
interface NovoDragItem<T> {
|
|
10
|
+
item: T;
|
|
11
|
+
element: HTMLElement;
|
|
12
|
+
}
|
|
13
|
+
export declare class NovoDragBoxParent<T> implements AfterViewInit, OnDestroy {
|
|
14
|
+
private elementRef;
|
|
15
|
+
private renderer;
|
|
16
|
+
pickedUp?: HTMLElement;
|
|
17
|
+
savedOrder?: NovoDragItem<T>[];
|
|
18
|
+
$destroy: ReplaySubject<void>;
|
|
19
|
+
items: T[];
|
|
20
|
+
novoDragDropFinish: EventEmitter<NovoDragFinishEvent<T>>;
|
|
21
|
+
private trackedItems;
|
|
22
|
+
get itemsReordered(): T[];
|
|
23
|
+
mutationObserver: MutationObserver;
|
|
24
|
+
constructor(elementRef: ElementRef, renderer: Renderer2);
|
|
25
|
+
get element(): HTMLElement;
|
|
26
|
+
ngAfterViewInit(): void;
|
|
27
|
+
ngOnDestroy(): void;
|
|
28
|
+
private registerChildren;
|
|
29
|
+
private registerChild;
|
|
30
|
+
mutationDetected(mutations: MutationRecord[]): void;
|
|
31
|
+
/** Per-item listeners */
|
|
32
|
+
onDragStart(event: DragEvent): void;
|
|
33
|
+
onDragStop(event: DragEvent): void;
|
|
34
|
+
onDragFinish(event: DragEvent): void;
|
|
35
|
+
/** - end per-item listeners */
|
|
36
|
+
onDragOver(event: DragEvent): void;
|
|
37
|
+
private findDraggableParentOfElement;
|
|
38
|
+
private applyTempSort;
|
|
39
|
+
private resetSorting;
|
|
40
|
+
private shouldBlockDragStart;
|
|
41
|
+
isElementWithinEventBounds(element: Element, event: DragEvent): boolean;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NovoDragBoxParent<any>, never>;
|
|
43
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NovoDragBoxParent<any>, "[novoDragDrop]", never, { "items": "novoDragDrop"; }, { "novoDragDropFinish": "novoDragDropFinish"; }, never>;
|
|
44
|
+
}
|
|
45
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./drag-drop-box";
|
|
3
|
+
export declare class NovoDragDropModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NovoDragDropModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoDragDropModule, [typeof i1.NovoDragBoxParent], never, [typeof i1.NovoDragBoxParent]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NovoDragDropModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"module": "../../fesm2015/novo-elements-elements-drag-drop.mjs",
|
|
3
|
+
"es2020": "../../fesm2020/novo-elements-elements-drag-drop.mjs",
|
|
4
|
+
"esm2020": "../../esm2020/elements/drag-drop/novo-elements-elements-drag-drop.mjs",
|
|
5
|
+
"fesm2020": "../../fesm2020/novo-elements-elements-drag-drop.mjs",
|
|
6
|
+
"fesm2015": "../../fesm2015/novo-elements-elements-drag-drop.mjs",
|
|
7
|
+
"typings": "novo-elements-elements-drag-drop.d.ts",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"name": "novo-elements/elements/drag-drop"
|
|
10
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, Renderer2, SimpleChanges
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges, Renderer2, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { IMaskDirective, IMaskFactory } from 'angular-imask';
|
|
3
3
|
import { NovoLabelService } from 'novo-elements/services';
|
|
4
|
-
import {
|
|
4
|
+
import { DATE_FORMATS, NovoInputFormat } from './base-format';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare const DATETIMEFORMAT_VALUE_ACCESSOR: {
|
|
7
7
|
provide: import("@angular/core").InjectionToken<readonly import("@angular/forms").ControlValueAccessor[]>;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
2
|
import { DateFormatService, NovoLabelService, NovoTemplateService } from 'novo-elements/services';
|
|
4
3
|
import { OutsideClick } from 'novo-elements/utils';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import { AnyMaskedOptions } from 'imask';
|
|
5
6
|
import { FieldInteractionApi } from './FieldInteractionApi';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export interface IMaskOptions {
|
|
8
|
-
mask:
|
|
9
|
+
mask: AnyMaskedOptions['mask'];
|
|
9
10
|
keepCharPositions: boolean;
|
|
10
11
|
guide: boolean;
|
|
11
12
|
}
|
|
@@ -86,19 +87,21 @@ export declare class NovoControlElement extends OutsideClick implements OnInit,
|
|
|
86
87
|
get requiresExtraSpacing(): boolean;
|
|
87
88
|
executeInteraction(interaction: any, isInvokedOnInit?: boolean): void;
|
|
88
89
|
handleTyping(event: any): void;
|
|
90
|
+
handleAccept(value: string): void;
|
|
89
91
|
handleFocus(event: FocusEvent, field?: any): void;
|
|
90
92
|
handleBlur(event: FocusEvent): void;
|
|
91
93
|
clearValue(): void;
|
|
92
|
-
handleTextAreaInput(event:
|
|
93
|
-
checkMaxLength(
|
|
94
|
+
handleTextAreaInput(event: KeyboardEvent): void;
|
|
95
|
+
checkMaxLength(value: string): void;
|
|
94
96
|
modelChangeWithRaw(event: any): void;
|
|
95
97
|
modelChange(value: any): void;
|
|
96
98
|
validateNumberOnBlur(event: FocusEvent): void;
|
|
97
99
|
validateIntegerInput(): void;
|
|
98
|
-
restrictKeys(event:
|
|
100
|
+
restrictKeys(event: KeyboardEvent): void;
|
|
99
101
|
handlePercentChange(event: KeyboardEvent): void;
|
|
100
102
|
handleTabForPickers(event: any): void;
|
|
101
|
-
emitChange(value:
|
|
103
|
+
emitChange(value: string): void;
|
|
104
|
+
handleSimpleTextInput(event: Event): void;
|
|
102
105
|
handleEdit(value: any): void;
|
|
103
106
|
handleSave(value: any): void;
|
|
104
107
|
handleDelete(value: any): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, QueryList } from '@angular/core';
|
|
2
|
-
import { NovoTemplateService } from 'novo-elements/services';
|
|
3
2
|
import { NovoTemplate } from 'novo-elements/elements/common';
|
|
3
|
+
import { NovoTemplateService } from 'novo-elements/services';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class NovoControlTemplates implements AfterViewInit {
|
|
6
6
|
private templates;
|
|
@@ -24,17 +24,17 @@ import * as i22 from "novo-elements/elements/tooltip";
|
|
|
24
24
|
import * as i23 from "novo-elements/elements/popover";
|
|
25
25
|
import * as i24 from "novo-elements/addons/dragula";
|
|
26
26
|
import * as i25 from "angular-imask";
|
|
27
|
-
import * as i26 from "
|
|
28
|
-
import * as i27 from "novo-elements/elements/
|
|
29
|
-
import * as i28 from "novo-elements/elements/
|
|
30
|
-
import * as i29 from "novo-elements/
|
|
31
|
-
import * as i30 from "novo-elements/addons/
|
|
27
|
+
import * as i26 from "novo-elements/elements/tip-well";
|
|
28
|
+
import * as i27 from "novo-elements/elements/modal";
|
|
29
|
+
import * as i28 from "novo-elements/elements/button";
|
|
30
|
+
import * as i29 from "novo-elements/addons/ace-editor";
|
|
31
|
+
import * as i30 from "novo-elements/addons/code-editor";
|
|
32
32
|
import * as i31 from "novo-elements/elements/common";
|
|
33
33
|
import * as i32 from "novo-elements/elements/checkbox";
|
|
34
34
|
import * as i33 from "novo-elements/elements/icon";
|
|
35
35
|
import * as i34 from "novo-elements/elements/switch";
|
|
36
36
|
export declare class NovoFormModule {
|
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovoFormModule, never>;
|
|
38
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoFormModule, [typeof i1.NovoAutoSize, typeof i1.NovoControlElement, typeof i2.NovoDynamicFormElement, typeof i3.NovoFormElement, typeof i2.NovoFieldsetElement, typeof i2.NovoFieldsetHeaderElement, typeof i4.ControlConfirmModal, typeof i4.ControlPromptModal, typeof i5.NovoControlGroup, typeof i6.NovoControlTemplates], [typeof i7.CommonModule, typeof i8.OverlayModule, typeof i9.ReactiveFormsModule, typeof i10.NovoRadioModule, typeof i11.NovoTilesModule, typeof i12.NovoSelectModule, typeof i13.NovoPickerModule, typeof i14.NovoChipsModule, typeof i15.NovoDatePickerModule, typeof i16.NovoTimePickerModule, typeof i17.NovoDateTimePickerModule, typeof i18.NovoNovoCKEditorModule, typeof i19.NovoFormExtrasModule, typeof i20.NovoQuickNoteModule, typeof i17.NovoDateTimePickerModule, typeof i21.NovoHeaderModule, typeof i22.NovoTooltipModule, typeof i23.NovoPopOverModule, typeof i24.NovoDragulaModule, typeof i25.IMaskDirectiveModule, typeof i26.
|
|
38
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoFormModule, [typeof i1.NovoAutoSize, typeof i1.NovoControlElement, typeof i2.NovoDynamicFormElement, typeof i3.NovoFormElement, typeof i2.NovoFieldsetElement, typeof i2.NovoFieldsetHeaderElement, typeof i4.ControlConfirmModal, typeof i4.ControlPromptModal, typeof i5.NovoControlGroup, typeof i6.NovoControlTemplates], [typeof i7.CommonModule, typeof i8.OverlayModule, typeof i9.ReactiveFormsModule, typeof i10.NovoRadioModule, typeof i11.NovoTilesModule, typeof i12.NovoSelectModule, typeof i13.NovoPickerModule, typeof i14.NovoChipsModule, typeof i15.NovoDatePickerModule, typeof i16.NovoTimePickerModule, typeof i17.NovoDateTimePickerModule, typeof i18.NovoNovoCKEditorModule, typeof i19.NovoFormExtrasModule, typeof i20.NovoQuickNoteModule, typeof i17.NovoDateTimePickerModule, typeof i21.NovoHeaderModule, typeof i22.NovoTooltipModule, typeof i23.NovoPopOverModule, typeof i24.NovoDragulaModule, typeof i25.IMaskDirectiveModule, typeof i26.NovoTipWellModule, typeof i27.NovoModalModule, typeof i28.NovoButtonModule, typeof i29.NovoAceEditorModule, typeof i30.NovoCodeEditorModule, typeof i31.NovoCommonModule, typeof i32.NovoCheckboxModule, typeof i33.NovoIconModule, typeof i10.NovoRadioModule, typeof i34.NovoSwitchModule], [typeof i1.NovoAutoSize, typeof i2.NovoDynamicFormElement, typeof i1.NovoControlElement, typeof i3.NovoFormElement, typeof i2.NovoFieldsetHeaderElement, typeof i5.NovoControlGroup, typeof i6.NovoControlTemplates]>;
|
|
39
39
|
static ɵinj: i0.ɵɵInjectorDeclaration<NovoFormModule>;
|
|
40
40
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CodeEditorControl';
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
export * from './BaseControl';
|
|
1
2
|
export * from './ace-editor';
|
|
2
3
|
export * from './address';
|
|
3
|
-
export * from './BaseControl';
|
|
4
4
|
export * from './check-list';
|
|
5
5
|
export * from './checkbox';
|
|
6
|
+
export * from './code-editor';
|
|
6
7
|
export * from './custom';
|
|
7
8
|
export * from './date';
|
|
8
9
|
export * from './date-time';
|
|
@@ -8,11 +8,11 @@ import * as i6 from "novo-elements/elements/button";
|
|
|
8
8
|
import * as i7 from "novo-elements/elements/select";
|
|
9
9
|
import * as i8 from "novo-elements/elements/picker";
|
|
10
10
|
import * as i9 from "novo-elements/elements/loading";
|
|
11
|
-
import * as i10 from "novo-elements/
|
|
12
|
-
import * as i11 from "novo-elements/elements/
|
|
13
|
-
import * as i12 from "
|
|
11
|
+
import * as i10 from "novo-elements/elements/tooltip";
|
|
12
|
+
import * as i11 from "novo-elements/elements/checkbox";
|
|
13
|
+
import * as i12 from "@angular/cdk/drag-drop";
|
|
14
14
|
export declare class NovoFormExtrasModule {
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovoFormExtrasModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoFormExtrasModule, [typeof i1.NovoAddressElement, typeof i2.NovoFileInputElement], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.NovoPipesModule, typeof i6.NovoButtonModule, typeof i7.NovoSelectModule, typeof i8.NovoPickerModule, typeof i9.NovoLoadingModule, typeof i10.
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoFormExtrasModule, [typeof i1.NovoAddressElement, typeof i2.NovoFileInputElement], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.NovoPipesModule, typeof i6.NovoButtonModule, typeof i7.NovoSelectModule, typeof i8.NovoPickerModule, typeof i9.NovoLoadingModule, typeof i10.NovoTooltipModule, typeof i11.NovoCheckboxModule, typeof i12.DragDropModule], [typeof i1.NovoAddressElement, typeof i2.NovoFileInputElement]>;
|
|
17
17
|
static ɵinj: i0.ɵɵInjectorDeclaration<NovoFormExtrasModule>;
|
|
18
18
|
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { FocusKeyManager } from '@angular/cdk/a11y';
|
|
2
|
-
import {
|
|
2
|
+
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
3
|
+
import { ElementRef, EventEmitter, OnInit, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
3
4
|
import { ControlValueAccessor, FormGroupDirective, NgControl, NgForm } from '@angular/forms';
|
|
4
|
-
import { NovoDragulaService } from 'novo-elements/addons/dragula';
|
|
5
|
-
import { NovoLabelService } from 'novo-elements/services';
|
|
6
5
|
import { CanUpdateErrorStateCtor, ErrorStateMatcher } from 'novo-elements/elements/common';
|
|
7
6
|
import { NovoFieldControl } from 'novo-elements/elements/field';
|
|
7
|
+
import { GlobalRef, NovoLabelService } from 'novo-elements/services';
|
|
8
|
+
import { NovoFile } from './extras/file/File';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
declare class NovoFileInputBase {
|
|
10
11
|
_defaultErrorStateMatcher: ErrorStateMatcher;
|
|
@@ -14,10 +15,9 @@ declare class NovoFileInputBase {
|
|
|
14
15
|
constructor(_defaultErrorStateMatcher: ErrorStateMatcher, _parentForm: NgForm, _parentFormGroup: FormGroupDirective, ngControl: NgControl);
|
|
15
16
|
}
|
|
16
17
|
declare const NovoFileInputMixins: CanUpdateErrorStateCtor & typeof NovoFileInputBase;
|
|
17
|
-
export declare class NovoFileInputElement extends NovoFileInputMixins implements NovoFieldControl<any>, ControlValueAccessor, OnInit
|
|
18
|
-
private element;
|
|
18
|
+
export declare class NovoFileInputElement extends NovoFileInputMixins implements NovoFieldControl<any>, ControlValueAccessor, OnInit {
|
|
19
19
|
labels: NovoLabelService;
|
|
20
|
-
private
|
|
20
|
+
private globalRef;
|
|
21
21
|
private _uniqueId;
|
|
22
22
|
/** The aria-describedby attribute on the chip list for improved a11y. */
|
|
23
23
|
_ariaDescribedby: string;
|
|
@@ -47,7 +47,7 @@ export declare class NovoFileInputElement extends NovoFileInputMixins implements
|
|
|
47
47
|
edit?: boolean;
|
|
48
48
|
labelStyle?: string;
|
|
49
49
|
draggable?: boolean;
|
|
50
|
-
customActions
|
|
50
|
+
customActions?: boolean;
|
|
51
51
|
removable?: boolean;
|
|
52
52
|
customValidation?: {
|
|
53
53
|
action: string;
|
|
@@ -61,8 +61,7 @@ export declare class NovoFileInputElement extends NovoFileInputMixins implements
|
|
|
61
61
|
save: EventEmitter<any>;
|
|
62
62
|
delete: EventEmitter<any>;
|
|
63
63
|
upload: EventEmitter<any>;
|
|
64
|
-
|
|
65
|
-
files: Array<any>;
|
|
64
|
+
files: NovoFile[];
|
|
66
65
|
model: any;
|
|
67
66
|
active: boolean;
|
|
68
67
|
commands: any;
|
|
@@ -89,26 +88,26 @@ export declare class NovoFileInputElement extends NovoFileInputMixins implements
|
|
|
89
88
|
protected _required: boolean;
|
|
90
89
|
protected _disabled: boolean;
|
|
91
90
|
protected _placeholder: string;
|
|
92
|
-
constructor(
|
|
91
|
+
constructor(labels: NovoLabelService, globalRef: GlobalRef, _defaultErrorStateMatcher: ErrorStateMatcher, _parentForm: NgForm, _parentFormGroup: FormGroupDirective, _ngControl: NgControl);
|
|
93
92
|
ngOnInit(): void;
|
|
94
|
-
ngOnDestroy(): void;
|
|
95
93
|
updateLayout(): void;
|
|
96
94
|
insertTemplatesBasedOnLayout(): any;
|
|
97
|
-
|
|
98
|
-
setInitialFileList
|
|
95
|
+
get outputFileDraggingDisabled(): boolean;
|
|
96
|
+
private setInitialFileList;
|
|
99
97
|
dragEnterHandler(event: any): void;
|
|
100
98
|
dragLeaveHandler(event: any): void;
|
|
101
99
|
dragOverHandler(event: any): void;
|
|
102
100
|
dropHandler(event: any): void;
|
|
101
|
+
dropOutputItem(event: CdkDragDrop<NovoFile[]>): void;
|
|
103
102
|
writeValue(model: any): void;
|
|
104
103
|
registerOnChange(fn: Function): void;
|
|
105
104
|
registerOnTouched(fn: Function): void;
|
|
106
105
|
check(event: any): void;
|
|
107
106
|
validate(files: any): boolean;
|
|
108
|
-
process
|
|
107
|
+
private process;
|
|
109
108
|
download(file: any): void;
|
|
110
109
|
remove(file: any): void;
|
|
111
|
-
readFile
|
|
110
|
+
private readFile;
|
|
112
111
|
customEdit(file: any): void;
|
|
113
112
|
customSave(file: any): void;
|
|
114
113
|
customDelete(file: any): void;
|
|
@@ -129,7 +128,7 @@ export declare class NovoFileInputElement extends NovoFileInputMixins implements
|
|
|
129
128
|
* are no eligible chips.
|
|
130
129
|
*/
|
|
131
130
|
focus(options?: FocusOptions): void;
|
|
132
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NovoFileInputElement, [null, null, null,
|
|
131
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NovoFileInputElement, [null, null, null, { optional: true; }, { optional: true; }, { optional: true; self: true; }]>;
|
|
133
132
|
static ɵcmp: i0.ɵɵComponentDeclaration<NovoFileInputElement, "novo-file-input", never, { "id": "id"; "tabindex": "tabindex"; "errorStateMatcher": "errorStateMatcher"; "multiple": "multiple"; "layoutOptions": "layoutOptions"; "value": "value"; "dataFeatureId": "dataFeatureId"; "name": "name"; "disabled": "disabled"; "required": "required"; "placeholder": "placeholder"; }, { "edit": "edit"; "save": "save"; "delete": "delete"; "upload": "upload"; }, never, never>;
|
|
134
133
|
}
|
|
135
134
|
export {};
|