@dialpad/dialtone 9.117.2 → 9.119.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/dist/css/dialtone-default-theme.css +44 -3
- package/dist/css/dialtone-default-theme.min.css +1 -1
- package/dist/css/dialtone-docs.json +1 -1
- package/dist/css/dialtone.css +44 -3
- package/dist/css/dialtone.min.css +1 -1
- package/dist/tokens/doc.json +16433 -16433
- package/dist/vue2/lib/editor/editor.cjs +1 -1
- package/dist/vue2/lib/editor/editor.cjs.map +1 -1
- package/dist/vue2/lib/editor/editor.js +75 -81
- package/dist/vue2/lib/editor/editor.js.map +1 -1
- package/dist/vue2/lib/rich-text-editor/rich-text-editor.cjs +1 -1
- package/dist/vue2/lib/rich-text-editor/rich-text-editor.cjs.map +1 -1
- package/dist/vue2/lib/rich-text-editor/rich-text-editor.js +12 -12
- package/dist/vue2/lib/rich-text-editor/rich-text-editor.js.map +1 -1
- package/dist/vue2/localization/index.cjs +1 -5
- package/dist/vue2/localization/index.cjs.map +1 -1
- package/dist/vue2/localization/index.js +21 -4865
- package/dist/vue2/localization/index.js.map +1 -1
- package/dist/vue2/types/recipes/conversation_view/editor/editor.vue.d.ts +0 -1
- package/dist/vue2/types/recipes/conversation_view/editor/editor.vue.d.ts.map +1 -1
- package/dist/vue3/lib/editor/editor.cjs +1 -1
- package/dist/vue3/lib/editor/editor.cjs.map +1 -1
- package/dist/vue3/lib/editor/editor.js +95 -100
- package/dist/vue3/lib/editor/editor.js.map +1 -1
- package/dist/vue3/types/recipes/conversation_view/editor/editor.vue.d.ts +0 -1
- package/dist/vue3/types/recipes/conversation_view/editor/editor.vue.d.ts.map +1 -1
- package/package.json +6 -6
|
@@ -163,6 +163,7 @@ select,
|
|
|
163
163
|
textarea {
|
|
164
164
|
margin: 0;
|
|
165
165
|
/* 2 */
|
|
166
|
+
color: inherit;
|
|
166
167
|
font-size: 100%;
|
|
167
168
|
/* 1 */
|
|
168
169
|
font-family: inherit;
|
|
@@ -251,6 +252,7 @@ progress {
|
|
|
251
252
|
*/
|
|
252
253
|
textarea {
|
|
253
254
|
overflow: auto;
|
|
255
|
+
color: inherit;
|
|
254
256
|
}
|
|
255
257
|
/**
|
|
256
258
|
* 1. Add the correct box sizing in IE 10.
|
|
@@ -2335,8 +2337,7 @@ template {
|
|
|
2335
2337
|
flex-flow: row wrap;
|
|
2336
2338
|
gap: var(--description-list-gap);
|
|
2337
2339
|
align-items: flex-start;
|
|
2338
|
-
font
|
|
2339
|
-
line-height: var(--dt-font-line-height-300);
|
|
2340
|
+
font: var(--dt-typography-body-sm);
|
|
2340
2341
|
--description-list-gap: var(--dt-space-400);
|
|
2341
2342
|
}
|
|
2342
2343
|
.d-description-list--gap-0 {
|
|
@@ -2366,6 +2367,7 @@ template {
|
|
|
2366
2367
|
.d-description-list__term {
|
|
2367
2368
|
flex: 0 1 40%;
|
|
2368
2369
|
color: var(--dt-color-foreground-tertiary);
|
|
2370
|
+
font: var(--dt-typography-label-sm);
|
|
2369
2371
|
}
|
|
2370
2372
|
.d-description-list__description {
|
|
2371
2373
|
flex: 1 1 50%;
|
|
@@ -7502,18 +7504,57 @@ legend .d-label--md {
|
|
|
7502
7504
|
.d-h-unset {
|
|
7503
7505
|
height: unset !important;
|
|
7504
7506
|
}
|
|
7507
|
+
.d-h-fit-content {
|
|
7508
|
+
height: -webkit-fit-content !important;
|
|
7509
|
+
height: -moz-fit-content !important;
|
|
7510
|
+
height: fit-content !important;
|
|
7511
|
+
}
|
|
7512
|
+
.d-h-max-content {
|
|
7513
|
+
height: -webkit-max-content !important;
|
|
7514
|
+
height: max-content !important;
|
|
7515
|
+
}
|
|
7516
|
+
.d-h-min-content {
|
|
7517
|
+
height: -webkit-min-content !important;
|
|
7518
|
+
height: min-content !important;
|
|
7519
|
+
}
|
|
7505
7520
|
.d-hmn-auto {
|
|
7506
7521
|
min-height: auto !important;
|
|
7507
7522
|
}
|
|
7508
7523
|
.d-hmn-unset {
|
|
7509
7524
|
min-height: unset !important;
|
|
7510
7525
|
}
|
|
7526
|
+
.d-hmn-fit-content {
|
|
7527
|
+
min-height: -webkit-fit-content !important;
|
|
7528
|
+
min-height: -moz-fit-content !important;
|
|
7529
|
+
min-height: fit-content !important;
|
|
7530
|
+
}
|
|
7531
|
+
.d-hmn-max-content {
|
|
7532
|
+
min-height: -webkit-max-content !important;
|
|
7533
|
+
min-height: max-content !important;
|
|
7534
|
+
}
|
|
7535
|
+
.d-hmn-min-content {
|
|
7536
|
+
min-height: -webkit-min-content !important;
|
|
7537
|
+
min-height: min-content !important;
|
|
7538
|
+
}
|
|
7511
7539
|
.d-hmx-auto {
|
|
7512
7540
|
max-height: auto !important;
|
|
7513
7541
|
}
|
|
7514
7542
|
.d-hmx-unset {
|
|
7515
7543
|
max-height: unset !important;
|
|
7516
7544
|
}
|
|
7545
|
+
.d-hmx-fit-content {
|
|
7546
|
+
max-height: -webkit-fit-content !important;
|
|
7547
|
+
max-height: -moz-fit-content !important;
|
|
7548
|
+
max-height: fit-content !important;
|
|
7549
|
+
}
|
|
7550
|
+
.d-hmx-max-content {
|
|
7551
|
+
max-height: -webkit-max-content !important;
|
|
7552
|
+
max-height: max-content !important;
|
|
7553
|
+
}
|
|
7554
|
+
.d-hmx-min-content {
|
|
7555
|
+
max-height: -webkit-min-content !important;
|
|
7556
|
+
max-height: min-content !important;
|
|
7557
|
+
}
|
|
7517
7558
|
.d-w10p {
|
|
7518
7559
|
width: 10% !important;
|
|
7519
7560
|
}
|
|
@@ -9221,7 +9262,7 @@ ul {
|
|
|
9221
9262
|
width: var(--dt-size-550);
|
|
9222
9263
|
height: var(--dt-size-550);
|
|
9223
9264
|
margin-bottom: var(--dt-space-450-negative);
|
|
9224
|
-
color: var(--dt-color-
|
|
9265
|
+
color: var(--dt-color-foreground-primary-inverted);
|
|
9225
9266
|
font-size: var(--dt-font-size-200);
|
|
9226
9267
|
}
|
|
9227
9268
|
.d-recipe-ivr-node__connector-dtmf .d-recipe-ivr-node__connector--selected {
|