@gitlab/ui 52.7.0 → 52.7.1
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/base/broadcast_message/broadcast_message.js +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
- package/scss_to_js/scss_variables.js +0 -1
- package/scss_to_js/scss_variables.json +0 -5
- package/src/components/base/broadcast_message/broadcast_message.scss +0 -4
- package/src/components/base/broadcast_message/broadcast_message.vue +1 -1
- package/src/components/base/new_dropdowns/listbox/listbox.stories.js +3 -0
- package/src/scss/variables.scss +0 -1
package/package.json
CHANGED
|
@@ -327,7 +327,6 @@ export const glDropdownWidth = '15rem'
|
|
|
327
327
|
export const glDropdownWidthNarrow = '10rem'
|
|
328
328
|
export const glDropdownWidthWide = '25rem'
|
|
329
329
|
export const glMaxDropdownMaxHeight = '19.5rem'
|
|
330
|
-
export const glBroadcastMessageTextMaxWidth = '58.375rem'
|
|
331
330
|
export const glBroadcastMessageNotificationMaxWidth = '18.75rem'
|
|
332
331
|
export const glModalSmallWidth = '32rem'
|
|
333
332
|
export const glModalMediumWidth = '48rem'
|
|
@@ -1745,11 +1745,6 @@
|
|
|
1745
1745
|
"value": "px-to-rem(312px)",
|
|
1746
1746
|
"compiledValue": "19.5rem"
|
|
1747
1747
|
},
|
|
1748
|
-
{
|
|
1749
|
-
"name": "$gl-broadcast-message-text-max-width",
|
|
1750
|
-
"value": "px-to-rem(934px)",
|
|
1751
|
-
"compiledValue": "58.375rem"
|
|
1752
|
-
},
|
|
1753
1748
|
{
|
|
1754
1749
|
"name": "$gl-broadcast-message-notification-max-width",
|
|
1755
1750
|
"value": "px-to-rem(300px)",
|
|
@@ -79,7 +79,7 @@ export default {
|
|
|
79
79
|
<div class="gl-broadcast-message-icon gl-line-height-normal">
|
|
80
80
|
<gl-icon :name="iconName" />
|
|
81
81
|
</div>
|
|
82
|
-
<div class="gl-
|
|
82
|
+
<div class="gl-my-n1">
|
|
83
83
|
<!-- @slot The broadcast message's text -->
|
|
84
84
|
<slot></slot>
|
|
85
85
|
</div>
|
|
@@ -590,5 +590,8 @@ export const InfiniteScroll = (
|
|
|
590
590
|
InfiniteScroll.argTypes = {
|
|
591
591
|
...disableControls(['infiniteScroll', 'infiniteScrollLoading', 'items']),
|
|
592
592
|
};
|
|
593
|
+
InfiniteScroll.parameters = {
|
|
594
|
+
storyshots: { disable: true },
|
|
595
|
+
};
|
|
593
596
|
InfiniteScroll.args = generateProps();
|
|
594
597
|
InfiniteScroll.decorators = [makeContainer({ height: '370px' })];
|
package/src/scss/variables.scss
CHANGED
|
@@ -462,7 +462,6 @@ $gl-dropdown-width-wide: px-to-rem(400px);
|
|
|
462
462
|
$gl-max-dropdown-max-height: px-to-rem(312px);
|
|
463
463
|
|
|
464
464
|
// Broadcast messages
|
|
465
|
-
$gl-broadcast-message-text-max-width: px-to-rem(934px);
|
|
466
465
|
$gl-broadcast-message-notification-max-width: px-to-rem(300px);
|
|
467
466
|
|
|
468
467
|
// Modal Widths
|