@dialpad/dialtone 9.93.0 → 9.94.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/dist/css/dialtone-default-theme.css +39 -0
- package/dist/css/dialtone-default-theme.min.css +1 -1
- package/dist/css/dialtone.css +39 -0
- package/dist/css/dialtone.min.css +1 -1
- package/dist/tokens/doc.json +22482 -22482
- package/dist/vue2/common/utils.cjs +2 -0
- package/dist/vue2/common/utils.cjs.map +1 -1
- package/dist/vue2/common/utils.js +2 -0
- package/dist/vue2/common/utils.js.map +1 -1
- package/dist/vue2/types/common/utils/index.d.ts.map +1 -1
- package/dist/vue3/common/utils.cjs +2 -0
- package/dist/vue3/common/utils.cjs.map +1 -1
- package/dist/vue3/common/utils.js +2 -0
- package/dist/vue3/common/utils.js.map +1 -1
- package/dist/vue3/types/common/utils/index.d.ts.map +1 -1
- package/package.json +3 -12
|
@@ -7277,6 +7277,19 @@ legend .d-label--md {
|
|
|
7277
7277
|
.d-w-unset {
|
|
7278
7278
|
width: unset !important;
|
|
7279
7279
|
}
|
|
7280
|
+
.d-w-fit-content {
|
|
7281
|
+
width: -webkit-fit-content !important;
|
|
7282
|
+
width: -moz-fit-content !important;
|
|
7283
|
+
width: fit-content !important;
|
|
7284
|
+
}
|
|
7285
|
+
.d-w-max-content {
|
|
7286
|
+
width: -webkit-max-content !important;
|
|
7287
|
+
width: max-content !important;
|
|
7288
|
+
}
|
|
7289
|
+
.d-w-min-content {
|
|
7290
|
+
width: -webkit-min-content !important;
|
|
7291
|
+
width: min-content !important;
|
|
7292
|
+
}
|
|
7280
7293
|
.d-wmn60ch {
|
|
7281
7294
|
min-width: 60ch !important;
|
|
7282
7295
|
}
|
|
@@ -7286,6 +7299,19 @@ legend .d-label--md {
|
|
|
7286
7299
|
.d-wmn90ch {
|
|
7287
7300
|
min-width: 90ch !important;
|
|
7288
7301
|
}
|
|
7302
|
+
.d-wmn-fit-content {
|
|
7303
|
+
min-width: -webkit-fit-content !important;
|
|
7304
|
+
min-width: -moz-fit-content !important;
|
|
7305
|
+
min-width: fit-content !important;
|
|
7306
|
+
}
|
|
7307
|
+
.d-wmn-max-content {
|
|
7308
|
+
min-width: -webkit-max-content !important;
|
|
7309
|
+
min-width: max-content !important;
|
|
7310
|
+
}
|
|
7311
|
+
.d-wmn-min-content {
|
|
7312
|
+
min-width: -webkit-min-content !important;
|
|
7313
|
+
min-width: min-content !important;
|
|
7314
|
+
}
|
|
7289
7315
|
.d-wmn-auto {
|
|
7290
7316
|
min-width: auto !important;
|
|
7291
7317
|
}
|
|
@@ -7307,6 +7333,19 @@ legend .d-label--md {
|
|
|
7307
7333
|
.d-wmx-unset {
|
|
7308
7334
|
max-width: unset !important;
|
|
7309
7335
|
}
|
|
7336
|
+
.d-wmx-fit-content {
|
|
7337
|
+
max-width: -webkit-fit-content !important;
|
|
7338
|
+
max-width: -moz-fit-content !important;
|
|
7339
|
+
max-width: fit-content !important;
|
|
7340
|
+
}
|
|
7341
|
+
.d-wmx-max-content {
|
|
7342
|
+
max-width: -webkit-max-content !important;
|
|
7343
|
+
max-width: max-content !important;
|
|
7344
|
+
}
|
|
7345
|
+
.d-wmx-min-content {
|
|
7346
|
+
max-width: -webkit-min-content !important;
|
|
7347
|
+
max-width: min-content !important;
|
|
7348
|
+
}
|
|
7310
7349
|
.d-stack0 > * + * {
|
|
7311
7350
|
margin-top: 0 !important;
|
|
7312
7351
|
}
|