@turquoisehealth/pit-viper 2.98.0 → 2.99.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/_site/assets/css/pit-viper-v2-scoped.css +1 -1
- package/_site/assets/css/pit-viper-v2.css +1 -1
- package/_site/assets/css/pit-viper.css +1 -1
- package/package.json +1 -1
- package/pv-components/dist/vue/base/components/base/PvModal/PvModal.vue.d.ts +4 -2
- package/pv-components/dist/vue/base/pv-components-base.js +2 -2
- package/pv-components/dist/vue/base/pv-components-base.mjs +224 -228
- package/pv-components/dist/vue/base/pv-components-base.umd.js +3 -3
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.js +7 -7
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +270 -272
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.umd.js +1 -1
- package/pv-components/dist/web/pv-components.iife.js +9 -9
|
@@ -4022,7 +4022,7 @@
|
|
|
4022
4022
|
}
|
|
4023
4023
|
.pv-v2 .pv-banner-primary {
|
|
4024
4024
|
background-color: var(--banner-primary-background-color, #E4F8F6);
|
|
4025
|
-
border
|
|
4025
|
+
border: 1px solid var(--banner-primary-border-color, #B0E8E4);
|
|
4026
4026
|
}
|
|
4027
4027
|
.pv-v2 .pv-banner-secondary {
|
|
4028
4028
|
background-color: var(--banner-secondary-background-color, #FFFFFF);
|
|
@@ -4364,7 +4364,7 @@ pv-data-grid.ag-theme-pv {
|
|
|
4364
4364
|
|
|
4365
4365
|
.pv-banner-primary {
|
|
4366
4366
|
background-color: var(--banner-primary-background-color, #E4F8F6);
|
|
4367
|
-
border
|
|
4367
|
+
border: 1px solid var(--banner-primary-border-color, #B0E8E4);
|
|
4368
4368
|
}
|
|
4369
4369
|
|
|
4370
4370
|
.pv-banner-secondary {
|
|
@@ -4369,7 +4369,7 @@ pv-data-grid.ag-theme-pv {
|
|
|
4369
4369
|
|
|
4370
4370
|
.pv-banner-primary {
|
|
4371
4371
|
background-color: var(--banner-primary-background-color, #E4F8F6);
|
|
4372
|
-
border
|
|
4372
|
+
border: 1px solid var(--banner-primary-border-color, #B0E8E4);
|
|
4373
4373
|
}
|
|
4374
4374
|
|
|
4375
4375
|
.pv-banner-secondary {
|
package/package.json
CHANGED
|
@@ -2,7 +2,8 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
|
|
|
2
2
|
export interface ModalProps {
|
|
3
3
|
header: string;
|
|
4
4
|
subheader?: string;
|
|
5
|
-
|
|
5
|
+
disableCloseOnClickOutside?: boolean;
|
|
6
|
+
hideFooter?: boolean;
|
|
6
7
|
}
|
|
7
8
|
declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
8
9
|
modelValue: boolean;
|
|
@@ -13,7 +14,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
13
14
|
} & ModalProps> & Readonly<{
|
|
14
15
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
15
16
|
}>, {
|
|
16
|
-
|
|
17
|
+
disableCloseOnClickOutside: boolean;
|
|
18
|
+
hideFooter: boolean;
|
|
17
19
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
18
20
|
dialog: HTMLDialogElement;
|
|
19
21
|
}, HTMLDialogElement>, {
|