├── .browserslistrc ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── babel.config.js ├── package.json ├── postcss.config.js ├── public ├── data │ ├── countries.json │ ├── customers-large.json │ ├── customers-medium.json │ ├── customers-small.json │ ├── customers-xlarge.json │ ├── icons.json │ ├── photos.json │ ├── products-orders-small.json │ ├── products-orders.json │ ├── products-small.json │ ├── products.json │ ├── treenodes.json │ └── treetablenodes.json ├── favicon.ico ├── images │ ├── avatar │ │ ├── amyelsner.png │ │ ├── annafali.png │ │ ├── asiyajavayant.png │ │ ├── bernardodominic.png │ │ ├── elwinsharvill.png │ │ ├── ionibowcher.png │ │ ├── ivanmagalhaes.png │ │ ├── onyamalimba.png │ │ ├── profile.jpg │ │ ├── stephenshaw.png │ │ └── xuxuefeng.png │ ├── banner-primeblocks-dark.png │ ├── banner-primeblocks.png │ ├── blocks │ │ ├── hero │ │ │ └── hero-1.png │ │ └── logos │ │ │ └── hyper.svg │ ├── galleria │ │ ├── galleria1.jpg │ │ ├── galleria10.jpg │ │ ├── galleria10s.jpg │ │ ├── galleria11.jpg │ │ ├── galleria11s.jpg │ │ ├── galleria12.jpg │ │ ├── galleria12s.jpg │ │ ├── galleria13.jpg │ │ ├── galleria13s.jpg │ │ ├── galleria14.jpg │ │ ├── galleria14s.jpg │ │ ├── galleria15.jpg │ │ ├── galleria15s.jpg │ │ ├── galleria1s.jpg │ │ ├── galleria2.jpg │ │ ├── galleria2s.jpg │ │ ├── galleria3.jpg │ │ ├── galleria3s.jpg │ │ ├── galleria4.jpg │ │ ├── galleria4s.jpg │ │ ├── galleria5.jpg │ │ ├── galleria5s.jpg │ │ ├── galleria6.jpg │ │ ├── galleria6s.jpg │ │ ├── galleria7.jpg │ │ ├── galleria7s.jpg │ │ ├── galleria8.jpg │ │ ├── galleria8s.jpg │ │ ├── galleria9.jpg │ │ └── galleria9s.jpg │ ├── logo-dark.svg │ ├── logo-white.svg │ ├── nature │ │ ├── nature1.jpg │ │ ├── nature10.jpg │ │ ├── nature11.jpg │ │ ├── nature12.jpg │ │ ├── nature2.jpg │ │ ├── nature3.jpg │ │ ├── nature4.jpg │ │ ├── nature5.jpg │ │ ├── nature6.jpg │ │ ├── nature7.jpg │ │ ├── nature8.jpg │ │ └── nature9.jpg │ ├── pages │ │ ├── icon-design.svg │ │ ├── icon-devices.svg │ │ ├── icon-diamond.svg │ │ └── icon-document.svg │ ├── primevue-logo.svg │ ├── product │ │ ├── bamboo-watch.jpg │ │ ├── black-watch.jpg │ │ ├── blue-band.jpg │ │ ├── blue-t-shirt.jpg │ │ ├── bracelet.jpg │ │ ├── brown-purse.jpg │ │ ├── chakra-bracelet.jpg │ │ ├── galaxy-earrings.jpg │ │ ├── game-controller.jpg │ │ ├── gaming-set.jpg │ │ ├── gold-phone-case.jpg │ │ ├── green-earbuds.jpg │ │ ├── green-t-shirt.jpg │ │ ├── grey-t-shirt.jpg │ │ ├── headphones.jpg │ │ ├── light-green-t-shirt.jpg │ │ ├── lime-band.jpg │ │ ├── mini-speakers.jpg │ │ ├── painted-phone-case.jpg │ │ ├── pink-band.jpg │ │ ├── pink-purse.jpg │ │ ├── product-placeholder.svg │ │ ├── purple-band.jpg │ │ ├── purple-gemstone-necklace.jpg │ │ ├── purple-t-shirt.jpg │ │ ├── shoes.jpg │ │ ├── sneakers.jpg │ │ ├── teal-t-shirt.jpg │ │ ├── yellow-earbuds.jpg │ │ ├── yoga-mat.jpg │ │ └── yoga-set.jpg │ ├── themes │ │ ├── arya-blue.png │ │ ├── arya-green.png │ │ ├── arya-orange.png │ │ ├── arya-purple.png │ │ ├── bootstrap4-dark-blue.svg │ │ ├── bootstrap4-dark-purple.svg │ │ ├── bootstrap4-light-blue.svg │ │ ├── bootstrap4-light-purple.svg │ │ ├── fluent-light.png │ │ ├── lara-dark-blue.png │ │ ├── lara-dark-indigo.png │ │ ├── lara-dark-purple.png │ │ ├── lara-dark-teal.png │ │ ├── lara-light-blue.png │ │ ├── lara-light-indigo.png │ │ ├── lara-light-purple.png │ │ ├── lara-light-teal.png │ │ ├── luna-amber.png │ │ ├── luna-blue.png │ │ ├── luna-green.png │ │ ├── luna-pink.png │ │ ├── md-dark-deeppurple.svg │ │ ├── md-dark-indigo.svg │ │ ├── md-light-deeppurple.svg │ │ ├── md-light-indigo.svg │ │ ├── nova-accent.png │ │ ├── nova-alt.png │ │ ├── nova-vue.png │ │ ├── nova.png │ │ ├── rhea.png │ │ ├── saga-blue.png │ │ ├── saga-green.png │ │ ├── saga-orange.png │ │ ├── saga-purple.png │ │ ├── tailwind-light.png │ │ ├── vela-blue.png │ │ ├── vela-green.png │ │ ├── vela-orange.png │ │ └── vela-purple.png │ └── widgets │ │ └── user-card.jpg ├── index.html ├── layout │ └── images │ │ ├── asset-access.svg │ │ ├── asset-error.svg │ │ ├── asset-tier-1.svg │ │ ├── asset-tier-2.svg │ │ ├── asset-tier-3.svg │ │ ├── avatar.png │ │ ├── banner-primeblocks-dark.png │ │ ├── banner-primeblocks.png │ │ ├── enterprise.png │ │ ├── icon.svg │ │ ├── logo-blue.svg │ │ ├── logo-dark.svg │ │ ├── logo-error.svg │ │ ├── logo-orange.svg │ │ ├── logo-white.svg │ │ ├── mockup-desktop.png │ │ ├── mockup.png │ │ ├── new-badge.svg │ │ ├── peak-logo.svg │ │ ├── screen-1.png │ │ ├── screen.png │ │ ├── startup.png │ │ ├── themes │ │ ├── arya-blue.png │ │ ├── arya-green.png │ │ ├── arya-orange.png │ │ ├── arya-purple.png │ │ ├── bootstrap4-dark-blue.svg │ │ ├── bootstrap4-dark-purple.svg │ │ ├── bootstrap4-light-blue.svg │ │ ├── bootstrap4-light-purple.svg │ │ ├── fluent-light.png │ │ ├── lara-dark-blue.png │ │ ├── lara-dark-indigo.png │ │ ├── lara-dark-purple.png │ │ ├── lara-dark-teal.png │ │ ├── lara-light-blue.png │ │ ├── lara-light-indigo.png │ │ ├── lara-light-purple.png │ │ ├── lara-light-teal.png │ │ ├── luna-amber.png │ │ ├── luna-blue.png │ │ ├── luna-green.png │ │ ├── luna-pink.png │ │ ├── md-dark-deeppurple.svg │ │ ├── md-dark-indigo.svg │ │ ├── md-light-deeppurple.svg │ │ ├── md-light-indigo.svg │ │ ├── saga-blue.png │ │ ├── saga-green.png │ │ ├── saga-orange.png │ │ ├── saga-purple.png │ │ ├── tailwind-light.png │ │ ├── vela-blue.png │ │ ├── vela-green.png │ │ ├── vela-orange.png │ │ └── vela-purple.png │ │ └── widgets │ │ └── user-card.jpg ├── themes │ ├── arya-blue │ │ └── theme.css │ ├── arya-green │ │ └── theme.css │ ├── arya-orange │ │ └── theme.css │ ├── arya-purple │ │ └── theme.css │ ├── bootstrap4-dark-blue │ │ └── theme.css │ ├── bootstrap4-dark-purple │ │ └── theme.css │ ├── bootstrap4-light-blue │ │ └── theme.css │ ├── bootstrap4-light-purple │ │ └── theme.css │ ├── fluent-light │ │ └── theme.css │ ├── lara-dark-blue │ │ └── theme.css │ ├── lara-dark-indigo │ │ └── theme.css │ ├── lara-dark-purple │ │ └── theme.css │ ├── lara-dark-teal │ │ └── theme.css │ ├── lara-light-blue │ │ └── theme.css │ ├── lara-light-indigo │ │ └── theme.css │ ├── lara-light-purple │ │ └── theme.css │ ├── lara-light-teal │ │ └── theme.css │ ├── luna-amber │ │ └── theme.css │ ├── luna-blue │ │ └── theme.css │ ├── luna-green │ │ └── theme.css │ ├── luna-pink │ │ └── theme.css │ ├── md-dark-deeppurple │ │ ├── fonts │ │ │ ├── roboto-v20-latin-ext_latin-500.woff │ │ │ ├── roboto-v20-latin-ext_latin-500.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-700.woff │ │ │ ├── roboto-v20-latin-ext_latin-700.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-regular.woff │ │ │ └── roboto-v20-latin-ext_latin-regular.woff2 │ │ └── theme.css │ ├── md-dark-indigo │ │ ├── fonts │ │ │ ├── roboto-v20-latin-ext_latin-500.woff │ │ │ ├── roboto-v20-latin-ext_latin-500.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-700.woff │ │ │ ├── roboto-v20-latin-ext_latin-700.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-regular.woff │ │ │ └── roboto-v20-latin-ext_latin-regular.woff2 │ │ └── theme.css │ ├── md-light-deeppurple │ │ ├── fonts │ │ │ ├── roboto-v20-latin-ext_latin-500.woff │ │ │ ├── roboto-v20-latin-ext_latin-500.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-700.woff │ │ │ ├── roboto-v20-latin-ext_latin-700.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-regular.woff │ │ │ └── roboto-v20-latin-ext_latin-regular.woff2 │ │ └── theme.css │ ├── md-light-indigo │ │ ├── fonts │ │ │ ├── roboto-v20-latin-ext_latin-500.woff │ │ │ ├── roboto-v20-latin-ext_latin-500.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-700.woff │ │ │ ├── roboto-v20-latin-ext_latin-700.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-regular.woff │ │ │ └── roboto-v20-latin-ext_latin-regular.woff2 │ │ └── theme.css │ ├── mdc-dark-deeppurple │ │ ├── fonts │ │ │ ├── roboto-v20-latin-ext_latin-500.woff │ │ │ ├── roboto-v20-latin-ext_latin-500.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-700.woff │ │ │ ├── roboto-v20-latin-ext_latin-700.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-regular.woff │ │ │ └── roboto-v20-latin-ext_latin-regular.woff2 │ │ └── theme.css │ ├── mdc-dark-indigo │ │ ├── fonts │ │ │ ├── roboto-v20-latin-ext_latin-500.woff │ │ │ ├── roboto-v20-latin-ext_latin-500.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-700.woff │ │ │ ├── roboto-v20-latin-ext_latin-700.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-regular.woff │ │ │ └── roboto-v20-latin-ext_latin-regular.woff2 │ │ └── theme.css │ ├── mdc-light-deeppurple │ │ ├── fonts │ │ │ ├── roboto-v20-latin-ext_latin-500.woff │ │ │ ├── roboto-v20-latin-ext_latin-500.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-700.woff │ │ │ ├── roboto-v20-latin-ext_latin-700.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-regular.woff │ │ │ └── roboto-v20-latin-ext_latin-regular.woff2 │ │ └── theme.css │ ├── mdc-light-indigo │ │ ├── fonts │ │ │ ├── roboto-v20-latin-ext_latin-500.woff │ │ │ ├── roboto-v20-latin-ext_latin-500.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-700.woff │ │ │ ├── roboto-v20-latin-ext_latin-700.woff2 │ │ │ ├── roboto-v20-latin-ext_latin-regular.woff │ │ │ └── roboto-v20-latin-ext_latin-regular.woff2 │ │ └── theme.css │ ├── nova-accent │ │ └── theme.css │ ├── nova-alt │ │ └── theme.css │ ├── nova-vue │ │ └── theme.css │ ├── nova │ │ └── theme.css │ ├── rhea │ │ └── theme.css │ ├── saga-blue │ │ └── theme.css │ ├── saga-green │ │ └── theme.css │ ├── saga-orange │ │ └── theme.css │ ├── saga-purple │ │ └── theme.css │ ├── tailwind-light │ │ ├── fonts │ │ │ ├── Inter-Bold.woff │ │ │ ├── Inter-Bold.woff2 │ │ │ ├── Inter-Light.woff │ │ │ ├── Inter-Light.woff2 │ │ │ ├── Inter-Medium.woff │ │ │ ├── Inter-Medium.woff2 │ │ │ ├── Inter-Regular.woff │ │ │ ├── Inter-Regular.woff2 │ │ │ ├── Inter-SemiBold.woff │ │ │ └── Inter-SemiBold.woff2 │ │ └── theme.css │ ├── vela-blue │ │ └── theme.css │ ├── vela-green │ │ └── theme.css │ ├── vela-orange │ │ └── theme.css │ └── vela-purple │ │ └── theme.css └── upload.php ├── src ├── App.scss ├── App.vue ├── AppCodeHighlight.js ├── AppConfig.vue ├── AppEventBus.js ├── AppFooter.vue ├── AppMenu.vue ├── AppSubmenu.vue ├── AppTopbar.vue ├── AppWrapper.vue ├── BlockViewer.vue ├── assets │ ├── demo │ │ ├── badges.scss │ │ ├── documentation.scss │ │ ├── flags │ │ │ ├── flag_placeholder.png │ │ │ ├── flags.css │ │ │ └── flags_responsive.png │ │ └── items.scss │ └── styles │ │ ├── _overrides.scss │ │ ├── _variables.scss │ │ ├── layout.scss │ │ └── sass │ │ ├── _config.scss │ │ ├── _content.scss │ │ ├── _footer.scss │ │ ├── _layout.scss │ │ ├── _main.scss │ │ ├── _menu.scss │ │ ├── _mixins.scss │ │ ├── _responsive.scss │ │ ├── _splash.scss │ │ ├── _topbar.scss │ │ ├── _typography.scss │ │ └── _utils.scss ├── components │ ├── BlocksDemo.vue │ ├── ButtonDemo.vue │ ├── ChartDemo.vue │ ├── Dashboard.vue │ ├── Documentation.vue │ ├── EmptyPage.vue │ ├── FileDemo.vue │ ├── FloatLabelDemo.vue │ ├── FormLayoutDemo.vue │ ├── IconsDemo.vue │ ├── InputDemo.vue │ ├── InvalidStateDemo.vue │ ├── ListDemo.vue │ ├── MediaDemo.vue │ ├── MenuDemo.vue │ ├── MessagesDemo.vue │ ├── MiscDemo.vue │ ├── OverlayDemo.vue │ ├── PanelsDemo.vue │ ├── TableDemo.vue │ ├── TreeDemo.vue │ └── menu │ │ ├── ConfirmationDemo.vue │ │ ├── PaymentDemo.vue │ │ ├── PersonalDemo.vue │ │ └── SeatDemo.vue ├── main.js ├── pages │ ├── Access.vue │ ├── CrudDemo.vue │ ├── Error.vue │ ├── LandingDemo.vue │ ├── Login.vue │ ├── NotFound.vue │ └── TimelineDemo.vue ├── router.js └── service │ ├── CountryService.js │ ├── CustomerService.js │ ├── NodeService.js │ ├── PhotoService.js │ └── ProductService.js └── vue.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/data/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/data/countries.json -------------------------------------------------------------------------------- /public/data/customers-large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/data/customers-large.json -------------------------------------------------------------------------------- /public/data/customers-medium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/data/customers-medium.json -------------------------------------------------------------------------------- /public/data/customers-small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/data/customers-small.json -------------------------------------------------------------------------------- /public/data/customers-xlarge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/data/customers-xlarge.json -------------------------------------------------------------------------------- /public/data/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/data/icons.json -------------------------------------------------------------------------------- /public/data/photos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/data/photos.json -------------------------------------------------------------------------------- /public/data/products-orders-small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/data/products-orders-small.json -------------------------------------------------------------------------------- /public/data/products-orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/data/products-orders.json -------------------------------------------------------------------------------- /public/data/products-small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/data/products-small.json -------------------------------------------------------------------------------- /public/data/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/data/products.json -------------------------------------------------------------------------------- /public/data/treenodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/data/treenodes.json -------------------------------------------------------------------------------- /public/data/treetablenodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/data/treetablenodes.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/avatar/amyelsner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/avatar/amyelsner.png -------------------------------------------------------------------------------- /public/images/avatar/annafali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/avatar/annafali.png -------------------------------------------------------------------------------- /public/images/avatar/asiyajavayant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/avatar/asiyajavayant.png -------------------------------------------------------------------------------- /public/images/avatar/bernardodominic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/avatar/bernardodominic.png -------------------------------------------------------------------------------- /public/images/avatar/elwinsharvill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/avatar/elwinsharvill.png -------------------------------------------------------------------------------- /public/images/avatar/ionibowcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/avatar/ionibowcher.png -------------------------------------------------------------------------------- /public/images/avatar/ivanmagalhaes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/avatar/ivanmagalhaes.png -------------------------------------------------------------------------------- /public/images/avatar/onyamalimba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/avatar/onyamalimba.png -------------------------------------------------------------------------------- /public/images/avatar/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/avatar/profile.jpg -------------------------------------------------------------------------------- /public/images/avatar/stephenshaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/avatar/stephenshaw.png -------------------------------------------------------------------------------- /public/images/avatar/xuxuefeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/avatar/xuxuefeng.png -------------------------------------------------------------------------------- /public/images/banner-primeblocks-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/banner-primeblocks-dark.png -------------------------------------------------------------------------------- /public/images/banner-primeblocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/banner-primeblocks.png -------------------------------------------------------------------------------- /public/images/blocks/hero/hero-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/blocks/hero/hero-1.png -------------------------------------------------------------------------------- /public/images/blocks/logos/hyper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/blocks/logos/hyper.svg -------------------------------------------------------------------------------- /public/images/galleria/galleria1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria1.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria10.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria10s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria10s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria11.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria11s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria11s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria12.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria12s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria12s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria13.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria13s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria13s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria14.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria14s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria14s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria15.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria15s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria15s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria1s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria1s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria2.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria2s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria2s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria3.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria3s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria3s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria4.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria4s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria4s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria5.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria5s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria5s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria6.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria6s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria6s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria7.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria7s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria7s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria8.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria8s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria8s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria9.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria9s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/galleria/galleria9s.jpg -------------------------------------------------------------------------------- /public/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/logo-dark.svg -------------------------------------------------------------------------------- /public/images/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/logo-white.svg -------------------------------------------------------------------------------- /public/images/nature/nature1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/nature/nature1.jpg -------------------------------------------------------------------------------- /public/images/nature/nature10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/nature/nature10.jpg -------------------------------------------------------------------------------- /public/images/nature/nature11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/nature/nature11.jpg -------------------------------------------------------------------------------- /public/images/nature/nature12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/nature/nature12.jpg -------------------------------------------------------------------------------- /public/images/nature/nature2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/nature/nature2.jpg -------------------------------------------------------------------------------- /public/images/nature/nature3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/nature/nature3.jpg -------------------------------------------------------------------------------- /public/images/nature/nature4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/nature/nature4.jpg -------------------------------------------------------------------------------- /public/images/nature/nature5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/nature/nature5.jpg -------------------------------------------------------------------------------- /public/images/nature/nature6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/nature/nature6.jpg -------------------------------------------------------------------------------- /public/images/nature/nature7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/nature/nature7.jpg -------------------------------------------------------------------------------- /public/images/nature/nature8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/nature/nature8.jpg -------------------------------------------------------------------------------- /public/images/nature/nature9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/nature/nature9.jpg -------------------------------------------------------------------------------- /public/images/pages/icon-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/pages/icon-design.svg -------------------------------------------------------------------------------- /public/images/pages/icon-devices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/pages/icon-devices.svg -------------------------------------------------------------------------------- /public/images/pages/icon-diamond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/pages/icon-diamond.svg -------------------------------------------------------------------------------- /public/images/pages/icon-document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/pages/icon-document.svg -------------------------------------------------------------------------------- /public/images/primevue-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/primevue-logo.svg -------------------------------------------------------------------------------- /public/images/product/bamboo-watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/bamboo-watch.jpg -------------------------------------------------------------------------------- /public/images/product/black-watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/black-watch.jpg -------------------------------------------------------------------------------- /public/images/product/blue-band.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/blue-band.jpg -------------------------------------------------------------------------------- /public/images/product/blue-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/blue-t-shirt.jpg -------------------------------------------------------------------------------- /public/images/product/bracelet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/bracelet.jpg -------------------------------------------------------------------------------- /public/images/product/brown-purse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/brown-purse.jpg -------------------------------------------------------------------------------- /public/images/product/chakra-bracelet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/chakra-bracelet.jpg -------------------------------------------------------------------------------- /public/images/product/galaxy-earrings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/galaxy-earrings.jpg -------------------------------------------------------------------------------- /public/images/product/game-controller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/game-controller.jpg -------------------------------------------------------------------------------- /public/images/product/gaming-set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/gaming-set.jpg -------------------------------------------------------------------------------- /public/images/product/gold-phone-case.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/gold-phone-case.jpg -------------------------------------------------------------------------------- /public/images/product/green-earbuds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/green-earbuds.jpg -------------------------------------------------------------------------------- /public/images/product/green-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/green-t-shirt.jpg -------------------------------------------------------------------------------- /public/images/product/grey-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/grey-t-shirt.jpg -------------------------------------------------------------------------------- /public/images/product/headphones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/headphones.jpg -------------------------------------------------------------------------------- /public/images/product/light-green-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/light-green-t-shirt.jpg -------------------------------------------------------------------------------- /public/images/product/lime-band.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/lime-band.jpg -------------------------------------------------------------------------------- /public/images/product/mini-speakers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/mini-speakers.jpg -------------------------------------------------------------------------------- /public/images/product/painted-phone-case.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/painted-phone-case.jpg -------------------------------------------------------------------------------- /public/images/product/pink-band.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/pink-band.jpg -------------------------------------------------------------------------------- /public/images/product/pink-purse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/pink-purse.jpg -------------------------------------------------------------------------------- /public/images/product/product-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/product-placeholder.svg -------------------------------------------------------------------------------- /public/images/product/purple-band.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/purple-band.jpg -------------------------------------------------------------------------------- /public/images/product/purple-gemstone-necklace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/purple-gemstone-necklace.jpg -------------------------------------------------------------------------------- /public/images/product/purple-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/purple-t-shirt.jpg -------------------------------------------------------------------------------- /public/images/product/shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/shoes.jpg -------------------------------------------------------------------------------- /public/images/product/sneakers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/sneakers.jpg -------------------------------------------------------------------------------- /public/images/product/teal-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/teal-t-shirt.jpg -------------------------------------------------------------------------------- /public/images/product/yellow-earbuds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/yellow-earbuds.jpg -------------------------------------------------------------------------------- /public/images/product/yoga-mat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/yoga-mat.jpg -------------------------------------------------------------------------------- /public/images/product/yoga-set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/product/yoga-set.jpg -------------------------------------------------------------------------------- /public/images/themes/arya-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/arya-blue.png -------------------------------------------------------------------------------- /public/images/themes/arya-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/arya-green.png -------------------------------------------------------------------------------- /public/images/themes/arya-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/arya-orange.png -------------------------------------------------------------------------------- /public/images/themes/arya-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/arya-purple.png -------------------------------------------------------------------------------- /public/images/themes/bootstrap4-dark-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/bootstrap4-dark-blue.svg -------------------------------------------------------------------------------- /public/images/themes/bootstrap4-dark-purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/bootstrap4-dark-purple.svg -------------------------------------------------------------------------------- /public/images/themes/bootstrap4-light-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/bootstrap4-light-blue.svg -------------------------------------------------------------------------------- /public/images/themes/bootstrap4-light-purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/bootstrap4-light-purple.svg -------------------------------------------------------------------------------- /public/images/themes/fluent-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/fluent-light.png -------------------------------------------------------------------------------- /public/images/themes/lara-dark-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/lara-dark-blue.png -------------------------------------------------------------------------------- /public/images/themes/lara-dark-indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/lara-dark-indigo.png -------------------------------------------------------------------------------- /public/images/themes/lara-dark-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/lara-dark-purple.png -------------------------------------------------------------------------------- /public/images/themes/lara-dark-teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/lara-dark-teal.png -------------------------------------------------------------------------------- /public/images/themes/lara-light-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/lara-light-blue.png -------------------------------------------------------------------------------- /public/images/themes/lara-light-indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/lara-light-indigo.png -------------------------------------------------------------------------------- /public/images/themes/lara-light-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/lara-light-purple.png -------------------------------------------------------------------------------- /public/images/themes/lara-light-teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/lara-light-teal.png -------------------------------------------------------------------------------- /public/images/themes/luna-amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/luna-amber.png -------------------------------------------------------------------------------- /public/images/themes/luna-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/luna-blue.png -------------------------------------------------------------------------------- /public/images/themes/luna-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/luna-green.png -------------------------------------------------------------------------------- /public/images/themes/luna-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/luna-pink.png -------------------------------------------------------------------------------- /public/images/themes/md-dark-deeppurple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/md-dark-deeppurple.svg -------------------------------------------------------------------------------- /public/images/themes/md-dark-indigo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/md-dark-indigo.svg -------------------------------------------------------------------------------- /public/images/themes/md-light-deeppurple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/md-light-deeppurple.svg -------------------------------------------------------------------------------- /public/images/themes/md-light-indigo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/md-light-indigo.svg -------------------------------------------------------------------------------- /public/images/themes/nova-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/nova-accent.png -------------------------------------------------------------------------------- /public/images/themes/nova-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/nova-alt.png -------------------------------------------------------------------------------- /public/images/themes/nova-vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/nova-vue.png -------------------------------------------------------------------------------- /public/images/themes/nova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/nova.png -------------------------------------------------------------------------------- /public/images/themes/rhea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/rhea.png -------------------------------------------------------------------------------- /public/images/themes/saga-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/saga-blue.png -------------------------------------------------------------------------------- /public/images/themes/saga-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/saga-green.png -------------------------------------------------------------------------------- /public/images/themes/saga-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/saga-orange.png -------------------------------------------------------------------------------- /public/images/themes/saga-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/saga-purple.png -------------------------------------------------------------------------------- /public/images/themes/tailwind-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/tailwind-light.png -------------------------------------------------------------------------------- /public/images/themes/vela-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/vela-blue.png -------------------------------------------------------------------------------- /public/images/themes/vela-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/vela-green.png -------------------------------------------------------------------------------- /public/images/themes/vela-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/vela-orange.png -------------------------------------------------------------------------------- /public/images/themes/vela-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/themes/vela-purple.png -------------------------------------------------------------------------------- /public/images/widgets/user-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/images/widgets/user-card.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/index.html -------------------------------------------------------------------------------- /public/layout/images/asset-access.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/asset-access.svg -------------------------------------------------------------------------------- /public/layout/images/asset-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/asset-error.svg -------------------------------------------------------------------------------- /public/layout/images/asset-tier-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/asset-tier-1.svg -------------------------------------------------------------------------------- /public/layout/images/asset-tier-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/asset-tier-2.svg -------------------------------------------------------------------------------- /public/layout/images/asset-tier-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/asset-tier-3.svg -------------------------------------------------------------------------------- /public/layout/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/avatar.png -------------------------------------------------------------------------------- /public/layout/images/banner-primeblocks-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/banner-primeblocks-dark.png -------------------------------------------------------------------------------- /public/layout/images/banner-primeblocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/banner-primeblocks.png -------------------------------------------------------------------------------- /public/layout/images/enterprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/enterprise.png -------------------------------------------------------------------------------- /public/layout/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/icon.svg -------------------------------------------------------------------------------- /public/layout/images/logo-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/logo-blue.svg -------------------------------------------------------------------------------- /public/layout/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/logo-dark.svg -------------------------------------------------------------------------------- /public/layout/images/logo-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/logo-error.svg -------------------------------------------------------------------------------- /public/layout/images/logo-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/logo-orange.svg -------------------------------------------------------------------------------- /public/layout/images/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/logo-white.svg -------------------------------------------------------------------------------- /public/layout/images/mockup-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/mockup-desktop.png -------------------------------------------------------------------------------- /public/layout/images/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/mockup.png -------------------------------------------------------------------------------- /public/layout/images/new-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/new-badge.svg -------------------------------------------------------------------------------- /public/layout/images/peak-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/peak-logo.svg -------------------------------------------------------------------------------- /public/layout/images/screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/screen-1.png -------------------------------------------------------------------------------- /public/layout/images/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/screen.png -------------------------------------------------------------------------------- /public/layout/images/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/startup.png -------------------------------------------------------------------------------- /public/layout/images/themes/arya-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/arya-blue.png -------------------------------------------------------------------------------- /public/layout/images/themes/arya-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/arya-green.png -------------------------------------------------------------------------------- /public/layout/images/themes/arya-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/arya-orange.png -------------------------------------------------------------------------------- /public/layout/images/themes/arya-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/arya-purple.png -------------------------------------------------------------------------------- /public/layout/images/themes/bootstrap4-dark-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/bootstrap4-dark-blue.svg -------------------------------------------------------------------------------- /public/layout/images/themes/bootstrap4-dark-purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/bootstrap4-dark-purple.svg -------------------------------------------------------------------------------- /public/layout/images/themes/bootstrap4-light-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/bootstrap4-light-blue.svg -------------------------------------------------------------------------------- /public/layout/images/themes/bootstrap4-light-purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/bootstrap4-light-purple.svg -------------------------------------------------------------------------------- /public/layout/images/themes/fluent-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/fluent-light.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-dark-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/lara-dark-blue.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-dark-indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/lara-dark-indigo.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-dark-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/lara-dark-purple.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-dark-teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/lara-dark-teal.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-light-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/lara-light-blue.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-light-indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/lara-light-indigo.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-light-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/lara-light-purple.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-light-teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/lara-light-teal.png -------------------------------------------------------------------------------- /public/layout/images/themes/luna-amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/luna-amber.png -------------------------------------------------------------------------------- /public/layout/images/themes/luna-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/luna-blue.png -------------------------------------------------------------------------------- /public/layout/images/themes/luna-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/luna-green.png -------------------------------------------------------------------------------- /public/layout/images/themes/luna-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/luna-pink.png -------------------------------------------------------------------------------- /public/layout/images/themes/md-dark-deeppurple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/md-dark-deeppurple.svg -------------------------------------------------------------------------------- /public/layout/images/themes/md-dark-indigo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/md-dark-indigo.svg -------------------------------------------------------------------------------- /public/layout/images/themes/md-light-deeppurple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/md-light-deeppurple.svg -------------------------------------------------------------------------------- /public/layout/images/themes/md-light-indigo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/md-light-indigo.svg -------------------------------------------------------------------------------- /public/layout/images/themes/saga-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/saga-blue.png -------------------------------------------------------------------------------- /public/layout/images/themes/saga-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/saga-green.png -------------------------------------------------------------------------------- /public/layout/images/themes/saga-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/saga-orange.png -------------------------------------------------------------------------------- /public/layout/images/themes/saga-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/saga-purple.png -------------------------------------------------------------------------------- /public/layout/images/themes/tailwind-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/tailwind-light.png -------------------------------------------------------------------------------- /public/layout/images/themes/vela-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/vela-blue.png -------------------------------------------------------------------------------- /public/layout/images/themes/vela-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/vela-green.png -------------------------------------------------------------------------------- /public/layout/images/themes/vela-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/vela-orange.png -------------------------------------------------------------------------------- /public/layout/images/themes/vela-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/themes/vela-purple.png -------------------------------------------------------------------------------- /public/layout/images/widgets/user-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/layout/images/widgets/user-card.jpg -------------------------------------------------------------------------------- /public/themes/arya-blue/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/arya-blue/theme.css -------------------------------------------------------------------------------- /public/themes/arya-green/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/arya-green/theme.css -------------------------------------------------------------------------------- /public/themes/arya-orange/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/arya-orange/theme.css -------------------------------------------------------------------------------- /public/themes/arya-purple/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/arya-purple/theme.css -------------------------------------------------------------------------------- /public/themes/bootstrap4-dark-blue/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/bootstrap4-dark-blue/theme.css -------------------------------------------------------------------------------- /public/themes/bootstrap4-dark-purple/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/bootstrap4-dark-purple/theme.css -------------------------------------------------------------------------------- /public/themes/bootstrap4-light-blue/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/bootstrap4-light-blue/theme.css -------------------------------------------------------------------------------- /public/themes/bootstrap4-light-purple/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/bootstrap4-light-purple/theme.css -------------------------------------------------------------------------------- /public/themes/fluent-light/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/fluent-light/theme.css -------------------------------------------------------------------------------- /public/themes/lara-dark-blue/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/lara-dark-blue/theme.css -------------------------------------------------------------------------------- /public/themes/lara-dark-indigo/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/lara-dark-indigo/theme.css -------------------------------------------------------------------------------- /public/themes/lara-dark-purple/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/lara-dark-purple/theme.css -------------------------------------------------------------------------------- /public/themes/lara-dark-teal/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/lara-dark-teal/theme.css -------------------------------------------------------------------------------- /public/themes/lara-light-blue/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/lara-light-blue/theme.css -------------------------------------------------------------------------------- /public/themes/lara-light-indigo/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/lara-light-indigo/theme.css -------------------------------------------------------------------------------- /public/themes/lara-light-purple/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/lara-light-purple/theme.css -------------------------------------------------------------------------------- /public/themes/lara-light-teal/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/lara-light-teal/theme.css -------------------------------------------------------------------------------- /public/themes/luna-amber/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/luna-amber/theme.css -------------------------------------------------------------------------------- /public/themes/luna-blue/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/luna-blue/theme.css -------------------------------------------------------------------------------- /public/themes/luna-green/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/luna-green/theme.css -------------------------------------------------------------------------------- /public/themes/luna-pink/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/luna-pink/theme.css -------------------------------------------------------------------------------- /public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff -------------------------------------------------------------------------------- /public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff2 -------------------------------------------------------------------------------- /public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff -------------------------------------------------------------------------------- /public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff2 -------------------------------------------------------------------------------- /public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff -------------------------------------------------------------------------------- /public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/md-dark-deeppurple/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-deeppurple/theme.css -------------------------------------------------------------------------------- /public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff -------------------------------------------------------------------------------- /public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff2 -------------------------------------------------------------------------------- /public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-700.woff -------------------------------------------------------------------------------- /public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-700.woff2 -------------------------------------------------------------------------------- /public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff -------------------------------------------------------------------------------- /public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/md-dark-indigo/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-dark-indigo/theme.css -------------------------------------------------------------------------------- /public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff -------------------------------------------------------------------------------- /public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff2 -------------------------------------------------------------------------------- /public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff -------------------------------------------------------------------------------- /public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff2 -------------------------------------------------------------------------------- /public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff -------------------------------------------------------------------------------- /public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/md-light-deeppurple/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-deeppurple/theme.css -------------------------------------------------------------------------------- /public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff -------------------------------------------------------------------------------- /public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff2 -------------------------------------------------------------------------------- /public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-700.woff -------------------------------------------------------------------------------- /public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-700.woff2 -------------------------------------------------------------------------------- /public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff -------------------------------------------------------------------------------- /public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/md-light-indigo/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/md-light-indigo/theme.css -------------------------------------------------------------------------------- /public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff -------------------------------------------------------------------------------- /public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff -------------------------------------------------------------------------------- /public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff -------------------------------------------------------------------------------- /public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-dark-deeppurple/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-deeppurple/theme.css -------------------------------------------------------------------------------- /public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff -------------------------------------------------------------------------------- /public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-700.woff -------------------------------------------------------------------------------- /public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-700.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff -------------------------------------------------------------------------------- /public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-dark-indigo/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-dark-indigo/theme.css -------------------------------------------------------------------------------- /public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff -------------------------------------------------------------------------------- /public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff -------------------------------------------------------------------------------- /public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-700.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff -------------------------------------------------------------------------------- /public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-light-deeppurple/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-deeppurple/theme.css -------------------------------------------------------------------------------- /public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff -------------------------------------------------------------------------------- /public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-700.woff -------------------------------------------------------------------------------- /public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-700.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff -------------------------------------------------------------------------------- /public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-light-indigo/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/mdc-light-indigo/theme.css -------------------------------------------------------------------------------- /public/themes/nova-accent/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/nova-accent/theme.css -------------------------------------------------------------------------------- /public/themes/nova-alt/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/nova-alt/theme.css -------------------------------------------------------------------------------- /public/themes/nova-vue/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/nova-vue/theme.css -------------------------------------------------------------------------------- /public/themes/nova/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/nova/theme.css -------------------------------------------------------------------------------- /public/themes/rhea/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/rhea/theme.css -------------------------------------------------------------------------------- /public/themes/saga-blue/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/saga-blue/theme.css -------------------------------------------------------------------------------- /public/themes/saga-green/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/saga-green/theme.css -------------------------------------------------------------------------------- /public/themes/saga-orange/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/saga-orange/theme.css -------------------------------------------------------------------------------- /public/themes/saga-purple/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/saga-purple/theme.css -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/tailwind-light/fonts/Inter-Bold.woff -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/tailwind-light/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/tailwind-light/fonts/Inter-Light.woff -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/tailwind-light/fonts/Inter-Light.woff2 -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/tailwind-light/fonts/Inter-Medium.woff -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/tailwind-light/fonts/Inter-Medium.woff2 -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/tailwind-light/fonts/Inter-Regular.woff -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/tailwind-light/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/tailwind-light/fonts/Inter-SemiBold.woff -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/tailwind-light/fonts/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /public/themes/tailwind-light/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/tailwind-light/theme.css -------------------------------------------------------------------------------- /public/themes/vela-blue/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/vela-blue/theme.css -------------------------------------------------------------------------------- /public/themes/vela-green/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/vela-green/theme.css -------------------------------------------------------------------------------- /public/themes/vela-orange/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/vela-orange/theme.css -------------------------------------------------------------------------------- /public/themes/vela-purple/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/public/themes/vela-purple/theme.css -------------------------------------------------------------------------------- /public/upload.php: -------------------------------------------------------------------------------- 1 | Fake Upload Process

