@linzjs/lui 10.11.2 → 11.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 +28 -0
- package/README.md +6 -5
- package/dist/components/LuiIcon/LuiIcon.d.ts +3 -0
- package/dist/components/LuiTabs/LuiTab/LuiTab.d.ts +11 -0
- package/dist/components/LuiTabs/LuiTabs.d.ts +1 -21
- package/dist/components/LuiTabs/LuiTabsGroup/LuiTabsGroup.d.ts +6 -0
- package/dist/components/LuiTabs/LuiTabsPanel/LuiTabsPanel.d.ts +7 -0
- package/dist/components/LuiTabs/LuiTabsPanelSwitch/LuiTabsPanelSwitch.d.ts +7 -0
- package/dist/index.d.ts +5 -1
- package/dist/lui.cjs.development.js +61 -47
- 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 +175 -215
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +59 -45
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/Footer/footer.scss +5 -5
- package/dist/scss/Components/Header/header.scss +1 -1
- package/dist/scss/Components/HelpSection/help-section.scss +1 -1
- package/dist/scss/Components/LOLCommonMenu/LOLAuthorisedLink.scss +4 -4
- package/dist/scss/Components/LOLCommonMenu/LOLFirmSwitcherMenu.scss +2 -2
- package/dist/scss/Components/LOLCommonMenu/LOLUserLastLogin.scss +1 -1
- package/dist/scss/Components/LuiFormElements/LuiFileInputBox.scss +2 -3
- package/dist/scss/Components/LuiTabs/LuiTabs.scss +0 -58
- package/dist/scss/Components/Menu/menu.scss +7 -7
- package/dist/scss/Components/Messaging/messaging.scss +5 -5
- package/dist/scss/Components/Modal/modal.scss +3 -3
- package/dist/scss/Components/Notifications/notifications.scss +2 -2
- package/dist/scss/Elements/Buttons/buttons.scss +38 -38
- package/dist/scss/Elements/Forms/FormComponents/Inputs.scss +2 -2
- package/dist/scss/Elements/Forms/FormComponents/RadiosCheckboxes.scss +3 -3
- package/dist/scss/Elements/Icons/icons.scss +1 -1
- package/dist/scss/Elements/Tables/tables.scss +8 -8
- package/dist/scss/Foundation/Utilities/Borders.scss +1 -1
- package/dist/scss/Foundation/Utilities/LuiStandardHeaderBackground.scss +2 -2
- package/dist/scss/Foundation/Variables/FormVars.scss +1 -1
- package/dist/scss/Foundation/Variables/_ExportCSS.scss +87 -59
- package/dist/scss/Foundation/Variables/_ExportColors.scss +52 -51
- package/dist/scss/Foundation/Variables/_LuiColors.scss +113 -119
- package/dist/scss/Global/GenericElements/Link.scss +3 -3
- package/dist/scss/Global/GenericElements/Todo.scss +1 -1
- package/dist/scss/Global/GenericElements/Typography.scss +2 -2
- package/dist/scss/Global/Layout/Layout.scss +3 -3
- package/dist/scss/Vendor/print.scss +2 -2
- package/dist/scss/base.scss +0 -1
- package/package.json +9 -3
package/dist/scss/base.scss
CHANGED
|
@@ -48,7 +48,6 @@
|
|
|
48
48
|
@forward "./Components/NavDrawer/nav-drawer.scss";
|
|
49
49
|
@forward "./Components/Notifications/notifications.scss";
|
|
50
50
|
@forward "./Components/Scrim/scrim.scss";
|
|
51
|
-
@forward "./Components/LuiTabs/LuiTabs.scss";
|
|
52
51
|
@forward "./Components/LuiErrorPage/LuiErrorPage.scss";
|
|
53
52
|
@forward "./Components/LuiFilterContainer/LuiFilterContainer.scss";
|
|
54
53
|
@forward "./Components/LOLCommonMenu/LOLAuthorisedLink.scss";
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "11.0.0",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
"@semantic-release/git": "^9.0.0",
|
|
81
81
|
"@size-limit/preset-small-lib": "^4.7.0",
|
|
82
82
|
"@storybook/addon-a11y": "^6.3.12",
|
|
83
|
+
"@storybook/addon-docs": "^6.3.12",
|
|
83
84
|
"@storybook/addon-essentials": "^6.3.12",
|
|
84
85
|
"@storybook/addon-info": "^5.3.21",
|
|
85
86
|
"@storybook/addon-links": "^6.3.12",
|
|
@@ -103,6 +104,7 @@
|
|
|
103
104
|
"@types/yup": "0.29.0",
|
|
104
105
|
"babel-loader": "^8.1.0",
|
|
105
106
|
"chromatic": "^4.0.3",
|
|
107
|
+
"conventional-changelog-conventionalcommits": "^4.6.1",
|
|
106
108
|
"css-loader": "^3.6.0",
|
|
107
109
|
"esbuild": "^0.13.8",
|
|
108
110
|
"esbuild-jest": "^0.5.0",
|
|
@@ -137,7 +139,6 @@
|
|
|
137
139
|
},
|
|
138
140
|
"dependencies": {
|
|
139
141
|
"@fontsource/open-sans": "^4.5.1",
|
|
140
|
-
"@storybook/addon-docs": "^6.3.12",
|
|
141
142
|
"@szhsin/react-menu": "^1.8.0",
|
|
142
143
|
"camelcase": "^6.0.0",
|
|
143
144
|
"clsx": "^1.1.0",
|
|
@@ -153,7 +154,12 @@
|
|
|
153
154
|
},
|
|
154
155
|
"release": {
|
|
155
156
|
"plugins": [
|
|
156
|
-
|
|
157
|
+
[
|
|
158
|
+
"@semantic-release/commit-analyzer",
|
|
159
|
+
{
|
|
160
|
+
"preset": "conventionalcommits"
|
|
161
|
+
}
|
|
162
|
+
],
|
|
157
163
|
"@semantic-release/release-notes-generator",
|
|
158
164
|
[
|
|
159
165
|
"@semantic-release/changelog",
|