@smartbit4all/ng-client 3.3.202 → 3.3.204
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-file-uploader/smart-file-uploader.component.mjs +4 -1
- package/esm2020/lib/smart-form/api/model/models.mjs +2 -1
- package/esm2020/lib/smart-form/api/model/smartFormInputMode.mjs +22 -0
- package/esm2020/lib/smart-form/api/model/smartWidgetDefinition.mjs +1 -1
- package/esm2020/lib/smart-form/services/smartform.layout-definition.service.mjs +2 -1
- package/esm2020/lib/smart-form/smartform.form-model.mjs +1 -1
- package/esm2020/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +3 -3
- package/fesm2015/smartbit4all-ng-client.mjs +37 -11
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +29 -3
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-form/api/model/models.d.ts +1 -0
- package/lib/smart-form/api/model/smartFormInputMode.d.ts +20 -0
- package/lib/smart-form/api/model/smartWidgetDefinition.d.ts +2 -0
- package/lib/smart-form/smartform.form-model.d.ts +2 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.204.tgz +0 -0
- package/smartbit4all-ng-client-3.3.202.tgz +0 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Form layout definition
|
|
3
|
+
* Contains form layout definition objects.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
* Contact: info@it4all.hu
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export declare enum SmartFormInputMode {
|
|
13
|
+
NONE = "NONE",
|
|
14
|
+
URL = "URL",
|
|
15
|
+
SEARCH = "SEARCH",
|
|
16
|
+
NUMERIC = "NUMERIC",
|
|
17
|
+
TEL = "TEL",
|
|
18
|
+
DECIMAL = "DECIMAL",
|
|
19
|
+
EMAIL = "EMAIL"
|
|
20
|
+
}
|
|
@@ -18,11 +18,13 @@ import { Value } from '../../smartform.model';
|
|
|
18
18
|
import { Style } from '../../../view-context/api/model/style';
|
|
19
19
|
import { ValueChangeMode } from './valueChangeMode';
|
|
20
20
|
import { SmartMatrixModel } from './smartMatrixModel';
|
|
21
|
+
import { SmartFormInputMode } from './smartFormInputMode';
|
|
21
22
|
/**
|
|
22
23
|
* The layout definition of the SmartTextField widget.
|
|
23
24
|
*/
|
|
24
25
|
export interface SmartWidgetDefinition {
|
|
25
26
|
type: SmartFormWidgetType;
|
|
27
|
+
inputMode?: SmartFormInputMode;
|
|
26
28
|
/**
|
|
27
29
|
* The path of the desired parameter in the object.
|
|
28
30
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { QuillModules } from 'ngx-quill';
|
|
2
|
-
import { SelectionDefinition, SmartFormWidgetDirection, SmartFormWidgetType, SmartWidgetHint, ValueChangeMode } from './api';
|
|
2
|
+
import { SelectionDefinition, SmartFormInputMode, SmartFormWidgetDirection, SmartFormWidgetType, SmartWidgetHint, ValueChangeMode } from './api';
|
|
3
3
|
import { SmartFormTextFieldButton, SmartFormWidgetWidth, SmartIndicator, SmartValidator, ToggleLabelPosition } from './smartform.model';
|
|
4
4
|
import { Style } from '../view-context/api';
|
|
5
5
|
export declare type SmartFormWidget<T> = SmartTextField<T> | SmartTextFieldNumber<T> | SmartTextFieldChips<T> | SmartTextBox<T> | SmartSelect<T> | SmartSelectMultiple<T> | SmartCheckBox<T> | SmartCheckBox2<T> | SmartRadioButton<T> | SmartDatePicker<T> | SmartDateTimePicker<T> | SmartContainer<T> | SmartLabel | SmartTime<T> | SmartToggle<T> | SmartIndicatorItem | SmartFileUploader | SmartImage | SmartDivider | SmartButton | SmartFormInlineComponent | SmartRichText | SmartSortable<T> | SmartMatrix | SmartYoutubePlayer | SmartMonthPicker | SmartSvg;
|
|
@@ -42,6 +42,7 @@ export interface SmartTextField<T> {
|
|
|
42
42
|
maxLength?: number;
|
|
43
43
|
showCharacterLimitSuffix?: boolean;
|
|
44
44
|
toolbarId?: string;
|
|
45
|
+
inputMode?: SmartFormInputMode;
|
|
45
46
|
}
|
|
46
47
|
export interface SmartTextFieldNumber<T> {
|
|
47
48
|
type: SmartFormWidgetType.TEXT_FIELD_NUMBER;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|