123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- /*!
- * 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 { proxyCustomElement, HTMLElement, createEvent, h, Fragment } from '@stencil/core/internal/client/index.js';
- import { I as ICON_TYPES } from './resources.js';
- import { b as getSlotted, t as toAriaBoolean } from './dom.js';
- import { c as connectConditionalSlotComponent, d as disconnectConditionalSlotComponent } from './conditionalSlot.js';
- import { u as updateHostInteraction } from './interactive.js';
- import { d as defineCustomElement$3 } from './action.js';
- import { d as defineCustomElement$2 } from './icon.js';
- import { d as defineCustomElement$1 } from './loader.js';
- const CSS = {
- actions: "actions",
- actionsEnd: "actions--end",
- actionsStart: "actions--start",
- description: "description",
- handle: "handle",
- handleActivated: "handle--activated",
- highlight: "highlight",
- icon: "icon",
- iconDot: "icon-dot",
- label: "label",
- remove: "remove",
- title: "title",
- textContainer: "text-container"
- };
- const ICONS = {
- checked: "check",
- remove: "x"
- };
- const SLOTS = {
- actionsEnd: "actions-end",
- actionsStart: "actions-start"
- };
- const TEXT = {
- remove: "Remove"
- };
- const pickListItemCss = "@charset \"UTF-8\";@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{margin:0px;margin-block-end:1px;box-sizing:border-box;display:flex;align-items:stretch;background-color:var(--calcite-ui-foreground-1);font-size:var(--calcite-font-size--1);line-height:1rem;color:var(--calcite-ui-text-1);--tw-shadow:0 1px 0 var(--calcite-ui-border-3);--tw-shadow-colored:0 1px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);transition:background-color var(--calcite-animation-timing);animation:calcite-fade-in var(--calcite-animation-timing)}:host *{box-sizing:border-box}.label{display:flex;flex:1 1 auto;cursor:pointer;align-items:center;background-color:transparent;outline-color:transparent}.label:focus{outline:2px solid var(--calcite-ui-brand);outline-offset:-2px}.label:hover{background-color:var(--calcite-ui-foreground-2)}:host([non-interactive]:hover){background-color:var(--calcite-ui-foreground-1)}:host([non-interactive]) .label,:host([non-interactive]) .icon{pointer-events:none}.icon{margin-block:0px;display:flex;cursor:pointer;align-items:center;padding:0.25rem;color:var(--calcite-ui-brand);flex:0 0 auto;line-height:0}.icon:hover{background-color:var(--calcite-ui-foreground-2)}.icon-dot{display:flex;inline-size:1.5rem;align-items:center;padding:0.5rem}.icon-dot:before{opacity:0;content:\"•\"}.icon calcite-icon{opacity:0}:host([selected]) .icon-dot:before,:host([selected]) .icon calcite-icon{transition:opacity var(--calcite-animation-timing);opacity:1}.text-container{pointer-events:none;display:flex;flex-direction:column;flex-wrap:nowrap;overflow:hidden;padding-block:0.5rem;padding-inline:0.75rem;font-size:var(--calcite-font-size--2);line-height:1.375;word-wrap:break-word;word-break:break-word}.title{font-weight:var(--calcite-font-weight-normal);color:var(--calcite-ui-text-1)}.description{margin-block-start:0.125rem;font-weight:var(--calcite-font-weight-normal);color:var(--calcite-ui-text-3)}.actions{margin:0px;display:flex;flex:0 1 auto;align-items:stretch;justify-content:flex-end}.actions--start~.label{padding-inline-start:0.25rem}:host([disabled]) ::slotted([calcite-hydrated][disabled]),:host([disabled]) [calcite-hydrated][disabled]{opacity:1}";
- const PickListItem = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
- constructor() {
- super();
- this.__registerHost();
- this.__attachShadow();
- this.calciteListItemChange = createEvent(this, "calciteListItemChange", 6);
- this.calciteListItemRemove = createEvent(this, "calciteListItemRemove", 7);
- this.calciteInternalListItemPropsChange = createEvent(this, "calciteInternalListItemPropsChange", 6);
- this.calciteInternalListItemValueChange = createEvent(this, "calciteInternalListItemValueChange", 6);
- /**
- * When `true`, interaction is prevented and the component is displayed with lower opacity.
- */
- this.disabled = false;
- /**
- * When `false`, the component cannot be deselected by user interaction.
- */
- this.disableDeselect = false;
- /**
- * @internal
- */
- this.nonInteractive = false;
- /**
- * Determines the icon SVG symbol that will be shown. Options are `"circle"`, `"square"`, `"grip"` or `null`.
- *
- * @see [ICON_TYPES](https://github.com/Esri/calcite-components/blob/master/src/components/pick-list/resources.ts#L5)
- */
- this.icon = null;
- /**
- * When `true`, displays a remove action that removes the item from the list.
- */
- this.removable = false;
- /**
- * When `true`, selects an item. Toggles when an item is checked/unchecked.
- */
- this.selected = false;
- /**
- * When `removable` is `true`, the accessible name for the component's remove button.
- *
- * @default "Remove"
- */
- this.intlRemove = TEXT.remove;
- // --------------------------------------------------------------------------
- //
- // Private Methods
- //
- // --------------------------------------------------------------------------
- this.pickListClickHandler = (event) => {
- if (this.disabled || (this.disableDeselect && this.selected) || this.nonInteractive) {
- return;
- }
- this.shiftPressed = event.shiftKey;
- this.selected = !this.selected;
- };
- this.pickListKeyDownHandler = (event) => {
- if (event.key === " ") {
- event.preventDefault();
- if ((this.disableDeselect && this.selected) || this.nonInteractive) {
- return;
- }
- this.selected = !this.selected;
- }
- };
- this.removeClickHandler = () => {
- this.calciteListItemRemove.emit();
- };
- }
- descriptionWatchHandler() {
- this.calciteInternalListItemPropsChange.emit();
- }
- labelWatchHandler() {
- this.calciteInternalListItemPropsChange.emit();
- }
- metadataWatchHandler() {
- this.calciteInternalListItemPropsChange.emit();
- }
- selectedWatchHandler() {
- this.calciteListItemChange.emit({
- item: this.el,
- value: this.value,
- selected: this.selected,
- shiftPressed: this.shiftPressed
- });
- this.shiftPressed = false;
- }
- valueWatchHandler(newValue, oldValue) {
- this.calciteInternalListItemValueChange.emit({ oldValue, newValue });
- }
- // --------------------------------------------------------------------------
- //
- // Lifecycle
- //
- // --------------------------------------------------------------------------
- connectedCallback() {
- connectConditionalSlotComponent(this);
- }
- disconnectedCallback() {
- disconnectConditionalSlotComponent(this);
- }
- componentDidRender() {
- updateHostInteraction(this, this.el.closest("calcite-pick-list") ? "managed" : false);
- }
- // --------------------------------------------------------------------------
- //
- // Public Methods
- //
- // --------------------------------------------------------------------------
- /**
- * Toggles the selection state. By default this won't trigger an event.
- * The first argument allows the value to be coerced, rather than swapping values.
- *
- * @param coerce
- */
- async toggleSelected(coerce) {
- this.selected = typeof coerce === "boolean" ? coerce : !this.selected;
- }
- /** Sets focus on the component. */
- async setFocus() {
- var _a;
- (_a = this.focusEl) === null || _a === void 0 ? void 0 : _a.focus();
- }
- // --------------------------------------------------------------------------
- //
- // Render Methods
- //
- // --------------------------------------------------------------------------
- renderIcon() {
- const { icon } = this;
- if (!icon) {
- return null;
- }
- return (h("span", { class: {
- [CSS.icon]: true,
- [CSS.iconDot]: icon === ICON_TYPES.circle
- }, onClick: this.pickListClickHandler }, icon === ICON_TYPES.square ? h("calcite-icon", { icon: ICONS.checked, scale: "s" }) : null));
- }
- renderRemoveAction() {
- return this.removable ? (h("calcite-action", { class: CSS.remove, icon: ICONS.remove, onCalciteActionClick: this.removeClickHandler, slot: SLOTS.actionsEnd, text: this.intlRemove })) : null;
- }
- renderActionsStart() {
- const { el } = this;
- const hasActionsStart = getSlotted(el, SLOTS.actionsStart);
- return hasActionsStart ? (h("div", { class: { [CSS.actions]: true, [CSS.actionsStart]: true } }, h("slot", { name: SLOTS.actionsStart }))) : null;
- }
- renderActionsEnd() {
- const { el, removable } = this;
- const hasActionsEnd = getSlotted(el, SLOTS.actionsEnd);
- return hasActionsEnd || removable ? (h("div", { class: { [CSS.actions]: true, [CSS.actionsEnd]: true } }, h("slot", { name: SLOTS.actionsEnd }), this.renderRemoveAction())) : null;
- }
- render() {
- const { description, label } = this;
- return (h(Fragment, null, this.renderIcon(), this.renderActionsStart(), h("label", { "aria-label": label, class: CSS.label, onClick: this.pickListClickHandler, onKeyDown: this.pickListKeyDownHandler, ref: (focusEl) => (this.focusEl = focusEl), tabIndex: 0 }, h("div", { "aria-checked": toAriaBoolean(this.selected), class: CSS.textContainer, role: "menuitemcheckbox" }, h("span", { class: CSS.title }, label), description ? h("span", { class: CSS.description }, description) : null)), this.renderActionsEnd()));
- }
- get el() { return this; }
- static get watchers() { return {
- "description": ["descriptionWatchHandler"],
- "label": ["labelWatchHandler"],
- "metadata": ["metadataWatchHandler"],
- "selected": ["selectedWatchHandler"],
- "value": ["valueWatchHandler"]
- }; }
- static get style() { return pickListItemCss; }
- }, [1, "calcite-pick-list-item", {
- "description": [513],
- "disabled": [516],
- "disableDeselect": [516, "disable-deselect"],
- "nonInteractive": [516, "non-interactive"],
- "icon": [513],
- "label": [513],
- "metadata": [16],
- "removable": [516],
- "selected": [1540],
- "intlRemove": [513, "intl-remove"],
- "value": [8],
- "toggleSelected": [64],
- "setFocus": [64]
- }]);
- function defineCustomElement() {
- if (typeof customElements === "undefined") {
- return;
- }
- const components = ["calcite-pick-list-item", "calcite-action", "calcite-icon", "calcite-loader"];
- components.forEach(tagName => { switch (tagName) {
- case "calcite-pick-list-item":
- if (!customElements.get(tagName)) {
- customElements.define(tagName, PickListItem);
- }
- break;
- case "calcite-action":
- if (!customElements.get(tagName)) {
- defineCustomElement$3();
- }
- break;
- case "calcite-icon":
- if (!customElements.get(tagName)) {
- defineCustomElement$2();
- }
- break;
- case "calcite-loader":
- if (!customElements.get(tagName)) {
- defineCustomElement$1();
- }
- break;
- } });
- }
- defineCustomElement();
- export { CSS as C, PickListItem as P, SLOTS as S, defineCustomElement as d };
|