@dialpad/dialtone 9.42.0 → 9.44.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.
Files changed (49) hide show
  1. package/dist/css/dialtone.css +51 -25
  2. package/dist/css/dialtone.min.css +1 -1
  3. package/dist/tokens/css/variables-dark.css +1 -1
  4. package/dist/tokens/css/variables-expressive-dark.css +1 -1
  5. package/dist/tokens/css/variables-expressive-light.css +1 -1
  6. package/dist/tokens/css/variables-expressive-sm-dark.css +1 -1
  7. package/dist/tokens/css/variables-expressive-sm-light.css +1 -1
  8. package/dist/tokens/css/variables-light.css +1 -1
  9. package/dist/tokens/css/variables-tmo-dark.css +1 -1
  10. package/dist/tokens/css/variables-tmo-light.css +1 -1
  11. package/dist/tokens/less/variables-dark.less +1 -1
  12. package/dist/tokens/less/variables-expressive-dark.less +1 -1
  13. package/dist/tokens/less/variables-expressive-light.less +1 -1
  14. package/dist/tokens/less/variables-expressive-sm-dark.less +1 -1
  15. package/dist/tokens/less/variables-expressive-sm-light.less +1 -1
  16. package/dist/tokens/less/variables-light.less +1 -1
  17. package/dist/tokens/less/variables-tmo-dark.less +1 -1
  18. package/dist/tokens/less/variables-tmo-light.less +1 -1
  19. package/dist/vue2/lib/empty-state.cjs +34 -7
  20. package/dist/vue2/lib/empty-state.cjs.map +1 -1
  21. package/dist/vue2/lib/empty-state.js +34 -7
  22. package/dist/vue2/lib/empty-state.js.map +1 -1
  23. package/dist/vue2/lib/general-row.cjs +2 -3
  24. package/dist/vue2/lib/general-row.cjs.map +1 -1
  25. package/dist/vue2/lib/general-row.js +2 -3
  26. package/dist/vue2/lib/general-row.js.map +1 -1
  27. package/dist/vue2/lib/tooltip-directive.cjs +1 -0
  28. package/dist/vue2/lib/tooltip-directive.cjs.map +1 -1
  29. package/dist/vue2/lib/tooltip-directive.js +1 -0
  30. package/dist/vue2/lib/tooltip-directive.js.map +1 -1
  31. package/dist/vue2/style.css +56 -64
  32. package/dist/vue2/types/directives/tooltip/tooltip.d.ts.map +1 -1
  33. package/dist/vue3/lib/empty-state.cjs +72 -27
  34. package/dist/vue3/lib/empty-state.cjs.map +1 -1
  35. package/dist/vue3/lib/empty-state.js +73 -28
  36. package/dist/vue3/lib/empty-state.js.map +1 -1
  37. package/dist/vue3/lib/general-row.cjs +2 -3
  38. package/dist/vue3/lib/general-row.cjs.map +1 -1
  39. package/dist/vue3/lib/general-row.js +2 -3
  40. package/dist/vue3/lib/general-row.js.map +1 -1
  41. package/dist/vue3/lib/tooltip-directive.cjs +1 -0
  42. package/dist/vue3/lib/tooltip-directive.cjs.map +1 -1
  43. package/dist/vue3/lib/tooltip-directive.js +1 -0
  44. package/dist/vue3/lib/tooltip-directive.js.map +1 -1
  45. package/dist/vue3/style.css +56 -64
  46. package/dist/vue3/types/components/empty_state/empty_state.vue.d.ts.map +1 -1
  47. package/dist/vue3/types/components/root_layout/root_layout.vue.d.ts +1 -1
  48. package/dist/vue3/types/directives/tooltip/tooltip.d.ts.map +1 -1
  49. package/package.json +2 -2
@@ -1889,38 +1889,37 @@ template {
1889
1889
  flex-direction: column;
1890
1890
  align-items: center;
1891
1891
  justify-content: center;
1892
+ width: 100%;
1893
+ padding: var(--dt-space-600);
1892
1894
  text-align: center;
1893
- margin: 0 auto;
1894
1895
  }
