@turquoisehealth/pit-viper 2.199.2-dev.2 → 2.201.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-a11y.css +1 -1
- package/_site/assets/css/pit-viper-consumer.css +1 -1
- 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/stats/vue/base/stats.html +1 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/stats/web/pv-banner-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-breadcrumbs-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-card-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-input-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-insight-card-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-widget-stats.html +1 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs +276 -259
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/chartTypeRegistry.d.ts +13 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/constants.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataWidget/PvDataWidget.vue.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataWidget/helpers.d.ts +3 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1605 -1487
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-banner/pv-banner.js +1 -1
- package/pv-components/dist/web/components/pv-breadcrumbs/pv-breadcrumbs.js +1 -1
- package/pv-components/dist/web/components/pv-card/pv-card.js +1 -1
- package/pv-components/dist/web/components/pv-input/pv-input.js +3 -3
- package/pv-components/dist/web/components/pv-insight-card/pv-insight-card.js +1 -1
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +13 -13
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +20 -15
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +459 -459
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +822 -822
- package/pv-components/dist/web/components/pv-widget/pv-widget.js +1 -1
- package/pv-components/dist/web/pv-components.iife.js +3 -3
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -15,7 +15,7 @@ var g = /* @__PURE__ */ n({
|
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
setup(n) {
|
|
18
|
-
let r = n, i = e(() => r.href ? "a" : r.interactive ? "button" : "div"), a = e(() => r.href
|
|
18
|
+
let r = n, i = e(() => r.href ? "a" : r.interactive ? "button" : "div"), a = e(() => !r.href && r.interactive ? "button" : void 0);
|
|
19
19
|
return (e, r) => (c(), t(p(i.value), {
|
|
20
20
|
href: n.href,
|
|
21
21
|
type: a.value,
|