@smartbit4all/ng-client 4.3.0 → 4.3.2
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/api/model/models.mjs +2 -1
- package/esm2022/lib/smart-form/api/model/textBoxProperties.mjs +13 -0
- package/esm2022/lib/smart-form/services/smartform.layout-definition.service.mjs +2 -1
- package/esm2022/lib/smart-form/smartform.form-model.mjs +1 -1
- package/esm2022/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +43 -40
- package/esm2022/lib/view-context/smart-view-context-dialog.service.mjs +2 -1
- package/fesm2022/smartbit4all-ng-client.mjs +44 -27
- package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-form/api/model/models.d.ts +1 -0
- package/lib/smart-form/api/model/textBoxProperties.d.ts +15 -0
- package/lib/smart-form/smartform.form-model.d.ts +2 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-4.3.2.tgz +0 -0
- package/smartbit4all-ng-client-4.3.0.tgz +0 -0
|
@@ -12,5 +12,6 @@ export * from './smartMatrixModel';
|
|
|
12
12
|
export * from './smartWidgetDefinition';
|
|
13
13
|
export * from './smartWidgetHint';
|
|
14
14
|
export * from './sortDefinition';
|
|
15
|
+
export * from './textBoxProperties';
|
|
15
16
|
export * from './textFieldProperties';
|
|
16
17
|
export * from './valueChangeMode';
|
|
@@ -0,0 +1,15 @@
|
|
|
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 interface TextBoxProperties {
|
|
13
|
+
minRows?: number;
|
|
14
|
+
maxRows?: number;
|
|
15
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { QuillModules } from 'ngx-quill';
|
|
2
|
-
import { DateFieldProperties, FileUploaderProperties, MultiFileUploaderProperties, ImageProperties, SelectionDefinition, SmartFormInputMode, SmartFormWidgetDirection, SmartFormWidgetType, SmartWidgetHint, SortDefinition, TextFieldProperties, ValueChangeMode } from './api';
|
|
2
|
+
import { DateFieldProperties, FileUploaderProperties, MultiFileUploaderProperties, ImageProperties, SelectionDefinition, SmartFormInputMode, SmartFormWidgetDirection, SmartFormWidgetType, SmartWidgetHint, SortDefinition, TextFieldProperties, ValueChangeMode, TextBoxProperties } from './api';
|
|
3
3
|
import { SmartFormTextFieldButton, SmartFormWidgetWidth, SmartIndicator, SmartValidator, ToggleLabelPosition } from './smartform.model';
|
|
4
4
|
import { ImageResource, Style } from '../view-context/api';
|
|
5
5
|
export declare type SmartFormWidget<T> = SmartTextField<T> | SmartTextFieldNumber<T> | SmartTextFieldChips<T> | SmartTextFieldLookup<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 | SmartMultiFileUploader | SmartImage | SmartDivider | SmartButton | SmartFormInlineComponent | SmartRichText | SmartSortable<T> | SmartMatrix | SmartYoutubePlayer | SmartMonthPicker | SmartSvg;
|
|
@@ -180,6 +180,7 @@ export interface SmartTextBox<T> {
|
|
|
180
180
|
hint?: SmartWidgetHint;
|
|
181
181
|
maxLength?: number;
|
|
182
182
|
showCharacterLimitSuffix?: boolean;
|
|
183
|
+
textBoxProperties?: TextBoxProperties;
|
|
183
184
|
}
|
|
184
185
|
export interface SmartSelect<T> {
|
|
185
186
|
type: SmartFormWidgetType.SELECT;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|