1895
- .d-empty-state--size-sm {
1896
- width: 50%;
1897
- padding: var(--dt-space-500);
1898
- }
1899
- .d-empty-state--size-sm h1 {
1900
- font: var(--dt-typography-headline-md);
1896
+ .d-empty-state__icon {
1897
+ color: var(--dt-color-foreground-tertiary);
1898
+ line-height: 0;
1901
1899
  }
1902
- .d-empty-state--size-sm p {
1903
- font: var(--dt-typography-body-sm);
1900
+ .d-empty-state__illustration {
1901
+ line-height: 0;
1904
1902
  }
1905
- .d-empty-state--size-md {
1906
- width: 70%;
1907
- padding: var(--dt-space-500);
1903
+ .d-empty-state__content {
1904
+ padding: var(--dt-space-600) 0;
1908
1905
  }
1909
- .d-empty-state--size-md h1 {
1910
- font: var(--dt-typography-headline-xl);
1906
+ .d-empty-state__content--sm {
1907
+ padding: var(--dt-space-500) 0;
1911
1908
  }
1912
- .d-empty-state--size-md p {
1913
- font: var(--dt-typography-body-sm);
1909
+ .d-empty-state__header-text {
1910
+ text-wrap: balance;
1914
1911
  }
1915
- .d-empty-state--size-lg {
1916
- width: 100%;
1917
- padding: var(--dt-space-600);
1912
+ .d-empty-state__body-text {
1913
+ color: var(--dt-color-foreground-secondary);
1914
+ text-wrap: balance;
1918
1915
  }
1919
- .d-empty-state--size-lg h1 {
1920
- font: var(--dt-typography-headline-xxl);
1916
+ .d-empty-state--size-sm {
1917
+ width: var(--dt-size-50-percent);
1918
+ padding: var(--dt-space-500);
1921
1919
  }
1922
- .d-empty-state--size-lg p {
1923
- font: var(--dt-typography-body-md);
1920
+ .d-empty-state--size-md {
1921
+ width: var(--dt-size-70-percent);
1922
+ padding: var(--dt-space-500);
1924
1923
  }
1925
1924
  fieldset {
1926
1925
  min-width: 0;
@@ -7456,6 +7455,33 @@ ul {
7456
7455
  white-space: nowrap !important;
7457
7456
  text-overflow: ellipsis !important;
7458
7457
  }
7458
+ .d-fvn-normal {
7459
+ font-variant-numeric: normal !important;
7460
+ }
7461
+ .d-fvn-ordinal {
7462
+ font-variant-numeric: ordinal !important;
7463
+ }
7464
+ .d-fvn-slashed-zero {
7465
+ font-variant-numeric: slashed-zero !important;
7466
+ }
7467
+ .d-fvn-lining {
7468
+ font-variant-numeric: lining-nums !important;
7469
+ }
7470
+ .d-fvn-proportional {
7471
+ font-variant-numeric: proportional-nums !important;
7472
+ }
7473
+ .d-fvn-tabular {
7474
+ font-variant-numeric: tabular-nums !important;
7475
+ }
7476
+ .d-fvn-diagonal {
7477
+ font-variant-numeric: diagonal-fractions !important;
7478
+ }
7479
+ .d-fvn-stacked {
7480
+ font-variant-numeric: stacked-fractions !important;
7481
+ }
7482
+ .d-fvn-unset {
7483
+ font-variant-numeric: unset !important;
7484
+ }
7459
7485
  @font-face {
7460
7486
  font-weight: 400;
7461
7487
  font-family: Archivo;
@@ -7561,7 +7587,7 @@ body {
7561
7587
  }
7562
7588
  /**
7563
7589
  * Do not edit directly
7564
- * Generated on Fri, 31 May 2024 23:05:48 GMT
7590
+ * Generated on Fri, 07 Jun 2024 22:29:04 GMT
7565
7591
  */
7566
7592
 
7567
7593
  .dialtone-theme-light {
@@ -8378,7 +8404,7 @@ body {
8378
8404
 
8379
8405
  /**
8380
8406
  * Do not edit directly
8381
- * Generated on Fri, 31 May 2024 23:05:49 GMT
8407
+ * Generated on Fri, 07 Jun 2024 22:29:05 GMT
8382
8408
  */
8383
8409
 
8384
8410
  .dialtone-theme-dark {