@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.
Files changed (43) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +5945 -0
  2. package/package.json +3 -1
  3. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  4. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  5. package/pv-components/dist/stats/web/pv-company-label-stats.html +1 -1
  6. package/pv-components/dist/stats/web/pv-company-logo-stats.html +1 -1
  7. package/pv-components/dist/stats/web/pv-company-tag-stats.html +1 -1
  8. package/pv-components/dist/stats/web/pv-date-picker-stats.html +1 -1
  9. package/pv-components/dist/stats/web/pv-date-time-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-drawer-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-dropdown-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  13. package/pv-components/dist/stats/web/pv-popover-menu-stats.html +1 -1
  14. package/pv-components/dist/stats/web/pv-popover-stats.html +1 -1
  15. package/pv-components/dist/stats/web/pv-popover-v2-stats.html +1 -1
  16. package/pv-components/dist/stats/web/pv-search-input-stats.html +1 -1
  17. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  18. package/pv-components/dist/stats/web/pv-skeleton-stats.html +1 -1
  19. package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
  20. package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
  21. package/pv-components/dist/stats/web/pv-tree-stats.html +1 -1
  22. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuBaseItem.spec.d.ts +1 -0
  23. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuBaseItem.vue.d.ts +5 -1
  24. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItem.vue.d.ts +4 -2
  25. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItemVariant.vue.d.ts +4 -2
  26. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +19 -10
  27. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +11 -3
  28. package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButton.vue.d.ts +2 -0
  29. package/pv-components/dist/vue/base/pv-components-base.mjs +866 -816
  30. package/pv-components/dist/vue/base/types.d.ts +4 -3
  31. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1056 -1004
  32. package/pv-components/dist/vue/visualizations/types.d.ts +4 -3
  33. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1374 -1328
  34. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +964 -911
  35. package/pv-components/dist/web/pv-components.iife.js +29 -29
  36. package/pv-components/dist/vue/charts/pv-components-charts.d.ts +0 -491
  37. package/pv-components/dist/vue/charts/pv-components-charts.js +0 -259
  38. package/pv-components/dist/vue/charts/pv-components-charts.mjs +0 -121834
  39. package/pv-components/dist/vue/charts/pv-components-charts.umd.js +0 -259
  40. package/pv-components/dist/vue/tables/pv-components-tables.d.ts +0 -299
  41. package/pv-components/dist/vue/tables/pv-components-tables.js +0 -223
  42. package/pv-components/dist/vue/tables/pv-components-tables.mjs +0 -47028
  43. 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.0",
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
  },