-
Notifications
You must be signed in to change notification settings - Fork 624
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support keyboard navigation of flyout buttons (#2200)
* feat: support keyboard navigation of flyout buttons * fix: linting errors and rebase
- Loading branch information
Showing
5 changed files
with
276 additions
and
13 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,218 @@ | ||
/** | ||
* @license | ||
* Copyright 2024 Google LLC | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/** | ||
* @fileoverview A custom toolbox for the plugin test. | ||
*/ | ||
|
||
export const toolbox = { | ||
kind: 'categoryToolbox', | ||
contents: [ | ||
{ | ||
kind: 'category', | ||
name: 'Logic', | ||
categorystyle: 'logic_category', | ||
contents: [ | ||
{ | ||
type: 'controls_if', | ||
kind: 'block', | ||
}, | ||
{ | ||
type: 'logic_compare', | ||
kind: 'block', | ||
fields: { | ||
OP: 'EQ', | ||
}, | ||
}, | ||
{ | ||
type: 'logic_operation', | ||
kind: 'block', | ||
fields: { | ||
OP: 'AND', | ||
}, | ||
}, | ||
], | ||
}, | ||
{ | ||
kind: 'category', | ||
name: 'Loops', | ||
categorystyle: 'loop_category', | ||
contents: [ | ||
{ | ||
type: 'controls_repeat_ext', | ||
kind: 'block', | ||
inputs: { | ||
TIMES: { | ||
shadow: { | ||
type: 'math_number', | ||
fields: { | ||
NUM: 10, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
type: 'controls_repeat', | ||
kind: 'block', | ||
enabled: false, | ||
fields: { | ||
TIMES: 10, | ||
}, | ||
}, | ||
{ | ||
type: 'controls_whileUntil', | ||
kind: 'block', | ||
fields: { | ||
MODE: 'WHILE', | ||
}, | ||
}, | ||
{ | ||
type: 'controls_for', | ||
kind: 'block', | ||
fields: { | ||
VAR: { | ||
name: 'i', | ||
}, | ||
}, | ||
inputs: { | ||
FROM: { | ||
shadow: { | ||
type: 'math_number', | ||
fields: { | ||
NUM: 1, | ||
}, | ||
}, | ||
}, | ||
TO: { | ||
shadow: { | ||
type: 'math_number', | ||
fields: { | ||
NUM: 10, | ||
}, | ||
}, | ||
}, | ||
BY: { | ||
shadow: { | ||
type: 'math_number', | ||
fields: { | ||
NUM: 1, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
type: 'controls_forEach', | ||
kind: 'block', | ||
fields: { | ||
VAR: { | ||
name: 'j', | ||
}, | ||
}, | ||
}, | ||
{ | ||
type: 'controls_flow_statements', | ||
kind: 'block', | ||
enabled: false, | ||
fields: { | ||
FLOW: 'BREAK', | ||
}, | ||
}, | ||
], | ||
}, | ||
{ | ||
kind: 'sep', | ||
}, | ||
{ | ||
kind: 'category', | ||
name: 'Variables', | ||
custom: 'VARIABLE', | ||
categorystyle: 'variable_category', | ||
}, | ||
{ | ||
kind: 'category', | ||
name: 'Buttons and Blocks', | ||
categorystyle: 'loop_category', | ||
contents: [ | ||
{ | ||
type: 'controls_repeat', | ||
kind: 'block', | ||
fields: { | ||
TIMES: 10, | ||
}, | ||
}, | ||
{ | ||
kind: 'BUTTON', | ||
text: 'Randomize Button Style', | ||
callbackkey: 'setRandomStyle', | ||
}, | ||
{ | ||
kind: 'BUTTON', | ||
text: 'Randomize Button Style', | ||
callbackkey: 'setRandomStyle', | ||
}, | ||
{ | ||
type: 'controls_repeat', | ||
kind: 'block', | ||
fields: { | ||
TIMES: 10, | ||
}, | ||
}, | ||
{ | ||
kind: 'BUTTON', | ||
text: 'Randomize Button Style', | ||
callbackkey: 'setRandomStyle', | ||
}, | ||
], | ||
}, | ||
{ | ||
kind: 'sep', | ||
}, | ||
{ | ||
kind: 'category', | ||
name: 'Nested Categories', | ||
contents: [ | ||
{ | ||
kind: 'category', | ||
name: 'sub-category 1', | ||
contents: [ | ||
{ | ||
kind: 'BUTTON', | ||
text: 'Randomize Button Style', | ||
callbackkey: 'setRandomStyle', | ||
}, | ||
{ | ||
type: 'logic_boolean', | ||
kind: 'block', | ||
fields: { | ||
BOOL: 'TRUE', | ||
}, | ||
}, | ||
], | ||
}, | ||
{ | ||
kind: 'category', | ||
name: 'sub-category 2', | ||
contents: [ | ||
{ | ||
type: 'logic_boolean', | ||
kind: 'block', | ||
fields: { | ||
BOOL: 'FALSE', | ||
}, | ||
}, | ||
{ | ||
kind: 'BUTTON', | ||
text: 'Randomize Button Style', | ||
callbackkey: 'setRandomStyle', | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
], | ||
}; |