@gxpl/sdk 0.0.20 → 0.0.21

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 (27) hide show
  1. package/lib/index.d.ts +0 -1
  2. package/lib/sdk/schemas/article/Article.schema.d.ts +6 -6
  3. package/lib/sdk/schemas/article/ItemBase.schema.d.ts +44 -4
  4. package/lib/sdk/schemas/article/ItemBase.schema.js +8 -1
  5. package/lib/sdk/schemas/article/RichTextItem.schema.d.ts +27 -2
  6. package/lib/sdk/schemas/article/Section.schema.d.ts +6 -6
  7. package/lib/sdk/schemas/project/Project.schema.d.ts +4 -1102
  8. package/lib/sdk/schemas/project/Project.schema.js +2 -27
  9. package/lib/sdk/types/article/Item.d.ts +0 -4
  10. package/lib/sdk/types/project/Project.d.ts +0 -3
  11. package/lib/sdk-nextjs/components/Page.js +2 -3
  12. package/lib/sdk-nextjs/components/items/CompoundItem/CompoundChild.d.ts +0 -1
  13. package/lib/sdk-nextjs/components/items/CompoundItem/CompoundChild.js +2 -2
  14. package/lib/sdk-nextjs/components/items/GroupItem/GroupItem.js +2 -2
  15. package/lib/sdk-nextjs/components/items/Item.d.ts +0 -2
  16. package/lib/sdk-nextjs/components/items/Item.js +3 -3
  17. package/lib/sdk-nextjs/interactions/useItemInteractionCtrl.d.ts +1 -1
  18. package/lib/sdk-nextjs/interactions/useItemInteractionCtrl.js +2 -5
  19. package/package.json +1 -1
  20. package/lib/sdk/types/project/FixedLayer.d.ts +0 -27
  21. package/lib/sdk/types/project/FixedLayer.js +0 -2
  22. package/lib/sdk-nextjs/components/fixedLayers/FixedLayer.d.ts +0 -8
  23. package/lib/sdk-nextjs/components/fixedLayers/FixedLayer.js +0 -34
  24. package/lib/sdk-nextjs/fixedLayers/FixedLayerTransitionsProvider.d.ts +0 -10
  25. package/lib/sdk-nextjs/fixedLayers/FixedLayerTransitionsProvider.js +0 -41
  26. package/lib/sdk-nextjs/fixedLayers/FixedLayerTransitionsRegistry.d.ts +0 -38
  27. package/lib/sdk-nextjs/fixedLayers/FixedLayerTransitionsRegistry.js +0 -164
package/lib/index.d.ts CHANGED
@@ -14,7 +14,6 @@ export type { ItemArea } from './sdk/types/article/ItemArea';
14
14
  export type { ItemState, ItemStateParams, StateParams, ItemStatesMap } from './sdk/types/article/ItemState';
15
15
  export type { Interaction, InteractionItemTrigger, InteractionScrollTrigger, InteractionState } from './sdk/types/article/Interaction';
16
16
  export type { Project } from './sdk/types/project/Project';
17
- export type { TFixedLayer, FixedLayerTransition, TransitionTiming } from './sdk/types/project/FixedLayer';
18
17
  export type { Meta } from './sdk/types/project/Meta';
19
18
  export type { KeyframeValueMap, KeyframeAny } from './sdk/types/keyframe/Keyframe';
20
19
  export type { CompoundSettings } from './sdk/types/article/CompoundSettings';
