@linzjs/lui 17.10.3 → 17.11.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 +21 -0
- package/dist/components/LuiListBox/LuiListBox.d.ts +33 -0
- package/dist/components/LuiListBox/LuiListBoxItem.d.ts +10 -0
- package/dist/components/LuiListBox/Renderers/CheckboxItemRenderer.d.ts +4 -0
- package/dist/components/LuiListBox/Renderers/DefaultItemRenderer.d.ts +3 -0
- package/dist/components/LuiListBox/Renderers/RadioItemRenderer.d.ts +4 -0
- package/dist/components/LuiListBox/helpers.d.ts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4324 -1008
- package/dist/index.js.map +1 -1
- package/dist/lui.css +6 -0
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +4308 -995
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/Messaging/messaging.scss +8 -0
- package/package.json +6 -1
|
@@ -101,6 +101,10 @@
|
|
|
101
101
|
@include box-shadow;
|
|
102
102
|
background: colors.$white;
|
|
103
103
|
min-height: rem(48px);
|
|
104
|
+
|
|
105
|
+
+ .lui-msg-dynamic-banner {
|
|
106
|
+
margin-top: 0;
|
|
107
|
+
}
|
|
104
108
|
}
|
|
105
109
|
|
|
106
110
|
.lui-msg-status-icon {
|
|
@@ -123,6 +127,10 @@
|
|
|
123
127
|
padding: spacing.$unit-sm;
|
|
124
128
|
}
|
|
125
129
|
}
|
|
130
|
+
// when multiple banners appear stacked on top of each other, reduce the space between
|
|
131
|
+
+ .lui-msg-banner-container {
|
|
132
|
+
padding-top: 0 !important;
|
|
133
|
+
}
|
|
126
134
|
}
|
|
127
135
|
|
|
128
136
|
.lui-msg-banner-container {
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "17.
|
|
2
|
+
"version": "17.11.2",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
@@ -74,6 +74,11 @@
|
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@geometricpanda/storybook-addon-badges": "^0.2.1",
|
|
76
76
|
"@linzjs/style": "^3.9.0",
|
|
77
|
+
"@react-aria/focus": "^3.7.0",
|
|
78
|
+
"@react-aria/listbox": "^3.6.0",
|
|
79
|
+
"@react-aria/utils": "^3.13.2",
|
|
80
|
+
"@react-stately/list": "^3.5.2",
|
|
81
|
+
"@react-types/shared": "^3.14.0",
|
|
77
82
|
"@rollup/plugin-commonjs": "^21.0.2",
|
|
78
83
|
"@rollup/plugin-json": "^4.1.0",
|
|
79
84
|
"@rollup/plugin-node-resolve": "^11.2.1",
|