├── .github └── workflows │ └── static.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmignore ├── LICENSE ├── README.md ├── demo ├── index.html ├── index.js └── styles.css ├── eslint.config.js ├── package.json ├── playwright.config.js ├── src ├── index.d.ts └── index.js └── tests └── example.spec.js /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/demo/index.js -------------------------------------------------------------------------------- /demo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/demo/styles.css -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/playwright.config.js -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/example.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activetheory/split-text/HEAD/tests/example.spec.js --------------------------------------------------------------------------------