Skip to content

Commit

Permalink
Actually, these all need to be here
Browse files Browse the repository at this point in the history
  • Loading branch information
LilyMakesThings authored Feb 1, 2024
1 parent 71ea917 commit 73dfc2d
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions core/field_textdropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,44 @@ Blockly.FieldTextDropdown.fromJson = function(element) {
return field;
};

/**
* Horizontal distance that a checkmark overhangs the dropdown.
*/
Blockly.FieldTextDropdown.CHECKMARK_OVERHANG = Blockly.FieldDropdown.CHECKMARK_OVERHANG;

/**
* Mouse cursor style when over the hotspot that initiates the editor.
*/
Blockly.FieldTextDropdown.prototype.CURSOR = Blockly.FieldDropdown.prototype.CURSOR;

/**
* Closure menu item currently selected.
* @type {?goog.ui.MenuItem}
*/
Blockly.FieldTextDropdown.prototype.selectedItem = Blockly.FieldDropdown.prototype.selectedItem;

/**
* Language-neutral currently selected string or image object.
* @type {string|!Object}
* @private
*/
Blockly.FieldTextDropdown.prototype.value_ = Blockly.FieldDropdown.prototype.value_;

/**
* SVG image element if currently selected option is an image, or null.
* @type {SVGElement}
* @private
*/
Blockly.FieldTextDropdown.prototype.imageElement_ = Blockly.FieldDropdown.prototype.imageElement_;

/**
* Object with src, height, width, and alt attributes if currently selected
* option is an image, or null.
* @type {Object}
* @private
*/
Blockly.FieldTextDropdown.prototype.imageJson_ = Blockly.FieldDropdown.prototype.imageJson_;

/**
* Install this text drop-down field on a block.
*/
Expand Down

0 comments on commit 73dfc2d

Please sign in to comment.