@dialpad/dialtone-css 8.60.1 → 8.62.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/lib/build/less/utilities/layout.less +1 -0
- package/lib/build/less/utilities/typography.less +3 -1
- package/lib/dist/dialtone-default-theme.css +6590 -579
- package/lib/dist/dialtone-default-theme.min.css +1 -1
- package/lib/dist/dialtone-docs.json +1 -1
- package/lib/dist/dialtone.css +2036 -2
- package/lib/dist/dialtone.min.css +1 -1
- package/lib/dist/tokens/tokens-aegean-dark.css +467 -0
- package/lib/dist/tokens/tokens-aegean-light.css +467 -0
- package/lib/dist/tokens/tokens-base-dark.css +8 -8
- package/lib/dist/tokens/tokens-base-deca-dark.css +8 -8
- package/lib/dist/tokens/tokens-botany-dark.css +474 -0
- package/lib/dist/tokens/tokens-botany-light.css +460 -0
- package/lib/dist/tokens/tokens-buttercream-dark.css +474 -0
- package/lib/dist/tokens/tokens-buttercream-light.css +3476 -0
- package/lib/dist/tokens/tokens-ceruleo-dark.css +488 -0
- package/lib/dist/tokens/tokens-ceruleo-default.css +488 -0
- package/lib/dist/tokens/tokens-debug-dp.css +986 -6
- package/lib/dist/tokens/tokens-deca-dark.css +41 -1846
- package/lib/dist/tokens/tokens-deca-light.css +62 -1874
- package/lib/dist/tokens/tokens-dp-dark.css +1259 -111
- package/lib/dist/tokens/tokens-dp-light.css +1001 -21
- package/lib/dist/tokens/tokens-expressive-dark.css +1231 -111
- package/lib/dist/tokens/tokens-expressive-light.css +1001 -21
- package/lib/dist/tokens/tokens-expressive-sm-dark.css +1259 -111
- package/lib/dist/tokens/tokens-expressive-sm-light.css +1001 -21
- package/lib/dist/tokens/tokens-high-desert-dark.css +467 -0
- package/lib/dist/tokens/tokens-high-desert-light.css +467 -0
- package/lib/dist/tokens/tokens-melon-dark.css +467 -0
- package/lib/dist/tokens/tokens-melon-light.css +467 -0
- package/lib/dist/tokens/tokens-plum-dark.css +460 -0
- package/lib/dist/tokens/tokens-plum-light.css +460 -0
- package/lib/dist/tokens/tokens-sunflower-dark.css +467 -0
- package/lib/dist/tokens/tokens-sunflower-light.css +467 -0
- package/lib/dist/tokens/tokens-tmo-dark.css +1476 -328
- package/lib/dist/tokens/tokens-tmo-light.css +1260 -280
- package/lib/dist/tokens/tokens-verdant-haze-dark.css +474 -0
- package/lib/dist/tokens/tokens-verdant-haze-light.css +474 -0
- package/lib/dist/tokens-docs.json +1 -1
- package/package.json +3 -3
|
@@ -66,6 +66,7 @@
|
|
|
66
66
|
// $ DISPLAY
|
|
67
67
|
// ----------------------------------------------------------------------------
|
|
68
68
|
.d-d-block { display: block !important; }
|
|
69
|
+
.d-d-contents { display: contents !important; }
|
|
69
70
|
.d-d-flex { display: flex !important; }
|
|
70
71
|
.d-d-grid { display: grid !important; }
|
|
71
72
|
.d-d-inline { display: inline !important; }
|
|
@@ -425,14 +425,16 @@ ul {
|
|
|
425
425
|
// ----------------------------------------------------------------------------
|
|
426
426
|
.d-wb-normal { word-break: normal !important; }
|
|
427
427
|
.d-wb-break-all { word-break: break-all !important; }
|
|
428
|
+
.d-wb-break-word { word-break: break-word !important; }
|
|
428
429
|
.d-wb-keep-all { word-break: keep-all !important; }
|
|
429
430
|
.d-wb-unset { word-break: unset !important; }
|
|
430
431
|
|
|
431
432
|
// ============================================================================
|
|
432
433
|
// $$ WORD WRAP
|
|
433
434
|
// ----------------------------------------------------------------------------
|
|
434
|
-
.d-ww-break-word { word-wrap: break-word !important; }
|
|
435
435
|
.d-ww-normal { word-wrap: normal !important; }
|
|
436
|
+
.d-ww-break-word { word-wrap: break-word !important; }
|
|
437
|
+
.d-ww-anywhere { word-wrap: anywhere !important; }
|
|
436
438
|
.d-ww-initial { word-wrap: initial !important; }
|
|
437
439
|
.d-ww-inherit { word-wrap: inherit !important; }
|
|
438
440
|
|