| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 | 
							- /*!
 
-  * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
 
-  * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
 
-  * v1.0.0-beta.97
 
-  */
 
- import { h } from "@stencil/core";
 
- import { CSS, ICONS } from "./resources";
 
- import { focusElement } from "../../utils/dom";
 
- import { updateHostInteraction } from "../../utils/interactive";
 
- export class Fab {
 
-   constructor() {
 
-     // --------------------------------------------------------------------------
 
-     //
 
-     //  Properties
 
-     //
 
-     // --------------------------------------------------------------------------
 
-     /**
 
-      * Used to set the button's appearance. Default is outline.
 
-      */
 
-     this.appearance = "outline";
 
-     /**
 
-      * Used to set the button's color. Default is light.
 
-      */
 
-     this.color = "neutral";
 
-     /**
 
-      * When true, disabled prevents interaction. This state shows items with lower opacity/grayed.
 
-      */
 
-     this.disabled = false;
 
-     /**
 
-      * Specifies an icon to display.
 
-      *
 
-      * @default "plus"
 
-      */
 
-     this.icon = ICONS.plus;
 
-     /**
 
-      * When true, content is waiting to be loaded. This state shows a busy indicator.
 
-      */
 
-     this.loading = false;
 
-     /**
 
-      * Specifies the size of the fab.
 
-      */
 
-     this.scale = "m";
 
-     /**
 
-      * Indicates whether the text is displayed.
 
-      */
 
-     this.textEnabled = false;
 
-   }
 
-   //--------------------------------------------------------------------------
 
-   //
 
-   //  Lifecycle
 
-   //
 
-   //--------------------------------------------------------------------------
 
-   componentDidRender() {
 
-     updateHostInteraction(this);
 
-   }
 
-   // --------------------------------------------------------------------------
 
-   //
 
-   //  Methods
 
-   //
 
-   // --------------------------------------------------------------------------
 
-   /** Sets focus on the component. */
 
-   async setFocus() {
 
-     focusElement(this.buttonEl);
 
-   }
 
-   // --------------------------------------------------------------------------
 
-   //
 
-   //  Render Methods
 
-   //
 
-   // --------------------------------------------------------------------------
 
-   render() {
 
-     const { appearance, color, disabled, loading, scale, textEnabled, icon, label, text } = this;
 
-     const title = !textEnabled ? label || text || null : null;
 
-     return (h("calcite-button", { appearance: appearance === "solid" ? "solid" : "outline", class: CSS.button, color: color, disabled: disabled, iconStart: icon, label: label, loading: loading, ref: (buttonEl) => {
 
-         this.buttonEl = buttonEl;
 
-       }, round: true, scale: scale, title: title, type: "button", width: "auto" }, this.textEnabled ? this.text : null));
 
-   }
 
-   static get is() { return "calcite-fab"; }
 
-   static get encapsulation() { return "shadow"; }
 
-   static get originalStyleUrls() {
 
-     return {
 
-       "$": ["fab.scss"]
 
-     };
 
-   }
 
-   static get styleUrls() {
 
-     return {
 
-       "$": ["fab.css"]
 
-     };
 
-   }
 
-   static get properties() {
 
-     return {
 
-       "appearance": {
 
-         "type": "string",
 
-         "mutable": false,
 
-         "complexType": {
 
-           "original": "Extract<\"solid\" | \"outline\", Appearance>",
 
-           "resolved": "\"outline\" | \"solid\"",
 
-           "references": {
 
-             "Extract": {
 
-               "location": "global"
 
-             },
 
-             "Appearance": {
 
-               "location": "import",
 
-               "path": "../interfaces"
 
-             }
 
-           }
 
-         },
 
-         "required": false,
 
-         "optional": false,
 
-         "docs": {
 
-           "tags": [],
 
-           "text": "Used to set the button's appearance. Default is outline."
 
-         },
 
-         "attribute": "appearance",
 
-         "reflect": true,
 
-         "defaultValue": "\"outline\""
 
-       },
 
-       "color": {
 
-         "type": "string",
 
-         "mutable": false,
 
-         "complexType": {
 
-           "original": "ButtonColor",
 
-           "resolved": "\"blue\" | \"inverse\" | \"neutral\" | \"red\"",
 
-           "references": {
 
-             "ButtonColor": {
 
-               "location": "import",
 
-               "path": "../button/interfaces"
 
-             }
 
-           }
 
-         },
 
-         "required": false,
 
-         "optional": false,
 
-         "docs": {
 
-           "tags": [],
 
-           "text": "Used to set the button's color. Default is light."
 
-         },
 
-         "attribute": "color",
 
-         "reflect": true,
 
-         "defaultValue": "\"neutral\""
 
-       },
 
-       "disabled": {
 
-         "type": "boolean",
 
-         "mutable": false,
 
-         "complexType": {
 
-           "original": "boolean",
 
-           "resolved": "boolean",
 
-           "references": {}
 
-         },
 
-         "required": false,
 
-         "optional": false,
 
-         "docs": {
 
-           "tags": [],
 
-           "text": "When true, disabled prevents interaction. This state shows items with lower opacity/grayed."
 
-         },
 
-         "attribute": "disabled",
 
-         "reflect": true,
 
-         "defaultValue": "false"
 
-       },
 
-       "icon": {
 
-         "type": "string",
 
-         "mutable": false,
 
-         "complexType": {
 
-           "original": "string",
 
-           "resolved": "string",
 
-           "references": {}
 
-         },
 
-         "required": false,
 
-         "optional": true,
 
-         "docs": {
 
-           "tags": [{
 
-               "name": "default",
 
-               "text": "\"plus\""
 
-             }],
 
-           "text": "Specifies an icon to display."
 
-         },
 
-         "attribute": "icon",
 
-         "reflect": true,
 
-         "defaultValue": "ICONS.plus"
 
-       },
 
-       "label": {
 
-         "type": "string",
 
-         "mutable": false,
 
-         "complexType": {
 
-           "original": "string",
 
-           "resolved": "string",
 
-           "references": {}
 
-         },
 
-         "required": false,
 
-         "optional": true,
 
-         "docs": {
 
-           "tags": [],
 
-           "text": "Label of the FAB, exposed on hover when textEnabled is false. If no label is provided, the label inherits what's provided for the `text` prop."
 
-         },
 
-         "attribute": "label",
 
-         "reflect": false
 
-       },
 
-       "loading": {
 
-         "type": "boolean",
 
-         "mutable": false,
 
-         "complexType": {
 
-           "original": "boolean",
 
-           "resolved": "boolean",
 
-           "references": {}
 
-         },
 
-         "required": false,
 
-         "optional": false,
 
-         "docs": {
 
-           "tags": [],
 
-           "text": "When true, content is waiting to be loaded. This state shows a busy indicator."
 
-         },
 
-         "attribute": "loading",
 
-         "reflect": true,
 
-         "defaultValue": "false"
 
-       },
 
-       "scale": {
 
-         "type": "string",
 
-         "mutable": false,
 
-         "complexType": {
 
-           "original": "Scale",
 
-           "resolved": "\"l\" | \"m\" | \"s\"",
 
-           "references": {
 
-             "Scale": {
 
-               "location": "import",
 
-               "path": "../interfaces"
 
-             }
 
-           }
 
-         },
 
-         "required": false,
 
-         "optional": false,
 
-         "docs": {
 
-           "tags": [],
 
-           "text": "Specifies the size of the fab."
 
-         },
 
-         "attribute": "scale",
 
-         "reflect": true,
 
-         "defaultValue": "\"m\""
 
-       },
 
-       "text": {
 
-         "type": "string",
 
-         "mutable": false,
 
-         "complexType": {
 
-           "original": "string",
 
-           "resolved": "string",
 
-           "references": {}
 
-         },
 
-         "required": false,
 
-         "optional": true,
 
-         "docs": {
 
-           "tags": [],
 
-           "text": "Text that accompanies the FAB icon."
 
-         },
 
-         "attribute": "text",
 
-         "reflect": false
 
-       },
 
-       "textEnabled": {
 
-         "type": "boolean",
 
-         "mutable": false,
 
-         "complexType": {
 
-           "original": "boolean",
 
-           "resolved": "boolean",
 
-           "references": {}
 
-         },
 
-         "required": false,
 
-         "optional": false,
 
-         "docs": {
 
-           "tags": [],
 
-           "text": "Indicates whether the text is displayed."
 
-         },
 
-         "attribute": "text-enabled",
 
-         "reflect": true,
 
-         "defaultValue": "false"
 
-       }
 
-     };
 
-   }
 
-   static get methods() {
 
-     return {
 
-       "setFocus": {
 
-         "complexType": {
 
-           "signature": "() => Promise<void>",
 
-           "parameters": [],
 
-           "references": {
 
-             "Promise": {
 
-               "location": "global"
 
-             }
 
-           },
 
-           "return": "Promise<void>"
 
-         },
 
-         "docs": {
 
-           "text": "Sets focus on the component.",
 
-           "tags": []
 
-         }
 
-       }
 
-     };
 
-   }
 
-   static get elementRef() { return "el"; }
 
- }
 
 
  |