@linzjs/lui 21.12.1 → 21.13.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 +7 -0
- package/dist/components/LuiListBox/LuiListBox.d.ts +1 -0
- package/dist/components/LuiSideToolbar/ToolbarButton.d.ts +1 -0
- package/dist/components/LuiSideToolbar/ToolbarItem.d.ts +1 -0
- package/dist/index.d.ts +17 -17
- package/dist/index.js +133 -231
- package/dist/index.js.map +1 -1
- package/dist/lui.css +6 -6
- package/dist/lui.esm.js +126 -224
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/ContextMenu/context-menu.scss +3 -3
- package/dist/scss/Components/LuiSplitButton/LuiSplitButton.scss +1 -1
- package/package.json +19 -17
- /package/dist/scss/Foundation/Variables/{ExportColors.scss → ExportColors.module.scss} +0 -0
package/dist/lui.css
CHANGED
|
@@ -3275,14 +3275,14 @@ table .lui-checkbox-container input {
|
|
|
3275
3275
|
}
|
|
3276
3276
|
}
|
|
3277
3277
|
|
|
3278
|
-
.lui-select-menuItem {
|
|
3278
|
+
li.lui-select-menuItem {
|
|
3279
3279
|
padding: 0.5rem 0.75rem 0.5rem 0.5rem;
|
|
3280
3280
|
display: flex;
|
|
3281
3281
|
line-height: 1;
|
|
3282
3282
|
transition: all 0.2s ease-in-out;
|
|
3283
3283
|
fill: #6b6966;
|
|
3284
3284
|
}
|
|
3285
|
-
.lui-select-menuItem:hover {
|
|
3285
|
+
li.lui-select-menuItem:hover {
|
|
3286
3286
|
background-color: #e2f3f7;
|
|
3287
3287
|
}
|
|
3288
3288
|
|
|
@@ -3322,7 +3322,7 @@ table .lui-checkbox-container input {
|
|
|
3322
3322
|
fill: #007198;
|
|
3323
3323
|
}
|
|
3324
3324
|
|
|
3325
|
-
.lui-select-menu-group {
|
|
3325
|
+
li.lui-select-menu-group {
|
|
3326
3326
|
height: 32px;
|
|
3327
3327
|
color: #6b6966;
|
|
3328
3328
|
padding-left: 0.75rem;
|
|
@@ -3359,7 +3359,7 @@ table .lui-checkbox-container input {
|
|
|
3359
3359
|
height: 40px;
|
|
3360
3360
|
}
|
|
3361
3361
|
|
|
3362
|
-
.lui-select-divider {
|
|
3362
|
+
li.lui-select-divider {
|
|
3363
3363
|
margin: 0.25rem;
|
|
3364
3364
|
}
|
|
3365
3365
|
|
|
@@ -6839,14 +6839,14 @@ body.LuiHeaderMenuV2-drawer-open {
|
|
|
6839
6839
|
}
|
|
6840
6840
|
}
|
|
6841
6841
|
|
|
6842
|
-
.lui-split-button-menuItem {
|
|
6842
|
+
li.lui-split-button-menuItem {
|
|
6843
6843
|
padding: 0.5rem 0.75rem 0.5rem 0.75rem;
|
|
6844
6844
|
display: flex;
|
|
6845
6845
|
line-height: 1;
|
|
6846
6846
|
transition: all 0.2s ease-in-out;
|
|
6847
6847
|
fill: #6b6966;
|
|
6848
6848
|
}
|
|
6849
|
-
.lui-split-button-menuItem:hover {
|
|
6849
|
+
li.lui-split-button-menuItem:hover {
|
|
6850
6850
|
background-color: #e2f3f7;
|
|
6851
6851
|
}
|
|
6852
6852
|
|