@turquoisehealth/pit-viper 2.130.0 → 2.130.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 +5945 -0
- package/package.json +3 -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/components/base/PvMenu/items/PvMenuBaseItem.spec.d.ts +1 -0
- package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuBaseItem.vue.d.ts +5 -1
- package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItem.vue.d.ts +4 -2
- package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItemVariant.vue.d.ts +4 -2
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +19 -10
- package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +11 -3
- package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButton.vue.d.ts +2 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +866 -816
- package/pv-components/dist/vue/base/types.d.ts +4 -3
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1056 -1004
- package/pv-components/dist/vue/visualizations/types.d.ts +4 -3
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1374 -1328
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +964 -911
- package/pv-components/dist/web/pv-components.iife.js +29 -29
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +0 -491
- package/pv-components/dist/vue/charts/pv-components-charts.js +0 -259
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +0 -121834
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +0 -259
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +0 -299
- package/pv-components/dist/vue/tables/pv-components-tables.js +0 -223
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +0 -47028
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +0 -223
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turquoisehealth/pit-viper",
|
|
3
|
-
"version": "2.130.
|
|
3
|
+
"version": "2.130.1",
|
|
4
4
|
"description": "Turquoise Health's design system.",
|
|
5
5
|
"main": "README.md",
|
|
6
6
|
"publishConfig": {
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"_site/assets/css/pit-viper.css",
|
|
17
17
|
"_site/assets/css/pit-viper-v2.css",
|
|
18
18
|
"_site/assets/css/pit-viper-v2-scoped.css",
|
|
19
|
+
"_site/assets/css/pit-viper-a11y.css",
|
|
19
20
|
"_site/assets/js/pit-viper.js",
|
|
20
21
|
"_src/assets/sprite.svg",
|
|
21
22
|
"_src/assets/sprite-v2.svg",
|
|
@@ -48,6 +49,7 @@
|
|
|
48
49
|
"build": "npm-run-all build:*",
|
|
49
50
|
"prepare": "husky",
|
|
50
51
|
"test": "npm run test --workspace=pv-components",
|
|
52
|
+
"test:ci": "npm run test:ci --workspace=pv-components",
|
|
51
53
|
"create_pr": "tsx ./scripts/createPR.ts",
|
|
52
54
|
"storybook": "npm run storybook --workspace=storybook"
|
|
53
55
|
},
|