@turquoisehealth/pit-viper 2.206.2 → 2.207.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 +0 -10
- package/_site/assets/css/pit-viper-v2.css +0 -10
- 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-filter-panel-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-sidebar-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tag-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvMenu/PvMenuControlPanel.vue.d.ts +8 -0
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +14 -7
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +20 -3
- package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButton.vue.d.ts +5 -0
- package/pv-components/dist/vue/base/components/base/PvTag/PvTag.vue.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 +515 -477
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvMenu/PvMenuControlPanel.vue.d.ts +8 -0
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +14 -7
- package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/types.d.ts +20 -3
- package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButton.vue.d.ts +5 -0
- package/pv-components/dist/vue/visualizations/components/base/PvTag/PvTag.vue.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/types.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/components/charts/widgetOptions.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useSetFilter.d.ts +26 -2
- package/pv-components/dist/vue/visualizations/components/visualizations/index.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1289 -1056
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +4 -2
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +46 -34
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +5 -3
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +4 -1
- package/pv-components/dist/web/components/pv-sidebar/pv-sidebar.js +359 -359
- package/pv-components/dist/web/components/pv-tag/pv-tag.js +4 -2
- package/pv-components/dist/web/pv-components.iife.js +4 -4
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -5236,16 +5236,6 @@ pv-sidebar {
|
|
|
5236
5236
|
width: 64px;
|
|
5237
5237
|
}
|
|
5238
5238
|
|
|
5239
|
-
.content-panel {
|
|
5240
|
-
grid-area: content;
|
|
5241
|
-
overflow-y: auto;
|
|
5242
|
-
scroll-behavior: smooth;
|
|
5243
|
-
scroll-padding: 1rem;
|
|
5244
|
-
display: grid;
|
|
5245
|
-
grid-template-rows: auto 1fr;
|
|
5246
|
-
z-index: 5;
|
|
5247
|
-
}
|
|
5248
|
-
|
|
5249
5239
|
.sidebar-header {
|
|
5250
5240
|
display: flex;
|
|
5251
5241
|
align-items: center;
|
|
@@ -5255,16 +5255,6 @@ pv-sidebar {
|
|
|
5255
5255
|
width: 64px;
|
|
5256
5256
|
}
|
|
5257
5257
|
|
|
5258
|
-
.content-panel {
|
|
5259
|
-
grid-area: content;
|
|
5260
|
-
overflow-y: auto;
|
|
5261
|
-
scroll-behavior: smooth;
|
|
5262
|
-
scroll-padding: 1rem;
|
|
5263
|
-
display: grid;
|
|
5264
|
-
grid-template-rows: auto 1fr;
|
|
5265
|
-
z-index: 5;
|
|
5266
|
-
}
|
|
5267
|
-
|
|
5268
5258
|
.sidebar-header {
|
|
5269
5259
|
display: flex;
|
|
5270
5260
|
align-items: center;
|