@smartbit4all/ng-client 4.5.14 → 4.5.16
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/esm2022/lib/smart-form/services/smartform.layout-definition.service.mjs +3 -1
- package/esm2022/lib/smart-form/services/smartform.service.mjs +21 -1
- package/esm2022/lib/smart-form/smartform.component.mjs +2 -1
- package/esm2022/lib/smart-form/smartform.form-model.mjs +1 -1
- package/esm2022/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +6 -24
- package/fesm2022/smartbit4all-ng-client.mjs +2310 -2307
- package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-form/services/smartform.service.d.ts +2 -1
- package/lib/smart-form/smartform.form-model.d.ts +2 -0
- package/package.json +1 -1
- package/smartbit4all-ng-client-4.5.16.tgz +0 -0
- package/smartbit4all-ng-client-4.5.14.tgz +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { UntypedFormGroup } from '@angular/forms';
|
|
2
|
-
import { SmartFormWidget, SmartItem, SmartItems } from '../smartform.form-model';
|
|
2
|
+
import { SmartDateTimePicker, SmartFormWidget, SmartItem, SmartItems } from '../smartform.form-model';
|
|
3
3
|
import { SmartForm, SmartValidator } from '../smartform.model';
|
|
4
4
|
import { ComponentLibrary } from '../../view-context/utility/componentLibrary';
|
|
5
5
|
import { NamedValidatorService } from '../../smart-validation/named-validator.service';
|
|
@@ -49,3 +49,4 @@ export declare class SmartFormService {
|
|
|
49
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartFormService, [{ optional: true; }]>;
|
|
50
50
|
static ɵprov: i0.ɵɵInjectableDeclaration<SmartFormService>;
|
|
51
51
|
}
|
|
52
|
+
export declare function extractTime(widgetInstance: SmartDateTimePicker<any>): string;
|
|
@@ -216,6 +216,7 @@ export interface SmartSelect<T> {
|
|
|
216
216
|
iconPosition?: 'PRE' | 'POST';
|
|
217
217
|
iconColor?: string;
|
|
218
218
|
suffix?: string;
|
|
219
|
+
toolbarId?: string;
|
|
219
220
|
}
|
|
220
221
|
export interface SmartSelectMultiple<T> {
|
|
221
222
|
type: SmartFormWidgetType.SELECT_MULTIPLE;
|
|
@@ -247,6 +248,7 @@ export interface SmartSelectMultiple<T> {
|
|
|
247
248
|
selection?: SelectionDefinition;
|
|
248
249
|
hint?: SmartWidgetHint;
|
|
249
250
|
compareWith?: (o1: any, o2: any) => boolean;
|
|
251
|
+
toolbarId?: string;
|
|
250
252
|
}
|
|
251
253
|
export interface SmartCheckBox<T> {
|
|
252
254
|
type: SmartFormWidgetType.CHECK_BOX;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|