Init sakai-v19
@@ -4,12 +4,13 @@ root = true
|
||||
[*]
|
||||
charset = utf-8
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
indent_size = 2
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.ts]
|
||||
quote_type = single
|
||||
ij_typescript_use_double_quotes = false
|
||||
|
||||
[*.md]
|
||||
max_line_length = off
|
||||
|
||||
@@ -1,50 +0,0 @@
|
||||
{
|
||||
"root": true,
|
||||
"ignorePatterns": [
|
||||
"projects/**/*"
|
||||
],
|
||||
"overrides": [
|
||||
{
|
||||
"files": [
|
||||
"*.ts"
|
||||
],
|
||||
"parserOptions": {
|
||||
"project": [
|
||||
"tsconfig.json"
|
||||
],
|
||||
"createDefaultProgram": true
|
||||
},
|
||||
"extends": [
|
||||
"plugin:@angular-eslint/recommended",
|
||||
"plugin:@angular-eslint/template/process-inline-templates"
|
||||
],
|
||||
"rules": {
|
||||
"@angular-eslint/directive-selector": [
|
||||
"error",
|
||||
{
|
||||
"type": "attribute",
|
||||
"prefix": "app",
|
||||
"style": "camelCase"
|
||||
}
|
||||
],
|
||||
"@angular-eslint/component-selector": [
|
||||
"error",
|
||||
{
|
||||
"type": "element",
|
||||
"prefix": "app",
|
||||
"style": "kebab-case"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"files": [
|
||||
"*.html"
|
||||
],
|
||||
"extends": [
|
||||
"plugin:@angular-eslint/template/recommended"
|
||||
],
|
||||
"rules": {}
|
||||
}
|
||||
]
|
||||
}
|
||||
8
.gitignore
vendored
@@ -1,4 +1,4 @@
|
||||
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
||||
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
|
||||
|
||||
# Compiled output
|
||||
/dist
|
||||
@@ -21,8 +21,11 @@ yarn-error.log
|
||||
*.sublime-workspace
|
||||
|
||||
# Visual Studio Code
|
||||
.vscode
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
.history/*
|
||||
|
||||
# Miscellaneous
|
||||
@@ -37,4 +40,3 @@ testem.log
|
||||
# System files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
|
||||
4
.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
|
||||
"recommendations": ["angular.ng-template"]
|
||||
}
|
||||
20
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "ng serve",
|
||||
"type": "chrome",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "npm: start",
|
||||
"url": "http://localhost:4200/"
|
||||
},
|
||||
{
|
||||
"name": "ng test",
|
||||
"type": "chrome",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "npm: test",
|
||||
"url": "http://localhost:9876/debug.html"
|
||||
}
|
||||
]
|
||||
}
|
||||
42
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "start",
|
||||
"isBackground": true,
|
||||
"problemMatcher": {
|
||||
"owner": "typescript",
|
||||
"pattern": "$tsc",
|
||||
"background": {
|
||||
"activeOnStart": true,
|
||||
"beginsPattern": {
|
||||
"regexp": "(.*?)"
|
||||
},
|
||||
"endsPattern": {
|
||||
"regexp": "bundle generation complete"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "test",
|
||||
"isBackground": true,
|
||||
"problemMatcher": {
|
||||
"owner": "typescript",
|
||||
"pattern": "$tsc",
|
||||
"background": {
|
||||
"activeOnStart": true,
|
||||
"beginsPattern": {
|
||||
"regexp": "(.*?)"
|
||||
},
|
||||
"endsPattern": {
|
||||
"regexp": "bundle generation complete"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
45
CHANGELOG.md
@@ -1,45 +0,0 @@
|
||||
# Changelog
|
||||
|
||||
# 17.0.0
|
||||
**Implemented New Features and Enhancements:**
|
||||
- Upgrade to PrimeNG 17
|
||||
- Upgrade to Angular 17
|
||||
|
||||
## 16.0.0
|
||||
**Migration Guide**
|
||||
- Upgrade to PrimeNG 16
|
||||
- Upgrade to Angular 16
|
||||
- Update theme files
|
||||
|
||||
## 15.0.0
|
||||
**Migration Guide**
|
||||
- Upgrade to PrimeNG 15
|
||||
- Upgrade to Angular 15
|
||||
|
||||
**Implemented New Features and Enhancements:**
|
||||
- Update to PrimeNG 15
|
||||
- Update to Angular 15
|
||||
|
||||
## 14.0.5
|
||||
|
||||
- Router updates
|
||||
|
||||
## 14.0.4
|
||||
|
||||
- Updated UI kit demos
|
||||
- Updated PrimeNG
|
||||
- Enabled lint
|
||||
|
||||
## 14.0.2
|
||||
|
||||
- Updated to PrimeNG 14.0.2.
|
||||
|
||||
## 14.0.0
|
||||
|
||||
- Folder structure updated.
|
||||
- Replace app.config.service by layout.service.
|
||||
- Updated to PrimeNG 14.
|
||||
- Updated to Angular 14.
|
||||
- Strict mode support added.
|
||||
- Documentation updated.
|
||||
- Added max-width in large screens for landing.
|
||||
10
LICENSE.md
@@ -1,4 +1,4 @@
|
||||
MIT License
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2018-2022 PrimeTek
|
||||
|
||||
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
52
README.md
@@ -1,27 +1,59 @@
|
||||
# Sakai
|
||||
# Sakai19
|
||||
|
||||
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.0.4.
|
||||
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 19.0.6.
|
||||
|
||||
## Development server
|
||||
|
||||
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
|
||||
To start a local development server, run:
|
||||
|
||||
```bash
|
||||
ng serve
|
||||
```
|
||||
|
||||
Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
|
||||
|
||||
## Code scaffolding
|
||||
|
||||
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
|
||||
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
|
||||
|
||||
## Build
|
||||
```bash
|
||||
ng generate component component-name
|
||||
```
|
||||
|
||||
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
|
||||
For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:
|
||||
|
||||
```bash
|
||||
ng generate --help
|
||||
```
|
||||
|
||||
## Building
|
||||
|
||||
To build the project run:
|
||||
|
||||
```bash
|
||||
ng build
|
||||
```
|
||||
|
||||
This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed.
|
||||
|
||||
## Running unit tests
|
||||
|
||||
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
||||
To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:
|
||||
|
||||
```bash
|
||||
ng test
|
||||
```
|
||||
|
||||
## Running end-to-end tests
|
||||
|
||||
Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
|
||||
For end-to-end (e2e) testing, run:
|
||||
|
||||
## Further help
|
||||
```bash
|
||||
ng e2e
|
||||
```
|
||||
|
||||
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
||||
Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
|
||||
|
||||
## Additional Resources
|
||||
|
||||
For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
|
||||
|
||||
204
angular.json
@@ -1,105 +1,105 @@
|
||||
{
|
||||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
||||
"version": 1,
|
||||
"newProjectRoot": "projects",
|
||||
"projects": {
|
||||
"sakai-ng": {
|
||||
"projectType": "application",
|
||||
"schematics": {
|
||||
"@schematics/angular:component": {
|
||||
"style": "scss"
|
||||
}
|
||||
},
|
||||
"root": "",
|
||||
"sourceRoot": "src",
|
||||
"prefix": "app",
|
||||
"architect": {
|
||||
"build": {
|
||||
"builder": "@angular-devkit/build-angular:browser",
|
||||
"options": {
|
||||
"outputPath": "dist/sakai-ng",
|
||||
"index": "src/index.html",
|
||||
"main": "src/main.ts",
|
||||
"polyfills": [
|
||||
"zone.js"
|
||||
],
|
||||
"tsConfig": "tsconfig.app.json",
|
||||
"inlineStyleLanguage": "scss",
|
||||
"assets": [
|
||||
"src/favicon.ico",
|
||||
"src/assets"
|
||||
],
|
||||
"styles": [
|
||||
"src/styles.scss"
|
||||
],
|
||||
"scripts": []
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"budgets": [
|
||||
{
|
||||
"type": "initial",
|
||||
"maximumWarning": "1mb",
|
||||
"maximumError": "5mb"
|
||||
},
|
||||
{
|
||||
"type": "anyComponentStyle",
|
||||
"maximumWarning": "2kb",
|
||||
"maximumError": "4kb"
|
||||
}
|
||||
],
|
||||
"outputHashing": "all"
|
||||
},
|
||||
"development": {
|
||||
"buildOptimizer": false,
|
||||
"optimization": false,
|
||||
"vendorChunk": true,
|
||||
"extractLicenses": false,
|
||||
"sourceMap": true,
|
||||
"namedChunks": true
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "production"
|
||||
},
|
||||
"serve": {
|
||||
"builder": "@angular-devkit/build-angular:dev-server",
|
||||
"configurations": {
|
||||
"production": {
|
||||
"buildTarget": "sakai-ng:build:production"
|
||||
},
|
||||
"development": {
|
||||
"buildTarget": "sakai-ng:build:development"
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "development"
|
||||
},
|
||||
"extract-i18n": {
|
||||
"builder": "@angular-devkit/build-angular:extract-i18n",
|
||||
"options": {
|
||||
"buildTarget": "sakai-ng:build"
|
||||
}
|
||||
},
|
||||
"test": {
|
||||
"builder": "@angular-devkit/build-angular:karma",
|
||||
"options": {
|
||||
"polyfills": [
|
||||
"zone.js",
|
||||
"zone.js/testing"
|
||||
],
|
||||
"tsConfig": "tsconfig.spec.json",
|
||||
"karmaConfig": "karma.conf.js",
|
||||
"inlineStyleLanguage": "scss",
|
||||
"assets": [
|
||||
"src/favicon.ico",
|
||||
"src/assets"
|
||||
],
|
||||
"styles": [
|
||||
"src/styles.scss"
|
||||
],
|
||||
"scripts": []
|
||||
}
|
||||
}
|
||||
}
|
||||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
||||
"version": 1,
|
||||
"newProjectRoot": "projects",
|
||||
"projects": {
|
||||
"sakai-ng": {
|
||||
"projectType": "application",
|
||||
"schematics": {
|
||||
"@schematics/angular:component": {
|
||||
"style": "scss"
|
||||
}
|
||||
},
|
||||
"root": "",
|
||||
"sourceRoot": "src",
|
||||
"prefix": "app",
|
||||
"architect": {
|
||||
"build": {
|
||||
"builder": "@angular-devkit/build-angular:application",
|
||||
"options": {
|
||||
"outputPath": "dist/sakai-ng",
|
||||
"index": "src/index.html",
|
||||
"browser": "src/main.ts",
|
||||
"polyfills": [
|
||||
"zone.js"
|
||||
],
|
||||
"tsConfig": "tsconfig.app.json",
|
||||
"inlineStyleLanguage": "scss",
|
||||
"assets": [
|
||||
{
|
||||
"glob": "**/*",
|
||||
"input": "public"
|
||||
}
|
||||
],
|
||||
"styles": [
|
||||
"src/styles.scss"
|
||||
],
|
||||
"scripts": []
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"budgets": [
|
||||
{
|
||||
"type": "initial",
|
||||
"maximumWarning": "1mb",
|
||||
"maximumError": "5mb"
|
||||
},
|
||||
{
|
||||
"type": "anyComponentStyle",
|
||||
"maximumWarning": "2kb",
|
||||
"maximumError": "4kb"
|
||||
}
|
||||
],
|
||||
"outputHashing": "all"
|
||||
},
|
||||
"development": {
|
||||
"buildOptimizer": false,
|
||||
"optimization": false,
|
||||
"vendorChunk": true,
|
||||
"extractLicenses": false,
|
||||
"sourceMap": true,
|
||||
"namedChunks": true
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "production"
|
||||
},
|
||||
"serve": {
|
||||
"builder": "@angular-devkit/build-angular:dev-server",
|
||||
"configurations": {
|
||||
"production": {
|
||||
"buildTarget": "sakai-ng:build:production"
|
||||
},
|
||||
"development": {
|
||||
"buildTarget": "sakai-ng:build:development"
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "development"
|
||||
},
|
||||
"extract-i18n": {
|
||||
"builder": "@angular-devkit/build-angular:extract-i18n"
|
||||
},
|
||||
"test": {
|
||||
"builder": "@angular-devkit/build-angular:karma",
|
||||
"options": {
|
||||
"polyfills": [
|
||||
"zone.js",
|
||||
"zone.js/testing"
|
||||
],
|
||||
"tsConfig": "tsconfig.spec.json",
|
||||
"inlineStyleLanguage": "scss",
|
||||
"assets": [
|
||||
{
|
||||
"glob": "**/*",
|
||||
"input": "public"
|
||||
}
|
||||
],
|
||||
"styles": [
|
||||
"src/styles.scss"
|
||||
],
|
||||
"scripts": []
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
27241
package-lock.json
generated
92
package.json
@@ -1,52 +1,42 @@
|
||||
{
|
||||
"name": "sakai-ng",
|
||||
"version": "17.0.0",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng serve",
|
||||
"build": "ng build",
|
||||
"test": "ng test",
|
||||
"lint": "ng lint",
|
||||
"e2e": "ng e2e"
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "^17.0.5",
|
||||
"@angular/cdk": "^17.0.2",
|
||||
"@angular/common": "^17.0.5",
|
||||
"@angular/compiler": "^17.0.5",
|
||||
"@angular/core": "^17.0.5",
|
||||
"@angular/forms": "^17.0.5",
|
||||
"@angular/platform-browser": "^17.0.5",
|
||||
"@angular/platform-browser-dynamic": "^17.0.5",
|
||||
"@angular/router": "^17.0.5",
|
||||
"@fullcalendar/angular": "^6.0.3",
|
||||
"@fullcalendar/core": "^6.0.3",
|
||||
"@fullcalendar/daygrid": "^6.0.3",
|
||||
"@fullcalendar/interaction": "^6.0.3",
|
||||
"@fullcalendar/timegrid": "^6.0.3",
|
||||
"chart.js": "^3.3.2",
|
||||
"primeflex": "^3.3.1",
|
||||
"primeicons": "6.0.1",
|
||||
"primeng": "17.2.0",
|
||||
"quill": "^1.3.7",
|
||||
"rxjs": "~7.8.1",
|
||||
"tslib": "^2.5.0",
|
||||
"zone.js": "~0.14.0",
|
||||
"prismjs": "^1.29.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "^17.0.5",
|
||||
"@angular/cli": "^17.0.5",
|
||||
"@angular/compiler-cli": "^17.0.5",
|
||||
"@types/jasmine": "~4.3.1",
|
||||
"jasmine-core": "~4.6.0",
|
||||
"karma": "~6.4.2",
|
||||
"karma-chrome-launcher": "~3.2.0",
|
||||
"karma-coverage": "~2.2.0",
|
||||
"karma-jasmine": "~5.1.0",
|
||||
"karma-jasmine-html-reporter": "~2.1.0",
|
||||
"typescript": "~5.2.2"
|
||||
}
|
||||
}
|
||||
"name": "sakai-ng",
|
||||
"version": "0.0.0",
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng serve",
|
||||
"build": "ng build",
|
||||
"watch": "ng build --watch --configuration development",
|
||||
"test": "ng test"
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "^19.0.0",
|
||||
"@angular/common": "^19.0.0",
|
||||
"@angular/compiler": "^19.0.0",
|
||||
"@angular/core": "^19.0.0",
|
||||
"@angular/forms": "^19.0.0",
|
||||
"@angular/platform-browser": "^19.0.0",
|
||||
"@angular/platform-browser-dynamic": "^19.0.0",
|
||||
"@angular/router": "^19.0.0",
|
||||
"rxjs": "~7.8.0",
|
||||
"tslib": "^2.3.0",
|
||||
"zone.js": "~0.15.0",
|
||||
"primeng": "^19.0.2",
|
||||
"@primeng/themes": "^19.0.2",
|
||||
"tailwindcss": "^3.4.6",
|
||||
"tailwindcss-primeui": "^0.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "^19.0.6",
|
||||
"@angular/cli": "^19.0.6",
|
||||
"@angular/compiler-cli": "^19.0.0",
|
||||
"@types/jasmine": "~5.1.0",
|
||||
"jasmine-core": "~5.4.0",
|
||||
"karma": "~6.4.0",
|
||||
"karma-chrome-launcher": "~3.2.0",
|
||||
"karma-coverage": "~2.2.0",
|
||||
"karma-jasmine": "~5.1.0",
|
||||
"karma-jasmine-html-reporter": "~2.1.0",
|
||||
"typescript": "~5.6.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{"name": "Afghanistan", "code": "AF"},
|
||||
{"name": "Åland Islands", "code": "AX"},
|
||||
{"name": "Albania", "code": "AL"},
|
||||
{"name": "Algeria", "code": "DZ"},
|
||||
{"name": "American Samoa", "code": "AS"},
|
||||
3604
public/demo/data/customers-large.json
Normal file
@@ -801,4 +801,4 @@
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -3,66 +3,66 @@
|
||||
{
|
||||
"id": 1,
|
||||
"title": "All Day Event",
|
||||
"start": "2021-07-01"
|
||||
"start": "2021-01-03"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"title": "Long Event",
|
||||
"start": "2021-07-07",
|
||||
"end": "2021-07-10"
|
||||
"start": "2021-01-09",
|
||||
"end": "2021-01-12"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"title": "Repeating Event",
|
||||
"start": "2021-07-09T16:00:00"
|
||||
"start": "2021-01-11T16:00:00"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"title": "Repeating Event",
|
||||
"start": "2021-07-16T16:00:00"
|
||||
"start": "2021-01-18T16:00:00"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"title": "Conference",
|
||||
"start": "2021-07-11",
|
||||
"end": "2021-07-13"
|
||||
"start": "2021-01-13",
|
||||
"end": "2021-01-15"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"title": "Meeting",
|
||||
"start": "2021-07-12T10:30:00",
|
||||
"end": "2021-07-12T12:30:00"
|
||||
"start": "2021-01-14T10:30:00",
|
||||
"end": "2021-01-14T12:30:00"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"title": "Lunch",
|
||||
"start": "2021-07-12T12:00:00"
|
||||
"start": "2021-01-14T12:00:00"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"title": "Meeting",
|
||||
"start": "2021-07-12T14:30:00"
|
||||
"start": "2021-01-14T14:30:00"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"title": "Happy Hour",
|
||||
"start": "2021-07-12T17:30:00"
|
||||
"start": "2021-01-14T17:30:00"
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"title": "Dinner",
|
||||
"start": "2021-07-12T20:00:00"
|
||||
"start": "2021-01-14T20:00:00"
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"title": "Birthday Party",
|
||||
"start": "2021-07-13T07:00:00"
|
||||
"start": "2021-01-15T07:00:00"
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"title": "Click for Google",
|
||||
"url": "http://google.com/",
|
||||
"start": "2021-07-28"
|
||||
"start": "2021-01-30"
|
||||
}
|
||||
]
|
||||
}
|
||||
94
public/demo/data/photos.json
Normal file
@@ -0,0 +1,94 @@
|
||||
{
|
||||
"data":[
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria1.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria1s.jpg",
|
||||
"alt": "Description for Image 1",
|
||||
"title": "Title 1"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria2.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria2s.jpg",
|
||||
"alt": "Description for Image 2",
|
||||
"title": "Title 2"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria3.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria3s.jpg",
|
||||
"alt": "Description for Image 3",
|
||||
"title": "Title 3"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria4.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria4s.jpg",
|
||||
"alt": "Description for Image 4",
|
||||
"title": "Title 4"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria5.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria5s.jpg",
|
||||
"alt": "Description for Image 5",
|
||||
"title": "Title 5"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria6.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria6s.jpg",
|
||||
"alt": "Description for Image 6",
|
||||
"title": "Title 6"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria7.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria7s.jpg",
|
||||
"alt": "Description for Image 7",
|
||||
"title": "Title 7"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria8.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria8s.jpg",
|
||||
"alt": "Description for Image 8",
|
||||
"title": "Title 8"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria9.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria9s.jpg",
|
||||
"alt": "Description for Image 9",
|
||||
"title": "Title 9"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria10.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria10s.jpg",
|
||||
"alt": "Description for Image 10",
|
||||
"title": "Title 10"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria11.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria11s.jpg",
|
||||
"alt": "Description for Image 11",
|
||||
"title": "Title 11"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria12.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria12s.jpg",
|
||||
"alt": "Description for Image 12",
|
||||
"title": "Title 12"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria13.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria13s.jpg",
|
||||
"alt": "Description for Image 13",
|
||||
"title": "Title 13"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria14.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria14s.jpg",
|
||||
"alt": "Description for Image 14",
|
||||
"title": "Title 14"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "/demo/images/galleria/galleria15.jpg",
|
||||
"thumbnailImageSrc": "/demo/images/galleria/galleria15s.jpg",
|
||||
"alt": "Description for Image 15",
|
||||
"title": "Title 15"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -338,4 +338,4 @@
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
15
public/demo/data/products-small.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"data": [
|
||||
{"id": "1000","code": "f230fh0g3","name": "Bamboo Watch","description": "Product Description","image": "bamboo-watch.jpg","price": 65,"category": "Accessories","quantity": 24,"inventoryStatus": "INSTOCK","rating": 5},
|
||||
{"id": "1001","code": "nvklal433","name": "Black Watch","description": "Product Description","image": "black-watch.jpg","price": 72,"category": "Accessories","quantity": 61,"inventoryStatus": "INSTOCK","rating": 4},
|
||||
{"id": "1002","code": "zz21cz3c1","name": "Blue Band","description": "Product Description","image": "blue-band.jpg","price": 79,"category": "Fitness","quantity": 2,"inventoryStatus": "LOWSTOCK","rating": 3},
|
||||
{"id": "1003","code": "244wgerg2","name": "Blue T-Shirt","description": "Product Description","image": "blue-t-shirt.jpg","price": 29,"category": "Clothing","quantity": 25,"inventoryStatus": "INSTOCK","rating": 5},
|
||||
{"id": "1004","code": "h456wer53","name": "Bracelet","description": "Product Description","image": "bracelet.jpg","price": 15,"category": "Accessories","quantity": 73,"inventoryStatus": "INSTOCK","rating": 4},
|
||||
{"id": "1005","code": "av2231fwg","name": "Brown Purse","description": "Product Description","image": "brown-purse.jpg","price": 120,"category": "Accessories","quantity": 0,"inventoryStatus": "OUTOFSTOCK","rating": 4},
|
||||
{"id": "1006","code": "bib36pfvm","name": "Chakra Bracelet","description": "Product Description","image": "chakra-bracelet.jpg","price": 32,"category": "Accessories","quantity": 5,"inventoryStatus": "LOWSTOCK","rating": 3},
|
||||
{"id": "1007","code": "mbvjkgip5","name": "Galaxy Earrings","description": "Product Description","image": "galaxy-earrings.jpg","price": 34,"category": "Accessories","quantity": 23,"inventoryStatus": "INSTOCK","rating": 5},
|
||||
{"id": "1008","code": "vbb124btr","name": "Game Controller","description": "Product Description","image": "game-controller.jpg","price": 99,"category": "Electronics","quantity": 2,"inventoryStatus": "LOWSTOCK","rating": 4},
|
||||
{"id": "1009","code": "cm230f032","name": "Gaming Set","description": "Product Description","image": "gaming-set.jpg","price": 299,"category": "Electronics","quantity": 63,"inventoryStatus": "INSTOCK","rating": 3}
|
||||
]
|
||||
}
|
||||
|
||||
36
public/demo/data/products.json
Normal file
@@ -0,0 +1,36 @@
|
||||
|
||||
{
|
||||
"data": [
|
||||
{"id": "1000","code": "f230fh0g3","name": "Bamboo Watch","description": "Product Description","image": "bamboo-watch.jpg","price": 65,"category": "Accessories","quantity": 24,"inventoryStatus": "INSTOCK","rating": 5},
|
||||
{"id": "1001","code": "nvklal433","name": "Black Watch","description": "Product Description","image": "black-watch.jpg","price": 72,"category": "Accessories","quantity": 61,"inventoryStatus": "INSTOCK","rating": 4},
|
||||
{"id": "1002","code": "zz21cz3c1","name": "Blue Band","description": "Product Description","image": "blue-band.jpg","price": 79,"category": "Fitness","quantity": 2,"inventoryStatus": "LOWSTOCK","rating": 3},
|
||||
{"id": "1003","code": "244wgerg2","name": "Blue T-Shirt","description": "Product Description","image": "blue-t-shirt.jpg","price": 29,"category": "Clothing","quantity": 25,"inventoryStatus": "INSTOCK","rating": 5},
|
||||
{"id": "1004","code": "h456wer53","name": "Bracelet","description": "Product Description","image": "bracelet.jpg","price": 15,"category": "Accessories","quantity": 73,"inventoryStatus": "INSTOCK","rating": 4},
|
||||
{"id": "1005","code": "av2231fwg","name": "Brown Purse","description": "Product Description","image": "brown-purse.jpg","price": 120,"category": "Accessories","quantity": 0,"inventoryStatus": "OUTOFSTOCK","rating": 4},
|
||||
{"id": "1006","code": "bib36pfvm","name": "Chakra Bracelet","description": "Product Description","image": "chakra-bracelet.jpg","price": 32,"category": "Accessories","quantity": 5,"inventoryStatus": "LOWSTOCK","rating": 3},
|
||||
{"id": "1007","code": "mbvjkgip5","name": "Galaxy Earrings","description": "Product Description","image": "galaxy-earrings.jpg","price": 34,"category": "Accessories","quantity": 23,"inventoryStatus": "INSTOCK","rating": 5},
|
||||
{"id": "1008","code": "vbb124btr","name": "Game Controller","description": "Product Description","image": "game-controller.jpg","price": 99,"category": "Electronics","quantity": 2,"inventoryStatus": "LOWSTOCK","rating": 4},
|
||||
{"id": "1009","code": "cm230f032","name": "Gaming Set","description": "Product Description","image": "gaming-set.jpg","price": 299,"category": "Electronics","quantity": 63,"inventoryStatus": "INSTOCK","rating": 3},
|
||||
{"id": "1010","code": "plb34234v","name": "Gold Phone Case","description": "Product Description","image": "gold-phone-case.jpg","price": 24,"category": "Accessories","quantity": 0,"inventoryStatus": "OUTOFSTOCK","rating": 4},
|
||||
{"id": "1011","code": "4920nnc2d","name": "Green Earbuds","description": "Product Description","image": "green-earbuds.jpg","price": 89,"category": "Electronics","quantity": 23,"inventoryStatus": "INSTOCK","rating": 4},
|
||||
{"id": "1012","code": "250vm23cc","name": "Green T-Shirt","description": "Product Description","image": "green-t-shirt.jpg","price": 49,"category": "Clothing","quantity": 74,"inventoryStatus": "INSTOCK","rating": 5},
|
||||
{"id": "1013","code": "fldsmn31b","name": "Grey T-Shirt","description": "Product Description","image": "grey-t-shirt.jpg","price": 48,"category": "Clothing","quantity": 0,"inventoryStatus": "OUTOFSTOCK","rating": 3},
|
||||
{"id": "1014","code": "waas1x2as","name": "Headphones","description": "Product Description","image": "headphones.jpg","price": 175,"category": "Electronics","quantity": 8,"inventoryStatus": "LOWSTOCK","rating": 5},
|
||||
{"id": "1015","code": "vb34btbg5","name": "Light Green T-Shirt","description": "Product Description","image": "light-green-t-shirt.jpg","price": 49,"category": "Clothing","quantity": 34,"inventoryStatus": "INSTOCK","rating": 4},
|
||||
{"id": "1016","code": "k8l6j58jl","name": "Lime Band","description": "Product Description","image": "lime-band.jpg","price": 79,"category": "Fitness","quantity": 12,"inventoryStatus": "INSTOCK","rating": 3},
|
||||
{"id": "1017","code": "v435nn85n","name": "Mini Speakers","description": "Product Description","image": "mini-speakers.jpg","price": 85,"category": "Clothing","quantity": 42,"inventoryStatus": "INSTOCK","rating": 4},
|
||||
{"id": "1018","code": "09zx9c0zc","name": "Painted Phone Case","description": "Product Description","image": "painted-phone-case.jpg","price": 56,"category": "Accessories","quantity": 41,"inventoryStatus": "INSTOCK","rating": 5},
|
||||
{"id": "1019","code": "mnb5mb2m5","name": "Pink Band","description": "Product Description","image": "pink-band.jpg","price": 79,"category": "Fitness","quantity": 63,"inventoryStatus": "INSTOCK","rating": 4},
|
||||
{"id": "1020","code": "r23fwf2w3","name": "Pink Purse","description": "Product Description","image": "pink-purse.jpg","price": 110,"category": "Accessories","quantity": 0,"inventoryStatus": "OUTOFSTOCK","rating": 4},
|
||||
{"id": "1021","code": "pxpzczo23","name": "Purple Band","description": "Product Description","image": "purple-band.jpg","price": 79,"category": "Fitness","quantity": 6,"inventoryStatus": "LOWSTOCK","rating": 3},
|
||||
{"id": "1022","code": "2c42cb5cb","name": "Purple Gemstone Necklace","description": "Product Description","image": "purple-gemstone-necklace.jpg","price": 45,"category": "Accessories","quantity": 62,"inventoryStatus": "INSTOCK","rating": 4},
|
||||
{"id": "1023","code": "5k43kkk23","name": "Purple T-Shirt","description": "Product Description","image": "purple-t-shirt.jpg","price": 49,"category": "Clothing","quantity": 2,"inventoryStatus": "LOWSTOCK","rating": 5},
|
||||
{"id": "1024","code": "lm2tny2k4","name": "Shoes","description": "Product Description","image": "shoes.jpg","price": 64,"category": "Clothing","quantity": 0,"inventoryStatus": "INSTOCK","rating": 4},
|
||||
{"id": "1025","code": "nbm5mv45n","name": "Sneakers","description": "Product Description","image": "sneakers.jpg","price": 78,"category": "Clothing","quantity": 52,"inventoryStatus": "INSTOCK","rating": 4},
|
||||
{"id": "1026","code": "zx23zc42c","name": "Teal T-Shirt","description": "Product Description","image": "teal-t-shirt.jpg","price": 49,"category": "Clothing","quantity": 3,"inventoryStatus": "LOWSTOCK","rating": 3},
|
||||
{"id": "1027","code": "acvx872gc","name": "Yellow Earbuds","description": "Product Description","image": "yellow-earbuds.jpg","price": 89,"category": "Electronics","quantity": 35,"inventoryStatus": "INSTOCK","rating": 3},
|
||||
{"id": "1028","code": "tx125ck42","name": "Yoga Mat","description": "Product Description","image": "yoga-mat.jpg","price": 20,"category": "Fitness","quantity": 15,"inventoryStatus": "INSTOCK","rating": 5},
|
||||
{"id": "1029","code": "gwuby345v","name": "Yoga Set","description": "Product Description","image": "yoga-set.jpg","price": 20,"category": "Fitness","quantity": 25,"inventoryStatus": "INSTOCK","rating": 8}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"data": [
|
||||
"root": [
|
||||
{
|
||||
"key": "0",
|
||||
"label": "Documents",
|
||||
@@ -1,83 +1,94 @@
|
||||
{
|
||||
"data":
|
||||
"root":
|
||||
[
|
||||
{
|
||||
{
|
||||
"key": "0",
|
||||
"data":{
|
||||
"name":"Applications",
|
||||
"size":"200mb",
|
||||
"size":"100kb",
|
||||
"type":"Folder"
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"data":{
|
||||
"name":"Angular",
|
||||
"size":"25mb",
|
||||
"key": "0-0",
|
||||
"data":{
|
||||
"name":"Vue",
|
||||
"size":"25kb",
|
||||
"type":"Folder"
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"key": "0-0-0",
|
||||
"data":{
|
||||
"name":"angular.app",
|
||||
"size":"10mb",
|
||||
"name":"vue.app",
|
||||
"size":"10kb",
|
||||
"type":"Application"
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "0-0-1",
|
||||
"data":{
|
||||
"name":"cli.app",
|
||||
"size":"10mb",
|
||||
"name":"native.app",
|
||||
"size":"10kb",
|
||||
"type":"Application"
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "0-0-2",
|
||||
"data":{
|
||||
"name":"mobile.app",
|
||||
"size":"5mb",
|
||||
"size":"5kb",
|
||||
"type":"Application"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"key": "0-1",
|
||||
"data":{
|
||||
"name":"editor.app",
|
||||
"size":"25mb",
|
||||
"size":"25kb",
|
||||
"type":"Application"
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "0-2",
|
||||
"data":{
|
||||
"name":"settings.app",
|
||||
"size":"50mb",
|
||||
"size":"50kb",
|
||||
"type":"Application"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"key": "1",
|
||||
"data":{
|
||||
"name":"Cloud",
|
||||
"size":"20mb",
|
||||
"size":"20kb",
|
||||
"type":"Folder"
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"key": "1-0",
|
||||
"data":{
|
||||
"name":"backup-1.zip",
|
||||
"size":"10mb",
|
||||
"size":"10kb",
|
||||
"type":"Zip"
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "1-1",
|
||||
"data":{
|
||||
"name":"backup-2.zip",
|
||||
"size":"10mb",
|
||||
"size":"10kb",
|
||||
"type":"Zip"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"key": "2",
|
||||
"data": {
|
||||
"name":"Desktop",
|
||||
"size":"150kb",
|
||||
@@ -85,6 +96,7 @@
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"key": "2-0",
|
||||
"data":{
|
||||
"name":"note-meeting.txt",
|
||||
"size":"50kb",
|
||||
@@ -92,6 +104,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "2-1",
|
||||
"data":{
|
||||
"name":"note-todo.txt",
|
||||
"size":"100kb",
|
||||
@@ -101,6 +114,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"key": "3",
|
||||
"data":{
|
||||
"name":"Documents",
|
||||
"size":"75kb",
|
||||
@@ -108,6 +122,7 @@
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"key": "3-0",
|
||||
"data":{
|
||||
"name":"Work",
|
||||
"size":"55kb",
|
||||
@@ -115,6 +130,7 @@
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"key": "3-0-0",
|
||||
"data":{
|
||||
"name":"Expenses.doc",
|
||||
"size":"30kb",
|
||||
@@ -122,6 +138,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "3-0-1",
|
||||
"data":{
|
||||
"name":"Resume.doc",
|
||||
"size":"25kb",
|
||||
@@ -131,6 +148,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"key": "3-1",
|
||||
"data":{
|
||||
"name":"Home",
|
||||
"size":"20kb",
|
||||
@@ -138,6 +156,7 @@
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"key": "3-1-0",
|
||||
"data":{
|
||||
"name":"Invoices",
|
||||
"size":"20kb",
|
||||
@@ -149,53 +168,60 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"key": "4",
|
||||
"data": {
|
||||
"name":"Downloads",
|
||||
"size":"25mb",
|
||||
"size":"25kb",
|
||||
"type":"Folder"
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"key": "4-0",
|
||||
"data": {
|
||||
"name":"Spanish",
|
||||
"size":"10mb",
|
||||
"size":"10kb",
|
||||
"type":"Folder"
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"key": "4-0-0",
|
||||
"data":{
|
||||
"name":"tutorial-a1.txt",
|
||||
"size":"5mb",
|
||||
"size":"5kb",
|
||||
"type":"Text"
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "4-0-1",
|
||||
"data":{
|
||||
"name":"tutorial-a2.txt",
|
||||
"size":"5mb",
|
||||
"size":"5kb",
|
||||
"type":"Text"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"key": "4-1",
|
||||
"data":{
|
||||
"name":"Travel",
|
||||
"size":"15mb",
|
||||
"size":"15kb",
|
||||
"type":"Text"
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"key": "4-1-0",
|
||||
"data":{
|
||||
"name":"Hotel.pdf",
|
||||
"size":"10mb",
|
||||
"size":"10kb",
|
||||
"type":"PDF"
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "4-1-1",
|
||||
"data":{
|
||||
"name":"Flight.pdf",
|
||||
"size":"5mb",
|
||||
"size":"5kb",
|
||||
"type":"PDF"
|
||||
}
|
||||
}
|
||||
@@ -204,20 +230,23 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"key": "5",
|
||||
"data": {
|
||||
"name":"Main",
|
||||
"size":"50mb",
|
||||
"size":"50kb",
|
||||
"type":"Folder"
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"key": "5-0",
|
||||
"data":{
|
||||
"name":"bin",
|
||||
"size":"50kb",
|
||||
"type":"Link"
|
||||
}
|
||||
},
|
||||
{
|
||||
{
|
||||
"key": "5-1",
|
||||
"data":{
|
||||
"name":"etc",
|
||||
"size":"100kb",
|
||||
@@ -225,6 +254,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "5-2",
|
||||
"data":{
|
||||
"name":"var",
|
||||
"size":"100kb",
|
||||
@@ -234,29 +264,33 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"key": "6",
|
||||
"data":{
|
||||
"name":"Other",
|
||||
"size":"5mb",
|
||||
"size":"5kb",
|
||||
"type":"Folder"
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"key": "6-0",
|
||||
"data":{
|
||||
"name":"todo.txt",
|
||||
"size":"3mb",
|
||||
"size":"3kb",
|
||||
"type":"Text"
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "6-1",
|
||||
"data":{
|
||||
"name":"logo.png",
|
||||
"size":"2mb",
|
||||
"size":"2kb",
|
||||
"type":"Picture"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"key": "7",
|
||||
"data":{
|
||||
"name":"Pictures",
|
||||
"size":"150kb",
|
||||
@@ -264,6 +298,7 @@
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"key": "7-0",
|
||||
"data":{
|
||||
"name":"barcelona.jpg",
|
||||
"size":"90kb",
|
||||
@@ -271,6 +306,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "7-1",
|
||||
"data":{
|
||||
"name":"primeng.png",
|
||||
"size":"30kb",
|
||||
@@ -278,6 +314,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "7-2",
|
||||
"data":{
|
||||
"name":"prime.jpg",
|
||||
"size":"30kb",
|
||||
@@ -287,23 +324,26 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"key": "8",
|
||||
"data":{
|
||||
"name":"Videos",
|
||||
"size":"1500mb",
|
||||
"size":"1500kb",
|
||||
"type":"Folder"
|
||||
},
|
||||
"children":[
|
||||
{
|
||||
"key": "8-0",
|
||||
"data":{
|
||||
"name":"primefaces.mkv",
|
||||
"size":"1000mb",
|
||||
"size":"1000kb",
|
||||
"type":"Video"
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "8-1",
|
||||
"data":{
|
||||
"name":"intro.avi",
|
||||
"size":"500mb",
|
||||
"size":"500kb",
|
||||
"type":"Video"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 96 B After Width: | Height: | Size: 96 B |
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 274 KiB After Width: | Height: | Size: 274 KiB |
|
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 6.4 KiB |
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
25
public/demo/images/logo-white.svg
Normal file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="139px" height="158px" viewBox="0 0 139 158" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 59.1 (86144) - https://sketch.com -->
|
||||
<title>head</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Artboard" transform="translate(-3.000000, -7.000000)">
|
||||
<g id="head" transform="translate(3.000000, 7.000000)">
|
||||
<polygon id="chick-right" fill="#ffffff" fill-rule="nonzero" points="102.295646 72.1832018 91.4643424 69.7770951 99.8886897 81.8076287 99.8886897 119.102283 128.772166 95.0412157 128.772166 54.1374014 115.533906 58.9496148"></polygon>
|
||||
<polygon id="chick-left" fill="#ffffff" fill-rule="nonzero" transform="translate(27.078259, 86.619842) scale(-1, 1) translate(-27.078259, -86.619842) " points="19.255651 72.1832018 8.42434732 69.7770951 16.8486946 81.8076287 16.8486946 119.102283 45.7321712 95.0412157 45.7321712 54.1374014 32.4939111 58.9496148"></polygon>
|
||||
<polygon id="mask" fill="#ffffff" points="40.9182584 84.2137354 50.5460839 69.7770951 56.5634749 73.3862552 80.6330387 73.3862552 86.6504296 69.7770951 96.2782551 84.2137354 96.2782551 138.351137 89.057386 149.178617 80.6330387 157.599991 56.5634749 157.599991 48.1391276 149.178617 40.9182584 138.351137"></polygon>
|
||||
<polygon id="bottom-chick-right" fill="#ffffff" fill-rule="nonzero" points="99.8886897 141.960297 115.533906 126.320603 115.533906 110.680909 99.8886897 123.914496"></polygon>
|
||||
<polygon id="bottom-chick-left" fill="#ffffff" fill-rule="nonzero" transform="translate(29.485216, 126.320603) scale(-1, 1) translate(-29.485216, -126.320603) " points="21.6626074 141.960297 37.3078239 126.320603 37.3078239 110.680909 21.6626074 123.914496"></polygon>
|
||||
<path d="M89.4422148,12.342 L93.8712988,22.8580139 L79.4295605,68.5740417 L71.0052132,68.5740417 L71.0042148,56.994 L89.4422148,12.342 Z M48.1982148,11.287 L66.1912148,57.769 L66.1913004,68.5740417 L58.9704313,68.5740417 L43.3252148,22.8580139 L48.1982148,11.287 Z M66.1913004,0 L66.1912148,46.688 L59.3732148,29.074 L61.3773876,30.0763341 L61.3773876,0 L66.1913004,0 Z M75.8191259,1.91846539e-13 L75.8191259,30.0763341 L78.3042148,28.833 L71.0042148,46.513 L71.0052132,0 L75.8191259,1.91846539e-13 Z M84.2434732,0 L87.2562148,7.154 L80.6322148,23.196 L80.6330387,1.91846539e-13 L84.2434732,0 Z M56.5634749,0 L56.5632148,21.816 L50.4332148,5.981 L52.9530403,0 L56.5634749,0 Z" fill="#455C71"></path>
|
||||
<path d="M138.399992,19.2488538 L131.179123,49.3251879 L79.4295605,68.5740417 L78.2260823,68.5740417 L92.6678206,22.8580139 L138.399992,19.2488538 Z M0,19.2488538 L44.528693,22.8580139 L60.1739095,68.5740417 L58.9704313,68.5740417 L7.22086913,49.3251879 L0,19.2488538 Z" id="head-right-2" fill="#ffffff" fill-rule="nonzero"></path>
|
||||
<polygon id="ear-right" fill="#455C71" fill-rule="nonzero" points="96.2782551 19.2488538 121.551297 16.8427471 104.702602 0 87.8539078 0"></polygon>
|
||||
<polygon id="ear-left" fill="#455C71" fill-rule="nonzero" transform="translate(32.493911, 9.624427) scale(-1, 1) translate(-32.493911, -9.624427) " points="24.0695638 19.2488538 49.3426058 16.8427471 32.4939111 0 15.6452165 0"></polygon>
|
||||
<polygon id="Path-2" fill="#455C71" fill-rule="nonzero" points="18.7999989 20.7999988 44.7999973 22.7999986 60.3999964 68.5999959 58.7999965 68.5999959 41.9999975 62.3999963"></polygon>
|
||||
<polygon id="Path-3" fill="#455C71" fill-rule="nonzero" points="119.199993 20.7999988 92.3999945 22.7999986 77.5999954 68.5999959 79.5999953 68.5599959 95.1999943 62.7999963"></polygon>
|
||||
<polygon id="Path-4" fill="#455C71" fill-rule="nonzero" points="48.3999971 72.7999957 50.399997 69.5999959 57.1999966 72.7999957 81.1999952 72.7999957 86.3999949 69.5999959 88.7999947 72.7999957 68.5999959 107.199994"></polygon>
|
||||
<path d="M90.2104053,-1.0658141e-14 L68.485709,52.6144989 L48.1188062,-1.0658141e-14 L90.2104053,-1.0658141e-14 Z" id="Path-6" fill="#ffffff" fill-rule="nonzero"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
25
public/demo/images/logo.svg
Normal file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="139px" height="158px" viewBox="0 0 139 158" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 59.1 (86144) - https://sketch.com -->
|
||||
<title>head</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Artboard" transform="translate(-3.000000, -7.000000)">
|
||||
<g id="head" transform="translate(3.000000, 7.000000)">
|
||||
<polygon id="chick-right" fill="#41B883" fill-rule="nonzero" points="102.295646 72.1832018 91.4643424 69.7770951 99.8886897 81.8076287 99.8886897 119.102283 128.772166 95.0412157 128.772166 54.1374014 115.533906 58.9496148"></polygon>
|
||||
<polygon id="chick-left" fill="#41B883" fill-rule="nonzero" transform="translate(27.078259, 86.619842) scale(-1, 1) translate(-27.078259, -86.619842) " points="19.255651 72.1832018 8.42434732 69.7770951 16.8486946 81.8076287 16.8486946 119.102283 45.7321712 95.0412157 45.7321712 54.1374014 32.4939111 58.9496148"></polygon>
|
||||
<polygon id="mask" fill="#41B883" points="40.9182584 84.2137354 50.5460839 69.7770951 56.5634749 73.3862552 80.6330387 73.3862552 86.6504296 69.7770951 96.2782551 84.2137354 96.2782551 138.351137 89.057386 149.178617 80.6330387 157.599991 56.5634749 157.599991 48.1391276 149.178617 40.9182584 138.351137"></polygon>
|
||||
<polygon id="bottom-chick-right" fill="#41B883" fill-rule="nonzero" points="99.8886897 141.960297 115.533906 126.320603 115.533906 110.680909 99.8886897 123.914496"></polygon>
|
||||
<polygon id="bottom-chick-left" fill="#41B883" fill-rule="nonzero" transform="translate(29.485216, 126.320603) scale(-1, 1) translate(-29.485216, -126.320603) " points="21.6626074 141.960297 37.3078239 126.320603 37.3078239 110.680909 21.6626074 123.914496"></polygon>
|
||||
<path d="M89.4422148,12.342 L93.8712988,22.8580139 L79.4295605,68.5740417 L71.0052132,68.5740417 L71.0042148,56.994 L89.4422148,12.342 Z M48.1982148,11.287 L66.1912148,57.769 L66.1913004,68.5740417 L58.9704313,68.5740417 L43.3252148,22.8580139 L48.1982148,11.287 Z M66.1913004,0 L66.1912148,46.688 L59.3732148,29.074 L61.3773876,30.0763341 L61.3773876,0 L66.1913004,0 Z M75.8191259,1.91846539e-13 L75.8191259,30.0763341 L78.3042148,28.833 L71.0042148,46.513 L71.0052132,0 L75.8191259,1.91846539e-13 Z M84.2434732,0 L87.2562148,7.154 L80.6322148,23.196 L80.6330387,1.91846539e-13 L84.2434732,0 Z M56.5634749,0 L56.5632148,21.816 L50.4332148,5.981 L52.9530403,0 L56.5634749,0 Z" fill="#455C71"></path>
|
||||
<path d="M138.399992,19.2488538 L131.179123,49.3251879 L79.4295605,68.5740417 L78.2260823,68.5740417 L92.6678206,22.8580139 L138.399992,19.2488538 Z M0,19.2488538 L44.528693,22.8580139 L60.1739095,68.5740417 L58.9704313,68.5740417 L7.22086913,49.3251879 L0,19.2488538 Z" id="head-right-2" fill="#41B883" fill-rule="nonzero"></path>
|
||||
<polygon id="ear-right" fill="#455C71" fill-rule="nonzero" points="96.2782551 19.2488538 121.551297 16.8427471 104.702602 0 87.8539078 0"></polygon>
|
||||
<polygon id="ear-left" fill="#455C71" fill-rule="nonzero" transform="translate(32.493911, 9.624427) scale(-1, 1) translate(-32.493911, -9.624427) " points="24.0695638 19.2488538 49.3426058 16.8427471 32.4939111 0 15.6452165 0"></polygon>
|
||||
<polygon id="Path-2" fill="#455C71" fill-rule="nonzero" points="18.7999989 20.7999988 44.7999973 22.7999986 60.3999964 68.5999959 58.7999965 68.5999959 41.9999975 62.3999963"></polygon>
|
||||
<polygon id="Path-3" fill="#455C71" fill-rule="nonzero" points="119.199993 20.7999988 92.3999945 22.7999986 77.5999954 68.5999959 79.5999953 68.5599959 95.1999943 62.7999963"></polygon>
|
||||
<polygon id="Path-4" fill="#455C71" fill-rule="nonzero" points="48.3999971 72.7999957 50.399997 69.5999959 57.1999966 72.7999957 81.1999952 72.7999957 86.3999949 69.5999959 88.7999947 72.7999957 68.5999959 107.199994"></polygon>
|
||||
<path d="M90.2104053,-1.0658141e-14 L68.485709,52.6144989 L48.1188062,-1.0658141e-14 L90.2104053,-1.0658141e-14 Z" id="Path-6" fill="#41B883" fill-rule="nonzero"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
BIN
public/favicon.ico
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
@@ -1,29 +0,0 @@
|
||||
import { RouterModule } from '@angular/router';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { NotfoundComponent } from './demo/components/notfound/notfound.component';
|
||||
import { AppLayoutComponent } from "./layout/app.layout.component";
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
RouterModule.forRoot([
|
||||
{
|
||||
path: '', component: AppLayoutComponent,
|
||||
children: [
|
||||
{ path: '', loadChildren: () => import('./demo/components/dashboard/dashboard.module').then(m => m.DashboardModule) },
|
||||
{ path: 'uikit', loadChildren: () => import('./demo/components/uikit/uikit.module').then(m => m.UIkitModule) },
|
||||
{ path: 'utilities', loadChildren: () => import('./demo/components/utilities/utilities.module').then(m => m.UtilitiesModule) },
|
||||
{ path: 'documentation', loadChildren: () => import('./demo/components/documentation/documentation.module').then(m => m.DocumentationModule) },
|
||||
{ path: 'blocks', loadChildren: () => import('./demo/components/primeblocks/primeblocks.module').then(m => m.PrimeBlocksModule) },
|
||||
{ path: 'pages', loadChildren: () => import('./demo/components/pages/pages.module').then(m => m.PagesModule) }
|
||||
]
|
||||
},
|
||||
{ path: 'auth', loadChildren: () => import('./demo/components/auth/auth.module').then(m => m.AuthModule) },
|
||||
{ path: 'landing', loadChildren: () => import('./demo/components/landing/landing.module').then(m => m.LandingModule) },
|
||||
{ path: 'notfound', component: NotfoundComponent },
|
||||
{ path: '**', redirectTo: '/notfound' },
|
||||
], { scrollPositionRestoration: 'enabled', anchorScrolling: 'enabled', onSameUrlNavigation: 'reload' })
|
||||
],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class AppRoutingModule {
|
||||
}
|
||||
29
src/app/app.component.spec.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import { TestBed } from '@angular/core/testing';
|
||||
import { AppComponent } from './app.component';
|
||||
|
||||
describe('AppComponent', () => {
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [AppComponent],
|
||||
}).compileComponents();
|
||||
});
|
||||
|
||||
it('should create the app', () => {
|
||||
const fixture = TestBed.createComponent(AppComponent);
|
||||
const app = fixture.componentInstance;
|
||||
expect(app).toBeTruthy();
|
||||
});
|
||||
|
||||
it(`should have the 'sakai-19' title`, () => {
|
||||
const fixture = TestBed.createComponent(AppComponent);
|
||||
const app = fixture.componentInstance;
|
||||
expect(app.title).toEqual('sakai-19');
|
||||
});
|
||||
|
||||
it('should render title', () => {
|
||||
const fixture = TestBed.createComponent(AppComponent);
|
||||
fixture.detectChanges();
|
||||
const compiled = fixture.nativeElement as HTMLElement;
|
||||
expect(compiled.querySelector('h1')?.textContent).toContain('Hello, sakai-19');
|
||||
});
|
||||
});
|
||||
@@ -1,15 +1,9 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { PrimeNGConfig } from 'primeng/api';
|
||||
import { Component } from '@angular/core';
|
||||
import {RouterModule} from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
templateUrl: './app.component.html'
|
||||
selector: 'app-root',
|
||||
imports: [RouterModule],
|
||||
templateUrl: './app.component.html'
|
||||
})
|
||||
export class AppComponent implements OnInit {
|
||||
|
||||
constructor(private primengConfig: PrimeNGConfig) { }
|
||||
|
||||
ngOnInit() {
|
||||
this.primengConfig.ripple = true;
|
||||
}
|
||||
}
|
||||
export class AppComponent {}
|
||||
|
||||
15
src/app/app.config.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { routes } from './app.routes';
|
||||
import { provideHttpClient, withFetch } from '@angular/common/http';
|
||||
import { ApplicationConfig } from '@angular/core';
|
||||
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
|
||||
import { provideRouter, withEnabledBlockingInitialNavigation, withInMemoryScrolling } from '@angular/router';
|
||||
import { providePrimeNG } from 'primeng/config';
|
||||
|
||||
export const appConfig: ApplicationConfig = {
|
||||
providers: [
|
||||
provideRouter(routes, withInMemoryScrolling({ anchorScrolling: 'enabled', scrollPositionRestoration: 'enabled' }), withEnabledBlockingInitialNavigation()),
|
||||
provideHttpClient(withFetch()),
|
||||
provideAnimationsAsync(),
|
||||
providePrimeNG({ ripple: false, inputStyle: 'outlined' })
|
||||
]
|
||||
};
|
||||
@@ -1,25 +0,0 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { HashLocationStrategy, LocationStrategy, PathLocationStrategy } from '@angular/common';
|
||||
import { AppComponent } from './app.component';
|
||||
import { AppRoutingModule } from './app-routing.module';
|
||||
import { AppLayoutModule } from './layout/app.layout.module';
|
||||
import { NotfoundComponent } from './demo/components/notfound/notfound.component';
|
||||
import { ProductService } from './demo/service/product.service';
|
||||
import { CountryService } from './demo/service/country.service';
|
||||
import { CustomerService } from './demo/service/customer.service';
|
||||
import { EventService } from './demo/service/event.service';
|
||||
import { IconService } from './demo/service/icon.service';
|
||||
import { NodeService } from './demo/service/node.service';
|
||||
import { PhotoService } from './demo/service/photo.service';
|
||||
|
||||
@NgModule({
|
||||
declarations: [AppComponent, NotfoundComponent],
|
||||
imports: [AppRoutingModule, AppLayoutModule],
|
||||
providers: [
|
||||
{ provide: LocationStrategy, useClass: PathLocationStrategy },
|
||||
CountryService, CustomerService, EventService, IconService, NodeService,
|
||||
PhotoService, ProductService
|
||||
],
|
||||
bootstrap: [AppComponent],
|
||||
})
|
||||
export class AppModule {}
|
||||
21
src/app/app.routes.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import {AppLayoutComponent} from './layout/app.layout.component';
|
||||
import {NotfoundComponent} from './demo/components/notfound/notfound.component';
|
||||
|
||||
export const routes: Routes = [
|
||||
{
|
||||
path: '', component: AppLayoutComponent,
|
||||
children: [
|
||||
{ path: '', loadChildren: () => import('./demo/components/dashboard/dashboard.module').then(m => m.DashboardModule) },
|
||||
{ path: 'uikit', loadChildren: () => import('./demo/components/uikit/uikit.module').then(m => m.UIkitModule) },
|
||||
{ path: 'utilities', loadChildren: () => import('./demo/components/utilities/utilities.module').then(m => m.UtilitiesModule) },
|
||||
{ path: 'documentation', loadChildren: () => import('./demo/components/documentation/documentation.module').then(m => m.DocumentationModule) },
|
||||
{ path: 'blocks', loadChildren: () => import('./demo/components/primeblocks/primeblocks.module').then(m => m.PrimeBlocksModule) },
|
||||
{ path: 'pages', loadChildren: () => import('./demo/components/pages/pages.module').then(m => m.PagesModule) }
|
||||
]
|
||||
},
|
||||
{ path: 'auth', loadChildren: () => import('./demo/components/auth/auth.module').then(m => m.AuthModule) },
|
||||
{ path: 'landing', loadChildren: () => import('./demo/components/landing/landing.module').then(m => m.LandingModule) },
|
||||
{ path: 'notfound', component: NotfoundComponent },
|
||||
{ path: '**', redirectTo: '/notfound' },
|
||||
];
|
||||
@@ -1,15 +1,17 @@
|
||||
pre.app-code {
|
||||
background-color: var(--surface-ground);
|
||||
background-color: var(--code-background);
|
||||
margin: 0 0 1rem 0;
|
||||
padding: 0;
|
||||
border-radius: var(--border-radius);
|
||||
border-radius: var(--content-border-radius);
|
||||
overflow: auto;
|
||||
|
||||
|
||||
code {
|
||||
color: var(--surface-900);
|
||||
color: var(--code-color);
|
||||
padding: 1rem;
|
||||
margin: 0;
|
||||
line-height: 1.5;
|
||||
display: block;
|
||||
font-weight: semibold;
|
||||
font-family: monaco, Consolas, monospace;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,164 +0,0 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"id": 1000,
|
||||
"name": "James Butt",
|
||||
"country": {
|
||||
"name": "Algeria",
|
||||
"code": "dz"
|
||||
},
|
||||
"company": "Benton, John B Jr",
|
||||
"date": "2015-09-13",
|
||||
"status": "unqualified",
|
||||
"activity": 17,
|
||||
"representative": {
|
||||
"name": "Ioni Bowcher",
|
||||
"image": "ionibowcher.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 1001,
|
||||
"name": "Josephine Darakjy",
|
||||
"country": {
|
||||
"name": "Egypt",
|
||||
"code": "eg"
|
||||
},
|
||||
"company": "Chanay, Jeffrey A Esq",
|
||||
"date": "2019-02-09",
|
||||
"status": "proposal",
|
||||
"activity": 0,
|
||||
"representative": {
|
||||
"name": "Amy Elsner",
|
||||
"image": "amyelsner.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 1002,
|
||||
"name": "Art Venere",
|
||||
"country": {
|
||||
"name": "Panama",
|
||||
"code": "pa"
|
||||
},
|
||||
"company": "Chemel, James L Cpa",
|
||||
"date": "2017-05-13",
|
||||
"status": "qualified",
|
||||
"activity": 63,
|
||||
"representative": {
|
||||
"name": "Asiya Javayant",
|
||||
"image": "asiyajavayant.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 1003,
|
||||
"name": "Lenna Paprocki",
|
||||
"country": {
|
||||
"name": "Slovenia",
|
||||
"code": "si"
|
||||
},
|
||||
"company": "Feltz Printing Service",
|
||||
"date": "2020-09-15",
|
||||
"status": "new",
|
||||
"activity": 37,
|
||||
"representative": {
|
||||
"name": "Xuxue Feng",
|
||||
"image": "xuxuefeng.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 1004,
|
||||
"name": "Donette Foller",
|
||||
"country": {
|
||||
"name": "South Africa",
|
||||
"code": "za"
|
||||
},
|
||||
"company": "Printing Dimensions",
|
||||
"date": "2016-05-20",
|
||||
"status": "proposal",
|
||||
"activity": 33,
|
||||
"representative": {
|
||||
"name": "Asiya Javayant",
|
||||
"image": "asiyajavayant.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 1005,
|
||||
"name": "Simona Morasca",
|
||||
"country": {
|
||||
"name": "Egypt",
|
||||
"code": "eg"
|
||||
},
|
||||
"company": "Chapman, Ross E Esq",
|
||||
"date": "2018-02-16",
|
||||
"status": "qualified",
|
||||
"activity": 68,
|
||||
"representative": {
|
||||
"name": "Ivan Magalhaes",
|
||||
"image": "ivanmagalhaes.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 1006,
|
||||
"name": "Mitsue Tollner",
|
||||
"country": {
|
||||
"name": "Paraguay",
|
||||
"code": "py"
|
||||
},
|
||||
"company": "Morlong Associates",
|
||||
"date": "2018-02-19",
|
||||
"status": "renewal",
|
||||
"activity": 54,
|
||||
"representative": {
|
||||
"name": "Ivan Magalhaes",
|
||||
"image": "ivanmagalhaes.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 1007,
|
||||
"name": "Leota Dilliard",
|
||||
"country": {
|
||||
"name": "Serbia",
|
||||
"code": "rs"
|
||||
},
|
||||
"company": "Commercial Press",
|
||||
"date": "2019-08-13",
|
||||
"status": "renewal",
|
||||
"activity": 69,
|
||||
"representative": {
|
||||
"name": "Onyama Limba",
|
||||
"image": "onyamalimba.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 1008,
|
||||
"name": "Sage Wieser",
|
||||
"country": {
|
||||
"name": "Egypt",
|
||||
"code": "eg"
|
||||
},
|
||||
"company": "Truhlar And Truhlar Attys",
|
||||
"date": "2018-11-21",
|
||||
"status": "unqualified",
|
||||
"activity": 76,
|
||||
"representative": {
|
||||
"name": "Ivan Magalhaes",
|
||||
"image": "ivanmagalhaes.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 1009,
|
||||
"name": "Kris Marrier",
|
||||
"country": {
|
||||
"name": "Mexico",
|
||||
"code": "mx"
|
||||
},
|
||||
"company": "King, Christopher A Esq",
|
||||
"date": "2015-07-07",
|
||||
"status": "proposal",
|
||||
"activity": 3,
|
||||
"representative": {
|
||||
"name": "Onyama Limba",
|
||||
"image": "onyamalimba.png"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
{
|
||||
"data":
|
||||
[
|
||||
{
|
||||
"label": "Lazy Node 0",
|
||||
"data": "Node 0",
|
||||
"expandedIcon": "pi pi-folder-open",
|
||||
"collapsedIcon": "pi pi-folder",
|
||||
"leaf": false
|
||||
},
|
||||
{
|
||||
"label": "Lazy Node 1",
|
||||
"data": "Node 1",
|
||||
"expandedIcon": "pi pi-folder-open",
|
||||
"collapsedIcon": "pi pi-folder",
|
||||
"leaf": false
|
||||
},
|
||||
{
|
||||
"label": "Lazy Node 1",
|
||||
"data": "Node 2",
|
||||
"expandedIcon": "pi pi-folder-open",
|
||||
"collapsedIcon": "pi pi-folder",
|
||||
"leaf": false
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
{
|
||||
"data":
|
||||
[
|
||||
{
|
||||
"data":{
|
||||
"name":"Lazy Folder 0",
|
||||
"size":"75kb",
|
||||
"type":"Folder"
|
||||
},
|
||||
"leaf": false
|
||||
},
|
||||
{
|
||||
"data":{
|
||||
"name":"Lazy Folder 1",
|
||||
"size":"150kb",
|
||||
"type":"Folder"
|
||||
},
|
||||
"leaf": false
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,94 +0,0 @@
|
||||
{
|
||||
"data":[
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria1.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria1s.jpg",
|
||||
"alt": "Description for Image 1",
|
||||
"title": "Title 1"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria2.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria2s.jpg",
|
||||
"alt": "Description for Image 2",
|
||||
"title": "Title 2"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria3.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria3s.jpg",
|
||||
"alt": "Description for Image 3",
|
||||
"title": "Title 3"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria4.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria4s.jpg",
|
||||
"alt": "Description for Image 4",
|
||||
"title": "Title 4"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria5.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria5s.jpg",
|
||||
"alt": "Description for Image 5",
|
||||
"title": "Title 5"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria6.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria6s.jpg",
|
||||
"alt": "Description for Image 6",
|
||||
"title": "Title 6"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria7.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria7s.jpg",
|
||||
"alt": "Description for Image 7",
|
||||
"title": "Title 7"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria8.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria8s.jpg",
|
||||
"alt": "Description for Image 8",
|
||||
"title": "Title 8"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria9.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria9s.jpg",
|
||||
"alt": "Description for Image 9",
|
||||
"title": "Title 9"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria10.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria10s.jpg",
|
||||
"alt": "Description for Image 10",
|
||||
"title": "Title 10"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria11.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria11s.jpg",
|
||||
"alt": "Description for Image 11",
|
||||
"title": "Title 11"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria12.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria12s.jpg",
|
||||
"alt": "Description for Image 12",
|
||||
"title": "Title 12"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria13.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria13s.jpg",
|
||||
"alt": "Description for Image 13",
|
||||
"title": "Title 13"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria14.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria14s.jpg",
|
||||
"alt": "Description for Image 14",
|
||||
"title": "Title 14"
|
||||
},
|
||||
{
|
||||
"itemImageSrc": "assets/demo/images/galleria/galleria15.jpg",
|
||||
"thumbnailImageSrc": "assets/demo/images/galleria/galleria15s.jpg",
|
||||
"alt": "Description for Image 15",
|
||||
"title": "Title 15"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,364 +0,0 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"id": "1007",
|
||||
"code": "mbvjkgip5",
|
||||
"name": "Galaxy Earrings",
|
||||
"description": "Product Description",
|
||||
"image": "galaxy-earrings.jpg",
|
||||
"price": 34,
|
||||
"category": "Accessories",
|
||||
"quantity": 23,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"code": "lm2tny2k4",
|
||||
"name": "Shoes",
|
||||
"description": "Product Description",
|
||||
"image": "shoes.jpg",
|
||||
"price": 64,
|
||||
"category": "Clothing",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1016",
|
||||
"code": "k8l6j58jl",
|
||||
"name": "Lime Band",
|
||||
"description": "Product Description",
|
||||
"image": "lime-band.jpg",
|
||||
"price": 79,
|
||||
"category": "Fitness",
|
||||
"quantity": 12,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1009",
|
||||
"code": "cm230f032",
|
||||
"name": "Gaming Set",
|
||||
"description": "Product Description",
|
||||
"image": "gaming-set.jpg",
|
||||
"price": 299,
|
||||
"category": "Electronics",
|
||||
"quantity": 63,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1002",
|
||||
"code": "zz21cz3c1",
|
||||
"name": "Blue Band",
|
||||
"description": "Product Description",
|
||||
"image": "blue-band.jpg",
|
||||
"price": 79,
|
||||
"category": "Fitness",
|
||||
"quantity": 2,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"code": "nvklal433",
|
||||
"name": "Black Watch",
|
||||
"description": "Product Description",
|
||||
"image": "black-watch.jpg",
|
||||
"price": 72,
|
||||
"category": "Accessories",
|
||||
"quantity": 61,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1003",
|
||||
"code": "244wgerg2",
|
||||
"name": "Blue T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "blue-t-shirt.jpg",
|
||||
"price": 29,
|
||||
"category": "Clothing",
|
||||
"quantity": 25,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1019",
|
||||
"code": "mnb5mb2m5",
|
||||
"name": "Pink Band",
|
||||
"description": "Product Description",
|
||||
"image": "pink-band.jpg",
|
||||
"price": 79,
|
||||
"category": "Fitness",
|
||||
"quantity": 63,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1006",
|
||||
"code": "bib36pfvm",
|
||||
"name": "Chakra Bracelet",
|
||||
"description": "Product Description",
|
||||
"image": "chakra-bracelet.jpg",
|
||||
"price": 32,
|
||||
"category": "Accessories",
|
||||
"quantity": 5,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1025",
|
||||
"code": "nbm5mv45n",
|
||||
"name": "Sneakers",
|
||||
"description": "Product Description",
|
||||
"image": "sneakers.jpg",
|
||||
"price": 78,
|
||||
"category": "Clothing",
|
||||
"quantity": 52,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1008",
|
||||
"code": "vbb124btr",
|
||||
"name": "Game Controller",
|
||||
"description": "Product Description",
|
||||
"image": "game-controller.jpg",
|
||||
"price": 99,
|
||||
"category": "Electronics",
|
||||
"quantity": 2,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1010",
|
||||
"code": "plb34234v",
|
||||
"name": "Gold Phone Case",
|
||||
"description": "Product Description",
|
||||
"image": "gold-phone-case.jpg",
|
||||
"price": 24,
|
||||
"category": "Accessories",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1011",
|
||||
"code": "4920nnc2d",
|
||||
"name": "Green Earbuds",
|
||||
"description": "Product Description",
|
||||
"image": "green-earbuds.jpg",
|
||||
"price": 89,
|
||||
"category": "Electronics",
|
||||
"quantity": 23,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1015",
|
||||
"code": "vb34btbg5",
|
||||
"name": "Light Green T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "light-green-t-shirt.jpg",
|
||||
"price": 49,
|
||||
"category": "Clothing",
|
||||
"quantity": 34,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"code": "250vm23cc",
|
||||
"name": "Green T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "green-t-shirt.jpg",
|
||||
"price": 49,
|
||||
"category": "Clothing",
|
||||
"quantity": 74,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1014",
|
||||
"code": "waas1x2as",
|
||||
"name": "Headphones",
|
||||
"description": "Product Description",
|
||||
"image": "headphones.jpg",
|
||||
"price": 175,
|
||||
"category": "Electronics",
|
||||
"quantity": 8,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1017",
|
||||
"code": "v435nn85n",
|
||||
"name": "Mini Speakers",
|
||||
"description": "Product Description",
|
||||
"image": "mini-speakers.jpg",
|
||||
"price": 85,
|
||||
"category": "Clothing",
|
||||
"quantity": 42,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1005",
|
||||
"code": "av2231fwg",
|
||||
"name": "Brown Purse",
|
||||
"description": "Product Description",
|
||||
"image": "brown-purse.jpg",
|
||||
"price": 120,
|
||||
"category": "Accessories",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1018",
|
||||
"code": "09zx9c0zc",
|
||||
"name": "Painted Phone Case",
|
||||
"description": "Product Description",
|
||||
"image": "painted-phone-case.jpg",
|
||||
"price": 56,
|
||||
"category": "Accessories",
|
||||
"quantity": 41,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1020",
|
||||
"code": "r23fwf2w3",
|
||||
"name": "Pink Purse",
|
||||
"description": "Product Description",
|
||||
"image": "pink-purse.jpg",
|
||||
"price": 110,
|
||||
"category": "Accessories",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1021",
|
||||
"code": "pxpzczo23",
|
||||
"name": "Purple Band",
|
||||
"description": "Product Description",
|
||||
"image": "purple-band.jpg",
|
||||
"price": 79,
|
||||
"category": "Fitness",
|
||||
"quantity": 6,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1022",
|
||||
"code": "2c42cb5cb",
|
||||
"name": "Purple Gemstone Necklace",
|
||||
"description": "Product Description",
|
||||
"image": "purple-gemstone-necklace.jpg",
|
||||
"price": 45,
|
||||
"category": "Accessories",
|
||||
"quantity": 62,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"code": "5k43kkk23",
|
||||
"name": "Purple T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "purple-t-shirt.jpg",
|
||||
"price": 49,
|
||||
"category": "Clothing",
|
||||
"quantity": 2,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"code": "tx125ck42",
|
||||
"name": "Yoga Mat",
|
||||
"description": "Product Description",
|
||||
"image": "yoga-mat.jpg",
|
||||
"price": 20,
|
||||
"category": "Fitness",
|
||||
"quantity": 15,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"code": "acvx872gc",
|
||||
"name": "Yellow Earbuds",
|
||||
"description": "Product Description",
|
||||
"image": "yellow-earbuds.jpg",
|
||||
"price": 89,
|
||||
"category": "Electronics",
|
||||
"quantity": 35,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1000",
|
||||
"code": "f230fh0g3",
|
||||
"name": "Bamboo Watch",
|
||||
"description": "Product Description",
|
||||
"image": "bamboo-watch.jpg",
|
||||
"price": 65,
|
||||
"category": "Accessories",
|
||||
"quantity": 24,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"code": "fldsmn31b",
|
||||
"name": "Grey T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "grey-t-shirt.jpg",
|
||||
"price": 48,
|
||||
"category": "Clothing",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1026",
|
||||
"code": "zx23zc42c",
|
||||
"name": "Teal T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "teal-t-shirt.jpg",
|
||||
"price": 49,
|
||||
"category": "Clothing",
|
||||
"quantity": 3,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1004",
|
||||
"code": "h456wer53",
|
||||
"name": "Bracelet",
|
||||
"description": "Product Description",
|
||||
"image": "bracelet.jpg",
|
||||
"price": 15,
|
||||
"category": "Accessories",
|
||||
"quantity": 73,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1029",
|
||||
"code": "gwuby345v",
|
||||
"name": "Yoga Set",
|
||||
"description": "Product Description",
|
||||
"image": "yoga-set.jpg",
|
||||
"price": 20,
|
||||
"category": "Fitness",
|
||||
"quantity": 25,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 8
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,833 +0,0 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"id": "1000",
|
||||
"code": "f230fh0g3",
|
||||
"name": "Bamboo Watch",
|
||||
"description": "Product Description",
|
||||
"image": "bamboo-watch.jpg",
|
||||
"price": 65,
|
||||
"category": "Accessories",
|
||||
"quantity": 24,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1000-0",
|
||||
"productCode": "f230fh0g3",
|
||||
"date": "2020-09-13",
|
||||
"amount": 65,
|
||||
"quantity": 1,
|
||||
"customer": "David James",
|
||||
"status": "PENDING"
|
||||
},
|
||||
{
|
||||
"id": "1001-1",
|
||||
"productCode": "f230fh0g3",
|
||||
"date": "2020-05-14",
|
||||
"amount": 130,
|
||||
"quantity": 2,
|
||||
"customer": "Leon Rodrigues",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1002-2",
|
||||
"productCode": "f230fh0g3",
|
||||
"date": "2019-01-04",
|
||||
"amount": 65,
|
||||
"quantity": 1,
|
||||
"customer": "Juan Alejandro",
|
||||
"status": "RETURNED"
|
||||
},
|
||||
{
|
||||
"id": "1003-3",
|
||||
"productCode": "f230fh0g3",
|
||||
"date": "2020-09-13",
|
||||
"amount": 195,
|
||||
"quantity": 3,
|
||||
"customer": "Claire Morrow",
|
||||
"status": "CANCELLED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"code": "nvklal433",
|
||||
"name": "Black Watch",
|
||||
"description": "Product Description",
|
||||
"image": "black-watch.jpg",
|
||||
"price": 72,
|
||||
"category": "Accessories",
|
||||
"quantity": 61,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1001-0",
|
||||
"productCode": "nvklal433",
|
||||
"date": "2020-05-14",
|
||||
"amount": 72,
|
||||
"quantity": 1,
|
||||
"customer": "Maisha Jefferson",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1001-1",
|
||||
"productCode": "nvklal433",
|
||||
"date": "2020-02-28",
|
||||
"amount": 144,
|
||||
"quantity": 2,
|
||||
"customer": "Octavia Murillo",
|
||||
"status": "PENDING"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1002",
|
||||
"code": "zz21cz3c1",
|
||||
"name": "Blue Band",
|
||||
"description": "Product Description",
|
||||
"image": "blue-band.jpg",
|
||||
"price": 79,
|
||||
"category": "Fitness",
|
||||
"quantity": 2,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1002-0",
|
||||
"productCode": "zz21cz3c1",
|
||||
"date": "2020-07-05",
|
||||
"amount": 79,
|
||||
"quantity": 1,
|
||||
"customer": "Stacey Leja",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1002-1",
|
||||
"productCode": "zz21cz3c1",
|
||||
"date": "2020-02-06",
|
||||
"amount": 79,
|
||||
"quantity": 1,
|
||||
"customer": "Ashley Wickens",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1003",
|
||||
"code": "244wgerg2",
|
||||
"name": "Blue T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "blue-t-shirt.jpg",
|
||||
"price": 29,
|
||||
"category": "Clothing",
|
||||
"quantity": 25,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5,
|
||||
"orders": []
|
||||
},
|
||||
{
|
||||
"id": "1004",
|
||||
"code": "h456wer53",
|
||||
"name": "Bracelet",
|
||||
"description": "Product Description",
|
||||
"image": "bracelet.jpg",
|
||||
"price": 15,
|
||||
"category": "Accessories",
|
||||
"quantity": 73,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1004-0",
|
||||
"productCode": "h456wer53",
|
||||
"date": "2020-09-05",
|
||||
"amount": 60,
|
||||
"quantity": 4,
|
||||
"customer": "Mayumi Misaki",
|
||||
"status": "PENDING"
|
||||
},
|
||||
{
|
||||
"id": "1004-5",
|
||||
"productCode": "h456wer53",
|
||||
"date": "2019-04-16",
|
||||
"amount": 2,
|
||||
"quantity": 30,
|
||||
"customer": "Francesco Salvatore",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1005",
|
||||
"code": "av2231fwg",
|
||||
"name": "Brown Purse",
|
||||
"description": "Product Description",
|
||||
"image": "brown-purse.jpg",
|
||||
"price": 120,
|
||||
"category": "Accessories",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 4,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1005-0",
|
||||
"productCode": "av2231fwg",
|
||||
"date": "2020-01-25",
|
||||
"amount": 120,
|
||||
"quantity": 1,
|
||||
"customer": "Isabel Sinclair",
|
||||
"status": "RETURNED"
|
||||
},
|
||||
{
|
||||
"id": "1005-1",
|
||||
"productCode": "av2231fwg",
|
||||
"date": "2019-03-12",
|
||||
"amount": 240,
|
||||
"quantity": 2,
|
||||
"customer": "Lionel Clifford",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1005-2",
|
||||
"productCode": "av2231fwg",
|
||||
"date": "2019-05-05",
|
||||
"amount": 120,
|
||||
"quantity": 1,
|
||||
"customer": "Cody Chavez",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1006",
|
||||
"code": "bib36pfvm",
|
||||
"name": "Chakra Bracelet",
|
||||
"description": "Product Description",
|
||||
"image": "chakra-bracelet.jpg",
|
||||
"price": 32,
|
||||
"category": "Accessories",
|
||||
"quantity": 5,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1006-0",
|
||||
"productCode": "bib36pfvm",
|
||||
"date": "2020-02-24",
|
||||
"amount": 32,
|
||||
"quantity": 1,
|
||||
"customer": "Arvin Darci",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1006-1",
|
||||
"productCode": "bib36pfvm",
|
||||
"date": "2020-01-14",
|
||||
"amount": 64,
|
||||
"quantity": 2,
|
||||
"customer": "Izzy Jones",
|
||||
"status": "PENDING"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1007",
|
||||
"code": "mbvjkgip5",
|
||||
"name": "Galaxy Earrings",
|
||||
"description": "Product Description",
|
||||
"image": "galaxy-earrings.jpg",
|
||||
"price": 34,
|
||||
"category": "Accessories",
|
||||
"quantity": 23,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1007-0",
|
||||
"productCode": "mbvjkgip5",
|
||||
"date": "2020-06-19",
|
||||
"amount": 34,
|
||||
"quantity": 1,
|
||||
"customer": "Jennifer Smith",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1008",
|
||||
"code": "vbb124btr",
|
||||
"name": "Game Controller",
|
||||
"description": "Product Description",
|
||||
"image": "game-controller.jpg",
|
||||
"price": 99,
|
||||
"category": "Electronics",
|
||||
"quantity": 2,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 4,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1008-0",
|
||||
"productCode": "vbb124btr",
|
||||
"date": "2020-01-05",
|
||||
"amount": 99,
|
||||
"quantity": 1,
|
||||
"customer": "Jeanfrancois David",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1008-1",
|
||||
"productCode": "vbb124btr",
|
||||
"date": "2020-01-19",
|
||||
"amount": 198,
|
||||
"quantity": 2,
|
||||
"customer": "Ivar Greenwood",
|
||||
"status": "RETURNED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1009",
|
||||
"code": "cm230f032",
|
||||
"name": "Gaming Set",
|
||||
"description": "Product Description",
|
||||
"image": "gaming-set.jpg",
|
||||
"price": 299,
|
||||
"category": "Electronics",
|
||||
"quantity": 63,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 3,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1009-0",
|
||||
"productCode": "cm230f032",
|
||||
"date": "2020-06-24",
|
||||
"amount": 299,
|
||||
"quantity": 1,
|
||||
"customer": "Kadeem Mujtaba",
|
||||
"status": "PENDING"
|
||||
},
|
||||
{
|
||||
"id": "1009-1",
|
||||
"productCode": "cm230f032",
|
||||
"date": "2020-05-11",
|
||||
"amount": 299,
|
||||
"quantity": 1,
|
||||
"customer": "Ashley Wickens",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1009-2",
|
||||
"productCode": "cm230f032",
|
||||
"date": "2019-02-07",
|
||||
"amount": 299,
|
||||
"quantity": 1,
|
||||
"customer": "Julie Johnson",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1009-3",
|
||||
"productCode": "cm230f032",
|
||||
"date": "2020-04-26",
|
||||
"amount": 299,
|
||||
"quantity": 1,
|
||||
"customer": "Tony Costa",
|
||||
"status": "CANCELLED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1010",
|
||||
"code": "plb34234v",
|
||||
"name": "Gold Phone Case",
|
||||
"description": "Product Description",
|
||||
"image": "gold-phone-case.jpg",
|
||||
"price": 24,
|
||||
"category": "Accessories",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 4,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1010-0",
|
||||
"productCode": "plb34234v",
|
||||
"date": "2020-02-04",
|
||||
"amount": 24,
|
||||
"quantity": 1,
|
||||
"customer": "James Butt",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1010-1",
|
||||
"productCode": "plb34234v",
|
||||
"date": "2020-05-05",
|
||||
"amount": 48,
|
||||
"quantity": 2,
|
||||
"customer": "Josephine Darakjy",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1011",
|
||||
"code": "4920nnc2d",
|
||||
"name": "Green Earbuds",
|
||||
"description": "Product Description",
|
||||
"image": "green-earbuds.jpg",
|
||||
"price": 89,
|
||||
"category": "Electronics",
|
||||
"quantity": 23,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1011-0",
|
||||
"productCode": "4920nnc2d",
|
||||
"date": "2020-06-01",
|
||||
"amount": 89,
|
||||
"quantity": 1,
|
||||
"customer": "Art Venere",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"code": "250vm23cc",
|
||||
"name": "Green T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "green-t-shirt.jpg",
|
||||
"price": 49,
|
||||
"category": "Clothing",
|
||||
"quantity": 74,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1012-0",
|
||||
"productCode": "250vm23cc",
|
||||
"date": "2020-02-05",
|
||||
"amount": 49,
|
||||
"quantity": 1,
|
||||
"customer": "Lenna Paprocki",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1012-1",
|
||||
"productCode": "250vm23cc",
|
||||
"date": "2020-02-15",
|
||||
"amount": 49,
|
||||
"quantity": 1,
|
||||
"customer": "Donette Foller",
|
||||
"status": "PENDING"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"code": "fldsmn31b",
|
||||
"name": "Grey T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "grey-t-shirt.jpg",
|
||||
"price": 48,
|
||||
"category": "Clothing",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 3,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1013-0",
|
||||
"productCode": "fldsmn31b",
|
||||
"date": "2020-04-01",
|
||||
"amount": 48,
|
||||
"quantity": 1,
|
||||
"customer": "Simona Morasca",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1014",
|
||||
"code": "waas1x2as",
|
||||
"name": "Headphones",
|
||||
"description": "Product Description",
|
||||
"image": "headphones.jpg",
|
||||
"price": 175,
|
||||
"category": "Electronics",
|
||||
"quantity": 8,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 5,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1014-0",
|
||||
"productCode": "waas1x2as",
|
||||
"date": "2020-05-15",
|
||||
"amount": 175,
|
||||
"quantity": 1,
|
||||
"customer": "Lenna Paprocki",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1014-1",
|
||||
"productCode": "waas1x2as",
|
||||
"date": "2020-01-02",
|
||||
"amount": 175,
|
||||
"quantity": 1,
|
||||
"customer": "Donette Foller",
|
||||
"status": "CANCELLED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1015",
|
||||
"code": "vb34btbg5",
|
||||
"name": "Light Green T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "light-green-t-shirt.jpg",
|
||||
"price": 49,
|
||||
"category": "Clothing",
|
||||
"quantity": 34,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1015-0",
|
||||
"productCode": "vb34btbg5",
|
||||
"date": "2020-07-02",
|
||||
"amount": 98,
|
||||
"quantity": 2,
|
||||
"customer": "Mitsue Tollner",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1016",
|
||||
"code": "k8l6j58jl",
|
||||
"name": "Lime Band",
|
||||
"description": "Product Description",
|
||||
"image": "lime-band.jpg",
|
||||
"price": 79,
|
||||
"category": "Fitness",
|
||||
"quantity": 12,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 3,
|
||||
"orders": []
|
||||
},
|
||||
{
|
||||
"id": "1017",
|
||||
"code": "v435nn85n",
|
||||
"name": "Mini Speakers",
|
||||
"description": "Product Description",
|
||||
"image": "mini-speakers.jpg",
|
||||
"price": 85,
|
||||
"category": "Clothing",
|
||||
"quantity": 42,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1017-0",
|
||||
"productCode": "v435nn85n",
|
||||
"date": "2020-07-12",
|
||||
"amount": 85,
|
||||
"quantity": 1,
|
||||
"customer": "Minna Amigon",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1018",
|
||||
"code": "09zx9c0zc",
|
||||
"name": "Painted Phone Case",
|
||||
"description": "Product Description",
|
||||
"image": "painted-phone-case.jpg",
|
||||
"price": 56,
|
||||
"category": "Accessories",
|
||||
"quantity": 41,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1018-0",
|
||||
"productCode": "09zx9c0zc",
|
||||
"date": "2020-07-01",
|
||||
"amount": 56,
|
||||
"quantity": 1,
|
||||
"customer": "Abel Maclead",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1018-1",
|
||||
"productCode": "09zx9c0zc",
|
||||
"date": "2020-05-02",
|
||||
"amount": 56,
|
||||
"quantity": 1,
|
||||
"customer": "Minna Amigon",
|
||||
"status": "RETURNED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1019",
|
||||
"code": "mnb5mb2m5",
|
||||
"name": "Pink Band",
|
||||
"description": "Product Description",
|
||||
"image": "pink-band.jpg",
|
||||
"price": 79,
|
||||
"category": "Fitness",
|
||||
"quantity": 63,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4,
|
||||
"orders": []
|
||||
},
|
||||
{
|
||||
"id": "1020",
|
||||
"code": "r23fwf2w3",
|
||||
"name": "Pink Purse",
|
||||
"description": "Product Description",
|
||||
"image": "pink-purse.jpg",
|
||||
"price": 110,
|
||||
"category": "Accessories",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 4,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1020-0",
|
||||
"productCode": "r23fwf2w3",
|
||||
"date": "2020-05-29",
|
||||
"amount": 110,
|
||||
"quantity": 1,
|
||||
"customer": "Kiley Caldarera",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1020-1",
|
||||
"productCode": "r23fwf2w3",
|
||||
"date": "2020-02-11",
|
||||
"amount": 220,
|
||||
"quantity": 2,
|
||||
"customer": "Graciela Ruta",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1021",
|
||||
"code": "pxpzczo23",
|
||||
"name": "Purple Band",
|
||||
"description": "Product Description",
|
||||
"image": "purple-band.jpg",
|
||||
"price": 79,
|
||||
"category": "Fitness",
|
||||
"quantity": 6,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1021-0",
|
||||
"productCode": "pxpzczo23",
|
||||
"date": "2020-02-02",
|
||||
"amount": 79,
|
||||
"quantity": 1,
|
||||
"customer": "Cammy Albares",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1022",
|
||||
"code": "2c42cb5cb",
|
||||
"name": "Purple Gemstone Necklace",
|
||||
"description": "Product Description",
|
||||
"image": "purple-gemstone-necklace.jpg",
|
||||
"price": 45,
|
||||
"category": "Accessories",
|
||||
"quantity": 62,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1022-0",
|
||||
"productCode": "2c42cb5cb",
|
||||
"date": "2020-06-29",
|
||||
"amount": 45,
|
||||
"quantity": 1,
|
||||
"customer": "Mattie Poquette",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1022-1",
|
||||
"productCode": "2c42cb5cb",
|
||||
"date": "2020-02-11",
|
||||
"amount": 135,
|
||||
"quantity": 3,
|
||||
"customer": "Meaghan Garufi",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"code": "5k43kkk23",
|
||||
"name": "Purple T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "purple-t-shirt.jpg",
|
||||
"price": 49,
|
||||
"category": "Clothing",
|
||||
"quantity": 2,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 5,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1023-0",
|
||||
"productCode": "5k43kkk23",
|
||||
"date": "2020-04-15",
|
||||
"amount": 49,
|
||||
"quantity": 1,
|
||||
"customer": "Gladys Rim",
|
||||
"status": "RETURNED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"code": "lm2tny2k4",
|
||||
"name": "Shoes",
|
||||
"description": "Product Description",
|
||||
"image": "shoes.jpg",
|
||||
"price": 64,
|
||||
"category": "Clothing",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4,
|
||||
"orders": []
|
||||
},
|
||||
{
|
||||
"id": "1025",
|
||||
"code": "nbm5mv45n",
|
||||
"name": "Sneakers",
|
||||
"description": "Product Description",
|
||||
"image": "sneakers.jpg",
|
||||
"price": 78,
|
||||
"category": "Clothing",
|
||||
"quantity": 52,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1025-0",
|
||||
"productCode": "nbm5mv45n",
|
||||
"date": "2020-02-19",
|
||||
"amount": 78,
|
||||
"quantity": 1,
|
||||
"customer": "Yuki Whobrey",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1025-1",
|
||||
"productCode": "nbm5mv45n",
|
||||
"date": "2020-05-21",
|
||||
"amount": 78,
|
||||
"quantity": 1,
|
||||
"customer": "Fletcher Flosi",
|
||||
"status": "PENDING"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1026",
|
||||
"code": "zx23zc42c",
|
||||
"name": "Teal T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "teal-t-shirt.jpg",
|
||||
"price": 49,
|
||||
"category": "Clothing",
|
||||
"quantity": 3,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1026-0",
|
||||
"productCode": "zx23zc42c",
|
||||
"date": "2020-04-24",
|
||||
"amount": 98,
|
||||
"quantity": 2,
|
||||
"customer": "Bette Nicka",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"code": "acvx872gc",
|
||||
"name": "Yellow Earbuds",
|
||||
"description": "Product Description",
|
||||
"image": "yellow-earbuds.jpg",
|
||||
"price": 89,
|
||||
"category": "Electronics",
|
||||
"quantity": 35,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 3,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1027-0",
|
||||
"productCode": "acvx872gc",
|
||||
"date": "2020-01-29",
|
||||
"amount": 89,
|
||||
"quantity": 1,
|
||||
"customer": "Veronika Inouye",
|
||||
"status": "DELIVERED"
|
||||
},
|
||||
{
|
||||
"id": "1027-1",
|
||||
"productCode": "acvx872gc",
|
||||
"date": "2020-06-11",
|
||||
"amount": 89,
|
||||
"quantity": 1,
|
||||
"customer": "Willard Kolmetz",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"code": "tx125ck42",
|
||||
"name": "Yoga Mat",
|
||||
"description": "Product Description",
|
||||
"image": "yoga-mat.jpg",
|
||||
"price": 20,
|
||||
"category": "Fitness",
|
||||
"quantity": 15,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5,
|
||||
"orders": []
|
||||
},
|
||||
{
|
||||
"id": "1029",
|
||||
"code": "gwuby345v",
|
||||
"name": "Yoga Set",
|
||||
"description": "Product Description",
|
||||
"image": "yoga-set.jpg",
|
||||
"price": 20,
|
||||
"category": "Fitness",
|
||||
"quantity": 25,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 8,
|
||||
"orders": [
|
||||
{
|
||||
"id": "1026-0",
|
||||
"productCode": "gwuby345v",
|
||||
"date": "2020-02-14",
|
||||
"amount": 4,
|
||||
"quantity": 80,
|
||||
"customer": "Maryann Royster",
|
||||
"status": "DELIVERED"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,124 +0,0 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"id": "1000",
|
||||
"code": "f230fh0g3",
|
||||
"name": "Bamboo Watch",
|
||||
"description": "Product Description",
|
||||
"image": "bamboo-watch.jpg",
|
||||
"price": 65,
|
||||
"category": "Accessories",
|
||||
"quantity": 24,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"code": "nvklal433",
|
||||
"name": "Black Watch",
|
||||
"description": "Product Description",
|
||||
"image": "black-watch.jpg",
|
||||
"price": 72,
|
||||
"category": "Accessories",
|
||||
"quantity": 61,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1002",
|
||||
"code": "zz21cz3c1",
|
||||
"name": "Blue Band",
|
||||
"description": "Product Description",
|
||||
"image": "blue-band.jpg",
|
||||
"price": 79,
|
||||
"category": "Fitness",
|
||||
"quantity": 2,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1003",
|
||||
"code": "244wgerg2",
|
||||
"name": "Blue T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "blue-t-shirt.jpg",
|
||||
"price": 29,
|
||||
"category": "Clothing",
|
||||
"quantity": 25,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1004",
|
||||
"code": "h456wer53",
|
||||
"name": "Bracelet",
|
||||
"description": "Product Description",
|
||||
"image": "bracelet.jpg",
|
||||
"price": 15,
|
||||
"category": "Accessories",
|
||||
"quantity": 73,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1005",
|
||||
"code": "av2231fwg",
|
||||
"name": "Brown Purse",
|
||||
"description": "Product Description",
|
||||
"image": "brown-purse.jpg",
|
||||
"price": 120,
|
||||
"category": "Accessories",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1006",
|
||||
"code": "bib36pfvm",
|
||||
"name": "Chakra Bracelet",
|
||||
"description": "Product Description",
|
||||
"image": "chakra-bracelet.jpg",
|
||||
"price": 32,
|
||||
"category": "Accessories",
|
||||
"quantity": 5,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1007",
|
||||
"code": "mbvjkgip5",
|
||||
"name": "Galaxy Earrings",
|
||||
"description": "Product Description",
|
||||
"image": "galaxy-earrings.jpg",
|
||||
"price": 34,
|
||||
"category": "Accessories",
|
||||
"quantity": 23,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1008",
|
||||
"code": "vbb124btr",
|
||||
"name": "Game Controller",
|
||||
"description": "Product Description",
|
||||
"image": "game-controller.jpg",
|
||||
"price": 99,
|
||||
"category": "Electronics",
|
||||
"quantity": 2,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1009",
|
||||
"code": "cm230f032",
|
||||
"name": "Gaming Set",
|
||||
"description": "Product Description",
|
||||
"image": "gaming-set.jpg",
|
||||
"price": 299,
|
||||
"category": "Electronics",
|
||||
"quantity": 63,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 3
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,364 +0,0 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"id": "1000",
|
||||
"code": "f230fh0g3",
|
||||
"name": "Bamboo Watch",
|
||||
"description": "Product Description",
|
||||
"image": "bamboo-watch.jpg",
|
||||
"price": 65,
|
||||
"category": "Accessories",
|
||||
"quantity": 24,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1001",
|
||||
"code": "nvklal433",
|
||||
"name": "Black Watch",
|
||||
"description": "Product Description",
|
||||
"image": "black-watch.jpg",
|
||||
"price": 72,
|
||||
"category": "Accessories",
|
||||
"quantity": 61,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1002",
|
||||
"code": "zz21cz3c1",
|
||||
"name": "Blue Band",
|
||||
"description": "Product Description",
|
||||
"image": "blue-band.jpg",
|
||||
"price": 79,
|
||||
"category": "Fitness",
|
||||
"quantity": 2,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1003",
|
||||
"code": "244wgerg2",
|
||||
"name": "Blue T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "blue-t-shirt.jpg",
|
||||
"price": 29,
|
||||
"category": "Clothing",
|
||||
"quantity": 25,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1004",
|
||||
"code": "h456wer53",
|
||||
"name": "Bracelet",
|
||||
"description": "Product Description",
|
||||
"image": "bracelet.jpg",
|
||||
"price": 15,
|
||||
"category": "Accessories",
|
||||
"quantity": 73,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1005",
|
||||
"code": "av2231fwg",
|
||||
"name": "Brown Purse",
|
||||
"description": "Product Description",
|
||||
"image": "brown-purse.jpg",
|
||||
"price": 120,
|
||||
"category": "Accessories",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1006",
|
||||
"code": "bib36pfvm",
|
||||
"name": "Chakra Bracelet",
|
||||
"description": "Product Description",
|
||||
"image": "chakra-bracelet.jpg",
|
||||
"price": 32,
|
||||
"category": "Accessories",
|
||||
"quantity": 5,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1007",
|
||||
"code": "mbvjkgip5",
|
||||
"name": "Galaxy Earrings",
|
||||
"description": "Product Description",
|
||||
"image": "galaxy-earrings.jpg",
|
||||
"price": 34,
|
||||
"category": "Accessories",
|
||||
"quantity": 23,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1008",
|
||||
"code": "vbb124btr",
|
||||
"name": "Game Controller",
|
||||
"description": "Product Description",
|
||||
"image": "game-controller.jpg",
|
||||
"price": 99,
|
||||
"category": "Electronics",
|
||||
"quantity": 2,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1009",
|
||||
"code": "cm230f032",
|
||||
"name": "Gaming Set",
|
||||
"description": "Product Description",
|
||||
"image": "gaming-set.jpg",
|
||||
"price": 299,
|
||||
"category": "Electronics",
|
||||
"quantity": 63,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1010",
|
||||
"code": "plb34234v",
|
||||
"name": "Gold Phone Case",
|
||||
"description": "Product Description",
|
||||
"image": "gold-phone-case.jpg",
|
||||
"price": 24,
|
||||
"category": "Accessories",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1011",
|
||||
"code": "4920nnc2d",
|
||||
"name": "Green Earbuds",
|
||||
"description": "Product Description",
|
||||
"image": "green-earbuds.jpg",
|
||||
"price": 89,
|
||||
"category": "Electronics",
|
||||
"quantity": 23,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1012",
|
||||
"code": "250vm23cc",
|
||||
"name": "Green T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "green-t-shirt.jpg",
|
||||
"price": 49,
|
||||
"category": "Clothing",
|
||||
"quantity": 74,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1013",
|
||||
"code": "fldsmn31b",
|
||||
"name": "Grey T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "grey-t-shirt.jpg",
|
||||
"price": 48,
|
||||
"category": "Clothing",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1014",
|
||||
"code": "waas1x2as",
|
||||
"name": "Headphones",
|
||||
"description": "Product Description",
|
||||
"image": "headphones.jpg",
|
||||
"price": 175,
|
||||
"category": "Electronics",
|
||||
"quantity": 8,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1015",
|
||||
"code": "vb34btbg5",
|
||||
"name": "Light Green T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "light-green-t-shirt.jpg",
|
||||
"price": 49,
|
||||
"category": "Clothing",
|
||||
"quantity": 34,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1016",
|
||||
"code": "k8l6j58jl",
|
||||
"name": "Lime Band",
|
||||
"description": "Product Description",
|
||||
"image": "lime-band.jpg",
|
||||
"price": 79,
|
||||
"category": "Fitness",
|
||||
"quantity": 12,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1017",
|
||||
"code": "v435nn85n",
|
||||
"name": "Mini Speakers",
|
||||
"description": "Product Description",
|
||||
"image": "mini-speakers.jpg",
|
||||
"price": 85,
|
||||
"category": "Clothing",
|
||||
"quantity": 42,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1018",
|
||||
"code": "09zx9c0zc",
|
||||
"name": "Painted Phone Case",
|
||||
"description": "Product Description",
|
||||
"image": "painted-phone-case.jpg",
|
||||
"price": 56,
|
||||
"category": "Accessories",
|
||||
"quantity": 41,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1019",
|
||||
"code": "mnb5mb2m5",
|
||||
"name": "Pink Band",
|
||||
"description": "Product Description",
|
||||
"image": "pink-band.jpg",
|
||||
"price": 79,
|
||||
"category": "Fitness",
|
||||
"quantity": 63,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1020",
|
||||
"code": "r23fwf2w3",
|
||||
"name": "Pink Purse",
|
||||
"description": "Product Description",
|
||||
"image": "pink-purse.jpg",
|
||||
"price": 110,
|
||||
"category": "Accessories",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "OUTOFSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1021",
|
||||
"code": "pxpzczo23",
|
||||
"name": "Purple Band",
|
||||
"description": "Product Description",
|
||||
"image": "purple-band.jpg",
|
||||
"price": 79,
|
||||
"category": "Fitness",
|
||||
"quantity": 6,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1022",
|
||||
"code": "2c42cb5cb",
|
||||
"name": "Purple Gemstone Necklace",
|
||||
"description": "Product Description",
|
||||
"image": "purple-gemstone-necklace.jpg",
|
||||
"price": 45,
|
||||
"category": "Accessories",
|
||||
"quantity": 62,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1023",
|
||||
"code": "5k43kkk23",
|
||||
"name": "Purple T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "purple-t-shirt.jpg",
|
||||
"price": 49,
|
||||
"category": "Clothing",
|
||||
"quantity": 2,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1024",
|
||||
"code": "lm2tny2k4",
|
||||
"name": "Shoes",
|
||||
"description": "Product Description",
|
||||
"image": "shoes.jpg",
|
||||
"price": 64,
|
||||
"category": "Clothing",
|
||||
"quantity": 0,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1025",
|
||||
"code": "nbm5mv45n",
|
||||
"name": "Sneakers",
|
||||
"description": "Product Description",
|
||||
"image": "sneakers.jpg",
|
||||
"price": 78,
|
||||
"category": "Clothing",
|
||||
"quantity": 52,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 4
|
||||
},
|
||||
{
|
||||
"id": "1026",
|
||||
"code": "zx23zc42c",
|
||||
"name": "Teal T-Shirt",
|
||||
"description": "Product Description",
|
||||
"image": "teal-t-shirt.jpg",
|
||||
"price": 49,
|
||||
"category": "Clothing",
|
||||
"quantity": 3,
|
||||
"inventoryStatus": "LOWSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1027",
|
||||
"code": "acvx872gc",
|
||||
"name": "Yellow Earbuds",
|
||||
"description": "Product Description",
|
||||
"image": "yellow-earbuds.jpg",
|
||||
"price": 89,
|
||||
"category": "Electronics",
|
||||
"quantity": 35,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 3
|
||||
},
|
||||
{
|
||||
"id": "1028",
|
||||
"code": "tx125ck42",
|
||||
"name": "Yoga Mat",
|
||||
"description": "Product Description",
|
||||
"image": "yoga-mat.jpg",
|
||||
"price": 20,
|
||||
"category": "Fitness",
|
||||
"quantity": 15,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 5
|
||||
},
|
||||
{
|
||||
"id": "1029",
|
||||
"code": "gwuby345v",
|
||||
"name": "Yoga Set",
|
||||
"description": "Product Description",
|
||||
"image": "yoga-set.jpg",
|
||||
"price": 20,
|
||||
"category": "Fitness",
|
||||
"quantity": 25,
|
||||
"inventoryStatus": "INSTOCK",
|
||||
"rating": 8
|
||||
}
|
||||
]
|
||||
}
|
||||
2
src/assets/demo/demo.scss
Normal file
@@ -0,0 +1,2 @@
|
||||
@use './code.scss';
|
||||
@import './flags/flags.css';
|
||||
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
@@ -1,16 +0,0 @@
|
||||
<svg width="82" height="61" viewBox="0 0 82 61" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1404_1719)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2459 29.411C26.2351 29.646 26.2297 29.8824 26.2297 30.1202C26.2297 38.5664 33.0807 45.4135 41.5321 45.4135C49.9833 45.4135 56.8344 38.5664 56.8344 30.1202C56.8344 29.8768 56.8288 29.6348 56.8176 29.3943C58.3428 29.1611 59.8641 28.893 61.3802 28.5901L61.5392 28.5583C61.5789 29.0737 61.5991 29.5945 61.5991 30.1202C61.5991 41.1964 52.6148 50.1754 41.5321 50.1754C30.4493 50.1754 21.465 41.1964 21.465 30.1202C21.465 29.602 21.4846 29.0883 21.5233 28.5801L21.5732 28.5901C23.1257 28.9003 24.6837 29.174 26.2459 29.411ZM50.4928 17.7217C47.9742 15.9003 44.8785 14.8267 41.5321 14.8267C38.1795 14.8267 35.0789 15.9042 32.5578 17.7315C30.512 17.5258 28.4716 17.2491 26.4403 16.9016C30.1182 12.7106 35.516 10.0648 41.5321 10.0648C47.5402 10.0648 52.9317 12.7037 56.6093 16.885C54.5784 17.2348 52.5383 17.5138 50.4928 17.7217ZM66.2393 27.6187C66.3217 28.4414 66.3638 29.2759 66.3638 30.1202C66.3638 43.8263 55.2463 54.9373 41.5321 54.9373C27.8178 54.9373 16.7003 43.8263 16.7003 30.1202C16.7003 29.2832 16.7417 28.4561 16.8226 27.6404L12.131 26.7026C12.0019 27.824 11.9355 28.9643 11.9355 30.1202C11.9355 46.4563 25.1864 59.6992 41.5321 59.6992C57.8778 59.6992 71.1285 46.4563 71.1285 30.1202C71.1285 28.9568 71.0614 27.8093 70.9307 26.681L66.2393 27.6187ZM66.8921 14.8622L61.8629 15.8674C57.3703 9.47833 49.9391 5.30292 41.5321 5.30292C33.1165 5.30292 25.6787 9.48679 21.1876 15.8868L16.16 14.8819C21.3382 6.28869 30.7636 0.541016 41.5321 0.541016C52.2923 0.541016 61.7115 6.27988 66.8921 14.8622Z" fill="#F57C00"/>
|
||||
<mask id="mask0_1404_1719" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="13" width="82" height="16">
|
||||
<path d="M41 28.0889C16.2672 29.3327 0.5 13.8744 0.5 13.8744C0.5 13.8744 25.2765 22.4209 41 22.4209C56.7235 22.4209 81.5 13.8744 81.5 13.8744C81.5 13.8744 65.7328 26.8451 41 28.0889Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1404_1719)">
|
||||
<path d="M0.500296 13.8744L6.09662 -2.3304L-11.5117 26.112L0.500296 13.8744ZM41.0003 28.0889L40.1383 10.9677L41.0003 28.0889ZM81.5003 13.8744L92.4014 27.1101L75.904 -2.3304L81.5003 13.8744ZM0.500296 13.8744C-11.5117 26.112 -11.5067 26.1169 -11.5016 26.1218C-11.4999 26.1236 -11.4948 26.1286 -11.4912 26.1321C-11.4841 26.1391 -11.4767 26.1462 -11.4691 26.1536C-11.4539 26.1685 -11.4376 26.1843 -11.4202 26.2011C-11.3856 26.2346 -11.3468 26.2719 -11.3038 26.313C-11.2179 26.3951 -11.1153 26.4919 -10.9962 26.6026C-10.7581 26.8237 -10.4537 27.1005 -10.0843 27.4242C-9.34664 28.0709 -8.34457 28.9099 -7.09097 29.8713C-4.59368 31.7861 -1.03827 34.2319 3.47055 36.6096C12.4685 41.3548 25.6588 46.025 41.8623 45.2101L40.1383 10.9677C31.609 11.3966 24.5493 8.95957 19.4804 6.28647C16.9559 4.95512 15.0237 3.61409 13.7917 2.66943C13.1807 2.20091 12.7577 1.84202 12.5365 1.64815C12.4264 1.55161 12.368 1.49747 12.363 1.49285C12.3606 1.49058 12.3717 1.50081 12.3964 1.52446C12.4088 1.53629 12.4246 1.55149 12.4439 1.57017C12.4536 1.5795 12.4641 1.58972 12.4754 1.60081C12.4811 1.60636 12.4871 1.61213 12.4932 1.61813C12.4963 1.62112 12.5011 1.62579 12.5026 1.62728C12.5074 1.632 12.5123 1.63678 0.500296 13.8744ZM41.8623 45.2101C57.0359 44.4471 69.4127 40.0936 77.9907 35.9492C82.2948 33.8697 85.71 31.8109 88.1282 30.2087C89.34 29.4057 90.3099 28.7119 91.0245 28.1796C91.3821 27.9134 91.6766 27.6868 91.9064 27.5066C92.0213 27.4165 92.1202 27.3378 92.2027 27.2715C92.2439 27.2383 92.2812 27.2082 92.3143 27.1814C92.3309 27.1678 92.3464 27.1552 92.3609 27.1433C92.3681 27.1374 92.3752 27.1316 92.3819 27.1261C92.3853 27.1234 92.3901 27.1194 92.3918 27.1179C92.3966 27.114 92.4014 27.1101 81.5003 13.8744C70.5992 0.638688 70.6039 0.63489 70.6085 0.631143C70.6099 0.629959 70.6144 0.626256 70.6172 0.623886C70.623 0.619143 70.6286 0.61459 70.6339 0.610227C70.6446 0.601501 70.6544 0.59353 70.6633 0.586305C70.6811 0.571855 70.6953 0.560381 70.7059 0.551796C70.7273 0.53463 70.7345 0.528983 70.728 0.53415C70.7147 0.544532 70.6464 0.597905 70.5245 0.688674C70.2802 0.870619 69.8251 1.19985 69.1722 1.63239C67.8611 2.50105 65.7889 3.76259 63.0595 5.08126C57.5707 7.73313 49.6975 10.487 40.1383 10.9677L41.8623 45.2101ZM81.5003 13.8744C75.904 -2.33039 75.9054 -2.3309 75.9068 -2.33137C75.9071 -2.33148 75.9083 -2.33192 75.909 -2.33215C75.9103 -2.33261 75.9113 -2.33293 75.9119 -2.33313C75.9131 -2.33354 75.9128 -2.33343 75.911 -2.33282C75.9075 -2.33162 75.8981 -2.32842 75.8832 -2.32329C75.8531 -2.31303 75.8003 -2.29506 75.7259 -2.26989C75.5767 -2.21954 75.3411 -2.14049 75.027 -2.03683C74.3982 -1.82936 73.4584 -1.5244 72.2725 -1.15442C69.8917 -0.411748 66.5645 0.578588 62.7991 1.56456C54.8229 3.65318 46.5108 5.27805 41.0003 5.27805V39.5637C51.2133 39.5637 63.1512 36.9154 71.4941 34.7308C75.8883 33.5801 79.7379 32.4338 82.4941 31.574C83.8766 31.1428 84.9953 30.78 85.783 30.5201C86.177 30.39 86.489 30.2855 86.7106 30.2107C86.8214 30.1733 86.9097 30.1433 86.9743 30.1212C87.0067 30.1101 87.0331 30.1011 87.0536 30.094C87.0638 30.0905 87.0724 30.0876 87.0797 30.0851C87.0832 30.0838 87.0864 30.0827 87.0893 30.0817C87.0907 30.0813 87.0925 30.0806 87.0932 30.0804C87.095 30.0797 87.0966 30.0792 81.5003 13.8744ZM41.0003 5.27805C35.4898 5.27805 27.1777 3.65318 19.2015 1.56456C15.4361 0.578588 12.1089 -0.411748 9.72812 -1.15442C8.54214 -1.5244 7.60238 -1.82936 6.97362 -2.03683C6.65951 -2.14049 6.42385 -2.21954 6.27479 -2.26989C6.20028 -2.29506 6.14748 -2.31303 6.11744 -2.32329C6.10241 -2.32842 6.09308 -2.33162 6.08956 -2.33282C6.08781 -2.33343 6.0875 -2.33354 6.08867 -2.33313C6.08927 -2.33293 6.09022 -2.33261 6.09155 -2.33215C6.0922 -2.33192 6.09348 -2.33148 6.0938 -2.33137C6.09517 -2.3309 6.09662 -2.33039 0.500296 13.8744C-5.09603 30.0792 -5.09438 30.0797 -5.09265 30.0804C-5.09194 30.0806 -5.09011 30.0813 -5.08869 30.0817C-5.08586 30.0827 -5.08264 30.0838 -5.07904 30.0851C-5.07186 30.0876 -5.06315 30.0905 -5.05294 30.094C-5.03251 30.1011 -5.00607 30.1101 -4.97373 30.1212C-4.90907 30.1433 -4.82081 30.1733 -4.71002 30.2107C-4.48847 30.2855 -4.17645 30.39 -3.78237 30.5201C-2.99475 30.78 -1.87602 31.1428 -0.493517 31.574C2.26265 32.4338 6.11224 33.5801 10.5065 34.7308C18.8494 36.9154 30.7872 39.5637 41.0003 39.5637V5.27805Z" fill="#F57C00"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1404_1719">
|
||||
<rect width="81" height="60" fill="white" transform="translate(0.5 0.541016)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 6.3 KiB |
|
Before Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 5.7 KiB |
|
Before Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 5.3 KiB |
|
Before Width: | Height: | Size: 7.9 KiB |
|
Before Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 640 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="48" height="50" viewBox="0 0 48 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M33.1548 9.65956L23.9913 4.86169L5.54723 14.5106L0.924465 12.0851L23.9913 0L37.801 7.23403L33.1548 9.65956ZM23.9931 19.3085L42.4255 9.65955L47.0717 12.0851L23.9931 24.1595L10.1952 16.9361L14.8297 14.5106L23.9931 19.3085ZM4.6345 25.8937L0 23.4681V37.9149L23.0669 50V45.1489L4.6345 35.4894V25.8937ZM18.4324 28.2658L0 18.6169V13.7658L23.0669 25.8403V40.2977L18.4324 37.8615V28.2658ZM38.7301 23.468V18.6169L24.9205 25.8403V49.9999L29.555 47.5743V28.2659L38.7301 23.468ZM43.3546 35.4892V16.1914L48.0008 13.7659V37.9148L34.1912 45.1488V40.2977L43.3546 35.4892Z" fill="#616161"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 724 B |
@@ -1,16 +0,0 @@
|
||||
<svg width="82" height="61" viewBox="0 0 82 61" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1399_1534)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2459 29.4832C26.2351 29.7181 26.2297 29.9546 26.2297 30.1923C26.2297 38.6386 33.0807 45.4856 41.5321 45.4856C49.9833 45.4856 56.8344 38.6386 56.8344 30.1923C56.8344 29.949 56.8288 29.707 56.8176 29.4664C58.3428 29.2333 59.8641 28.9652 61.3802 28.6622L61.5392 28.6304C61.5789 29.1458 61.5991 29.6667 61.5991 30.1923C61.5991 41.2685 52.6148 50.2475 41.5321 50.2475C30.4493 50.2475 21.465 41.2685 21.465 30.1923C21.465 29.6741 21.4846 29.1605 21.5233 28.6522L21.5732 28.6622C23.1257 28.9725 24.6837 29.2461 26.2459 29.4832ZM50.4928 17.7938C47.9742 15.9725 44.8785 14.8989 41.5321 14.8989C38.1795 14.8989 35.0789 15.9763 32.5578 17.8036C30.512 17.5979 28.4716 17.3213 26.4403 16.9737C30.1182 12.7828 35.516 10.137 41.5321 10.137C47.5402 10.137 52.9317 12.7758 56.6093 16.9572C54.5784 17.307 52.5383 17.5859 50.4928 17.7938ZM66.2393 27.6909C66.3217 28.5135 66.3638 29.348 66.3638 30.1923C66.3638 43.8984 55.2463 55.0094 41.5321 55.0094C27.8178 55.0094 16.7003 43.8984 16.7003 30.1923C16.7003 29.3553 16.7417 28.5282 16.8226 27.7126L12.131 26.7748C12.0019 27.8961 11.9355 29.0364 11.9355 30.1923C11.9355 46.5284 25.1864 59.7714 41.5321 59.7714C57.8778 59.7714 71.1285 46.5284 71.1285 30.1923C71.1285 29.029 71.0614 27.8814 70.9307 26.7532L66.2393 27.6909ZM66.8921 14.9343L61.8629 15.9395C57.3703 9.55047 49.9391 5.37506 41.5321 5.37506C33.1165 5.37506 25.6787 9.55893 21.1876 15.959L16.16 14.954C21.3382 6.36084 30.7636 0.613159 41.5321 0.613159C52.2923 0.613159 61.7115 6.35203 66.8921 14.9343Z" fill="#E91E63"/>
|
||||
<mask id="mask0_1399_1534" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="13" width="82" height="16">
|
||||
<path d="M41 28.161C16.2672 29.4048 0.5 13.9465 0.5 13.9465C0.5 13.9465 25.2765 22.493 41 22.493C56.7235 22.493 81.5 13.9465 81.5 13.9465C81.5 13.9465 65.7328 26.9173 41 28.161Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1399_1534)">
|
||||
<path d="M0.500296 13.9465L6.09662 -2.25825L-11.5117 26.1842L0.500296 13.9465ZM41.0003 28.161L40.1383 11.0399L41.0003 28.161ZM81.5003 13.9465L92.4014 27.1823L75.904 -2.25825L81.5003 13.9465ZM0.500296 13.9465C-11.5117 26.1842 -11.5067 26.189 -11.5016 26.194C-11.4999 26.1958 -11.4948 26.2007 -11.4912 26.2043C-11.4841 26.2112 -11.4767 26.2184 -11.4691 26.2258C-11.4539 26.2406 -11.4376 26.2565 -11.4202 26.2732C-11.3856 26.3067 -11.3468 26.3441 -11.3038 26.3851C-11.2179 26.4672 -11.1153 26.5641 -10.9962 26.6747C-10.7581 26.8959 -10.4537 27.1726 -10.0843 27.4964C-9.34664 28.143 -8.34457 28.9821 -7.09097 29.9434C-4.59368 31.8583 -1.03827 34.3041 3.47055 36.6818C12.4685 41.4269 25.6588 46.0971 41.8623 45.2823L40.1383 11.0399C31.609 11.4687 24.5493 9.03171 19.4804 6.35861C16.9559 5.02726 15.0237 3.68623 13.7917 2.74158C13.1807 2.27305 12.7577 1.91417 12.5365 1.72029C12.4264 1.62376 12.368 1.56961 12.363 1.56499C12.3606 1.56272 12.3717 1.57296 12.3964 1.59661C12.4088 1.60843 12.4246 1.62363 12.4439 1.64231C12.4536 1.65164 12.4641 1.66186 12.4754 1.67296C12.4811 1.6785 12.4871 1.68427 12.4932 1.69027C12.4963 1.69326 12.5011 1.69793 12.5026 1.69942C12.5074 1.70415 12.5123 1.70892 0.500296 13.9465ZM41.8623 45.2823C57.0359 44.5192 69.4127 40.1658 77.9907 36.0213C82.2948 33.9419 85.71 31.883 88.1282 30.2808C89.34 29.4779 90.3099 28.7841 91.0245 28.2518C91.3821 27.9855 91.6766 27.7589 91.9064 27.5787C92.0213 27.4886 92.1202 27.41 92.2027 27.3437C92.2439 27.3105 92.2812 27.2804 92.3143 27.2535C92.3309 27.24 92.3464 27.2273 92.3609 27.2154C92.3681 27.2095 92.3752 27.2038 92.3819 27.1983C92.3853 27.1955 92.3901 27.1915 92.3918 27.1901C92.3966 27.1862 92.4014 27.1823 81.5003 13.9465C70.5992 0.710831 70.6039 0.707034 70.6085 0.703287C70.6099 0.702102 70.6144 0.6984 70.6172 0.696029C70.623 0.691287 70.6286 0.686734 70.6339 0.682371C70.6446 0.673644 70.6544 0.665674 70.6633 0.658449C70.6811 0.643999 70.6953 0.632525 70.7059 0.623939C70.7273 0.606773 70.7345 0.601126 70.728 0.606294C70.7147 0.616676 70.6464 0.670049 70.5245 0.760818C70.2802 0.942763 69.8251 1.27199 69.1722 1.70453C67.8611 2.5732 65.7889 3.83473 63.0595 5.15341C57.5707 7.80527 49.6975 10.5591 40.1383 11.0399L41.8623 45.2823ZM81.5003 13.9465C75.904 -2.25825 75.9054 -2.25876 75.9068 -2.25922C75.9071 -2.25934 75.9083 -2.25978 75.909 -2.26C75.9103 -2.26046 75.9113 -2.26079 75.9119 -2.26099C75.9131 -2.26139 75.9128 -2.26129 75.911 -2.26068C75.9075 -2.25948 75.8981 -2.25628 75.8832 -2.25115C75.8531 -2.24089 75.8003 -2.22292 75.7259 -2.19775C75.5767 -2.14739 75.3411 -2.06835 75.027 -1.96469C74.3982 -1.75721 73.4584 -1.45225 72.2725 -1.08228C69.8917 -0.339604 66.5645 0.650732 62.7991 1.6367C54.8229 3.72532 46.5108 5.3502 41.0003 5.3502V39.6359C51.2133 39.6359 63.1512 36.9875 71.4941 34.8029C75.8883 33.6523 79.7379 32.506 82.4941 31.6462C83.8766 31.2149 84.9953 30.8522 85.783 30.5923C86.177 30.4622 86.489 30.3577 86.7106 30.2828C86.8214 30.2454 86.9097 30.2154 86.9743 30.1933C87.0067 30.1823 87.0331 30.1732 87.0536 30.1662C87.0638 30.1626 87.0724 30.1597 87.0797 30.1572C87.0832 30.156 87.0864 30.1548 87.0893 30.1539C87.0907 30.1534 87.0925 30.1527 87.0932 30.1525C87.095 30.1519 87.0966 30.1513 81.5003 13.9465ZM41.0003 5.3502C35.4898 5.3502 27.1777 3.72532 19.2015 1.6367C15.4361 0.650732 12.1089 -0.339604 9.72812 -1.08228C8.54214 -1.45225 7.60238 -1.75721 6.97362 -1.96469C6.65951 -2.06835 6.42385 -2.14739 6.27479 -2.19775C6.20028 -2.22292 6.14748 -2.24089 6.11744 -2.25115C6.10241 -2.25628 6.09308 -2.25948 6.08956 -2.26068C6.08781 -2.26129 6.0875 -2.26139 6.08867 -2.26099C6.08927 -2.26079 6.09022 -2.26046 6.09155 -2.26C6.0922 -2.25978 6.09348 -2.25934 6.0938 -2.25922C6.09517 -2.25876 6.09662 -2.25825 0.500296 13.9465C-5.09603 30.1513 -5.09438 30.1519 -5.09265 30.1525C-5.09194 30.1527 -5.09011 30.1534 -5.08869 30.1539C-5.08586 30.1548 -5.08264 30.156 -5.07904 30.1572C-5.07186 30.1597 -5.06315 30.1626 -5.05294 30.1662C-5.03251 30.1732 -5.00607 30.1823 -4.97373 30.1933C-4.90907 30.2154 -4.82081 30.2454 -4.71002 30.2828C-4.48847 30.3577 -4.17645 30.4622 -3.78237 30.5923C-2.99475 30.8522 -1.87602 31.2149 -0.493517 31.6462C2.26265 32.506 6.11224 33.6523 10.5065 34.8029C18.8494 36.9875 30.7872 39.6359 41.0003 39.6359V5.3502Z" fill="#E91E63"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1399_1534">
|
||||
<rect width="81" height="60" fill="white" transform="translate(0.5 0.613159)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 6.3 KiB |
|
Before Width: | Height: | Size: 48 KiB |
|
Before Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 63 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 102 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 122 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 109 KiB |
|
Before Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 93 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 121 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 105 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 1009 B |
|
Before Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 117 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |