ngx-ode-ui 4.6.0-dev-integration.2 → 4.6.0-dev-integration.3
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/esm2020/lib/components/datepicker/datepicker.component.mjs +148 -0
- package/esm2020/lib/components/dropdown/dropdown.component.mjs +55 -0
- package/esm2020/lib/components/ellipsis/ellipsis.component.mjs +53 -0
- package/esm2020/lib/components/form-errors/form-errors.component.mjs +35 -0
- package/esm2020/lib/components/form-field/form-field.component.mjs +24 -0
- package/esm2020/lib/components/item-tree/item-tree.component.mjs +170 -0
- package/esm2020/lib/components/lightbox/lightbox.component.mjs +70 -0
- package/esm2020/lib/components/lightbox-confirm/lightbox-confirm.component.mjs +43 -0
- package/esm2020/lib/components/list/list.component.mjs +88 -0
- package/esm2020/lib/components/list-checkable/list-checkable.component.mjs +79 -0
- package/esm2020/lib/components/message-box/message-box.component.mjs +92 -0
- package/esm2020/lib/components/message-sticker/message-sticker.component.mjs +51 -0
- package/esm2020/lib/components/mono-select/mono-select.component.mjs +83 -0
- package/esm2020/lib/components/multi-combo/multi-combo.component.mjs +166 -0
- package/esm2020/lib/components/multi-select/multi-select.component.mjs +104 -0
- package/esm2020/lib/components/panel-section/panel-section.component.mjs +23 -0
- package/esm2020/lib/components/portal/portal.component.mjs +15 -0
- package/esm2020/lib/components/push-panel/push-panel.component.mjs +43 -0
- package/esm2020/lib/components/search-input/search-input.component.mjs +87 -0
- package/esm2020/lib/components/search-toolbar/search-toolbar.component.mjs +56 -0
- package/esm2020/lib/components/side-layout/side-layout.component.mjs +23 -0
- package/esm2020/lib/components/side-panel/side-panel.component.mjs +41 -0
- package/esm2020/lib/components/spinner-cube/spinner-cube.component.mjs +31 -0
- package/esm2020/lib/components/table/pager.component.mjs +48 -0
- package/esm2020/lib/components/tooltip/tooltip.component.mjs +104 -0
- package/esm2020/lib/components/upload-files/upload-files.component.mjs +59 -0
- package/esm2020/lib/components/value-editable/simple-select.component.mjs +29 -0
- package/esm2020/lib/components/wizard/wizard.component.mjs +152 -0
- package/esm2020/lib/directives/anchor.directive.mjs +27 -0
- package/esm2020/lib/directives/drag-and-drop-files.directive.mjs +82 -0
- package/esm2020/lib/directives/dynamic-component/component-descriptor.model.mjs +15 -0
- package/esm2020/lib/directives/dynamic-component/dynamic-component.directive.mjs +58 -0
- package/esm2020/lib/directives/dynamictemplate.directive.mjs +83 -0
- package/esm2020/lib/directives/object-url.directive.mjs +28 -0
- package/esm2020/lib/ngx-ode-ui.module.mjs +282 -0
- package/esm2020/lib/pipes/bytes.pipe.mjs +20 -0
- package/esm2020/lib/pipes/filter.pipe.mjs +97 -0
- package/esm2020/lib/pipes/flattenObjArray.pipe.mjs +35 -0
- package/esm2020/lib/pipes/keys.pipe.mjs +20 -0
- package/esm2020/lib/pipes/length.pipe.mjs +17 -0
- package/esm2020/lib/pipes/limit.pipe.mjs +17 -0
- package/esm2020/lib/pipes/localizedDate.pipe.mjs +23 -0
- package/esm2020/lib/pipes/orderBy.pipe.mjs +161 -0
- package/esm2020/lib/pipes/replace.pipe.mjs +20 -0
- package/esm2020/lib/pipes/store.pipe.mjs +17 -0
- package/esm2020/lib/services/dynamicModuleImports.service.mjs +13 -0
- package/esm2020/lib/services/inputFile.service.mjs +56 -0
- package/esm2020/lib/services/labels.service.mjs +32 -0
- package/esm2020/lib/services/spinner.service.mjs +76 -0
- package/esm2020/lib/utils/math.mjs +19 -0
- package/esm2020/lib/utils/string.mjs +11 -0
- package/esm2020/lib/utils/testing.mjs +7 -0
- package/esm2020/ngx-ode-ui.mjs +5 -0
- package/esm2020/public-api.mjs +57 -0
- package/fesm2015/ngx-ode-ui.mjs +2954 -0
- package/fesm2015/ngx-ode-ui.mjs.map +1 -0
- package/fesm2020/ngx-ode-ui.mjs +2952 -0
- package/fesm2020/ngx-ode-ui.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/datepicker/datepicker.component.d.ts +7 -2
- package/lib/components/dropdown/dropdown.component.d.ts +3 -0
- package/lib/components/ellipsis/ellipsis.component.d.ts +4 -1
- package/lib/components/form-errors/form-errors.component.d.ts +3 -0
- package/lib/components/form-field/form-field.component.d.ts +3 -0
- package/lib/components/item-tree/item-tree.component.d.ts +5 -1
- package/lib/components/lightbox/lightbox.component.d.ts +5 -1
- package/lib/components/lightbox-confirm/lightbox-confirm.component.d.ts +3 -0
- package/lib/components/list/list.component.d.ts +5 -1
- package/lib/components/list-checkable/list-checkable.component.d.ts +5 -1
- package/lib/components/message-box/message-box.component.d.ts +8 -4
- package/lib/components/message-sticker/message-sticker.component.d.ts +3 -0
- package/lib/components/mono-select/mono-select.component.d.ts +3 -0
- package/lib/components/multi-combo/multi-combo.component.d.ts +4 -1
- package/lib/components/multi-select/multi-select.component.d.ts +3 -0
- package/lib/components/panel-section/panel-section.component.d.ts +3 -0
- package/lib/components/portal/portal.component.d.ts +3 -0
- package/lib/components/push-panel/push-panel.component.d.ts +4 -1
- package/lib/components/search-input/search-input.component.d.ts +5 -1
- package/lib/components/search-toolbar/search-toolbar.component.d.ts +3 -0
- package/lib/components/side-layout/side-layout.component.d.ts +3 -0
- package/lib/components/side-panel/side-panel.component.d.ts +4 -1
- package/lib/components/spinner-cube/spinner-cube.component.d.ts +5 -1
- package/lib/components/table/pager.component.d.ts +3 -0
- package/lib/components/tooltip/tooltip.component.d.ts +3 -0
- package/lib/components/upload-files/upload-files.component.d.ts +3 -0
- package/lib/components/value-editable/simple-select.component.d.ts +3 -0
- package/lib/components/wizard/wizard.component.d.ts +5 -0
- package/lib/directives/anchor.directive.d.ts +3 -0
- package/lib/directives/drag-and-drop-files.directive.d.ts +3 -0
- package/lib/directives/dynamic-component/dynamic-component.directive.d.ts +3 -0
- package/lib/directives/dynamictemplate.directive.d.ts +4 -1
- package/lib/directives/object-url.directive.d.ts +3 -0
- package/lib/ngx-ode-ui.module.d.ts +53 -2
- package/lib/pipes/bytes.pipe.d.ts +3 -0
- package/lib/pipes/filter.pipe.d.ts +3 -0
- package/lib/pipes/flattenObjArray.pipe.d.ts +3 -0
- package/lib/pipes/keys.pipe.d.ts +3 -0
- package/lib/pipes/length.pipe.d.ts +3 -0
- package/lib/pipes/limit.pipe.d.ts +3 -0
- package/lib/pipes/localizedDate.pipe.d.ts +3 -0
- package/lib/pipes/orderBy.pipe.d.ts +3 -0
- package/lib/pipes/replace.pipe.d.ts +8 -0
- package/lib/pipes/store.pipe.d.ts +3 -0
- package/lib/services/dynamicModuleImports.service.d.ts +3 -0
- package/lib/services/inputFile.service.d.ts +3 -0
- package/lib/services/labels.service.d.ts +3 -0
- package/lib/services/spinner.service.d.ts +4 -1
- package/package.json +29 -17
- package/public-api.d.ts +3 -0
- package/CHANGELOG.md +0 -14
- package/bundles/ngx-ode-ui.umd.js +0 -5804
- package/bundles/ngx-ode-ui.umd.js.map +0 -1
- package/bundles/ngx-ode-ui.umd.min.js +0 -17
- package/bundles/ngx-ode-ui.umd.min.js.map +0 -1
- package/esm2015/lib/components/datepicker/datepicker.component.js +0 -261
- package/esm2015/lib/components/dropdown/dropdown.component.js +0 -76
- package/esm2015/lib/components/ellipsis/ellipsis.component.js +0 -98
- package/esm2015/lib/components/form-errors/form-errors.component.js +0 -65
- package/esm2015/lib/components/form-field/form-field.component.js +0 -40
- package/esm2015/lib/components/item-tree/item-tree.component.js +0 -289
- package/esm2015/lib/components/lightbox/lightbox.component.js +0 -129
- package/esm2015/lib/components/lightbox-confirm/lightbox-confirm.component.js +0 -65
- package/esm2015/lib/components/list/list.component.js +0 -140
- package/esm2015/lib/components/list-checkable/list-checkable.component.js +0 -137
- package/esm2015/lib/components/message-box/message-box.component.js +0 -153
- package/esm2015/lib/components/message-sticker/message-sticker.component.js +0 -81
- package/esm2015/lib/components/mono-select/mono-select.component.js +0 -164
- package/esm2015/lib/components/multi-combo/multi-combo.component.js +0 -255
- package/esm2015/lib/components/multi-select/multi-select.component.js +0 -214
- package/esm2015/lib/components/panel-section/panel-section.component.js +0 -38
- package/esm2015/lib/components/portal/portal.component.js +0 -27
- package/esm2015/lib/components/push-panel/push-panel.component.js +0 -81
- package/esm2015/lib/components/search-input/search-input.component.js +0 -176
- package/esm2015/lib/components/search-toolbar/search-toolbar.component.js +0 -84
- package/esm2015/lib/components/side-layout/side-layout.component.js +0 -39
- package/esm2015/lib/components/side-panel/side-panel.component.js +0 -76
- package/esm2015/lib/components/spinner-cube/spinner-cube.component.js +0 -67
- package/esm2015/lib/components/table/pager.component.js +0 -95
- package/esm2015/lib/components/tooltip/tooltip.component.js +0 -172
- package/esm2015/lib/components/upload-files/upload-files.component.js +0 -112
- package/esm2015/lib/components/value-editable/simple-select.component.js +0 -57
- package/esm2015/lib/components/wizard/wizard.component.js +0 -225
- package/esm2015/lib/directives/anchor.directive.js +0 -34
- package/esm2015/lib/directives/drag-and-drop-files.directive.js +0 -126
- package/esm2015/lib/directives/dynamic-component/component-descriptor.model.js +0 -34
- package/esm2015/lib/directives/dynamic-component/dynamic-component.directive.js +0 -100
- package/esm2015/lib/directives/dynamictemplate.directive.js +0 -159
- package/esm2015/lib/directives/object-url.directive.js +0 -53
- package/esm2015/lib/ngx-ode-ui.module.js +0 -188
- package/esm2015/lib/pipes/bytes.pipe.js +0 -27
- package/esm2015/lib/pipes/filter.pipe.js +0 -141
- package/esm2015/lib/pipes/flattenObjArray.pipe.js +0 -52
- package/esm2015/lib/pipes/keys.pipe.js +0 -27
- package/esm2015/lib/pipes/length.pipe.js +0 -22
- package/esm2015/lib/pipes/limit.pipe.js +0 -24
- package/esm2015/lib/pipes/localizedDate.pipe.js +0 -44
- package/esm2015/lib/pipes/orderBy.pipe.js +0 -269
- package/esm2015/lib/pipes/store.pipe.js +0 -24
- package/esm2015/lib/services/dynamicModuleImports.service.js +0 -19
- package/esm2015/lib/services/inputFile.service.js +0 -80
- package/esm2015/lib/services/labels.service.js +0 -54
- package/esm2015/lib/services/spinner.service.js +0 -163
- package/esm2015/lib/utils/math.js +0 -49
- package/esm2015/lib/utils/string.js +0 -29
- package/esm2015/lib/utils/testing.js +0 -20
- package/esm2015/ngx-ode-ui.js +0 -12
- package/esm2015/public-api.js +0 -59
- package/esm5/lib/components/datepicker/datepicker.component.js +0 -292
- package/esm5/lib/components/dropdown/dropdown.component.js +0 -81
- package/esm5/lib/components/ellipsis/ellipsis.component.js +0 -106
- package/esm5/lib/components/form-errors/form-errors.component.js +0 -73
- package/esm5/lib/components/form-field/form-field.component.js +0 -41
- package/esm5/lib/components/item-tree/item-tree.component.js +0 -345
- package/esm5/lib/components/lightbox/lightbox.component.js +0 -141
- package/esm5/lib/components/lightbox-confirm/lightbox-confirm.component.js +0 -67
- package/esm5/lib/components/list/list.component.js +0 -146
- package/esm5/lib/components/list-checkable/list-checkable.component.js +0 -148
- package/esm5/lib/components/message-box/message-box.component.js +0 -190
- package/esm5/lib/components/message-sticker/message-sticker.component.js +0 -92
- package/esm5/lib/components/mono-select/mono-select.component.js +0 -192
- package/esm5/lib/components/multi-combo/multi-combo.component.js +0 -294
- package/esm5/lib/components/multi-select/multi-select.component.js +0 -258
- package/esm5/lib/components/panel-section/panel-section.component.js +0 -40
- package/esm5/lib/components/portal/portal.component.js +0 -28
- package/esm5/lib/components/push-panel/push-panel.component.js +0 -91
- package/esm5/lib/components/search-input/search-input.component.js +0 -199
- package/esm5/lib/components/search-toolbar/search-toolbar.component.js +0 -93
- package/esm5/lib/components/side-layout/side-layout.component.js +0 -41
- package/esm5/lib/components/side-panel/side-panel.component.js +0 -85
- package/esm5/lib/components/spinner-cube/spinner-cube.component.js +0 -76
- package/esm5/lib/components/table/pager.component.js +0 -113
- package/esm5/lib/components/tooltip/tooltip.component.js +0 -188
- package/esm5/lib/components/upload-files/upload-files.component.js +0 -133
- package/esm5/lib/components/value-editable/simple-select.component.js +0 -59
- package/esm5/lib/components/wizard/wizard.component.js +0 -161
- package/esm5/lib/directives/anchor.directive.js +0 -39
- package/esm5/lib/directives/drag-and-drop-files.directive.js +0 -146
- package/esm5/lib/directives/dynamic-component/component-descriptor.model.js +0 -44
- package/esm5/lib/directives/dynamic-component/dynamic-component.directive.js +0 -109
- package/esm5/lib/directives/dynamictemplate.directive.js +0 -175
- package/esm5/lib/directives/object-url.directive.js +0 -62
- package/esm5/lib/ngx-ode-ui.module.js +0 -199
- package/esm5/lib/pipes/bytes.pipe.js +0 -37
- package/esm5/lib/pipes/filter.pipe.js +0 -179
- package/esm5/lib/pipes/flattenObjArray.pipe.js +0 -62
- package/esm5/lib/pipes/keys.pipe.js +0 -36
- package/esm5/lib/pipes/length.pipe.js +0 -30
- package/esm5/lib/pipes/limit.pipe.js +0 -35
- package/esm5/lib/pipes/localizedDate.pipe.js +0 -49
- package/esm5/lib/pipes/orderBy.pipe.js +0 -280
- package/esm5/lib/pipes/store.pipe.js +0 -35
- package/esm5/lib/services/dynamicModuleImports.service.js +0 -21
- package/esm5/lib/services/inputFile.service.js +0 -98
- package/esm5/lib/services/labels.service.js +0 -68
- package/esm5/lib/services/spinner.service.js +0 -195
- package/esm5/lib/utils/math.js +0 -49
- package/esm5/lib/utils/string.js +0 -29
- package/esm5/lib/utils/testing.js +0 -20
- package/esm5/ngx-ode-ui.js +0 -12
- package/esm5/public-api.js +0 -59
- package/fesm2015/ngx-ode-ui.js +0 -5027
- package/fesm2015/ngx-ode-ui.js.map +0 -1
- package/fesm5/ngx-ode-ui.js +0 -5560
- package/fesm5/ngx-ode-ui.js.map +0 -1
- package/ngx-ode-ui.d.ts +0 -6
- package/ngx-ode-ui.metadata.json +0 -1
|
@@ -1,5 +1,56 @@
|
|
|
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";
|
|
2
50
|
export declare class NgxOdeUiModule {
|
|
3
|
-
static forRoot(labelsProvider: Provider): ModuleWithProviders
|
|
4
|
-
static forChild(): ModuleWithProviders
|
|
51
|
+
static forRoot(labelsProvider: Provider): ModuleWithProviders<NgxOdeUiModule>;
|
|
52
|
+
static forChild(): ModuleWithProviders<NgxOdeUiModule>;
|
|
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>;
|
|
5
56
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class BytesPipe implements PipeTransform {
|
|
3
4
|
transform(value: number, unit: number, decimal?: number): number;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BytesPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<BytesPipe, "bytes", false>;
|
|
4
7
|
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class FilterPipe implements PipeTransform {
|
|
3
4
|
private stringFullCompare;
|
|
4
5
|
private _filterString;
|
|
5
6
|
private _filterObject;
|
|
6
7
|
private _filterFunction;
|
|
7
8
|
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>;
|
|
8
11
|
}
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class FlattenObjectArrayPipe {
|
|
2
3
|
transform(array: Array<Object>, onlyProps?: Array<String>): Object[];
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlattenObjectArrayPipe, never>;
|
|
5
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FlattenObjectArrayPipe, "flattenObjArray", false>;
|
|
3
6
|
}
|
package/lib/pipes/keys.pipe.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class KeysPipe implements PipeTransform {
|
|
3
4
|
transform(obj: any, args?: string[]): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KeysPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<KeysPipe, "keys", false>;
|
|
4
7
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class LengthPipe implements PipeTransform {
|
|
3
4
|
transform(source: Array<any> | string): number;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LengthPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<LengthPipe, "length", false>;
|
|
4
7
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class LimitPipe implements PipeTransform {
|
|
3
4
|
transform(array: Array<any>, limit: number, offset?: number): any[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LimitPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<LimitPipe, "limit", false>;
|
|
4
7
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
2
|
import { BundlesService } from 'ngx-ode-sijil';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class LocalizedDatePipe implements PipeTransform {
|
|
4
5
|
private bundlesService;
|
|
5
6
|
constructor(bundlesService: BundlesService);
|
|
6
7
|
transform(value: any, pattern?: string): any;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedDatePipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<LocalizedDatePipe, "localizedDate", false>;
|
|
7
10
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class OrderPipe implements PipeTransform {
|
|
3
4
|
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>;
|
|
4
7
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ReplacePipe implements PipeTransform {
|
|
4
|
+
transform(value: string, strToReplace: string, replacementStr: string | number): string;
|
|
5
|
+
private escapeStr;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReplacePipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ReplacePipe, "replace", false>;
|
|
8
|
+
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class StorePipe implements PipeTransform {
|
|
3
4
|
transform(value: any, context: any, prop?: string): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StorePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<StorePipe, "store", false>;
|
|
4
7
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class InputFileService {
|
|
3
4
|
validateFiles(files: FileList, maxFilesNumber: number, allowedExtensions: string[]): Observable<File[]>;
|
|
4
5
|
isSrcExternalUrl(src: string): boolean;
|
|
5
6
|
isSrcWorkspace(src: string): boolean;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputFileService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<InputFileService>;
|
|
6
9
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class LabelsService {
|
|
2
3
|
private labels;
|
|
3
4
|
static withLabels(labels: Object): LabelsService;
|
|
4
5
|
getLabel(label: string): any;
|
|
5
6
|
mixin(labels: Object): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LabelsService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LabelsService>;
|
|
6
9
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ApplicationRef, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class SpinnerService {
|
|
4
5
|
private appRef;
|
|
5
6
|
constructor(appRef: ApplicationRef);
|
|
@@ -7,7 +8,7 @@ export declare class SpinnerService {
|
|
|
7
8
|
private loading;
|
|
8
9
|
private timers;
|
|
9
10
|
private _trigger;
|
|
10
|
-
|
|
11
|
+
get trigger(): Subject<unknown>;
|
|
11
12
|
isLoading(something: any, pending?: boolean): boolean;
|
|
12
13
|
perform<T>(something: any, promise: Promise<T>, timer?: number): Promise<T>;
|
|
13
14
|
load(something: any, timer?: number): void;
|
|
@@ -17,4 +18,6 @@ export declare class SpinnerService {
|
|
|
17
18
|
binding?: any;
|
|
18
19
|
cdRef?: ChangeDetectorRef;
|
|
19
20
|
}, ...args: any[]) => any;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerService, never>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SpinnerService>;
|
|
20
23
|
}
|
package/package.json
CHANGED
|
@@ -1,21 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-ode-ui",
|
|
3
|
-
"version": "4.6.0-dev-integration.
|
|
3
|
+
"version": "4.6.0-dev-integration.3",
|
|
4
|
+
"dependencies": {
|
|
5
|
+
"tslib": "^2.0.0"
|
|
6
|
+
},
|
|
4
7
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
8
|
+
"@angular/common": "^14.1.1",
|
|
9
|
+
"@angular/core": "^14.1.1",
|
|
10
|
+
"ngx-ode-core": "~4.6.0-dev",
|
|
11
|
+
"ngx-ode-sijil": "~4.6.0-dev"
|
|
7
12
|
},
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
13
|
+
"module": "fesm2015/ngx-ode-ui.mjs",
|
|
14
|
+
"es2020": "fesm2020/ngx-ode-ui.mjs",
|
|
15
|
+
"esm2020": "esm2020/ngx-ode-ui.mjs",
|
|
16
|
+
"fesm2020": "fesm2020/ngx-ode-ui.mjs",
|
|
17
|
+
"fesm2015": "fesm2015/ngx-ode-ui.mjs",
|
|
18
|
+
"typings": "index.d.ts",
|
|
19
|
+
"exports": {
|
|
20
|
+
"./package.json": {
|
|
21
|
+
"default": "./package.json"
|
|
22
|
+
},
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./index.d.ts",
|
|
25
|
+
"esm2020": "./esm2020/ngx-ode-ui.mjs",
|
|
26
|
+
"es2020": "./fesm2020/ngx-ode-ui.mjs",
|
|
27
|
+
"es2015": "./fesm2015/ngx-ode-ui.mjs",
|
|
28
|
+
"node": "./fesm2015/ngx-ode-ui.mjs",
|
|
29
|
+
"default": "./fesm2020/ngx-ode-ui.mjs"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"sideEffects": false
|
|
33
|
+
}
|
package/public-api.d.ts
CHANGED
|
@@ -28,6 +28,8 @@ export * from './lib/components/tooltip/tooltip.component';
|
|
|
28
28
|
export * from './lib/components/upload-files/upload-files.component';
|
|
29
29
|
export * from './lib/components/value-editable/simple-select.component';
|
|
30
30
|
export * from './lib/components/wizard/wizard.component';
|
|
31
|
+
export * from './lib/components/dropdown/dropdown.component';
|
|
32
|
+
export * from './lib/components/search-toolbar/search-toolbar.component';
|
|
31
33
|
export * from './lib/directives/dynamic-component/dynamic-component.directive';
|
|
32
34
|
export * from './lib/directives/dynamic-component/component-descriptor.model';
|
|
33
35
|
export * from './lib/directives/anchor.directive';
|
|
@@ -43,6 +45,7 @@ export * from './lib/pipes/localizedDate.pipe';
|
|
|
43
45
|
export * from './lib/pipes/orderBy.pipe';
|
|
44
46
|
export * from './lib/pipes/store.pipe';
|
|
45
47
|
export * from './lib/pipes/length.pipe';
|
|
48
|
+
export * from './lib/pipes/replace.pipe';
|
|
46
49
|
export * from './lib/utils/math';
|
|
47
50
|
export * from './lib/utils/string';
|
|
48
51
|
export * from './lib/utils/testing';
|
package/CHANGELOG.md
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
-
|
|
8
|
-
## [2.0.0] - 2019-12-03
|
|
9
|
-
|
|
10
|
-
### Added
|
|
11
|
-
|
|
12
|
-
### Changed
|
|
13
|
-
|
|
14
|
-
- Upgrade to Angular 8 in Angular workspace libs
|