lf-pagebuilder-vue 0.0.94 → 0.0.96

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.
@@ -10,6 +10,7 @@ interface ListItemsDef {
10
10
  options?: string[];
11
11
  options_labels?: string[];
12
12
  example_value?: string | boolean;
13
+ help?: string;
13
14
  }>;
14
15
  }
15
16
  interface ComponentField {
@@ -17,6 +18,7 @@ interface ComponentField {
17
18
  label: string;
18
19
  type: 'text' | 'textArea' | 'image' | 'video' | 'select' | 'boolean' | 'list';
19
20
  mandatory?: boolean;
21
+ help?: string;
20
22
  example_value?: string | boolean | any[];
21
23
  options?: string[];
22
24
  image_cuts?: Array<{
@@ -4,6 +4,7 @@ interface ComponentField {
4
4
  label: string;
5
5
  type: 'text' | 'textArea' | 'image' | 'video' | 'select' | 'boolean' | 'list';
6
6
  mandatory?: boolean;
7
+ help?: string;
7
8
  example_value?: string | boolean | any[];
8
9
  mappedTo?: string;
9
10
  options?: string[];
@@ -77,6 +78,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
77
78
  };
78
79
  ateneaToken: StringConstructor;
79
80
  ledithorAiTools: PropType<string[]>;
81
+ previewWidth: StringConstructor;
80
82
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
81
83
  object: {
82
84
  type: PropType<ComponentObject>;
@@ -100,6 +102,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
100
102
  };
101
103
  ateneaToken: StringConstructor;
102
104
  ledithorAiTools: PropType<string[]>;
105
+ previewWidth: StringConstructor;
103
106
  }>> & Readonly<{}>, {
104
107
  isComponentMode: boolean;
105
108
  fullwidthMode: boolean;
@@ -5,6 +5,7 @@ interface SubField {
5
5
  options?: string[];
6
6
  options_labels?: string[];
7
7
  example_value?: string | boolean;
8
+ help?: string;
8
9
  }
9
10
  interface ItemsDef {
10
11
  type: 'text' | 'select' | 'textArea' | 'boolean' | 'object';