@progressio_resources/gravity-design-system 4.0.8 → 4.0.10
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/package.json
CHANGED
|
@@ -1124,43 +1124,43 @@ declare class GravityTextFieldComponent implements OnInit, OnChanges {
|
|
|
1124
1124
|
textFieldValueResponse: EventEmitter<string>;
|
|
1125
1125
|
inputElement: ElementRef<HTMLInputElement>;
|
|
1126
1126
|
textAreaElement: ElementRef<HTMLInputElement>;
|
|
1127
|
-
currentLang: string;
|
|
1128
|
-
customInputValue: string;
|
|
1129
|
-
customState: 'default' | 'active' | 'hover' | 'typing' | 'typed' | 'typed-error' | 'typed-positive' | 'disabled' | 'readonly' | 'autofill';
|
|
1130
|
-
cypressTag: string;
|
|
1131
1127
|
label: string;
|
|
1132
|
-
prefix: string;
|
|
1133
1128
|
required: boolean;
|
|
1129
|
+
cypressTag: string;
|
|
1134
1130
|
supportText: string;
|
|
1131
|
+
prefix: string;
|
|
1132
|
+
customInputValue: string;
|
|
1133
|
+
currentLang: string;
|
|
1135
1134
|
textFieldType: 'input' | 'textarea';
|
|
1136
|
-
|
|
1137
|
-
clickOnRightIcon: boolean;
|
|
1138
|
-
iconColor: string;
|
|
1135
|
+
customState: 'default' | 'active' | 'hover' | 'typing' | 'typed' | 'typed-error' | 'typed-positive' | 'disabled' | 'readonly' | 'autofill';
|
|
1139
1136
|
iconLeft: string;
|
|
1137
|
+
iconColor: string;
|
|
1140
1138
|
iconRight: string;
|
|
1141
|
-
|
|
1142
|
-
|
|
1139
|
+
supportTextIcon: string;
|
|
1140
|
+
clickOnLeftIcon: boolean;
|
|
1141
|
+
clickOnRightIcon: boolean;
|
|
1143
1142
|
placeholder: string;
|
|
1143
|
+
labelExtraText: string;
|
|
1144
|
+
size: 'sm' | 'md';
|
|
1145
|
+
autocomplete: string;
|
|
1146
|
+
characterCounter: boolean;
|
|
1147
|
+
width: 'short' | 'medium' | 'full' | 'fit';
|
|
1144
1148
|
validations: {
|
|
1145
1149
|
maxLength?: number;
|
|
1146
1150
|
minLength?: number;
|
|
1147
1151
|
};
|
|
1148
|
-
size: 'sm' | 'md';
|
|
1149
|
-
width: 'short' | 'medium' | 'full' | 'fit';
|
|
1150
|
-
labelExtraText: string;
|
|
1151
|
-
characterCounter: boolean;
|
|
1152
1152
|
passwordRequirements: {
|
|
1153
1153
|
key: string;
|
|
1154
1154
|
label: string;
|
|
1155
1155
|
isValid: boolean;
|
|
1156
1156
|
}[];
|
|
1157
|
-
|
|
1157
|
+
inputContentType: 'email' | 'number' | 'password' | 'tel' | 'date' | 'text';
|
|
1158
|
+
inputValue: string;
|
|
1158
1159
|
focusInput: boolean;
|
|
1159
1160
|
hasUserTyped: boolean;
|
|
1160
|
-
isPasswordField: boolean;
|
|
1161
1161
|
characterLimit: boolean;
|
|
1162
|
+
isPasswordField: boolean;
|
|
1162
1163
|
allPasswordRequirementsValid: boolean;
|
|
1163
|
-
inputValue: string;
|
|
1164
1164
|
ngOnInit(): void;
|
|
1165
1165
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1166
1166
|
focus(): void;
|
|
@@ -1176,7 +1176,7 @@ declare class GravityTextFieldComponent implements OnInit, OnChanges {
|
|
|
1176
1176
|
onKeyDownEvent($event: KeyboardEvent): void;
|
|
1177
1177
|
formatDateInput(event: any): void;
|
|
1178
1178
|
static ɵfac: i0.ɵɵFactoryDeclaration<GravityTextFieldComponent, never>;
|
|
1179
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GravityTextFieldComponent, "gravity-text-field", never, { "
|
|
1179
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GravityTextFieldComponent, "gravity-text-field", never, { "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "cypressTag": { "alias": "cypressTag"; "required": false; }; "supportText": { "alias": "supportText"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "customInputValue": { "alias": "customInputValue"; "required": false; }; "currentLang": { "alias": "currentLang"; "required": false; }; "textFieldType": { "alias": "textFieldType"; "required": false; }; "customState": { "alias": "customState"; "required": false; }; "iconLeft": { "alias": "iconLeft"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "iconRight": { "alias": "iconRight"; "required": false; }; "supportTextIcon": { "alias": "supportTextIcon"; "required": false; }; "clickOnLeftIcon": { "alias": "clickOnLeftIcon"; "required": false; }; "clickOnRightIcon": { "alias": "clickOnRightIcon"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "labelExtraText": { "alias": "labelExtraText"; "required": false; }; "size": { "alias": "size"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "characterCounter": { "alias": "characterCounter"; "required": false; }; "width": { "alias": "width"; "required": false; }; "validations": { "alias": "validations"; "required": false; }; "passwordRequirements": { "alias": "passwordRequirements"; "required": false; }; "inputContentType": { "alias": "inputContentType"; "required": false; }; }, { "leftIconResponse": "clickIconLeft"; "rightIconResponse": "clickIconRight"; "textFieldValueResponse": "response"; }, never, never, true, never>;
|
|
1180
1180
|
}
|
|
1181
1181
|
|
|
1182
1182
|
interface currency {
|