├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── config.yml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── app.html ├── assets ├── README.md ├── css │ ├── app.scss │ ├── bulma.scss │ ├── buttons.scss │ ├── components.scss │ ├── components │ │ ├── forms │ │ │ └── RichText.scss │ │ ├── global │ │ │ ├── MainNav.scss │ │ │ └── Toolbar.scss │ │ └── hub │ │ │ ├── FileUpload.scss │ │ │ ├── MediaManager.scss │ │ │ ├── QuickViewPanel.scss │ │ │ └── SearchTable.scss │ ├── fonts.scss │ ├── form_elements.scss │ ├── layouts.scss │ ├── layouts │ │ ├── default.scss │ │ └── product.scss │ ├── mixins.scss │ ├── tables.scss │ ├── tabs.scss │ ├── tailwind.css │ └── utils.scss ├── fonts │ └── Inter │ │ ├── Inter-Black.woff │ │ ├── Inter-Black.woff2 │ │ ├── Inter-BlackItalic.woff │ │ ├── Inter-BlackItalic.woff2 │ │ ├── Inter-Bold.woff │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-BoldItalic.woff │ │ ├── Inter-BoldItalic.woff2 │ │ ├── Inter-ExtraBold.woff │ │ ├── Inter-ExtraBold.woff2 │ │ ├── Inter-ExtraBoldItalic.woff │ │ ├── Inter-ExtraBoldItalic.woff2 │ │ ├── Inter-ExtraLight-BETA.woff │ │ ├── Inter-ExtraLight-BETA.woff2 │ │ ├── Inter-ExtraLightItalic-BETA.woff │ │ ├── Inter-ExtraLightItalic-BETA.woff2 │ │ ├── Inter-Italic.woff │ │ ├── Inter-Italic.woff2 │ │ ├── Inter-Light-BETA.woff │ │ ├── Inter-Light-BETA.woff2 │ │ ├── Inter-LightItalic-BETA.woff │ │ ├── Inter-LightItalic-BETA.woff2 │ │ ├── Inter-Medium.woff │ │ ├── Inter-Medium.woff2 │ │ ├── Inter-MediumItalic.woff │ │ ├── Inter-MediumItalic.woff2 │ │ ├── Inter-Regular.woff │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-SemiBoldItalic.woff │ │ ├── Inter-SemiBoldItalic.woff2 │ │ ├── Inter-Thin-BETA.woff │ │ ├── Inter-Thin-BETA.woff2 │ │ ├── Inter-ThinItalic-BETA.woff │ │ ├── Inter-ThinItalic-BETA.woff2 │ │ ├── Inter-italic.var.woff2 │ │ ├── Inter-roman.var.woff2 │ │ ├── Inter.var.woff2 │ │ └── inter.css └── images │ └── sweet-jar.jpg ├── components └── README.md ├── env.example ├── getcandy.config.js ├── jest.config.js ├── locales ├── de.json ├── en.json └── fr.json ├── middleware ├── README.md ├── acl.js └── hub.js ├── nuxt.config.js ├── package.json ├── pages └── unauthorized.vue ├── plugins ├── README.md └── acl.js ├── static ├── README.md ├── favicon.png ├── getcandy-icon.svg ├── getcandy-logo.svg └── icon-sprite.svg ├── store ├── README.md └── index.js ├── tailwind.config.js └── test └── setup.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: getcandy 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/README.md -------------------------------------------------------------------------------- /app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/app.html -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/css/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/app.scss -------------------------------------------------------------------------------- /assets/css/bulma.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/bulma.scss -------------------------------------------------------------------------------- /assets/css/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/buttons.scss -------------------------------------------------------------------------------- /assets/css/components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/components.scss -------------------------------------------------------------------------------- /assets/css/components/forms/RichText.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/components/forms/RichText.scss -------------------------------------------------------------------------------- /assets/css/components/global/MainNav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/components/global/MainNav.scss -------------------------------------------------------------------------------- /assets/css/components/global/Toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/components/global/Toolbar.scss -------------------------------------------------------------------------------- /assets/css/components/hub/FileUpload.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/components/hub/FileUpload.scss -------------------------------------------------------------------------------- /assets/css/components/hub/MediaManager.scss: -------------------------------------------------------------------------------- 1 | .media-controls { 2 | padding:1em 30px; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /assets/css/components/hub/QuickViewPanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/components/hub/QuickViewPanel.scss -------------------------------------------------------------------------------- /assets/css/components/hub/SearchTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/components/hub/SearchTable.scss -------------------------------------------------------------------------------- /assets/css/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/fonts.scss -------------------------------------------------------------------------------- /assets/css/form_elements.scss: -------------------------------------------------------------------------------- 1 | // Form Elements 2 | 3 | .input { 4 | border: 1px solid #C4D0DC; 5 | } -------------------------------------------------------------------------------- /assets/css/layouts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/layouts.scss -------------------------------------------------------------------------------- /assets/css/layouts/default.scss: -------------------------------------------------------------------------------- 1 | // Layout 2 | -------------------------------------------------------------------------------- /assets/css/layouts/product.scss: -------------------------------------------------------------------------------- 1 | // Product layout 2 | -------------------------------------------------------------------------------- /assets/css/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/mixins.scss -------------------------------------------------------------------------------- /assets/css/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/tables.scss -------------------------------------------------------------------------------- /assets/css/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/tabs.scss -------------------------------------------------------------------------------- /assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/tailwind.css -------------------------------------------------------------------------------- /assets/css/utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/css/utils.scss -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Black.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Black.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Bold.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-ExtraLight-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-ExtraLight-BETA.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-ExtraLight-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-ExtraLight-BETA.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-ExtraLightItalic-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-ExtraLightItalic-BETA.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-ExtraLightItalic-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-ExtraLightItalic-BETA.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Italic.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Italic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Light-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Light-BETA.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Light-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Light-BETA.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-LightItalic-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-LightItalic-BETA.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-LightItalic-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-LightItalic-BETA.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Medium.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Medium.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Regular.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-SemiBold.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Thin-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Thin-BETA.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-Thin-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-Thin-BETA.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-ThinItalic-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-ThinItalic-BETA.woff -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-ThinItalic-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-ThinItalic-BETA.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/Inter.var.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter/inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/fonts/Inter/inter.css -------------------------------------------------------------------------------- /assets/images/sweet-jar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/assets/images/sweet-jar.jpg -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/components/README.md -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/env.example -------------------------------------------------------------------------------- /getcandy.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | storename: 'Example Storefront' 3 | } 4 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/jest.config.js -------------------------------------------------------------------------------- /locales/de.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/locales/en.json -------------------------------------------------------------------------------- /locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/locales/fr.json -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/middleware/README.md -------------------------------------------------------------------------------- /middleware/acl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/middleware/acl.js -------------------------------------------------------------------------------- /middleware/hub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/middleware/hub.js -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/package.json -------------------------------------------------------------------------------- /pages/unauthorized.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/pages/unauthorized.vue -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/acl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/plugins/acl.js -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/static/README.md -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/getcandy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/static/getcandy-icon.svg -------------------------------------------------------------------------------- /static/getcandy-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/static/getcandy-logo.svg -------------------------------------------------------------------------------- /static/icon-sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/static/icon-sprite.svg -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/store/README.md -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getcandy/hub/HEAD/test/setup.js --------------------------------------------------------------------------------