@dialpad/dialtone 8.18.1 → 8.19.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.
@@ -21,6 +21,7 @@
21
21
  // • VERTICAL ALIGN
22
22
  // • WHITESPACE
23
23
  // • WORD-BREAK
24
+ // • WORD-WRAP
24
25
  //
25
26
  // ============================================================================
26
27
  // $ FONT FAMILY
@@ -227,7 +228,6 @@ ul {
227
228
  .d-ow-break-word { overflow-wrap: break-word !important; }
228
229
  .d-ow-unset { overflow-wrap: unset !important; }
229
230
 
230
-
231
231
  // ============================================================================
232
232
  // $$ TEXT TRANSFORM
233
233
  // ----------------------------------------------------------------------------
@@ -273,6 +273,13 @@ ul {
273
273
  .d-wb-keep-all { word-break: keep-all !important; }
274
274
  .d-wb-unset { word-break: unset !important; }
275
275
 
276
+ // ============================================================================
277
+ // $$ WORD WRAP
278
+ // ----------------------------------------------------------------------------
279
+ .d-ww-break-word { word-wrap: break-word !important; }
280
+ .d-ww-normal { word-wrap: normal !important; }
281
+ .d-ww-initial { word-wrap: initial !important; }
282
+ .d-ww-inherit { word-wrap: inherit !important; }
276
283
 
277
284
 
278
285
  // Unsure what to do with this
@@ -7163,6 +7163,18 @@ ul {
7163
7163
  .d-wb-unset {
7164
7164
  word-break: unset !important;
7165
7165
  }
7166
+ .d-ww-break-word {
7167
+ word-wrap: break-word !important;
7168
+ }
7169
+ .d-ww-normal {
7170
+ word-wrap: normal !important;
7171
+ }
7172
+ .d-ww-initial {
7173
+ word-wrap: initial !important;
7174
+ }
7175
+ .d-ww-inherit {
7176
+ word-wrap: inherit !important;
7177
+ }
7166
7178
  .d-truncate {
7167
7179
  overflow: hidden !important;
7168
7180
  white-space: nowrap !important;