calcite-checkbox.cjs.entry.js 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*!
  2. * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
  3. * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
  4. * v1.0.0-beta.97
  5. */
  6. 'use strict';
  7. Object.defineProperty(exports, '__esModule', { value: true });
  8. const index = require('./index-a0010f96.js');
  9. const guid = require('./guid-f4f03a7a.js');
  10. const form = require('./form-1d831023.js');
  11. const label = require('./label-28060b83.js');
  12. const interactive = require('./interactive-32293bca.js');
  13. const dom = require('./dom-2ec8c9ed.js');
  14. const key = require('./key-6a462411.js');
  15. require('./resources-b5a5f8a7.js');
  16. const checkboxCss = "@keyframes in{0%{opacity:0}100%{opacity:1}}@keyframes in-down{0%{opacity:0;transform:translate3D(0, -5px, 0)}100%{opacity:1;transform:translate3D(0, 0, 0)}}@keyframes in-up{0%{opacity:0;transform:translate3D(0, 5px, 0)}100%{opacity:1;transform:translate3D(0, 0, 0)}}@keyframes in-scale{0%{opacity:0;transform:scale3D(0.95, 0.95, 1)}100%{opacity:1;transform:scale3D(1, 1, 1)}}:root{--calcite-animation-timing:calc(150ms * var(--calcite-internal-duration-factor));--calcite-internal-duration-factor:var(--calcite-duration-factor, 1);--calcite-internal-animation-timing-fast:calc(100ms * var(--calcite-internal-duration-factor));--calcite-internal-animation-timing-medium:calc(200ms * var(--calcite-internal-duration-factor));--calcite-internal-animation-timing-slow:calc(300ms * var(--calcite-internal-duration-factor))}.calcite-animate{opacity:0;animation-fill-mode:both;animation-duration:var(--calcite-animation-timing)}.calcite-animate__in{animation-name:in}.calcite-animate__in-down{animation-name:in-down}.calcite-animate__in-up{animation-name:in-up}.calcite-animate__in-scale{animation-name:in-scale}@media (prefers-reduced-motion: reduce){:root{--calcite-internal-duration-factor:0.01}}:root{--calcite-floating-ui-transition:var(--calcite-animation-timing)}:host([hidden]){display:none}:host([disabled]){pointer-events:none;cursor:default;-webkit-user-select:none;user-select:none;opacity:var(--calcite-ui-opacity-disabled)}:host([scale=s]){--calcite-checkbox-size:0.75rem}:host([scale=m]){--calcite-checkbox-size:var(--calcite-font-size--1)}:host([scale=l]){--calcite-checkbox-size:1rem}:host{position:relative;display:inline-flex;cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}:host .check-svg,:host .toggle{inline-size:var(--calcite-checkbox-size);block-size:var(--calcite-checkbox-size)}:host .check-svg{pointer-events:none;box-sizing:border-box;display:block;overflow:hidden;background-color:var(--calcite-ui-foreground-1);fill:currentColor;stroke:currentColor;stroke-width:1;transition:all var(--calcite-animation-timing) ease-in-out 0s, outline 0s, outline-offset 0s;box-shadow:inset 0 0 0 1px var(--calcite-ui-border-input);color:var(--calcite-ui-background)}:host([checked]) .check-svg,:host([indeterminate]) .check-svg{background-color:var(--calcite-ui-brand);box-shadow:inset 0 0 0 1px var(--calcite-ui-brand)}:host([hovered]) .toggle .check-svg,:host .toggle:hover .check-svg{box-shadow:inset 0 0 0 2px var(--calcite-ui-brand)}.toggle{outline-color:transparent}.toggle:active,.toggle:focus,.toggle:focus-visible{outline:2px solid var(--calcite-ui-brand);outline-offset:2px}:host([disabled]) ::slotted([calcite-hydrated][disabled]),:host([disabled]) [calcite-hydrated][disabled]{opacity:1}::slotted(input[slot=hidden-form-input]){margin:0 !important;opacity:0 !important;outline:none !important;padding:0 !important;position:absolute !important;inset:0 !important;transform:none !important;-webkit-appearance:none !important;z-index:-1 !important}";
  17. const Checkbox = class {
  18. constructor(hostRef) {
  19. index.registerInstance(this, hostRef);
  20. this.calciteInternalCheckboxBlur = index.createEvent(this, "calciteInternalCheckboxBlur", 6);
  21. this.calciteCheckboxChange = index.createEvent(this, "calciteCheckboxChange", 6);
  22. this.calciteInternalCheckboxFocus = index.createEvent(this, "calciteInternalCheckboxFocus", 6);
  23. //--------------------------------------------------------------------------
  24. //
  25. // Properties
  26. //
  27. //--------------------------------------------------------------------------
  28. /** When `true`, the component is checked. */
  29. this.checked = false;
  30. /** When `true`, interaction is prevented and the component is displayed with lower opacity. */
  31. this.disabled = false;
  32. /**
  33. * The hovered state of the checkbox.
  34. *
  35. * @internal
  36. */
  37. this.hovered = false;
  38. /**
  39. * When `true`, the component is initially indeterminate, which is independent from its `checked` value.
  40. *
  41. * The state is visual only, and can look different across browsers.
  42. *
  43. * @mdn [indeterminate](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#indeterminate_state_checkboxes)
  44. */
  45. this.indeterminate = false;
  46. /**
  47. * When `true`, the component must have a value in order for the form to submit.
  48. *
  49. * @internal
  50. */
  51. this.required = false;
  52. /** Specifies the size of the component. */
  53. this.scale = "m";
  54. //--------------------------------------------------------------------------
  55. //
  56. // Private Properties
  57. //
  58. //--------------------------------------------------------------------------
  59. this.checkedPath = "M5.5 12L2 8.689l.637-.636L5.5 10.727l8.022-7.87.637.637z";
  60. this.indeterminatePath = "M13 8v1H3V8z";
  61. //--------------------------------------------------------------------------
  62. //
  63. // Private Methods
  64. //
  65. //--------------------------------------------------------------------------
  66. this.getPath = () => this.indeterminate ? this.indeterminatePath : this.checked ? this.checkedPath : "";
  67. this.toggle = () => {
  68. if (!this.disabled) {
  69. this.checked = !this.checked;
  70. this.setFocus();
  71. this.indeterminate = false;
  72. this.calciteCheckboxChange.emit();
  73. }
  74. };
  75. this.keyDownHandler = (event) => {
  76. if (key.isActivationKey(event.key)) {
  77. this.toggle();
  78. event.preventDefault();
  79. }
  80. };
  81. this.clickHandler = () => {
  82. this.toggle();
  83. };
  84. //--------------------------------------------------------------------------
  85. //
  86. // Event Listeners
  87. //
  88. //--------------------------------------------------------------------------
  89. this.onToggleBlur = () => {
  90. this.calciteInternalCheckboxBlur.emit(false);
  91. };
  92. this.onToggleFocus = () => {
  93. this.calciteInternalCheckboxFocus.emit(true);
  94. };
  95. this.onLabelClick = () => {
  96. this.toggle();
  97. };
  98. }
  99. //--------------------------------------------------------------------------
  100. //
  101. // Public Methods
  102. //
  103. //--------------------------------------------------------------------------
  104. /** Sets focus on the component. */
  105. async setFocus() {
  106. var _a;
  107. (_a = this.toggleEl) === null || _a === void 0 ? void 0 : _a.focus();
  108. }
  109. //--------------------------------------------------------------------------
  110. //
  111. // Lifecycle
  112. //
  113. //--------------------------------------------------------------------------
  114. connectedCallback() {
  115. this.guid = this.el.id || `calcite-checkbox-${guid.guid()}`;
  116. label.connectLabel(this);
  117. form.connectForm(this);
  118. }
  119. disconnectedCallback() {
  120. label.disconnectLabel(this);
  121. form.disconnectForm(this);
  122. }
  123. componentDidRender() {
  124. interactive.updateHostInteraction(this);
  125. }
  126. // --------------------------------------------------------------------------
  127. //
  128. // Render Methods
  129. //
  130. // --------------------------------------------------------------------------
  131. render() {
  132. return (index.h(index.Host, { onClick: this.clickHandler, onKeyDown: this.keyDownHandler }, index.h("div", { "aria-checked": dom.toAriaBoolean(this.checked), "aria-label": label.getLabelText(this), class: "toggle", onBlur: this.onToggleBlur, onFocus: this.onToggleFocus, ref: (toggleEl) => (this.toggleEl = toggleEl), role: "checkbox", tabIndex: this.disabled ? undefined : 0 }, index.h("svg", { "aria-hidden": "true", class: "check-svg", viewBox: "0 0 16 16" }, index.h("path", { d: this.getPath() })), index.h("slot", null)), index.h(form.HiddenFormInputSlot, { component: this })));
  133. }
  134. get el() { return index.getElement(this); }
  135. };
  136. Checkbox.style = checkboxCss;
  137. exports.calcite_checkbox = Checkbox;