@gitlab/ui 68.1.0 → 68.2.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 +20 -0
- package/dist/config.js +9 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/css/tokens.dark.css +1 -1
- package/dist/tokens/js/tokens.dark.js +1 -1
- package/dist/tokens/js/tokens.js +1 -1
- package/dist/tokens/scss/_tokens.dark.scss +1 -1
- package/dist/tokens/scss/_tokens.scss +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +19 -17
- package/src/components/base/broadcast_message/broadcast_message.scss +1 -1
- package/src/config.js +8 -0
- package/src/scss/utilities.scss +10 -2
- package/src/scss/utility-mixins/text.scss +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## [68.2.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v68.2.0...v68.2.1) (2023-11-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **GlPopover:** increase hide delay ([7fb02fa](https://gitlab.com/gitlab-org/gitlab-ui/commit/7fb02fafb467847d4eff1dab98ee14db94464044))
|
|
7
|
+
|
|
8
|
+
# [68.2.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v68.1.0...v68.2.0) (2023-11-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **css:** remove vendor-prefixed property ([de23bf4](https://gitlab.com/gitlab-org/gitlab-ui/commit/de23bf41b816c32996342ee3bb69e45f914cc8b8))
|
|
14
|
+
* **GlBroadcastMessage:** wrap long words ([25ad510](https://gitlab.com/gitlab-org/gitlab-ui/commit/25ad510d79ec6e5ffddd9dd81139a3bbafc96502))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **css:** add gl-overflow-anywhere utility ([3b26c8c](https://gitlab.com/gitlab-org/gitlab-ui/commit/3b26c8c628dc724c7238e3aa95a14d0ad610a6dd))
|
|
20
|
+
|
|
1
21
|
# [68.1.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v68.0.0...v68.1.0) (2023-11-08)
|
|
2
22
|
|
|
3
23
|
|
package/dist/config.js
CHANGED
|
@@ -12,6 +12,11 @@ const tooltipGlobalConfig = {
|
|
|
12
12
|
customClass: 'gl-tooltip',
|
|
13
13
|
delay: tooltipDelay
|
|
14
14
|
};
|
|
15
|
+
const popoverDelayConfig = {
|
|
16
|
+
show: 50,
|
|
17
|
+
// BootstrapVue's default delay on show.
|
|
18
|
+
hide: 150 // Increased hide delay so that it doesn't disappear to quickly when user attempts to interact with the content.
|
|
19
|
+
};
|
|
15
20
|
|
|
16
21
|
/**
|
|
17
22
|
* Guard against nonexistent localStorage,
|
|
@@ -53,7 +58,10 @@ const setConfigs = function () {
|
|
|
53
58
|
configured = true;
|
|
54
59
|
Vue.use(BVConfigPlugin, {
|
|
55
60
|
BFormText: bFormTextGlobalConfig,
|
|
56
|
-
BTooltip: tooltipGlobalConfig
|
|
61
|
+
BTooltip: tooltipGlobalConfig,
|
|
62
|
+
BPopover: {
|
|
63
|
+
delay: popoverDelayConfig
|
|
64
|
+
}
|
|
57
65
|
});
|
|
58
66
|
if (typeof translations === 'object') {
|
|
59
67
|
if (process.env.NODE_ENV === 'development') {
|