├── .editorconfig ├── .eslintignore ├── .eslintrc.yml ├── .github └── stale.yml ├── .gitignore ├── .stylelintrc.yml ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── app.json ├── gulpfile.js ├── package.json ├── server.js ├── src ├── README.md ├── assets │ ├── README.md │ ├── img-efficiency.svg │ ├── logo.svg │ └── workshop-salesforce-red.jpg ├── favicon.ico ├── favicon.png ├── scripts │ ├── README.md │ ├── app.js │ └── vendor │ │ └── svg4everybody.min.js ├── styles │ ├── README.md │ ├── _footer.scss │ └── index.scss └── views │ ├── README.md │ ├── _page-header.html │ ├── _template.html │ ├── blank.html │ ├── data │ ├── README.md │ ├── example.json │ └── shared.json │ ├── example.html │ └── index.html └── starter-kit.svg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/scripts/vendor 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | extends: standard 2 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/.stylelintrc.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | #ECCN:EAR99,Open Source -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/app.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/server.js -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/README.md -------------------------------------------------------------------------------- /src/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/assets/README.md -------------------------------------------------------------------------------- /src/assets/img-efficiency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/assets/img-efficiency.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/workshop-salesforce-red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/assets/workshop-salesforce-red.jpg -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/favicon.png -------------------------------------------------------------------------------- /src/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/scripts/README.md -------------------------------------------------------------------------------- /src/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/scripts/app.js -------------------------------------------------------------------------------- /src/scripts/vendor/svg4everybody.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/scripts/vendor/svg4everybody.min.js -------------------------------------------------------------------------------- /src/styles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/styles/README.md -------------------------------------------------------------------------------- /src/styles/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/styles/_footer.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/views/README.md -------------------------------------------------------------------------------- /src/views/_page-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/views/_page-header.html -------------------------------------------------------------------------------- /src/views/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/views/_template.html -------------------------------------------------------------------------------- /src/views/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/views/blank.html -------------------------------------------------------------------------------- /src/views/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/views/data/README.md -------------------------------------------------------------------------------- /src/views/data/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/views/data/example.json -------------------------------------------------------------------------------- /src/views/data/shared.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/views/data/shared.json -------------------------------------------------------------------------------- /src/views/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/views/example.html -------------------------------------------------------------------------------- /src/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/src/views/index.html -------------------------------------------------------------------------------- /starter-kit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/design-system-starter-kit/HEAD/starter-kit.svg --------------------------------------------------------------------------------