@turquoisehealth/pit-viper 2.80.0 → 2.81.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turquoisehealth/pit-viper",
3
- "version": "2.80.0",
3
+ "version": "2.81.0",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {
@@ -17,6 +17,7 @@ import { GlobalDirectives } from 'vue';
17
17
  import { nextTick } from 'vue';
18
18
  import { OnCleanup } from '@vue/reactivity';
19
19
  import { PublicProps } from 'vue';
20
+ import { PvTextAreaVariant } from './types';
20
21
  import { Ref } from 'vue';
21
22
  import { ShallowRef } from 'vue';
22
23
  import { ShallowUnwrapRef } from 'vue';
@@ -1977,8 +1978,6 @@ declare interface PvTextareaProps {
1977
1978
  rows?: number;
1978
1979
  }
1979
1980
 
1980
- declare type PvTextAreaVariant = Extract<PvTextInputColors, "white" | "grey">;
1981
-
1982
1981
  declare const PvTextInputColors: readonly ["white", "grey"];
1983
1982
 
1984
1983
  declare type PvTextInputColors = (typeof PvTextInputColors)[number];
@@ -124,6 +124,7 @@ seriesFormatType: "none" | "currency" | "percent";
124
124
  isLoading: boolean;
125
125
  enableFocusView: boolean;
126
126
  minHeight: number;
127
+ translateNullValues: boolean;
127
128
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
128
129
  chartRef: CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
129
130
  options: {
@@ -159,6 +160,7 @@ declare interface PvChartProps {
159
160
  isLoading?: boolean;
160
161
  enableFocusView?: boolean;
161
162
  minHeight?: number;
163
+ translateNullValues?: boolean;
162
164
  }
163
165
 
164
166
  declare interface PvDataTableProps<T> {