@vnejs/contracts.views.screens.gallery 0.2.3 → 0.2.5
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/index.d.ts +1 -1
- package/dist/params.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -8
- package/src/params.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export type PluginName = typeof PLUGIN_NAME;
|
|
|
6
6
|
export { SUBSCRIBE_EVENTS };
|
|
7
7
|
export type { SubscribeEvents } from "./events.js";
|
|
8
8
|
export { PARAMS };
|
|
9
|
-
export type { GalleryTab, GalleryTabContent, GalleryTabContentVariation, GalleryTabs, Params, ViewProps
|
|
9
|
+
export type { GalleryTab, GalleryTabContent, GalleryTabContentVariation, GalleryTabs, Params, ViewProps } from "./params.js";
|
|
10
10
|
declare module "@vnejs/shared" {
|
|
11
11
|
interface VnePluginEventsMap extends Record<typeof PLUGIN_NAME, typeof SUBSCRIBE_EVENTS> {
|
|
12
12
|
}
|
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
|
-
|
|
5
|
+
overlays: Record<string, string | number>;
|
|
6
6
|
check?: string;
|
|
7
7
|
};
|
|
8
8
|
export type GalleryTabContent = {
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -9,14 +9,7 @@ export type PluginName = typeof PLUGIN_NAME;
|
|
|
9
9
|
export { SUBSCRIBE_EVENTS };
|
|
10
10
|
export type { SubscribeEvents } from "./events.js";
|
|
11
11
|
export { PARAMS };
|
|
12
|
-
export type {
|
|
13
|
-
GalleryTab,
|
|
14
|
-
GalleryTabContent,
|
|
15
|
-
GalleryTabContentVariation,
|
|
16
|
-
GalleryTabs,
|
|
17
|
-
Params,
|
|
18
|
-
ViewProps,
|
|
19
|
-
} from "./params.js";
|
|
12
|
+
export type { GalleryTab, GalleryTabContent, GalleryTabContentVariation, GalleryTabs, Params, ViewProps } from "./params.js";
|
|
20
13
|
|
|
21
14
|
declare module "@vnejs/shared" {
|
|
22
15
|
interface VnePluginEventsMap extends Record<typeof PLUGIN_NAME, typeof SUBSCRIBE_EVENTS> {}
|
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
|
-
|
|
6
|
+
overlays: Record<string, string | number>;
|
|
7
7
|
check?: string;
|
|
8
8
|
};
|
|
9
9
|
|