@bnsights/bbsf-controls 1.0.29 → 1.0.30
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/README.md +3 -3
- package/bnsights-bbsf-controls-1.0.30.tgz +0 -0
- package/bnsights-bbsf-controls.metadata.json +1 -1
- package/bundles/bnsights-bbsf-controls.umd.js +25 -13
- package/bundles/bnsights-bbsf-controls.umd.js.map +1 -1
- package/esm2015/lib/Shared/Enums/LanguageValidation.js +6 -0
- package/esm2015/lib/Shared/Models/TextBoxOptions.js +3 -1
- package/esm2015/lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component.js +5 -1
- package/esm2015/lib/controls/Repeater/repeater-table/repeater-table.component.js +2 -2
- package/esm2015/lib/controls/TextBox/TextBox.component.js +14 -13
- package/esm2015/public-api.js +2 -1
- package/fesm2015/bnsights-bbsf-controls.js +26 -14
- package/fesm2015/bnsights-bbsf-controls.js.map +1 -1
- package/lib/Shared/Enums/LanguageValidation.d.ts +4 -0
- package/lib/Shared/Models/TextBoxOptions.d.ts +3 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/bnsights-bbsf-controls-1.0.29.tgz +0 -0
|
@@ -5,6 +5,7 @@ import { RangeNumber } from './RangeNumber';
|
|
|
5
5
|
import { ForceDirection } from '../Enums/ForceDirection';
|
|
6
6
|
import { Attribute } from './Attribute';
|
|
7
7
|
import { IconPosition } from '../Enums/IconPosition';
|
|
8
|
+
import { LanguageValidation } from '../Enums/LanguageValidation';
|
|
8
9
|
export declare class TextBoxOptions {
|
|
9
10
|
/**
|
|
10
11
|
* Represent Name Of Form Control
|
|
@@ -58,6 +59,8 @@ export declare class TextBoxOptions {
|
|
|
58
59
|
CustomValidation: CustomValidation[];
|
|
59
60
|
/** to set Direction of textbox if textbox is Arabic or English */
|
|
60
61
|
ForceDirection: ForceDirection;
|
|
62
|
+
/** to set Language of textbox if textbox language is Arabic or English */
|
|
63
|
+
LanguageValidation: LanguageValidation;
|
|
61
64
|
/** Set Type of TextBox ("text","password","email","number") */
|
|
62
65
|
Type: InputType;
|
|
63
66
|
/** Set List of Custom Attribute to TextBox */
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -99,3 +99,4 @@ export * from './lib/Shared/Enums/IconPosition';
|
|
|
99
99
|
export * from './lib/Shared/Enums/PagingActionMode';
|
|
100
100
|
export * from './lib/Shared/Enums/StyleConfirmationMode';
|
|
101
101
|
export * from './lib/Shared/Enums/Enums';
|
|
102
|
+
export * from './lib/Shared/Enums/LanguageValidation';
|
|
Binary file
|