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

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/events.d.ts CHANGED
@@ -5,7 +5,7 @@ export declare const SUBSCRIBE_EVENTS: {
5
5
  readonly SHOW: "vne:gallery:show";
6
6
  readonly HIDE: "vne:gallery:hide";
7
7
  readonly PAGE_SET: "vne:gallery:page_set";
8
- readonly TYPE_SET: "vne:gallery:type_set";
8
+ readonly TAB_SET: "vne:gallery:tab_set";
9
9
  readonly UPDATE: "vne:gallery:update";
10
10
  readonly PRELOAD: "vne:gallery:preload";
11
11
  readonly CHOOSE: "vne:gallery:choose";
package/dist/events.js CHANGED
@@ -5,7 +5,7 @@ export const SUBSCRIBE_EVENTS = {
5
5
  SHOW: "vne:gallery:show",
6
6
  HIDE: "vne:gallery:hide",
7
7
  PAGE_SET: "vne:gallery:page_set",
8
- TYPE_SET: "vne:gallery:type_set",
8
+ TAB_SET: "vne:gallery:tab_set",
9
9
  UPDATE: "vne:gallery:update",
10
10
  PRELOAD: "vne:gallery:preload",
11
11
  CHOOSE: "vne:gallery:choose",
package/dist/params.d.ts CHANGED
@@ -68,6 +68,7 @@ export type ViewProps = WidenViewProps<typeof VIEW_PROPS_DEFAULT>;
68
68
  export declare const VIEW_PROPS: ViewProps;
69
69
  export declare const ROWS: number;
70
70
  export declare const COLUMNS: number;
71
+ export declare const AUDIO_NAME: string;
71
72
  declare const PARAMS_DEFAULT: {
72
73
  TABS: GalleryTabs;
73
74
  BACKGROUND: "save";
@@ -117,6 +118,7 @@ declare const PARAMS_DEFAULT: {
117
118
  };
118
119
  ROWS: number;
119
120
  COLUMNS: number;
121
+ AUDIO_NAME: string;
120
122
  };
121
123
  export type Params = WidenViewProps<typeof PARAMS_DEFAULT>;
122
124
  export declare const PARAMS: Params;
package/dist/params.js CHANGED
@@ -25,6 +25,7 @@ const VIEW_PROPS_DEFAULT = {
25
25
  export const VIEW_PROPS = VIEW_PROPS_DEFAULT;
26
26
  export const ROWS = 3;
27
27
  export const COLUMNS = 3;
28
+ export const AUDIO_NAME = "";
28
29
  const PARAMS_DEFAULT = {
29
30
  TABS,
30
31
  BACKGROUND,
@@ -34,5 +35,6 @@ const PARAMS_DEFAULT = {
34
35
  VIEW_PROPS,
35
36
  ROWS,
36
37
  COLUMNS,
38
+ AUDIO_NAME,
37
39
  };
38
40
  export const PARAMS = PARAMS_DEFAULT;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vnejs/contracts.views.screens.gallery",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
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/events.ts CHANGED
@@ -6,7 +6,7 @@ export const SUBSCRIBE_EVENTS = {
6
6
  SHOW: "vne:gallery:show",
7
7
  HIDE: "vne:gallery:hide",
8
8
  PAGE_SET: "vne:gallery:page_set",
9
- TYPE_SET: "vne:gallery:type_set",
9
+ TAB_SET: "vne:gallery:tab_set",
10
10
  UPDATE: "vne:gallery:update",
11
11
  PRELOAD: "vne:gallery:preload",
12
12
  CHOOSE: "vne:gallery:choose",
package/src/params.ts CHANGED
@@ -58,6 +58,7 @@ export const VIEW_PROPS: ViewProps = VIEW_PROPS_DEFAULT;
58
58
 
59
59
  export const ROWS: number = 3;
60
60
  export const COLUMNS: number = 3;
61
+ export const AUDIO_NAME: string = "";
61
62
 
62
63
  const PARAMS_DEFAULT = {
63
64
  TABS,
@@ -68,6 +69,7 @@ const PARAMS_DEFAULT = {
68
69
  VIEW_PROPS,
69
70
  ROWS,
70
71
  COLUMNS,
72
+ AUDIO_NAME,
71
73
  };
72
74
 
73
75
  export type Params = WidenViewProps<typeof PARAMS_DEFAULT>;