@smartbit4all/ng-client 3.3.58 → 3.3.59
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/smart-client/smart-component-api-client.mjs +32 -25
- package/esm2020/lib/smart-form/api/model/models.mjs +2 -1
- package/esm2020/lib/smart-form/api/model/smartWidgetDefinition.mjs +1 -1
- package/esm2020/lib/smart-form/api/model/valueChangeMode.mjs +20 -0
- package/esm2020/lib/smart-form/services/smartform.layout-definition.service.mjs +23 -3
- package/esm2020/lib/smart-form/smartform.form-model.mjs +1 -1
- package/esm2020/lib/view-context/smart-ui-action/ui-action-toolbar.component.mjs +4 -1
- package/fesm2015/smartbit4all-ng-client.mjs +84 -34
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +76 -27
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-client/smart-component-api-client.d.ts +1 -0
- package/lib/smart-form/api/model/models.d.ts +1 -0
- package/lib/smart-form/api/model/smartWidgetDefinition.d.ts +2 -0
- package/lib/smart-form/api/model/valueChangeMode.d.ts +18 -0
- package/lib/smart-form/smartform.form-model.d.ts +29 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.59.tgz +0 -0
- package/smartbit4all-ng-client-3.3.58.tgz +0 -0
|
@@ -3663,6 +3663,26 @@ var SmartWidgetHintPositionEnum;
|
|
|
3663
3663
|
})(SmartWidgetHintPositionEnum || (SmartWidgetHintPositionEnum = {}));
|
|
3664
3664
|
;
|
|
3665
3665
|
|
|
3666
|
+
/**
|
|
3667
|
+
* Form layout definition
|
|
3668
|
+
* Contains form layout definition objects.
|
|
3669
|
+
*
|
|
3670
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3671
|
+
* Contact: info@it4all.hu
|
|
3672
|
+
*
|
|
3673
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3674
|
+
* https://openapi-generator.tech
|
|
3675
|
+
* Do not edit the class manually.
|
|
3676
|
+
*/
|
|
3677
|
+
/**
|
|
3678
|
+
* This enum defines the value change handling strategy. Currently only one method is supported, IMMEDIATE_ACTION, which will trigger an executeUiAction when the value is changed.
|
|
3679
|
+
*/
|
|
3680
|
+
var ValueChangeMode;
|
|
3681
|
+
(function (ValueChangeMode) {
|
|
3682
|
+
ValueChangeMode["NONE"] = "NONE";
|
|
3683
|
+
ValueChangeMode["IMMEDIATE_ACTION"] = "IMMEDIATE_ACTION";
|
|
3684
|
+
})(ValueChangeMode || (ValueChangeMode = {}));
|
|
3685
|
+
|
|
3666
3686
|
class ApiModule$2 {
|
|
3667
3687
|
constructor(parentModule, http) {
|
|
3668
3688
|
if (parentModule) {
|
|
@@ -6560,7 +6580,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6560
6580
|
if (!config.layoutDefinition.uploadCallback) {
|
|
6561
6581
|
throw Error('No upload function injected.');
|
|
6562
6582
|
}
|
|
6563
|
-
return this.createFileUploader(config.layoutDefinition
|
|
6583
|
+
return this.createFileUploader(config.layoutDefinition);
|
|
6564
6584
|
case SmartFormWidgetType.MATRIX:
|
|
6565
6585
|
return this.createMatrix(config.layoutDefinition);
|
|
6566
6586
|
case SmartFormWidgetType.SORTABLE:
|
|
@@ -6573,6 +6593,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6573
6593
|
createMonthPicker(layoutDefinition) {
|
|
6574
6594
|
let widget = {
|
|
6575
6595
|
key: layoutDefinition.key,
|
|
6596
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6576
6597
|
type: SmartFormWidgetType.MONTH_PICKER,
|
|
6577
6598
|
label: layoutDefinition.label,
|
|
6578
6599
|
showLabel: layoutDefinition.showLabel,
|
|
@@ -6584,6 +6605,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6584
6605
|
type: SmartFormWidgetType.MATRIX,
|
|
6585
6606
|
label: layoutDefinition.label,
|
|
6586
6607
|
key: layoutDefinition.key,
|
|
6608
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6587
6609
|
showLabel: layoutDefinition.showLabel,
|
|
6588
6610
|
//TODO set isMultiple variable from layoutDefinition
|
|
6589
6611
|
isMultiple: false,
|
|
@@ -6594,6 +6616,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6594
6616
|
createSortable(layoutDefinition) {
|
|
6595
6617
|
let widget = {
|
|
6596
6618
|
key: layoutDefinition.key,
|
|
6619
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6597
6620
|
label: layoutDefinition.label,
|
|
6598
6621
|
showLabel: layoutDefinition.showLabel,
|
|
6599
6622
|
type: SmartFormWidgetType.SORTABLE,
|
|
@@ -6619,6 +6642,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6619
6642
|
});
|
|
6620
6643
|
let widget = {
|
|
6621
6644
|
key: layoutDefinition.key,
|
|
6645
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6622
6646
|
type: SmartFormWidgetType.CONTAINER,
|
|
6623
6647
|
cssClass: layoutDefinition.cssClass,
|
|
6624
6648
|
direction: (_b = layoutDefinition.direction) !== null && _b !== void 0 ? _b : SmartFormWidgetDirection.COL,
|
|
@@ -6630,6 +6654,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6630
6654
|
let widget = {
|
|
6631
6655
|
type: SmartFormWidgetType.TEXT_FIELD,
|
|
6632
6656
|
key: layoutDefinition.key,
|
|
6657
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6633
6658
|
label: layoutDefinition.label,
|
|
6634
6659
|
placeholder: layoutDefinition.placeholder,
|
|
6635
6660
|
prefix: layoutDefinition.prefix,
|
|
@@ -6652,6 +6677,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6652
6677
|
let widget = {
|
|
6653
6678
|
type: SmartFormWidgetType.TEXT_FIELD_CHIPS,
|
|
6654
6679
|
key: layoutDefinition.key,
|
|
6680
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6655
6681
|
label: layoutDefinition.label,
|
|
6656
6682
|
placeholder: layoutDefinition.placeholder,
|
|
6657
6683
|
showLabel: layoutDefinition.showLabel,
|
|
@@ -6675,6 +6701,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6675
6701
|
let widget = {
|
|
6676
6702
|
type: SmartFormWidgetType.TEXT_FIELD_NUMBER,
|
|
6677
6703
|
key: layoutDefinition.key,
|
|
6704
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6678
6705
|
label: layoutDefinition.label,
|
|
6679
6706
|
placeholder: layoutDefinition.placeholder,
|
|
6680
6707
|
prefix: layoutDefinition.prefix,
|
|
@@ -6692,6 +6719,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6692
6719
|
let widget = {
|
|
6693
6720
|
type: SmartFormWidgetType.TEXT_BOX,
|
|
6694
6721
|
key: layoutDefinition.key,
|
|
6722
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6695
6723
|
label: layoutDefinition.label,
|
|
6696
6724
|
placeholder: layoutDefinition.placeholder,
|
|
6697
6725
|
showLabel: layoutDefinition.showLabel,
|
|
@@ -6705,6 +6733,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6705
6733
|
let widget = {
|
|
6706
6734
|
type: SmartFormWidgetType.RICH_TEXT,
|
|
6707
6735
|
key: layoutDefinition.key,
|
|
6736
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6708
6737
|
label: layoutDefinition.label,
|
|
6709
6738
|
placeholder: layoutDefinition.placeholder,
|
|
6710
6739
|
showLabel: layoutDefinition.showLabel,
|
|
@@ -6728,6 +6757,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6728
6757
|
let widget = {
|
|
6729
6758
|
type: SmartFormWidgetType.TOGGLE,
|
|
6730
6759
|
key: layoutDefinition.key,
|
|
6760
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6731
6761
|
label: layoutDefinition.label,
|
|
6732
6762
|
showLabel: layoutDefinition.showLabel,
|
|
6733
6763
|
cssClass: layoutDefinition.cssClass,
|
|
@@ -6740,6 +6770,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6740
6770
|
let widget = {
|
|
6741
6771
|
type: SmartFormWidgetType.RADIO_BUTTON,
|
|
6742
6772
|
key: layoutDefinition.key,
|
|
6773
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6743
6774
|
label: layoutDefinition.label,
|
|
6744
6775
|
showLabel: layoutDefinition.showLabel,
|
|
6745
6776
|
cssClass: layoutDefinition.cssClass,
|
|
@@ -6763,6 +6794,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6763
6794
|
let widget = {
|
|
6764
6795
|
type: SmartFormWidgetType.CHECK_BOX_2,
|
|
6765
6796
|
key: layoutDefinition.key,
|
|
6797
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6766
6798
|
label: layoutDefinition.label,
|
|
6767
6799
|
showLabel: layoutDefinition.showLabel,
|
|
6768
6800
|
cssClass: layoutDefinition.cssClass,
|
|
@@ -6786,6 +6818,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6786
6818
|
let widget = {
|
|
6787
6819
|
type: SmartFormWidgetType.SELECT,
|
|
6788
6820
|
key: layoutDefinition.key,
|
|
6821
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6789
6822
|
label: layoutDefinition.label,
|
|
6790
6823
|
showLabel: layoutDefinition.showLabel,
|
|
6791
6824
|
cssClass: layoutDefinition.cssClass,
|
|
@@ -6810,6 +6843,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6810
6843
|
let widget = {
|
|
6811
6844
|
type: SmartFormWidgetType.SELECT_MULTIPLE,
|
|
6812
6845
|
key: layoutDefinition.key,
|
|
6846
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6813
6847
|
label: layoutDefinition.label,
|
|
6814
6848
|
showLabel: layoutDefinition.showLabel,
|
|
6815
6849
|
cssClass: layoutDefinition.cssClass,
|
|
@@ -6833,6 +6867,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6833
6867
|
let widget = {
|
|
6834
6868
|
type: SmartFormWidgetType.DATE_PICKER,
|
|
6835
6869
|
key: layoutDefinition.key,
|
|
6870
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6836
6871
|
label: layoutDefinition.label,
|
|
6837
6872
|
showLabel: layoutDefinition.showLabel,
|
|
6838
6873
|
cssClass: layoutDefinition.cssClass,
|
|
@@ -6845,6 +6880,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6845
6880
|
let widget = {
|
|
6846
6881
|
type: SmartFormWidgetType.DATE_TIME_PICKER,
|
|
6847
6882
|
key: layoutDefinition.key,
|
|
6883
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6848
6884
|
label: layoutDefinition.label,
|
|
6849
6885
|
showLabel: layoutDefinition.showLabel,
|
|
6850
6886
|
cssClass: layoutDefinition.cssClass,
|
|
@@ -6857,6 +6893,7 @@ class SmartformLayoutDefinitionService {
|
|
|
6857
6893
|
let widget = {
|
|
6858
6894
|
type: SmartFormWidgetType.IMAGE,
|
|
6859
6895
|
key: layoutDefinition.key,
|
|
6896
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6860
6897
|
label: layoutDefinition.label,
|
|
6861
6898
|
showLabel: layoutDefinition.showLabel,
|
|
6862
6899
|
cssClass: layoutDefinition.cssClass,
|
|
@@ -6864,14 +6901,15 @@ class SmartformLayoutDefinitionService {
|
|
|
6864
6901
|
return widget;
|
|
6865
6902
|
}
|
|
6866
6903
|
createButton(config) {
|
|
6867
|
-
var _a, _b, _c, _d, _e;
|
|
6904
|
+
var _a, _b, _c, _d, _e, _f;
|
|
6868
6905
|
let uiAction = (_a = config.uiActions) === null || _a === void 0 ? void 0 : _a.find((uiAction) => { var _a; return uiAction.code === ((_a = config.layoutDefinition) === null || _a === void 0 ? void 0 : _a.key); });
|
|
6869
6906
|
let widget = {
|
|
6870
6907
|
type: SmartFormWidgetType.BUTTON,
|
|
6871
6908
|
key: (_b = config.layoutDefinition) === null || _b === void 0 ? void 0 : _b.key,
|
|
6872
|
-
|
|
6873
|
-
|
|
6874
|
-
|
|
6909
|
+
valueChangeMode: (_c = config.layoutDefinition) === null || _c === void 0 ? void 0 : _c.valueChangeMode,
|
|
6910
|
+
label: (_d = config.layoutDefinition) === null || _d === void 0 ? void 0 : _d.label,
|
|
6911
|
+
showLabel: (_e = config.layoutDefinition) === null || _e === void 0 ? void 0 : _e.showLabel,
|
|
6912
|
+
cssClass: (_f = config.layoutDefinition) === null || _f === void 0 ? void 0 : _f.cssClass,
|
|
6875
6913
|
callback: config.buttonCallback,
|
|
6876
6914
|
uiAction,
|
|
6877
6915
|
uiActionDescriptor: config.uiActionDescriptors(uiAction),
|
|
@@ -6882,16 +6920,18 @@ class SmartformLayoutDefinitionService {
|
|
|
6882
6920
|
let widget = {
|
|
6883
6921
|
type: SmartFormWidgetType.DIVIDER,
|
|
6884
6922
|
key: layoutDefinition.key,
|
|
6923
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6885
6924
|
label: layoutDefinition.label,
|
|
6886
6925
|
showLabel: layoutDefinition.showLabel,
|
|
6887
6926
|
cssClass: layoutDefinition.cssClass,
|
|
6888
6927
|
};
|
|
6889
6928
|
return widget;
|
|
6890
6929
|
}
|
|
6891
|
-
createFileUploader(layoutDefinition
|
|
6930
|
+
createFileUploader(layoutDefinition) {
|
|
6892
6931
|
let widget = {
|
|
6893
6932
|
type: SmartFormWidgetType.FILE_UPLOADER,
|
|
6894
6933
|
key: layoutDefinition.key,
|
|
6934
|
+
valueChangeMode: layoutDefinition.valueChangeMode,
|
|
6895
6935
|
label: layoutDefinition.label,
|
|
6896
6936
|
showLabel: layoutDefinition.showLabel,
|
|
6897
6937
|
cssClass: layoutDefinition.cssClass,
|
|
@@ -8333,8 +8373,11 @@ class UiActionToolbarComponent {
|
|
|
8333
8373
|
// We do not handle double clicks
|
|
8334
8374
|
}
|
|
8335
8375
|
getType(uiActionModel) {
|
|
8336
|
-
var _a, _b;
|
|
8337
|
-
|
|
8376
|
+
var _a, _b, _c, _d;
|
|
8377
|
+
if (!((_a = uiActionModel.descriptor) === null || _a === void 0 ? void 0 : _a.type)) {
|
|
8378
|
+
console.log(`Action button type unset: ${(_b = uiActionModel === null || uiActionModel === void 0 ? void 0 : uiActionModel.uiAction) === null || _b === void 0 ? void 0 : _b.code}`);
|
|
8379
|
+
}
|
|
8380
|
+
switch ((_c = uiActionModel.descriptor) === null || _c === void 0 ? void 0 : _c.type) {
|
|
8338
8381
|
case UiActionButtonType.NORMAL:
|
|
8339
8382
|
return 'mat-button';
|
|
8340
8383
|
case UiActionButtonType.FLAT:
|
|
@@ -8350,7 +8393,7 @@ class UiActionToolbarComponent {
|
|
|
8350
8393
|
case UiActionButtonType.FAB:
|
|
8351
8394
|
return 'mat-fab';
|
|
8352
8395
|
default:
|
|
8353
|
-
console.log(`Unhandled action button type case: ${(
|
|
8396
|
+
console.log(`Unhandled action button type case: ${(_d = uiActionModel.descriptor) === null || _d === void 0 ? void 0 : _d.type}`);
|
|
8354
8397
|
return `mat-button`;
|
|
8355
8398
|
}
|
|
8356
8399
|
}
|
|
@@ -14735,11 +14778,13 @@ class SmartComponentApiClient {
|
|
|
14735
14778
|
SmartComponentLayoutUtility.setParent(comp.smartComponentLayout, this);
|
|
14736
14779
|
this.initActions();
|
|
14737
14780
|
}
|
|
14738
|
-
// for handling embedded forms
|
|
14739
|
-
this.handleDataChangeSubscriptions();
|
|
14740
14781
|
if (this.uuid && this.uuid !== comp.uuid)
|
|
14741
14782
|
comp.uuid = this.uuid;
|
|
14742
14783
|
});
|
|
14784
|
+
// for handling embedded forms
|
|
14785
|
+
this.handleQueryList(this.getSmartComponentLayoutsQL(), (form) => {
|
|
14786
|
+
this.handleDataChangeSubscriptions();
|
|
14787
|
+
});
|
|
14743
14788
|
}
|
|
14744
14789
|
if (!this.getSmartFormsQL()) {
|
|
14745
14790
|
console.warn('getSmartFormsQL not available!');
|
|
@@ -14771,14 +14816,6 @@ class SmartComponentApiClient {
|
|
|
14771
14816
|
});
|
|
14772
14817
|
}
|
|
14773
14818
|
}
|
|
14774
|
-
if (!this.getSmartUiActionToolbarsQL()) {
|
|
14775
|
-
console.warn('SmartUiActionToolbarQL not available!');
|
|
14776
|
-
}
|
|
14777
|
-
else {
|
|
14778
|
-
this.handleQueryList(this.getSmartUiActionToolbarsQL(), (toolbar) => {
|
|
14779
|
-
console.log('', toolbar.id);
|
|
14780
|
-
});
|
|
14781
|
-
}
|
|
14782
14819
|
}
|
|
14783
14820
|
handleQueryListSimple(ql, handler) {
|
|
14784
14821
|
handler();
|
|
@@ -14830,7 +14867,6 @@ class SmartComponentApiClient {
|
|
|
14830
14867
|
// css style properties
|
|
14831
14868
|
if (styleData.style) {
|
|
14832
14869
|
Object.entries(styleData.style).forEach(([key, value]) => {
|
|
14833
|
-
console.log(`Key: ${key}, Value: ${value}`);
|
|
14834
14870
|
this.renderer.setStyle(element, key, value, RendererStyleFlags2.Important);
|
|
14835
14871
|
});
|
|
14836
14872
|
}
|
|
@@ -14956,26 +14992,40 @@ class SmartComponentApiClient {
|
|
|
14956
14992
|
this.dataChangeKeys.push(key);
|
|
14957
14993
|
}
|
|
14958
14994
|
}
|
|
14995
|
+
removeDataChangeActionHandler(key) {
|
|
14996
|
+
let idx = this.dataChangeKeys.indexOf(key);
|
|
14997
|
+
if (idx >= 0) {
|
|
14998
|
+
this.dataChangeKeys.splice(idx, 1);
|
|
14999
|
+
}
|
|
15000
|
+
}
|
|
14959
15001
|
dataChangeActionHandler(event) {
|
|
14960
|
-
console.log('event received', event);
|
|
14961
15002
|
if (this.dataChangeKeys.includes(event.key)) {
|
|
14962
|
-
|
|
14963
|
-
|
|
14964
|
-
|
|
14965
|
-
|
|
14966
|
-
|
|
14967
|
-
|
|
14968
|
-
|
|
14969
|
-
});
|
|
14970
|
-
}
|
|
14971
|
-
catch (error) {
|
|
14972
|
-
console.log('error', error);
|
|
14973
|
-
}
|
|
15003
|
+
this.executeUiAction({
|
|
15004
|
+
code: event.key,
|
|
15005
|
+
model: true,
|
|
15006
|
+
params: {
|
|
15007
|
+
item: event.value,
|
|
15008
|
+
},
|
|
15009
|
+
});
|
|
14974
15010
|
}
|
|
14975
15011
|
}
|
|
14976
15012
|
handleDataChangeSubscriptions() {
|
|
14977
15013
|
if (this.useQueryLists) {
|
|
14978
15014
|
let forms = this.getAllSmartFormComponents();
|
|
15015
|
+
// add elements to dataChangeKeys
|
|
15016
|
+
forms.forEach((form) => {
|
|
15017
|
+
var _a;
|
|
15018
|
+
(_a = form.smartForm) === null || _a === void 0 ? void 0 : _a.widgets.forEach((widget) => {
|
|
15019
|
+
if (widget.key) {
|
|
15020
|
+
if (widget.valueChangeMode === ValueChangeMode.IMMEDIATE_ACTION) {
|
|
15021
|
+
this.addDataChangeActionHandler(widget.key);
|
|
15022
|
+
}
|
|
15023
|
+
else {
|
|
15024
|
+
this.removeDataChangeActionHandler(widget.key);
|
|
15025
|
+
}
|
|
15026
|
+
}
|
|
15027
|
+
});
|
|
15028
|
+
});
|
|
14979
15029
|
// subscribe to new forms
|
|
14980
15030
|
forms.forEach((component) => {
|
|
14981
15031
|
if (!this.dataChangeActionHandlers.has(component)) {
|
|
@@ -15467,5 +15517,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
15467
15517
|
* Generated bundle index. Do not edit.
|
|
15468
15518
|
*/
|
|
15469
15519
|
|
|
15470
|
-
export { APIS$3 as APIS, ApiModule$3 as ApiModule, ApiQueueService, BASE_PATH$5 as BASE_PATH, COLLECTION_FORMATS$5 as COLLECTION_FORMATS, CloseResult, ComponentFactoryService, ComponentFactoryServiceModule, ComponentType, ComponentWidgetType, Configuration$5 as Configuration, DIALOG_DISABLE_CLOSE, DataChangeKind, DefaultUiActionCode_CLOSE, ExpandableSectionButtonIconPosition, ExpandableSectionButtonType, ExpandableSectionComponent, FilterExpressionBoolOperator$1 as FilterExpressionBoolOperator, FilterExpressionBuilderGroupBuilderGroupKindEnum, FilterExpressionDataType, FilterExpressionFieldWidgetType, FilterExpressionOperation, FilterExpressionOrderByOrderEnum, GridColumnContentType, GridDataAccessConfigKindEnum, GridSelectionMode, GridSelectionType, GridUiActionType, GridViewDescriptorKindEnum, IS_ASYNC_PARAM_NAME, IconPosition, ImageResourceKindEnum, LayoutDirection, LinkTargetEnum, MessageOptionType, MessageTextType, MessageType, SelectionDefinitionTypeEnum, SessionAPIS, SessionErrorBehaviour, SessionService, SharedModule, SimplifiedTabGroupComponent, SmartActionType, SmartAuthService, SmartComponent, SmartComponentApiClient, SmartComponentLayoutComponent, SmartComponentLayoutModule, SmartComponentLayoutUtility, SmartDatePipe, SmartDateTimePipe, SmartDialog, SmartExpandableSectionModule, SmartExpandableSectionService, SmartFileUploaderComponent, SmartFilterComponent, SmartFilterEditorContentComponent, SmartFilterEditorModule, SmartFilterEditorService, SmartFilterExpressionItemComponent, SmartFilterExpressionItemsComponent, SmartFilterModule, SmartFilterParamComponent, SmartFilterParamsComponent, SmartFilterPosition, SmartFilterType, SmartFormTextFieldButtonIconPosition, SmartFormWidgetDirection, SmartFormWidgetType, SmartFormWidgetWidth, SmartGridButtonType, SmartGridComponent, SmartGridDataLayout, SmartGridModule, SmartGridService, SmartGridType, SmartIconComponent, SmartIconModule, SmartIconService, SmartLayoutDef, SmartLinkChannelVariableInPath, SmartLinkUuidVariableInPath, SmartNavbarComponent, SmartNavbarModule, SmartNavbarService, SmartNavigationModule, SmartNavigationService, SmartNgClientModule, SmartNgClientService, SmartService, SmartSessionModule, SmartSessionService, SmartSessionTimerComponent, SmartSessionTimerService, SmartSubject, SmartTabGroupModule, SmartTabGroupService, SmartTable, SmartTableButtonType, SmartTableHeaderPropertyType, SmartTableInterfaceTypeEnum, SmartTableOptionButtonDirection, SmartTableOrder, SmartTableType, SmartTimePipe, SmartTooltipDirective, SmartTreeComponent, SmartTreeNodeButtonType, SmartUserSettinsIconPosition, SmartValidatorName, SmartViewContextErrorDialogButtonLabel, SmartViewContextErrorDialogMessage, SmartViewContextErrorDialogTitle, SmartViewContextModule, SmartViewContextService, SmartViewRedirect, SmartWidgetHintPosition, SmartWidgetHintPositionEnum, SmartWidgetSettings, SmartdialogModule, SmartdialogService, SmartfileuploaderComponent, SmartformComponent, SmartformLayoutDefinitionService, SmartformModule, SmartformwidgetComponent, SmarttableComponent, SmarttableModule, SmarttableService, SmarttreeGenericService, SmarttreeModule, SmarttreeService, TabGroupComponent, ToggleLabelPosition, UiActionButtonType, UiActionConfirmDialogComponent, UiActionConfirmDialogService, UiActionDescriptorService, UiActionDialogType, UiActionFeedbackType, UiActionInputDialogComponent, UiActionInputDialogService, UiActionInputType, UiActionService, UiActionToolbarComponent, UiActionTooltipTooltipPositionEnum, ViewEventHandlerViewEventTypeEnum, ViewService, ViewState, ViewType };
|
|
15520
|
+
export { APIS$3 as APIS, ApiModule$3 as ApiModule, ApiQueueService, BASE_PATH$5 as BASE_PATH, COLLECTION_FORMATS$5 as COLLECTION_FORMATS, CloseResult, ComponentFactoryService, ComponentFactoryServiceModule, ComponentType, ComponentWidgetType, Configuration$5 as Configuration, DIALOG_DISABLE_CLOSE, DataChangeKind, DefaultUiActionCode_CLOSE, ExpandableSectionButtonIconPosition, ExpandableSectionButtonType, ExpandableSectionComponent, FilterExpressionBoolOperator$1 as FilterExpressionBoolOperator, FilterExpressionBuilderGroupBuilderGroupKindEnum, FilterExpressionDataType, FilterExpressionFieldWidgetType, FilterExpressionOperation, FilterExpressionOrderByOrderEnum, GridColumnContentType, GridDataAccessConfigKindEnum, GridSelectionMode, GridSelectionType, GridUiActionType, GridViewDescriptorKindEnum, IS_ASYNC_PARAM_NAME, IconPosition, ImageResourceKindEnum, LayoutDirection, LinkTargetEnum, MessageOptionType, MessageTextType, MessageType, SelectionDefinitionTypeEnum, SessionAPIS, SessionErrorBehaviour, SessionService, SharedModule, SimplifiedTabGroupComponent, SmartActionType, SmartAuthService, SmartComponent, SmartComponentApiClient, SmartComponentLayoutComponent, SmartComponentLayoutModule, SmartComponentLayoutUtility, SmartDatePipe, SmartDateTimePipe, SmartDialog, SmartExpandableSectionModule, SmartExpandableSectionService, SmartFileUploaderComponent, SmartFilterComponent, SmartFilterEditorContentComponent, SmartFilterEditorModule, SmartFilterEditorService, SmartFilterExpressionItemComponent, SmartFilterExpressionItemsComponent, SmartFilterModule, SmartFilterParamComponent, SmartFilterParamsComponent, SmartFilterPosition, SmartFilterType, SmartFormTextFieldButtonIconPosition, SmartFormWidgetDirection, SmartFormWidgetType, SmartFormWidgetWidth, SmartGridButtonType, SmartGridComponent, SmartGridDataLayout, SmartGridModule, SmartGridService, SmartGridType, SmartIconComponent, SmartIconModule, SmartIconService, SmartLayoutDef, SmartLinkChannelVariableInPath, SmartLinkUuidVariableInPath, SmartNavbarComponent, SmartNavbarModule, SmartNavbarService, SmartNavigationModule, SmartNavigationService, SmartNgClientModule, SmartNgClientService, SmartService, SmartSessionModule, SmartSessionService, SmartSessionTimerComponent, SmartSessionTimerService, SmartSubject, SmartTabGroupModule, SmartTabGroupService, SmartTable, SmartTableButtonType, SmartTableHeaderPropertyType, SmartTableInterfaceTypeEnum, SmartTableOptionButtonDirection, SmartTableOrder, SmartTableType, SmartTimePipe, SmartTooltipDirective, SmartTreeComponent, SmartTreeNodeButtonType, SmartUserSettinsIconPosition, SmartValidatorName, SmartViewContextErrorDialogButtonLabel, SmartViewContextErrorDialogMessage, SmartViewContextErrorDialogTitle, SmartViewContextModule, SmartViewContextService, SmartViewRedirect, SmartWidgetHintPosition, SmartWidgetHintPositionEnum, SmartWidgetSettings, SmartdialogModule, SmartdialogService, SmartfileuploaderComponent, SmartformComponent, SmartformLayoutDefinitionService, SmartformModule, SmartformwidgetComponent, SmarttableComponent, SmarttableModule, SmarttableService, SmarttreeGenericService, SmarttreeModule, SmarttreeService, TabGroupComponent, ToggleLabelPosition, UiActionButtonType, UiActionConfirmDialogComponent, UiActionConfirmDialogService, UiActionDescriptorService, UiActionDialogType, UiActionFeedbackType, UiActionInputDialogComponent, UiActionInputDialogService, UiActionInputType, UiActionService, UiActionToolbarComponent, UiActionTooltipTooltipPositionEnum, ValueChangeMode, ViewEventHandlerViewEventTypeEnum, ViewService, ViewState, ViewType };
|
|
15471
15521
|
//# sourceMappingURL=smartbit4all-ng-client.mjs.map
|