@turquoisehealth/pit-viper 2.151.2-dev.0 → 2.152.1
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 -16
- package/_site/assets/css/pit-viper-consumer.css +53 -33
- package/_site/assets/css/pit-viper-v2-scoped.css +3 -16
- package/_site/assets/css/pit-viper-v2.css +3 -16
- package/_site/assets/css/pit-viper.css +3 -16
- package/_src/assets/sprite-v2.svg +1 -1
- package/_src/assets/sprite.svg +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-ai-button-stats.html +1 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs +1 -1
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/constants.d.ts +0 -3
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +1 -1
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/helpers.d.ts +0 -1
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +3541 -3761
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-ai-button/pv-ai-button.js +5 -5
- package/pv-components/dist/web/pv-components.iife.js +2 -2
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/chartTypeRegistry.d.ts +0 -27
|
@@ -66,7 +66,7 @@ const j = [void 0, 10, 12, 20, 24, 32, 64], x = ["xlink:href"], T = /* @__PURE__
|
|
|
66
66
|
__name: "PvAiButton",
|
|
67
67
|
props: {
|
|
68
68
|
size: { default: "md", type: String },
|
|
69
|
-
label: { default: "
|
|
69
|
+
label: { default: "AskTQ", type: String },
|
|
70
70
|
loading: { type: Boolean },
|
|
71
71
|
disabled: { type: Boolean }
|
|
72
72
|
},
|
|
@@ -132,12 +132,12 @@ function M(e) {
|
|
|
132
132
|
}
|
|
133
133
|
}
|
|
134
134
|
const G = (e) => ({ shadowRoot: H(e) });
|
|
135
|
-
function
|
|
135
|
+
function J(e, t) {
|
|
136
136
|
return t === null ? !1 : t === "" || t === "true" ? !0 : (t === "false" || console.warn(
|
|
137
137
|
`Invalid boolean attribute value for "${e}": "${t}". Expected "true", "false", or empty string.`
|
|
138
138
|
), !1);
|
|
139
139
|
}
|
|
140
|
-
function
|
|
140
|
+
function q(e, t) {
|
|
141
141
|
const n = Number(t);
|
|
142
142
|
return isNaN(n) && console.warn(`Invalid number attribute value for "${e}": "${t}". Expected a valid number.`), n;
|
|
143
143
|
}
|
|
@@ -179,10 +179,10 @@ function Z(e) {
|
|
|
179
179
|
_parseAttributes() {
|
|
180
180
|
s.forEach((i) => {
|
|
181
181
|
const a = this.getAttribute(i);
|
|
182
|
-
this[i] =
|
|
182
|
+
this[i] = J(i, a);
|
|
183
183
|
}), r.forEach((i) => {
|
|
184
184
|
const a = this.getAttribute(i);
|
|
185
|
-
a !== null && (this[i] =
|
|
185
|
+
a !== null && (this[i] = q(i, a));
|
|
186
186
|
}), l.forEach((i) => {
|
|
187
187
|
const a = this.getAttribute(i);
|
|
188
188
|
if (a !== null) {
|