MCPcopy Create free account

hub / github.com/GoogleChromeLabs/howto-components / functions

Functions171 in github.com/GoogleChromeLabs/howto-components

MethodattributeChangedCallback
* `attributeChangedCallback` processes changes to the `expanded` attribute.
elements/howto-accordion/howto-accordion.js:547
MethodattributeChangedCallback
* `attributeChangedCallback()` is called when any of the attributes in the * `observedAttributes` array are changed. It's a good place to handle
elements/howto-toggle-button/howto-toggle-button.js:155
MethodattributeChangedCallback
* Properties and their corresponding attributes should mirror one another. * To this effect, the property setter for `selected` handles truthy/fa
elements/howto-tabs/howto-tabs.js:396
MethodattributeChangedCallback
(name, oldVal, newVal)
elements/howto-label/howto-label.js:87
MethodattributeChangedCallback
* `attributeChangedCallback()` is called when any of the attributes in the * `observedAttributes` array are changed. It's a good place to handle
elements/howto-checkbox/howto-checkbox.js:167
FunctionbrowserFilter
* `browserFilter` is used as an argument to `Array.prototype.filter` to filter * which browsers are used to run the e2e tests.
run-e2e-tests.js:27
FunctionbuildIndex
(elements)
build-documentation.js:197
Methodchecked
* Properties and their corresponding attributes should mirror one another. * The property setter for `checked` handles truthy/falsy values and
elements/howto-checkbox/howto-checkbox.js:138
MethodcheckedRadioButton
* A getter for whichever `HowtoRadioButton` is currently checked.
elements/howto-radio-group/howto-radio-group.js:243
MethodconnectedCallback
* `connectedCallback` hooks up the even listeners and considers the * `expanded` attribute on the headers to adjust their styling accordingly.
elements/howto-accordion/howto-accordion.js:72
MethodconnectedCallback
* `connectedCallback()` sets up the role, event handler and initial state.
elements/howto-accordion/howto-accordion.js:520
MethodconnectedCallback
* `connectedCallback()` sets up the role and the ID of the element.
elements/howto-accordion/howto-accordion.js:643
MethodconnectedCallback
* `connectedCallback()` fires when the element is inserted into the DOM. * It's a good place to set the initial `role`, `tabindex`, internal state,
elements/howto-tooltip/howto-tooltip.js:35
MethodconnectedCallback
* `connectedCallback()` fires when the element is inserted into the DOM. * It's a good place to set the initial `role`, `tabindex`, internal stat
elements/howto-toggle-button/howto-toggle-button.js:71
MethodconnectedCallback
* `connectedCallback()` groups tabs and panels by reordering and makes sure * exactly one tab is active.
elements/howto-tabs/howto-tabs.js:90
MethodconnectedCallback
()
elements/howto-tabs/howto-tabs.js:352
MethodconnectedCallback
()
elements/howto-tabs/howto-tabs.js:425
MethodconnectedCallback
* connectedCallback() will run once the element is attached to the document. * It's the earliest point at which you may touch attributes, and is
elements/howto-label/howto-label.js:66
MethodconnectedCallback
* `connectedCallback()` fires when the element is inserted into the DOM. * It's a good place to set the initial `role`, `tabindex`, internal stat
elements/howto-checkbox/howto-checkbox.js:87
MethodconnectedCallback
* The `HowtoRadioButton` sets its initial ARIA attributes when it's * attached to the DOM. The surrounding RadioGroup handles dynamic changes
elements/howto-radio-group/howto-radio-group.js:94
MethodconnectedCallback
* The `HowtoRadioGroup` sets its ARIA role to `radiogroup` and sets the * `tabindex` on its first `HowtoRadioButton` child to 0 if no other child
elements/howto-radio-group/howto-radio-group.js:167
Methodconstructor
(str)
sectionizer.js:22
Methodconstructor
()
elements/howto-accordion/howto-accordion.js:62
Methodconstructor
()
elements/howto-accordion/howto-accordion.js:494
Methodconstructor
()
elements/howto-accordion/howto-accordion.js:632
Methodconstructor
* The constructor does work that needs to be executed _exactly_ once.
elements/howto-tooltip/howto-tooltip.js:21
Methodconstructor
* The element's constructor is run anytime a new instance is created. * Instances are created either by parsing HTML, calling * document.cre
elements/howto-toggle-button/howto-toggle-button.js:60
Methodconstructor
()
elements/howto-tabs/howto-tabs.js:60
Methodconstructor
()
elements/howto-tabs/howto-tabs.js:348
Methodconstructor
()
elements/howto-tabs/howto-tabs.js:421
Methodconstructor
()
elements/howto-label/howto-label.js:47
Methodconstructor
* The element's constructor is run anytime a new instance is created. * Instances are created either by parsing HTML, calling * document.cre
elements/howto-checkbox/howto-checkbox.js:76
Methodconstructor
()
elements/howto-radio-group/howto-radio-group.js:79
Methodconstructor
()
elements/howto-radio-group/howto-radio-group.js:148
Methodcurrent
()
sectionizer.js:38
Methoddisabled
(value)
elements/howto-toggle-button/howto-toggle-button.js:138
Methoddisabled
(value)
elements/howto-checkbox/howto-checkbox.js:150
MethoddisconnectedCallback
* `disconnectedCallback` removes all the event listeners that * `connectedCallback` added.
elements/howto-accordion/howto-accordion.js:143
MethoddisconnectedCallback
* `disconnectedCallback` cleans up the event handlers set up in * `connectedCallback`.
elements/howto-accordion/howto-accordion.js:540
MethoddisconnectedCallback
* `disconnectedCallback()` unregisters the event listeners that were set up * in `connectedCallback()`.
elements/howto-tooltip/howto-tooltip.js:62
MethoddisconnectedCallback
* `disconnectedCallback()` fires when the element is removed from the DOM. * It's a good place to do clean up work like releasing references and
elements/howto-toggle-button/howto-toggle-button.js:114
MethoddisconnectedCallback
* `disconnectedCallback()` removes the event listeners that * `connectedCallback` added.
elements/howto-tabs/howto-tabs.js:121
MethoddisconnectedCallback
* `disconnectedCallback()` fires when the element is removed from the DOM. * It's a good place to do clean up work like releasing references and
elements/howto-checkbox/howto-checkbox.js:126
MethoddisconnectedCallback
* If the `RadioGroup` is removed from the DOM, clean up any event * listeners.
elements/howto-radio-group/howto-radio-group.js:194
Methodexpanded
()
elements/howto-accordion/howto-accordion.js:554
Methodexpanded
()
elements/howto-accordion/howto-accordion.js:657
FunctionfindCheckbox
elements/howto-checkbox/howto-checkbox.e2etest.js:25
FunctionfindToggleButton
elements/howto-toggle-button/howto-toggle-button.e2etest.js:25
MethodfirstRadioButton
* A getter for the first `HowtoRadioButton` child.
elements/howto-radio-group/howto-radio-group.js:250
Methodfor
()
elements/howto-label/howto-label.js:78
FunctionisChecked
elements/howto-checkbox/howto-checkbox.e2etest.js:36
FunctionisPressed
elements/howto-toggle-button/howto-toggle-button.e2etest.js:36
FunctionisUnchecked
elements/howto-checkbox/howto-checkbox.e2etest.js:29
FunctionisUnpressed
elements/howto-toggle-button/howto-toggle-button.e2etest.js:29
MethodlastRadioButton
* A getter for the last `HowtoRadioButton` child.
elements/howto-radio-group/howto-radio-group.js:257
MethodobservedAttributes
()
elements/howto-accordion/howto-accordion.js:490
MethodobservedAttributes
()
elements/howto-toggle-button/howto-toggle-button.js:48
MethodobservedAttributes
()
elements/howto-tabs/howto-tabs.js:344
MethodobservedAttributes
()
elements/howto-label/howto-label.js:43
MethodobservedAttributes
()
elements/howto-checkbox/howto-checkbox.js:64
Functionparse
(str)
sectionizer.js:189
Methodpressed
* Properties and their corresponding attributes should mirror one another. * The property setter for `pressed` handles truthy/falsy values and
elements/howto-toggle-button/howto-toggle-button.js:126
Methodselected
(value)
elements/howto-tabs/howto-tabs.js:402
MethodsneakPeek
()
sectionizer.js:34
Functiont
()
site-resources/scripts/resizeobserver.min.js:1
FunctionunsandboxChrome
(browser)
run-e2e-tests.js:76
Methodwhitespace
()
sectionizer.js:18
FunctionwriteElement
(element)
build-documentation.js:181
Functionx
(a)
site-resources/scripts/resizeobserver.min.js:1
Functiony
(a,b)
site-resources/scripts/resizeobserver.min.js:1
Functionz
(a,b,c)
site-resources/scripts/resizeobserver.min.js:1
← previous101–171 of 171, ranked by callers