claude-web/node_modules/primevue/speeddial/index.mjs.map

1 line
60 KiB
Plaintext
Raw Normal View History

2026-02-23 02:23:38 +00:00
{"version":3,"file":"index.mjs","sources":["../../src/speeddial/BaseSpeedDial.vue","../../src/speeddial/SpeedDial.vue","../../src/speeddial/SpeedDial.vue?vue&type=template&id=415baf66&lang.js"],"sourcesContent":["<script>\nimport BaseComponent from '@primevue/core/basecomponent';\nimport SpeedDialStyle from 'primevue/speeddial/style';\n\nexport default {\n name: 'BaseSpeedDial',\n extends: BaseComponent,\n props: {\n model: null,\n visible: {\n type: Boolean,\n default: false\n },\n direction: {\n type: String,\n default: 'up'\n },\n transitionDelay: {\n type: Number,\n default: 30\n },\n type: {\n type: String,\n default: 'linear'\n },\n radius: {\n type: Number,\n default: 0\n },\n mask: {\n type: Boolean,\n default: false\n },\n disabled: {\n type: Boolean,\n default: false\n },\n hideOnClickOutside: {\n type: Boolean,\n default: true\n },\n buttonClass: null,\n maskStyle: null,\n maskClass: null,\n showIcon: {\n type: String,\n default: undefined\n },\n hideIcon: {\n type: String,\n default: undefined\n },\n rotateAnimation: {\n type: Boolean,\n default: true\n },\n tooltipOptions: null,\n style: null,\n class: null,\n buttonProps: {\n type: Object,\n default() {\n return { rounded: true };\n }\n },\n actionButtonProps: {\n type: Object,\n default() {\n return { severity: 'secondary', rounded: true, size: 'small' };\n }\n },\n ariaLabelledby: {\n type: String,\n default: null\n },\n ariaLabel: {\n type: String,\n default: null\n }\n },\n style: SpeedDialStyle,\n provide() {\n return {\n $pcSpeedDial: this,\n $parentInstance: this\n };\n }\n};\n</script>\n","<template>\n <div :ref=\"containerRef\" :class=\"containerClass\" :style=\"[style, sx('root')]\" v-bind=\"ptmi('root')\">\n <slot name=\"button\" :visible=\"d_visible\" :toggleCallback=\"onClick\">\n <Button\n :class=\"[cx('pcButton'), buttonClass]\"\n :disabled=\"disabled\"\n :aria-expanded=\"d_visible\"\n :aria-haspopup=\"true\"\n :aria-controls=\"d_visible ? $id + '_list' : undefined\"\n :aria-label=\"ariaLabel\"\n :aria-labelledby=\"ariaLabelledby\"\n :unstyled=\"unstyled\"\n @click=\"onClick($event)\"\n @keydown=\"onTogglerKeydown\"\n v-bind=\"buttonProps\"\n :pt=\"ptm('pcButton')\"\n >\n <template #icon=\"slotProps\">\n <slot name=\"icon\" :visible=\"d_visible\">\n <component v-if=\"d_visible && !!hideIcon\" :is=\"hideIcon ? 'span' : 'PlusIcon'\" :class=\"[hideIcon, slotProps.class]\" v-bind=\"ptm('pcButton')['icon']\" data-pc-section=\"icon\" />\n <component v-else :is=\"showIcon ? 'span' : 'PlusIcon'\" :class=\"[d_visible && !!hideIcon ? hideIcon : showIcon, slotProps.class]\" v-bind=\"ptm('pcButton')['icon']\" data-pc-section=\"icon\" />\n </slot>\n </template>\n </Button>\n </slot>\n <ul :ref=\"listRef\" :id=\"$id + '_list'\" :class=\"cx('list')\" :style=\"sx('list')\" role=\"menu\" tabindex=\"-1\" @focus=\"onFocus\" @blur=\"onBlur\" @keydown=\"onKeyDown\" v-bind=\"ptm('list')\">\n <template v-for=\"(item, index) of model\" :key=\"index\">\n <li\n v-if=\"isItemVisible(item)\"\n