koval-ui 0.16.7 → 0.16.8
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/index.d.ts +2 -2
- package/dist/index.js +276 -273
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +2 -2
- package/dist/index.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1213,11 +1213,11 @@ className?: string | undefined;
|
|
|
1213
1213
|
children: ReactElement;
|
|
1214
1214
|
/** Set text label */
|
|
1215
1215
|
label: string;
|
|
1216
|
-
/** Set hint text to be displayed below input */
|
|
1216
|
+
/** Set hint text to be displayed below the input */
|
|
1217
1217
|
hint?: string | undefined;
|
|
1218
1218
|
/**
|
|
1219
1219
|
* Renders * character after label indicating required input status.
|
|
1220
|
-
* Also set automatically when required input provided.
|
|
1220
|
+
* Also, set automatically when required input is provided.
|
|
1221
1221
|
*/
|
|
1222
1222
|
required?: boolean | undefined;
|
|
1223
1223
|
} & RefAttributes<HTMLDivElement>>;
|