@netu-si/netu-react-dsf-components 1.0.3 → 1.0.4
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/components/DSFDateInput/DSFDateInput.d.ts +5 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/components/DSFDateInput/DSFDateInput.d.ts +5 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -147,9 +147,13 @@ interface DSFDateInputProps {
|
|
|
147
147
|
* General input props including event handlers and value for all inputs
|
|
148
148
|
*/
|
|
149
149
|
inputProps?: DSFDateInputInputProps;
|
|
150
|
+
/**
|
|
151
|
+
* Text language
|
|
152
|
+
*/
|
|
153
|
+
lang?: string;
|
|
150
154
|
}
|
|
151
155
|
declare const DSFDateInput: {
|
|
152
|
-
({ register, id, label, hint, errorText, labels, refs, inputProps, inputs, defaultValues, }: DSFDateInputProps): React.JSX.Element;
|
|
156
|
+
({ register, id, label, hint, errorText, labels, refs, inputProps, inputs, defaultValues, lang }: DSFDateInputProps): React.JSX.Element;
|
|
153
157
|
displayName: string;
|
|
154
158
|
};
|
|
155
159
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netu-si/netu-react-dsf-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "React Component Library Using the GOV-CY DSF Design System",
|
|
5
5
|
"repository": "https://github.com/netu-si/netu-react-dsf-components.git",
|
|
6
6
|
"homepage": "https://github.com/netu-si/netu-react-dsf-components#readme",
|