design.ts
Last updated
Was this helpful?
Last updated
Was this helpful?
This file defines section design settings available to users in the Instant Site Editor. If some design settings like text size or font, or element color should be modifiable, you must add these settings to the design.ts
file.
Each setting is defined as the element_id
object with its properties inside. You can add multiple elements of the same type
to the file. If some of the content settings should also have design settings, use the same element_id
to link them.
How it looks in the Editor:
Find the full list of design types and their configs below:
TEXT
Configuration for text elements.
type
string
Type of the setting that defines its functionality. In this case, has TEXT
value.
Works only with INPUTBOX
and TEXTAREA
content element types.
label
string
Element name. Use $label
to add translations.
colors
array of strings
An array of colors in the HEX code to choose from. Maximum: 7 colors.
enableAlphaColor
boolean
Defines if the element can be transparent.
enableAutoColor
boolean
Defines if Ecwid should select a matching color for the text automatically.
hideVisibleToggle
boolean
Defines if the element visibility toggle is available in the Editor.
sizes
array of numbers
An array of text sizes to choose from. Maximum: 7 sizes.
hideSize
boolean
Defines if the element size menu is hidden in the Editor. Set true
to hide.
defaults
object
Default element settings applied when users install a section.
The defaults
object contains the following fields:
font
string
Default text font. We recommend leaving global.fontFamily.body
here to match the current store font.
size
number
Default text size.
bold
boolean
Defines if the text is bold by default.
italic
boolean
Defines if the text is italicized by default.
color
string
Default text color in HEX code.
visible
boolean
Defines if the element is visible on the storefront.
Code example for 'design.ts':
BUTTON
Configuration for button element.
type
string
Type of the setting that defines its functionality. In this case, has BUTTON
value.
Works only with the BUTTON
content element type.
label
string
Element name. Use $label
to add translations.
colors
array of strings
An array of colors in the HEX code for the button background to choose from. Maximum: 7 colors.
enableAlphaColor
boolean
Defines if the element can be transparent.
enableAutoColor
boolean
Defines if Ecwid should select a matching color for the button automatically.
hideVisibleToggle
boolean
Defines if the element visibility toggle is available in the Editor.
hideSize
boolean
Defines if the element size menu is hidden in the Editor. Set true
to hide.
defaults
object
Default element settings applied when users install a section.
The defaults
object contains the following fields:
appearance
string
Default button appearance. Available values: SOLID
, OUTLINE
, TEXT
.
shape
string
Default button shape. Available values: PILL
, RECTANGLE
, ROUND_CORNER
.
size
string
Default button size. Available values: SMALL
, MEDIUM
, LARGE
.
font
string
Default text font. We recommend leaving global.fontFamily.body
here to match the current store font.
color
string
Default text color in HEX code.
visible
boolean
Defines if the element is visible on the storefront.
Code example for 'design.ts':
IMAGE
Configuration for image uploader element.
type
string
Type of the setting that defines its functionality. In this case, has IMAGE
value.
Works only with the IMAGE
content element type.
label
string
Element name. Use $label
to add translations.
colors
array of strings
An array of colors in the HEX code for the image background to choose from. Maximum: 7 colors.
enableAlphaColor
boolean
Defines if the element can be transparent.
hideVisibleToggle
boolean
Defines if the element visibility toggle is available in the Editor.
defaults
object
Default element settings applied when users install a section.
The defaults
object contains the following fields:
overlay
object
Default image overlay settings. Available settings: COLOR
, GRADIENT
, NONE
.
color
boolean
One (string
type) or two (array
with two strings inside) colors for default image overlay settings.
Code example for 'design.ts':
TOGGLE
Configuration for toggle element.
type
string
Type of the setting that defines its functionality. In this case, has TOGGLE
value.
Works only with the TOGGLE
content element type.
label
string
Element name. Use $label
to add translations.
description
string
Element description displayed in the Instant Site Editor under the element.
defaults
object
Default element settings applied when users install a section.
The defaults
object contains the following fields:
enabled
boolean
Defines of the toggle is enabled when users install the section. Set true
to enable.
Code example for 'design.ts':
SELECTBOX
Configuration for the "selectbox" element that creates a drop-down list in the Editor.
type
string
Type of the setting that defines its functionality. In this case, has SELECTBOX
value.
Works only with the SELECTBOX
content element type.
label
string
Element name. Use $label
to add translations.
description
string
Description under the drop-down.
options
array of objects
List of options available in the drop-down list.
defaults
object
Default element settings applied when users install a section.
The options
is an array where each object contains the following fields:
value
string
Option value.
label
string
Text label for the option value.
The defaults
object contains the following fields:
value
string
Default option value selected when users install a section.
Code example for 'design.ts':
BACKGROUND
Configuration for the section background which is not an element type defined in the 'content.ts' file.
type
string
Type of the setting that defines its functionality. In this case, has BACKGROUND
value.
Has no matching content element types.
label
string
Element name. Use $label
to add translations.
colors
array of strings
An array of colors in the HEX code for the background to choose from. Maximum: 7 colors.
enableAlphaColor
boolean
Defines if the element can be transparent.
enableAutoColor
boolean
Defines if Ecwid should select a matching color for the button automatically.
defaults
object
Default element settings applied when users install a section.
The defaults
object contains the following fields:
style
string
Background type. Available values: COLOR
(single color background) or GRADIENT
(background with gradient).
color
string/array
One (string
type) or two (array
with two strings inside) colors for default image overlay settings.
The background
object contains the following fields:
The gradient
object contains the following fields:
Code example for 'design.ts':