@toptal/picasso-shared 13.1.0 → 13.1.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 (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/picasso-shared",
3
- "version": "13.1.0",
3
+ "version": "13.1.1",
4
4
  "description": "Shared types, utils for Picasso internal usage",
5
5
  "author": "Toptal",
6
6
  "homepage": "https://github.com/toptal/picasso/tree/master/packages/picasso-shared#readme",
package/types.d.ts CHANGED
@@ -8,7 +8,7 @@ export interface BaseProps {
8
8
  /** Style applied to root element */
9
9
  style?: CSSProperties;
10
10
  'data-testid'?: string;
11
- 'data-private'?: string;
11
+ 'data-private'?: boolean;
12
12
  }
13
13
  export interface JssProps {
14
14
  classes: Classes;