@linzjs/lui 11.0.0 → 11.1.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 +28 -0
- package/dist/components/LuiFormElements/LuiFileInputBox/LuiFileInputBox.d.ts +1 -0
- package/dist/components/LuiFormElements/LuiFileInputBox/LuiFileInputBox.stories.d.ts +1 -0
- package/dist/components/LuiTabs/LuiTab/LuiTab.d.ts +0 -1
- package/dist/components/LuiTabs/LuiTabsGroup/LuiTabsGroup.d.ts +0 -1
- package/dist/components/LuiTabs/LuiTabsPanel/LuiTabsPanel.d.ts +0 -1
- package/dist/index.d.ts +6 -1
- package/dist/lui.cjs.development.js +589 -382
- package/dist/lui.cjs.development.js.map +1 -1
- package/dist/lui.cjs.production.min.js +1 -1
- package/dist/lui.cjs.production.min.js.map +1 -1
- package/dist/lui.css +60 -0
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +585 -383
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiTabs/LuiTab/LuiTab.scss +45 -0
- package/dist/scss/Components/LuiTabs/LuiTabs.scss +3 -0
- package/dist/scss/Components/LuiTabs/LuiTabsGroup/LuiTabsGroup.scss +10 -0
- package/dist/scss/Components/LuiTabs/LuiTabsPanel/LuiTabsPanel.scss +9 -0
- package/dist/scss/base.scss +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## [11.1.3](https://github.com/linz/lui/compare/v11.1.2...v11.1.3) (2021-12-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Tabs hot fix – sass build providing false positives, now fixed ([#485](https://github.com/linz/lui/issues/485)) ([9f0b7d5](https://github.com/linz/lui/commit/9f0b7d5eebe0c1e9bbdbd052f70233e053d15940))
|
|
7
|
+
|
|
8
|
+
## [11.1.2](https://github.com/linz/lui/compare/v11.1.1...v11.1.2) (2021-12-07)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Exposes components that were not being exported ([#483](https://github.com/linz/lui/issues/483)) ([64882e0](https://github.com/linz/lui/commit/64882e0bc0bd8044fd90aa5f5a4d13b916d43d2a))
|
|
14
|
+
|
|
15
|
+
## [11.1.1](https://github.com/linz/lui/compare/v11.1.0...v11.1.1) (2021-12-07)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* LuiTabs scss pulled into scss compiled output ([#484](https://github.com/linz/lui/issues/484)) ([d595878](https://github.com/linz/lui/commit/d59587814512574689a8b36578432cf022f46ea2))
|
|
21
|
+
|
|
22
|
+
# [11.1.0](https://github.com/linz/lui/compare/v11.0.0...v11.1.0) (2021-12-06)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* adds custom error message to LuiFileImport ([#482](https://github.com/linz/lui/issues/482)) ([7ffaf16](https://github.com/linz/lui/commit/7ffaf168b364291ec436f4df5f91fdc869535f32))
|
|
28
|
+
|
|
1
29
|
# [11.0.0](https://github.com/linz/lui/compare/v10.11.5...v11.0.0) (2021-12-06)
|
|
2
30
|
|
|
3
31
|
|
|
@@ -4,4 +4,5 @@ declare const _default: import("@storybook/react").Meta<import("./LuiFileInputBo
|
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const LuiFileInputWithExtensionFilterDefaultSize: ComponentStory<typeof LuiFileInputBox>;
|
|
6
6
|
export declare const LuiFileInputWithExtensionFilterLargeWithExistingError: ComponentStory<typeof LuiFileInputBox>;
|
|
7
|
+
export declare const LuiFileInputWithExtensionFilterLargeWithExistingErrorCustomMessage: ComponentStory<typeof LuiFileInputBox>;
|
|
7
8
|
export declare const LuiFileInputUploadSuccessForChromatic: ComponentStory<typeof FileUploadInfo>;
|
package/dist/index.d.ts
CHANGED
|
@@ -13,6 +13,12 @@ export { LuiTabsGroup } from './components/LuiTabs/LuiTabsGroup/LuiTabsGroup';
|
|
|
13
13
|
export { LuiTabsPanel } from './components/LuiTabs/LuiTabsPanel/LuiTabsPanel';
|
|
14
14
|
export { LuiTabsPanelSwitch } from './components/LuiTabs/LuiTabsPanelSwitch/LuiTabsPanelSwitch';
|
|
15
15
|
export { LuiCommonInputProps, LuiFormikForm, } from './components/LuiFormikForms/LuiFormikForm';
|
|
16
|
+
export { LuiCheckboxInput } from './components/LuiFormElements/LuiCheckboxInput/LuiCheckboxInput';
|
|
17
|
+
export { LuiFileInputBox } from './components/LuiFormElements/LuiFileInputBox/LuiFileInputBox';
|
|
18
|
+
export { LuiSelectInput } from './components/LuiFormElements/LuiSelectInput/LuiSelectInput';
|
|
19
|
+
export { LuiTextAreaInput } from './components/LuiFormElements/LuiTextAreaInput/LuiTextAreaInput';
|
|
20
|
+
export { LuiTextInput } from './components/LuiFormElements/LuiTextInput/LuiTextInput';
|
|
21
|
+
export { LuiRadioInput } from './components/LuiFormElements/RadioInput/LuiRadioInput';
|
|
16
22
|
export { LuiFormikCheckbox } from './components/LuiFormikForms/LuiFormikCheckbox/LuiFormikCheckbox';
|
|
17
23
|
export { LuiFormikTextInput } from './components/LuiFormikForms/LuiFormikTextInput/LuiFormikTextInput';
|
|
18
24
|
export { LuiFormikFormLabel } from './components/LuiFormikForms/LuiFormikFormLabel/LuiFormikFormLabel';
|
|
@@ -40,5 +46,4 @@ export { LOLActiveFirmMessage } from './components/lol/LOLActiveFirmMessage';
|
|
|
40
46
|
export { LOLAuthorisedLink } from './components/lol/LOLAuthorisedLink';
|
|
41
47
|
export { LOLCommonDrawerMenu, LOLCommonDrawerMenuAfterLinks, LOLDrawerMenu, } from './components/lol/LOLCommonDrawerMenu';
|
|
42
48
|
export { LuiTooltip, ILuiTooltipProperties, } from './components/LuiTooltip/LuiTooltip';
|
|
43
|
-
export { LuiFileInputBox } from './components/LuiFormElements/LuiFileInputBox/LuiFileInputBox';
|
|
44
49
|
export * from './hooks';
|