@linzjs/lui 17.11.0 → 17.11.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/CHANGELOG.md +21 -0
- package/dist/components/LuiFormElements/LuiTextInput/LuiTextInput.d.ts +1 -0
- package/dist/components/LuiListBox/LuiListBox.d.ts +1 -1
- package/dist/components/LuiListBox/Renderers/CheckboxItemRenderer.d.ts +1 -1
- package/dist/components/LuiListBox/Renderers/DefaultItemRenderer.d.ts +1 -1
- package/dist/components/LuiListBox/Renderers/RadioItemRenderer.d.ts +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3463 -34
- package/dist/index.js.map +1 -1
- package/dist/lui.css +20 -3
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +3461 -35
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiFormElements/LuiTextInput/LuiTextInput.scss +16 -3
- package/dist/scss/Components/Messaging/messaging.scss +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [17.11.3](https://github.com/linz/lui/compare/v17.11.2...v17.11.3) (2022-08-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* added warning to text input and fixed msg alignment with icon ([#738](https://github.com/linz/lui/issues/738)) ([45b6e87](https://github.com/linz/lui/commit/45b6e8755fbf0663478b7cda81d55b429d35f744))
|
|
7
|
+
|
|
8
|
+
## [17.11.2](https://github.com/linz/lui/compare/v17.11.1...v17.11.2) (2022-08-23)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* changed margins on banner messages stacked together ([#737](https://github.com/linz/lui/issues/737)) ([59fa68b](https://github.com/linz/lui/commit/59fa68ba22762a96ccd6bde2a1303fd8b4e3275b))
|
|
14
|
+
|
|
15
|
+
## [17.11.1](https://github.com/linz/lui/compare/v17.11.0...v17.11.1) (2022-08-22)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **LuiListBox:** Added LuiListbox to exported types ([#736](https://github.com/linz/lui/issues/736)) ([0b1cafa](https://github.com/linz/lui/commit/0b1cafa7f51cb69281bf0972fce4a857fc0cb2a2))
|
|
21
|
+
|
|
1
22
|
# [17.11.0](https://github.com/linz/lui/compare/v17.10.3...v17.11.0) (2022-08-17)
|
|
2
23
|
|
|
3
24
|
|
|
@@ -30,4 +30,4 @@ export interface IItemRendererProps<T> {
|
|
|
30
30
|
isDisabled: boolean;
|
|
31
31
|
isFocusVisible: boolean;
|
|
32
32
|
}
|
|
33
|
-
export
|
|
33
|
+
export declare function LuiListBox<T extends object = ILuiListBoxItem>({ ariaLabel, ariaLabelledBy, itemRenderer, loadingIndicator, emptyIndicator, selectionMode, selectionBehavior, disabled, items, value, onChange, getKey, ariaProps, className, ...ulProps }: ILuiListBoxProps<T>): JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import './CheckboxItemRenderer.scss';
|
|
3
3
|
import { IItemRendererProps, ILuiListBoxItem } from '../LuiListBox';
|
|
4
|
-
export
|
|
4
|
+
export declare function CheckboxItemRenderer({ item, isSelected, }: IItemRendererProps<ILuiListBoxItem>): JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { IItemRendererProps } from '../LuiListBox';
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
|
-
export
|
|
3
|
+
export declare function DefaultItemRenderer<T extends object>({ item, }: IItemRendererProps<T>): ReactNode;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import './RadioItemRenderer.scss';
|
|
3
3
|
import { IItemRendererProps, ILuiListBoxItem } from '../LuiListBox';
|
|
4
|
-
export
|
|
4
|
+
export declare function RadioItemRenderer({ item, isSelected, }: IItemRendererProps<ILuiListBoxItem>): JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -60,3 +60,6 @@ export { LuiSidePanelProvider } from './components/LuiSidePanel/LuiSidePanel';
|
|
|
60
60
|
export { LuiSwitchButton } from './components/LuiSwitchButton/LuiSwitchButton';
|
|
61
61
|
export { LuiAccordicard } from './components/LuiAccordicard/LuiAccordicard';
|
|
62
62
|
export { LuiAccordicardStatic } from './components/LuiAccordicardStatic/LuiAccordicardStatic';
|
|
63
|
+
export { LuiListBox, ILuiListBoxItem, ILuiListBoxProps, IItemRendererProps, } from './components/LuiListBox/LuiListBox';
|
|
64
|
+
export { RadioItemRenderer } from './components/LuiListBox/Renderers/RadioItemRenderer';
|
|
65
|
+
export { CheckboxItemRenderer } from './components/LuiListBox/Renderers/CheckboxItemRenderer';
|