{"version":3,"sources":["node_modules/primeng/fesm2022/primeng-skeleton.mjs"],"sourcesContent":["import * as i1 from '@angular/common';\nimport { CommonModule } from '@angular/common';\nimport * as i0 from '@angular/core';\nimport { Injectable, inject, Component, ChangeDetectionStrategy, ViewEncapsulation, Input, NgModule } from '@angular/core';\nimport { SharedModule } from 'primeng/api';\nimport { BaseComponent } from 'primeng/basecomponent';\nimport { BaseStyle } from 'primeng/base';\nconst theme = ({\n dt\n}) => `\n.p-skeleton {\n overflow: hidden;\n background: ${dt('skeleton.background')};\n border-radius: ${dt('skeleton.border.radius')};\n}\n\n.p-skeleton::after {\n content: \"\";\n animation: p-skeleton-animation 1.2s infinite;\n height: 100%;\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n transform: translateX(-100%);\n z-index: 1;\n background: linear-gradient(90deg, rgba(255, 255, 255, 0), ${dt('skeleton.animation.background')}, rgba(255, 255, 255, 0));\n}\n\n[dir='rtl'] .p-skeleton::after {\n animation-name: p-skeleton-animation-rtl;\n}\n\n.p-skeleton-circle {\n border-radius: 50%;\n}\n\n.p-skeleton-animation-none::after {\n animation: none;\n}\n\n@keyframes p-skeleton-animation {\n from {\n transform: translateX(-100%);\n }\n to {\n transform: translateX(100%);\n }\n}\n\n@keyframes p-skeleton-animation-rtl {\n from {\n transform: translateX(100%);\n }\n to {\n transform: translateX(-100%);\n }\n}\n`;\nconst inlineStyles = {\n root: {\n position: 'relative'\n }\n};\nconst classes = {\n root: ({\n props\n }) => ['p-skeleton p-component', {\n 'p-skeleton-circle': props.shape === 'circle',\n 'p-skeleton-animation-none': props.animation === 'none'\n }]\n};\nlet SkeletonStyle = /*#__PURE__*/(() => {\n class SkeletonStyle extends BaseStyle {\n name = 'skeleton';\n theme = theme;\n classes = classes;\n inlineStyles = inlineStyles;\n static ɵfac = /*@__PURE__*/(() => {\n let ɵSkeletonStyle_BaseFactory;\n return function SkeletonStyle_Factory(__ngFactoryType__) {\n return (ɵSkeletonStyle_BaseFactory || (ɵSkeletonStyle_BaseFactory = i0.ɵɵgetInheritedFactory(SkeletonStyle)))(__ngFactoryType__ || SkeletonStyle);\n };\n })();\n static ɵprov = /*@__PURE__*/i0.ɵɵdefineInjectable({\n token: SkeletonStyle,\n factory: SkeletonStyle.ɵfac\n });\n }\n return SkeletonStyle;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n/**\n *\n * Skeleton is a placeholder to display instead of the actual content.\n *\n * [Live Demo](https://www.primeng.org/skeleton/)\n *\n * @module skeletonstyle\n *\n */\nvar SkeletonClasses = /*#__PURE__*/function (SkeletonClasses) {\n /**\n * Class name of the root element\n */\n SkeletonClasses[\"root\"] = \"p-skeleton\";\n return SkeletonClasses;\n}(SkeletonClasses || {});\n/**\n * Skeleton is a placeholder to display instead of the actual content.\n * @group Components\n */\nlet Skeleton = /*#__PURE__*/(() => {\n class Skeleton extends BaseComponent {\n /**\n * Class of the element.\n * @group Props\n */\n styleClass;\n /**\n * Inline style of the element.\n * @group Props\n */\n style;\n /**\n * Shape of the element.\n * @group Props\n */\n shape = 'rectangle';\n /**\n * Type of the animation.\n * @gruop Props\n */\n animation = 'wave';\n /**\n * Border radius of the element, defaults to value from theme.\n * @group Props\n */\n borderRadius;\n /**\n * Size of the skeleton.\n * @group Props\n */\n size;\n /**\n * Width of the element.\n * @group Props\n */\n width = '100%';\n /**\n * Height of the element.\n * @group Props\n */\n height = '1rem';\n _componentStyle = inject(SkeletonStyle);\n containerClass() {\n return {\n 'p-skeleton p-component': true,\n 'p-skeleton-circle': this.shape === 'circle',\n 'p-skeleton-animation-none': this.animation === 'none'\n };\n }\n get containerStyle() {\n const inlineStyles = this._componentStyle?.inlineStyles['root'];\n let style;\n if (this.size) style = {\n ...this.style,\n ...inlineStyles,\n width: this.size,\n height: this.size,\n borderRadius: this.borderRadius\n };else style = {\n ...inlineStyles,\n width: this.width,\n height: this.height,\n borderRadius: this.borderRadius,\n ...this.style\n };\n return style;\n }\n static ɵfac = /*@__PURE__*/(() => {\n let ɵSkeleton_BaseFactory;\n return function Skeleton_Factory(__ngFactoryType__) {\n return (ɵSkeleton_BaseFactory || (ɵSkeleton_BaseFactory = i0.ɵɵgetInheritedFactory(Skeleton)))(__ngFactoryType__ || Skeleton);\n };\n })();\n static ɵcmp = /*@__PURE__*/i0.ɵɵdefineComponent({\n type: Skeleton,\n selectors: [[\"p-skeleton\"]],\n inputs: {\n styleClass: \"styleClass\",\n style: \"style\",\n shape: \"shape\",\n animation: \"animation\",\n borderRadius: \"borderRadius\",\n size: \"size\",\n width: \"width\",\n height: \"height\"\n },\n features: [i0.ɵɵProvidersFeature([SkeletonStyle]), i0.ɵɵInheritDefinitionFeature],\n decls: 1,\n vars: 7,\n consts: [[3, \"ngClass\", \"ngStyle\"]],\n template: function Skeleton_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelement(0, \"div\", 0);\n }\n if (rf & 2) {\n i0.ɵɵclassMap(ctx.styleClass);\n i0.ɵɵproperty(\"ngClass\", ctx.containerClass())(\"ngStyle\", ctx.containerStyle);\n i0.ɵɵattribute(\"data-pc-name\", \"skeleton\")(\"aria-hidden\", true)(\"data-pc-section\", \"root\");\n }\n },\n dependencies: [CommonModule, i1.NgClass, i1.NgStyle, SharedModule],\n encapsulation: 2,\n changeDetection: 0\n });\n }\n return Skeleton;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\nlet SkeletonModule = /*#__PURE__*/(() => {\n class SkeletonModule {\n static ɵfac = function SkeletonModule_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || SkeletonModule)();\n };\n static ɵmod = /*@__PURE__*/i0.ɵɵdefineNgModule({\n type: SkeletonModule\n });\n static ɵinj = /*@__PURE__*/i0.ɵɵdefineInjector({\n imports: [Skeleton, SharedModule, SharedModule]\n });\n }\n return SkeletonModule;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n(function () {\n (typeof ngJitMode === \"undefined\" || ngJitMode) && i0.ɵɵsetNgModuleScope(SkeletonModule, {\n imports: [Skeleton, SharedModule],\n exports: [Skeleton, SharedModule]\n });\n})();\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { Skeleton, SkeletonClasses, SkeletonModule, SkeletonStyle };\n"],"names":["theme","dt","inlineStyles","classes","props","SkeletonStyle","BaseStyle","ɵSkeletonStyle_BaseFactory","__ngFactoryType__","ɵɵgetInheritedFactory","ɵɵdefineInjectable","Skeleton","BaseComponent","inject","SkeletonStyle","inlineStyles","style","__spreadProps","__spreadValues","ɵSkeleton_BaseFactory","__ngFactoryType__","ɵɵgetInheritedFactory","ɵɵdefineComponent","ɵɵProvidersFeature","ɵɵInheritDefinitionFeature","rf","ctx","ɵɵelement","ɵɵclassMap","ɵɵproperty","ɵɵattribute","CommonModule","NgClass","NgStyle","SharedModule","SkeletonModule","ɵɵdefineNgModule","ɵɵdefineInjector"],"mappings":"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","debug_id":"234a97f3-c2ec-5769-b836-9af60030d596"}