@linzjs/lui 10.11.5 → 11.1.2
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/index.d.ts +6 -1
- package/dist/lui.cjs.development.js +588 -372
- 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 +584 -373
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/base.scss +8 -0
- package/package.json +8 -2
package/dist/scss/base.scss
CHANGED
|
@@ -37,6 +37,9 @@
|
|
|
37
37
|
// Components
|
|
38
38
|
/////////////////////////////////////////
|
|
39
39
|
|
|
40
|
+
// This is perhaps not ideal - would rather each react component pulled its own css along with it
|
|
41
|
+
// But this works for both html/css and React implementations. It's on the backlog to fix
|
|
42
|
+
|
|
40
43
|
@forward "./Components/ContextMenu/context-menu.scss";
|
|
41
44
|
@forward "./Components/ExpandingSection/expanding-section.scss";
|
|
42
45
|
@forward "./Components/Footer/footer.scss";
|
|
@@ -56,3 +59,8 @@
|
|
|
56
59
|
@forward "./Components/LOLCommonMenu/LOLFirmSwitcherMenu.scss";
|
|
57
60
|
@forward "./Components/Spinner/spinner.scss";
|
|
58
61
|
@forward "./Components/LuiFormElements/LuiFileInputBox.scss";
|
|
62
|
+
|
|
63
|
+
// LuiTabs
|
|
64
|
+
@forward "../components/LuiTabs/LuiTab/LuiTab.scss";
|
|
65
|
+
@forward "../components/LuiTabs/LuiTabsGroup/LuiTabsGroup.scss";
|
|
66
|
+
@forward "../components/LuiTabs/LuiTabsPanel/LuiTabsPanel.scss";
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "11.1.2",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
@@ -104,6 +104,7 @@
|
|
|
104
104
|
"@types/yup": "0.29.0",
|
|
105
105
|
"babel-loader": "^8.1.0",
|
|
106
106
|
"chromatic": "^4.0.3",
|
|
107
|
+
"conventional-changelog-conventionalcommits": "^4.6.1",
|
|
107
108
|
"css-loader": "^3.6.0",
|
|
108
109
|
"esbuild": "^0.13.8",
|
|
109
110
|
"esbuild-jest": "^0.5.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",
|