'; ?> -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/AppCodeHighlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/AppCodeHighlight.js -------------------------------------------------------------------------------- /src/AppConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/AppConfig.vue -------------------------------------------------------------------------------- /src/AppEventBus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/AppEventBus.js -------------------------------------------------------------------------------- /src/AppFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/AppFooter.vue -------------------------------------------------------------------------------- /src/AppMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/AppMenu.vue -------------------------------------------------------------------------------- /src/AppSubmenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/AppSubmenu.vue -------------------------------------------------------------------------------- /src/AppTopbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/AppTopbar.vue -------------------------------------------------------------------------------- /src/AppWrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/AppWrapper.vue -------------------------------------------------------------------------------- /src/BlockViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/BlockViewer.vue -------------------------------------------------------------------------------- /src/assets/demo/badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/demo/badges.scss -------------------------------------------------------------------------------- /src/assets/demo/documentation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/demo/documentation.scss -------------------------------------------------------------------------------- /src/assets/demo/flags/flag_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/demo/flags/flag_placeholder.png -------------------------------------------------------------------------------- /src/assets/demo/flags/flags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/demo/flags/flags.css -------------------------------------------------------------------------------- /src/assets/demo/flags/flags_responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/demo/flags/flags_responsive.png -------------------------------------------------------------------------------- /src/assets/demo/items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/demo/items.scss -------------------------------------------------------------------------------- /src/assets/styles/_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/_overrides.scss -------------------------------------------------------------------------------- /src/assets/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/_variables.scss -------------------------------------------------------------------------------- /src/assets/styles/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/layout.scss -------------------------------------------------------------------------------- /src/assets/styles/sass/_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/sass/_config.scss -------------------------------------------------------------------------------- /src/assets/styles/sass/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/sass/_content.scss -------------------------------------------------------------------------------- /src/assets/styles/sass/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/sass/_footer.scss -------------------------------------------------------------------------------- /src/assets/styles/sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/sass/_layout.scss -------------------------------------------------------------------------------- /src/assets/styles/sass/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/sass/_main.scss -------------------------------------------------------------------------------- /src/assets/styles/sass/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/sass/_menu.scss -------------------------------------------------------------------------------- /src/assets/styles/sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/sass/_mixins.scss -------------------------------------------------------------------------------- /src/assets/styles/sass/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/sass/_responsive.scss -------------------------------------------------------------------------------- /src/assets/styles/sass/_splash.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/sass/_splash.scss -------------------------------------------------------------------------------- /src/assets/styles/sass/_topbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/sass/_topbar.scss -------------------------------------------------------------------------------- /src/assets/styles/sass/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/sass/_typography.scss -------------------------------------------------------------------------------- /src/assets/styles/sass/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/assets/styles/sass/_utils.scss -------------------------------------------------------------------------------- /src/components/BlocksDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/BlocksDemo.vue -------------------------------------------------------------------------------- /src/components/ButtonDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/ButtonDemo.vue -------------------------------------------------------------------------------- /src/components/ChartDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/ChartDemo.vue -------------------------------------------------------------------------------- /src/components/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/Dashboard.vue -------------------------------------------------------------------------------- /src/components/Documentation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/Documentation.vue -------------------------------------------------------------------------------- /src/components/EmptyPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/EmptyPage.vue -------------------------------------------------------------------------------- /src/components/FileDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/FileDemo.vue -------------------------------------------------------------------------------- /src/components/FloatLabelDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/FloatLabelDemo.vue -------------------------------------------------------------------------------- /src/components/FormLayoutDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/FormLayoutDemo.vue -------------------------------------------------------------------------------- /src/components/IconsDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/IconsDemo.vue -------------------------------------------------------------------------------- /src/components/InputDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/InputDemo.vue -------------------------------------------------------------------------------- /src/components/InvalidStateDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/InvalidStateDemo.vue -------------------------------------------------------------------------------- /src/components/ListDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/ListDemo.vue -------------------------------------------------------------------------------- /src/components/MediaDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/MediaDemo.vue -------------------------------------------------------------------------------- /src/components/MenuDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/MenuDemo.vue -------------------------------------------------------------------------------- /src/components/MessagesDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/MessagesDemo.vue -------------------------------------------------------------------------------- /src/components/MiscDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/MiscDemo.vue -------------------------------------------------------------------------------- /src/components/OverlayDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/OverlayDemo.vue -------------------------------------------------------------------------------- /src/components/PanelsDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/PanelsDemo.vue -------------------------------------------------------------------------------- /src/components/TableDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/TableDemo.vue -------------------------------------------------------------------------------- /src/components/TreeDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/TreeDemo.vue -------------------------------------------------------------------------------- /src/components/menu/ConfirmationDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/menu/ConfirmationDemo.vue -------------------------------------------------------------------------------- /src/components/menu/PaymentDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/menu/PaymentDemo.vue -------------------------------------------------------------------------------- /src/components/menu/PersonalDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/menu/PersonalDemo.vue -------------------------------------------------------------------------------- /src/components/menu/SeatDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/components/menu/SeatDemo.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/Access.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/pages/Access.vue -------------------------------------------------------------------------------- /src/pages/CrudDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/pages/CrudDemo.vue -------------------------------------------------------------------------------- /src/pages/Error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/pages/Error.vue -------------------------------------------------------------------------------- /src/pages/LandingDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/pages/LandingDemo.vue -------------------------------------------------------------------------------- /src/pages/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/pages/Login.vue -------------------------------------------------------------------------------- /src/pages/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/pages/NotFound.vue -------------------------------------------------------------------------------- /src/pages/TimelineDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/pages/TimelineDemo.vue -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/router.js -------------------------------------------------------------------------------- /src/service/CountryService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/service/CountryService.js -------------------------------------------------------------------------------- /src/service/CustomerService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/service/CustomerService.js -------------------------------------------------------------------------------- /src/service/NodeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/service/NodeService.js -------------------------------------------------------------------------------- /src/service/PhotoService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/service/PhotoService.js -------------------------------------------------------------------------------- /src/service/ProductService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/src/service/ProductService.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/HEAD/vue.config.js --------------------------------------------------------------------------------