@claspo/common 6.0.6 → 6.0.7
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/component-manifest/ComponentManifest.interface.d.ts +3 -144
- package/component-manifest/ComponentManifest.interface.js +1 -1
- package/component-manifest/ContextMenuManifest.interface.d.ts +28 -0
- package/component-manifest/ContextMenuManifest.interface.js +1 -0
- package/component-manifest/FloatingControlManifest.interface.d.ts +62 -0
- package/component-manifest/FloatingControlManifest.interface.js +1 -0
- package/component-manifest/PropertyPaneManifest.interface.d.ts +402 -0
- package/component-manifest/PropertyPaneManifest.interface.js +1 -0
- package/package.json +1 -1
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { ClBaseComponentI, ClBaseComponentPropsI, ClComponentType } from '../document/Document.interface';
|
|
2
|
+
import { BaseContextMenuManifestModelI } from './ContextMenuManifest.interface';
|
|
3
|
+
import { BaseFloatingControlManifestModelI } from './FloatingControlManifest.interface';
|
|
4
|
+
import { PropertyPaneManifestI } from './PropertyPaneManifest.interface';
|
|
2
5
|
export interface ComponentManifestI {
|
|
3
6
|
name: string;
|
|
4
7
|
componentType: ClComponentType;
|
|
@@ -59,150 +62,6 @@ export interface ComponentManifestMetaDescriptionI {
|
|
|
59
62
|
export interface ComponentManifestDescriptionLabelItemI {
|
|
60
63
|
[languageCode: string]: string;
|
|
61
64
|
}
|
|
62
|
-
export interface BaseContextMenuManifestModelI {
|
|
63
|
-
type: ContextMenuManifestModelType;
|
|
64
|
-
name?: ContextMenuManifestModelName;
|
|
65
|
-
propPath?: string[];
|
|
66
|
-
element?: string;
|
|
67
|
-
elementProp?: string;
|
|
68
|
-
elementSubProp?: string;
|
|
69
|
-
children?: BaseContextMenuManifestModelI[];
|
|
70
|
-
}
|
|
71
|
-
export interface BaseFloatingControlManifestModelI {
|
|
72
|
-
type: FloatingControlManifestModelType;
|
|
73
|
-
name?: FloatingControlManifestModelName;
|
|
74
|
-
propPath?: string[];
|
|
75
|
-
element?: string;
|
|
76
|
-
elementProp?: string;
|
|
77
|
-
elementSubProp?: string;
|
|
78
|
-
propPathCondition?: string;
|
|
79
|
-
children?: BaseFloatingControlManifestModelI[];
|
|
80
|
-
params?: any;
|
|
81
|
-
}
|
|
82
|
-
export declare enum ContextMenuManifestModelType {
|
|
83
|
-
GROUP = "GROUP",
|
|
84
|
-
CONTROL = "CONTROL"
|
|
85
|
-
}
|
|
86
|
-
export declare enum ContextMenuManifestModelName {
|
|
87
|
-
FOCUS_PARENT_COMPONENT = "FOCUS_PARENT_COMPONENT",
|
|
88
|
-
COMPONENT_OPERATIONS = "COMPONENT_OPERATIONS",
|
|
89
|
-
BRING_BACK_FORWARD = "BRING_BACK_FORWARD"
|
|
90
|
-
}
|
|
91
|
-
export declare enum FloatingControlManifestModelType {
|
|
92
|
-
GROUP = "GROUP",
|
|
93
|
-
CONTROL = "CONTROL"
|
|
94
|
-
}
|
|
95
|
-
export declare enum FloatingControlManifestModelName {
|
|
96
|
-
SIZE = "SIZE",
|
|
97
|
-
MARGIN = "MARGIN",
|
|
98
|
-
PARENT_ALIGNMENT = "PARENT_ALIGNMENT",
|
|
99
|
-
CONTAINER_PADDING = "CONTAINER_PADDING",
|
|
100
|
-
SLIDES_MANAGEMENT = "SLIDES_MANAGEMENT",
|
|
101
|
-
COLUMNS_PROPORTIONS = "COLUMNS_PROPORTIONS",
|
|
102
|
-
VIEW_SWITCHER = "VIEW_SWITCHER",
|
|
103
|
-
ROTATION = "ROTATION"
|
|
104
|
-
}
|
|
105
|
-
export interface PropertyPaneManifestI {
|
|
106
|
-
content: BasePropertyPaneManifestModelI[];
|
|
107
|
-
general?: BasePropertyPaneManifestModelI[];
|
|
108
|
-
header?: BasePropertyPaneManifestModelI[];
|
|
109
|
-
}
|
|
110
|
-
export interface BasePropertyPaneManifestModelI {
|
|
111
|
-
type: PropertyPaneManifestModelType;
|
|
112
|
-
name?: ClPropertyPaneManifestModelName;
|
|
113
|
-
propPath?: string[];
|
|
114
|
-
element?: string;
|
|
115
|
-
elementProp?: string;
|
|
116
|
-
elementSubProp?: string;
|
|
117
|
-
elementSubProps?: string[];
|
|
118
|
-
propPathCondition?: string;
|
|
119
|
-
params?: any;
|
|
120
|
-
displayCondition?: string;
|
|
121
|
-
hideSyncSelect?: boolean;
|
|
122
|
-
syncSelectDisplayCondition?: string;
|
|
123
|
-
syncSelectOptions?: Array<string | null>;
|
|
124
|
-
label?: string;
|
|
125
|
-
disableControlIfPropPathIsFalsy?: string[];
|
|
126
|
-
disableControlIfPropPathMatchValue?: DisableControlIfPropPathMatchValueParamsI;
|
|
127
|
-
disableValidation?: boolean;
|
|
128
|
-
children?: BasePropertyPaneManifestModelI[];
|
|
129
|
-
transformers?: TransformerConfig[];
|
|
130
|
-
mode?: string;
|
|
131
|
-
}
|
|
132
|
-
export declare enum PropertyPaneManifestModelType {
|
|
133
|
-
CONTROL = "CONTROL",
|
|
134
|
-
TEXT = "TEXT",
|
|
135
|
-
GROUP = "GROUP"
|
|
136
|
-
}
|
|
137
|
-
export declare enum ClPropertyPaneManifestModelName {
|
|
138
|
-
SIZE = "SIZE",
|
|
139
|
-
INDENTATION = "INDENTATION",
|
|
140
|
-
ALIGNMENT = "ALIGNMENT",
|
|
141
|
-
BACKGROUND = "BACKGROUND",
|
|
142
|
-
BACKDROP_FILTER = "BACKDROP_FILTER",
|
|
143
|
-
BACKGROUND_MARKER_SELECTED = "BACKGROUND_MARKER_SELECTED",
|
|
144
|
-
BORDERS = "BORDERS",
|
|
145
|
-
BOX_SHADOW = "BOX_SHADOW",
|
|
146
|
-
BORDER_RADIUS = "BORDER_RADIUS",
|
|
147
|
-
TEXT_PARAMS = "TEXT_PARAMS",
|
|
148
|
-
TEXT_INPUT = "TEXT_INPUT",
|
|
149
|
-
SWITCH = "SWITCH",
|
|
150
|
-
SWITCH_WITH_INPUT = "SWITCH_WITH_INPUT",
|
|
151
|
-
INPUT_VALIDATION = "INPUT_VALIDATION",
|
|
152
|
-
INPUT_LABEL = "INPUT_LABEL",
|
|
153
|
-
TEXT_COLOR = "TEXT_COLOR",
|
|
154
|
-
SELECT = "SELECT",
|
|
155
|
-
RADIO_BUTTONS = "RADIO_BUTTONS",
|
|
156
|
-
IMAGE_SOURCES = "IMAGE_SOURCES",
|
|
157
|
-
COUNTRY_PHONE_SELECT = "COUNTRY_PHONE_SELECT",
|
|
158
|
-
HOVER_ANIMATION = "HOVER_ANIMATION",
|
|
159
|
-
ACTIONS = "ACTIONS",
|
|
160
|
-
NPS_ACTIONS = "NPS_ACTIONS",
|
|
161
|
-
DATEPICKER = "DATEPICKER",
|
|
162
|
-
DATEPICKER_COUNTDOWN_TIMER = "DATEPICKER_COUNTDOWN_TIMER",
|
|
163
|
-
DISPLAY = "DISPLAY",
|
|
164
|
-
COMPONENT_OPTIONS = "COMPONENT_OPTIONS",
|
|
165
|
-
COLOR_SELECT = "COLOR_SELECT",
|
|
166
|
-
FLOATING_COMPONENT_POSITION = "FLOATING_COMPONENT_POSITION",
|
|
167
|
-
LOOP_ANIMATION = "LOOP_ANIMATION",
|
|
168
|
-
VIDEO_URL = "VIDEO_URL",
|
|
169
|
-
VIDEO_CUSTOM_COVER = "VIDEO_CUSTOM_COVER",
|
|
170
|
-
WIDGET_LAYOUT_SELECT = "WIDGET_LAYOUT_SELECT",
|
|
171
|
-
MULTIPLE_INPUT_SIZE = "MULTIPLE_INPUT_SIZE",
|
|
172
|
-
DATE_FORMAT = "DATE_FORMAT",
|
|
173
|
-
ICON = "ICON",
|
|
174
|
-
PROMOCODE_ICON = "PROMOCODE_ICON",
|
|
175
|
-
ICON_SELECT = "ICON_SELECT",
|
|
176
|
-
TEXT_VISIBILITY = "TEXT_VISIBILITY",
|
|
177
|
-
SLIDER_SETTINGS = "SLIDER_SETTINGS",
|
|
178
|
-
SLIDER_MANAGE_SLIDES = "SLIDER_MANAGE_SLIDES",
|
|
179
|
-
SLIDER_MODES = "SLIDER_MODES",
|
|
180
|
-
SLIDER_NAVIGATION_BUTTONS = "SLIDER_NAVIGATION_BUTTONS",
|
|
181
|
-
SLIDER_INDICATION = "SLIDER_INDICATION",
|
|
182
|
-
SLIDER_SLIDESHOW_ANIMATION = "SLIDER_SLIDESHOW_ANIMATION",
|
|
183
|
-
INTEGRATION_FIELD_MAPPING = "INTEGRATION_FIELD_MAPPING",
|
|
184
|
-
SUPPORTED_LANGUAGES = "SUPPORTED_LANGUAGES",
|
|
185
|
-
LIST_POSITION = "LIST_POSITION",
|
|
186
|
-
SOCIAL_ICON_SIZE = "SOCIAL_ICON_SIZE",
|
|
187
|
-
SOCIAL_TYPE_AND_ICON_SELECT = "SOCIAL_TYPE_AND_ICON_SELECT",
|
|
188
|
-
COLUMNS = "COLUMNS",
|
|
189
|
-
INSERT_BLOCK = "INSERT_BLOCK",
|
|
190
|
-
NUMBER_INPUT = "NUMBER_INPUT",
|
|
191
|
-
PRIZE_SETTINGS = "PRIZE_SETTINGS",
|
|
192
|
-
ROOT_COMPONENT_SELECT = "ROOT_COMPONENT_SELECT",
|
|
193
|
-
FEEDBACK_TYPE = "FEEDBACK_TYPE",
|
|
194
|
-
FEEDBACK_ICONS_SELECT = "FEEDBACK_ICONS_SELECT",
|
|
195
|
-
FEEDBACK_ACTIONS = "FEEDBACK_ACTIONS",
|
|
196
|
-
FLOATING_BOX_POSITION = "FLOATING_BOX_POSITION"
|
|
197
|
-
}
|
|
198
|
-
export interface DisableControlIfPropPathMatchValueParamsI {
|
|
199
|
-
propPath: string[];
|
|
200
|
-
value: any;
|
|
201
|
-
}
|
|
202
|
-
export interface TransformerConfig<TParams = undefined> {
|
|
203
|
-
name: string;
|
|
204
|
-
params?: TParams;
|
|
205
|
-
}
|
|
206
65
|
export interface AutoContrastI {
|
|
207
66
|
master: AutoContrastMemberI;
|
|
208
67
|
slave: AutoContrastMemberI;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export var ManifestMappingType;!function(T){T.TEXT="TEXT",T.TEXT_AREA="TEXT_AREA",T.INTEGER="INTEGER",T.FLOAT="FLOAT",T.SELECT="SELECT",T.CHECKBOX_LIST="CHECKBOX_LIST",T.CHECKBOX="CHECKBOX",T.DATE="DATE",T.DATE_TIME="DATE_TIME"}(ManifestMappingType||(ManifestMappingType={}));
|
|
1
|
+
export var ManifestMappingType;!function(T){T.TEXT="TEXT",T.TEXT_AREA="TEXT_AREA",T.INTEGER="INTEGER",T.FLOAT="FLOAT",T.SELECT="SELECT",T.CHECKBOX_LIST="CHECKBOX_LIST",T.CHECKBOX="CHECKBOX",T.DATE="DATE",T.DATE_TIME="DATE_TIME"}(ManifestMappingType||(ManifestMappingType={}));
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ClComponentType } from '../document/Document.interface';
|
|
2
|
+
export interface BaseContextMenuManifestModelI {
|
|
3
|
+
type: ContextMenuManifestModelType;
|
|
4
|
+
name?: ContextMenuManifestModelName;
|
|
5
|
+
propPath?: string[];
|
|
6
|
+
element?: string;
|
|
7
|
+
elementProp?: string;
|
|
8
|
+
elementSubProp?: string;
|
|
9
|
+
children?: BaseContextMenuManifestModelI[];
|
|
10
|
+
}
|
|
11
|
+
export declare enum ContextMenuManifestModelType {
|
|
12
|
+
GROUP = "GROUP",
|
|
13
|
+
CONTROL = "CONTROL"
|
|
14
|
+
}
|
|
15
|
+
export declare enum ContextMenuManifestModelName {
|
|
16
|
+
FOCUS_PARENT_COMPONENT = "FOCUS_PARENT_COMPONENT",
|
|
17
|
+
COMPONENT_OPERATIONS = "COMPONENT_OPERATIONS",
|
|
18
|
+
BRING_BACK_FORWARD = "BRING_BACK_FORWARD"
|
|
19
|
+
}
|
|
20
|
+
export interface GroupContextMenuManifestModelI extends BaseContextMenuManifestModelI {
|
|
21
|
+
children: BaseContextMenuManifestModelI[];
|
|
22
|
+
}
|
|
23
|
+
export interface FocusParentComponentContextMenuManifestModelI extends BaseContextMenuManifestModelI {
|
|
24
|
+
params?: FocusParentComponentContextMenuManifestParamsI;
|
|
25
|
+
}
|
|
26
|
+
export interface FocusParentComponentContextMenuManifestParamsI {
|
|
27
|
+
hideForEntryType: ClComponentType;
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export var ContextMenuManifestModelType;!function(e){e.GROUP="GROUP",e.CONTROL="CONTROL"}(ContextMenuManifestModelType||(ContextMenuManifestModelType={}));export var ContextMenuManifestModelName;!function(e){e.FOCUS_PARENT_COMPONENT="FOCUS_PARENT_COMPONENT",e.COMPONENT_OPERATIONS="COMPONENT_OPERATIONS",e.BRING_BACK_FORWARD="BRING_BACK_FORWARD"}(ContextMenuManifestModelName||(ContextMenuManifestModelName={}));
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
export interface BaseFloatingControlManifestModelI {
|
|
2
|
+
type: FloatingControlManifestModelType;
|
|
3
|
+
name?: FloatingControlManifestModelName;
|
|
4
|
+
propPath?: string[];
|
|
5
|
+
element?: string;
|
|
6
|
+
elementProp?: string;
|
|
7
|
+
elementSubProp?: string;
|
|
8
|
+
propPathCondition?: string;
|
|
9
|
+
children?: BaseFloatingControlManifestModelI[];
|
|
10
|
+
params?: any;
|
|
11
|
+
}
|
|
12
|
+
export declare enum FloatingControlManifestModelType {
|
|
13
|
+
GROUP = "GROUP",
|
|
14
|
+
CONTROL = "CONTROL"
|
|
15
|
+
}
|
|
16
|
+
export declare enum FloatingControlManifestModelName {
|
|
17
|
+
SIZE = "SIZE",
|
|
18
|
+
MARGIN = "MARGIN",
|
|
19
|
+
PARENT_ALIGNMENT = "PARENT_ALIGNMENT",
|
|
20
|
+
CONTAINER_PADDING = "CONTAINER_PADDING",
|
|
21
|
+
SLIDES_MANAGEMENT = "SLIDES_MANAGEMENT",
|
|
22
|
+
COLUMNS_PROPORTIONS = "COLUMNS_PROPORTIONS",
|
|
23
|
+
VIEW_SWITCHER = "VIEW_SWITCHER",
|
|
24
|
+
ROTATION = "ROTATION"
|
|
25
|
+
}
|
|
26
|
+
export interface GroupFloatingControlManifestModelI extends BaseFloatingControlManifestModelI {
|
|
27
|
+
children: BaseFloatingControlManifestModelI[];
|
|
28
|
+
}
|
|
29
|
+
export interface SizeFloatingControlManifestModelI extends BaseFloatingControlManifestModelI {
|
|
30
|
+
params?: {
|
|
31
|
+
width?: SizeDimensionFloatingControlManifestParamsI;
|
|
32
|
+
height?: SizeDimensionFloatingControlManifestParamsI;
|
|
33
|
+
rotation?: RotationFloatingControlManifestParamsI;
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
export interface SizeDimensionFloatingControlManifestParamsI {
|
|
37
|
+
hide?: boolean;
|
|
38
|
+
getValueFromElement?: string;
|
|
39
|
+
minValue?: number;
|
|
40
|
+
element?: string;
|
|
41
|
+
elementProp?: string;
|
|
42
|
+
propPath?: string;
|
|
43
|
+
}
|
|
44
|
+
export interface RotationFloatingControlManifestParamsI {
|
|
45
|
+
element?: string;
|
|
46
|
+
elementProp?: string;
|
|
47
|
+
}
|
|
48
|
+
export interface ColumnsProportionsFloatingControlManifestModelI extends BaseFloatingControlManifestModelI {
|
|
49
|
+
params?: ColumnsProportionsFloatingControlManifestParamsI;
|
|
50
|
+
}
|
|
51
|
+
export interface ColumnsProportionsFloatingControlManifestParamsI {
|
|
52
|
+
parent?: boolean;
|
|
53
|
+
}
|
|
54
|
+
export interface ViewSwitcherFloatingControlsManifestModelI extends BaseFloatingControlManifestModelI {
|
|
55
|
+
params: {
|
|
56
|
+
views: ViewSwitcherFloatingControlsManifestViewI[];
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
export interface ViewSwitcherFloatingControlsManifestViewI {
|
|
60
|
+
label: string;
|
|
61
|
+
value: string;
|
|
62
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export var FloatingControlManifestModelType;!function(N){N.GROUP="GROUP",N.CONTROL="CONTROL"}(FloatingControlManifestModelType||(FloatingControlManifestModelType={}));export var FloatingControlManifestModelName;!function(N){N.SIZE="SIZE",N.MARGIN="MARGIN",N.PARENT_ALIGNMENT="PARENT_ALIGNMENT",N.CONTAINER_PADDING="CONTAINER_PADDING",N.SLIDES_MANAGEMENT="SLIDES_MANAGEMENT",N.COLUMNS_PROPORTIONS="COLUMNS_PROPORTIONS",N.VIEW_SWITCHER="VIEW_SWITCHER",N.ROTATION="ROTATION"}(FloatingControlManifestModelName||(FloatingControlManifestModelName={}));
|
|
@@ -0,0 +1,402 @@
|
|
|
1
|
+
import { ClComponentType } from '../document/Document.interface';
|
|
2
|
+
export interface PropertyPaneManifestI {
|
|
3
|
+
content: BasePropertyPaneManifestModelI[];
|
|
4
|
+
general?: BasePropertyPaneManifestModelI[];
|
|
5
|
+
header?: BasePropertyPaneManifestModelI[];
|
|
6
|
+
}
|
|
7
|
+
export interface BasePropertyPaneManifestModelI {
|
|
8
|
+
type: PropertyPaneManifestModelType;
|
|
9
|
+
name?: ClPropertyPaneManifestModelName;
|
|
10
|
+
propPath?: string[];
|
|
11
|
+
element?: string;
|
|
12
|
+
elementProp?: string;
|
|
13
|
+
elementSubProp?: string;
|
|
14
|
+
elementSubProps?: string[];
|
|
15
|
+
propPathCondition?: string;
|
|
16
|
+
params?: any;
|
|
17
|
+
displayCondition?: string;
|
|
18
|
+
hideSyncSelect?: boolean;
|
|
19
|
+
syncSelectDisplayCondition?: string;
|
|
20
|
+
syncSelectOptions?: Array<string | null>;
|
|
21
|
+
label?: string;
|
|
22
|
+
disableControlIfPropPathIsFalsy?: string[];
|
|
23
|
+
disableControlIfPropPathMatchValue?: DisableControlIfPropPathMatchValueParamsI;
|
|
24
|
+
disableValidation?: boolean;
|
|
25
|
+
children?: BasePropertyPaneManifestModelI[];
|
|
26
|
+
transformers?: TransformerConfig[];
|
|
27
|
+
mode?: string;
|
|
28
|
+
}
|
|
29
|
+
export interface DisableControlIfPropPathMatchValueParamsI {
|
|
30
|
+
propPath: string[];
|
|
31
|
+
value: any;
|
|
32
|
+
}
|
|
33
|
+
export interface TransformerConfig<TParams = undefined> {
|
|
34
|
+
name: string;
|
|
35
|
+
params?: TParams;
|
|
36
|
+
}
|
|
37
|
+
export declare enum PropertyPaneManifestModelType {
|
|
38
|
+
CONTROL = "CONTROL",
|
|
39
|
+
TEXT = "TEXT",
|
|
40
|
+
GROUP = "GROUP"
|
|
41
|
+
}
|
|
42
|
+
export declare enum ClPropertyPaneManifestModelName {
|
|
43
|
+
SIZE = "SIZE",
|
|
44
|
+
INDENTATION = "INDENTATION",
|
|
45
|
+
ALIGNMENT = "ALIGNMENT",
|
|
46
|
+
BACKGROUND = "BACKGROUND",
|
|
47
|
+
BACKDROP_FILTER = "BACKDROP_FILTER",
|
|
48
|
+
BACKGROUND_MARKER_SELECTED = "BACKGROUND_MARKER_SELECTED",
|
|
49
|
+
BORDERS = "BORDERS",
|
|
50
|
+
BOX_SHADOW = "BOX_SHADOW",
|
|
51
|
+
BORDER_RADIUS = "BORDER_RADIUS",
|
|
52
|
+
TEXT_PARAMS = "TEXT_PARAMS",
|
|
53
|
+
TEXT_INPUT = "TEXT_INPUT",
|
|
54
|
+
SWITCH = "SWITCH",
|
|
55
|
+
SWITCH_WITH_INPUT = "SWITCH_WITH_INPUT",
|
|
56
|
+
INPUT_VALIDATION = "INPUT_VALIDATION",
|
|
57
|
+
INPUT_LABEL = "INPUT_LABEL",
|
|
58
|
+
TEXT_COLOR = "TEXT_COLOR",
|
|
59
|
+
SELECT = "SELECT",
|
|
60
|
+
RADIO_BUTTONS = "RADIO_BUTTONS",
|
|
61
|
+
IMAGE_SOURCES = "IMAGE_SOURCES",
|
|
62
|
+
COUNTRY_PHONE_SELECT = "COUNTRY_PHONE_SELECT",
|
|
63
|
+
HOVER_ANIMATION = "HOVER_ANIMATION",
|
|
64
|
+
ACTIONS = "ACTIONS",
|
|
65
|
+
NPS_ACTIONS = "NPS_ACTIONS",
|
|
66
|
+
DATEPICKER = "DATEPICKER",
|
|
67
|
+
DATEPICKER_COUNTDOWN_TIMER = "DATEPICKER_COUNTDOWN_TIMER",
|
|
68
|
+
DISPLAY = "DISPLAY",
|
|
69
|
+
COMPONENT_OPTIONS = "COMPONENT_OPTIONS",
|
|
70
|
+
COLOR_SELECT = "COLOR_SELECT",
|
|
71
|
+
FLOATING_COMPONENT_POSITION = "FLOATING_COMPONENT_POSITION",
|
|
72
|
+
LOOP_ANIMATION = "LOOP_ANIMATION",
|
|
73
|
+
VIDEO_URL = "VIDEO_URL",
|
|
74
|
+
VIDEO_CUSTOM_COVER = "VIDEO_CUSTOM_COVER",
|
|
75
|
+
WIDGET_LAYOUT_SELECT = "WIDGET_LAYOUT_SELECT",
|
|
76
|
+
MULTIPLE_INPUT_SIZE = "MULTIPLE_INPUT_SIZE",
|
|
77
|
+
DATE_FORMAT = "DATE_FORMAT",
|
|
78
|
+
ICON = "ICON",
|
|
79
|
+
PROMOCODE_ICON = "PROMOCODE_ICON",
|
|
80
|
+
ICON_SELECT = "ICON_SELECT",
|
|
81
|
+
TEXT_VISIBILITY = "TEXT_VISIBILITY",
|
|
82
|
+
SLIDER_SETTINGS = "SLIDER_SETTINGS",
|
|
83
|
+
SLIDER_MANAGE_SLIDES = "SLIDER_MANAGE_SLIDES",
|
|
84
|
+
SLIDER_MODES = "SLIDER_MODES",
|
|
85
|
+
SLIDER_NAVIGATION_BUTTONS = "SLIDER_NAVIGATION_BUTTONS",
|
|
86
|
+
SLIDER_INDICATION = "SLIDER_INDICATION",
|
|
87
|
+
SLIDER_SLIDESHOW_ANIMATION = "SLIDER_SLIDESHOW_ANIMATION",
|
|
88
|
+
INTEGRATION_FIELD_MAPPING = "INTEGRATION_FIELD_MAPPING",
|
|
89
|
+
SUPPORTED_LANGUAGES = "SUPPORTED_LANGUAGES",
|
|
90
|
+
LIST_POSITION = "LIST_POSITION",
|
|
91
|
+
SOCIAL_ICON_SIZE = "SOCIAL_ICON_SIZE",
|
|
92
|
+
SOCIAL_TYPE_AND_ICON_SELECT = "SOCIAL_TYPE_AND_ICON_SELECT",
|
|
93
|
+
COLUMNS = "COLUMNS",
|
|
94
|
+
INSERT_BLOCK = "INSERT_BLOCK",
|
|
95
|
+
NUMBER_INPUT = "NUMBER_INPUT",
|
|
96
|
+
PRIZE_SETTINGS = "PRIZE_SETTINGS",
|
|
97
|
+
ROOT_COMPONENT_SELECT = "ROOT_COMPONENT_SELECT",
|
|
98
|
+
FEEDBACK_TYPE = "FEEDBACK_TYPE",
|
|
99
|
+
FEEDBACK_ICONS_SELECT = "FEEDBACK_ICONS_SELECT",
|
|
100
|
+
FEEDBACK_ACTIONS = "FEEDBACK_ACTIONS",
|
|
101
|
+
FLOATING_BOX_POSITION = "FLOATING_BOX_POSITION"
|
|
102
|
+
}
|
|
103
|
+
export interface GroupPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
104
|
+
children: BasePropertyPaneManifestModelI[];
|
|
105
|
+
}
|
|
106
|
+
export interface BorderPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
107
|
+
params?: BorderPropertyPaneManifestParamsI;
|
|
108
|
+
}
|
|
109
|
+
export interface BorderPropertyPaneManifestParamsI {
|
|
110
|
+
minValue?: number;
|
|
111
|
+
maxValue?: number;
|
|
112
|
+
hideAdditionalParams?: boolean;
|
|
113
|
+
}
|
|
114
|
+
export interface BackgroundPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
115
|
+
params?: BackgroundPropertyPaneManifestParamsI;
|
|
116
|
+
}
|
|
117
|
+
export interface BackgroundPropertyPaneManifestParamsI {
|
|
118
|
+
label: string;
|
|
119
|
+
onlyColorSelection: boolean;
|
|
120
|
+
disableGradientSelection: boolean;
|
|
121
|
+
hideSwitch?: boolean;
|
|
122
|
+
property: string;
|
|
123
|
+
disabledColor?: string;
|
|
124
|
+
}
|
|
125
|
+
export interface TabPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
126
|
+
children: BasePropertyPaneManifestModelI[];
|
|
127
|
+
params: TabPropertyPaneManifestParamsI;
|
|
128
|
+
}
|
|
129
|
+
export interface TabPropertyPaneManifestParamsI {
|
|
130
|
+
label: string;
|
|
131
|
+
type?: TabPropertyPaneManifestType;
|
|
132
|
+
}
|
|
133
|
+
export declare enum TabPropertyPaneManifestType {
|
|
134
|
+
DESKTOP_STYLES = "DESKTOP_STYLES",
|
|
135
|
+
MOBILE_STYLES = "MOBILE_STYLES"
|
|
136
|
+
}
|
|
137
|
+
export interface TextPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
138
|
+
params: TextPropertyPaneManifestParamsI;
|
|
139
|
+
}
|
|
140
|
+
export interface TextPropertyPaneManifestParamsI {
|
|
141
|
+
text: string;
|
|
142
|
+
translateParams?: object;
|
|
143
|
+
type?: TextPropertyPaneManifestParamsType;
|
|
144
|
+
styles?: string[];
|
|
145
|
+
classes?: string[];
|
|
146
|
+
}
|
|
147
|
+
export declare enum TextPropertyPaneManifestParamsType {
|
|
148
|
+
SECONDARY = "SECONDARY"
|
|
149
|
+
}
|
|
150
|
+
export interface SizePropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
151
|
+
params: {
|
|
152
|
+
[key: string]: SizePropertyPaneManifestParamsI;
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
export interface SizePropertyPaneManifestParamsI {
|
|
156
|
+
options: SizePropertyPaneOption[];
|
|
157
|
+
minValue?: number;
|
|
158
|
+
element?: string;
|
|
159
|
+
elementProp?: string;
|
|
160
|
+
propPath?: string;
|
|
161
|
+
}
|
|
162
|
+
export declare enum SizePropertyPaneOption {
|
|
163
|
+
FIXED = "fixed",
|
|
164
|
+
FILL = "fill",
|
|
165
|
+
HUG = "hug"
|
|
166
|
+
}
|
|
167
|
+
export interface IndentationPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
168
|
+
params: IndentationPropertyPaneManifestParamsI;
|
|
169
|
+
}
|
|
170
|
+
export interface IndentationPropertyPaneManifestParamsI {
|
|
171
|
+
indentationType: IndentationPropertyPaneManifestType;
|
|
172
|
+
horizontalOnly?: boolean;
|
|
173
|
+
}
|
|
174
|
+
export declare enum IndentationPropertyPaneManifestType {
|
|
175
|
+
PADDING = "PADDING",
|
|
176
|
+
MARGIN = "MARGIN"
|
|
177
|
+
}
|
|
178
|
+
export interface HoverAnimationPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
179
|
+
params: HoverAnimationPropertyPaneManifestParamsI;
|
|
180
|
+
}
|
|
181
|
+
export interface HoverAnimationPropertyPaneManifestParamsI {
|
|
182
|
+
animationTypeProp: {
|
|
183
|
+
elementProp?: string;
|
|
184
|
+
propPath?: string[];
|
|
185
|
+
};
|
|
186
|
+
}
|
|
187
|
+
export interface ColorSelectPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
188
|
+
params: ColorSelectPropertyPaneManifestParamsI;
|
|
189
|
+
}
|
|
190
|
+
export interface ColorSelectPropertyPaneManifestParamsI {
|
|
191
|
+
label?: string;
|
|
192
|
+
validators?: BaseInputValidatorsI;
|
|
193
|
+
}
|
|
194
|
+
export interface BaseInputValidatorsI {
|
|
195
|
+
required: boolean;
|
|
196
|
+
min?: number;
|
|
197
|
+
max?: number;
|
|
198
|
+
}
|
|
199
|
+
export interface TextInputPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
200
|
+
params: TextInputPropertyPaneManifestParamsI;
|
|
201
|
+
}
|
|
202
|
+
export interface TextInputPropertyPaneManifestParamsI {
|
|
203
|
+
label?: string;
|
|
204
|
+
subLabel?: string;
|
|
205
|
+
description?: string;
|
|
206
|
+
placeholder?: string;
|
|
207
|
+
validators?: BaseInputValidatorsI;
|
|
208
|
+
defaultValue?: any;
|
|
209
|
+
transformers?: TransformerConfig[];
|
|
210
|
+
}
|
|
211
|
+
export interface VideoUrlPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
212
|
+
params: VideoUrlPropertyPaneManifestParamsI;
|
|
213
|
+
}
|
|
214
|
+
export interface VideoUrlPropertyPaneManifestParamsI {
|
|
215
|
+
label?: string;
|
|
216
|
+
description?: string;
|
|
217
|
+
placeholder?: string;
|
|
218
|
+
validators?: BaseInputValidatorsI;
|
|
219
|
+
}
|
|
220
|
+
export interface TextColorPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
221
|
+
params: TextColorPropertyPaneManifestParamsI;
|
|
222
|
+
}
|
|
223
|
+
export interface TextColorPropertyPaneManifestParamsI {
|
|
224
|
+
label?: string;
|
|
225
|
+
mode?: string;
|
|
226
|
+
}
|
|
227
|
+
export interface SwitchPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
228
|
+
params: SwitchPropertyPaneManifestParamsI;
|
|
229
|
+
}
|
|
230
|
+
export interface SwitchPropertyPaneManifestParamsI {
|
|
231
|
+
label: string;
|
|
232
|
+
description?: string;
|
|
233
|
+
tooltip?: string;
|
|
234
|
+
getValueMapper?: object;
|
|
235
|
+
setValueMapper?: object;
|
|
236
|
+
boldLabel?: boolean;
|
|
237
|
+
}
|
|
238
|
+
export interface SwitchWithInputPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
239
|
+
params: SwitchWithInputPropertyPaneManifestParamsI;
|
|
240
|
+
}
|
|
241
|
+
export interface SwitchWithInputPropertyPaneManifestParamsI {
|
|
242
|
+
label: string;
|
|
243
|
+
switchPropPath: string[];
|
|
244
|
+
inputPropPath: string[];
|
|
245
|
+
unitMeasure?: string;
|
|
246
|
+
minValue?: number;
|
|
247
|
+
maxValue?: number;
|
|
248
|
+
switchOnDependantSwitchByPropPath?: string[];
|
|
249
|
+
switchOffDependantSwitchByPropPath?: string[];
|
|
250
|
+
}
|
|
251
|
+
export interface DisplayPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
252
|
+
params: DisplayPropertyPaneManifestParamsI;
|
|
253
|
+
}
|
|
254
|
+
export interface DisplayPropertyPaneManifestParamsI {
|
|
255
|
+
label: string;
|
|
256
|
+
description?: string;
|
|
257
|
+
displayPropertyValue?: string;
|
|
258
|
+
}
|
|
259
|
+
export interface InputValidationPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
260
|
+
params: ValidationPropertyPaneManifestParamsI;
|
|
261
|
+
}
|
|
262
|
+
export interface ValidationPropertyPaneManifestParamsI {
|
|
263
|
+
validationPropPath: string[];
|
|
264
|
+
fieldTypePropPath: string[];
|
|
265
|
+
required: boolean;
|
|
266
|
+
options: SelectOptionI[];
|
|
267
|
+
validationErrors: any;
|
|
268
|
+
}
|
|
269
|
+
export interface SelectOptionI {
|
|
270
|
+
label: string;
|
|
271
|
+
value: any;
|
|
272
|
+
}
|
|
273
|
+
export interface SelectPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
274
|
+
params: SelectPropertyPaneManifestParamsI;
|
|
275
|
+
}
|
|
276
|
+
export interface SelectPropertyPaneManifestParamsI {
|
|
277
|
+
label: string;
|
|
278
|
+
options: SelectOptionI[];
|
|
279
|
+
overlayWidth?: number;
|
|
280
|
+
defaultValue?: any;
|
|
281
|
+
}
|
|
282
|
+
export interface TextStylesPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
283
|
+
params: TextStylesPropertyPaneManifestParamsI[];
|
|
284
|
+
}
|
|
285
|
+
export interface TextStylesPropertyPaneManifestParamsI {
|
|
286
|
+
label?: string;
|
|
287
|
+
element?: string;
|
|
288
|
+
showPlaceholderControl?: boolean;
|
|
289
|
+
hideTextAlign?: boolean;
|
|
290
|
+
hideStyleSelect?: boolean;
|
|
291
|
+
hideFontSize?: boolean;
|
|
292
|
+
fontSizePlaceholder?: string;
|
|
293
|
+
hideTextShadow?: boolean;
|
|
294
|
+
hideLetterSpacing?: boolean;
|
|
295
|
+
}
|
|
296
|
+
export interface RadioButtonsPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
297
|
+
params: RadioButtonsPropertyPaneManifestParamsI;
|
|
298
|
+
}
|
|
299
|
+
export interface RadioButtonsPropertyPaneManifestParamsI {
|
|
300
|
+
label: string;
|
|
301
|
+
options: SelectOptionI[];
|
|
302
|
+
reactToAnyStateChanges?: boolean;
|
|
303
|
+
}
|
|
304
|
+
export interface OptionsPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
305
|
+
params: OptionsPropertyPaneManifestParamsI;
|
|
306
|
+
}
|
|
307
|
+
export interface OptionsPropertyPaneManifestParamsI {
|
|
308
|
+
header?: string;
|
|
309
|
+
tooltip?: string;
|
|
310
|
+
origin?: boolean;
|
|
311
|
+
optionsPropPath: string[];
|
|
312
|
+
optionsAlphabeticSortPropPath: string[];
|
|
313
|
+
integrationNamePropPath: string[];
|
|
314
|
+
}
|
|
315
|
+
export interface DatepickerPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
316
|
+
params: DatepickerPropertyPaneManifestParamsI;
|
|
317
|
+
}
|
|
318
|
+
export interface DatepickerPropertyPaneManifestParamsI {
|
|
319
|
+
label: string;
|
|
320
|
+
showTime?: boolean;
|
|
321
|
+
placeholder?: boolean;
|
|
322
|
+
minDate?: string;
|
|
323
|
+
rawDate?: boolean;
|
|
324
|
+
}
|
|
325
|
+
export interface FloatingBoxPositionPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
326
|
+
params: FloatingBoxPositionPropertyPaneManifestParamsI;
|
|
327
|
+
}
|
|
328
|
+
export interface FloatingBoxPositionPropertyPaneManifestParamsI {
|
|
329
|
+
showAllControls?: boolean;
|
|
330
|
+
syncEnvSettingsUntilExplicitlyChanged?: boolean;
|
|
331
|
+
userActivityKey?: string;
|
|
332
|
+
}
|
|
333
|
+
export interface FloatingComponentPositionPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
334
|
+
params: FloatingComponentPositionPropertyPaneManifestParamsI;
|
|
335
|
+
}
|
|
336
|
+
export interface FloatingComponentPositionPropertyPaneManifestParamsI {
|
|
337
|
+
label: string;
|
|
338
|
+
x: number;
|
|
339
|
+
y: number;
|
|
340
|
+
}
|
|
341
|
+
export interface LoopAnimationPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
342
|
+
params: LoopAnimationPropertyPaneManifestParamsI;
|
|
343
|
+
}
|
|
344
|
+
export interface LoopAnimationPropertyPaneManifestParamsI {
|
|
345
|
+
label: string;
|
|
346
|
+
}
|
|
347
|
+
export interface ActionsPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
348
|
+
params: ActionsPropertyPaneManifestParamsI;
|
|
349
|
+
}
|
|
350
|
+
export interface ActionsPropertyPaneManifestParamsI {
|
|
351
|
+
showTitleCondition?: string;
|
|
352
|
+
hideSubmitActionCondition?: string;
|
|
353
|
+
hideGoToViewActionCondition?: string;
|
|
354
|
+
showRunGameActionCondition?: string;
|
|
355
|
+
origin?: boolean;
|
|
356
|
+
}
|
|
357
|
+
export interface IntegrationFieldMappingPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
358
|
+
params: IntegrationFieldMappingPropertyPaneManifestParamsI;
|
|
359
|
+
}
|
|
360
|
+
export interface IntegrationFieldMappingPropertyPaneManifestParamsI {
|
|
361
|
+
namePropPath: string[];
|
|
362
|
+
integrationNamePropPath: string[];
|
|
363
|
+
groupNamePropPath: string[];
|
|
364
|
+
fieldNamePropPath: string[];
|
|
365
|
+
fieldTypePropPath: string[];
|
|
366
|
+
validationPropPath: string[];
|
|
367
|
+
placeholderPropPath: string[];
|
|
368
|
+
labelPropPath: string[];
|
|
369
|
+
optionsPropPath: string[];
|
|
370
|
+
}
|
|
371
|
+
export interface InsertBlockPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
372
|
+
params: InsertBlockPropertyPaneManifestParamsI[];
|
|
373
|
+
}
|
|
374
|
+
export interface InsertBlockPropertyPaneManifestParamsI {
|
|
375
|
+
element: string;
|
|
376
|
+
label: string;
|
|
377
|
+
isLinkAvailable: boolean;
|
|
378
|
+
origin: boolean;
|
|
379
|
+
}
|
|
380
|
+
export interface IconSelectPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
381
|
+
params: IconSelectPaneManifestParamsI;
|
|
382
|
+
}
|
|
383
|
+
export interface IconSelectPaneManifestParamsI {
|
|
384
|
+
options: IconSelectOptionForPropertyPaneManifestI[];
|
|
385
|
+
label?: string;
|
|
386
|
+
excludeImageTypes?: string[];
|
|
387
|
+
enableCustomIcons?: boolean;
|
|
388
|
+
storageType?: string;
|
|
389
|
+
}
|
|
390
|
+
export interface IconSelectOptionForPropertyPaneManifestI {
|
|
391
|
+
icon: string;
|
|
392
|
+
value: any;
|
|
393
|
+
inlineSvg?: boolean;
|
|
394
|
+
}
|
|
395
|
+
export interface PrizeSettingsPropertyPaneManifestModelI extends BasePropertyPaneManifestModelI {
|
|
396
|
+
params?: PrizeSettingsPropertyPaneManifestParamsI;
|
|
397
|
+
}
|
|
398
|
+
export interface PrizeSettingsPropertyPaneManifestParamsI {
|
|
399
|
+
minOptions?: number;
|
|
400
|
+
linkedGamifiedComponentType?: ClComponentType | null;
|
|
401
|
+
prizeImageEnabled?: boolean;
|
|
402
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export var PropertyPaneManifestModelType;!function(T){T.CONTROL="CONTROL",T.TEXT="TEXT",T.GROUP="GROUP"}(PropertyPaneManifestModelType||(PropertyPaneManifestModelType={}));export var ClPropertyPaneManifestModelName;!function(T){T.SIZE="SIZE",T.INDENTATION="INDENTATION",T.ALIGNMENT="ALIGNMENT",T.BACKGROUND="BACKGROUND",T.BACKDROP_FILTER="BACKDROP_FILTER",T.BACKGROUND_MARKER_SELECTED="BACKGROUND_MARKER_SELECTED",T.BORDERS="BORDERS",T.BOX_SHADOW="BOX_SHADOW",T.BORDER_RADIUS="BORDER_RADIUS",T.TEXT_PARAMS="TEXT_PARAMS",T.TEXT_INPUT="TEXT_INPUT",T.SWITCH="SWITCH",T.SWITCH_WITH_INPUT="SWITCH_WITH_INPUT",T.INPUT_VALIDATION="INPUT_VALIDATION",T.INPUT_LABEL="INPUT_LABEL",T.TEXT_COLOR="TEXT_COLOR",T.SELECT="SELECT",T.RADIO_BUTTONS="RADIO_BUTTONS",T.IMAGE_SOURCES="IMAGE_SOURCES",T.COUNTRY_PHONE_SELECT="COUNTRY_PHONE_SELECT",T.HOVER_ANIMATION="HOVER_ANIMATION",T.ACTIONS="ACTIONS",T.NPS_ACTIONS="NPS_ACTIONS",T.DATEPICKER="DATEPICKER",T.DATEPICKER_COUNTDOWN_TIMER="DATEPICKER_COUNTDOWN_TIMER",T.DISPLAY="DISPLAY",T.COMPONENT_OPTIONS="COMPONENT_OPTIONS",T.COLOR_SELECT="COLOR_SELECT",T.FLOATING_COMPONENT_POSITION="FLOATING_COMPONENT_POSITION",T.LOOP_ANIMATION="LOOP_ANIMATION",T.VIDEO_URL="VIDEO_URL",T.VIDEO_CUSTOM_COVER="VIDEO_CUSTOM_COVER",T.WIDGET_LAYOUT_SELECT="WIDGET_LAYOUT_SELECT",T.MULTIPLE_INPUT_SIZE="MULTIPLE_INPUT_SIZE",T.DATE_FORMAT="DATE_FORMAT",T.ICON="ICON",T.PROMOCODE_ICON="PROMOCODE_ICON",T.ICON_SELECT="ICON_SELECT",T.TEXT_VISIBILITY="TEXT_VISIBILITY",T.SLIDER_SETTINGS="SLIDER_SETTINGS",T.SLIDER_MANAGE_SLIDES="SLIDER_MANAGE_SLIDES",T.SLIDER_MODES="SLIDER_MODES",T.SLIDER_NAVIGATION_BUTTONS="SLIDER_NAVIGATION_BUTTONS",T.SLIDER_INDICATION="SLIDER_INDICATION",T.SLIDER_SLIDESHOW_ANIMATION="SLIDER_SLIDESHOW_ANIMATION",T.INTEGRATION_FIELD_MAPPING="INTEGRATION_FIELD_MAPPING",T.SUPPORTED_LANGUAGES="SUPPORTED_LANGUAGES",T.LIST_POSITION="LIST_POSITION",T.SOCIAL_ICON_SIZE="SOCIAL_ICON_SIZE",T.SOCIAL_TYPE_AND_ICON_SELECT="SOCIAL_TYPE_AND_ICON_SELECT",T.COLUMNS="COLUMNS",T.INSERT_BLOCK="INSERT_BLOCK",T.NUMBER_INPUT="NUMBER_INPUT",T.PRIZE_SETTINGS="PRIZE_SETTINGS",T.ROOT_COMPONENT_SELECT="ROOT_COMPONENT_SELECT",T.FEEDBACK_TYPE="FEEDBACK_TYPE",T.FEEDBACK_ICONS_SELECT="FEEDBACK_ICONS_SELECT",T.FEEDBACK_ACTIONS="FEEDBACK_ACTIONS",T.FLOATING_BOX_POSITION="FLOATING_BOX_POSITION"}(ClPropertyPaneManifestModelName||(ClPropertyPaneManifestModelName={}));export var TabPropertyPaneManifestType;!function(T){T.DESKTOP_STYLES="DESKTOP_STYLES",T.MOBILE_STYLES="MOBILE_STYLES"}(TabPropertyPaneManifestType||(TabPropertyPaneManifestType={}));export var TextPropertyPaneManifestParamsType;!function(T){T.SECONDARY="SECONDARY"}(TextPropertyPaneManifestParamsType||(TextPropertyPaneManifestParamsType={}));export var SizePropertyPaneOption;!function(T){T.FIXED="fixed",T.FILL="fill",T.HUG="hug"}(SizePropertyPaneOption||(SizePropertyPaneOption={}));export var IndentationPropertyPaneManifestType;!function(T){T.PADDING="PADDING",T.MARGIN="MARGIN"}(IndentationPropertyPaneManifestType||(IndentationPropertyPaneManifestType={}));
|