UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

87 lines (76 loc) 3.13 kB
import { openBlock, createBlock } from 'vue'; var script = { name: 'Skeleton', props: { shape: { type: String, default: 'rectangle' }, size: { type: String, default: null }, width: { type: String, default: '100%' }, height: { type: String, default: '1rem' }, borderRadius: { type: String, default: null }, animation: { type: String, default: 'wave' } }, computed: { containerClass() { return ['p-skeleton p-component', { 'p-skeleton-circle': this.shape === 'circle', 'p-skeleton-none': this.animation === 'none' }]; }, containerStyle() { if (this.size) return {width: this.size, height: this.size, borderRadius: this.borderRadius}; else return {width: this.width, height: this.height, borderRadius: this.borderRadius}; } } }; function render(_ctx, _cache, $props, $setup, $data, $options) { return (openBlock(), createBlock("div", { style: $options.containerStyle, class: $options.containerClass }, null, 6)) } function styleInject(css, ref) { if ( ref === void 0 ) ref = {}; var insertAt = ref.insertAt; if (!css || typeof document === 'undefined') { return; } var head = document.head || document.getElementsByTagName('head')[0]; var style = document.createElement('style'); style.type = 'text/css'; if (insertAt === 'top') { if (head.firstChild) { head.insertBefore(style, head.firstChild); } else { head.appendChild(style); } } else { head.appendChild(style); } if (style.styleSheet) { style.styleSheet.cssText = css; } else { style.appendChild(document.createTextNode(css)); } } var css_248z = "\n.p-skeleton {\n position: relative;\n overflow: hidden;\n}\n.p-skeleton::after {\n content: \"\";\n -webkit-animation: p-skeleton-animation 1.2s infinite;\n animation: p-skeleton-animation 1.2s infinite;\n height: 100%;\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n -webkit-transform: translateX(-100%);\n transform: translateX(-100%);\n z-index: 1;\n}\n.p-skeleton.p-skeleton-circle {\n border-radius: 50%;\n}\n.p-skeleton-none::after {\n -webkit-animation: none;\n animation: none;\n}\n@-webkit-keyframes p-skeleton-animation {\nfrom {\n -webkit-transform: translateX(-100%);\n transform: translateX(-100%);\n}\nto {\n -webkit-transform: translateX(100%);\n transform: translateX(100%);\n}\n}\n@keyframes p-skeleton-animation {\nfrom {\n -webkit-transform: translateX(-100%);\n transform: translateX(-100%);\n}\nto {\n -webkit-transform: translateX(100%);\n transform: translateX(100%);\n}\n}\n"; styleInject(css_248z); script.render = render; export default script;