ArgTypes
Before continuing it is recommended to checkout the GardenArgTypes
API Reference.
ArgTypes must have a matching @api
property exposed on the LWC component as they are designed to map to these values.
ArgTypes are defined in your LWC specific garden.config.js
file.
Directorylwc
DirectoryhelloWorldLwc
- garden.config.js
- helloWorldLwc.css
- helloWorldLwc.html
- helloWorldLwc.js
- …
Arg types define the @api
values for your LWC. These can be configured in a similar way to Storybooks ArgTypes.
ArgTypes Table
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. |
For more information, checkout the GardenArgTypes
API reference.
Example
Lets have a look at an example of using ArgTypes for a basic button component.
Directorylwc
Directorybutton
- garden.config.js
- button.css
- button.html
- button.js
- …