├── .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: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { 4 | node: true, 5 | }, 6 | extends: ['plugin:vue/vue3-essential', 'eslint:recommended'], 7 | parserOptions: { 8 | parser: 'babel-eslint', 9 | }, 10 | rules: { 11 | 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', 12 | 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', 13 | }, 14 | }; 15 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | /resources 5 | /components 6 | package-lock.json 7 | 8 | # misc 9 | /.sass-cache 10 | /connect.lock 11 | /coverage 12 | /libpeerconnection.log 13 | npm-debug.log 14 | testem.log 15 | /typings 16 | 17 | # local env files 18 | .env.local 19 | .env.*.local 20 | 21 | # Log files 22 | npm-debug.log* 23 | yarn-debug.log* 24 | yarn-error.log* 25 | 26 | # Editor directories and files 27 | .idea 28 | .vscode 29 | *.suo 30 | *.ntvs* 31 | *.njsproj 32 | *.sln 33 | *.sw* 34 | 35 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018-2022 PrimeTek 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Sakai Admin Template for Vue 2 | 3 | ### Live Preview 4 | 5 | Visit [Sakai Vue](https://www.primefaces.org/sakai-vue) website for a live preview. 6 | 7 | ### Getting Started 8 | Sakai is an application template for Vue based on the [Vue CLI](https://cli.vuejs.org/) that provides out-of-the-box standard 9 | tooling for Vue projects. To get started, clone this repository from GitHub and install the dependencies with npm or yarn. 10 | 11 | ``` 12 | npm install 13 | ``` 14 | 15 | or 16 | 17 | ``` 18 | yarn 19 | ``` 20 | 21 | Next step is running the application using the serve script and navigate to **http://localhost:8080/** to view the application. 22 | That is it, you may now start with the development of your application using the Sakai template.
23 | 24 | ``` 25 | npm run serve 26 | ``` 27 | 28 | ### Vue CLI Scripts 29 | Following commands are derived from create-app-app. 30 | ``` 31 | "npm run serve": Starts the development server 32 | "npm run build": Builds the application for deployment. 33 | "npm run lint": Executes the lint checks. 34 | "npm run test:unit": Runs the tests. 35 | ``` 36 | 37 | ### Structure 38 | Sakai consists of 2 main parts; the application layout and the resources. **App.vue** inside src folder is the main component containing the template for the base layout whereas required resources such as SASS structure for the layout are placed inside the **src/assets/** folder. 39 | 40 | ### Layout Components 41 | Main layout is the template of the **App.vue**, it is divided into a couple of child components such as topbar, menu and footer. Here is template of the 42 | **App.vue** component that implements the logic such as menu state, layout modes and so on. 43 | 44 | ### Menu 45 | Menu is a separate component defined in **AppMenu.vue** file based on PrimeVue MenuModel API. In order to define the menuitems, 46 | navigate to data section of **App.vue** file and define your own model as a nested structure using the **menu** property. 47 | 48 | ### Dependencies 49 | Dependencies of Sakai are listed below and needs to be added to package.json. 50 | 51 | ```json 52 | { 53 | "primevue": "~3.12.2", 54 | "primeicons": "~5.0.0", 55 | "primeflex": "~3.1.2", 56 | } 57 | ``` 58 | 59 | ### PrimeVue Theme 60 | Sakai uses the free Saga, Arya and Vela themes which are distributed within PrimeVue, however it can be used with any PrimeVue theme as well such as material, tailwind and bootstrap as layout colors are derived from the theme used via CSS variables. 61 | 62 | ### SASS Variables 63 | In case you'd like to customize the layout variables, open **_variables.scss** file under src/layout folder. The list is pretty short as majority of the variables are derived from the PrimeVue theme being used. 64 | 65 | **src/assets/_variables.scss** 66 | ```css 67 | $fontSize:1rem; 68 | $borderRadius:12px; 69 | $transitionDuration:.2s; 70 | ``` 71 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sakai-vue", 3 | "version": "3.4.2-SNAPSHOT", 4 | "repository": { 5 | "type": "git", 6 | "url": "https://github.com/primefaces/sakai-vue.git" 7 | }, 8 | "license": "MIT", 9 | "scripts": { 10 | "serve": "vue-cli-service serve", 11 | "build": "vue-cli-service build", 12 | "lint": "vue-cli-service lint", 13 | "test:unit": "vue-cli-service test:unit" 14 | }, 15 | "devDependencies": { 16 | "@vue/cli-plugin-babel": "~4.5.0", 17 | "@vue/cli-plugin-eslint": "~4.5.0", 18 | "@vue/cli-plugin-router": "~4.5.0", 19 | "@vue/cli-service": "~4.5.0", 20 | "@vue/compiler-sfc": "^3.0.0", 21 | "babel-eslint": "^10.1.0", 22 | "eslint": "^6.7.2", 23 | "eslint-plugin-vue": "^7.0.0", 24 | "sass": "^1.45.0", 25 | "sass-loader": "^8.0.2" 26 | }, 27 | "dependencies": { 28 | "chart.js": "3.3.2", 29 | "core-js": "^3.6.5", 30 | "primeflex": "^3.1.2", 31 | "primeicons": "^5.0.0", 32 | "primevue": "^3.12.2", 33 | "prismjs": "1.9.0", 34 | "vue": "3.2.9", 35 | "vue-router": "^4.0.0-0" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | autoprefixer: {} 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /public/data/customers-small.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "id": 1000, 5 | "name": "James Butt", 6 | "country": { 7 | "name": "Algeria", 8 | "code": "dz" 9 | }, 10 | "company": "Benton, John B Jr", 11 | "date": "2015-09-13", 12 | "status": "unqualified", 13 | "activity": 17, 14 | "representative": { 15 | "name": "Ioni Bowcher", 16 | "image": "ionibowcher.png" 17 | } 18 | }, 19 | { 20 | "id": 1001, 21 | "name": "Josephine Darakjy", 22 | "country": { 23 | "name": "Egypt", 24 | "code": "eg" 25 | }, 26 | "company": "Chanay, Jeffrey A Esq", 27 | "date": "2019-02-09", 28 | "status": "proposal", 29 | "activity": 0, 30 | "representative": { 31 | "name": "Amy Elsner", 32 | "image": "amyelsner.png" 33 | } 34 | }, 35 | { 36 | "id": 1002, 37 | "name": "Art Venere", 38 | "country": { 39 | "name": "Panama", 40 | "code": "pa" 41 | }, 42 | "company": "Chemel, James L Cpa", 43 | "date": "2017-05-13", 44 | "status": "qualified", 45 | "activity": 63, 46 | "representative": { 47 | "name": "Asiya Javayant", 48 | "image": "asiyajavayant.png" 49 | } 50 | }, 51 | { 52 | "id": 1003, 53 | "name": "Lenna Paprocki", 54 | "country": { 55 | "name": "Slovenia", 56 | "code": "si" 57 | }, 58 | "company": "Feltz Printing Service", 59 | "date": "2020-09-15", 60 | "status": "new", 61 | "activity": 37, 62 | "representative": { 63 | "name": "Xuxue Feng", 64 | "image": "xuxuefeng.png" 65 | } 66 | }, 67 | { 68 | "id": 1004, 69 | "name": "Donette Foller", 70 | "country": { 71 | "name": "South Africa", 72 | "code": "za" 73 | }, 74 | "company": "Printing Dimensions", 75 | "date": "2016-05-20", 76 | "status": "proposal", 77 | "activity": 33, 78 | "representative": { 79 | "name": "Asiya Javayant", 80 | "image": "asiyajavayant.png" 81 | } 82 | }, 83 | { 84 | "id": 1005, 85 | "name": "Simona Morasca", 86 | "country": { 87 | "name": "Egypt", 88 | "code": "eg" 89 | }, 90 | "company": "Chapman, Ross E Esq", 91 | "date": "2018-02-16", 92 | "status": "qualified", 93 | "activity": 68, 94 | "representative": { 95 | "name": "Ivan Magalhaes", 96 | "image": "ivanmagalhaes.png" 97 | } 98 | }, 99 | { 100 | "id": 1006, 101 | "name": "Mitsue Tollner", 102 | "country": { 103 | "name": "Paraguay", 104 | "code": "py" 105 | }, 106 | "company": "Morlong Associates", 107 | "date": "2018-02-19", 108 | "status": "renewal", 109 | "activity": 54, 110 | "representative": { 111 | "name": "Ivan Magalhaes", 112 | "image": "ivanmagalhaes.png" 113 | } 114 | }, 115 | { 116 | "id": 1007, 117 | "name": "Leota Dilliard", 118 | "country": { 119 | "name": "Serbia", 120 | "code": "rs" 121 | }, 122 | "company": "Commercial Press", 123 | "date": "2019-08-13", 124 | "status": "renewal", 125 | "activity": 69, 126 | "representative": { 127 | "name": "Onyama Limba", 128 | "image": "onyamalimba.png" 129 | } 130 | }, 131 | { 132 | "id": 1008, 133 | "name": "Sage Wieser", 134 | "country": { 135 | "name": "Egypt", 136 | "code": "eg" 137 | }, 138 | "company": "Truhlar And Truhlar Attys", 139 | "date": "2018-11-21", 140 | "status": "unqualified", 141 | "activity": 76, 142 | "representative": { 143 | "name": "Ivan Magalhaes", 144 | "image": "ivanmagalhaes.png" 145 | } 146 | }, 147 | { 148 | "id": 1009, 149 | "name": "Kris Marrier", 150 | "country": { 151 | "name": "Mexico", 152 | "code": "mx" 153 | }, 154 | "company": "King, Christopher A Esq", 155 | "date": "2015-07-07", 156 | "status": "proposal", 157 | "activity": 3, 158 | "representative": { 159 | "name": "Onyama Limba", 160 | "image": "onyamalimba.png" 161 | } 162 | } 163 | ] 164 | } -------------------------------------------------------------------------------- /public/data/photos.json: -------------------------------------------------------------------------------- 1 | { 2 | "data":[ 3 | { 4 | "itemImageSrc": "images/galleria/galleria1.jpg", 5 | "thumbnailImageSrc": "images/galleria/galleria1s.jpg", 6 | "alt": "Description for Image 1", 7 | "title": "Title 1" 8 | }, 9 | { 10 | "itemImageSrc": "images/galleria/galleria2.jpg", 11 | "thumbnailImageSrc": "images/galleria/galleria2s.jpg", 12 | "alt": "Description for Image 2", 13 | "title": "Title 2" 14 | }, 15 | { 16 | "itemImageSrc": "images/galleria/galleria3.jpg", 17 | "thumbnailImageSrc": "images/galleria/galleria3s.jpg", 18 | "alt": "Description for Image 3", 19 | "title": "Title 3" 20 | }, 21 | { 22 | "itemImageSrc": "images/galleria/galleria4.jpg", 23 | "thumbnailImageSrc": "images/galleria/galleria4s.jpg", 24 | "alt": "Description for Image 4", 25 | "title": "Title 4" 26 | }, 27 | { 28 | "itemImageSrc": "images/galleria/galleria5.jpg", 29 | "thumbnailImageSrc": "images/galleria/galleria5s.jpg", 30 | "alt": "Description for Image 5", 31 | "title": "Title 5" 32 | }, 33 | { 34 | "itemImageSrc": "images/galleria/galleria6.jpg", 35 | "thumbnailImageSrc": "images/galleria/galleria6s.jpg", 36 | "alt": "Description for Image 6", 37 | "title": "Title 6" 38 | }, 39 | { 40 | "itemImageSrc": "images/galleria/galleria7.jpg", 41 | "thumbnailImageSrc": "images/galleria/galleria7s.jpg", 42 | "alt": "Description for Image 7", 43 | "title": "Title 7" 44 | }, 45 | { 46 | "itemImageSrc": "images/galleria/galleria8.jpg", 47 | "thumbnailImageSrc": "images/galleria/galleria8s.jpg", 48 | "alt": "Description for Image 8", 49 | "title": "Title 8" 50 | }, 51 | { 52 | "itemImageSrc": "images/galleria/galleria9.jpg", 53 | "thumbnailImageSrc": "images/galleria/galleria9s.jpg", 54 | "alt": "Description for Image 9", 55 | "title": "Title 9" 56 | }, 57 | { 58 | "itemImageSrc": "images/galleria/galleria10.jpg", 59 | "thumbnailImageSrc": "images/galleria/galleria10s.jpg", 60 | "alt": "Description for Image 10", 61 | "title": "Title 10" 62 | }, 63 | { 64 | "itemImageSrc": "images/galleria/galleria11.jpg", 65 | "thumbnailImageSrc": "images/galleria/galleria11s.jpg", 66 | "alt": "Description for Image 11", 67 | "title": "Title 11" 68 | }, 69 | { 70 | "itemImageSrc": "images/galleria/galleria12.jpg", 71 | "thumbnailImageSrc": "images/galleria/galleria12s.jpg", 72 | "alt": "Description for Image 12", 73 | "title": "Title 12" 74 | }, 75 | { 76 | "itemImageSrc": "images/galleria/galleria13.jpg", 77 | "thumbnailImageSrc": "images/galleria/galleria13s.jpg", 78 | "alt": "Description for Image 13", 79 | "title": "Title 13" 80 | }, 81 | { 82 | "itemImageSrc": "images/galleria/galleria14.jpg", 83 | "thumbnailImageSrc": "images/galleria/galleria14s.jpg", 84 | "alt": "Description for Image 14", 85 | "title": "Title 14" 86 | }, 87 | { 88 | "itemImageSrc": "images/galleria/galleria15.jpg", 89 | "thumbnailImageSrc": "images/galleria/galleria15s.jpg", 90 | "alt": "Description for Image 15", 91 | "title": "Title 15" 92 | } 93 | ] 94 | } 95 | -------------------------------------------------------------------------------- /public/data/products-small.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "id": "1000", 5 | "code": "f230fh0g3", 6 | "name": "Bamboo Watch", 7 | "description": "Product Description", 8 | "image": "bamboo-watch.jpg", 9 | "price": 65, 10 | "category": "Accessories", 11 | "quantity": 24, 12 | "inventoryStatus": "INSTOCK", 13 | "rating": 5 14 | }, 15 | { 16 | "id": "1001", 17 | "code": "nvklal433", 18 | "name": "Black Watch", 19 | "description": "Product Description", 20 | "image": "black-watch.jpg", 21 | "price": 72, 22 | "category": "Accessories", 23 | "quantity": 61, 24 | "inventoryStatus": "INSTOCK", 25 | "rating": 4 26 | }, 27 | { 28 | "id": "1002", 29 | "code": "zz21cz3c1", 30 | "name": "Blue Band", 31 | "description": "Product Description", 32 | "image": "blue-band.jpg", 33 | "price": 79, 34 | "category": "Fitness", 35 | "quantity": 2, 36 | "inventoryStatus": "LOWSTOCK", 37 | "rating": 3 38 | }, 39 | { 40 | "id": "1003", 41 | "code": "244wgerg2", 42 | "name": "Blue T-Shirt", 43 | "description": "Product Description", 44 | "image": "blue-t-shirt.jpg", 45 | "price": 29, 46 | "category": "Clothing", 47 | "quantity": 25, 48 | "inventoryStatus": "INSTOCK", 49 | "rating": 5 50 | }, 51 | { 52 | "id": "1004", 53 | "code": "h456wer53", 54 | "name": "Bracelet", 55 | "description": "Product Description", 56 | "image": "bracelet.jpg", 57 | "price": 15, 58 | "category": "Accessories", 59 | "quantity": 73, 60 | "inventoryStatus": "INSTOCK", 61 | "rating": 4 62 | }, 63 | { 64 | "id": "1005", 65 | "code": "av2231fwg", 66 | "name": "Brown Purse", 67 | "description": "Product Description", 68 | "image": "brown-purse.jpg", 69 | "price": 120, 70 | "category": "Accessories", 71 | "quantity": 0, 72 | "inventoryStatus": "OUTOFSTOCK", 73 | "rating": 4 74 | }, 75 | { 76 | "id": "1006", 77 | "code": "bib36pfvm", 78 | "name": "Chakra Bracelet", 79 | "description": "Product Description", 80 | "image": "chakra-bracelet.jpg", 81 | "price": 32, 82 | "category": "Accessories", 83 | "quantity": 5, 84 | "inventoryStatus": "LOWSTOCK", 85 | "rating": 3 86 | }, 87 | { 88 | "id": "1007", 89 | "code": "mbvjkgip5", 90 | "name": "Galaxy Earrings", 91 | "description": "Product Description", 92 | "image": "galaxy-earrings.jpg", 93 | "price": 34, 94 | "category": "Accessories", 95 | "quantity": 23, 96 | "inventoryStatus": "INSTOCK", 97 | "rating": 5 98 | }, 99 | { 100 | "id": "1008", 101 | "code": "vbb124btr", 102 | "name": "Game Controller", 103 | "description": "Product Description", 104 | "image": "game-controller.jpg", 105 | "price": 99, 106 | "category": "Electronics", 107 | "quantity": 2, 108 | "inventoryStatus": "LOWSTOCK", 109 | "rating": 4 110 | }, 111 | { 112 | "id": "1009", 113 | "code": "cm230f032", 114 | "name": "Gaming Set", 115 | "description": "Product Description", 116 | "image": "gaming-set.jpg", 117 | "price": 299, 118 | "category": "Electronics", 119 | "quantity": 63, 120 | "inventoryStatus": "INSTOCK", 121 | "rating": 3 122 | } 123 | ] 124 | } -------------------------------------------------------------------------------- /public/data/treenodes.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": [ 3 | { 4 | "key": "0", 5 | "label": "Documents", 6 | "data": "Documents Folder", 7 | "icon": "pi pi-fw pi-inbox", 8 | "children": [{ 9 | "key": "0-0", 10 | "label": "Work", 11 | "data": "Work Folder", 12 | "icon": "pi pi-fw pi-cog", 13 | "children": [{ "key": "0-0-0", "label": "Expenses.doc", "icon": "pi pi-fw pi-file", "data": "Expenses Document" }, { "key": "0-0-1", "label": "Resume.doc", "icon": "pi pi-fw pi-file", "data": "Resume Document" }] 14 | }, 15 | { 16 | "key": "0-1", 17 | "label": "Home", 18 | "data": "Home Folder", 19 | "icon": "pi pi-fw pi-home", 20 | "children": [{ "key": "0-1-0", "label": "Invoices.txt", "icon": "pi pi-fw pi-file", "data": "Invoices for this month" }] 21 | }] 22 | }, 23 | { 24 | "key": "1", 25 | "label": "Events", 26 | "data": "Events Folder", 27 | "icon": "pi pi-fw pi-calendar", 28 | "children": [ 29 | { "key": "1-0", "label": "Meeting", "icon": "pi pi-fw pi-calendar-plus", "data": "Meeting" }, 30 | { "key": "1-1", "label": "Product Launch", "icon": "pi pi-fw pi-calendar-plus", "data": "Product Launch" }, 31 | { "key": "1-2", "label": "Report Review", "icon": "pi pi-fw pi-calendar-plus", "data": "Report Review" }] 32 | }, 33 | { 34 | "key": "2", 35 | "label": "Movies", 36 | "data": "Movies Folder", 37 | "icon": "pi pi-fw pi-star", 38 | "children": [{ 39 | "key": "2-0", 40 | "icon": "pi pi-fw pi-star", 41 | "label": "Al Pacino", 42 | "data": "Pacino Movies", 43 | "children": [{ "key": "2-0-0", "label": "Scarface", "icon": "pi pi-fw pi-video", "data": "Scarface Movie" }, { "key": "2-0-1", "label": "Serpico", "icon": "pi pi-fw pi-video", "data": "Serpico Movie" }] 44 | }, 45 | { 46 | "key": "2-1", 47 | "label": "Robert De Niro", 48 | "icon": "pi pi-fw pi-star", 49 | "data": "De Niro Movies", 50 | "children": [{ "key": "2-1-0", "label": "Goodfellas", "icon": "pi pi-fw pi-video", "data": "Goodfellas Movie" }, { "key": "2-1-1", "label": "Untouchables", "icon": "pi pi-fw pi-video", "data": "Untouchables Movie" }] 51 | }] 52 | } 53 | ] 54 | } 55 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/favicon.ico -------------------------------------------------------------------------------- /public/images/avatar/amyelsner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/avatar/amyelsner.png -------------------------------------------------------------------------------- /public/images/avatar/annafali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/avatar/annafali.png -------------------------------------------------------------------------------- /public/images/avatar/asiyajavayant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/avatar/asiyajavayant.png -------------------------------------------------------------------------------- /public/images/avatar/bernardodominic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/avatar/bernardodominic.png -------------------------------------------------------------------------------- /public/images/avatar/elwinsharvill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/avatar/elwinsharvill.png -------------------------------------------------------------------------------- /public/images/avatar/ionibowcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/avatar/ionibowcher.png -------------------------------------------------------------------------------- /public/images/avatar/ivanmagalhaes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/avatar/ivanmagalhaes.png -------------------------------------------------------------------------------- /public/images/avatar/onyamalimba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/avatar/onyamalimba.png -------------------------------------------------------------------------------- /public/images/avatar/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/avatar/profile.jpg -------------------------------------------------------------------------------- /public/images/avatar/stephenshaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/avatar/stephenshaw.png -------------------------------------------------------------------------------- /public/images/avatar/xuxuefeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/avatar/xuxuefeng.png -------------------------------------------------------------------------------- /public/images/banner-primeblocks-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/banner-primeblocks-dark.png -------------------------------------------------------------------------------- /public/images/banner-primeblocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/banner-primeblocks.png -------------------------------------------------------------------------------- /public/images/blocks/hero/hero-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/blocks/hero/hero-1.png -------------------------------------------------------------------------------- /public/images/blocks/logos/hyper.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/galleria/galleria1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria1.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria10.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria10s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria10s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria11.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria11s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria11s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria12.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria12s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria12s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria13.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria13s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria13s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria14.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria14s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria14s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria15.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria15s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria15s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria1s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria1s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria2.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria2s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria2s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria3.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria3s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria3s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria4.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria4s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria4s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria5.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria5s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria5s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria6.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria6s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria6s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria7.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria7s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria7s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria8.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria8s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria8s.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria9.jpg -------------------------------------------------------------------------------- /public/images/galleria/galleria9s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/galleria/galleria9s.jpg -------------------------------------------------------------------------------- /public/images/nature/nature1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/nature/nature1.jpg -------------------------------------------------------------------------------- /public/images/nature/nature10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/nature/nature10.jpg -------------------------------------------------------------------------------- /public/images/nature/nature11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/nature/nature11.jpg -------------------------------------------------------------------------------- /public/images/nature/nature12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/nature/nature12.jpg -------------------------------------------------------------------------------- /public/images/nature/nature2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/nature/nature2.jpg -------------------------------------------------------------------------------- /public/images/nature/nature3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/nature/nature3.jpg -------------------------------------------------------------------------------- /public/images/nature/nature4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/nature/nature4.jpg -------------------------------------------------------------------------------- /public/images/nature/nature5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/nature/nature5.jpg -------------------------------------------------------------------------------- /public/images/nature/nature6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/nature/nature6.jpg -------------------------------------------------------------------------------- /public/images/nature/nature7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/nature/nature7.jpg -------------------------------------------------------------------------------- /public/images/nature/nature8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/nature/nature8.jpg -------------------------------------------------------------------------------- /public/images/nature/nature9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/nature/nature9.jpg -------------------------------------------------------------------------------- /public/images/pages/icon-design.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/images/pages/icon-diamond.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/images/pages/icon-document.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/images/primevue-logo.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/images/product/bamboo-watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/bamboo-watch.jpg -------------------------------------------------------------------------------- /public/images/product/black-watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/black-watch.jpg -------------------------------------------------------------------------------- /public/images/product/blue-band.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/blue-band.jpg -------------------------------------------------------------------------------- /public/images/product/blue-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/blue-t-shirt.jpg -------------------------------------------------------------------------------- /public/images/product/bracelet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/bracelet.jpg -------------------------------------------------------------------------------- /public/images/product/brown-purse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/brown-purse.jpg -------------------------------------------------------------------------------- /public/images/product/chakra-bracelet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/chakra-bracelet.jpg -------------------------------------------------------------------------------- /public/images/product/galaxy-earrings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/galaxy-earrings.jpg -------------------------------------------------------------------------------- /public/images/product/game-controller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/game-controller.jpg -------------------------------------------------------------------------------- /public/images/product/gaming-set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/gaming-set.jpg -------------------------------------------------------------------------------- /public/images/product/gold-phone-case.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/gold-phone-case.jpg -------------------------------------------------------------------------------- /public/images/product/green-earbuds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/green-earbuds.jpg -------------------------------------------------------------------------------- /public/images/product/green-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/green-t-shirt.jpg -------------------------------------------------------------------------------- /public/images/product/grey-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/grey-t-shirt.jpg -------------------------------------------------------------------------------- /public/images/product/headphones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/headphones.jpg -------------------------------------------------------------------------------- /public/images/product/light-green-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/light-green-t-shirt.jpg -------------------------------------------------------------------------------- /public/images/product/lime-band.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/lime-band.jpg -------------------------------------------------------------------------------- /public/images/product/mini-speakers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/mini-speakers.jpg -------------------------------------------------------------------------------- /public/images/product/painted-phone-case.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/painted-phone-case.jpg -------------------------------------------------------------------------------- /public/images/product/pink-band.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/pink-band.jpg -------------------------------------------------------------------------------- /public/images/product/pink-purse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/pink-purse.jpg -------------------------------------------------------------------------------- /public/images/product/product-placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/images/product/purple-band.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/purple-band.jpg -------------------------------------------------------------------------------- /public/images/product/purple-gemstone-necklace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/purple-gemstone-necklace.jpg -------------------------------------------------------------------------------- /public/images/product/purple-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/purple-t-shirt.jpg -------------------------------------------------------------------------------- /public/images/product/shoes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/shoes.jpg -------------------------------------------------------------------------------- /public/images/product/sneakers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/sneakers.jpg -------------------------------------------------------------------------------- /public/images/product/teal-t-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/teal-t-shirt.jpg -------------------------------------------------------------------------------- /public/images/product/yellow-earbuds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/yellow-earbuds.jpg -------------------------------------------------------------------------------- /public/images/product/yoga-mat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/yoga-mat.jpg -------------------------------------------------------------------------------- /public/images/product/yoga-set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/product/yoga-set.jpg -------------------------------------------------------------------------------- /public/images/themes/arya-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/arya-blue.png -------------------------------------------------------------------------------- /public/images/themes/arya-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/arya-green.png -------------------------------------------------------------------------------- /public/images/themes/arya-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/arya-orange.png -------------------------------------------------------------------------------- /public/images/themes/arya-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/arya-purple.png -------------------------------------------------------------------------------- /public/images/themes/bootstrap4-dark-blue.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/images/themes/bootstrap4-dark-purple.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/images/themes/bootstrap4-light-blue.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/images/themes/bootstrap4-light-purple.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/images/themes/fluent-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/fluent-light.png -------------------------------------------------------------------------------- /public/images/themes/lara-dark-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/lara-dark-blue.png -------------------------------------------------------------------------------- /public/images/themes/lara-dark-indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/lara-dark-indigo.png -------------------------------------------------------------------------------- /public/images/themes/lara-dark-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/lara-dark-purple.png -------------------------------------------------------------------------------- /public/images/themes/lara-dark-teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/lara-dark-teal.png -------------------------------------------------------------------------------- /public/images/themes/lara-light-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/lara-light-blue.png -------------------------------------------------------------------------------- /public/images/themes/lara-light-indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/lara-light-indigo.png -------------------------------------------------------------------------------- /public/images/themes/lara-light-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/lara-light-purple.png -------------------------------------------------------------------------------- /public/images/themes/lara-light-teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/lara-light-teal.png -------------------------------------------------------------------------------- /public/images/themes/luna-amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/luna-amber.png -------------------------------------------------------------------------------- /public/images/themes/luna-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/luna-blue.png -------------------------------------------------------------------------------- /public/images/themes/luna-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/luna-green.png -------------------------------------------------------------------------------- /public/images/themes/luna-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/luna-pink.png -------------------------------------------------------------------------------- /public/images/themes/md-dark-deeppurple.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/images/themes/md-dark-indigo.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/images/themes/md-light-deeppurple.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/images/themes/md-light-indigo.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/images/themes/nova-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/nova-accent.png -------------------------------------------------------------------------------- /public/images/themes/nova-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/nova-alt.png -------------------------------------------------------------------------------- /public/images/themes/nova-vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/nova-vue.png -------------------------------------------------------------------------------- /public/images/themes/nova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/nova.png -------------------------------------------------------------------------------- /public/images/themes/rhea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/rhea.png -------------------------------------------------------------------------------- /public/images/themes/saga-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/saga-blue.png -------------------------------------------------------------------------------- /public/images/themes/saga-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/saga-green.png -------------------------------------------------------------------------------- /public/images/themes/saga-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/saga-orange.png -------------------------------------------------------------------------------- /public/images/themes/saga-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/saga-purple.png -------------------------------------------------------------------------------- /public/images/themes/tailwind-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/tailwind-light.png -------------------------------------------------------------------------------- /public/images/themes/vela-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/vela-blue.png -------------------------------------------------------------------------------- /public/images/themes/vela-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/vela-green.png -------------------------------------------------------------------------------- /public/images/themes/vela-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/vela-orange.png -------------------------------------------------------------------------------- /public/images/themes/vela-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/themes/vela-purple.png -------------------------------------------------------------------------------- /public/images/widgets/user-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/images/widgets/user-card.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | 13 | 14 |Vue 3 and PrimeVue 3
7 | 8 |Sakai is an application template for Vue based on the Vue CLI that provides out-of-the-box standard 10 | tooling for Vue projects. To get started, clone the repository from GitHub and install the dependencies with npm or yarn.
11 |
12 | npm install
13 |
14 |
15 |
16 | or
17 |
18 |
19 | yarn
20 |
21 |
22 |
23 | Next step is running the application using the serve script and navigate to http://localhost:8080/ to view the application. 24 | That is it, you may now start with the development of your application using the Sakai template.
25 | 26 |
27 | npm run serve
28 |
29 |
30 |
31 | Following commands are derived from create-app-app.
33 |
34 | "npm run serve": Starts the development server
35 | "npm run build": Builds the application for deployment.
36 | "npm run lint": Executes the lint checks.
37 | "npm run test:unit": Runs the tests.
38 |
39 |
40 |
41 | Sakai consists of 2 main parts; the application layout and the resources. App.vue inside src folder is the main component containing the template for the base layout 43 | whereas required resources such as SASS structure for the layout are placed inside the src/assets/ folder.
44 | 45 |Main layout is the template of the App.vue, it is divided into a couple of child components such as topbar, menu and footer. Here is template of the 47 | App.vue component that implements the logic such as menu state, layout modes and so on. 48 |
49 | 50 |Menu is a separate component defined in AppMenu.vue file based on PrimeVue MenuModel API. In order to define the menuitems, 52 | navigate to data section of App.vue file and define your own model as a nested structure using the menu property.
53 | 54 |Dependencies of Sakai are listed below and needs to be added to package.json.
56 | 57 |
58 |
59 | {
60 | "primevue": "~3.11.0",
61 | "primeicons": "~5.0.0",
62 | "primeflex": "~3.1.2",
63 | }
64 |
65 |
66 |
67 | Sakai uses the free Saga, Arya and Vela themes which are distributed within PrimeVue, however it can be used with any PrimeVue theme as well such as material, tailwind and bootstrap.
69 | 70 |In case you'd like to customize the layout variables, open _variables.scss file under src/layout folder. Saving the changes 72 | will be reflected instantly at your browser.
73 | 74 |
76 |
77 | $fontSize:1rem;
78 | $borderRadius:12px;
79 | $transitionDuration:.2s;
80 |
81 |
82 | Use this page to start from scratch and place your custom content.
7 |PrimeVue components internally use PrimeIcons library, the official icons suite from PrimeTek.
6 | 7 |PrimeIcons is available at npm, run the following command to download it to your project.
9 | 10 |
11 | npm install primeicons --save
12 |
13 |
14 |
15 | PrimeIcons use the pi pi-{icon} syntax such as pi pi-check. 17 | A standalone icon can be displayed using an element like i or span
18 | 19 |
20 | <i class="pi pi-check"></i>
21 | <i class="pi pi-times"></i>
22 |
23 |
24 |
25 |
26 |
27 |
28 | Size of the icons can easily be changed using font-size property.
30 | 31 |
32 | <i class="pi pi-check"></i>
33 |
34 |
35 |
36 |
37 |
38 |
39 | <i class="pi pi-check" style="font-size: 2rem"></i>
40 |
41 |
42 |
43 |
44 |
45 | Special pi-spin class applies continuous rotation to an icon.
47 |
48 | <i class="pi pi-spin pi-spinner" style="font-size: 2rem"></i>
49 |
50 |
51 |
52 |
53 |
54 | PrimeIcons constants API is provided to easily choose an icon with typescript e.g. when defining a menu model.
56 |
57 | <Menu :model="items" />
58 |
59 |
60 |
61 |
62 | import {PrimeIcons} from 'primevue/api';
63 |
64 | export default {
65 | data() {
66 | return {
67 | items: [
68 | {
69 | label: 'Update',
70 | icon: PrimeIcons.REFRESH,
71 | to: '/update'
72 | },
73 | {
74 | label: 'Delete',
75 | icon: PrimeIcons.TIMES,
76 | to: '/delete'
77 | }
78 | ]
79 | }
80 | }
81 | }
82 |
83 |
84 |
85 | Here is the current list of PrimeIcons, more icons are added periodically. You may also request new icons at the issue tracker.
87 | 88 |Confirmation Component Content via Child Route
5 |Payment Component Content via Child Route
5 |Personal Component Content via Child Route
5 |Seat Component Content via Child Route
5 |Frequently Asked Questions
20 |Solution Center
31 |Permission Manager
42 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae numquam deserunt 25 | quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque quas!
26 | 27 | 28 |