@@ -29,17 +29,17 @@ export declare const ArticleSchema: z.ZodObject<{
29
29
  position: z.ZodString;
30
30
  offsetX: z.ZodNullable<z.ZodNumber>;
31
31
  }, "strip", z.ZodTypeAny, {
32
- play: "on-click" | "auto";
33
32
  url: string;
34
33
  coverUrl: string | null;
34
+ play: "on-click" | "auto";
35
35
  position: string;
36
36
  type: "video";
37
37
  size: string;
38
38
  offsetX: number | null;
39
39
  }, {
40
- play: "on-click" | "auto";
41
40
  url: string;
42
41
  coverUrl: string | null;
42
+ play: "on-click" | "auto";
43
43
  position: string;
44
44
  type: "video";
45
45
  size: string;
@@ -75,9 +75,9 @@ export declare const ArticleSchema: z.ZodObject<{
75
75
  items: import("../../..").ItemAny[];
76
76
  name?: string | undefined;
77
77
  media?: {
78
- play: "on-click" | "auto";
79
78
  url: string;
80
79
  coverUrl: string | null;
80
+ play: "on-click" | "auto";
81
81
  position: string;
82
82
  type: "video";
83
83
  size: string;
@@ -101,9 +101,9 @@ export declare const ArticleSchema: z.ZodObject<{
101
101
  items: import("../../..").ItemAny[];
102
102
  name?: string | undefined;
103
103
  media?: {
104
- play: "on-click" | "auto";
105
104
  url: string;
106
105
  coverUrl: string | null;
106
+ play: "on-click" | "auto";
107
107
  position: string;
108
108
  type: "video";
109
109
  size: string;
@@ -232,9 +232,9 @@ export declare const ArticleSchema: z.ZodObject<{
232
232
  items: import("../../..").ItemAny[];
233
233
  name?: string | undefined;
234
234
  media?: {
235
- play: "on-click" | "auto";
236
235
  url: string;
237
236
  coverUrl: string | null;
237
+ play: "on-click" | "auto";
238
238
  position: string;
239
239
  type: "video";
240
240
  size: string;
@@ -283,9 +283,9 @@ export declare const ArticleSchema: z.ZodObject<{
283
283
  items: import("../../..").ItemAny[];
284
284
  name?: string | undefined;
285
285
  media?: {
286
- play: "on-click" | "auto";
287
286
  url: string;
288
287
  coverUrl: string | null;
288
+ play: "on-click" | "auto";
289
289
  position: string;
290
290
  type: "video";
291
291
  size: string;
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  import { AreaAnchor, DimensionMode } from '../../types/article/ItemArea';
3
- export declare const Link: z.ZodObject<{
3
+ export declare const Link: z.ZodUnion<[z.ZodObject<{
4
4
  url: z.ZodString;
5
5
  target: z.ZodString;
6
6
  }, "strip", z.ZodTypeAny, {
@@ -9,7 +9,22 @@ export declare const Link: z.ZodObject<{
9
9
  }, {
10
10
  url: string;
11
11
  target: string;
12
- }>;
12
+ }>, z.ZodObject<{
13
+ value: z.ZodString;
14
+ animation: z.ZodEnum<["fade", "slide", "reveal"]>;
15
+ duration: z.ZodNumber;
16
+ direction: z.ZodEnum<["north", "west", "south", "east"]>;
17
+ }, "strip", z.ZodTypeAny, {
18
+ value: string;
19
+ duration: number;
20
+ animation: "slide" | "fade" | "reveal";
21
+ direction: "north" | "east" | "south" | "west";
22
+ }, {
23
+ value: string;
24
+ duration: number;
25
+ animation: "slide" | "fade" | "reveal";
26
+ direction: "north" | "east" | "south" | "west";
27
+ }>]>;
13
28
  export declare const CompoundSettingsSchema: z.ZodObject<{
14
29
  positionAnchor: z.ZodNativeEnum<typeof AreaAnchor>;
15
30
  widthMode: z.ZodNativeEnum<typeof DimensionMode>;
@@ -60,7 +75,7 @@ export declare const ItemBaseSchema: z.ZodObject<{
60
75
  anchorSide?: import("../../types/article/ItemArea").AnchorSide | undefined;
61
76
  }>;
62
77
  hidden: z.ZodBoolean;
63
- link: z.ZodOptional<z.ZodObject<{
78
+ link: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
64
79
  url: z.ZodString;
65
80
  target: z.ZodString;
66
81
  }, "strip", z.ZodTypeAny, {
@@ -69,7 +84,22 @@ export declare const ItemBaseSchema: z.ZodObject<{
69
84
  }, {
70
85
  url: string;
71
86
  target: string;
72
- }>>;
87
+ }>, z.ZodObject<{
88
+ value: z.ZodString;
89
+ animation: z.ZodEnum<["fade", "slide", "reveal"]>;
90
+ duration: z.ZodNumber;
91
+ direction: z.ZodEnum<["north", "west", "south", "east"]>;
92
+ }, "strip", z.ZodTypeAny, {
93
+ value: string;
94
+ duration: number;
95
+ animation: "slide" | "fade" | "reveal";
96
+ direction: "north" | "east" | "south" | "west";
97
+ }, {
98
+ value: string;
99
+ duration: number;
100
+ animation: "slide" | "fade" | "reveal";
101
+ direction: "north" | "east" | "south" | "west";
102
+ }>]>>;
73
103
  compoundSettings: z.ZodOptional<z.ZodObject<{
74
104
  positionAnchor: z.ZodNativeEnum<typeof AreaAnchor>;
75
105
  widthMode: z.ZodNativeEnum<typeof DimensionMode>;
@@ -101,6 +131,11 @@ export declare const ItemBaseSchema: z.ZodObject<{
101
131
  link?: {
102
132
  url: string;
103
133
  target: string;
134
+ } | {
135
+ value: string;
136
+ duration: number;
137
+ animation: "slide" | "fade" | "reveal";
138
+ direction: "north" | "east" | "south" | "west";
104
139
  } | undefined;
105
140
  compoundSettings?: {
106
141
  positionAnchor: AreaAnchor;
@@ -125,6 +160,11 @@ export declare const ItemBaseSchema: z.ZodObject<{
125
160
  link?: {
126
161
  url: string;
127
162
  target: string;
163
+ } | {
164
+ value: string;
165
+ duration: number;
166
+ animation: "slide" | "fade" | "reveal";
167
+ direction: "north" | "east" | "south" | "west";
128
168
  } | undefined;
129
169
  compoundSettings?: {
130
170
  positionAnchor: AreaAnchor;
@@ -4,10 +4,17 @@ exports.ItemBaseSchema = exports.CompoundSettingsSchema = exports.Link = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const ItemArea_schema_1 = require("./ItemArea.schema");
6
6
  const ItemArea_1 = require("../../types/article/ItemArea");
7
- exports.Link = zod_1.z.object({
7
+ const UrlLinkSchema = zod_1.z.object({
8
8
  url: zod_1.z.string().min(1),
9
9
  target: zod_1.z.string().min(1)
10
10
  });
11
+ const ClickLinkSchema = zod_1.z.object({
12
+ value: zod_1.z.string().min(1),
13
+ animation: zod_1.z.enum(['fade', 'slide', 'reveal']),
14
+ duration: zod_1.z.number(),
15
+ direction: zod_1.z.enum(['north', 'west', 'south', 'east'])
16
+ });
17
+ exports.Link = zod_1.z.union([UrlLinkSchema, ClickLinkSchema]);
11
18
  exports.CompoundSettingsSchema = zod_1.z.object({
12
19
  positionAnchor: zod_1.z.nativeEnum(ItemArea_1.AreaAnchor),
13
20
  widthMode: zod_1.z.nativeEnum(ItemArea_1.DimensionMode),
@@ -71,7 +71,7 @@ export declare const RichTextItemSchema: z.ZodObject<{
71
71
  anchorSide?: import("../../..").AnchorSide | undefined;
72
72
  }>;
73
73
  hidden: z.ZodBoolean;
74
- link: z.ZodOptional<z.ZodObject<{
74
+ link: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
75
75
  url: z.ZodString;
76
76
  target: z.ZodString;
77
77
  }, "strip", z.ZodTypeAny, {
@@ -80,7 +80,22 @@ export declare const RichTextItemSchema: z.ZodObject<{
80
80
  }, {
81
81
  url: string;
82
82
  target: string;
83
- }>>;
83
+ }>, z.ZodObject<{
84
+ value: z.ZodString;
85
+ animation: z.ZodEnum<["fade", "slide", "reveal"]>;
86
+ duration: z.ZodNumber;
87
+ direction: z.ZodEnum<["north", "west", "south", "east"]>;
88
+ }, "strip", z.ZodTypeAny, {
89
+ value: string;
90
+ duration: number;
91
+ animation: "slide" | "fade" | "reveal";
92
+ direction: "north" | "east" | "south" | "west";
93
+ }, {
94
+ value: string;
95
+ duration: number;
96
+ animation: "slide" | "fade" | "reveal";
97
+ direction: "north" | "east" | "south" | "west";
98
+ }>]>>;
84
99
  compoundSettings: z.ZodOptional<z.ZodObject<{
85
100
  positionAnchor: z.ZodNativeEnum<typeof import("../../..").AreaAnchor>;
86
101
  widthMode: z.ZodNativeEnum<typeof import("../../..").DimensionMode>;
@@ -1168,6 +1183,11 @@ export declare const RichTextItemSchema: z.ZodObject<{
1168
1183
  link?: {
1169
1184
  url: string;
1170
1185
  target: string;
1186
+ } | {
1187
+ value: string;
1188
+ duration: number;
1189
+ animation: "slide" | "fade" | "reveal";
1190
+ direction: "north" | "east" | "south" | "west";
1171
1191
  } | undefined;
1172
1192
  compoundSettings?: {
1173
1193
  positionAnchor: import("../../..").AreaAnchor;
@@ -1355,6 +1375,11 @@ export declare const RichTextItemSchema: z.ZodObject<{
1355
1375
  link?: {
1356
1376
  url: string;
1357
1377
  target: string;
1378
+ } | {
1379
+ value: string;
1380
+ duration: number;
1381
+ animation: "slide" | "fade" | "reveal";
1382
+ direction: "north" | "east" | "south" | "west";
1358
1383
  } | undefined;
1359
1384
  compoundSettings?: {
1360
1385
  positionAnchor: import("../../..").AreaAnchor;
@@ -22,17 +22,17 @@ export declare const SectionMediaSchema: z.ZodDiscriminatedUnion<"type", [z.ZodO
22
22
  position: z.ZodString;
23
23
  offsetX: z.ZodNullable<z.ZodNumber>;
24
24
  }, "strip", z.ZodTypeAny, {
25
- play: "on-click" | "auto";
26
25
  url: string;
27
26
  coverUrl: string | null;
27
+ play: "on-click" | "auto";
28
28
  position: string;
29
29
  type: "video";
30
30
  size: string;
31
31
  offsetX: number | null;
32
32
  }, {
33
- play: "on-click" | "auto";
34
33
  url: string;
35
34
  coverUrl: string | null;
35
+ play: "on-click" | "auto";
36
36
  position: string;
37
37
  type: "video";
38
38
  size: string;
@@ -84,17 +84,17 @@ export declare const SectionSchema: z.ZodObject<{
84
84
  position: z.ZodString;
85
85
  offsetX: z.ZodNullable<z.ZodNumber>;
86
86
  }, "strip", z.ZodTypeAny, {
87
- play: "on-click" | "auto";
88
87
  url: string;
89
88
  coverUrl: string | null;
89
+ play: "on-click" | "auto";
90
90
  position: string;
91
91
  type: "video";
92
92
  size: string;
93
93
  offsetX: number | null;
94
94
  }, {
95
- play: "on-click" | "auto";
96
95
  url: string;
97
96
  coverUrl: string | null;
97
+ play: "on-click" | "auto";
98
98
  position: string;
99
99
  type: "video";
100
100
  size: string;
@@ -130,9 +130,9 @@ export declare const SectionSchema: z.ZodObject<{
130
130
  items: import("../../..").ItemAny[];
131
131
  name?: string | undefined;
132
132
  media?: {
133
- play: "on-click" | "auto";
134
133
  url: string;
135
134
  coverUrl: string | null;
135
+ play: "on-click" | "auto";
136
136
  position: string;
137
137
  type: "video";
138
138
  size: string;
@@ -156,9 +156,9 @@ export declare const SectionSchema: z.ZodObject<{
156
156
  items: import("../../..").ItemAny[];
157
157
  name?: string | undefined;
158
158
  media?: {
159
- play: "on-click" | "auto";
160
159
  url: string;
161
160
  coverUrl: string | null;
161
+ play: "on-click" | "auto";
162
162
  position: string;
163
163
  type: "video";
164
164
  size: string;