dfh-ui-library 1.14.1 → 1.14.3
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/dist/cjs/index.css +1 -1
- package/dist/cjs/index.css.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/shared/models/components/base.model.d.ts +8 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/shared/models/components/base.model.d.ts +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
@@ -183,6 +183,10 @@ export interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputEleme
|
|
183
183
|
isDischarged?: boolean;
|
184
184
|
showTooltip?: boolean;
|
185
185
|
tooltipText?: string;
|
186
|
+
/**
|
187
|
+
* Show asterisk permanently regardless of input value
|
188
|
+
*/
|
189
|
+
showPermanentAsterisk?: boolean;
|
186
190
|
}
|
187
191
|
export interface IFormGenInputProps {
|
188
192
|
/**
|
@@ -396,6 +400,10 @@ export interface ILabelProps {
|
|
396
400
|
labelSpanClasses?: string;
|
397
401
|
secondaryText?: string;
|
398
402
|
isRequired?: boolean;
|
403
|
+
/**
|
404
|
+
* Show asterisk permanently regardless of input value
|
405
|
+
*/
|
406
|
+
showPermanentAsterisk?: boolean;
|
399
407
|
}
|
400
408
|
export interface IRadioProps extends InputHTMLAttributes<HTMLInputElement> {
|
401
409
|
/**
|
package/dist/index.d.ts
CHANGED
@@ -1106,6 +1106,10 @@ interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
1106
1106
|
isDischarged?: boolean;
|
1107
1107
|
showTooltip?: boolean;
|
1108
1108
|
tooltipText?: string;
|
1109
|
+
/**
|
1110
|
+
* Show asterisk permanently regardless of input value
|
1111
|
+
*/
|
1112
|
+
showPermanentAsterisk?: boolean;
|
1109
1113
|
}
|
1110
1114
|
interface ICheckboxProps extends AdditionalClassesProp {
|
1111
1115
|
onChange?: (checked: boolean) => void;
|
@@ -1141,6 +1145,10 @@ interface ILabelProps {
|
|
1141
1145
|
labelSpanClasses?: string;
|
1142
1146
|
secondaryText?: string;
|
1143
1147
|
isRequired?: boolean;
|
1148
|
+
/**
|
1149
|
+
* Show asterisk permanently regardless of input value
|
1150
|
+
*/
|
1151
|
+
showPermanentAsterisk?: boolean;
|
1144
1152
|
}
|
1145
1153
|
interface IRadioProps extends InputHTMLAttributes<HTMLInputElement> {
|
1146
1154
|
/**
|