@turquoisehealth/pit-viper 2.25.3 → 2.26.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 +3 -1
- package/pv-components/dist/vue/base/pv-components-base.js +3 -53
- package/pv-components/dist/vue/base/pv-components-base.mjs +1507 -62531
- package/pv-components/dist/vue/charts/pv-components-charts.js +46 -46
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +15203 -15177
- package/pv-components/dist/vue/tables/pv-components-tables.js +49 -68
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +13304 -72514
- package/pv-components/dist/web/pv-components.iife.js +2 -112
- package/pv-components/dist/vue/base/pv-components-base.d.ts +0 -712
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +0 -230
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +0 -181
- package/pv-components/dist/web/index.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turquoisehealth/pit-viper",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.26.0",
|
|
4
4
|
"description": "Turquoise Health's design system.",
|
|
5
5
|
"main": "README.md",
|
|
6
6
|
"publishConfig": {
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"build:eleventy": "eleventy",
|
|
48
48
|
"build:pagefind": "npx pagefind --site _site",
|
|
49
49
|
"build:pv-components": "npm run build --workspace=pv-components",
|
|
50
|
+
"watch:pv-components": "npm run watch_docs --workspace=pv-components",
|
|
50
51
|
"prepublishOnly": "npm run test && npm run build",
|
|
51
52
|
"start": "npm-run-all build:sass --parallel watch:*",
|
|
52
53
|
"build": "npm-run-all build:*",
|
|
@@ -83,6 +84,7 @@
|
|
|
83
84
|
},
|
|
84
85
|
"devDependencies": {
|
|
85
86
|
"@changesets/cli": "^2.29.4",
|
|
87
|
+
"chokidar-cli": "^3.0.0",
|
|
86
88
|
"pagefind": "^1.3.0"
|
|
87
89
|
}
|
|
88
90
|
}
|