├── .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 | 2 | 3 | -------------------------------------------------------------------------------- /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 | 3 | 4 | noun_design_135895 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /public/images/pages/icon-diamond.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | icon-diamond 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /public/images/pages/icon-document.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | icon-document 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/images/primevue-logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | head 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /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 | 3 | Artboard 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /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 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/images/themes/bootstrap4-dark-purple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/images/themes/bootstrap4-light-blue.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/images/themes/bootstrap4-light-purple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | 3 | 4 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/images/themes/md-dark-indigo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 2 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/images/themes/md-light-deeppurple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/images/themes/md-light-indigo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 2 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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 | Sakai Vue 15 | 16 | 17 | 18 |
19 |
20 |
21 |
22 |
23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /public/layout/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/avatar.png -------------------------------------------------------------------------------- /public/layout/images/banner-primeblocks-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/banner-primeblocks-dark.png -------------------------------------------------------------------------------- /public/layout/images/banner-primeblocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/banner-primeblocks.png -------------------------------------------------------------------------------- /public/layout/images/enterprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/enterprise.png -------------------------------------------------------------------------------- /public/layout/images/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/layout/images/mockup-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/mockup-desktop.png -------------------------------------------------------------------------------- /public/layout/images/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/mockup.png -------------------------------------------------------------------------------- /public/layout/images/new-badge.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/layout/images/screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/screen-1.png -------------------------------------------------------------------------------- /public/layout/images/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/screen.png -------------------------------------------------------------------------------- /public/layout/images/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/startup.png -------------------------------------------------------------------------------- /public/layout/images/themes/arya-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/arya-blue.png -------------------------------------------------------------------------------- /public/layout/images/themes/arya-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/arya-green.png -------------------------------------------------------------------------------- /public/layout/images/themes/arya-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/arya-orange.png -------------------------------------------------------------------------------- /public/layout/images/themes/arya-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/arya-purple.png -------------------------------------------------------------------------------- /public/layout/images/themes/bootstrap4-dark-blue.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/layout/images/themes/bootstrap4-dark-purple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/layout/images/themes/bootstrap4-light-blue.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/layout/images/themes/bootstrap4-light-purple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/layout/images/themes/fluent-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/fluent-light.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-dark-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/lara-dark-blue.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-dark-indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/lara-dark-indigo.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-dark-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/lara-dark-purple.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-dark-teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/lara-dark-teal.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-light-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/lara-light-blue.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-light-indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/lara-light-indigo.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-light-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/lara-light-purple.png -------------------------------------------------------------------------------- /public/layout/images/themes/lara-light-teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/lara-light-teal.png -------------------------------------------------------------------------------- /public/layout/images/themes/luna-amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/luna-amber.png -------------------------------------------------------------------------------- /public/layout/images/themes/luna-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/luna-blue.png -------------------------------------------------------------------------------- /public/layout/images/themes/luna-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/luna-green.png -------------------------------------------------------------------------------- /public/layout/images/themes/luna-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/luna-pink.png -------------------------------------------------------------------------------- /public/layout/images/themes/md-dark-deeppurple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/layout/images/themes/md-dark-indigo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 2 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/layout/images/themes/md-light-deeppurple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/layout/images/themes/md-light-indigo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 2 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/layout/images/themes/saga-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/saga-blue.png -------------------------------------------------------------------------------- /public/layout/images/themes/saga-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/saga-green.png -------------------------------------------------------------------------------- /public/layout/images/themes/saga-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/saga-orange.png -------------------------------------------------------------------------------- /public/layout/images/themes/saga-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/saga-purple.png -------------------------------------------------------------------------------- /public/layout/images/themes/tailwind-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/tailwind-light.png -------------------------------------------------------------------------------- /public/layout/images/themes/vela-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/vela-blue.png -------------------------------------------------------------------------------- /public/layout/images/themes/vela-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/vela-green.png -------------------------------------------------------------------------------- /public/layout/images/themes/vela-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/vela-orange.png -------------------------------------------------------------------------------- /public/layout/images/themes/vela-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/themes/vela-purple.png -------------------------------------------------------------------------------- /public/layout/images/widgets/user-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/layout/images/widgets/user-card.jpg -------------------------------------------------------------------------------- /public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/md-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/md-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/md-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/md-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/mdc-dark-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/mdc-dark-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/mdc-light-deeppurple/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/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/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/mdc-light-indigo/fonts/roboto-v20-latin-ext_latin-regular.woff2 -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/tailwind-light/fonts/Inter-Bold.woff -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/tailwind-light/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/tailwind-light/fonts/Inter-Light.woff -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/tailwind-light/fonts/Inter-Light.woff2 -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/tailwind-light/fonts/Inter-Medium.woff -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/tailwind-light/fonts/Inter-Medium.woff2 -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/tailwind-light/fonts/Inter-Regular.woff -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/tailwind-light/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/tailwind-light/fonts/Inter-SemiBold.woff -------------------------------------------------------------------------------- /public/themes/tailwind-light/fonts/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/public/themes/tailwind-light/fonts/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /public/upload.php: -------------------------------------------------------------------------------- 1 | Fake Upload Process

