@smartbit4all/ng-client 3.3.108 → 3.3.110
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-form/smartform.component.mjs +1 -1
- package/esm2020/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +9 -4
- package/esm2020/lib/view-context/smart-ui-action/ui-action.service.mjs +14 -8
- package/esm2020/lib/view-context/smart-view-context.module.mjs +10 -1
- package/fesm2015/smartbit4all-ng-client.mjs +459 -437
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +439 -419
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-form/smartform.component.d.ts +2 -1
- package/lib/smart-form/widgets/smartformwidget/smartformwidget.component.d.ts +3 -1
- package/lib/view-context/smart-ui-action/ui-action.service.d.ts +3 -3
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.110.tgz +0 -0
- package/smartbit4all-ng-client-3.3.108.tgz +0 -0
|
@@ -6,6 +6,7 @@ import { SmartFormService } from './services/smartform.service';
|
|
|
6
6
|
import { SmartForm, SmartFormInvalidFields, SophisticatedValueChange } from './smartform.model';
|
|
7
7
|
import { SmartFormWidget } from './smartform.form-model';
|
|
8
8
|
import { SmartformwidgetComponent } from './widgets/smartformwidget/smartformwidget.component';
|
|
9
|
+
import { UiActionToolbarComponent } from '../view-context/smart-ui-action/ui-action-toolbar.component';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class SmartformComponent implements OnInit, OnDestroy, OnChanges {
|
|
11
12
|
private service;
|
|
@@ -29,7 +30,7 @@ export declare class SmartformComponent implements OnInit, OnDestroy, OnChanges
|
|
|
29
30
|
submitForm(validate?: boolean): SmartForm;
|
|
30
31
|
keyDownFunction(event: any): void;
|
|
31
32
|
getModel(): any;
|
|
32
|
-
getToolbars():
|
|
33
|
+
getToolbars(): UiActionToolbarComponent[];
|
|
33
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartformComponent, never>;
|
|
34
35
|
static ɵcmp: i0.ɵɵComponentDeclaration<SmartformComponent, "smartform", never, { "smartForm": "smartForm"; }, {}, never, never>;
|
|
35
36
|
}
|
|
@@ -10,6 +10,7 @@ import { SmartFormWidgetType, SmartWidgetHintPositionEnum } from '../../api/mode
|
|
|
10
10
|
import { SmartFormService } from '../../services/smartform.service';
|
|
11
11
|
import { SmartButton, SmartFormWidget, SmartItem } from '../../smartform.form-model';
|
|
12
12
|
import { SmartFormTextFieldButtonIconPosition, SmartValidator, SophisticatedValueChange, Value } from '../../smartform.model';
|
|
13
|
+
import { UiActionToolbarComponent } from '../../../view-context/smart-ui-action/ui-action-toolbar.component';
|
|
13
14
|
import * as i0 from "@angular/core";
|
|
14
15
|
export declare class SmartWidgetSettings {
|
|
15
16
|
static useUtc: boolean;
|
|
@@ -41,7 +42,7 @@ export declare class SmartformwidgetComponent implements OnInit, OnDestroy, Afte
|
|
|
41
42
|
isEnterPressed: boolean;
|
|
42
43
|
isDatePickerRequired: boolean;
|
|
43
44
|
SmartWidgetHintPosition: typeof SmartWidgetHintPositionEnum;
|
|
44
|
-
toolbar?:
|
|
45
|
+
toolbar?: UiActionToolbarComponent;
|
|
45
46
|
constructor(service: SmartFormService, cfService: ComponentFactoryService, sanitizer: DomSanitizer);
|
|
46
47
|
ngOnInit(): void;
|
|
47
48
|
parseYoutubeUrl(url: string): string | false;
|
|
@@ -109,6 +110,7 @@ export declare class SmartformwidgetComponent implements OnInit, OnDestroy, Afte
|
|
|
109
110
|
compareItems(o1: any, o2: any): boolean;
|
|
110
111
|
truncateUri(uri: any): any;
|
|
111
112
|
removeMatrixRow(question: any): void;
|
|
113
|
+
isToolbarPresent(): boolean;
|
|
112
114
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartformwidgetComponent, never>;
|
|
113
115
|
static ɵcmp: i0.ɵɵComponentDeclaration<SmartformwidgetComponent, "smartformwidget", never, { "form": "form"; "widgetInstance": "widgetInstance"; "onBlur": "onBlur"; "onValueChange": "onValueChange"; "labelColor": "labelColor"; "sophisticatedValueChange": "sophisticatedValueChange"; }, {}, never, never>;
|
|
114
116
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
3
3
|
import { UiAction } from '../api';
|
|
4
|
-
import { UiActionConfirmDialogService } from './dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service';
|
|
5
|
-
import { UiActionInputDialogService } from './dialogs/ui-action-input-dialog/ui-action-input-dialog.service';
|
|
4
|
+
import type { UiActionConfirmDialogService } from './dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service';
|
|
5
|
+
import type { UiActionInputDialogService } from './dialogs/ui-action-input-dialog/ui-action-input-dialog.service';
|
|
6
6
|
import { UiActionModel } from './ui-action.model';
|
|
7
|
-
import { UiActionFileUploadDialogService } from './dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service';
|
|
7
|
+
import type { UiActionFileUploadDialogService } from './dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service';
|
|
8
8
|
import { SmartFormInvalidFields } from '../../smart-form/smartform.model';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export interface ExecuteUiActionOptions {
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|