@vnejs/contracts.views.screens.gallery 0.2.3 → 0.2.4

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/dist/params.d.ts CHANGED
@@ -2,7 +2,7 @@ import type { PositionBoxProps, WidenViewProps } from "@vnejs/uis.react.position
2
2
  export type GalleryTabContentVariation = {
3
3
  layerChildType: string;
4
4
  name: string;
5
- parts: Record<string, string | number>;
5
+ overlays: Record<string, string | number>;
6
6
  check?: string;
7
7
  };
8
8
  export type GalleryTabContent = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vnejs/contracts.views.screens.gallery",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Contracts for @vnejs/plugins.views.screens.gallery",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/params.ts CHANGED
@@ -3,7 +3,7 @@ import type { PositionBoxProps, WidenViewProps } from "@vnejs/uis.react.position
3
3
  export type GalleryTabContentVariation = {
4
4
  layerChildType: string;
5
5
  name: string;
6
- parts: Record<string, string | number>;
6
+ overlays: Record<string, string | number>;
7
7
  check?: string;
8
8
  };
9
9