@beabee/beabee-common 1.10.18 → 1.10.19

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,14 +1,14 @@
1
- interface BaseCalloutComponentSchema {
1
+ export interface BaseCalloutComponentSchema {
2
2
  key: string;
3
3
  label?: string;
4
4
  input?: boolean;
5
5
  components?: CalloutComponentSchema[];
6
6
  [key: string]: unknown;
7
7
  }
8
- interface OtherCalloutComponentSchema extends BaseCalloutComponentSchema {
8
+ export interface OtherCalloutComponentSchema extends BaseCalloutComponentSchema {
9
9
  type: "button" | "checkbox" | "number" | "password" | "textfield" | "textarea";
10
10
  }
11
- interface SelectCalloutComponentSchema extends BaseCalloutComponentSchema {
11
+ export interface SelectCalloutComponentSchema extends BaseCalloutComponentSchema {
12
12
  type: "select";
13
13
  data: {
14
14
  values: {
@@ -17,7 +17,7 @@ interface SelectCalloutComponentSchema extends BaseCalloutComponentSchema {
17
17
  }[];
18
18
  };
19
19
  }
20
- interface RadioCalloutComponentSchema extends BaseCalloutComponentSchema {
20
+ export interface RadioCalloutComponentSchema extends BaseCalloutComponentSchema {
21
21
  type: "radio" | "selectboxes";
22
22
  values: {
23
23
  label: string;
@@ -28,4 +28,3 @@ export type CalloutComponentSchema = SelectCalloutComponentSchema | RadioCallout
28
28
  export interface CalloutFormSchema {
29
29
  components: CalloutComponentSchema[];
30
30
  }
31
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beabee/beabee-common",
3
- "version": "1.10.18",
3
+ "version": "1.10.19",
4
4
  "description": "",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",