ngx-ode-ui 4.6.0-dev-produit.3 → 4.6.0-dev-integration.2
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 +14 -0
- package/bundles/ngx-ode-ui.umd.js +5804 -0
- package/bundles/ngx-ode-ui.umd.js.map +1 -0
- package/bundles/ngx-ode-ui.umd.min.js +17 -0
- package/bundles/ngx-ode-ui.umd.min.js.map +1 -0
- package/esm2015/lib/components/datepicker/datepicker.component.js +261 -0
- package/esm2015/lib/components/dropdown/dropdown.component.js +76 -0
- package/esm2015/lib/components/ellipsis/ellipsis.component.js +98 -0
- package/esm2015/lib/components/form-errors/form-errors.component.js +65 -0
- package/esm2015/lib/components/form-field/form-field.component.js +40 -0
- package/esm2015/lib/components/item-tree/item-tree.component.js +289 -0
- package/esm2015/lib/components/lightbox/lightbox.component.js +129 -0
- package/esm2015/lib/components/lightbox-confirm/lightbox-confirm.component.js +65 -0
- package/esm2015/lib/components/list/list.component.js +140 -0
- package/esm2015/lib/components/list-checkable/list-checkable.component.js +137 -0
- package/esm2015/lib/components/message-box/message-box.component.js +153 -0
- package/esm2015/lib/components/message-sticker/message-sticker.component.js +81 -0
- package/esm2015/lib/components/mono-select/mono-select.component.js +164 -0
- package/esm2015/lib/components/multi-combo/multi-combo.component.js +255 -0
- package/esm2015/lib/components/multi-select/multi-select.component.js +214 -0
- package/esm2015/lib/components/panel-section/panel-section.component.js +38 -0
- package/esm2015/lib/components/portal/portal.component.js +27 -0
- package/esm2015/lib/components/push-panel/push-panel.component.js +81 -0
- package/esm2015/lib/components/search-input/search-input.component.js +176 -0
- package/esm2015/lib/components/search-toolbar/search-toolbar.component.js +84 -0
- package/esm2015/lib/components/side-layout/side-layout.component.js +39 -0
- package/esm2015/lib/components/side-panel/side-panel.component.js +76 -0
- package/esm2015/lib/components/spinner-cube/spinner-cube.component.js +67 -0
- package/esm2015/lib/components/table/pager.component.js +95 -0
- package/esm2015/lib/components/tooltip/tooltip.component.js +172 -0
- package/esm2015/lib/components/upload-files/upload-files.component.js +112 -0
- package/esm2015/lib/components/value-editable/simple-select.component.js +57 -0
- package/esm2015/lib/components/wizard/wizard.component.js +225 -0
- package/esm2015/lib/directives/anchor.directive.js +34 -0
- package/esm2015/lib/directives/drag-and-drop-files.directive.js +126 -0
- package/esm2015/lib/directives/dynamic-component/component-descriptor.model.js +34 -0
- package/esm2015/lib/directives/dynamic-component/dynamic-component.directive.js +100 -0
- package/esm2015/lib/directives/dynamictemplate.directive.js +159 -0
- package/esm2015/lib/directives/object-url.directive.js +53 -0
- package/esm2015/lib/ngx-ode-ui.module.js +188 -0
- package/esm2015/lib/pipes/bytes.pipe.js +27 -0
- package/esm2015/lib/pipes/filter.pipe.js +141 -0
- package/esm2015/lib/pipes/flattenObjArray.pipe.js +52 -0
- package/esm2015/lib/pipes/keys.pipe.js +27 -0
- package/esm2015/lib/pipes/length.pipe.js +22 -0
- package/esm2015/lib/pipes/limit.pipe.js +24 -0
- package/esm2015/lib/pipes/localizedDate.pipe.js +44 -0
- package/esm2015/lib/pipes/orderBy.pipe.js +269 -0
- package/esm2015/lib/pipes/store.pipe.js +24 -0
- package/esm2015/lib/services/dynamicModuleImports.service.js +19 -0
- package/esm2015/lib/services/inputFile.service.js +80 -0
- package/esm2015/lib/services/labels.service.js +54 -0
- package/esm2015/lib/services/spinner.service.js +163 -0
- package/esm2015/lib/utils/math.js +49 -0
- package/esm2015/lib/utils/string.js +29 -0
- package/esm2015/lib/utils/testing.js +20 -0
- package/esm2015/ngx-ode-ui.js +12 -0
- package/esm2015/public-api.js +59 -0
- package/esm5/lib/components/datepicker/datepicker.component.js +292 -0
- package/esm5/lib/components/dropdown/dropdown.component.js +81 -0
- package/esm5/lib/components/ellipsis/ellipsis.component.js +106 -0
- package/esm5/lib/components/form-errors/form-errors.component.js +73 -0
- package/esm5/lib/components/form-field/form-field.component.js +41 -0
- package/esm5/lib/components/item-tree/item-tree.component.js +345 -0
- package/esm5/lib/components/lightbox/lightbox.component.js +141 -0
- package/esm5/lib/components/lightbox-confirm/lightbox-confirm.component.js +67 -0
- package/esm5/lib/components/list/list.component.js +146 -0
- package/esm5/lib/components/list-checkable/list-checkable.component.js +148 -0
- package/esm5/lib/components/message-box/message-box.component.js +190 -0
- package/esm5/lib/components/message-sticker/message-sticker.component.js +92 -0
- package/esm5/lib/components/mono-select/mono-select.component.js +192 -0
- package/esm5/lib/components/multi-combo/multi-combo.component.js +294 -0
- package/esm5/lib/components/multi-select/multi-select.component.js +258 -0
- package/esm5/lib/components/panel-section/panel-section.component.js +40 -0
- package/esm5/lib/components/portal/portal.component.js +28 -0
- package/esm5/lib/components/push-panel/push-panel.component.js +91 -0
- package/esm5/lib/components/search-input/search-input.component.js +199 -0
- package/esm5/lib/components/search-toolbar/search-toolbar.component.js +93 -0
- package/esm5/lib/components/side-layout/side-layout.component.js +41 -0
- package/esm5/lib/components/side-panel/side-panel.component.js +85 -0
- package/esm5/lib/components/spinner-cube/spinner-cube.component.js +76 -0
- package/esm5/lib/components/table/pager.component.js +113 -0
- package/esm5/lib/components/tooltip/tooltip.component.js +188 -0
- package/esm5/lib/components/upload-files/upload-files.component.js +133 -0
- package/esm5/lib/components/value-editable/simple-select.component.js +59 -0
- package/esm5/lib/components/wizard/wizard.component.js +161 -0
- package/esm5/lib/directives/anchor.directive.js +39 -0
- package/esm5/lib/directives/drag-and-drop-files.directive.js +146 -0
- package/esm5/lib/directives/dynamic-component/component-descriptor.model.js +44 -0
- package/esm5/lib/directives/dynamic-component/dynamic-component.directive.js +109 -0
- package/esm5/lib/directives/dynamictemplate.directive.js +175 -0
- package/esm5/lib/directives/object-url.directive.js +62 -0
- package/esm5/lib/ngx-ode-ui.module.js +199 -0
- package/esm5/lib/pipes/bytes.pipe.js +37 -0
- package/esm5/lib/pipes/filter.pipe.js +179 -0
- package/esm5/lib/pipes/flattenObjArray.pipe.js +62 -0
- package/esm5/lib/pipes/keys.pipe.js +36 -0
- package/esm5/lib/pipes/length.pipe.js +30 -0
- package/esm5/lib/pipes/limit.pipe.js +35 -0
- package/esm5/lib/pipes/localizedDate.pipe.js +49 -0
- package/esm5/lib/pipes/orderBy.pipe.js +280 -0
- package/esm5/lib/pipes/store.pipe.js +35 -0
- package/esm5/lib/services/dynamicModuleImports.service.js +21 -0
- package/esm5/lib/services/inputFile.service.js +98 -0
- package/esm5/lib/services/labels.service.js +68 -0
- package/esm5/lib/services/spinner.service.js +195 -0
- package/esm5/lib/utils/math.js +49 -0
- package/esm5/lib/utils/string.js +29 -0
- package/esm5/lib/utils/testing.js +20 -0
- package/esm5/ngx-ode-ui.js +12 -0
- package/esm5/public-api.js +59 -0
- package/fesm2015/ngx-ode-ui.js +5027 -0
- package/fesm2015/ngx-ode-ui.js.map +1 -0
- package/fesm5/ngx-ode-ui.js +5560 -0
- package/fesm5/ngx-ode-ui.js.map +1 -0
- package/lib/components/datepicker/datepicker.component.d.ts +2 -7
- package/lib/components/dropdown/dropdown.component.d.ts +0 -3
- package/lib/components/ellipsis/ellipsis.component.d.ts +1 -4
- package/lib/components/form-errors/form-errors.component.d.ts +0 -3
- package/lib/components/form-field/form-field.component.d.ts +0 -3
- package/lib/components/item-tree/item-tree.component.d.ts +1 -5
- package/lib/components/lightbox/lightbox.component.d.ts +1 -5
- package/lib/components/lightbox-confirm/lightbox-confirm.component.d.ts +0 -3
- package/lib/components/list/list.component.d.ts +1 -5
- package/lib/components/list-checkable/list-checkable.component.d.ts +1 -5
- package/lib/components/message-box/message-box.component.d.ts +4 -8
- package/lib/components/message-sticker/message-sticker.component.d.ts +0 -3
- package/lib/components/mono-select/mono-select.component.d.ts +0 -3
- package/lib/components/multi-combo/multi-combo.component.d.ts +1 -4
- package/lib/components/multi-select/multi-select.component.d.ts +0 -3
- package/lib/components/panel-section/panel-section.component.d.ts +0 -3
- package/lib/components/portal/portal.component.d.ts +0 -3
- package/lib/components/push-panel/push-panel.component.d.ts +1 -4
- package/lib/components/search-input/search-input.component.d.ts +1 -5
- package/lib/components/search-toolbar/search-toolbar.component.d.ts +0 -3
- package/lib/components/side-layout/side-layout.component.d.ts +0 -3
- package/lib/components/side-panel/side-panel.component.d.ts +1 -4
- package/lib/components/spinner-cube/spinner-cube.component.d.ts +1 -5
- package/lib/components/table/pager.component.d.ts +0 -3
- package/lib/components/tooltip/tooltip.component.d.ts +0 -3
- package/lib/components/upload-files/upload-files.component.d.ts +0 -3
- package/lib/components/value-editable/simple-select.component.d.ts +0 -3
- package/lib/components/wizard/wizard.component.d.ts +0 -5
- package/lib/directives/anchor.directive.d.ts +0 -3
- package/lib/directives/drag-and-drop-files.directive.d.ts +0 -3
- package/lib/directives/dynamic-component/dynamic-component.directive.d.ts +0 -3
- package/lib/directives/dynamictemplate.directive.d.ts +1 -4
- package/lib/directives/object-url.directive.d.ts +0 -3
- package/lib/ngx-ode-ui.module.d.ts +2 -53
- package/lib/pipes/bytes.pipe.d.ts +0 -3
- package/lib/pipes/filter.pipe.d.ts +0 -3
- package/lib/pipes/flattenObjArray.pipe.d.ts +0 -3
- package/lib/pipes/keys.pipe.d.ts +0 -3
- package/lib/pipes/length.pipe.d.ts +0 -3
- package/lib/pipes/limit.pipe.d.ts +0 -3
- package/lib/pipes/localizedDate.pipe.d.ts +0 -3
- package/lib/pipes/orderBy.pipe.d.ts +0 -3
- package/lib/pipes/store.pipe.d.ts +0 -3
- package/lib/services/dynamicModuleImports.service.d.ts +0 -3
- package/lib/services/inputFile.service.d.ts +0 -3
- package/lib/services/labels.service.d.ts +0 -3
- package/lib/services/spinner.service.d.ts +1 -4
- package/ngx-ode-ui.d.ts +6 -0
- package/ngx-ode-ui.metadata.json +1 -0
- package/package.json +17 -29
- package/public-api.d.ts +0 -3
- package/esm2020/lib/components/datepicker/datepicker.component.mjs +0 -148
- package/esm2020/lib/components/dropdown/dropdown.component.mjs +0 -55
- package/esm2020/lib/components/ellipsis/ellipsis.component.mjs +0 -53
- package/esm2020/lib/components/form-errors/form-errors.component.mjs +0 -35
- package/esm2020/lib/components/form-field/form-field.component.mjs +0 -24
- package/esm2020/lib/components/item-tree/item-tree.component.mjs +0 -170
- package/esm2020/lib/components/lightbox/lightbox.component.mjs +0 -70
- package/esm2020/lib/components/lightbox-confirm/lightbox-confirm.component.mjs +0 -43
- package/esm2020/lib/components/list/list.component.mjs +0 -88
- package/esm2020/lib/components/list-checkable/list-checkable.component.mjs +0 -79
- package/esm2020/lib/components/message-box/message-box.component.mjs +0 -92
- package/esm2020/lib/components/message-sticker/message-sticker.component.mjs +0 -51
- package/esm2020/lib/components/mono-select/mono-select.component.mjs +0 -83
- package/esm2020/lib/components/multi-combo/multi-combo.component.mjs +0 -166
- package/esm2020/lib/components/multi-select/multi-select.component.mjs +0 -104
- package/esm2020/lib/components/panel-section/panel-section.component.mjs +0 -23
- package/esm2020/lib/components/portal/portal.component.mjs +0 -15
- package/esm2020/lib/components/push-panel/push-panel.component.mjs +0 -43
- package/esm2020/lib/components/search-input/search-input.component.mjs +0 -87
- package/esm2020/lib/components/search-toolbar/search-toolbar.component.mjs +0 -56
- package/esm2020/lib/components/side-layout/side-layout.component.mjs +0 -23
- package/esm2020/lib/components/side-panel/side-panel.component.mjs +0 -41
- package/esm2020/lib/components/spinner-cube/spinner-cube.component.mjs +0 -31
- package/esm2020/lib/components/table/pager.component.mjs +0 -48
- package/esm2020/lib/components/tooltip/tooltip.component.mjs +0 -104
- package/esm2020/lib/components/upload-files/upload-files.component.mjs +0 -59
- package/esm2020/lib/components/value-editable/simple-select.component.mjs +0 -29
- package/esm2020/lib/components/wizard/wizard.component.mjs +0 -152
- package/esm2020/lib/directives/anchor.directive.mjs +0 -27
- package/esm2020/lib/directives/drag-and-drop-files.directive.mjs +0 -82
- package/esm2020/lib/directives/dynamic-component/component-descriptor.model.mjs +0 -15
- package/esm2020/lib/directives/dynamic-component/dynamic-component.directive.mjs +0 -58
- package/esm2020/lib/directives/dynamictemplate.directive.mjs +0 -83
- package/esm2020/lib/directives/object-url.directive.mjs +0 -28
- package/esm2020/lib/ngx-ode-ui.module.mjs +0 -282
- package/esm2020/lib/pipes/bytes.pipe.mjs +0 -20
- package/esm2020/lib/pipes/filter.pipe.mjs +0 -97
- package/esm2020/lib/pipes/flattenObjArray.pipe.mjs +0 -35
- package/esm2020/lib/pipes/keys.pipe.mjs +0 -20
- package/esm2020/lib/pipes/length.pipe.mjs +0 -17
- package/esm2020/lib/pipes/limit.pipe.mjs +0 -17
- package/esm2020/lib/pipes/localizedDate.pipe.mjs +0 -23
- package/esm2020/lib/pipes/orderBy.pipe.mjs +0 -161
- package/esm2020/lib/pipes/replace.pipe.mjs +0 -20
- package/esm2020/lib/pipes/store.pipe.mjs +0 -17
- package/esm2020/lib/services/dynamicModuleImports.service.mjs +0 -13
- package/esm2020/lib/services/inputFile.service.mjs +0 -56
- package/esm2020/lib/services/labels.service.mjs +0 -32
- package/esm2020/lib/services/spinner.service.mjs +0 -76
- package/esm2020/lib/utils/math.mjs +0 -19
- package/esm2020/lib/utils/string.mjs +0 -11
- package/esm2020/lib/utils/testing.mjs +0 -7
- package/esm2020/ngx-ode-ui.mjs +0 -5
- package/esm2020/public-api.mjs +0 -57
- package/fesm2015/ngx-ode-ui.mjs +0 -2954
- package/fesm2015/ngx-ode-ui.mjs.map +0 -1
- package/fesm2020/ngx-ode-ui.mjs +0 -2952
- package/fesm2020/ngx-ode-ui.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/pipes/replace.pipe.d.ts +0 -8
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnInit, Injector } from '@angular/core';
|
|
2
2
|
import { OdeComponent } from 'ngx-ode-core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare type MessageType = 'info' | 'success' | 'warning' | 'danger';
|
|
5
4
|
export declare const icons: {
|
|
6
5
|
info: string;
|
|
@@ -14,22 +13,19 @@ export declare class MessageBoxComponent extends OdeComponent implements OnInit
|
|
|
14
13
|
type: MessageType;
|
|
15
14
|
header: string;
|
|
16
15
|
private _messages;
|
|
17
|
-
|
|
18
|
-
get messages(): (string | [string, {}])[];
|
|
16
|
+
messages: (string | [string, {}])[];
|
|
19
17
|
private _position;
|
|
20
|
-
|
|
18
|
+
position: 'absolute' | 'inherit';
|
|
21
19
|
/**
|
|
22
20
|
* `gravity` set the relative position of the message box if its position is 'absolute'.
|
|
23
21
|
* No effect when position is 'inherit'.
|
|
24
22
|
*/
|
|
25
23
|
gravity: 'left' | 'right';
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
readonly isGravityLeft: boolean;
|
|
25
|
+
readonly isGravityRight: boolean;
|
|
28
26
|
hidden: boolean;
|
|
29
27
|
hideEvent: EventEmitter<void>;
|
|
30
28
|
canHide(): boolean;
|
|
31
29
|
hide(): void;
|
|
32
30
|
ngOnInit(): void;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MessageBoxComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MessageBoxComponent, "message-box", never, { "type": "type"; "header": "header"; "messages": "messages"; "position": "position"; "gravity": "gravity"; }, { "hideEvent": "onHide"; }, never, never, false>;
|
|
35
31
|
}
|
|
@@ -3,7 +3,6 @@ import { OnInit, Injector } from '@angular/core';
|
|
|
3
3
|
import { MessageType } from '../message-box/message-box.component';
|
|
4
4
|
import { DynamicComponentDirective } from '../../directives/dynamic-component/dynamic-component.directive';
|
|
5
5
|
import { ComponentDescriptor } from '../../directives/dynamic-component/component-descriptor.model';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class MessageStickerComponent extends OdeComponent implements OnInit {
|
|
8
7
|
type: MessageType;
|
|
9
8
|
header: string;
|
|
@@ -20,6 +19,4 @@ export declare class MessageStickerComponent extends OdeComponent implements OnI
|
|
|
20
19
|
ngOnInit(): void;
|
|
21
20
|
newMessageBox(): ComponentDescriptor;
|
|
22
21
|
loadMessageBox(): void;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MessageStickerComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MessageStickerComponent, "ode-message-sticker", never, { "type": "type"; "header": "header"; "messages": "messages"; "gravity": "gravity"; }, {}, never, never, false>;
|
|
25
22
|
}
|
|
@@ -2,7 +2,6 @@ import { ElementRef, Injector } from '@angular/core';
|
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { SelectOption } from '../multi-select/multi-select.component';
|
|
4
4
|
import { OdeComponent } from 'ngx-ode-core';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class MonoSelectComponent<K> extends OdeComponent implements ControlValueAccessor {
|
|
7
6
|
private elementRef;
|
|
8
7
|
placeholder: string;
|
|
@@ -22,6 +21,4 @@ export declare class MonoSelectComponent<K> extends OdeComponent implements Cont
|
|
|
22
21
|
registerOnTouched(fn: any): void;
|
|
23
22
|
setDisabledState(isDisabled: boolean): void;
|
|
24
23
|
writeValue(obj: K): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MonoSelectComponent<any>, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MonoSelectComponent<any>, "ode-mono-select", never, { "placeholder": "placeholder"; "options": "options"; "trackByFn": "trackByFn"; "translateOptions": "translateOptions"; "disabled": "disabled"; }, {}, never, never, false>;
|
|
27
24
|
}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, Injector } from '@angular/core';
|
|
2
2
|
import { LabelsService } from '../../services/labels.service';
|
|
3
3
|
import { OdeComponent } from 'ngx-ode-core';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class MultiComboComponent extends OdeComponent {
|
|
6
5
|
private _eref;
|
|
7
6
|
private labelsService;
|
|
8
7
|
constructor(_eref: ElementRef, labelsService: LabelsService, injector: Injector);
|
|
9
|
-
|
|
8
|
+
comboModel: any;
|
|
10
9
|
filteredModel: any[];
|
|
11
10
|
title: string;
|
|
12
11
|
display: string | Function;
|
|
@@ -38,6 +37,4 @@ export declare class MultiComboComponent extends OdeComponent {
|
|
|
38
37
|
displayItem(item: any): any;
|
|
39
38
|
onClick(event: any): boolean;
|
|
40
39
|
getFilter(): {};
|
|
41
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MultiComboComponent, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiComboComponent, "ode-multi-combo", never, { "comboModel": "comboModel"; "filteredModel": "outputModel"; "title": "title"; "display": "display"; "filter": "filter"; "orderBy": "orderBy"; "reverse": "reverse"; "maxSelected": "max"; "disabled": "disabled"; }, { "onSelectItem": "onSelectItem"; "onDeselectItem": "onDeselectItem"; "filteredModelChange": "outputModelChange"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, never, false>;
|
|
43
40
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { OdeComponent } from 'ngx-ode-core';
|
|
2
2
|
import { ElementRef, Injector } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
4
|
export interface SelectOption<K> {
|
|
6
5
|
label: string;
|
|
7
6
|
value: K;
|
|
@@ -29,6 +28,4 @@ export declare class MultiSelectComponent<K> extends OdeComponent implements Con
|
|
|
29
28
|
registerOnTouched(fn: any): void;
|
|
30
29
|
setDisabledState(isDisabled: boolean): void;
|
|
31
30
|
writeValue(obj: Array<K>): void;
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent<any>, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent<any>, "ode-multi-select", never, { "label": "label"; "options": "options"; "preview": "preview"; "trackByFn": "trackByFn"; }, {}, never, never, false>;
|
|
34
31
|
}
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import { OdeComponent } from 'ngx-ode-core';
|
|
2
2
|
import { Injector } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class PanelSectionComponent extends OdeComponent {
|
|
5
4
|
sectionTitle: string;
|
|
6
5
|
folded: boolean;
|
|
7
6
|
constructor(injector: Injector);
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PanelSectionComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PanelSectionComponent, "ode-panel-section", never, { "sectionTitle": "section-title"; "folded": "folded"; }, {}, never, ["[panel-section-header-icons]", "*"], false>;
|
|
10
7
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { OdeComponent } from 'ngx-ode-core';
|
|
2
2
|
import { Injector } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class PortalComponent extends OdeComponent {
|
|
5
4
|
constructor(injector: Injector);
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PortalComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PortalComponent, "ode-portal", never, {}, {}, never, ["[header-left]", "[header-middle]", "[header-right]", "[section]", "[footer]"], false>;
|
|
8
5
|
}
|
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
import { OdeComponent } from 'ngx-ode-core';
|
|
2
2
|
import { Injector } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class PushPanelComponent extends OdeComponent {
|
|
5
4
|
constructor(injector: Injector);
|
|
6
|
-
private
|
|
5
|
+
private toggle;
|
|
7
6
|
_opened: boolean;
|
|
8
7
|
private opener;
|
|
9
8
|
private onClose;
|
|
10
9
|
private inside;
|
|
11
10
|
onClick(event: any): boolean;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PushPanelComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PushPanelComponent, "ode-push-panel", never, { "toggle": "toggle"; "opener": "opener"; }, { "onClose": "onClose"; }, never, ["[inside]", "[companion]"], false>;
|
|
14
11
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { OdeComponent } from 'ngx-ode-core';
|
|
2
2
|
import { ElementRef, EventEmitter, OnDestroy, OnInit, Renderer2, Injector } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class SearchInputComponent extends OdeComponent implements OnInit, OnDestroy {
|
|
5
4
|
private _elRef;
|
|
6
5
|
private _renderer;
|
|
@@ -9,8 +8,7 @@ export declare class SearchInputComponent extends OdeComponent implements OnInit
|
|
|
9
8
|
isSearchButtonDisabled: boolean;
|
|
10
9
|
searchInput: boolean;
|
|
11
10
|
searchSubmit: () => void;
|
|
12
|
-
|
|
13
|
-
get delay(): number;
|
|
11
|
+
delay: number;
|
|
14
12
|
private _delay;
|
|
15
13
|
onChange: EventEmitter<string>;
|
|
16
14
|
searchBox: ElementRef;
|
|
@@ -22,6 +20,4 @@ export declare class SearchInputComponent extends OdeComponent implements OnInit
|
|
|
22
20
|
ngOnDestroy(): void;
|
|
23
21
|
search(str: string): void;
|
|
24
22
|
handleSubmit(): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SearchInputComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchInputComponent, "ode-search-input", never, { "isSearchActive": "isSearchActive"; "isSearchButtonDisabled": "isSearchButtonDisabled"; "searchInput": "searchInput"; "searchSubmit": "searchSubmit"; "delay": "delay"; }, { "onChange": "onChange"; }, never, never, false>;
|
|
27
23
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, Injector } from "@angular/core";
|
|
2
2
|
import { OdeComponent } from "ngx-ode-core";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
/**
|
|
5
4
|
* Search Toolbar component.
|
|
6
5
|
* Used within List component, Search Toolbar will display following information:
|
|
@@ -32,6 +31,4 @@ export declare class SearchToolbarComponent extends OdeComponent {
|
|
|
32
31
|
constructor(injector: Injector);
|
|
33
32
|
ngOnInit(): void;
|
|
34
33
|
handleSearchTypeClick(searchTypeValue: string): void;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SearchToolbarComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchToolbarComponent, "ode-search-toolbar", never, { "label": "label"; "searchTypes": "searchTypes"; "nbItem": "nbItem"; "nbItemLabel": "nbItemLabel"; }, { "selectSearchType": "selectSearchType"; }, never, never, false>;
|
|
37
34
|
}
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import { OdeComponent } from 'ngx-ode-core';
|
|
2
2
|
import { EventEmitter, Injector } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class SideLayoutComponent extends OdeComponent {
|
|
5
4
|
showCompanion: boolean;
|
|
6
5
|
close: EventEmitter<void>;
|
|
7
6
|
constructor(injector: Injector);
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SideLayoutComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SideLayoutComponent, "ode-side-layout", never, { "showCompanion": "showCompanion"; }, { "close": "closeCompanion"; }, never, ["[side-card]", "[side-companion]"], false>;
|
|
10
7
|
}
|
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
import { OdeComponent } from 'ngx-ode-core';
|
|
2
2
|
import { ElementRef, EventEmitter, Injector } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class SidePanelComponent extends OdeComponent {
|
|
5
4
|
private elementRef;
|
|
6
5
|
opened: boolean;
|
|
7
6
|
constructor(injector: Injector, elementRef: ElementRef);
|
|
8
|
-
|
|
7
|
+
toggle: boolean;
|
|
9
8
|
opener: any;
|
|
10
9
|
onClose: EventEmitter<boolean>;
|
|
11
10
|
onClick(event: any): boolean;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SidePanelComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidePanelComponent, "ode-side-panel", never, { "toggle": "toggle"; "opener": "opener"; }, { "onClose": "onClose"; }, never, ["*"], false>;
|
|
14
11
|
}
|
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
import { OdeComponent } from 'ngx-ode-core';
|
|
2
2
|
import { OnInit, Injector } from '@angular/core';
|
|
3
3
|
import { SpinnerService } from '../../services/spinner.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class SpinnerCubeComponent extends OdeComponent implements OnInit {
|
|
6
5
|
spinner: SpinnerService;
|
|
7
|
-
|
|
8
|
-
get loadingProp(): string;
|
|
6
|
+
loadingProp: string;
|
|
9
7
|
private _loadingProp;
|
|
10
8
|
constructor(injector: Injector, spinner: SpinnerService);
|
|
11
9
|
ngOnInit(): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerCubeComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SpinnerCubeComponent, "ode-spinner-cube", never, { "loadingProp": "waitingFor"; }, {}, never, never, false>;
|
|
14
10
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { OdeComponent } from 'ngx-ode-core';
|
|
2
2
|
import { EventEmitter, OnInit, Injector } from '@angular/core';
|
|
3
3
|
import { BundlesService } from 'ngx-ode-sijil';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class PagerComponent extends OdeComponent implements OnInit {
|
|
6
5
|
private bundles;
|
|
7
6
|
constructor(injector: Injector, bundles: BundlesService);
|
|
@@ -14,6 +13,4 @@ export declare class PagerComponent extends OdeComponent implements OnInit {
|
|
|
14
13
|
previousPage(): void;
|
|
15
14
|
nextPage(): void;
|
|
16
15
|
offsetLimit(): number;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PagerComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PagerComponent, "ode-pager", never, { "limit": "limit"; "offset": "offset"; "total": "total"; }, { "offsetChange": "offsetChange"; }, never, never, false>;
|
|
19
16
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { OdeComponent } from 'ngx-ode-core';
|
|
2
2
|
import { ElementRef, Renderer2, Injector } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class TooltipComponent extends OdeComponent {
|
|
5
4
|
private ref;
|
|
6
5
|
private renderer;
|
|
@@ -14,6 +13,4 @@ export declare class TooltipComponent extends OdeComponent {
|
|
|
14
13
|
onTransitionEnd: () => void;
|
|
15
14
|
private getPosition;
|
|
16
15
|
ngOnDestroy(): void;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "[tooltip]", never, { "tooltipContents": "tooltip"; "position": "position"; "offset": "offset"; }, {}, never, ["*"], false>;
|
|
19
16
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { OdeComponent } from 'ngx-ode-core';
|
|
2
2
|
import { ElementRef, EventEmitter, OnInit, Injector } from '@angular/core';
|
|
3
3
|
import { InputFileService } from '../../services/inputFile.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class UploadFilesComponent extends OdeComponent implements OnInit {
|
|
6
5
|
inputFileService: InputFileService;
|
|
7
6
|
fileSrc: string;
|
|
@@ -18,6 +17,4 @@ export declare class UploadFilesComponent extends OdeComponent implements OnInit
|
|
|
18
17
|
onClickDropzoneInput($event: Event): void;
|
|
19
18
|
onDragAndDrop($event: File[]): void;
|
|
20
19
|
onInvalidDragAndDrop($event: string): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UploadFilesComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UploadFilesComponent, "ode-upload-files", never, { "fileSrc": "fileSrc"; "allowedExtensions": "allowedExtensions"; "maxFilesNumber": "maxFilesNumber"; "disabled": "disabled"; }, { "upload": "upload"; "invalidUpload": "invalidUpload"; }, never, never, false>;
|
|
23
20
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { OdeComponent } from 'ngx-ode-core';
|
|
2
2
|
import { EventEmitter, Injector } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export interface Option {
|
|
5
4
|
value: string;
|
|
6
5
|
label: string;
|
|
@@ -14,6 +13,4 @@ export declare class SimpleSelectComponent extends OdeComponent {
|
|
|
14
13
|
ignoreOption: Option[];
|
|
15
14
|
selectChange: EventEmitter<string>;
|
|
16
15
|
constructor(injector: Injector);
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SimpleSelectComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SimpleSelectComponent, "ode-simple-select", never, { "selected": "selected"; "model": "model"; "options": "options"; "ignoreOption": "ignoreOption"; }, { "selectChange": "selectChange"; }, never, never, false>;
|
|
19
16
|
}
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
import { OdeComponent } from 'ngx-ode-core';
|
|
2
2
|
import { AfterContentInit, EventEmitter, QueryList, Injector } from '@angular/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class StepComponent {
|
|
5
4
|
name: string;
|
|
6
5
|
isActived: boolean;
|
|
7
6
|
hasError: boolean;
|
|
8
7
|
isFinished: boolean;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StepComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepComponent, "ode-step", never, { "name": "name"; "isActived": "isActived"; }, {}, never, ["*"], false>;
|
|
11
8
|
}
|
|
12
9
|
export declare class WizardComponent extends OdeComponent implements AfterContentInit {
|
|
13
10
|
cancel: EventEmitter<{}>;
|
|
@@ -23,6 +20,4 @@ export declare class WizardComponent extends OdeComponent implements AfterConten
|
|
|
23
20
|
onNextStep(): void;
|
|
24
21
|
doNextStep(error?: boolean): void;
|
|
25
22
|
ngAfterContentInit(): void;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WizardComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WizardComponent, "ode-wizard", never, {}, { "cancel": "cancel"; "previousStep": "previousStep"; "nextStep": "nextStep"; }, ["steps"], ["ode-step"], false>;
|
|
28
23
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
1
|
export declare class AnchorDirective {
|
|
3
2
|
anchor: string;
|
|
4
3
|
offset: number;
|
|
5
4
|
onClick(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AnchorDirective, never>;
|
|
7
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AnchorDirective, "[anchor]", never, { "anchor": "anchor"; "offset": "offset"; }, {}, never, never, false>;
|
|
8
5
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { InputFileService } from '../services/inputFile.service';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class DragAndDropFilesDirective {
|
|
5
4
|
private inputFileService;
|
|
6
5
|
allowedExtensions: Array<string>;
|
|
@@ -16,6 +15,4 @@ export declare class DragAndDropFilesDirective {
|
|
|
16
15
|
onDrop(event: any): void;
|
|
17
16
|
private resetColors;
|
|
18
17
|
private highlightColors;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropFilesDirective, never>;
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DragAndDropFilesDirective, "[dragAndDropFiles]", never, { "allowedExtensions": "allowedExtensions"; "maxFilesNumber": "maxFilesNumber"; "disabled": "disabled"; }, { "dragAndDrop": "dragAndDrop"; "invalidDragAndDrop": "invalidDragAndDrop"; }, never, never, false>;
|
|
21
18
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ComponentFactoryResolver, ComponentRef, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComponentDescriptor } from './component-descriptor.model';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
/**
|
|
5
4
|
* Dynamically load the component describe with the @input dynamic-component
|
|
6
5
|
*/
|
|
@@ -13,6 +12,4 @@ export declare class DynamicComponentDirective {
|
|
|
13
12
|
load(data?: any): void;
|
|
14
13
|
isLoaded(): boolean;
|
|
15
14
|
destroy(): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentDirective, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentDirective, "[dynamic-component]", never, { "componentDesc": "dynamic-component"; }, {}, never, never, false>;
|
|
18
15
|
}
|
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
import { Compiler, ElementRef, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { DynamicModuleImportsService } from '../services/dynamicModuleImports.service';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class DynamicTemplateDirective {
|
|
5
4
|
private elementRef;
|
|
6
5
|
private viewContainer;
|
|
7
6
|
private compiler;
|
|
8
7
|
private dynamicModuleImports;
|
|
9
8
|
constructor(elementRef: ElementRef, viewContainer: ViewContainerRef, compiler: Compiler, dynamicModuleImports: DynamicModuleImportsService);
|
|
10
|
-
|
|
9
|
+
templateContents: string;
|
|
11
10
|
private _html;
|
|
12
11
|
private _selector;
|
|
13
12
|
private context;
|
|
14
13
|
private _createDynamicComponent;
|
|
15
14
|
private _createDynamicModule;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTemplateDirective, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicTemplateDirective, "dynamic-template", never, { "templateContents": "template"; "context": "context"; }, {}, never, never, false>;
|
|
18
15
|
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
2
|
/**
|
|
4
3
|
*
|
|
5
4
|
* see https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL
|
|
@@ -9,6 +8,4 @@ export declare class ObjectURLDirective {
|
|
|
9
8
|
constructor(elementRef: ElementRef);
|
|
10
9
|
private objectURL;
|
|
11
10
|
create(blob: Blob, filename: string): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectURLDirective, never>;
|
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ObjectURLDirective, "[object-url]", never, {}, {}, never, never, false>;
|
|
14
11
|
}
|
|
@@ -1,56 +1,5 @@
|
|
|
1
1
|
import { ModuleWithProviders, Provider } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "./components/datepicker/datepicker.component";
|
|
4
|
-
import * as i2 from "./components/form-errors/form-errors.component";
|
|
5
|
-
import * as i3 from "./components/form-field/form-field.component";
|
|
6
|
-
import * as i4 from "./components/item-tree/item-tree.component";
|
|
7
|
-
import * as i5 from "./components/lightbox/lightbox.component";
|
|
8
|
-
import * as i6 from "./components/lightbox-confirm/lightbox-confirm.component";
|
|
9
|
-
import * as i7 from "./components/list/list.component";
|
|
10
|
-
import * as i8 from "./components/list-checkable/list-checkable.component";
|
|
11
|
-
import * as i9 from "./components/mono-select/mono-select.component";
|
|
12
|
-
import * as i10 from "./components/multi-select/multi-select.component";
|
|
13
|
-
import * as i11 from "./components/multi-combo/multi-combo.component";
|
|
14
|
-
import * as i12 from "./components/panel-section/panel-section.component";
|
|
15
|
-
import * as i13 from "./components/portal/portal.component";
|
|
16
|
-
import * as i14 from "./components/push-panel/push-panel.component";
|
|
17
|
-
import * as i15 from "./components/search-input/search-input.component";
|
|
18
|
-
import * as i16 from "./components/side-layout/side-layout.component";
|
|
19
|
-
import * as i17 from "./components/side-panel/side-panel.component";
|
|
20
|
-
import * as i18 from "./components/wizard/wizard.component";
|
|
21
|
-
import * as i19 from "./components/tooltip/tooltip.component";
|
|
22
|
-
import * as i20 from "./components/value-editable/simple-select.component";
|
|
23
|
-
import * as i21 from "./components/message-sticker/message-sticker.component";
|
|
24
|
-
import * as i22 from "./components/message-box/message-box.component";
|
|
25
|
-
import * as i23 from "./components/upload-files/upload-files.component";
|
|
26
|
-
import * as i24 from "./components/spinner-cube/spinner-cube.component";
|
|
27
|
-
import * as i25 from "./components/table/pager.component";
|
|
28
|
-
import * as i26 from "./components/ellipsis/ellipsis.component";
|
|
29
|
-
import * as i27 from "./components/dropdown/dropdown.component";
|
|
30
|
-
import * as i28 from "./components/search-toolbar/search-toolbar.component";
|
|
31
|
-
import * as i29 from "./directives/anchor.directive";
|
|
32
|
-
import * as i30 from "./directives/dynamictemplate.directive";
|
|
33
|
-
import * as i31 from "./directives/dynamic-component/dynamic-component.directive";
|
|
34
|
-
import * as i32 from "./directives/drag-and-drop-files.directive";
|
|
35
|
-
import * as i33 from "./directives/object-url.directive";
|
|
36
|
-
import * as i34 from "./pipes/filter.pipe";
|
|
37
|
-
import * as i35 from "./pipes/flattenObjArray.pipe";
|
|
38
|
-
import * as i36 from "./pipes/limit.pipe";
|
|
39
|
-
import * as i37 from "./pipes/orderBy.pipe";
|
|
40
|
-
import * as i38 from "./pipes/store.pipe";
|
|
41
|
-
import * as i39 from "./pipes/localizedDate.pipe";
|
|
42
|
-
import * as i40 from "./pipes/bytes.pipe";
|
|
43
|
-
import * as i41 from "./pipes/keys.pipe";
|
|
44
|
-
import * as i42 from "./pipes/length.pipe";
|
|
45
|
-
import * as i43 from "./pipes/replace.pipe";
|
|
46
|
-
import * as i44 from "@angular/common";
|
|
47
|
-
import * as i45 from "@angular/forms";
|
|
48
|
-
import * as i46 from "ngx-ode-sijil";
|
|
49
|
-
import * as i47 from "ngx-infinite-scroll";
|
|
50
2
|
export declare class NgxOdeUiModule {
|
|
51
|
-
static forRoot(labelsProvider: Provider): ModuleWithProviders
|
|
52
|
-
static forChild(): ModuleWithProviders
|
|
53
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgxOdeUiModule, never>;
|
|
54
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NgxOdeUiModule, [typeof i1.DatepickerComponent, typeof i2.FormErrorsComponent, typeof i3.FormFieldComponent, typeof i4.ItemTreeComponent, typeof i5.LightBoxComponent, typeof i6.LightboxConfirmComponent, typeof i7.ListComponent, typeof i8.ListCheckableComponent, typeof i9.MonoSelectComponent, typeof i10.MultiSelectComponent, typeof i11.MultiComboComponent, typeof i12.PanelSectionComponent, typeof i13.PortalComponent, typeof i14.PushPanelComponent, typeof i15.SearchInputComponent, typeof i16.SideLayoutComponent, typeof i17.SidePanelComponent, typeof i18.StepComponent, typeof i19.TooltipComponent, typeof i18.WizardComponent, typeof i20.SimpleSelectComponent, typeof i21.MessageStickerComponent, typeof i22.MessageBoxComponent, typeof i23.UploadFilesComponent, typeof i24.SpinnerCubeComponent, typeof i25.PagerComponent, typeof i26.EllipsisComponent, typeof i27.DropdownComponent, typeof i28.SearchToolbarComponent, typeof i29.AnchorDirective, typeof i30.DynamicTemplateDirective, typeof i31.DynamicComponentDirective, typeof i32.DragAndDropFilesDirective, typeof i33.ObjectURLDirective, typeof i34.FilterPipe, typeof i35.FlattenObjectArrayPipe, typeof i36.LimitPipe, typeof i37.OrderPipe, typeof i38.StorePipe, typeof i39.LocalizedDatePipe, typeof i40.BytesPipe, typeof i41.KeysPipe, typeof i42.LengthPipe, typeof i43.ReplacePipe], [typeof i44.CommonModule, typeof i45.FormsModule, typeof i46.NgxOdeSijilModule, typeof i47.InfiniteScrollModule], [typeof i1.DatepickerComponent, typeof i2.FormErrorsComponent, typeof i3.FormFieldComponent, typeof i4.ItemTreeComponent, typeof i5.LightBoxComponent, typeof i6.LightboxConfirmComponent, typeof i7.ListComponent, typeof i8.ListCheckableComponent, typeof i9.MonoSelectComponent, typeof i10.MultiSelectComponent, typeof i11.MultiComboComponent, typeof i12.PanelSectionComponent, typeof i13.PortalComponent, typeof i14.PushPanelComponent, typeof i15.SearchInputComponent, typeof i16.SideLayoutComponent, typeof i17.SidePanelComponent, typeof i18.StepComponent, typeof i19.TooltipComponent, typeof i18.WizardComponent, typeof i20.SimpleSelectComponent, typeof i21.MessageStickerComponent, typeof i22.MessageBoxComponent, typeof i23.UploadFilesComponent, typeof i24.SpinnerCubeComponent, typeof i25.PagerComponent, typeof i26.EllipsisComponent, typeof i27.DropdownComponent, typeof i28.SearchToolbarComponent, typeof i29.AnchorDirective, typeof i30.DynamicTemplateDirective, typeof i31.DynamicComponentDirective, typeof i32.DragAndDropFilesDirective, typeof i33.ObjectURLDirective, typeof i34.FilterPipe, typeof i35.FlattenObjectArrayPipe, typeof i36.LimitPipe, typeof i37.OrderPipe, typeof i38.StorePipe, typeof i39.LocalizedDatePipe, typeof i40.BytesPipe, typeof i41.KeysPipe, typeof i42.LengthPipe, typeof i43.ReplacePipe]>;
|
|
55
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<NgxOdeUiModule>;
|
|
3
|
+
static forRoot(labelsProvider: Provider): ModuleWithProviders;
|
|
4
|
+
static forChild(): ModuleWithProviders;
|
|
56
5
|
}
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class BytesPipe implements PipeTransform {
|
|
4
3
|
transform(value: number, unit: number, decimal?: number): number;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BytesPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<BytesPipe, "bytes", false>;
|
|
7
4
|
}
|
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class FilterPipe implements PipeTransform {
|
|
4
3
|
private stringFullCompare;
|
|
5
4
|
private _filterString;
|
|
6
5
|
private _filterObject;
|
|
7
6
|
private _filterFunction;
|
|
8
7
|
transform(array: Array<string | Object>, by: (string | Object | Function)): any[];
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FilterPipe, never>;
|
|
10
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<FilterPipe, "filter", false>;
|
|
11
8
|
}
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
1
|
export declare class FlattenObjectArrayPipe {
|
|
3
2
|
transform(array: Array<Object>, onlyProps?: Array<String>): Object[];
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FlattenObjectArrayPipe, never>;
|
|
5
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<FlattenObjectArrayPipe, "flattenObjArray", false>;
|
|
6
3
|
}
|
package/lib/pipes/keys.pipe.d.ts
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class KeysPipe implements PipeTransform {
|
|
4
3
|
transform(obj: any, args?: string[]): any;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KeysPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<KeysPipe, "keys", false>;
|
|
7
4
|
}
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class LengthPipe implements PipeTransform {
|
|
4
3
|
transform(source: Array<any> | string): number;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LengthPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<LengthPipe, "length", false>;
|
|
7
4
|
}
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class LimitPipe implements PipeTransform {
|
|
4
3
|
transform(array: Array<any>, limit: number, offset?: number): any[];
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LimitPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<LimitPipe, "limit", false>;
|
|
7
4
|
}
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
2
|
import { BundlesService } from 'ngx-ode-sijil';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class LocalizedDatePipe implements PipeTransform {
|
|
5
4
|
private bundlesService;
|
|
6
5
|
constructor(bundlesService: BundlesService);
|
|
7
6
|
transform(value: any, pattern?: string): any;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedDatePipe, never>;
|
|
9
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<LocalizedDatePipe, "localizedDate", false>;
|
|
10
7
|
}
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class OrderPipe implements PipeTransform {
|
|
4
3
|
transform(array: any, sortPredicate: any, reverseOrder?: any, compareFn?: any): any;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OrderPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<OrderPipe, "orderBy", false>;
|
|
7
4
|
}
|
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class StorePipe implements PipeTransform {
|
|
4
3
|
transform(value: any, context: any, prop?: string): any;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StorePipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<StorePipe, "store", false>;
|
|
7
4
|
}
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class InputFileService {
|
|
4
3
|
validateFiles(files: FileList, maxFilesNumber: number, allowedExtensions: string[]): Observable<File[]>;
|
|
5
4
|
isSrcExternalUrl(src: string): boolean;
|
|
6
5
|
isSrcWorkspace(src: string): boolean;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputFileService, never>;
|
|
8
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<InputFileService>;
|
|
9
6
|
}
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
1
|
export declare class LabelsService {
|
|
3
2
|
private labels;
|
|
4
3
|
static withLabels(labels: Object): LabelsService;
|
|
5
4
|
getLabel(label: string): any;
|
|
6
5
|
mixin(labels: Object): void;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LabelsService, never>;
|
|
8
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LabelsService>;
|
|
9
6
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ApplicationRef, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class SpinnerService {
|
|
5
4
|
private appRef;
|
|
6
5
|
constructor(appRef: ApplicationRef);
|
|
@@ -8,7 +7,7 @@ export declare class SpinnerService {
|
|
|
8
7
|
private loading;
|
|
9
8
|
private timers;
|
|
10
9
|
private _trigger;
|
|
11
|
-
|
|
10
|
+
readonly trigger: Subject<unknown>;
|
|
12
11
|
isLoading(something: any, pending?: boolean): boolean;
|
|
13
12
|
perform<T>(something: any, promise: Promise<T>, timer?: number): Promise<T>;
|
|
14
13
|
load(something: any, timer?: number): void;
|
|
@@ -18,6 +17,4 @@ export declare class SpinnerService {
|
|
|
18
17
|
binding?: any;
|
|
19
18
|
cdRef?: ChangeDetectorRef;
|
|
20
19
|
}, ...args: any[]) => any;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerService, never>;
|
|
22
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<SpinnerService>;
|
|
23
20
|
}
|
package/ngx-ode-ui.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
export { DropdownComponent as ɵa } from './lib/components/dropdown/dropdown.component';
|
|
6
|
+
export { SearchToolbarComponent as ɵb } from './lib/components/search-toolbar/search-toolbar.component';
|