Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates all components to stable version #4578

Merged
merged 3 commits into from
Sep 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Vaadin.ButtonElement",
"tag": "vaadin-button",
"baseUrl": "vaadin-button/src/vaadin-button.html",
"version": "2.1.0-alpha3",
"version": "2.1.0",
"properties": [
{
"name": "autofocus",
Expand All @@ -21,14 +21,7 @@
"description": "If true, the user cannot interact with this element.\n "
}
],
"methods": [
{
"name": "updateStyles",
"description": "",
"parameters": [],
"returns": "UNDEFINED"
}
],
"methods": [],
"events": [],
"slots": [
"prefix",
Expand Down Expand Up @@ -59,5 +52,5 @@
"outlined"
]
},
"description": "`<vaadin-button>` is a Polymer 2 element providing an accessible and customizable button.\n\n```html\n<vaadin-button>\n</vaadin-button>\n```\n\n```js\ndocument.querySelector('vaadin-button').addEventListener('click', () => alert('Hello World!'));\n```\n\n### Styling\n\nThe following shadow DOM parts are exposed for styling:\n\nPart name | Description\n----------------|----------------\n`label` | The label (text) inside the button\n`prefix` | A slot for e.g. an icon before the label\n`suffix` | A slot for e.g. an icon after the label\n\n\nThe following attributes are exposed for styling:\n\nAttribute | Description\n--------- | -----------\n`active` | Set when the button is pressed down, either with mouse, touch or the keyboard.\n`disabled` | Set when the button is disabled.\n`focus-ring` | Set when the button is focused using the keyboard.\n`focused` | Set when the button is focused.\n\nSee [ThemableMixin – how to apply styles for shadow parts](https://github.com/vaadin/vaadin-themable-mixin/wiki)"
"description": "`<vaadin-button>` is a Web Component providing an accessible and customizable button.\n\n```html\n<vaadin-button>\n</vaadin-button>\n```\n\n```js\ndocument.querySelector('vaadin-button').addEventListener('click', () => alert('Hello World!'));\n```\n\n### Styling\n\nThe following shadow DOM parts are exposed for styling:\n\nPart name | Description\n----------------|----------------\n`label` | The label (text) inside the button\n`prefix` | A slot for e.g. an icon before the label\n`suffix` | A slot for e.g. an icon after the label\n\n\nThe following attributes are exposed for styling:\n\nAttribute | Description\n--------- | -----------\n`active` | Set when the button is pressed down, either with mouse, touch or the keyboard.\n`disabled` | Set when the button is disabled.\n`focus-ring` | Set when the button is focused using the keyboard.\n`focused` | Set when the button is focused.\n\nSee [ThemableMixin – how to apply styles for shadow parts](https://github.com/vaadin/vaadin-themable-mixin/wiki)"
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Vaadin.CheckboxGroupElement",
"tag": "vaadin-checkbox-group",
"baseUrl": "vaadin-checkbox/src/vaadin-checkbox-group.html",
"version": "2.2.0-alpha3",
"version": "2.2.2",
"properties": [
{
"name": "disabled",
Expand All @@ -18,15 +18,15 @@
"STRING"
],
"objectType": [],
"description": "String used for the label element.\n "
"description": "String used for the label element.\n "
},
{
"name": "value",
"type": [
"ARRAY"
],
"objectType": [],
"description": "Value of the checkbox group.\n ",
"description": "Value of the checkbox group.\nNote: toggling the checkboxes modifies the value by creating new\narray each time, to override Polymer dirty-checking for arrays.\nYou can still use Polymer array mutation methods to update the value.\n ",
"notify": true
},
{
Expand Down Expand Up @@ -56,12 +56,6 @@
}
],
"methods": [
{
"name": "updateStyles",
"description": "",
"parameters": [],
"returns": "UNDEFINED"
},
{
"name": "validate",
"description": "Returns true if `value` is valid.\n`<iron-form>` uses this to check the validity or all its elements.",
Expand Down Expand Up @@ -96,5 +90,5 @@
"vertical"
]
},
"description": "`<vaadin-checkbox-group>` is a Polymer element for grouping vaadin-checkboxes.\n\n```html\n<vaadin-checkbox-group label=\"Preferred language of contact:\">\n <vaadin-checkbox value=\"en\">English</vaadin-checkbox>\n <vaadin-checkbox value=\"fr\">Français</vaadin-checkbox>\n <vaadin-checkbox value=\"de\">Deutsch</vaadin-checkbox>\n</vaadin-checkbox-group>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n----------------|----------------\n`label` | The label element\n`group-field` | The element that wraps checkboxes\n`error-message` | The error message element\n\nThe following state attributes are available for styling:\n\nAttribute | Description | Part name\n-----------|-------------|------------\n`disabled` | Set when the checkbox group and its children are disabled. | :host\n`has-label` | Set when the element has a label | :host\n`required` | Set when the element is required | :host\n`invalid` | Set when the element is invalid | :host\n\nSee [ThemableMixin – how to apply styles for shadow parts](https://github.com/vaadin/vaadin-themable-mixin/wiki)"
"description": "`<vaadin-checkbox-group>` is a Polymer element for grouping vaadin-checkboxes.\n\n```html\n<vaadin-checkbox-group label=\"Preferred language of contact:\">\n <vaadin-checkbox value=\"en\">English</vaadin-checkbox>\n <vaadin-checkbox value=\"fr\">Français</vaadin-checkbox>\n <vaadin-checkbox value=\"de\">Deutsch</vaadin-checkbox>\n</vaadin-checkbox-group>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n----------------|----------------\n`label` | The label element\n`group-field` | The element that wraps checkboxes\n`error-message` | The error message element\n\nThe following state attributes are available for styling:\n\nAttribute | Description | Part name\n-----------|-------------|------------\n`disabled` | Set when the checkbox group and its children are disabled. | :host\n`has-label` | Set when the element has a label | :host\n`has-value` | Set when the element has a value | :host\n`required` | Set when the element is required | :host\n`invalid` | Set when the element is invalid | :host\n\nSee [ThemableMixin – how to apply styles for shadow parts](https://github.com/vaadin/vaadin-themable-mixin/wiki)"
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Vaadin.CheckboxElement",
"tag": "vaadin-checkbox",
"baseUrl": "vaadin-checkbox/src/vaadin-checkbox.html",
"version": "2.2.0-alpha3",
"version": "2.2.2",
"properties": [
{
"name": "autofocus",
Expand Down Expand Up @@ -55,14 +55,7 @@
"description": "The value given to the data submitted with the checkbox's name to the server when the control is inside a form.\n "
}
],
"methods": [
{
"name": "updateStyles",
"description": "",
"parameters": [],
"returns": "UNDEFINED"
}
],
"methods": [],
"events": [
{
"name": "change",
Expand Down Expand Up @@ -91,5 +84,5 @@
"Polymer.GestureEventListeners"
],
"variants": {},
"description": "`<vaadin-checkbox>` is a Polymer 2 element for customized checkboxes.\n\n```html\n<vaadin-checkbox>\n Make my profile visible\n</vaadin-checkbox>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n------------------|----------------\n`checkbox` | The checkbox element\n`label` | The label content element\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n-------------|------------\n`active` | Set when the checkbox is pressed down, either with mouse, touch or the keyboard.\n`disabled` | Set when the checkbox is disabled.\n`focus-ring` | Set when the checkbox is focused using the keyboard.\n`focused` | Set when the checkbox is focused.\n`indeterminate` | Set when the checkbox is in indeterminate mode.\n`checked` | Set when the checkbox is checked.\n\nSee [ThemableMixin – how to apply styles for shadow parts](https://github.com/vaadin/vaadin-themable-mixin/wiki)"
"description": "`<vaadin-checkbox>` is a Web Component for customized checkboxes.\n\n```html\n<vaadin-checkbox>\n Make my profile visible\n</vaadin-checkbox>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n------------------|----------------\n`checkbox` | The checkbox element\n`label` | The label content element\n\nThe following state attributes are available for styling:\n\nAttribute | Description | Part name\n-------------|-------------|--------------\n`active` | Set when the checkbox is pressed down, either with mouse, touch or the keyboard. | `:host`\n`disabled` | Set when the checkbox is disabled. | `:host`\n`focus-ring` | Set when the checkbox is focused using the keyboard. | `:host`\n`focused` | Set when the checkbox is focused. | `:host`\n`indeterminate` | Set when the checkbox is in indeterminate mode. | `:host`\n`checked` | Set when the checkbox is checked. | `:host`\n`empty` | Set when there is no label provided. | `label`\n\nSee [ThemableMixin – how to apply styles for shadow parts](https://github.com/vaadin/vaadin-themable-mixin/wiki)"
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
"BOOLEAN"
],
"objectType": [],
"description": "",
"notify": true
"description": ""
},
{
"name": "template",
Expand Down Expand Up @@ -78,11 +77,6 @@
"description": "vaadin-combo-box-dropdown-opened",
"properties": []
},
{
"name": "opened-changed",
"description": "Fired when the `opened` property changes.",
"properties": []
},
{
"name": "template-changed",
"description": "Fired when the `template` property changes.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,6 @@
}
],
"methods": [
{
"name": "updateStyles",
"description": "",
"parameters": [],
"returns": "UNDEFINED"
},
{
"name": "connectedCallback",
"description": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Vaadin.ComboBoxLightElement",
"tag": "vaadin-combo-box-light",
"baseUrl": "vaadin-combo-box/src/vaadin-combo-box-light.html",
"version": "4.1.0-alpha3",
"version": "4.1.0",
"properties": [
{
"name": "opened",
Expand Down Expand Up @@ -170,12 +170,6 @@
"parameters": [],
"returns": "UNDEFINED"
},
{
"name": "updateStyles",
"description": "",
"parameters": [],
"returns": "UNDEFINED"
},
{
"name": "connectedCallback",
"description": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,6 @@
}
],
"methods": [
{
"name": "updateStyles",
"description": "",
"parameters": [],
"returns": "UNDEFINED"
},
{
"name": "close",
"description": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Vaadin.ComboBoxElement",
"tag": "vaadin-combo-box",
"baseUrl": "vaadin-combo-box/src/vaadin-combo-box.html",
"version": "4.1.0-alpha3",
"version": "4.1.0",
"properties": [
{
"name": "autofocus",
Expand Down Expand Up @@ -220,12 +220,6 @@
"description": "Returns true if the current input value satisfies all constraints (if any)\n\nYou can override the `checkValidity` method for custom validations.\n ",
"parameters": [],
"returns": "UNDEFINED"
},
{
"name": "updateStyles",
"description": "",
"parameters": [],
"returns": "UNDEFINED"
}
],
"events": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,6 @@
}
],
"methods": [
{
"name": "updateStyles",
"description": "",
"parameters": [],
"returns": "UNDEFINED"
},
{
"name": "close",
"description": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Vaadin.ContextMenuElement",
"tag": "vaadin-context-menu",
"baseUrl": "vaadin-context-menu/src/vaadin-context-menu.html",
"version": "4.1.0-alpha4",
"version": "4.1.0",
"properties": [
{
"name": "selector",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Vaadin.DatePickerLightElement",
"tag": "vaadin-date-picker-light",
"baseUrl": "vaadin-date-picker/src/vaadin-date-picker-light.html",
"version": "3.2.0-alpha4",
"version": "3.2.0",
"properties": [
{
"name": "value",
Expand Down Expand Up @@ -96,12 +96,6 @@
}
],
"methods": [
{
"name": "updateStyles",
"description": "",
"parameters": [],
"returns": "UNDEFINED"
},
{
"name": "open",
"description": "Opens the dropdown.\n ",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,6 @@
}
],
"methods": [
{
"name": "updateStyles",
"description": "",
"parameters": [],
"returns": "UNDEFINED"
},
{
"name": "close",
"description": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Vaadin.DatePickerElement",
"tag": "vaadin-date-picker",
"baseUrl": "vaadin-date-picker/src/vaadin-date-picker.html",
"version": "3.2.0-alpha4",
"version": "3.2.0",
"properties": [
{
"name": "autofocus",
Expand Down Expand Up @@ -137,12 +137,6 @@
}
],
"methods": [
{
"name": "updateStyles",
"description": "",
"parameters": [],
"returns": "UNDEFINED"
},
{
"name": "open",
"description": "Opens the dropdown.\n ",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,6 @@
}
],
"methods": [
{
"name": "updateStyles",
"description": "",
"parameters": [],
"returns": "UNDEFINED"
},
{
"name": "close",
"description": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@
],
"objectType": [],
"description": "Set to true to disable closing dialog on Escape press\n "
},
{
"name": "ariaLabel",
"type": [
"STRING"
],
"objectType": [],
"description": "Set the `aria-label` attribute for assistive technologies like\nscreen readers. An `undefined` value for this property (the\ndefault) means that the `aria-label` attribute is not present at\nall.\n "
}
],
"methods": [
Expand All @@ -50,5 +58,5 @@
"Vaadin.ElementMixin"
],
"variants": {},
"description": "`<vaadin-dialog>` is a Polymer 2 element for customized modal dialogs.\n\n```html\n<vaadin-dialog opened>\n <template>\n Sample dialog\n </template>\n</vaadin-dialog>\n```\n\n### Styling\n\nSee [`<vaadin-overlay>` documentation](https://github.com/vaadin/vaadin-overlay/blob/master/src/vaadin-overlay.html)\nfor `<vaadin-dialog-overlay>` parts.\n\nSee [ThemableMixin – how to apply styles for shadow parts](https://github.com/vaadin/vaadin-themable-mixin/wiki)"
"description": "`<vaadin-dialog>` is a Web Component for customized modal dialogs.\n\n```html\n<vaadin-dialog opened>\n <template>\n Sample dialog\n </template>\n</vaadin-dialog>\n```\n\n### Styling\n\nSee [`<vaadin-overlay>` documentation](https://github.com/vaadin/vaadin-overlay/blob/master/src/vaadin-overlay.html)\nfor `<vaadin-dialog-overlay>` parts.\n\nSee [ThemableMixin – how to apply styles for shadow parts](https://github.com/vaadin/vaadin-themable-mixin/wiki)"
}
Loading