@sc-360-v2/storefront-cms-library 0.2.69 → 0.2.70
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/dist/builder.js +1 -1
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/types/builder/tools/element-edit/line.d.ts +71 -4
- package/package.json +1 -1
|
@@ -15,7 +15,9 @@ export declare enum LineSelectorKeysEnum {
|
|
|
15
15
|
ITEM_STYLE = "iconStyle",
|
|
16
16
|
SOCIAL_ICONS = "lineIcons",
|
|
17
17
|
SOCIAL_WIDGET = "lineWidget",
|
|
18
|
-
START_END_ICON = "startEndIcons"
|
|
18
|
+
START_END_ICON = "startEndIcons",
|
|
19
|
+
LINE_COLOR = "lineColor",
|
|
20
|
+
LINE_CORNERS = "lineCorners"
|
|
19
21
|
}
|
|
20
22
|
export interface SelectorKeys {
|
|
21
23
|
LAYOUT: string;
|
|
@@ -80,6 +82,12 @@ export declare const getDefaultData: () => {
|
|
|
80
82
|
propertyType: CMSElementEditTypes;
|
|
81
83
|
property: string;
|
|
82
84
|
};
|
|
85
|
+
lineThickness: {
|
|
86
|
+
value: number;
|
|
87
|
+
property: string;
|
|
88
|
+
unit: number;
|
|
89
|
+
propertyType: CMSElementEditTypes;
|
|
90
|
+
};
|
|
83
91
|
dash: {
|
|
84
92
|
value: string;
|
|
85
93
|
property: string;
|
|
@@ -129,14 +137,14 @@ export declare const getDefaultData: () => {
|
|
|
129
137
|
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
130
138
|
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
131
139
|
};
|
|
132
|
-
|
|
140
|
+
lineCorners: {
|
|
133
141
|
selectorKey: LineSelectorKeysEnum;
|
|
134
|
-
|
|
142
|
+
leftIcon: {
|
|
135
143
|
value: string;
|
|
136
144
|
property: string;
|
|
137
145
|
propertyType: CMSElementEditTypes;
|
|
138
146
|
};
|
|
139
|
-
|
|
147
|
+
rightIcon: {
|
|
140
148
|
value: string;
|
|
141
149
|
property: string;
|
|
142
150
|
propertyType: CMSElementEditTypes;
|
|
@@ -155,6 +163,65 @@ export declare const getDefaultData: () => {
|
|
|
155
163
|
propertyType: CMSElementEditTypes;
|
|
156
164
|
};
|
|
157
165
|
backgroundColor: CMSIBCommonInterface;
|
|
166
|
+
iconGap: {
|
|
167
|
+
leftIcon: {
|
|
168
|
+
value: string;
|
|
169
|
+
property: string;
|
|
170
|
+
propertyType: CMSElementEditTypes;
|
|
171
|
+
};
|
|
172
|
+
rightIcon: {
|
|
173
|
+
value: string;
|
|
174
|
+
property: string;
|
|
175
|
+
propertyType: CMSElementEditTypes;
|
|
176
|
+
};
|
|
177
|
+
lineColor: {
|
|
178
|
+
value: {
|
|
179
|
+
hex: string;
|
|
180
|
+
rgb: {
|
|
181
|
+
r: string;
|
|
182
|
+
g: string;
|
|
183
|
+
b: string;
|
|
184
|
+
a: number;
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
propertyType: CMSElementEditTypes;
|
|
188
|
+
parentRef: string;
|
|
189
|
+
};
|
|
190
|
+
size: {
|
|
191
|
+
value: string;
|
|
192
|
+
property: string;
|
|
193
|
+
unit: number;
|
|
194
|
+
propertyType: CMSElementEditTypes;
|
|
195
|
+
};
|
|
196
|
+
backgroundShape: {
|
|
197
|
+
value: string;
|
|
198
|
+
property: string;
|
|
199
|
+
unit: number;
|
|
200
|
+
propertyType: CMSElementEditTypes;
|
|
201
|
+
};
|
|
202
|
+
iconGap: {
|
|
203
|
+
value: string;
|
|
204
|
+
property: string;
|
|
205
|
+
unit: number;
|
|
206
|
+
propertyType: CMSElementEditTypes;
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
lineColor: {
|
|
211
|
+
selectorKey: LineSelectorKeysEnum;
|
|
212
|
+
lineColor: {
|
|
213
|
+
value: {
|
|
214
|
+
hex: string;
|
|
215
|
+
rgb: {
|
|
216
|
+
r: string;
|
|
217
|
+
g: string;
|
|
218
|
+
b: string;
|
|
219
|
+
a: number;
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
propertyType: CMSElementEditTypes;
|
|
223
|
+
parentRef: string;
|
|
224
|
+
};
|
|
158
225
|
};
|
|
159
226
|
};
|
|
160
227
|
};
|