@gitlab/ui 68.1.0 → 68.2.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 +13 -0
- 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 +1 -1
- package/src/components/base/broadcast_message/broadcast_message.scss +1 -1
- package/src/scss/utilities.scss +10 -2
- package/src/scss/utility-mixins/text.scss +6 -1
package/package.json
CHANGED
package/src/scss/utilities.scss
CHANGED
|
@@ -8378,12 +8378,20 @@ $gl-animate-skeleton-loader-max-width: 64 * $grid-size;
|
|
|
8378
8378
|
.gl-overflow-break-word {
|
|
8379
8379
|
overflow-wrap: break-word;
|
|
8380
8380
|
hyphens: auto;
|
|
8381
|
-
-webkit-hyphens: auto;
|
|
8382
8381
|
}
|
|
8383
8382
|
.gl-overflow-break-word\! {
|
|
8384
8383
|
overflow-wrap: break-word !important;
|
|
8385
8384
|
hyphens: auto !important;
|
|
8386
|
-
|
|
8385
|
+
}
|
|
8386
|
+
.gl-overflow-anywhere {
|
|
8387
|
+
hyphens: auto;
|
|
8388
|
+
overflow-wrap: anywhere;
|
|
8389
|
+
word-break: normal;
|
|
8390
|
+
}
|
|
8391
|
+
.gl-overflow-anywhere\! {
|
|
8392
|
+
hyphens: auto !important;
|
|
8393
|
+
overflow-wrap: anywhere !important;
|
|
8394
|
+
word-break: normal !important;
|
|
8387
8395
|
}
|
|
8388
8396
|
.gl-str-truncated {
|
|
8389
8397
|
@include str-truncated;
|
|
@@ -130,7 +130,12 @@
|
|
|
130
130
|
@mixin gl-overflow-break-word {
|
|
131
131
|
overflow-wrap: break-word;
|
|
132
132
|
hyphens: auto;
|
|
133
|
-
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
@mixin gl-overflow-anywhere {
|
|
136
|
+
hyphens: auto;
|
|
137
|
+
overflow-wrap: anywhere;
|
|
138
|
+
word-break: normal;
|
|
134
139
|
}
|
|
135
140
|
|
|
136
141
|
// Deprecated, prefer `gl-text-truncate`
|