@turquoisehealth/pit-viper 2.78.0 → 2.78.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/vue/base/pv-components-base.d.ts +3 -0
- package/pv-components/dist/vue/base/pv-components-base.js +8 -8
- package/pv-components/dist/vue/base/pv-components-base.mjs +194 -169
- package/pv-components/dist/vue/base/pv-components-base.umd.js +11 -11
- package/pv-components/dist/vue/charts/pv-components-charts.js +32 -32
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +10718 -10664
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +31 -31
- package/pv-components/dist/vue/tables/pv-components-tables.js +22 -22
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +3273 -3219
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +22 -22
- package/pv-components/dist/web/pv-components.iife.js +23 -23
package/package.json
CHANGED
|
@@ -1278,6 +1278,7 @@ placeholder: string;
|
|
|
1278
1278
|
icon?: string;
|
|
1279
1279
|
counterPosition?: "left" | "right" | "none";
|
|
1280
1280
|
companyLogo?: string;
|
|
1281
|
+
customEmptyState?: Component;
|
|
1281
1282
|
showClear?: boolean;
|
|
1282
1283
|
showDropdown?: boolean;
|
|
1283
1284
|
showMenuAction?: boolean;
|
|
@@ -1320,6 +1321,7 @@ placeholder: string;
|
|
|
1320
1321
|
icon?: string;
|
|
1321
1322
|
counterPosition?: "left" | "right" | "none";
|
|
1322
1323
|
companyLogo?: string;
|
|
1324
|
+
customEmptyState?: Component;
|
|
1323
1325
|
showClear?: boolean;
|
|
1324
1326
|
showDropdown?: boolean;
|
|
1325
1327
|
showMenuAction?: boolean;
|
|
@@ -1362,6 +1364,7 @@ declare interface PvMultiSelectButtonProps {
|
|
|
1362
1364
|
icon?: string;
|
|
1363
1365
|
counterPosition?: "left" | "right" | "none";
|
|
1364
1366
|
companyLogo?: string;
|
|
1367
|
+
customEmptyState?: Component;
|
|
1365
1368
|
showClear?: boolean;
|
|
1366
1369
|
showDropdown?: boolean;
|
|
1367
1370
|
showMenuAction?: boolean;
|