Skip to content
Snippets Groups Projects
Select Git revision
  • 57deb525c6852f46d7ee5a22c98a7e24b6438599
  • master default protected
  • 1.31
  • 4.34.1
  • 4.34.0
  • 4.33.1
  • 4.33.0
  • 4.32.2
  • 4.32.1
  • 4.32.0
  • 4.31.0
  • 4.30.1
  • 4.30.0
  • 4.29.1
  • 4.29.0
  • 4.28.0
  • 4.27.0
  • 4.26.0
  • 4.25.5
  • 4.25.4
  • 4.25.3
  • 4.25.2
  • 4.25.1
23 results

Monster.Data.Datasource.Storage.SessionStorage.html

Blame
  • tabs.mjs 27.79 KiB
    /**
     * Copyright © schukai GmbH and all contributing authors, {{copyRightYear}}. All rights reserved.
     * Node module: @schukai/monster
     *
     * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3).
     * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html
     *
     * For those who do not wish to adhere to the AGPLv3, a commercial license is available.
     * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms.
     * For more information about purchasing a commercial license, please contact schukai GmbH.
     *
     * SPDX-License-Identifier: AGPL-3.0
     */
    
    import { instanceSymbol } from "../../constants.mjs";
    import { createPopper } from "@popperjs/core";
    import { extend } from "../../data/extend.mjs";
    import { Pathfinder } from "../../data/pathfinder.mjs";
    import {
    	addAttributeToken,
    	addToObjectLink,
    	hasObjectLink,
    } from "../../dom/attributes.mjs";
    import {
    	ATTRIBUTE_ERRORMESSAGE,
    	ATTRIBUTE_PREFIX,
    	ATTRIBUTE_ROLE,
    } from "../../dom/constants.mjs";
    import {
    	assembleMethodSymbol,
    	CustomElement,
    	getSlottedElements,
    	registerCustomElement,
    } from "../../dom/customelement.mjs";
    import {
    	findTargetElementFromEvent,
    	fireCustomEvent,
    } from "../../dom/events.mjs";
    import { getDocument } from "../../dom/util.mjs";
    import { random } from "../../math/random.mjs";
    import { getGlobal } from "../../types/global.mjs";
    import { ID } from "../../types/id.mjs";
    import { isArray, isString } from "../../types/is.mjs";
    import { TokenList } from "../../types/tokenlist.mjs";
    import { clone } from "../../util/clone.mjs";
    import { DeadMansSwitch } from "../../util/deadmansswitch.mjs";
    import { Processing } from "../../util/processing.mjs";
    import {
    	ATTRIBUTE_BUTTON_LABEL,
    	ATTRIBUTE_FORM_RELOAD,
    	ATTRIBUTE_FORM_URL,
    	STYLE_DISPLAY_MODE_BLOCK,
    } from "../form/constants.mjs";
    
    import { TabsStyleSheet } from "./stylesheet/tabs.mjs";
    import { loadAndAssignContent } from "../form/util/fetch.mjs";
    import { ThemeStyleSheet } from "../stylesheet/theme.mjs";
    import {
    	popperInstanceSymbol,
    	setEventListenersModifiers,
    } from "../form/util/popper.mjs";
    
    export { Tabs };
    
    /**
     * @private
     * @type {symbol}
     */
    const popperElementSymbol = Symbol("popperElement");