@dialpad/dialtone 9.74.3 → 9.76.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 +12 -0
- package/dist/css/dialtone-default-theme.min.css +1 -1
- package/dist/css/dialtone.css +12 -0
- package/dist/css/dialtone.min.css +1 -1
- package/dist/tokens/doc.json +9328 -9328
- package/dist/vue2/component-documentation.json +1 -1
- package/dist/vue2/components/modal/modal.vue.cjs +2 -2
- package/dist/vue2/components/modal/modal.vue.cjs.map +1 -1
- package/dist/vue2/components/modal/modal.vue.js +2 -2
- package/dist/vue2/components/modal/modal.vue.js.map +1 -1
- package/dist/vue2/recipes/comboboxes/combobox_multi_select/combobox_multi_select.vue.cjs +16 -2
- package/dist/vue2/recipes/comboboxes/combobox_multi_select/combobox_multi_select.vue.cjs.map +1 -1
- package/dist/vue2/recipes/comboboxes/combobox_multi_select/combobox_multi_select.vue.js +16 -2
- package/dist/vue2/recipes/comboboxes/combobox_multi_select/combobox_multi_select.vue.js.map +1 -1
- package/dist/vue2/style.css +12 -8
- package/dist/vue3/component-documentation.json +1 -1
- package/dist/vue3/components/modal/modal.vue.cjs +20 -25
- package/dist/vue3/components/modal/modal.vue.cjs.map +1 -1
- package/dist/vue3/components/modal/modal.vue.js +21 -26
- package/dist/vue3/components/modal/modal.vue.js.map +1 -1
- package/dist/vue3/recipes/comboboxes/combobox_multi_select/combobox_multi_select.vue.cjs +18 -3
- package/dist/vue3/recipes/comboboxes/combobox_multi_select/combobox_multi_select.vue.cjs.map +1 -1
- package/dist/vue3/recipes/comboboxes/combobox_multi_select/combobox_multi_select.vue.js +18 -3
- package/dist/vue3/recipes/comboboxes/combobox_multi_select/combobox_multi_select.vue.js.map +1 -1
- package/dist/vue3/style.css +12 -8
- package/package.json +2 -2
package/dist/css/dialtone.css
CHANGED
|
@@ -3006,6 +3006,7 @@ legend .d-label--md {
|
|
|
3006
3006
|
border-top-right-radius: 0;
|
|
3007
3007
|
}
|
|
3008
3008
|
.d-modal--full {
|
|
3009
|
+
--modal-dialog-padding: 0;
|
|
3009
3010
|
padding: 0;
|
|
3010
3011
|
overflow: hidden scroll;
|
|
3011
3012
|
-webkit-transform: unset !important;
|
|
@@ -3020,8 +3021,16 @@ legend .d-label--md {
|
|
|
3020
3021
|
-webkit-transform: unset !important;
|
|
3021
3022
|
transform: unset !important;
|
|
3022
3023
|
}
|
|
3024
|
+
.d-modal--full .d-modal__header {
|
|
3025
|
+
padding: var(--dt-space-600) var(--dt-space-600) 0;
|
|
3026
|
+
}
|
|
3027
|
+
.d-modal--full .d-modal__content {
|
|
3028
|
+
padding-right: 0;
|
|
3029
|
+
padding-left: var(--dt-space-600);
|
|
3030
|
+
}
|
|
3023
3031
|
.d-modal--full .d-modal__footer {
|
|
3024
3032
|
margin-top: auto !important;
|
|
3033
|
+
padding: 0 var(--dt-space-550) var(--dt-space-600) var(--dt-space-600);
|
|
3025
3034
|
}
|
|
3026
3035
|
.d-modal--full .d-modal__banner {
|
|
3027
3036
|
max-width: unset;
|
|
@@ -3033,6 +3042,9 @@ legend .d-label--md {
|
|
|
3033
3042
|
flex-direction: column;
|
|
3034
3043
|
overflow: hidden;
|
|
3035
3044
|
}
|
|
3045
|
+
.d-modal__dialog--scrollable .d-modal__content {
|
|
3046
|
+
overflow-y: auto;
|
|
3047
|
+
}
|
|
3036
3048
|
.d-modal--danger {
|
|
3037
3049
|
--modal-header-color-text: var(--dt-color-foreground-primary);
|
|
3038
3050
|
}
|