├── .babelrc ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── package.json ├── renovate.json ├── sanity.json └── src ├── components └── autocompleteTagsComponent.js ├── index.js └── schema ├── inputSchema.js ├── schema.js └── tagSchema.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [rosnovsky] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/renovate.json -------------------------------------------------------------------------------- /sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/sanity.json -------------------------------------------------------------------------------- /src/components/autocompleteTagsComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/src/components/autocompleteTagsComponent.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/src/index.js -------------------------------------------------------------------------------- /src/schema/inputSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/src/schema/inputSchema.js -------------------------------------------------------------------------------- /src/schema/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/src/schema/schema.js -------------------------------------------------------------------------------- /src/schema/tagSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rosnovsky/sanity-plugin-autocomplete-tags/HEAD/src/schema/tagSchema.js --------------------------------------------------------------------------------