@rlucan/ui 16.2.2 → 17.1.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/esm2022/lib/action-button/action-button.component.mjs +99 -99
- package/esm2022/lib/action-icon/action-icon.component.mjs +37 -37
- package/esm2022/lib/autocomplete/autocomplete.component.mjs +391 -391
- package/esm2022/lib/avatar/avatar.component.mjs +34 -34
- package/esm2022/lib/button/button.component.mjs +57 -57
- package/esm2022/lib/checkbox/checkbox.component.mjs +39 -39
- package/esm2022/lib/checkbox-group/checkbox-group.component.mjs +91 -91
- package/esm2022/lib/currency/currency.component.mjs +151 -151
- package/esm2022/lib/date/date.component.mjs +68 -68
- package/esm2022/lib/dialog/dialog.component.mjs +37 -37
- package/esm2022/lib/directives/force-visibility/force-visibility.directive.mjs +104 -104
- package/esm2022/lib/editor/editor.component.mjs +119 -119
- package/esm2022/lib/elements/burger/burger.component.mjs +21 -21
- package/esm2022/lib/elements/expander/expander.component.mjs +28 -28
- package/esm2022/lib/elements/validation-message/validation-message.component.mjs +47 -47
- package/esm2022/lib/file/file.component.mjs +145 -145
- package/esm2022/lib/file-uploader/ui-file-uploader.component.mjs +405 -405
- package/esm2022/lib/input/input.component.mjs +265 -265
- package/esm2022/lib/input-autocomplete/input-autocomplete.component.mjs +277 -277
- package/esm2022/lib/layouts/base/ui-base-layout.component.mjs +22 -22
- package/esm2022/lib/layouts/base/ui-base.component.mjs +74 -74
- package/esm2022/lib/layouts/simple/ui-simple-layout.component.mjs +18 -18
- package/esm2022/lib/layouts/simple/ui-simple.component.mjs +166 -166
- package/esm2022/lib/radio/radio.component.mjs +21 -21
- package/esm2022/lib/radio-group/radio-group.component.mjs +53 -53
- package/esm2022/lib/select/select.component.mjs +126 -126
- package/esm2022/lib/services/message-box.service.mjs +112 -112
- package/esm2022/lib/services/toast.service.mjs +23 -23
- package/esm2022/lib/services/ui-file.service.mjs +71 -71
- package/esm2022/lib/services/ui-translate.service.mjs +32 -32
- package/esm2022/lib/submit-button/submit-button.component.mjs +72 -72
- package/esm2022/lib/table/table.component.mjs +97 -97
- package/esm2022/lib/text-area/text-area.component.mjs +46 -46
- package/esm2022/lib/ui.model.mjs +1 -1
- package/esm2022/lib/ui.module.mjs +269 -269
- package/esm2022/public-api.mjs +34 -34
- package/esm2022/rlucan-ui.mjs +4 -4
- package/fesm2022/rlucan-ui.mjs +3289 -3289
- package/fesm2022/rlucan-ui.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/lib/action-button/action-button.component.d.ts +28 -28
- package/lib/action-icon/action-icon.component.d.ts +15 -15
- package/lib/autocomplete/autocomplete.component.d.ts +57 -57
- package/lib/avatar/avatar.component.d.ts +14 -14
- package/lib/button/button.component.d.ts +18 -18
- package/lib/checkbox/checkbox.component.d.ts +15 -15
- package/lib/checkbox-group/checkbox-group.component.d.ts +18 -18
- package/lib/currency/currency.component.d.ts +31 -31
- package/lib/date/date.component.d.ts +24 -24
- package/lib/dialog/dialog.component.d.ts +13 -13
- package/lib/directives/force-visibility/force-visibility.directive.d.ts +22 -22
- package/lib/editor/editor.component.d.ts +24 -24
- package/lib/elements/burger/burger.component.d.ts +9 -9
- package/lib/elements/expander/expander.component.d.ts +10 -10
- package/lib/elements/validation-message/validation-message.component.d.ts +12 -12
- package/lib/file/file.component.d.ts +35 -35
- package/lib/file-uploader/ui-file-uploader.component.d.ts +102 -102
- package/lib/input/input.component.d.ts +42 -42
- package/lib/input-autocomplete/input-autocomplete.component.d.ts +44 -44
- package/lib/layouts/base/ui-base-layout.component.d.ts +8 -8
- package/lib/layouts/base/ui-base.component.d.ts +23 -23
- package/lib/layouts/simple/ui-simple-layout.component.d.ts +8 -8
- package/lib/layouts/simple/ui-simple.component.d.ts +40 -40
- package/lib/radio/radio.component.d.ts +8 -8
- package/lib/radio-group/radio-group.component.d.ts +18 -18
- package/lib/select/select.component.d.ts +37 -37
- package/lib/services/message-box.service.d.ts +58 -58
- package/lib/services/toast.service.d.ts +13 -13
- package/lib/services/ui-file.service.d.ts +33 -33
- package/lib/services/ui-translate.service.d.ts +11 -11
- package/lib/submit-button/submit-button.component.d.ts +21 -21
- package/lib/table/table.component.d.ts +36 -36
- package/lib/text-area/text-area.component.d.ts +18 -18
- package/lib/ui.model.d.ts +2 -2
- package/lib/ui.module.d.ts +59 -59
- package/package.json +14 -14
- package/public-api.d.ts +29 -29
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
/// <amd-module name="@rlucan/ui" />
|
|
5
|
-
export * from './public-api';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
/// <amd-module name="@rlucan/ui" />
|
|
5
|
+
export * from './public-api';
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { ButtonComponent } from '../button/button.component';
|
|
3
|
-
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class ActionButtonComponent extends ButtonComponent implements OnInit {
|
|
6
|
-
withPrimary: boolean;
|
|
7
|
-
overlayAlignment: 'left' | 'right';
|
|
8
|
-
hasBackdrop: boolean;
|
|
9
|
-
triggerTpl: any;
|
|
10
|
-
autoClose: boolean;
|
|
11
|
-
primaryClick: EventEmitter<void>;
|
|
12
|
-
overlayToggled: EventEmitter<boolean>;
|
|
13
|
-
trigger1: any;
|
|
14
|
-
deferredRender: boolean;
|
|
15
|
-
iconHover: boolean;
|
|
16
|
-
get class(): string;
|
|
17
|
-
private rightPositions;
|
|
18
|
-
private leftPositions;
|
|
19
|
-
openOverlay: boolean;
|
|
20
|
-
onKeydownHandler(evt: KeyboardEvent): void;
|
|
21
|
-
get positions(): ConnectedPosition[];
|
|
22
|
-
ngOnInit(): void;
|
|
23
|
-
toggleOverlay(status: any): void;
|
|
24
|
-
closeOverlay(): void;
|
|
25
|
-
togglePrimaryOverlay(status: any, $event: any): void;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ActionButtonComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionButtonComponent, "ui-action-button", never, { "withPrimary": { "alias": "withPrimary"; "required": false; }; "overlayAlignment": { "alias": "overlayAlignment"; "required": false; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "triggerTpl": { "alias": "triggerTpl"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; }, { "primaryClick": "primaryClick"; "overlayToggled": "overlayToggled"; }, never, ["*"], false, never>;
|
|
28
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ButtonComponent } from '../button/button.component';
|
|
3
|
+
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ActionButtonComponent extends ButtonComponent implements OnInit {
|
|
6
|
+
withPrimary: boolean;
|
|
7
|
+
overlayAlignment: 'left' | 'right';
|
|
8
|
+
hasBackdrop: boolean;
|
|
9
|
+
triggerTpl: any;
|
|
10
|
+
autoClose: boolean;
|
|
11
|
+
primaryClick: EventEmitter<void>;
|
|
12
|
+
overlayToggled: EventEmitter<boolean>;
|
|
13
|
+
trigger1: any;
|
|
14
|
+
deferredRender: boolean;
|
|
15
|
+
iconHover: boolean;
|
|
16
|
+
get class(): string;
|
|
17
|
+
private rightPositions;
|
|
18
|
+
private leftPositions;
|
|
19
|
+
openOverlay: boolean;
|
|
20
|
+
onKeydownHandler(evt: KeyboardEvent): void;
|
|
21
|
+
get positions(): ConnectedPosition[];
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
toggleOverlay(status: any): void;
|
|
24
|
+
closeOverlay(): void;
|
|
25
|
+
togglePrimaryOverlay(status: any, $event: any): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActionButtonComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionButtonComponent, "ui-action-button", never, { "withPrimary": { "alias": "withPrimary"; "required": false; }; "overlayAlignment": { "alias": "overlayAlignment"; "required": false; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "triggerTpl": { "alias": "triggerTpl"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; }, { "primaryClick": "primaryClick"; "overlayToggled": "overlayToggled"; }, never, ["*"], false, never>;
|
|
28
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ControlColor, ControlSize } from '../ui.model';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ActionIconComponent implements OnInit {
|
|
5
|
-
size: ControlSize;
|
|
6
|
-
color: ControlColor;
|
|
7
|
-
disabled: boolean;
|
|
8
|
-
busy: boolean;
|
|
9
|
-
matIcon: string;
|
|
10
|
-
get class(): string;
|
|
11
|
-
constructor();
|
|
12
|
-
ngOnInit(): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ActionIconComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionIconComponent, "ui-action-icon", never, { "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; "matIcon": { "alias": "matIcon"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ControlColor, ControlSize } from '../ui.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ActionIconComponent implements OnInit {
|
|
5
|
+
size: ControlSize;
|
|
6
|
+
color: ControlColor;
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
busy: boolean;
|
|
9
|
+
matIcon: string;
|
|
10
|
+
get class(): string;
|
|
11
|
+
constructor();
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActionIconComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionIconComponent, "ui-action-icon", never, { "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; "matIcon": { "alias": "matIcon"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
-
import { ControlContainer, ControlValueAccessor, UntypedFormControl } from '@angular/forms';
|
|
3
|
-
import { UiBaseComponent } from '../layouts/base/ui-base.component';
|
|
4
|
-
import { InputComponent } from '../input/input.component';
|
|
5
|
-
import { CdkOverlayOrigin } from '@angular/cdk/overlay';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class AutocompleteComponent extends UiBaseComponent implements OnInit, ControlValueAccessor {
|
|
8
|
-
protected controlContainer: ControlContainer;
|
|
9
|
-
private cdr;
|
|
10
|
-
private SHOWN_USERS_DELTA;
|
|
11
|
-
constructor(controlContainer: ControlContainer, cdr: ChangeDetectorRef);
|
|
12
|
-
options?: any[];
|
|
13
|
-
multiple: boolean;
|
|
14
|
-
allowNew: boolean;
|
|
15
|
-
displayAttribute: string;
|
|
16
|
-
idAttribute: string;
|
|
17
|
-
searchableOptions?: any[];
|
|
18
|
-
filteredOptions: any[];
|
|
19
|
-
filteredMaxItemsShown: number;
|
|
20
|
-
messageShown: boolean;
|
|
21
|
-
initialOption?: any;
|
|
22
|
-
selectedOption?: any;
|
|
23
|
-
lastEmittedId?: any;
|
|
24
|
-
focusedOption?: any;
|
|
25
|
-
alreadyAdded: boolean;
|
|
26
|
-
optionsVisible: boolean;
|
|
27
|
-
input?: InputComponent;
|
|
28
|
-
optionsTrigger: CdkOverlayOrigin;
|
|
29
|
-
inputFocused: boolean;
|
|
30
|
-
inputControl: UntypedFormControl;
|
|
31
|
-
checkboxSelection: Set<any>;
|
|
32
|
-
onChange: (value: any) => void;
|
|
33
|
-
optionDisabled: (any: any) => boolean;
|
|
34
|
-
optionFormatter: (any: any) => string;
|
|
35
|
-
protected buildSearchableOptions(): any[];
|
|
36
|
-
protected filterOptions(text: string): any[];
|
|
37
|
-
ngOnInit(): void;
|
|
38
|
-
inputFocusChanged(focused: boolean): void;
|
|
39
|
-
get hasCheckboxSelected(): boolean;
|
|
40
|
-
optionChecked(u: any): boolean;
|
|
41
|
-
select(u: any): void;
|
|
42
|
-
toggleOptionCheckboxed(u: any): void;
|
|
43
|
-
keyPressed(keyEvent: KeyboardEvent): void;
|
|
44
|
-
toggleDropdown(): void;
|
|
45
|
-
emitSelection(src?: string): void;
|
|
46
|
-
cancelCheckboxSelection(): void;
|
|
47
|
-
useCheckboxSelection(): void;
|
|
48
|
-
newOption(): void;
|
|
49
|
-
loadMore(visible: boolean): void;
|
|
50
|
-
focus(): void;
|
|
51
|
-
registerOnChange(fn: any): void;
|
|
52
|
-
registerOnTouched(fn: any): void;
|
|
53
|
-
setDisabledState(isDisabled: boolean): void;
|
|
54
|
-
writeValue(obj: any): void;
|
|
55
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponent, [{ optional: true; host: true; skipSelf: true; }, null]>;
|
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "ui-autocomplete", never, { "options": { "alias": "options"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "allowNew": { "alias": "allowNew"; "required": false; }; "displayAttribute": { "alias": "displayAttribute"; "required": false; }; "idAttribute": { "alias": "idAttribute"; "required": false; }; "optionDisabled": { "alias": "optionDisabled"; "required": false; }; "optionFormatter": { "alias": "optionFormatter"; "required": false; }; }, {}, never, ["[slot=acprefix]"], false, never>;
|
|
57
|
-
}
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
+
import { ControlContainer, ControlValueAccessor, UntypedFormControl } from '@angular/forms';
|
|
3
|
+
import { UiBaseComponent } from '../layouts/base/ui-base.component';
|
|
4
|
+
import { InputComponent } from '../input/input.component';
|
|
5
|
+
import { CdkOverlayOrigin } from '@angular/cdk/overlay';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class AutocompleteComponent extends UiBaseComponent implements OnInit, ControlValueAccessor {
|
|
8
|
+
protected controlContainer: ControlContainer;
|
|
9
|
+
private cdr;
|
|
10
|
+
private SHOWN_USERS_DELTA;
|
|
11
|
+
constructor(controlContainer: ControlContainer, cdr: ChangeDetectorRef);
|
|
12
|
+
options?: any[];
|
|
13
|
+
multiple: boolean;
|
|
14
|
+
allowNew: boolean;
|
|
15
|
+
displayAttribute: string;
|
|
16
|
+
idAttribute: string;
|
|
17
|
+
searchableOptions?: any[];
|
|
18
|
+
filteredOptions: any[];
|
|
19
|
+
filteredMaxItemsShown: number;
|
|
20
|
+
messageShown: boolean;
|
|
21
|
+
initialOption?: any;
|
|
22
|
+
selectedOption?: any;
|
|
23
|
+
lastEmittedId?: any;
|
|
24
|
+
focusedOption?: any;
|
|
25
|
+
alreadyAdded: boolean;
|
|
26
|
+
optionsVisible: boolean;
|
|
27
|
+
input?: InputComponent;
|
|
28
|
+
optionsTrigger: CdkOverlayOrigin;
|
|
29
|
+
inputFocused: boolean;
|
|
30
|
+
inputControl: UntypedFormControl;
|
|
31
|
+
checkboxSelection: Set<any>;
|
|
32
|
+
onChange: (value: any) => void;
|
|
33
|
+
optionDisabled: (any: any) => boolean;
|
|
34
|
+
optionFormatter: (any: any) => string;
|
|
35
|
+
protected buildSearchableOptions(): any[];
|
|
36
|
+
protected filterOptions(text: string): any[];
|
|
37
|
+
ngOnInit(): void;
|
|
38
|
+
inputFocusChanged(focused: boolean): void;
|
|
39
|
+
get hasCheckboxSelected(): boolean;
|
|
40
|
+
optionChecked(u: any): boolean;
|
|
41
|
+
select(u: any): void;
|
|
42
|
+
toggleOptionCheckboxed(u: any): void;
|
|
43
|
+
keyPressed(keyEvent: KeyboardEvent): void;
|
|
44
|
+
toggleDropdown(): void;
|
|
45
|
+
emitSelection(src?: string): void;
|
|
46
|
+
cancelCheckboxSelection(): void;
|
|
47
|
+
useCheckboxSelection(): void;
|
|
48
|
+
newOption(): void;
|
|
49
|
+
loadMore(visible: boolean): void;
|
|
50
|
+
focus(): void;
|
|
51
|
+
registerOnChange(fn: any): void;
|
|
52
|
+
registerOnTouched(fn: any): void;
|
|
53
|
+
setDisabledState(isDisabled: boolean): void;
|
|
54
|
+
writeValue(obj: any): void;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponent, [{ optional: true; host: true; skipSelf: true; }, null]>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "ui-autocomplete", never, { "options": { "alias": "options"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "allowNew": { "alias": "allowNew"; "required": false; }; "displayAttribute": { "alias": "displayAttribute"; "required": false; }; "idAttribute": { "alias": "idAttribute"; "required": false; }; "optionDisabled": { "alias": "optionDisabled"; "required": false; }; "optionFormatter": { "alias": "optionFormatter"; "required": false; }; }, {}, never, ["[slot=acprefix]"], false, never>;
|
|
57
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class AvatarComponent {
|
|
3
|
-
user: Partial<{
|
|
4
|
-
avatar: any;
|
|
5
|
-
shortName: string;
|
|
6
|
-
shortColour: string;
|
|
7
|
-
}>;
|
|
8
|
-
srcOptions: any;
|
|
9
|
-
size: 'big' | 'bigger' | 'normal' | 'smaller' | 'small' | 'mini';
|
|
10
|
-
get contrast(): string;
|
|
11
|
-
constructor();
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "ui-avatar", never, { "user": { "alias": "user"; "required": false; }; "srcOptions": { "alias": "srcOptions"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AvatarComponent {
|
|
3
|
+
user: Partial<{
|
|
4
|
+
avatar: any;
|
|
5
|
+
shortName: string;
|
|
6
|
+
shortColour: string;
|
|
7
|
+
}>;
|
|
8
|
+
srcOptions: any;
|
|
9
|
+
size: 'big' | 'bigger' | 'normal' | 'smaller' | 'small' | 'mini';
|
|
10
|
+
get contrast(): string;
|
|
11
|
+
constructor();
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "ui-avatar", never, { "user": { "alias": "user"; "required": false; }; "srcOptions": { "alias": "srcOptions"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { ControlColor, ControlSize } from '../ui.model';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ButtonComponent {
|
|
4
|
-
type: 'submit' | 'button';
|
|
5
|
-
matIconPrefix: any;
|
|
6
|
-
label: string | undefined;
|
|
7
|
-
disabled: boolean;
|
|
8
|
-
busy: boolean;
|
|
9
|
-
kind: 'basic' | 'flat' | 'stroked';
|
|
10
|
-
color: ControlColor;
|
|
11
|
-
size: ControlSize;
|
|
12
|
-
get class(): string;
|
|
13
|
-
formInvalid: boolean;
|
|
14
|
-
constructor();
|
|
15
|
-
get isDisabled(): boolean;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "ui-button", never, { "type": { "alias": "type"; "required": false; }; "matIconPrefix": { "alias": "matIconPrefix"; "required": false; }; "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; "kind": { "alias": "kind"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "formInvalid": { "alias": "formInvalid"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
|
-
}
|
|
1
|
+
import { ControlColor, ControlSize } from '../ui.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ButtonComponent {
|
|
4
|
+
type: 'submit' | 'button';
|
|
5
|
+
matIconPrefix: any;
|
|
6
|
+
label: string | undefined;
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
busy: boolean;
|
|
9
|
+
kind: 'basic' | 'flat' | 'stroked';
|
|
10
|
+
color: ControlColor;
|
|
11
|
+
size: ControlSize;
|
|
12
|
+
get class(): string;
|
|
13
|
+
formInvalid: boolean;
|
|
14
|
+
constructor();
|
|
15
|
+
get isDisabled(): boolean;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "ui-button", never, { "type": { "alias": "type"; "required": false; }; "matIconPrefix": { "alias": "matIconPrefix"; "required": false; }; "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; "kind": { "alias": "kind"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "formInvalid": { "alias": "formInvalid"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { NgControl } from '@angular/forms';
|
|
3
|
-
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CheckboxComponent extends UiSimpleComponent implements OnInit {
|
|
6
|
-
ngControl: NgControl;
|
|
7
|
-
color: 'primary' | 'accent' | 'warn';
|
|
8
|
-
useInputMessages: 'never' | 'always' | 'ondemand';
|
|
9
|
-
text: any;
|
|
10
|
-
constructor(ngControl: NgControl);
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
setDisabledState(isDisabled: boolean): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, [{ optional: true; self: true; }]>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ui-checkbox", never, { "color": { "alias": "color"; "required": false; }; "useInputMessages": { "alias": "useInputMessages"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
15
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { NgControl } from '@angular/forms';
|
|
3
|
+
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CheckboxComponent extends UiSimpleComponent implements OnInit {
|
|
6
|
+
ngControl: NgControl;
|
|
7
|
+
color: 'primary' | 'accent' | 'warn';
|
|
8
|
+
useInputMessages: 'never' | 'always' | 'ondemand';
|
|
9
|
+
text: any;
|
|
10
|
+
constructor(ngControl: NgControl);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
setDisabledState(isDisabled: boolean): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, [{ optional: true; self: true; }]>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ui-checkbox", never, { "color": { "alias": "color"; "required": false; }; "useInputMessages": { "alias": "useInputMessages"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
15
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
3
|
-
import { NgControl } from '@angular/forms';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CheckboxGroupComponent extends UiSimpleComponent implements /*OnInit, */ OnChanges {
|
|
6
|
-
control: NgControl;
|
|
7
|
-
cbxs: any;
|
|
8
|
-
private valueMode;
|
|
9
|
-
valueAttribute: string | undefined;
|
|
10
|
-
displayAttribute: string;
|
|
11
|
-
hintAttribute: string;
|
|
12
|
-
options: any[];
|
|
13
|
-
optionEnabled: (option: any) => boolean;
|
|
14
|
-
constructor(control: NgControl);
|
|
15
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxGroupComponent, [{ optional: true; self: true; }]>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxGroupComponent, "ui-checkbox-group", never, { "valueAttribute": { "alias": "valueAttribute"; "required": false; }; "displayAttribute": { "alias": "displayAttribute"; "required": false; }; "hintAttribute": { "alias": "hintAttribute"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionEnabled": { "alias": "optionEnabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
|
-
}
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
3
|
+
import { NgControl } from '@angular/forms';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CheckboxGroupComponent extends UiSimpleComponent implements /*OnInit, */ OnChanges {
|
|
6
|
+
control: NgControl;
|
|
7
|
+
cbxs: any;
|
|
8
|
+
private valueMode;
|
|
9
|
+
valueAttribute: string | undefined;
|
|
10
|
+
displayAttribute: string;
|
|
11
|
+
hintAttribute: string;
|
|
12
|
+
options: any[];
|
|
13
|
+
optionEnabled: (option: any) => boolean;
|
|
14
|
+
constructor(control: NgControl);
|
|
15
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxGroupComponent, [{ optional: true; self: true; }]>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxGroupComponent, "ui-checkbox-group", never, { "valueAttribute": { "alias": "valueAttribute"; "required": false; }; "displayAttribute": { "alias": "displayAttribute"; "required": false; }; "hintAttribute": { "alias": "hintAttribute"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionEnabled": { "alias": "optionEnabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { UiBaseComponent } from '../layouts/base/ui-base.component';
|
|
3
|
-
import { AbstractControl, ControlContainer, ControlValueAccessor, UntypedFormGroup, ValidationErrors, Validator } from '@angular/forms';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CurrencyComponent extends UiBaseComponent implements OnInit, ControlValueAccessor, Validator {
|
|
6
|
-
protected controlContainer: ControlContainer;
|
|
7
|
-
currencies: Partial<{
|
|
8
|
-
code: string;
|
|
9
|
-
}>[];
|
|
10
|
-
currencyDisabled: boolean;
|
|
11
|
-
formControlName: string;
|
|
12
|
-
panelClass: string;
|
|
13
|
-
amountHidden: boolean;
|
|
14
|
-
formGroup: UntypedFormGroup;
|
|
15
|
-
parentFormControl: AbstractControl;
|
|
16
|
-
hasFocus: boolean;
|
|
17
|
-
constructor(controlContainer: ControlContainer);
|
|
18
|
-
onChange: (value: any) => void;
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
get isInvalid(): boolean;
|
|
21
|
-
get validationErrors(): ValidationErrors;
|
|
22
|
-
focusChanged(hasFocus: boolean): void;
|
|
23
|
-
registerOnChange(fn: any): void;
|
|
24
|
-
registerOnTouched(fn: any): void;
|
|
25
|
-
registerOnValidatorChange(fn: () => void): void;
|
|
26
|
-
setDisabledState(isDisabled: boolean): void;
|
|
27
|
-
validate(control: AbstractControl): ValidationErrors | null;
|
|
28
|
-
writeValue(obj: any): void;
|
|
29
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyComponent, [{ optional: true; host: true; skipSelf: true; }]>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CurrencyComponent, "ui-currency", never, { "currencies": { "alias": "currencies"; "required": false; }; "currencyDisabled": { "alias": "currencyDisabled"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "amountHidden": { "alias": "amountHidden"; "required": false; }; }, {}, never, never, false, never>;
|
|
31
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { UiBaseComponent } from '../layouts/base/ui-base.component';
|
|
3
|
+
import { AbstractControl, ControlContainer, ControlValueAccessor, UntypedFormGroup, ValidationErrors, Validator } from '@angular/forms';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CurrencyComponent extends UiBaseComponent implements OnInit, ControlValueAccessor, Validator {
|
|
6
|
+
protected controlContainer: ControlContainer;
|
|
7
|
+
currencies: Partial<{
|
|
8
|
+
code: string;
|
|
9
|
+
}>[];
|
|
10
|
+
currencyDisabled: boolean;
|
|
11
|
+
formControlName: string;
|
|
12
|
+
panelClass: string;
|
|
13
|
+
amountHidden: boolean;
|
|
14
|
+
formGroup: UntypedFormGroup;
|
|
15
|
+
parentFormControl: AbstractControl;
|
|
16
|
+
hasFocus: boolean;
|
|
17
|
+
constructor(controlContainer: ControlContainer);
|
|
18
|
+
onChange: (value: any) => void;
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
get isInvalid(): boolean;
|
|
21
|
+
get validationErrors(): ValidationErrors;
|
|
22
|
+
focusChanged(hasFocus: boolean): void;
|
|
23
|
+
registerOnChange(fn: any): void;
|
|
24
|
+
registerOnTouched(fn: any): void;
|
|
25
|
+
registerOnValidatorChange(fn: () => void): void;
|
|
26
|
+
setDisabledState(isDisabled: boolean): void;
|
|
27
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
28
|
+
writeValue(obj: any): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyComponent, [{ optional: true; host: true; skipSelf: true; }]>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CurrencyComponent, "ui-currency", never, { "currencies": { "alias": "currencies"; "required": false; }; "currencyDisabled": { "alias": "currencyDisabled"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "amountHidden": { "alias": "amountHidden"; "required": false; }; }, {}, never, never, false, never>;
|
|
31
|
+
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
2
|
-
import { NgControl } from '@angular/forms';
|
|
3
|
-
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class DateComponent extends UiSimpleComponent {
|
|
6
|
-
ngControl: NgControl;
|
|
7
|
-
doKeyup: EventEmitter<any>;
|
|
8
|
-
picker?: TemplateRef<any>;
|
|
9
|
-
input?: TemplateRef<any>;
|
|
10
|
-
onChange: any;
|
|
11
|
-
hasFocus: boolean;
|
|
12
|
-
controlTypeName: string;
|
|
13
|
-
opening: boolean;
|
|
14
|
-
constructor(ngControl: NgControl);
|
|
15
|
-
open(): void;
|
|
16
|
-
close(): void;
|
|
17
|
-
keyup(): void;
|
|
18
|
-
writeValue(obj: any): void;
|
|
19
|
-
registerOnChange(fn: any): void;
|
|
20
|
-
registerOnTouched(fn: any): void;
|
|
21
|
-
setDisabledState(isDisabled: boolean): void;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DateComponent, [{ optional: true; self: true; }]>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateComponent, "ui-date", never, {}, { "doKeyup": "doKeyup"; }, never, never, false, never>;
|
|
24
|
-
}
|
|
1
|
+
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
2
|
+
import { NgControl } from '@angular/forms';
|
|
3
|
+
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DateComponent extends UiSimpleComponent {
|
|
6
|
+
ngControl: NgControl;
|
|
7
|
+
doKeyup: EventEmitter<any>;
|
|
8
|
+
picker?: TemplateRef<any>;
|
|
9
|
+
input?: TemplateRef<any>;
|
|
10
|
+
onChange: any;
|
|
11
|
+
hasFocus: boolean;
|
|
12
|
+
controlTypeName: string;
|
|
13
|
+
opening: boolean;
|
|
14
|
+
constructor(ngControl: NgControl);
|
|
15
|
+
open(): void;
|
|
16
|
+
close(): void;
|
|
17
|
+
keyup(): void;
|
|
18
|
+
writeValue(obj: any): void;
|
|
19
|
+
registerOnChange(fn: any): void;
|
|
20
|
+
registerOnTouched(fn: any): void;
|
|
21
|
+
setDisabledState(isDisabled: boolean): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateComponent, [{ optional: true; self: true; }]>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateComponent, "ui-date", never, {}, { "doKeyup": "doKeyup"; }, never, never, false, never>;
|
|
24
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class DialogComponent {
|
|
4
|
-
dialogRef: MatDialogRef<DialogComponent>;
|
|
5
|
-
title: string;
|
|
6
|
-
draggable: boolean;
|
|
7
|
-
hideCloseButton: boolean;
|
|
8
|
-
close: (() => void) | undefined;
|
|
9
|
-
constructor(dialogRef: MatDialogRef<DialogComponent>);
|
|
10
|
-
clickClose(): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DialogComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "ui-dialog", never, { "title": { "alias": "title"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "hideCloseButton": { "alias": "hideCloseButton"; "required": false; }; "close": { "alias": "close"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
13
|
-
}
|
|
1
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DialogComponent {
|
|
4
|
+
dialogRef: MatDialogRef<DialogComponent>;
|
|
5
|
+
title: string;
|
|
6
|
+
draggable: boolean;
|
|
7
|
+
hideCloseButton: boolean;
|
|
8
|
+
close: (() => void) | undefined;
|
|
9
|
+
constructor(dialogRef: MatDialogRef<DialogComponent>);
|
|
10
|
+
clickClose(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "ui-dialog", never, { "title": { "alias": "title"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "hideCloseButton": { "alias": "hideCloseButton"; "required": false; }; "close": { "alias": "close"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
13
|
+
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ForceVisibilityDirective implements OnInit, OnChanges {
|
|
4
|
-
private el;
|
|
5
|
-
private static disabled;
|
|
6
|
-
visibilityWithin: HTMLElement;
|
|
7
|
-
visibilityPadding: number;
|
|
8
|
-
visibilityOnRequestOnly: boolean;
|
|
9
|
-
visibilityEmitChange: boolean;
|
|
10
|
-
visibilityFromTop: number;
|
|
11
|
-
visibilityCheckEnabled: boolean;
|
|
12
|
-
visibilityChanged: EventEmitter<boolean>;
|
|
13
|
-
private visible;
|
|
14
|
-
constructor(el: ElementRef);
|
|
15
|
-
static disableFor(timeoutMs: number): void;
|
|
16
|
-
ngOnInit(): void;
|
|
17
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
18
|
-
private isVisible;
|
|
19
|
-
forceVisibility(): void;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ForceVisibilityDirective, never>;
|
|
21
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ForceVisibilityDirective, "[uiForceVisibility]", ["ForceVisibilityDirective"], { "visibilityWithin": { "alias": "visibilityWithin"; "required": false; }; "visibilityPadding": { "alias": "visibilityPadding"; "required": false; }; "visibilityOnRequestOnly": { "alias": "visibilityOnRequestOnly"; "required": false; }; "visibilityEmitChange": { "alias": "visibilityEmitChange"; "required": false; }; "visibilityFromTop": { "alias": "visibilityFromTop"; "required": false; }; "visibilityCheckEnabled": { "alias": "visibilityCheckEnabled"; "required": false; }; }, { "visibilityChanged": "visibilityChanged"; }, never, never, false, never>;
|
|
22
|
-
}
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ForceVisibilityDirective implements OnInit, OnChanges {
|
|
4
|
+
private el;
|
|
5
|
+
private static disabled;
|
|
6
|
+
visibilityWithin: HTMLElement;
|
|
7
|
+
visibilityPadding: number;
|
|
8
|
+
visibilityOnRequestOnly: boolean;
|
|
9
|
+
visibilityEmitChange: boolean;
|
|
10
|
+
visibilityFromTop: number;
|
|
11
|
+
visibilityCheckEnabled: boolean;
|
|
12
|
+
visibilityChanged: EventEmitter<boolean>;
|
|
13
|
+
private visible;
|
|
14
|
+
constructor(el: ElementRef);
|
|
15
|
+
static disableFor(timeoutMs: number): void;
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
18
|
+
private isVisible;
|
|
19
|
+
forceVisibility(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ForceVisibilityDirective, never>;
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ForceVisibilityDirective, "[uiForceVisibility]", ["ForceVisibilityDirective"], { "visibilityWithin": { "alias": "visibilityWithin"; "required": false; }; "visibilityPadding": { "alias": "visibilityPadding"; "required": false; }; "visibilityOnRequestOnly": { "alias": "visibilityOnRequestOnly"; "required": false; }; "visibilityEmitChange": { "alias": "visibilityEmitChange"; "required": false; }; "visibilityFromTop": { "alias": "visibilityFromTop"; "required": false; }; "visibilityCheckEnabled": { "alias": "visibilityCheckEnabled"; "required": false; }; }, { "visibilityChanged": "visibilityChanged"; }, never, never, false, never>;
|
|
22
|
+
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef } from '@angular/core';
|
|
2
|
-
import { NgControl } from '@angular/forms';
|
|
3
|
-
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
4
|
-
import EditorJS from '@editorjs/editorjs';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class EditorComponent extends UiSimpleComponent implements AfterViewInit {
|
|
7
|
-
ngControl: NgControl;
|
|
8
|
-
private el;
|
|
9
|
-
rows: number;
|
|
10
|
-
autoResize: boolean;
|
|
11
|
-
focused: boolean;
|
|
12
|
-
editor: EditorJS;
|
|
13
|
-
data: any;
|
|
14
|
-
editorId: string;
|
|
15
|
-
clickout(event: any): void;
|
|
16
|
-
constructor(ngControl: NgControl, el: ElementRef);
|
|
17
|
-
focus(): void;
|
|
18
|
-
setDisabledState(isDisabled: boolean): void;
|
|
19
|
-
ngAfterViewInit(): void;
|
|
20
|
-
inputLength(): any;
|
|
21
|
-
writeValue(obj: any): void;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EditorComponent, [{ optional: true; self: true; }, null]>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditorComponent, "ui-editor", never, { "rows": { "alias": "rows"; "required": false; }; "autoResize": { "alias": "autoResize"; "required": false; }; }, {}, never, never, false, never>;
|
|
24
|
-
}
|
|
1
|
+
import { AfterViewInit, ElementRef } from '@angular/core';
|
|
2
|
+
import { NgControl } from '@angular/forms';
|
|
3
|
+
import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
|
|
4
|
+
import EditorJS from '@editorjs/editorjs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class EditorComponent extends UiSimpleComponent implements AfterViewInit {
|
|
7
|
+
ngControl: NgControl;
|
|
8
|
+
private el;
|
|
9
|
+
rows: number;
|
|
10
|
+
autoResize: boolean;
|
|
11
|
+
focused: boolean;
|
|
12
|
+
editor: EditorJS;
|
|
13
|
+
data: any;
|
|
14
|
+
editorId: string;
|
|
15
|
+
clickout(event: any): void;
|
|
16
|
+
constructor(ngControl: NgControl, el: ElementRef);
|
|
17
|
+
focus(): void;
|
|
18
|
+
setDisabledState(isDisabled: boolean): void;
|
|
19
|
+
ngAfterViewInit(): void;
|
|
20
|
+
inputLength(): any;
|
|
21
|
+
writeValue(obj: any): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditorComponent, [{ optional: true; self: true; }, null]>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditorComponent, "ui-editor", never, { "rows": { "alias": "rows"; "required": false; }; "autoResize": { "alias": "autoResize"; "required": false; }; }, {}, never, never, false, never>;
|
|
24
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class BurgerComponent implements OnInit {
|
|
4
|
-
open: boolean;
|
|
5
|
-
constructor();
|
|
6
|
-
ngOnInit(): void;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BurgerComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BurgerComponent, "ui-burger", never, { "open": { "alias": "open"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BurgerComponent implements OnInit {
|
|
4
|
+
open: boolean;
|
|
5
|
+
constructor();
|
|
6
|
+
ngOnInit(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BurgerComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BurgerComponent, "ui-burger", never, { "open": { "alias": "open"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
+
}
|