Component Configuration
Each LWC may choose to bring its own custom garden.config.js
file. This should be placed in the LWC folder.
argTypes
type: GardenArgType
Arg types define the @api
values for your LWC. These can be configured in a similar way to Storybooks ArgTypes.
Data Type | Control Type | Description |
---|---|---|
boolean | boolean | Provides a single checkbox to toggle between true (checked) and false (un-checked). |
enum | checkbox | Provides a set of stacked checkboxes for selecting multiple options. Values are stored as a semi-colon (; ) separated string. |
checkbox-inline | Provides a set of inlined checkboxes for selecting multiple options. Values are stored as a semi-colon (; ) separated string. | |
radio | Provides a set of stacked radio buttons for selecting a single option. | |
radio-inline | Provides a set of inlined radio buttons for selecting a single option. | |
select | Provides a select to choose a single value from the options. | |
number | number | Provides a numeric input to allow any numeric value to be set. |
range | Provides a range slider to include restrict the numeric value between two values. | |
string | text | Provides a freeform text input. |
color | Provides a color picker to choose color values. |
min
type: number
When type is number
or range
, sets the minimum allowed value.
max
type: number
When type is number
or range
, sets the maximum allowed value.
step
type: number
When type is number
or range
, sets the granularity allowed when
options
type: GardenOption[]
When data type is enum (checkbox
, checkbox-inline
, radio
, radio-inline
, select
), sets the options to select from.
GardenArgType
GardenOption
slots
type: string[]
Array of slot names the component has. default
should be used for default (non-named) slots. This is an optional configuration. If not provided, your HTML file will be analyzed for slot names.
slotComponents
type: { [key: string]: () => Promise<any> }
Configuration object of components to use for their respective slot names. e.g.