├── .babelrc ├── .editorconfig ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── config.dist.json ├── package.json ├── sanity.json ├── src ├── TableComponent.tsx ├── components │ ├── TableControl.tsx │ ├── TableInput.tsx │ ├── TableMenu.tsx │ ├── TablePreview.tsx │ └── table.css ├── schema │ ├── row.ts │ └── table.tsx └── types.ts └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "sanipack/babel" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/README.md -------------------------------------------------------------------------------- /config.dist.json: -------------------------------------------------------------------------------- 1 | { 2 | "rowType": "tableRow" 3 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/package.json -------------------------------------------------------------------------------- /sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/sanity.json -------------------------------------------------------------------------------- /src/TableComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/src/TableComponent.tsx -------------------------------------------------------------------------------- /src/components/TableControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/src/components/TableControl.tsx -------------------------------------------------------------------------------- /src/components/TableInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/src/components/TableInput.tsx -------------------------------------------------------------------------------- /src/components/TableMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/src/components/TableMenu.tsx -------------------------------------------------------------------------------- /src/components/TablePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/src/components/TablePreview.tsx -------------------------------------------------------------------------------- /src/components/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/src/components/table.css -------------------------------------------------------------------------------- /src/schema/row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/src/schema/row.ts -------------------------------------------------------------------------------- /src/schema/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/src/schema/table.tsx -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdunk/sanity-plugin-table/HEAD/tsconfig.json --------------------------------------------------------------------------------