@beabee/beabee-common 1.15.0 → 1.15.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.
@@ -1,4 +1,5 @@
1
1
  export interface BaseCalloutComponentSchema {
2
+ id: string;
2
3
  type: string;
3
4
  key: string;
4
5
  label: string;
@@ -33,11 +34,12 @@ export interface RadioCalloutComponentSchema extends BaseCalloutComponentSchema
33
34
  }[];
34
35
  }
35
36
  export type CalloutComponentSchema = SelectCalloutComponentSchema | RadioCalloutComponentSchema | InputCalloutComponentSchema | NestableCalloutComponentSchema;
36
- interface CalloutNavigationSchema {
37
+ export interface CalloutNavigationSchema {
37
38
  showPrev: boolean;
38
39
  showNext: boolean;
39
40
  prevText: string;
40
41
  nextText: string;
42
+ nextSlideId: string;
41
43
  submitText: string;
42
44
  }
43
45
  export interface CalloutFormSchema {
@@ -47,4 +49,3 @@ export interface CalloutFormSchema {
47
49
  }
48
50
  export type CalloutResponseAnswer = string | boolean | number | null | undefined | Record<string, boolean>;
49
51
  export type CalloutResponseAnswers = Record<string, CalloutResponseAnswer>;
50
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beabee/beabee-common",
3
- "version": "1.15.0",
3
+ "version": "1.15.1",
4
4
  "description": "",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",