@turquoisehealth/pit-viper 2.188.0 → 2.189.1-dev.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/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-header-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-table-of-contents-stats.html +4950 -0
- package/pv-components/dist/vue/base/components/base/PvCompanyLogo/PvCompanyLogo.vue.d.ts +3 -0
- package/pv-components/dist/vue/base/components/base/PvHeader/PvHeader.vue.d.ts +2 -0
- package/pv-components/dist/vue/base/components/base/PvTableOfContents/PvTableOfContents.vue.d.ts +19 -0
- package/pv-components/dist/vue/base/components/base/PvTableOfContents/types.d.ts +6 -0
- package/pv-components/dist/vue/base/components/base/index.d.ts +2 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +183 -149
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvCompanyLogo/PvCompanyLogo.vue.d.ts +3 -0
- package/pv-components/dist/vue/visualizations/components/base/PvHeader/PvHeader.vue.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/base/PvTableOfContents/PvTableOfContents.vue.d.ts +19 -0
- package/pv-components/dist/vue/visualizations/components/base/PvTableOfContents/types.d.ts +6 -0
- package/pv-components/dist/vue/visualizations/components/base/index.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvTableOptionsPanel.vue.d.ts +75 -2
- package/pv-components/dist/vue/visualizations/components/visualizations/index.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +2304 -2243
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-company-label/pv-company-label.js +5 -1
- package/pv-components/dist/web/components/pv-company-logo/pv-company-logo.js +5 -1
- package/pv-components/dist/web/components/pv-company-tag/pv-company-tag.js +5 -1
- package/pv-components/dist/web/components/pv-header/pv-header.js +367 -363
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +5 -1
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +5 -1
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +5 -1
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +5 -1
- package/pv-components/dist/web/components/pv-table-of-contents/pv-table-of-contents.js +6234 -0
- package/pv-components/dist/web/pv-components.iife.js +13 -13
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -70,13 +70,17 @@ var we = {
|
|
|
70
70
|
toCamelCase: {
|
|
71
71
|
type: Boolean,
|
|
72
72
|
default: !0
|
|
73
|
+
},
|
|
74
|
+
toSnakeCase: {
|
|
75
|
+
type: Boolean,
|
|
76
|
+
default: !1
|
|
73
77
|
}
|
|
74
78
|
},
|
|
75
79
|
setup(e) {
|
|
76
80
|
let t = e, n = j(!0), i = r(() => we[t.size] || "32px"), a = r(() => ({
|
|
77
81
|
"pv-icon": n.value,
|
|
78
82
|
[`pv-company-${t.size}`]: t.size && !n.value
|
|
79
|
-
})), c = r(() => ({ width: i.value })), l = r(() => t.toCamelCase ? Ce(t.name) + ".svg" : t.name + ".svg"), u = r(() => t.srcPathOverride ? t.srcPathOverride : `${t.basePath}/${l.value}`);
|
|
83
|
+
})), c = r(() => ({ width: i.value })), l = r(() => t.toSnakeCase ? `${t.name.toLowerCase().replace(/[^a-z\s]/g, "").trim().replace(/\s+/g, "_")}.svg` : t.toCamelCase ? Ce(t.name) + ".svg" : t.name + ".svg"), u = r(() => t.srcPathOverride ? t.srcPathOverride : `${t.basePath}/${l.value}`);
|
|
80
84
|
return L(u, () => {
|
|
81
85
|
n.value = !0;
|
|
82
86
|
}), (e, t) => (D(), o("div", Ee, [n.value ? (D(), o("div", {
|
|
@@ -563,13 +563,17 @@ var xt = {
|
|
|
563
563
|
toCamelCase: {
|
|
564
564
|
type: Boolean,
|
|
565
565
|
default: !0
|
|
566
|
+
},
|
|
567
|
+
toSnakeCase: {
|
|
568
|
+
type: Boolean,
|
|
569
|
+
default: !1
|
|
566
570
|
}
|
|
567
571
|
},
|
|
568
572
|
setup(e) {
|
|
569
573
|
let t = e, n = M(!0), i = r(() => $e[t.size] || "32px"), a = r(() => ({
|
|
570
574
|
"pv-icon": n.value,
|
|
571
575
|
[`pv-company-${t.size}`]: t.size && !n.value
|
|
572
|
-
})), c = r(() => ({ width: i.value })), l = r(() => t.toCamelCase ? bt(t.name) + ".svg" : t.name + ".svg"), u = r(() => t.srcPathOverride ? t.srcPathOverride : `${t.basePath}/${l.value}`);
|
|
576
|
+
})), c = r(() => ({ width: i.value })), l = r(() => t.toSnakeCase ? `${t.name.toLowerCase().replace(/[^a-z\s]/g, "").trim().replace(/\s+/g, "_")}.svg` : t.toCamelCase ? bt(t.name) + ".svg" : t.name + ".svg"), u = r(() => t.srcPathOverride ? t.srcPathOverride : `${t.basePath}/${l.value}`);
|
|
573
577
|
return V(u, () => {
|
|
574
578
|
n.value = !0;
|
|
575
579
|
}), (e, t) => (O(), o("div", xt, [n.value ? (O(), o("div", {
|
|
@@ -1526,13 +1526,17 @@ var Er = {
|
|
|
1526
1526
|
toCamelCase: {
|
|
1527
1527
|
type: Boolean,
|
|
1528
1528
|
default: !0
|
|
1529
|
+
},
|
|
1530
|
+
toSnakeCase: {
|
|
1531
|
+
type: Boolean,
|
|
1532
|
+
default: !1
|
|
1529
1533
|
}
|
|
1530
1534
|
},
|
|
1531
1535
|
setup(e) {
|
|
1532
1536
|
let t = e, n = A(!0), i = r(() => vr[t.size] || "32px"), a = r(() => ({
|
|
1533
1537
|
"pv-icon": n.value,
|
|
1534
1538
|
[`pv-company-${t.size}`]: t.size && !n.value
|
|
1535
|
-
})), c = r(() => ({ width: i.value })), l = r(() => t.toCamelCase ? Tr(t.name) + ".svg" : t.name + ".svg"), u = r(() => t.srcPathOverride ? t.srcPathOverride : `${t.basePath}/${l.value}`);
|
|
1539
|
+
})), c = r(() => ({ width: i.value })), l = r(() => t.toSnakeCase ? `${t.name.toLowerCase().replace(/[^a-z\s]/g, "").trim().replace(/\s+/g, "_")}.svg` : t.toCamelCase ? Tr(t.name) + ".svg" : t.name + ".svg"), u = r(() => t.srcPathOverride ? t.srcPathOverride : `${t.basePath}/${l.value}`);
|
|
1536
1540
|
return F(u, () => {
|
|
1537
1541
|
n.value = !0;
|
|
1538
1542
|
}), (e, t) => (D(), o("div", Er, [n.value ? (D(), o("div", {
|
|
@@ -415,13 +415,17 @@ var ht = {
|
|
|
415
415
|
toCamelCase: {
|
|
416
416
|
type: Boolean,
|
|
417
417
|
default: !0
|
|
418
|
+
},
|
|
419
|
+
toSnakeCase: {
|
|
420
|
+
type: Boolean,
|
|
421
|
+
default: !1
|
|
418
422
|
}
|
|
419
423
|
},
|
|
420
424
|
setup(e) {
|
|
421
425
|
let t = e, n = j(!0), i = r(() => it[t.size] || "32px"), a = r(() => ({
|
|
422
426
|
"pv-icon": n.value,
|
|
423
427
|
[`pv-company-${t.size}`]: t.size && !n.value
|
|
424
|
-
})), c = r(() => ({ width: i.value })), l = r(() => t.toCamelCase ? mt(t.name) + ".svg" : t.name + ".svg"), u = r(() => t.srcPathOverride ? t.srcPathOverride : `${t.basePath}/${l.value}`);
|
|
428
|
+
})), c = r(() => ({ width: i.value })), l = r(() => t.toSnakeCase ? `${t.name.toLowerCase().replace(/[^a-z\s]/g, "").trim().replace(/\s+/g, "_")}.svg` : t.toCamelCase ? mt(t.name) + ".svg" : t.name + ".svg"), u = r(() => t.srcPathOverride ? t.srcPathOverride : `${t.basePath}/${l.value}`);
|
|
425
429
|
return L(u, () => {
|
|
426
430
|
n.value = !0;
|
|
427
431
|
}), (e, t) => (O(), o("div", ht, [n.value ? (O(), o("div", {
|