Skip to content

Commit 9812eaa

Browse files
authored
docs: deprecate color setting and fix typos (#203)
1 parent 5fd5479 commit 9812eaa

35 files changed

+55
-52
lines changed

docs/classes/_pages_color_setting_d_.colorsetting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# ColorSetting
44

5-
NOT IMPLEMENTED
5+
**`deprecated`** Not currently implemented
66

77
## Methods
88

docs/classes/_pages_email_setting_d_.emailsetting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# EmailSetting
44

5-
An email setting creates an input box with a keyboard appropriate for the entry of email addresses
5+
An email setting creates an input box with a keyboard appropriate for the entry of email addresses.
66
```
77
section.emailSetting("emailAddress")
88
```

docs/classes/_pages_enum_setting_d_.enumsetting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ section.enumSetting('groupedEnum')
4747
{id:'red', name:'Red'},
4848
{id:'yellow', name:'Yellow'},
4949
{id:'blue', name:'Blue'}]},
50-
{name: 'primaryColors', options: [
50+
{name: 'secondaryColors', options: [
5151
{id:'green', name:'Green'},
5252
{id:'orange', name:'Orange'},
5353
{id:'purple', name:'Purple'}]},
@@ -213,7 +213,7 @@ ___
213213

214214
**multiple**(`value`: boolean): *[EnumSetting](_pages_enum_setting_d_.enumsetting.md)*
215215

216-
Specifies whether this device setting can have multiple values.
216+
Specifies whether this enum setting can have multiple values.
217217

218218
**Parameters:**
219219

docs/classes/_pages_image_setting_d_.imagesetting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# ImageSetting
44

5-
An image settings simply displays an image on the configuration page. There is no user input involved.
5+
An image setting simply displays an image on the configuration page. There is no user input involved.
66
```
77
section.imageSetting('banner')
88
.image('https://mysite/image.png')

docs/classes/_pages_images_setting_d_.imagessetting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# ImagesSetting
44

5-
An images settings displays a carousel of images on the configuration page. There is no user input involved.
5+
An images setting displays a carousel of images on the configuration page. There is no user input involved.
66
```
77
section.imageSetting('banner')
88
.images(['https://mysite/image.png', 'https://mysite/image2.png', 'https://mysite/image3.png')

docs/classes/_pages_link_setting_d_.linksetting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# LinkSetting
44

5-
A link setting display a hypertext link that opens an external web page in a browser window. It
5+
A link setting displays a hypertext link that opens an external web page in a browser window. It
66
does not replace the current configuration page window.
77
```
88
section.linkSetting('moreInfo')

docs/classes/_pages_mode_setting_d_.modesetting.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
# ModeSetting
44

5-
A device setting creates a control that allows the user to select one or more location modes. To allow the selection
5+
A mode setting creates a control that allows the user to select one or more location modes. To allow the selection
66
of only one mode:
77
```
88
section.modeSetting('targetMode')
99
```
10-
The allow the selection of more than one mode:
10+
To allow the selection of more than one mode:
1111
```
1212
section.modeSetting('permittedModes').multiple(true)
1313
```
@@ -100,7 +100,7 @@ ___
100100

101101
**multiple**(`boolean`: true): *[ModeSetting](_pages_mode_setting_d_.modesetting.md)*
102102

103-
Specifies whether this device setting can have multiple values.
103+
Specifies whether this mode setting can have multiple values.
104104

105105
**Parameters:**
106106

docs/classes/_pages_page_d_.page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ ___
8686

8787
**nextText**(`value`: string): *[Page](_pages_page_d_.page.md)*
8888

89-
Set the text of the next page link. Defaults to "Next"
89+
Set the text of the next page link (defaults to "Next"). Only applies if style is `SPLASH`
9090

9191
**Parameters:**
9292

docs/classes/_pages_page_setting_d_.pagesetting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# PageSetting
44

5-
A page setting create a link to another configuration page. Tapping on the link displays
5+
A page setting creates a link to another configuration page. Tapping on the link displays
66
the linked page.
77

88
## Methods

docs/classes/_pages_scene_setting_d_.scenesetting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# SceneSetting
44

5-
A scene setting display a control that allows one or more scenes to be selected.
5+
A scene setting displays a control that allows one or more scenes to be selected.
66
```
77
section.sceneSetting('selectedScene')
88
```
@@ -95,7 +95,7 @@ ___
9595

9696
**multiple**(`value`: true): *[SceneSetting](_pages_scene_setting_d_.scenesetting.md)*
9797

98-
Specifies whether this device setting can have multiple values.
98+
Specifies whether this scene setting can have multiple values.
9999

100100
**Parameters:**
101101

0 commit comments

Comments
 (0)