├── .github └── main.workflow ├── .gitignore ├── README.md ├── __tests__ ├── insert.test.ts └── useSimpleUndo.test.ts ├── docs ├── intro.mdx └── usage.mdx ├── doczrc.js ├── package.json ├── renovate.json ├── src ├── index.ts └── insert.ts ├── tsconfig.json └── yarn.lock /.github/main.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandiiarov/use-simple-undo/HEAD/.github/main.workflow -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | node_modules 3 | pkg 4 | .docz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandiiarov/use-simple-undo/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/insert.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandiiarov/use-simple-undo/HEAD/__tests__/insert.test.ts -------------------------------------------------------------------------------- /__tests__/useSimpleUndo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandiiarov/use-simple-undo/HEAD/__tests__/useSimpleUndo.test.ts -------------------------------------------------------------------------------- /docs/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandiiarov/use-simple-undo/HEAD/docs/intro.mdx -------------------------------------------------------------------------------- /docs/usage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandiiarov/use-simple-undo/HEAD/docs/usage.mdx -------------------------------------------------------------------------------- /doczrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandiiarov/use-simple-undo/HEAD/doczrc.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandiiarov/use-simple-undo/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandiiarov/use-simple-undo/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandiiarov/use-simple-undo/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/insert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandiiarov/use-simple-undo/HEAD/src/insert.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandiiarov/use-simple-undo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandiiarov/use-simple-undo/HEAD/yarn.lock --------------------------------------------------------------------------------