├── .editorconfig ├── .eslintrc ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── assets ├── screenshot-dark.png └── screenshot-light.png ├── migrations └── transformStringToPortableText.js ├── package.config.ts ├── package.json ├── pnpm-lock.yaml ├── sanity.json ├── src ├── InputComponent.tsx ├── Toolbar.tsx ├── decoratorMap.tsx ├── index.ts ├── schema.tsx ├── types.ts └── utils.ts ├── tsconfig.dist.json ├── tsconfig.json ├── tsconfig.settings.json └── v2-incompatible.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/assets/screenshot-dark.png -------------------------------------------------------------------------------- /assets/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/assets/screenshot-light.png -------------------------------------------------------------------------------- /migrations/transformStringToPortableText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/migrations/transformStringToPortableText.js -------------------------------------------------------------------------------- /package.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/package.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/sanity.json -------------------------------------------------------------------------------- /src/InputComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/src/InputComponent.tsx -------------------------------------------------------------------------------- /src/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/src/Toolbar.tsx -------------------------------------------------------------------------------- /src/decoratorMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/src/decoratorMap.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/src/schema.tsx -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/tsconfig.dist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/tsconfig.settings.json -------------------------------------------------------------------------------- /v2-incompatible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RostiMelk/pt-string/HEAD/v2-incompatible.js --------------------------------------------------------------------------------