@turquoisehealth/pit-viper 2.132.0 → 2.133.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 +3 -3
- package/_site/assets/css/pit-viper-v2-scoped.css +3 -3
- package/_site/assets/css/pit-viper-v2.css +3 -3
- package/_site/assets/css/pit-viper.css +2 -2
- 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-company-label-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-company-logo-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-company-tag-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-date-picker-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-date-time-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-drawer-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-dropdown-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-popover-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-popover-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-popover-v2-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-search-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-skeleton-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tree-stats.html +1 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs +1 -1
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +491 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +259 -0
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +121834 -0
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +259 -0
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +299 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +223 -0
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +47028 -0
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +223 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +2 -1
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useFilterStore.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +2071 -2062
- package/pv-components/dist/web/components/pv-distribution-bar/pv-distribution-bar.js +7 -7
- package/pv-components/dist/web/pv-components.iife.js +1 -1
|
@@ -42,7 +42,7 @@ const I = {
|
|
|
42
42
|
g(t.values, (r, a) => (m(), h(
|
|
43
43
|
"div",
|
|
44
44
|
{
|
|
45
|
-
key:
|
|
45
|
+
key: a,
|
|
46
46
|
class: A([d(a)]),
|
|
47
47
|
style: w(c(r, a))
|
|
48
48
|
},
|
|
@@ -89,11 +89,11 @@ function k(t, e) {
|
|
|
89
89
|
`Invalid boolean attribute value for "${t}": "${e}". Expected "true", "false", or empty string.`
|
|
90
90
|
), !1);
|
|
91
91
|
}
|
|
92
|
-
function
|
|
92
|
+
function z(t, e) {
|
|
93
93
|
const n = Number(e);
|
|
94
94
|
return isNaN(n) && console.warn(`Invalid number attribute value for "${t}": "${e}". Expected a valid number.`), n;
|
|
95
95
|
}
|
|
96
|
-
function
|
|
96
|
+
function N(t) {
|
|
97
97
|
const e = /* @__PURE__ */ new Set(), n = /* @__PURE__ */ new Set(), c = /* @__PURE__ */ new Set(), i = (t.__vccOpts || t).props;
|
|
98
98
|
return i && typeof i == "object" && Object.entries(i).forEach(([l, r]) => {
|
|
99
99
|
r === Boolean || r && r.type === Boolean ? e.add(l) : r === Number || r && r.type === Number ? n.add(l) : (r === Object || r === Array || r && (r.type === Object || r.type === Array)) && c.add(l);
|
|
@@ -108,11 +108,11 @@ function v(t, e) {
|
|
|
108
108
|
), null;
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
|
-
function
|
|
111
|
+
function x(t) {
|
|
112
112
|
const e = t.__name || t.name;
|
|
113
113
|
if (!e)
|
|
114
114
|
throw new Error("Component must have a __name or name property");
|
|
115
|
-
const n = C(t, O(e)), { booleanProps: c, numberProps: d, jsonProps: i } =
|
|
115
|
+
const n = C(t, O(e)), { booleanProps: c, numberProps: d, jsonProps: i } = N(t);
|
|
116
116
|
class l extends n {
|
|
117
117
|
_hiddenInput = null;
|
|
118
118
|
constructor() {
|
|
@@ -134,7 +134,7 @@ function N(t) {
|
|
|
134
134
|
this[s] = k(s, o);
|
|
135
135
|
}), d.forEach((s) => {
|
|
136
136
|
const o = this.getAttribute(s);
|
|
137
|
-
o !== null && (this[s] =
|
|
137
|
+
o !== null && (this[s] = z(s, o));
|
|
138
138
|
}), i.forEach((s) => {
|
|
139
139
|
const o = this.getAttribute(s);
|
|
140
140
|
if (o !== null) {
|
|
@@ -171,7 +171,7 @@ function D(t) {
|
|
|
171
171
|
const e = t.__name || t.name;
|
|
172
172
|
if (!e)
|
|
173
173
|
throw new Error("Component must have a __name or name property");
|
|
174
|
-
const n = B(e), c =
|
|
174
|
+
const n = B(e), c = x(t);
|
|
175
175
|
customElements.get(n) || customElements.define(n, c);
|
|
176
176
|
}
|
|
177
177
|
D(P);
|