@linzjs/lui 17.12.1 → 17.12.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/CHANGELOG.md +21 -0
- package/dist/components/LuiFormElements/LuiRadioInput/LuiRadioInput.d.ts +3 -0
- package/dist/index.js +1080 -959
- package/dist/index.js.map +1 -1
- package/dist/lui.css +53 -1
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +1066 -945
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiFormElements/LuiRadioInput/LuiRadioInput.scss +54 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [17.12.4](https://github.com/linz/lui/compare/v17.12.3...v17.12.4) (2022-08-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **config:** Removing tsconfig esnext target to make builds more predictable ([#744](https://github.com/linz/lui/issues/744)) ([c4798ee](https://github.com/linz/lui/commit/c4798eeefd44a7c592bb193f57e0055a7b8e656a))
|
|
7
|
+
|
|
8
|
+
## [17.12.3](https://github.com/linz/lui/compare/v17.12.2...v17.12.3) (2022-08-29)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Makes framer-motion a dependency rather than a dev dependency ([#743](https://github.com/linz/lui/issues/743)) ([8c46b52](https://github.com/linz/lui/commit/8c46b52289c8e87b8a875ef5b422d5857dfe7491))
|
|
14
|
+
|
|
15
|
+
## [17.12.2](https://github.com/linz/lui/compare/v17.12.1...v17.12.2) (2022-08-29)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **deps:** moving react-aria related dependencies out of dev so consuming apps dont need to install them when building ([#742](https://github.com/linz/lui/issues/742)) ([79d78f6](https://github.com/linz/lui/commit/79d78f6121e32cddd3fc39818eb741b36dd6e6d1))
|
|
21
|
+
|
|
1
22
|
## [17.12.1](https://github.com/linz/lui/compare/v17.12.0...v17.12.1) (2022-08-28)
|
|
2
23
|
|
|
3
24
|
|
|
@@ -5,7 +5,10 @@ export interface LuiRadioProps {
|
|
|
5
5
|
options: string[];
|
|
6
6
|
legend?: JSX.Element | string;
|
|
7
7
|
error?: string;
|
|
8
|
+
warning?: string;
|
|
9
|
+
warningOnIndividual?: string;
|
|
8
10
|
isOptionDisabled?: (index: number) => boolean;
|
|
11
|
+
optionHasWarning?: (index: number) => boolean;
|
|
9
12
|
inputProps?: InputHTMLAttributes<HTMLInputElement>;
|
|
10
13
|
renderLabelFor?: (value: string) => JSX.Element;
|
|
11
14
|
}
|