'; ?> -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- 1 | .p-toast.p-toast-top-right { 2 | z-index: 1000; 3 | top: 7rem; 4 | } -------------------------------------------------------------------------------- /src/AppCodeHighlight.js: -------------------------------------------------------------------------------- 1 | import Prism from 'prismjs'; 2 | 3 | const CodeHighlight = { 4 | beforeMount(el, binding) { 5 | const modifiers = binding.modifiers; 6 | const value = binding.value; 7 | 8 | if (modifiers.script || value === 'script') 9 | el.className = 'language-javascript'; 10 | else if (modifiers.css || value === 'css') 11 | el.className = 'language-css'; 12 | else 13 | el.className = 'language-markup'; 14 | 15 | Prism.highlightElement(el.children[0]); 16 | } 17 | }; 18 | 19 | export default CodeHighlight; 20 | -------------------------------------------------------------------------------- /src/AppEventBus.js: -------------------------------------------------------------------------------- 1 | import {EventBus} from 'primevue/utils'; 2 | 3 | export default EventBus(); -------------------------------------------------------------------------------- /src/AppFooter.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /src/AppMenu.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /src/AppSubmenu.vue: -------------------------------------------------------------------------------- 1 | 31 | 75 | -------------------------------------------------------------------------------- /src/AppTopbar.vue: -------------------------------------------------------------------------------- 1 | 38 | 39 | -------------------------------------------------------------------------------- /src/AppWrapper.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/demo/badges.scss: -------------------------------------------------------------------------------- 1 | .customer-badge, 2 | .product-badge, 3 | .order-badge { 4 | border-radius: var(--border-radius); 5 | padding: .25em .5rem; 6 | text-transform: uppercase; 7 | font-weight: 700; 8 | font-size: 12px; 9 | letter-spacing: .3px; 10 | } 11 | 12 | .customer-badge { 13 | &.status-qualified { 14 | background: #C8E6C9; 15 | color: #256029; 16 | } 17 | 18 | &.status-unqualified { 19 | background: #FFCDD2; 20 | color: #C63737; 21 | } 22 | 23 | &.status-negotiation { 24 | background: #FEEDAF; 25 | color: #8A5340; 26 | } 27 | 28 | &.status-new { 29 | background: #B3E5FC; 30 | color: #23547B; 31 | } 32 | 33 | &.status-renewal { 34 | background: #ECCFFF; 35 | color: #694382; 36 | } 37 | 38 | &.status-proposal { 39 | background: #FFD8B2; 40 | color: #805B36; 41 | } 42 | } 43 | 44 | .product-badge { 45 | border-radius: var(--border-radius); 46 | padding: .25em .5rem; 47 | text-transform: uppercase; 48 | font-weight: 700; 49 | font-size: 12px; 50 | letter-spacing: .3px; 51 | 52 | &.status-instock { 53 | background: #C8E6C9; 54 | color: #256029; 55 | } 56 | 57 | &.status-outofstock { 58 | background: #FFCDD2; 59 | color: #C63737; 60 | } 61 | 62 | &.status-lowstock { 63 | background: #FEEDAF; 64 | color: #8A5340; 65 | } 66 | } 67 | 68 | .order-badge { 69 | border-radius: var(--border-radius); 70 | padding: .25em .5rem; 71 | text-transform: uppercase; 72 | font-weight: 700; 73 | font-size: 12px; 74 | letter-spacing: .3px; 75 | 76 | &.order-delivered { 77 | background: #C8E6C9; 78 | color: #256029; 79 | } 80 | 81 | &.order-cancelled { 82 | background: #FFCDD2; 83 | color: #C63737; 84 | } 85 | 86 | &.order-pending { 87 | background: #FEEDAF; 88 | color: #8A5340; 89 | } 90 | 91 | &.order-returned { 92 | background: #ECCFFF; 93 | color: #694382; 94 | } 95 | } -------------------------------------------------------------------------------- /src/assets/demo/documentation.scss: -------------------------------------------------------------------------------- 1 | pre[class*="language-"] { 2 | &:before, &:after { 3 | display: none !important; 4 | } 5 | 6 | code { 7 | border-left: 6px solid var(--surface-border) !important; 8 | box-shadow: none !important; 9 | background: var(--surface-ground) !important; 10 | margin: 1em 0; 11 | color: var(--text-color); 12 | font-size: 14px; 13 | } 14 | 15 | .token { 16 | &.tag, 17 | &.keyword { 18 | color: #2196F3 !important; 19 | } 20 | 21 | &.attr-name, 22 | &.attr-string { 23 | color: #2196F3 !important; 24 | } 25 | 26 | &.attr-value { 27 | color: #4CAF50 !important; 28 | } 29 | 30 | &.punctuation { 31 | color: var(--text-color); 32 | } 33 | 34 | &.operator, 35 | &.string { 36 | background: transparent; 37 | } 38 | } 39 | } 40 | 41 | i:not([class~="pi"]) { 42 | background-color: transparent; 43 | color: #2196f3; 44 | font-family: Monaco, courier, monospace; 45 | font-style: normal; 46 | font-size: 12px; 47 | font-weight: 500; 48 | padding: 0 4px; 49 | letter-spacing: .5px; 50 | font-weight: 600; 51 | margin: 0 2px; 52 | display: inline-flex; 53 | } -------------------------------------------------------------------------------- /src/assets/demo/flags/flag_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/src/assets/demo/flags/flag_placeholder.png -------------------------------------------------------------------------------- /src/assets/demo/flags/flags_responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primefaces/sakai-vue-cli/1f24171d415829859f5cf73fd99f23c50bea9fed/src/assets/demo/flags/flags_responsive.png -------------------------------------------------------------------------------- /src/assets/demo/items.scss: -------------------------------------------------------------------------------- 1 | .product-item { 2 | .product-item-content { 3 | border: 1px solid var(--surface-d); 4 | border-radius: 3px; 5 | margin: 0.3rem; 6 | text-align: center; 7 | padding: 2rem 0; 8 | } 9 | .product-image { 10 | width: 50%; 11 | box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); 12 | } 13 | } -------------------------------------------------------------------------------- /src/assets/styles/_overrides.scss: -------------------------------------------------------------------------------- 1 | // Suggested location to add your overrides so that migration would be easy by just updating the SASS folder in the future -------------------------------------------------------------------------------- /src/assets/styles/_variables.scss: -------------------------------------------------------------------------------- 1 | /* General */ 2 | $fontSize:14px; 3 | $borderRadius:12px; 4 | $transitionDuration:.2s; -------------------------------------------------------------------------------- /src/assets/styles/layout.scss: -------------------------------------------------------------------------------- 1 | @import "./_variables"; 2 | @import "./sass/_layout"; 3 | @import "./_overrides"; -------------------------------------------------------------------------------- /src/assets/styles/sass/_config.scss: -------------------------------------------------------------------------------- 1 | .layout-config { 2 | position: fixed; 3 | top: 0; 4 | padding: 0; 5 | right: 0; 6 | width: 20rem; 7 | z-index: 999; 8 | height: 100vh; 9 | transform: translateX(100%); 10 | transition: transform $transitionDuration; 11 | backface-visibility: hidden; 12 | box-shadow: 0px 3px 5px rgba(0,0,0,.02), 0px 0px 2px rgba(0,0,0,.05), 0px 1px 4px rgba(0,0,0,.08) !important; 13 | color: var(--text-color); 14 | background-color: var(--surface-overlay); 15 | border-top-left-radius: 12px; 16 | border-bottom-left-radius: 12px; 17 | 18 | &.layout-config-active { 19 | transform: translateX(0); 20 | } 21 | 22 | .layout-config-button { 23 | display: block; 24 | position: absolute; 25 | width: 52px; 26 | height: 52px; 27 | line-height: 52px; 28 | background-color: var(--primary-color); 29 | color: var(--primary-color-text); 30 | text-align: center; 31 | top: 230px; 32 | left: -52px; 33 | z-index: -1; 34 | overflow: hidden; 35 | cursor: pointer; 36 | border-top-left-radius: $borderRadius; 37 | border-bottom-left-radius: $borderRadius; 38 | transition: background-color $transitionDuration; 39 | 40 | i { 41 | font-size: 32px; 42 | line-height: inherit; 43 | cursor: pointer; 44 | transform: rotate(0deg); 45 | transition: color $transitionDuration, transform 1s; 46 | } 47 | } 48 | 49 | .layout-config-close { 50 | position: absolute; 51 | right: 1rem; 52 | top: 1rem; 53 | z-index: 1; 54 | } 55 | 56 | .layout-config-content { 57 | position: relative; 58 | overflow: auto; 59 | height: 100vh; 60 | padding: 2rem; 61 | } 62 | 63 | .config-scale { 64 | display: flex; 65 | align-items: center; 66 | margin: 1rem 0 2rem 0; 67 | 68 | .p-button { 69 | margin-right: .5rem; 70 | } 71 | 72 | i { 73 | margin-right: .5rem; 74 | font-size: .75rem; 75 | color: var(--text-color-secondary); 76 | 77 | &.scale-active { 78 | font-size: 1.25rem; 79 | color: var(--primary-color); 80 | } 81 | } 82 | } 83 | 84 | .free-themes { 85 | img { 86 | width: 2rem; 87 | border-radius: 4px; 88 | transition: transform .2s; 89 | 90 | &:hover { 91 | transform: scale(1.1); 92 | } 93 | } 94 | 95 | span { 96 | font-size: .75rem; 97 | margin-top: .25rem; 98 | } 99 | } 100 | } 101 | -------------------------------------------------------------------------------- /src/assets/styles/sass/_content.scss: -------------------------------------------------------------------------------- 1 | .layout-main-container { 2 | display: flex; 3 | flex-direction: column; 4 | min-height: 100vh; 5 | justify-content: space-between; 6 | padding: 7rem 2rem 2rem 4rem; 7 | transition: margin-left $transitionDuration; 8 | } 9 | 10 | .layout-main { 11 | flex: 1 1 auto; 12 | } 13 | -------------------------------------------------------------------------------- /src/assets/styles/sass/_footer.scss: -------------------------------------------------------------------------------- 1 | .layout-footer { 2 | transition: margin-left $transitionDuration; 3 | display: flex; 4 | align-items: center; 5 | justify-content: center; 6 | padding-top: 1rem; 7 | border-top: 1px solid var(--surface-border); 8 | } 9 | -------------------------------------------------------------------------------- /src/assets/styles/sass/_layout.scss: -------------------------------------------------------------------------------- 1 | @import "./_mixins"; 2 | @import "./_splash"; 3 | @import "./_main"; 4 | @import "./_topbar"; 5 | @import "./_menu"; 6 | @import "./_config"; 7 | @import "./_content"; 8 | @import "./_footer"; 9 | @import "./_responsive"; 10 | @import "./_utils"; 11 | @import "./_typography"; 12 | -------------------------------------------------------------------------------- /src/assets/styles/sass/_main.scss: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | } 4 | 5 | html { 6 | height: 100%; 7 | font-size: $fontSize; 8 | } 9 | 10 | body { 11 | font-family: var(--font-family); 12 | color: var(--text-color); 13 | background-color: var(--surface-ground); 14 | margin: 0; 15 | padding: 0; 16 | min-height: 100%; 17 | -webkit-font-smoothing: antialiased; 18 | -moz-osx-font-smoothing: grayscale; 19 | } 20 | 21 | a { 22 | text-decoration: none; 23 | color: var(--primary-color); 24 | } 25 | 26 | .layout-theme-light { 27 | background-color: #edf1f5; 28 | } 29 | -------------------------------------------------------------------------------- /src/assets/styles/sass/_menu.scss: -------------------------------------------------------------------------------- 1 | .layout-sidebar { 2 | position: fixed; 3 | width: 300px; 4 | height: calc(100vh - 9rem); 5 | z-index: 999; 6 | overflow-y: auto; 7 | user-select: none; 8 | top: 7rem; 9 | left: 2rem; 10 | transition: transform $transitionDuration, left $transitionDuration; 11 | background-color: var(--surface-overlay); 12 | border-radius: 12px; 13 | padding: 1.5rem; 14 | box-shadow: 0px 3px 5px rgba(0,0,0,.02), 0px 0px 2px rgba(0,0,0,.05), 0px 1px 4px rgba(0,0,0,.08) 15 | } 16 | 17 | .layout-menu { 18 | list-style-type: none; 19 | margin: 0; 20 | padding: 0; 21 | 22 | li { 23 | &.layout-menuitem-category { 24 | margin-top: .75rem; 25 | 26 | &:first-child { 27 | margin-top: 0; 28 | } 29 | } 30 | 31 | .layout-menuitem-root-text { 32 | text-transform: uppercase; 33 | color:var(--surface-900); 34 | font-weight: 600; 35 | margin-bottom: .5rem; 36 | font-size: .875rem; 37 | } 38 | 39 | a { 40 | cursor: pointer; 41 | text-decoration: none; 42 | display: flex; 43 | align-items: center; 44 | color:var(--text-color); 45 | transition: color $transitionDuration; 46 | border-radius: $borderRadius; 47 | padding: .75rem 1rem; 48 | transition: background-color .15s; 49 | 50 | span { 51 | margin-left: 0.5rem; 52 | } 53 | 54 | .menuitem-toggle-icon { 55 | margin-left: auto; 56 | } 57 | 58 | &:focus { 59 | @include focused-inset(); 60 | } 61 | 62 | &:hover { 63 | background-color: var(--surface-hover); 64 | } 65 | 66 | &.router-link-exact-active { 67 | font-weight: 700; 68 | color: var(--primary-color); 69 | } 70 | 71 | .p-badge { 72 | margin-left: auto; 73 | } 74 | } 75 | 76 | &.active-menuitem { 77 | > a { 78 | .menuitem-toggle-icon { 79 | &:before { 80 | content: '\e933'; 81 | } 82 | } 83 | } 84 | } 85 | 86 | ul { 87 | list-style-type: none; 88 | margin: 0; 89 | padding: 0; 90 | 91 | &.layout-submenu-wrapper-enter-from, 92 | &.layout-submenu-wrapper-leave-to { 93 | max-height: 0; 94 | } 95 | 96 | &.layout-submenu-wrapper-enter-to, 97 | &.layout-submenu-wrapper-leave-from { 98 | max-height: 1000px; 99 | } 100 | 101 | &.layout-submenu-wrapper-leave-active { 102 | overflow: hidden; 103 | transition: max-height 0.45s cubic-bezier(0, 1, 0, 1); 104 | } 105 | 106 | &.layout-submenu-wrapper-enter-active { 107 | overflow: hidden; 108 | transition: max-height 1s ease-in-out; 109 | } 110 | 111 | ul { 112 | padding-left: 1rem; 113 | } 114 | } 115 | } 116 | } 117 | -------------------------------------------------------------------------------- /src/assets/styles/sass/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin focused() { 2 | outline: 0 none; 3 | outline-offset: 0; 4 | transition: box-shadow .2s; 5 | box-shadow: var(--focus-ring); 6 | } 7 | 8 | @mixin focused-inset() { 9 | outline: 0 none; 10 | outline-offset: 0; 11 | transition: box-shadow .2s; 12 | box-shadow: inset var(--focus-ring); 13 | } -------------------------------------------------------------------------------- /src/assets/styles/sass/_responsive.scss: -------------------------------------------------------------------------------- 1 | @media (min-width: 992px) { 2 | .layout-wrapper { 3 | &.layout-overlay { 4 | .layout-main-container { 5 | margin-left: 0; 6 | padding-left: 2rem; 7 | } 8 | 9 | .layout-sidebar { 10 | transform: translateX(-100%); 11 | left: 0; 12 | top: 0; 13 | height: 100vh; 14 | border-top-left-radius: 0; 15 | border-bottom-left-radius: 0; 16 | } 17 | 18 | &.layout-overlay-sidebar-active { 19 | .layout-sidebar { 20 | transform: translateX(0); 21 | } 22 | } 23 | } 24 | 25 | &.layout-static { 26 | .layout-main-container { 27 | margin-left: 300px; 28 | } 29 | 30 | &.layout-static-sidebar-inactive { 31 | .layout-sidebar { 32 | transform: translateX(-100%); 33 | left: 0; 34 | } 35 | 36 | .layout-main-container { 37 | margin-left: 0; 38 | padding-left: 2rem; 39 | } 40 | } 41 | } 42 | 43 | .layout-mask { 44 | display: none; 45 | } 46 | } 47 | } 48 | 49 | @media (max-width: 991px) { 50 | .layout-wrapper { 51 | .layout-main-container { 52 | margin-left: 0; 53 | padding-left: 2rem; 54 | } 55 | 56 | .layout-sidebar { 57 | transform: translateX(-100%); 58 | left: 0; 59 | top: 0; 60 | height: 100vh; 61 | border-top-left-radius: 0; 62 | border-bottom-left-radius: 0; 63 | } 64 | 65 | .layout-mask { 66 | z-index: 998; 67 | background-color: var(--maskbg); 68 | 69 | &.layout-mask-enter-from, 70 | &.layout-mask-leave-to { 71 | background-color: transparent; 72 | } 73 | } 74 | 75 | &.layout-mobile-sidebar-active { 76 | .layout-sidebar { 77 | transform: translateX(0); 78 | } 79 | 80 | .layout-mask { 81 | display: block; 82 | } 83 | } 84 | } 85 | 86 | .body-overflow-hidden { 87 | overflow: hidden; 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /src/assets/styles/sass/_splash.scss: -------------------------------------------------------------------------------- 1 | .preloader { 2 | position: fixed; 3 | z-index: 999999; 4 | background: #edf1f5; 5 | width: 100%; 6 | height: 100%; 7 | } 8 | .preloader-content { 9 | border: 0 solid transparent; 10 | border-radius: 50%; 11 | width: 150px; 12 | height: 150px; 13 | position: absolute; 14 | top: calc(50vh - 75px); 15 | left: calc(50vw - 75px); 16 | } 17 | 18 | .preloader-content:before, .preloader-content:after{ 19 | content: ''; 20 | border: 1em solid var(--primary-color); 21 | border-radius: 50%; 22 | width: inherit; 23 | height: inherit; 24 | position: absolute; 25 | top: 0; 26 | left: 0; 27 | animation: loader 2s linear infinite; 28 | opacity: 0; 29 | } 30 | 31 | .preloader-content:before{ 32 | animation-delay: 0.5s; 33 | } 34 | 35 | @keyframes loader{ 36 | 0%{ 37 | transform: scale(0); 38 | opacity: 0; 39 | } 40 | 50%{ 41 | opacity: 1; 42 | } 43 | 100%{ 44 | transform: scale(1); 45 | opacity: 0; 46 | } 47 | } -------------------------------------------------------------------------------- /src/assets/styles/sass/_topbar.scss: -------------------------------------------------------------------------------- 1 | .layout-topbar { 2 | position: fixed; 3 | height: 5rem; 4 | z-index: 997; 5 | left: 0; 6 | top: 0; 7 | width: 100%; 8 | padding: 0 2rem; 9 | background-color: var(--surface-card); 10 | transition: left $transitionDuration; 11 | display: flex; 12 | align-items: center; 13 | box-shadow: 0px 3px 5px rgba(0,0,0,.02), 0px 0px 2px rgba(0,0,0,.05), 0px 1px 4px rgba(0,0,0,.08); 14 | 15 | .layout-topbar-logo { 16 | display: flex; 17 | align-items: center; 18 | color: var(--surface-900); 19 | font-size: 1.5rem; 20 | font-weight: 500; 21 | width: 300px; 22 | border-radius: 12px; 23 | 24 | img { 25 | height: 2.5rem; 26 | margin-right: .5rem; 27 | } 28 | 29 | &:focus { 30 | @include focused(); 31 | } 32 | } 33 | 34 | .layout-topbar-button { 35 | display: inline-flex; 36 | justify-content: center; 37 | align-items: center; 38 | position: relative; 39 | color: var(--text-color-secondary); 40 | border-radius: 50%; 41 | width: 3rem; 42 | height: 3rem; 43 | cursor: pointer; 44 | transition: background-color $transitionDuration; 45 | 46 | &:hover { 47 | color: var(--text-color); 48 | background-color: var(--surface-hover); 49 | } 50 | 51 | &:focus { 52 | @include focused(); 53 | } 54 | 55 | i { 56 | font-size: 1.5rem; 57 | } 58 | 59 | span { 60 | font-size: 1rem; 61 | display: none; 62 | } 63 | } 64 | 65 | .layout-menu-button { 66 | margin-left: 2rem; 67 | } 68 | 69 | .layout-topbar-menu-button { 70 | display: none; 71 | 72 | i { 73 | font-size: 1.25rem; 74 | } 75 | } 76 | 77 | .layout-topbar-menu { 78 | margin: 0 0 0 auto; 79 | padding: 0; 80 | list-style: none; 81 | display: flex; 82 | 83 | .layout-topbar-button { 84 | margin-left: 1rem; 85 | } 86 | } 87 | } 88 | 89 | @media (max-width: 991px) { 90 | .layout-topbar { 91 | justify-content: space-between; 92 | 93 | .layout-topbar-logo { 94 | width: auto; 95 | order: 2; 96 | } 97 | 98 | .layout-menu-button { 99 | margin-left: 0; 100 | order: 1; 101 | } 102 | 103 | .layout-topbar-menu-button { 104 | display: inline-flex; 105 | margin-left: 0; 106 | order: 3; 107 | } 108 | 109 | .layout-topbar-menu { 110 | margin-left: 0; 111 | position: absolute; 112 | flex-direction: column; 113 | background-color: var(--surface-overlay); 114 | box-shadow: 0px 3px 5px rgba(0,0,0,.02), 0px 0px 2px rgba(0,0,0,.05), 0px 1px 4px rgba(0,0,0,.08); 115 | border-radius: 12px; 116 | padding: 1rem; 117 | right: 2rem; 118 | top: 5rem; 119 | min-width: 15rem; 120 | 121 | .layout-topbar-button { 122 | margin-left: 0; 123 | display: flex; 124 | width: 100%; 125 | height: auto; 126 | justify-content: flex-start; 127 | border-radius: 12px; 128 | padding: 1rem; 129 | 130 | i { 131 | font-size: 1rem; 132 | margin-right: .5rem; 133 | } 134 | 135 | span { 136 | font-weight: medium; 137 | display: block; 138 | } 139 | } 140 | } 141 | } 142 | } 143 | -------------------------------------------------------------------------------- /src/assets/styles/sass/_typography.scss: -------------------------------------------------------------------------------- 1 | h1, h2, h3, h4, h5, h6 { 2 | margin: 1.5rem 0 1rem 0; 3 | font-family: inherit; 4 | font-weight: 500; 5 | line-height: 1.2; 6 | color: inherit; 7 | 8 | &:first-child { 9 | margin-top: 0; 10 | } 11 | } 12 | 13 | h1 { 14 | font-size: 2.5rem; 15 | } 16 | 17 | h2 { 18 | font-size: 2rem; 19 | } 20 | 21 | h3 { 22 | font-size: 1.75rem; 23 | } 24 | 25 | h4 { 26 | font-size: 1.5rem; 27 | } 28 | 29 | h5 { 30 | font-size: 1.25rem; 31 | } 32 | 33 | h6 { 34 | font-size: 1rem; 35 | } 36 | 37 | mark { 38 | background: #FFF8E1; 39 | padding: .25rem .4rem; 40 | border-radius: $borderRadius; 41 | font-family: monospace; 42 | } 43 | 44 | blockquote { 45 | margin: 1rem 0; 46 | padding: 0 2rem; 47 | border-left: 4px solid #90A4AE; 48 | } 49 | 50 | hr { 51 | border-top: solid var(--surface-border); 52 | border-width: 1px 0 0 0; 53 | margin: 1rem 0; 54 | } 55 | 56 | p { 57 | margin: 0 0 1rem 0; 58 | line-height: 1.5; 59 | 60 | &:last-child { 61 | margin-bottom: 0; 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /src/assets/styles/sass/_utils.scss: -------------------------------------------------------------------------------- 1 | .card { 2 | background-color: var(--surface-card); 3 | padding: 1.5rem; 4 | color: var(--surface-900); 5 | margin-bottom: 1rem; 6 | border-radius: $borderRadius; 7 | box-shadow: 0px 3px 5px rgba(0,0,0,.02), 0px 0px 2px rgba(0,0,0,.05), 0px 1px 4px rgba(0,0,0,.08) !important; 8 | 9 | &.card-w-title { 10 | padding-bottom: 2rem; 11 | } 12 | } -------------------------------------------------------------------------------- /src/components/Documentation.vue: -------------------------------------------------------------------------------- 1 | 86 | 87 | 91 | 92 | 95 | -------------------------------------------------------------------------------- /src/components/EmptyPage.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | -------------------------------------------------------------------------------- /src/components/FileDemo.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | -------------------------------------------------------------------------------- /src/components/FloatLabelDemo.vue: -------------------------------------------------------------------------------- 1 | 73 | 74 | 125 | -------------------------------------------------------------------------------- /src/components/FormLayoutDemo.vue: -------------------------------------------------------------------------------- 1 |