@inspark/inspark-components 1.0.44 → 14.0.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/full/components/autocomplete/autocomplete.component.d.ts +12 -1
- package/full/components/breadcrumb/breadcrumb.component.d.ts +3 -0
- package/full/components/button/button.component.d.ts +5 -1
- package/full/components/checkbox/checkbox.component.d.ts +3 -0
- package/full/components/communication.service.d.ts +3 -0
- package/full/components/component-container/component-container.component.d.ts +3 -0
- package/full/components/content-toggle/content-toggle.component.d.ts +3 -0
- package/full/components/dropdown/dropdown.component.d.ts +65 -13
- package/full/components/empty/empty.component.d.ts +3 -0
- package/full/components/file/file.component.d.ts +3 -0
- package/full/components/header/header.component.d.ts +3 -0
- package/full/components/inline-message/inline-message.component.d.ts +3 -0
- package/full/components/input-group/input-group.component.d.ts +3 -0
- package/full/components/input-text/input-text.component.d.ts +3 -0
- package/full/components/inspark.module.d.ts +47 -0
- package/full/components/inspark.shared.d.ts +3 -0
- package/full/components/link/link.component.d.ts +5 -1
- package/full/components/modal-input-text/modal-input-text.component.d.ts +4 -1
- package/full/components/object-tree/object-tree.component.d.ts +3 -0
- package/full/components/panel/panel.component.d.ts +3 -0
- package/full/components/pie/pie.component.d.ts +3 -0
- package/full/components/pie/pie.service.d.ts +3 -0
- package/full/components/preloader/preloader.component.d.ts +3 -0
- package/full/components/primeng.module.d.ts +5 -0
- package/full/components/radiobutton/radiobutton.component.d.ts +3 -0
- package/full/components/select-button/select-button.component.d.ts +3 -0
- package/full/components/select-list/select-list.component.d.ts +4 -1
- package/full/components/status-circle/status-circle.component.d.ts +3 -0
- package/full/components/sticky/sticky.component.d.ts +3 -0
- package/full/components/svg/svg.component.d.ts +4 -1
- package/full/components/switcher/switcher.component.d.ts +3 -0
- package/full/components/table/table-click-outside.directive.d.ts +3 -0
- package/full/components/table/table-columns-multiselect/table-columns-multiselect.component.d.ts +3 -0
- package/full/components/table/table-menu-overlay/table-menu-overlay.component.d.ts +3 -0
- package/full/components/table/table.component.d.ts +18 -0
- package/full/components/textarea/textarea.component.d.ts +3 -0
- package/full/components/toolbar/toolbar.component.d.ts +3 -0
- package/full/components/tooltip/tooltip.component.d.ts +3 -0
- package/full/components/tree-table/tree-table.component.d.ts +12 -0
- package/full/esm2020/components/autocomplete/autocomplete.component.mjs +220 -0
- package/full/esm2020/components/breadcrumb/breadcrumb.component.mjs +20 -0
- package/full/esm2020/components/button/button.component.mjs +160 -0
- package/full/esm2020/components/checkbox/checkbox.component.mjs +89 -0
- package/full/esm2020/components/communication.service.mjs +25 -0
- package/full/esm2020/components/component-container/component-container.component.mjs +17 -0
- package/full/esm2020/components/content-toggle/content-toggle.component.mjs +49 -0
- package/full/esm2020/components/dropdown/dropdown.component.mjs +328 -0
- package/full/esm2020/components/empty/empty.component.mjs +12 -0
- package/full/esm2020/components/file/file.component.mjs +53 -0
- package/full/esm2020/components/header/header.component.mjs +23 -0
- package/full/esm2020/components/inline-message/inline-message.component.mjs +20 -0
- package/full/esm2020/components/input-group/input-group.component.mjs +163 -0
- package/full/esm2020/components/input-text/input-text.component.mjs +149 -0
- package/full/esm2020/components/inspark.module.mjs +239 -0
- package/full/esm2020/components/inspark.shared.mjs +25 -0
- package/full/esm2020/components/link/link.component.mjs +131 -0
- package/full/esm2020/components/modal-input-text/modal-input-text.component.mjs +88 -0
- package/full/esm2020/components/object-tree/object-tree.component.mjs +14 -0
- package/full/esm2020/components/panel/panel.component.mjs +11 -0
- package/full/esm2020/components/pie/pie.component.mjs +44 -0
- package/full/esm2020/components/pie/pie.service.mjs +55 -0
- package/full/esm2020/components/preloader/preloader.component.mjs +25 -0
- package/full/esm2020/components/primeng.module.mjs +22 -0
- package/full/esm2020/components/radiobutton/radiobutton.component.mjs +50 -0
- package/full/esm2020/components/select-button/select-button.component.mjs +147 -0
- package/full/esm2020/components/select-list/select-list.component.mjs +55 -0
- package/full/esm2020/components/status-circle/status-circle.component.mjs +36 -0
- package/full/esm2020/components/sticky/sticky.component.mjs +64 -0
- package/full/esm2020/components/svg/svg.component.mjs +28 -0
- package/full/esm2020/components/switcher/switcher.component.mjs +123 -0
- package/full/esm2020/components/table/table-click-outside.directive.mjs +31 -0
- package/full/esm2020/components/table/table-columns-multiselect/table-columns-multiselect.component.mjs +32 -0
- package/full/esm2020/components/table/table-menu-overlay/table-menu-overlay.component.mjs +26 -0
- package/full/esm2020/components/table/table.component.mjs +472 -0
- package/full/esm2020/components/textarea/textarea.component.mjs +87 -0
- package/full/esm2020/components/toolbar/toolbar.component.mjs +30 -0
- package/full/esm2020/components/tooltip/tooltip.component.mjs +14 -0
- package/full/esm2020/components/tree-table/tree-table.component.mjs +206 -0
- package/full/esm2020/inspark-inspark-components.mjs +5 -0
- package/full/esm2020/interface.mjs +2 -0
- package/full/esm2020/pipes/pipes.module.mjs +19 -0
- package/full/esm2020/pipes/propertyValue.pipe.mjs +25 -0
- package/full/esm2020/pipes/safeUrl.pipe.mjs +36 -0
- package/full/esm2020/pipes/sort-by.pipe.mjs +28 -0
- package/full/esm2020/pipes/time.pipe.mjs +206 -0
- package/full/esm2020/public_api.mjs +60 -0
- package/full/esm2020/services/inspark-dialog.service.mjs +52 -0
- package/full/esm2020/services/inspark-message.service.mjs +71 -0
- package/full/esm2020/utils/gettextMarker.function.mjs +5 -0
- package/full/esm2020/utils/hybrid/prime-table/row-state.enum.mjs +9 -0
- package/full/esm2020/utils/hybrid/prime-table/table-row-data.model.mjs +2 -0
- package/full/fesm2015/inspark-inspark-components.mjs +3574 -0
- package/full/fesm2015/inspark-inspark-components.mjs.map +1 -0
- package/full/fesm2020/inspark-inspark-components.mjs +3577 -0
- package/full/fesm2020/inspark-inspark-components.mjs.map +1 -0
- package/full/index.css +1265 -3352
- package/{interface/inspark-inspark-components.d.ts → full/index.d.ts} +1 -0
- package/full/index.js +1 -1
- package/full/interface.d.ts +1 -1
- package/full/package.json +26 -16
- package/full/pipes/pipes.module.d.ts +8 -0
- package/full/pipes/propertyValue.pipe.d.ts +3 -0
- package/full/pipes/safeUrl.pipe.d.ts +3 -0
- package/full/pipes/sort-by.pipe.d.ts +3 -0
- package/full/pipes/time.pipe.d.ts +9 -0
- package/full/public_api.d.ts +15 -1
- package/full/services/inspark-dialog.service.d.ts +4 -2
- package/full/services/inspark-message.service.d.ts +3 -0
- package/interface/esm2020/inspark-inspark-components.mjs +5 -0
- package/interface/esm2020/interface.mjs +2 -0
- package/interface/esm2020/public_api.mjs +5 -0
- package/interface/fesm2015/inspark-inspark-components.mjs +8 -0
- package/interface/fesm2015/inspark-inspark-components.mjs.map +1 -0
- package/interface/fesm2020/inspark-inspark-components.mjs +8 -0
- package/interface/fesm2020/inspark-inspark-components.mjs.map +1 -0
- package/interface/index.d.ts +5 -0
- package/interface/interface.d.ts +1 -1
- package/interface/package.json +26 -16
- package/package.json +1 -1
- package/full/bundles/inspark-inspark-components.umd.js +0 -4622
- package/full/bundles/inspark-inspark-components.umd.js.map +0 -1
- package/full/bundles/inspark-inspark-components.umd.min.js +0 -16
- package/full/bundles/inspark-inspark-components.umd.min.js.map +0 -1
- package/full/esm2015/components/autocomplete/autocomplete.component.js +0 -310
- package/full/esm2015/components/breadcrumb/breadcrumb.component.js +0 -23
- package/full/esm2015/components/button/button.component.js +0 -217
- package/full/esm2015/components/checkbox/checkbox.component.js +0 -104
- package/full/esm2015/components/communication.service.js +0 -24
- package/full/esm2015/components/component-container/component-container.component.js +0 -20
- package/full/esm2015/components/content-toggle/content-toggle.component.js +0 -66
- package/full/esm2015/components/dropdown/dropdown.component.js +0 -353
- package/full/esm2015/components/empty/empty.component.js +0 -13
- package/full/esm2015/components/file/file.component.js +0 -65
- package/full/esm2015/components/header/header.component.js +0 -30
- package/full/esm2015/components/inline-message/inline-message.component.js +0 -25
- package/full/esm2015/components/input-group/input-group.component.js +0 -197
- package/full/esm2015/components/input-text/input-text.component.js +0 -198
- package/full/esm2015/components/inspark.module.js +0 -137
- package/full/esm2015/components/inspark.shared.js +0 -30
- package/full/esm2015/components/link/link.component.js +0 -164
- package/full/esm2015/components/modal-input-text/modal-input-text.component.js +0 -94
- package/full/esm2015/components/object-tree/object-tree.component.js +0 -18
- package/full/esm2015/components/panel/panel.component.js +0 -13
- package/full/esm2015/components/pie/pie.component.js +0 -59
- package/full/esm2015/components/pie/pie.service.js +0 -54
- package/full/esm2015/components/preloader/preloader.component.js +0 -34
- package/full/esm2015/components/primeng.module.js +0 -19
- package/full/esm2015/components/radiobutton/radiobutton.component.js +0 -75
- package/full/esm2015/components/select-button/select-button.component.js +0 -176
- package/full/esm2015/components/select-list/select-list.component.js +0 -60
- package/full/esm2015/components/status-circle/status-circle.component.js +0 -51
- package/full/esm2015/components/sticky/sticky.component.js +0 -82
- package/full/esm2015/components/svg/svg.component.js +0 -36
- package/full/esm2015/components/switcher/switcher.component.js +0 -148
- package/full/esm2015/components/table/table-click-outside.directive.js +0 -38
- package/full/esm2015/components/table/table-columns-multiselect/table-columns-multiselect.component.js +0 -37
- package/full/esm2015/components/table/table-menu-overlay/table-menu-overlay.component.js +0 -35
- package/full/esm2015/components/table/table.component.js +0 -535
- package/full/esm2015/components/textarea/textarea.component.js +0 -101
- package/full/esm2015/components/toolbar/toolbar.component.js +0 -40
- package/full/esm2015/components/tooltip/tooltip.component.js +0 -18
- package/full/esm2015/components/tree-table/tree-table.component.js +0 -255
- package/full/esm2015/inspark-inspark-components.js +0 -20
- package/full/esm2015/interface.js +0 -1
- package/full/esm2015/pipes/pipes.module.js +0 -16
- package/full/esm2015/pipes/propertyValue.pipe.js +0 -23
- package/full/esm2015/pipes/safeUrl.pipe.js +0 -37
- package/full/esm2015/pipes/sort-by.pipe.js +0 -26
- package/full/esm2015/pipes/time.pipe.js +0 -201
- package/full/esm2015/public_api.js +0 -45
- package/full/esm2015/services/inspark-dialog.service.js +0 -59
- package/full/esm2015/services/inspark-message.service.js +0 -73
- package/full/esm2015/utils/gettextMarker.function.js +0 -5
- package/full/esm2015/utils/hybrid/prime-table/row-state.enum.js +0 -9
- package/full/esm2015/utils/hybrid/prime-table/table-row-data.model.js +0 -1
- package/full/esm5/components/autocomplete/autocomplete.component.js +0 -318
- package/full/esm5/components/breadcrumb/breadcrumb.component.js +0 -24
- package/full/esm5/components/button/button.component.js +0 -224
- package/full/esm5/components/checkbox/checkbox.component.js +0 -106
- package/full/esm5/components/communication.service.js +0 -25
- package/full/esm5/components/component-container/component-container.component.js +0 -21
- package/full/esm5/components/content-toggle/content-toggle.component.js +0 -67
- package/full/esm5/components/dropdown/dropdown.component.js +0 -357
- package/full/esm5/components/empty/empty.component.js +0 -16
- package/full/esm5/components/file/file.component.js +0 -66
- package/full/esm5/components/header/header.component.js +0 -31
- package/full/esm5/components/inline-message/inline-message.component.js +0 -26
- package/full/esm5/components/input-group/input-group.component.js +0 -199
- package/full/esm5/components/input-text/input-text.component.js +0 -200
- package/full/esm5/components/inspark.module.js +0 -140
- package/full/esm5/components/inspark.shared.js +0 -31
- package/full/esm5/components/link/link.component.js +0 -165
- package/full/esm5/components/modal-input-text/modal-input-text.component.js +0 -98
- package/full/esm5/components/object-tree/object-tree.component.js +0 -20
- package/full/esm5/components/panel/panel.component.js +0 -16
- package/full/esm5/components/pie/pie.component.js +0 -60
- package/full/esm5/components/pie/pie.service.js +0 -56
- package/full/esm5/components/preloader/preloader.component.js +0 -35
- package/full/esm5/components/primeng.module.js +0 -22
- package/full/esm5/components/radiobutton/radiobutton.component.js +0 -76
- package/full/esm5/components/select-button/select-button.component.js +0 -179
- package/full/esm5/components/select-list/select-list.component.js +0 -62
- package/full/esm5/components/status-circle/status-circle.component.js +0 -52
- package/full/esm5/components/sticky/sticky.component.js +0 -84
- package/full/esm5/components/svg/svg.component.js +0 -39
- package/full/esm5/components/switcher/switcher.component.js +0 -150
- package/full/esm5/components/table/table-click-outside.directive.js +0 -39
- package/full/esm5/components/table/table-columns-multiselect/table-columns-multiselect.component.js +0 -38
- package/full/esm5/components/table/table-menu-overlay/table-menu-overlay.component.js +0 -36
- package/full/esm5/components/table/table.component.js +0 -554
- package/full/esm5/components/textarea/textarea.component.js +0 -103
- package/full/esm5/components/toolbar/toolbar.component.js +0 -41
- package/full/esm5/components/tooltip/tooltip.component.js +0 -20
- package/full/esm5/components/tree-table/tree-table.component.js +0 -280
- package/full/esm5/inspark-inspark-components.js +0 -20
- package/full/esm5/interface.js +0 -1
- package/full/esm5/pipes/pipes.module.js +0 -19
- package/full/esm5/pipes/propertyValue.pipe.js +0 -26
- package/full/esm5/pipes/safeUrl.pipe.js +0 -38
- package/full/esm5/pipes/sort-by.pipe.js +0 -29
- package/full/esm5/pipes/time.pipe.js +0 -212
- package/full/esm5/public_api.js +0 -45
- package/full/esm5/services/inspark-dialog.service.js +0 -61
- package/full/esm5/services/inspark-message.service.js +0 -78
- package/full/esm5/utils/gettextMarker.function.js +0 -5
- package/full/esm5/utils/hybrid/prime-table/row-state.enum.js +0 -9
- package/full/esm5/utils/hybrid/prime-table/table-row-data.model.js +0 -1
- package/full/fesm2015/inspark-inspark-components.js +0 -4174
- package/full/fesm2015/inspark-inspark-components.js.map +0 -1
- package/full/fesm5/inspark-inspark-components.js +0 -4324
- package/full/fesm5/inspark-inspark-components.js.map +0 -1
- package/full/fonts/primeicons.eot +0 -0
- package/full/fonts/primeicons.svg +0 -163
- package/full/fonts/primeicons.ttf +0 -0
- package/full/fonts/primeicons.woff +0 -0
- package/full/inspark-inspark-components.d.ts +0 -19
- package/full/inspark-inspark-components.metadata.json +0 -1
- package/interface/bundles/inspark-inspark-components.umd.js +0 -11
- package/interface/bundles/inspark-inspark-components.umd.js.map +0 -1
- package/interface/bundles/inspark-inspark-components.umd.min.js +0 -2
- package/interface/bundles/inspark-inspark-components.umd.min.js.map +0 -1
- package/interface/esm2015/inspark-inspark-components.js +0 -4
- package/interface/esm2015/interface.js +0 -1
- package/interface/esm2015/public_api.js +0 -4
- package/interface/esm5/inspark-inspark-components.js +0 -4
- package/interface/esm5/interface.js +0 -1
- package/interface/esm5/public_api.js +0 -4
- package/interface/fesm2015/inspark-inspark-components.js +0 -4
- package/interface/fesm2015/inspark-inspark-components.js.map +0 -1
- package/interface/fesm5/inspark-inspark-components.js +0 -4
- package/interface/fesm5/inspark-inspark-components.js.map +0 -1
- package/interface/inspark-inspark-components.metadata.json +0 -1
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import { AfterContentInit, ElementRef, EventEmitter, QueryList } from '@angular/core';
|
|
2
|
-
import { AutoComplete } from 'primeng/primeng';
|
|
3
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { AutoComplete } from 'primeng/autocomplete';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "primeng/tooltip";
|
|
6
|
+
import * as i2 from "@angular/cdk/scrolling";
|
|
7
|
+
import * as i3 from "@angular/common";
|
|
8
|
+
import * as i4 from "../primeng.module";
|
|
9
|
+
import * as i5 from "primeng/button";
|
|
4
10
|
export declare class AutoCompleteComponent extends AutoComplete implements AfterContentInit, ControlValueAccessor {
|
|
5
11
|
minLength: number;
|
|
6
12
|
delay: number;
|
|
@@ -55,6 +61,11 @@ export declare class AutoCompleteComponent extends AutoComplete implements After
|
|
|
55
61
|
dropdownButton: ElementRef;
|
|
56
62
|
templates: QueryList<any>;
|
|
57
63
|
ngAfterContentInit(): void;
|
|
64
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoCompleteComponent, never>;
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutoCompleteComponent, "in-autocomplete", never, { "minLength": "minLength"; "delay": "delay"; "style": "style"; "panelStyle": "panelStyle"; "styleClass": "styleClass"; "panelStyleClass": "panelStyleClass"; "inputStyle": "inputStyle"; "inputId": "inputId"; "inputStyleClass": "inputStyleClass"; "placeholder": "placeholder"; "readonly": "readonly"; "disabled": "disabled"; "maxlength": "maxlength"; "name": "name"; "required": "required"; "size": "size"; "appendTo": "appendTo"; "autoHighlight": "autoHighlight"; "forceSelection": "forceSelection"; "type": "type"; "autoZIndex": "autoZIndex"; "baseZIndex": "baseZIndex"; "ariaLabel": "ariaLabel"; "ariaLabelledBy": "ariaLabelledBy"; "dropdownIcon": "dropdownIcon"; "unique": "unique"; "field": "field"; "scrollHeight": "scrollHeight"; "dropdown": "dropdown"; "dropdownMode": "dropdownMode"; "multiple": "multiple"; "tabindex": "tabindex"; "dataKey": "dataKey"; "emptyMessage": "emptyMessage"; "immutable": "immutable"; "showTransitionOptions": "showTransitionOptions"; "hideTransitionOptions": "hideTransitionOptions"; "autofocus": "autofocus"; "autocomplete": "autocomplete"; }, { "completeMethod": "completeMethod"; "onSelect": "onSelect"; "onUnselect": "onUnselect"; "onFocus": "onFocus"; "onBlur": "onBlur"; "onDropdownClick": "onDropdownClick"; "onClear": "onClear"; "onKeyUp": "onKeyUp"; }, ["templates"], never, false>;
|
|
58
66
|
}
|
|
59
67
|
export declare class AutoCompleteComponentModule {
|
|
68
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoCompleteComponentModule, never>;
|
|
69
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AutoCompleteComponentModule, [typeof AutoCompleteComponent], [typeof i1.TooltipModule, typeof i2.ScrollingModule, typeof i3.CommonModule, typeof i4.PrimengComponentsModule, typeof i5.ButtonModule], [typeof AutoCompleteComponent]>;
|
|
70
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AutoCompleteComponentModule>;
|
|
60
71
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MenuItem } from 'primeng/api';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class BreadcrumbComponent implements OnInit {
|
|
4
5
|
items: MenuItem[];
|
|
5
6
|
constructor();
|
|
6
7
|
ngOnInit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "in-breadcrumb", never, { "items": "items"; }, {}, never, never, false>;
|
|
7
10
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit } from '@angular/core';
|
|
2
|
-
import { Button as PButton
|
|
2
|
+
import { Button as PButton } from 'primeng/button';
|
|
3
3
|
import { InsparkMenuItem } from '../../interface';
|
|
4
|
+
import { Menu } from 'primeng/menu';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
4
6
|
declare type ButtonSize = 'small' | 'normal' | 'large' | 'tiny';
|
|
5
7
|
declare type ButtonColor = 'normal' | 'danger' | 'primary' | 'secondary' | 'transparent';
|
|
6
8
|
declare type ButtonType = 'button' | 'submit';
|
|
@@ -54,5 +56,7 @@ export declare class ButtonComponent extends PButton implements OnInit, OnChange
|
|
|
54
56
|
ngOnChanges(changes: any): void;
|
|
55
57
|
updateData(): void;
|
|
56
58
|
_onClick($event: any): void;
|
|
59
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "in-button", never, { "size": "size"; "color": "color"; "type": "type"; "name": "name"; "testId": "testId"; "label": "label"; "icon": "icon"; "className": "className"; "notify": "notify"; "svg": "svg"; "width": "width"; "link": "link"; "isLoading": "isLoading"; "shadow": "shadow"; "isIconOnly": "isIconOnly"; "linkType": "linkType"; "linkTarget": "linkTarget"; "pressed": "pressed"; "disabled": "disabled"; "iconPos": "iconPos"; "selectedItem": "selectedItem"; "menuPlacement": "menuPlacement"; "menuItems": "menuItems"; }, { "focus": "focus"; "blur": "blur"; "click": "click"; }, never, never, false>;
|
|
57
61
|
}
|
|
58
62
|
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { Router } from '@angular/router';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class CheckboxComponent implements ControlValueAccessor {
|
|
5
6
|
element: ElementRef;
|
|
6
7
|
private cdRef;
|
|
@@ -33,4 +34,6 @@ export declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
33
34
|
private propagateChange;
|
|
34
35
|
onChange(_: any): void;
|
|
35
36
|
private onTouched;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "in-checkbox", never, { "name": "name"; "label": "label"; "required": "required"; "error": "error"; "placeholder": "placeholder"; "id": "id"; "disabled": "disabled"; }, {}, never, ["*"], false>;
|
|
36
39
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class CommunicationService {
|
|
2
3
|
private messageSource;
|
|
3
4
|
message$: {};
|
|
4
5
|
create(id: number): void;
|
|
5
6
|
next(widgetId: number, value: any): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommunicationService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CommunicationService>;
|
|
6
9
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
declare type ALIGN = 'right' | 'left' | 'center';
|
|
2
3
|
export declare class ComponentContainerComponent {
|
|
3
4
|
align: ALIGN;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentContainerComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ComponentContainerComponent, "in-component-container", never, { "align": "align"; }, {}, never, ["*"], false>;
|
|
4
7
|
}
|
|
5
8
|
export {};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ContentToggleComponent implements OnInit {
|
|
3
4
|
private cdr;
|
|
4
5
|
label: any;
|
|
@@ -11,4 +12,6 @@ export declare class ContentToggleComponent implements OnInit {
|
|
|
11
12
|
constructor(cdr: ChangeDetectorRef);
|
|
12
13
|
ngOnInit(): void;
|
|
13
14
|
toggleOpen(e: MouseEvent): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContentToggleComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContentToggleComponent, "in-content-toggle", never, { "label": "label"; "defaultOpen": "defaultOpen"; "isOpen": "isOpen"; "icon": "icon"; "manualArrow": "manualArrow"; }, { "toggle": "toggle"; }, never, ["[arrow]", "[header]", "[buttons]", "[body]"], false>;
|
|
14
17
|
}
|
|
@@ -1,21 +1,46 @@
|
|
|
1
1
|
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { Dropdown
|
|
3
|
+
import { Dropdown } from 'primeng/dropdown';
|
|
4
|
+
import { OverlayOptions, SelectItem } from 'primeng/api';
|
|
5
|
+
import { ScrollerOptions } from 'primeng/scroller';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@angular/common";
|
|
8
|
+
import * as i2 from "primeng/overlay";
|
|
9
|
+
import * as i3 from "primeng/api";
|
|
10
|
+
import * as i4 from "primeng/tooltip";
|
|
11
|
+
import * as i5 from "primeng/ripple";
|
|
12
|
+
import * as i6 from "primeng/scroller";
|
|
13
|
+
import * as i7 from "primeng/autofocus";
|
|
14
|
+
import * as i8 from "@ngx-translate/core";
|
|
15
|
+
export declare const DROPDOWN_VALUE_ACCESSOR: any;
|
|
4
16
|
export declare class DropdownItem {
|
|
5
17
|
option: SelectItem;
|
|
6
18
|
selected: boolean;
|
|
19
|
+
label: string;
|
|
7
20
|
disabled: boolean;
|
|
8
21
|
visible: boolean;
|
|
9
22
|
itemSize: number;
|
|
10
23
|
template: TemplateRef<any>;
|
|
11
24
|
onClick: EventEmitter<any>;
|
|
12
25
|
onOptionClick(event: Event): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownItem, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownItem, "p-dropdownItem", never, { "option": "option"; "selected": "selected"; "label": "label"; "disabled": "disabled"; "visible": "visible"; "itemSize": "itemSize"; "template": "template"; }, { "onClick": "onClick"; }, never, never, false>;
|
|
13
28
|
}
|
|
14
29
|
export declare class DropdownComponent extends Dropdown implements ControlValueAccessor {
|
|
30
|
+
/**
|
|
31
|
+
* Наш код
|
|
32
|
+
*/
|
|
33
|
+
_label: string;
|
|
34
|
+
get label(): string;
|
|
35
|
+
set label(val: string);
|
|
36
|
+
error: any;
|
|
37
|
+
get labelText(): string;
|
|
38
|
+
/**
|
|
39
|
+
* код PrimeNG
|
|
40
|
+
*/
|
|
15
41
|
scrollHeight: string;
|
|
16
42
|
filter: boolean;
|
|
17
43
|
name: string;
|
|
18
|
-
defaultValue: number;
|
|
19
44
|
style: any;
|
|
20
45
|
panelStyle: any;
|
|
21
46
|
styleClass: string;
|
|
@@ -27,6 +52,7 @@ export declare class DropdownComponent extends Dropdown implements ControlValueA
|
|
|
27
52
|
tabindex: number;
|
|
28
53
|
placeholder: string;
|
|
29
54
|
filterPlaceholder: string;
|
|
55
|
+
filterLocale: string;
|
|
30
56
|
inputId: string;
|
|
31
57
|
selectId: string;
|
|
32
58
|
dataKey: string;
|
|
@@ -35,35 +61,61 @@ export declare class DropdownComponent extends Dropdown implements ControlValueA
|
|
|
35
61
|
resetFilterOnHide: boolean;
|
|
36
62
|
dropdownIcon: string;
|
|
37
63
|
optionLabel: string;
|
|
64
|
+
optionValue: string;
|
|
65
|
+
optionDisabled: string;
|
|
66
|
+
optionGroupLabel: string;
|
|
67
|
+
optionGroupChildren: string;
|
|
38
68
|
autoDisplayFirst: boolean;
|
|
39
69
|
group: boolean;
|
|
40
70
|
showClear: boolean;
|
|
41
71
|
emptyFilterMessage: string;
|
|
72
|
+
emptyMessage: string;
|
|
73
|
+
lazy: boolean;
|
|
42
74
|
virtualScroll: boolean;
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
showTransitionOptions: string;
|
|
47
|
-
hideTransitionOptions: string;
|
|
75
|
+
virtualScrollItemSize: number;
|
|
76
|
+
virtualScrollOptions: ScrollerOptions;
|
|
77
|
+
overlayOptions: OverlayOptions;
|
|
48
78
|
ariaFilterLabel: string;
|
|
79
|
+
ariaLabel: string;
|
|
80
|
+
ariaLabelledBy: string;
|
|
49
81
|
filterMatchMode: string;
|
|
50
82
|
maxlength: number;
|
|
51
83
|
tooltip: string;
|
|
52
|
-
options: any[];
|
|
53
|
-
error: any;
|
|
54
84
|
tooltipPosition: string;
|
|
55
85
|
tooltipPositionStyle: string;
|
|
56
86
|
tooltipStyleClass: string;
|
|
87
|
+
autofocusFilter: boolean;
|
|
88
|
+
overlayDirection: string;
|
|
57
89
|
onChange: EventEmitter<any>;
|
|
90
|
+
onFilter: EventEmitter<any>;
|
|
58
91
|
onFocus: EventEmitter<any>;
|
|
59
92
|
onBlur: EventEmitter<any>;
|
|
60
93
|
onClick: EventEmitter<any>;
|
|
61
94
|
onShow: EventEmitter<any>;
|
|
62
95
|
onHide: EventEmitter<any>;
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
get
|
|
96
|
+
onClear: EventEmitter<any>;
|
|
97
|
+
onLazyLoad: EventEmitter<any>;
|
|
98
|
+
_itemSize: number;
|
|
99
|
+
get itemSize(): number;
|
|
100
|
+
set itemSize(val: number);
|
|
101
|
+
_autoZIndex: boolean;
|
|
102
|
+
get autoZIndex(): boolean;
|
|
103
|
+
set autoZIndex(val: boolean);
|
|
104
|
+
_baseZIndex: number;
|
|
105
|
+
get baseZIndex(): number;
|
|
106
|
+
set baseZIndex(val: number);
|
|
107
|
+
_showTransitionOptions: string;
|
|
108
|
+
get showTransitionOptions(): string;
|
|
109
|
+
set showTransitionOptions(val: string);
|
|
110
|
+
_hideTransitionOptions: string;
|
|
111
|
+
get hideTransitionOptions(): string;
|
|
112
|
+
set hideTransitionOptions(val: string);
|
|
113
|
+
overlayVisible: boolean;
|
|
114
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
115
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "in-dropdown", never, { "label": "label"; "error": "error"; "scrollHeight": "scrollHeight"; "filter": "filter"; "name": "name"; "style": "style"; "panelStyle": "panelStyle"; "styleClass": "styleClass"; "panelStyleClass": "panelStyleClass"; "readonly": "readonly"; "required": "required"; "editable": "editable"; "appendTo": "appendTo"; "tabindex": "tabindex"; "placeholder": "placeholder"; "filterPlaceholder": "filterPlaceholder"; "filterLocale": "filterLocale"; "inputId": "inputId"; "selectId": "selectId"; "dataKey": "dataKey"; "filterBy": "filterBy"; "autofocus": "autofocus"; "resetFilterOnHide": "resetFilterOnHide"; "dropdownIcon": "dropdownIcon"; "optionLabel": "optionLabel"; "optionValue": "optionValue"; "optionDisabled": "optionDisabled"; "optionGroupLabel": "optionGroupLabel"; "optionGroupChildren": "optionGroupChildren"; "autoDisplayFirst": "autoDisplayFirst"; "group": "group"; "showClear": "showClear"; "emptyFilterMessage": "emptyFilterMessage"; "emptyMessage": "emptyMessage"; "lazy": "lazy"; "virtualScroll": "virtualScroll"; "virtualScrollItemSize": "virtualScrollItemSize"; "virtualScrollOptions": "virtualScrollOptions"; "overlayOptions": "overlayOptions"; "ariaFilterLabel": "ariaFilterLabel"; "ariaLabel": "ariaLabel"; "ariaLabelledBy": "ariaLabelledBy"; "filterMatchMode": "filterMatchMode"; "maxlength": "maxlength"; "tooltip": "tooltip"; "tooltipPosition": "tooltipPosition"; "tooltipPositionStyle": "tooltipPositionStyle"; "tooltipStyleClass": "tooltipStyleClass"; "autofocusFilter": "autofocusFilter"; "overlayDirection": "overlayDirection"; "itemSize": "itemSize"; "autoZIndex": "autoZIndex"; "baseZIndex": "baseZIndex"; "showTransitionOptions": "showTransitionOptions"; "hideTransitionOptions": "hideTransitionOptions"; }, { "onChange": "onChange"; "onFilter": "onFilter"; "onFocus": "onFocus"; "onBlur": "onBlur"; "onClick": "onClick"; "onShow": "onShow"; "onHide": "onHide"; "onClear": "onClear"; "onLazyLoad": "onLazyLoad"; }, never, never, false>;
|
|
67
116
|
}
|
|
68
117
|
export declare class DropdownComponentModule {
|
|
118
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponentModule, never>;
|
|
119
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DropdownComponentModule, [typeof DropdownComponent, typeof DropdownItem], [typeof i1.CommonModule, typeof i2.OverlayModule, typeof i3.SharedModule, typeof i4.TooltipModule, typeof i5.RippleModule, typeof i6.ScrollerModule, typeof i7.AutoFocusModule, typeof i8.TranslateModule], [typeof DropdownComponent, typeof i2.OverlayModule, typeof i3.SharedModule, typeof i6.ScrollerModule]>;
|
|
120
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DropdownComponentModule>;
|
|
69
121
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class FileComponent {
|
|
3
4
|
name: any;
|
|
4
5
|
label: any;
|
|
@@ -11,4 +12,6 @@ export declare class FileComponent {
|
|
|
11
12
|
onClear(): void;
|
|
12
13
|
onClickChoose(): void;
|
|
13
14
|
onChangeFile(e: any): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileComponent, "in-file", never, { "name": "name"; "label": "label"; "accept": "accept"; "required": "required"; "error": "error"; }, { "onChange": "onChange"; }, never, never, false>;
|
|
14
17
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class InsparkHeaderComponent implements OnInit {
|
|
3
4
|
level: number;
|
|
4
5
|
label: string;
|
|
5
6
|
constructor();
|
|
6
7
|
ngOnInit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InsparkHeaderComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InsparkHeaderComponent, "in-header", never, { "level": "level"; "label": "label"; }, {}, never, ["*"], false>;
|
|
7
10
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class InlineMessageComponent {
|
|
2
3
|
message: string;
|
|
3
4
|
align: 'center' | 'left' | 'right';
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InlineMessageComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InlineMessageComponent, "in-inline-message", never, { "message": "message"; "align": "align"; }, {}, never, ["*"], false>;
|
|
4
7
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class InputGroupComponent implements ControlValueAccessor, OnInit {
|
|
4
5
|
isEditableView: boolean;
|
|
5
6
|
name: any;
|
|
@@ -51,4 +52,6 @@ export declare class InputGroupComponent implements ControlValueAccessor, OnInit
|
|
|
51
52
|
changeEditMode(): void;
|
|
52
53
|
changeValue(value: any): void;
|
|
53
54
|
isApplyDisabled(): boolean;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputGroupComponent, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputGroupComponent, "in-input-group", never, { "name": "name"; "measureunit": "measureunit"; "autocomplete": "autocomplete"; "label": "label"; "required": "required"; "error": "error"; "size": "size"; "maxlength": "maxlength"; "width": "width"; "placeholder": "placeholder"; "id": "id"; "testId": "testId"; "disabled": "disabled"; "opacity": "opacity"; "shadow": "shadow"; "isEditMode": "isEditMode"; }, { "focus": "focus"; "blur": "blur"; "updateValue": "updateValue"; "disableEditableView": "disableEditableView"; }, never, never, false>;
|
|
54
57
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class InputTextComponent implements ControlValueAccessor {
|
|
4
5
|
name: any;
|
|
5
6
|
autocomplete: boolean;
|
|
@@ -49,4 +50,6 @@ export declare class InputTextComponent implements ControlValueAccessor {
|
|
|
49
50
|
clear(): void;
|
|
50
51
|
onChange(_: any): void;
|
|
51
52
|
private onTouched;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextComponent, never>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "in-input-text", never, { "name": "name"; "autocomplete": "autocomplete"; "label": "label"; "required": "required"; "error": "error"; "size": "size"; "maxlength": "maxlength"; "width": "width"; "display": "display"; "large": "large"; "small": "small"; "widget": "widget"; "forms": "forms"; "placeholder": "placeholder"; "id": "id"; "testId": "testId"; "disabled": "disabled"; "opacity": "opacity"; "shadow": "shadow"; "right": "right"; "type": "type"; "step": "step"; "min": "min"; "max": "max"; }, { "focus": "focus"; "blur": "blur"; "onClick": "onClick"; }, never, never, false>;
|
|
52
55
|
}
|
|
@@ -1,2 +1,49 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./button/button.component";
|
|
3
|
+
import * as i2 from "./input-text/input-text.component";
|
|
4
|
+
import * as i3 from "./textarea/textarea.component";
|
|
5
|
+
import * as i4 from "./panel/panel.component";
|
|
6
|
+
import * as i5 from "./component-container/component-container.component";
|
|
7
|
+
import * as i6 from "./checkbox/checkbox.component";
|
|
8
|
+
import * as i7 from "./empty/empty.component";
|
|
9
|
+
import * as i8 from "./preloader/preloader.component";
|
|
10
|
+
import * as i9 from "./sticky/sticky.component";
|
|
11
|
+
import * as i10 from "./header/header.component";
|
|
12
|
+
import * as i11 from "./toolbar/toolbar.component";
|
|
13
|
+
import * as i12 from "./breadcrumb/breadcrumb.component";
|
|
14
|
+
import * as i13 from "./file/file.component";
|
|
15
|
+
import * as i14 from "./select-button/select-button.component";
|
|
16
|
+
import * as i15 from "./modal-input-text/modal-input-text.component";
|
|
17
|
+
import * as i16 from "./select-list/select-list.component";
|
|
18
|
+
import * as i17 from "./status-circle/status-circle.component";
|
|
19
|
+
import * as i18 from "./svg/svg.component";
|
|
20
|
+
import * as i19 from "./switcher/switcher.component";
|
|
21
|
+
import * as i20 from "./inline-message/inline-message.component";
|
|
22
|
+
import * as i21 from "./link/link.component";
|
|
23
|
+
import * as i22 from "./inspark.shared";
|
|
24
|
+
import * as i23 from "./tooltip/tooltip.component";
|
|
25
|
+
import * as i24 from "./radiobutton/radiobutton.component";
|
|
26
|
+
import * as i25 from "./object-tree/object-tree.component";
|
|
27
|
+
import * as i26 from "./content-toggle/content-toggle.component";
|
|
28
|
+
import * as i27 from "./input-group/input-group.component";
|
|
29
|
+
import * as i28 from "./pie/pie.component";
|
|
30
|
+
import * as i29 from "./autocomplete/autocomplete.component";
|
|
31
|
+
import * as i30 from "@angular/forms";
|
|
32
|
+
import * as i31 from "@angular/common";
|
|
33
|
+
import * as i32 from "./dropdown/dropdown.component";
|
|
34
|
+
import * as i33 from "./table/table.component";
|
|
35
|
+
import * as i34 from "./tree-table/tree-table.component";
|
|
36
|
+
import * as i35 from "primeng/radiobutton";
|
|
37
|
+
import * as i36 from "@ngx-translate/core";
|
|
38
|
+
import * as i37 from "primeng/menu";
|
|
39
|
+
import * as i38 from "primeng/slider";
|
|
40
|
+
import * as i39 from "@ng-bootstrap/ng-bootstrap";
|
|
41
|
+
import * as i40 from "ng-inline-svg";
|
|
42
|
+
import * as i41 from "primeng/breadcrumb";
|
|
43
|
+
import * as i42 from "primeng/tree";
|
|
44
|
+
import * as i43 from "primeng/api";
|
|
1
45
|
export declare class InsparkComponentsModule {
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InsparkComponentsModule, never>;
|
|
47
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InsparkComponentsModule, [typeof i1.ButtonComponent, typeof i2.InputTextComponent, typeof i3.TextareaComponent, typeof i4.PanelComponent, typeof i5.ComponentContainerComponent, typeof i6.CheckboxComponent, typeof i7.EmptyComponent, typeof i8.PreloaderComponent, typeof i9.InsparkStickyComponent, typeof i10.InsparkHeaderComponent, typeof i11.ToolbarComponent, typeof i12.BreadcrumbComponent, typeof i13.FileComponent, typeof i14.SelectButtonComponent, typeof i15.ModalInputTextComponent, typeof i16.SelectListComponent, typeof i17.StatusCircleComponent, typeof i18.SvgComponent, typeof i19.SwitcherComponent, typeof i20.InlineMessageComponent, typeof i21.LinkComponent, typeof i22.InsparkTemplate, typeof i23.TooltipComponent, typeof i24.RadiobuttonComponent, typeof i25.ObjectTreeComponent, typeof i26.ContentToggleComponent, typeof i27.InputGroupComponent, typeof i28.ObjectPieComponent], [typeof i29.AutoCompleteComponentModule, typeof i30.FormsModule, typeof i30.ReactiveFormsModule, typeof i31.CommonModule, typeof i32.DropdownComponentModule, typeof i33.TableComponentModule, typeof i34.TreeTableComponentModule, typeof i35.RadioButtonModule, typeof i36.TranslateModule, typeof i37.MenuModule, typeof i38.SliderModule, typeof i39.NgbModule, typeof i40.InlineSVGModule, typeof i41.BreadcrumbModule, typeof i42.TreeModule, typeof i43.SharedModule], [typeof i1.ButtonComponent, typeof i2.InputTextComponent, typeof i3.TextareaComponent, typeof i4.PanelComponent, typeof i5.ComponentContainerComponent, typeof i6.CheckboxComponent, typeof i32.DropdownComponentModule, typeof i33.TableComponentModule, typeof i34.TreeTableComponentModule, typeof i7.EmptyComponent, typeof i8.PreloaderComponent, typeof i9.InsparkStickyComponent, typeof i10.InsparkHeaderComponent, typeof i11.ToolbarComponent, typeof i12.BreadcrumbComponent, typeof i13.FileComponent, typeof i14.SelectButtonComponent, typeof i15.ModalInputTextComponent, typeof i16.SelectListComponent, typeof i17.StatusCircleComponent, typeof i18.SvgComponent, typeof i19.SwitcherComponent, typeof i37.MenuModule, typeof i38.SliderModule, typeof i20.InlineMessageComponent, typeof i21.LinkComponent, typeof i22.InsparkTemplate, typeof i39.NgbModule, typeof i23.TooltipComponent, typeof i24.RadiobuttonComponent, typeof i25.ObjectTreeComponent, typeof i26.ContentToggleComponent, typeof i28.ObjectPieComponent, typeof i27.InputGroupComponent, typeof i29.AutoCompleteComponentModule]>;
|
|
48
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InsparkComponentsModule>;
|
|
2
49
|
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class InsparkTemplate {
|
|
3
4
|
template: TemplateRef<any>;
|
|
4
5
|
type: string;
|
|
5
6
|
name: string;
|
|
6
7
|
constructor(template: TemplateRef<any>);
|
|
7
8
|
getType(): string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InsparkTemplate, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<InsparkTemplate, "[inTemplate]", never, { "type": "type"; "name": "inTemplate"; }, {}, never, never, false>;
|
|
8
11
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, OnChanges, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { MenuItem } from 'primeng/api';
|
|
3
|
+
import { Menu } from 'primeng/menu';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
3
5
|
declare type LinkColor = 'normal' | 'secondary' | 'danger' | 'primary' | 'transparent';
|
|
4
6
|
declare type IconPos = 'left' | 'right';
|
|
5
7
|
export declare class LinkComponent implements OnInit, OnChanges {
|
|
@@ -39,5 +41,7 @@ export declare class LinkComponent implements OnInit, OnChanges {
|
|
|
39
41
|
ngOnChanges(changes: any): void;
|
|
40
42
|
updateData(): void;
|
|
41
43
|
_onClick($event: Event): void;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinkComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinkComponent, "in-link", never, { "color": "color"; "name": "name"; "testId": "testId"; "label": "label"; "icon": "icon"; "className": "className"; "svg": "svg"; "link": "link"; "linkType": "linkType"; "linkTarget": "linkTarget"; "pressed": "pressed"; "disabled": "disabled"; "iconPos": "iconPos"; "menuItems": "menuItems"; }, { "focus": "focus"; "blur": "blur"; "click": "click"; }, never, never, false>;
|
|
42
46
|
}
|
|
43
47
|
export {};
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
|
-
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/api';
|
|
4
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
5
4
|
import { InsparkMessageService } from "../../services/inspark-message.service";
|
|
5
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class ModalInputTextComponent implements OnInit {
|
|
7
8
|
ref: DynamicDialogRef;
|
|
8
9
|
config: DynamicDialogConfig;
|
|
@@ -29,4 +30,6 @@ export declare class ModalInputTextComponent implements OnInit {
|
|
|
29
30
|
highlight(value: string, text: any): string;
|
|
30
31
|
calculateWidth(): void;
|
|
31
32
|
translate(str: string): string;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalInputTextComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalInputTextComponent, "app-modal-input-text", never, {}, {}, never, never, false>;
|
|
32
35
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ObjectTreeComponent implements OnInit {
|
|
3
4
|
constructor();
|
|
4
5
|
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectTreeComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ObjectTreeComponent, "in-object-tree", never, {}, {}, never, never, false>;
|
|
5
8
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnChanges, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { TranslateService } from '@ngx-translate/core';
|
|
3
3
|
import { PieService, PieStatuses } from './pie.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ObjectPieComponent implements OnDestroy, OnChanges, OnInit {
|
|
5
6
|
private translate;
|
|
6
7
|
private pieService;
|
|
@@ -13,4 +14,6 @@ export declare class ObjectPieComponent implements OnDestroy, OnChanges, OnInit
|
|
|
13
14
|
ngOnInit(): void;
|
|
14
15
|
ngOnDestroy(): void;
|
|
15
16
|
ngOnChanges(changes: any): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ObjectPieComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ObjectPieComponent, "in-pie", never, { "count": "count"; "size": "size"; "statuses": "statuses"; }, {}, never, never, false>;
|
|
16
19
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export interface PieStatuses {
|
|
2
3
|
'-1': number;
|
|
3
4
|
0: number;
|
|
@@ -13,4 +14,6 @@ export declare class PieService {
|
|
|
13
14
|
color: string;
|
|
14
15
|
}[];
|
|
15
16
|
private getCoordinatesForPercent;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PieService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PieService>;
|
|
16
19
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
declare type PreloaderSize = 'small' | 'normal';
|
|
3
4
|
export declare class PreloaderComponent implements OnInit {
|
|
4
5
|
inline: boolean;
|
|
@@ -6,5 +7,7 @@ export declare class PreloaderComponent implements OnInit {
|
|
|
6
7
|
size: PreloaderSize;
|
|
7
8
|
constructor();
|
|
8
9
|
ngOnInit(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PreloaderComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PreloaderComponent, "in-preloader", never, { "inline": "inline"; "overlay": "overlay"; "size": "size"; }, {}, never, never, false>;
|
|
9
12
|
}
|
|
10
13
|
export {};
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "primeng/dropdown";
|
|
1
3
|
export declare class PrimengComponentsModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrimengComponentsModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PrimengComponentsModule, never, [typeof i1.DropdownModule], [typeof i1.DropdownModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PrimengComponentsModule>;
|
|
2
7
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class RadiobuttonComponent {
|
|
3
4
|
name: any;
|
|
4
5
|
label: any;
|
|
@@ -14,4 +15,6 @@ export declare class RadiobuttonComponent {
|
|
|
14
15
|
change: EventEmitter<any>;
|
|
15
16
|
constructor();
|
|
16
17
|
onChangeEvent(value: any): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadiobuttonComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadiobuttonComponent, "in-radiobutton", never, { "name": "name"; "label": "label"; "required": "required"; "error": "error"; "placeholder": "placeholder"; "id": "id"; "disabled": "disabled"; "value": "value"; "values": "values"; "keyLabel": "keyLabel"; "item": "item"; }, { "change": "change"; }, never, never, false>;
|
|
17
20
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
declare type IconPos = 'left' | 'right';
|
|
4
5
|
interface SelectOption {
|
|
5
6
|
label: string;
|
|
@@ -51,5 +52,7 @@ export declare class SelectButtonComponent implements ControlValueAccessor, OnIn
|
|
|
51
52
|
private propagateChange;
|
|
52
53
|
private onChange;
|
|
53
54
|
private onTouched;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectButtonComponent, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectButtonComponent, "in-select-button", never, { "name": "name"; "testId": "testId"; "label": "label"; "icon": "icon"; "error": "error"; "iconPos": "iconPos"; "options": "options"; "disabled": "disabled"; "required": "required"; "multiple": "multiple"; "initial": "initial"; }, { "focus": "focus"; "blur": "blur"; "click": "click"; "change": "change"; }, never, never, false>;
|
|
54
57
|
}
|
|
55
58
|
export {};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
|
-
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/api';
|
|
4
3
|
import { InsparkMessageService } from "../../services/inspark-message.service";
|
|
4
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class SelectListComponent implements OnInit {
|
|
6
7
|
ref: DynamicDialogRef;
|
|
7
8
|
config: DynamicDialogConfig;
|
|
@@ -22,4 +23,6 @@ export declare class SelectListComponent implements OnInit {
|
|
|
22
23
|
applySelection(): void;
|
|
23
24
|
select(i: any): void;
|
|
24
25
|
highlight(value: string, text: any): string;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectListComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectListComponent, "app-select-list", never, {}, {}, never, never, false>;
|
|
25
28
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CircleMode, CircleSize } from "../../interface";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class StatusCircleComponent {
|
|
3
4
|
label: string;
|
|
4
5
|
title: string;
|
|
@@ -7,4 +8,6 @@ export declare class StatusCircleComponent {
|
|
|
7
8
|
mode: CircleMode;
|
|
8
9
|
size: CircleSize;
|
|
9
10
|
content: any;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StatusCircleComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StatusCircleComponent, "in-status-circle", never, { "label": "label"; "title": "title"; "icon": "icon"; "showLabel": "showLabel"; "mode": "mode"; "size": "size"; "content": "content"; }, {}, never, never, false>;
|
|
10
13
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class InsparkStickyComponent implements OnInit, OnDestroy {
|
|
3
4
|
private cdr;
|
|
4
5
|
stickyRef: ElementRef;
|
|
@@ -17,4 +18,6 @@ export declare class InsparkStickyComponent implements OnInit, OnDestroy {
|
|
|
17
18
|
ngOnDestroy(): void;
|
|
18
19
|
resize: () => void;
|
|
19
20
|
scroll: () => void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InsparkStickyComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InsparkStickyComponent, "in-sticky", never, { "top": "top"; "isInline": "isInline"; "isFloated": "isFloated"; "zIndex": "zIndex"; "class": "class"; }, {}, never, ["*"], false>;
|
|
20
23
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import { Button as PButton } from 'primeng/
|
|
1
|
+
import { Button as PButton } from 'primeng/button';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
declare type SVGSize = 'small' | 'normal' | 'large';
|
|
3
4
|
export declare class SvgComponent extends PButton {
|
|
4
5
|
size: SVGSize;
|
|
5
6
|
width: string;
|
|
6
7
|
height: string;
|
|
7
8
|
src: string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SvgComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SvgComponent, "in-svg", never, { "size": "size"; "width": "width"; "height": "height"; "src": "src"; }, {}, never, never, false>;
|
|
8
11
|
}
|
|
9
12
|
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { Router } from '@angular/router';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class SwitcherComponent implements OnInit, OnChanges, ControlValueAccessor {
|
|
5
6
|
element: ElementRef;
|
|
6
7
|
private cdRef;
|
|
@@ -42,4 +43,6 @@ export declare class SwitcherComponent implements OnInit, OnChanges, ControlValu
|
|
|
42
43
|
private propagateChange;
|
|
43
44
|
onChange(e: Event): void;
|
|
44
45
|
private onTouched;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SwitcherComponent, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwitcherComponent, "in-switcher", never, { "name": "name"; "label": "label"; "error": "error"; "iconOff": "iconOff"; "iconOn": "iconOn"; "labelOff": "labelOff"; "labelOn": "labelOn"; "faIconOn": "faIconOn"; "faIconOff": "faIconOff"; "id": "id"; "disabled": "disabled"; "waiting": "waiting"; }, { "change": "change"; }, never, never, false>;
|
|
45
48
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class TableClickOutsideDirective {
|
|
3
4
|
private element;
|
|
4
5
|
clickedOutside: EventEmitter<any>;
|
|
5
6
|
constructor(element: ElementRef);
|
|
6
7
|
click(event: any): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableClickOutsideDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableClickOutsideDirective, "[inClickOutside]", never, {}, { "clickedOutside": "clickedOutside"; }, never, never, false>;
|
|
7
10
|
}
|