├── .babelrc ├── .gitignore ├── .prettierrc.js ├── @types └── index.d.ts ├── README.md ├── assets └── custom-class-names-generation-readme.jpg ├── package.json ├── rollup.config.js └── src ├── generateAlphabeticName.js ├── generateClassID.js ├── hash.js ├── index.js ├── tests ├── index.test.js ├── index.test.js.md ├── index.test.js.snap ├── snapshots │ ├── index.test.js.md │ └── index.test.js.snap └── utils.test.js └── utils.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /dist/ -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/@types/index.d.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/README.md -------------------------------------------------------------------------------- /assets/custom-class-names-generation-readme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/assets/custom-class-names-generation-readme.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/generateAlphabeticName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/src/generateAlphabeticName.js -------------------------------------------------------------------------------- /src/generateClassID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/src/generateClassID.js -------------------------------------------------------------------------------- /src/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/src/hash.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/src/index.js -------------------------------------------------------------------------------- /src/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/src/tests/index.test.js -------------------------------------------------------------------------------- /src/tests/index.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/src/tests/index.test.js.md -------------------------------------------------------------------------------- /src/tests/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/src/tests/index.test.js.snap -------------------------------------------------------------------------------- /src/tests/snapshots/index.test.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/src/tests/snapshots/index.test.js.md -------------------------------------------------------------------------------- /src/tests/snapshots/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/src/tests/snapshots/index.test.js.snap -------------------------------------------------------------------------------- /src/tests/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/src/tests/utils.test.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadick254/scoped-style/HEAD/src/utils.js --------------------------------------------------------------------------------