├── .DS_Store ├── .eslintcache ├── .gitignore ├── README.md ├── now.json ├── package.json ├── public ├── favicon.ico └── index.html └── src ├── components ├── AddSettingForm.js ├── App.js ├── Block.js ├── Blocks.js ├── EditOptions.js ├── EditSettingForm.js ├── NotFound.js ├── OptionSetList.js ├── Options.js ├── PageLayout.js ├── RenderSchemaModal.js ├── SettingItem.js ├── SettingTextField.js ├── SettingsModal.js └── SettingsSection.js ├── css └── styles.css ├── data ├── sections.json └── types.json ├── index.js ├── store.js └── utils └── helpers.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/.DS_Store -------------------------------------------------------------------------------- /.eslintcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/.eslintcache -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/README.md -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/public/index.html -------------------------------------------------------------------------------- /src/components/AddSettingForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/AddSettingForm.js -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/Block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/Block.js -------------------------------------------------------------------------------- /src/components/Blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/Blocks.js -------------------------------------------------------------------------------- /src/components/EditOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/EditOptions.js -------------------------------------------------------------------------------- /src/components/EditSettingForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/EditSettingForm.js -------------------------------------------------------------------------------- /src/components/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/NotFound.js -------------------------------------------------------------------------------- /src/components/OptionSetList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/OptionSetList.js -------------------------------------------------------------------------------- /src/components/Options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/Options.js -------------------------------------------------------------------------------- /src/components/PageLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/PageLayout.js -------------------------------------------------------------------------------- /src/components/RenderSchemaModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/RenderSchemaModal.js -------------------------------------------------------------------------------- /src/components/SettingItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/SettingItem.js -------------------------------------------------------------------------------- /src/components/SettingTextField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/SettingTextField.js -------------------------------------------------------------------------------- /src/components/SettingsModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/SettingsModal.js -------------------------------------------------------------------------------- /src/components/SettingsSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/components/SettingsSection.js -------------------------------------------------------------------------------- /src/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/css/styles.css -------------------------------------------------------------------------------- /src/data/sections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/data/sections.json -------------------------------------------------------------------------------- /src/data/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/data/types.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/index.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/store.js -------------------------------------------------------------------------------- /src/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkdallman/shopify-schema-builder/HEAD/src/utils/helpers.js --------------------------------------------------------------------------------