@linzjs/lui 17.26.1-1 → 18.0.0

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 CHANGED
@@ -1,3 +1,27 @@
1
+ # [18.0.0](https://github.com/linz/lui/compare/v17.27.0...v18.0.0) (2023-01-20)
2
+
3
+
4
+ ### Features
5
+
6
+ * Adding React 18 Support ([#778](https://github.com/linz/lui/issues/778)) ([70ac627](https://github.com/linz/lui/commit/70ac6271b56d95bedc200c2089c60541c39b0512))
7
+
8
+
9
+ ### BREAKING CHANGES
10
+
11
+ * Formik removed, react-menu v3 now required
12
+
13
+ # [17.27.0](https://github.com/linz/lui/compare/v17.26.0...v17.27.0) (2023-01-20)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * remove dry-run ([#817](https://github.com/linz/lui/issues/817)) ([763c619](https://github.com/linz/lui/commit/763c619348ac770aeb3499cb379b2ce24f66dbe4))
19
+
20
+
21
+ ### Features
22
+
23
+ * Adding support for [@next](https://github.com/next) release distribution ([#815](https://github.com/linz/lui/issues/815)) ([d2808da](https://github.com/linz/lui/commit/d2808da61ee4b39dc7f65bd14579d6d54eb48779))
24
+
1
25
  # [17.26.0](https://github.com/linz/lui/compare/v17.25.1...v17.26.0) (2023-01-05)
2
26
 
3
27
 
@@ -4,6 +4,6 @@ export interface ILuiBadge {
4
4
  size?: 'sm' | 'default' | 'lg';
5
5
  backgroundFill?: boolean;
6
6
  variation?: 'default' | 'warning';
7
- ariaRoleDescription: string;
7
+ ariaRoleDescription?: string;
8
8
  }
9
9
  export declare const LuiBadge: (props: ILuiBadge) => JSX.Element;
package/dist/index.d.ts CHANGED
@@ -6,7 +6,6 @@ export * from './contexts/LuiMessagingContextProvider';
6
6
  export { LuiButtonGroup } from './components/LuiButton/LuiButton';
7
7
  export { LuiExpandableBanner } from './components/LuiExpandableBanner/LuiExpandableBanner';
8
8
  export { LuiMenu, LuiControlledMenu } from './components/LuiMenu/LuiMenu';
9
- export { LuiResizableLayout, SplitPanelState, } from './components/LuiResizableLayout/LuiResizableLayout';
10
9
  export { LuiSelectMenu, LuiSelectMenuItem, LuiSelectSubMenuItem, } from './components/LuiSelectMenu/LuiSelectMenu';
11
10
  export { LuiSelectDataMenu } from './components/LuiSelectMenu/LuiSelectDataMenu';
12
11
  export { LuiFilterMenu } from './components/LuiFilterMenu/LuiFilterMenu';
@@ -15,22 +14,13 @@ export { LuiTab } from './components/LuiTabs/LuiTab/LuiTab';
15
14
  export { LuiTabsGroup } from './components/LuiTabs/LuiTabsGroup/LuiTabsGroup';
16
15
  export { LuiTabsPanel } from './components/LuiTabs/LuiTabsPanel/LuiTabsPanel';
17
16
  export { LuiTabsPanelSwitch } from './components/LuiTabs/LuiTabsPanelSwitch/LuiTabsPanelSwitch';
18
- export { LuiCommonInputProps, LuiFormikForm, } from './components/LuiFormikForms/LuiFormikForm';
19
17
  export { LuiCheckboxInput } from './components/LuiFormElements/LuiCheckboxInput/LuiCheckboxInput';
20
18
  export { LuiFileInputBox } from './components/LuiFormElements/LuiFileInputBox/LuiFileInputBox';
21
19
  export { LuiSelectInput } from './components/LuiFormElements/LuiSelectInput/LuiSelectInput';
22
20
  export { LuiTextAreaInput } from './components/LuiFormElements/LuiTextAreaInput/LuiTextAreaInput';
23
21
  export { LuiTextInput } from './components/LuiFormElements/LuiTextInput/LuiTextInput';
24
22
  export { LuiRadioInput } from './components/LuiFormElements/LuiRadioInput/LuiRadioInput';
25
- export { LuiFormikCheckbox } from './components/LuiFormikForms/LuiFormikCheckbox/LuiFormikCheckbox';
26
- export { LuiFormikTextInput } from './components/LuiFormikForms/LuiFormikTextInput/LuiFormikTextInput';
27
- export { LuiFormikFormLabel } from './components/LuiFormikForms/LuiFormikFormLabel/LuiFormikFormLabel';
28
- export { LuiFormikRadioButton } from './components/LuiFormikForms/LuiFormikRadioButton/LuiFormikRadioButton';
29
- export { LuiFormikRadioGroup } from './components/LuiFormikForms/LuiFormikRadioGroup/LuiFormikRadioGroup';
30
- export { LuiFormikFormSubmitButton } from './components/LuiFormikForms/LuiFormikFormSubmitButton/LuiFormikFormSubmitButton';
31
- export { LuiFormikSelect } from './components/LuiFormikForms/LuiFormikSelect/LuiFormikSelect';
32
23
  export { LuiIcon } from './components/LuiIcon/LuiIcon';
33
- export { LuiBearingFormikInput, LuiBearingInput, } from './components/LuiBearingInput/LuiBearingInput';
34
24
  export { LuiFooter } from './components/LuiFooter/LuiFooter';
35
25
  export { LuiComboSelect, LuiComboSelectProps, LuiComboSelectOption, } from './components/LuiForms/LuiComboSelect/LuiComboSelect';
36
26
  export { LuiFormSectionHeader, IFormSectionHeaderProps, } from './components/LuiForms/LuiFormSection/LuiFormSectionHeader';