├── .changeset ├── README.md └── config.json ├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── ci-cd.yaml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .tshy ├── build.json ├── commonjs.json └── esm.json ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── logo.svg ├── base.css ├── package.json ├── pnpm-lock.yaml ├── reset-scoped.css ├── reset.css ├── src └── reset-scoped │ ├── index.ts │ └── react │ ├── index.ts │ ├── jsx-dev-runtime.ts │ ├── jsx-runtime.ts │ └── transformProps.ts ├── test-pages └── reset.html ├── tsconfig.json └── ua-sheets ├── SOURCES.md ├── chrome.css ├── firefox.css └── safari.css /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: kripod 2 | -------------------------------------------------------------------------------- /.github/workflows/ci-cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/.github/workflows/ci-cd.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .tshy-build/ 4 | *.log* 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/.prettierignore -------------------------------------------------------------------------------- /.tshy/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/.tshy/build.json -------------------------------------------------------------------------------- /.tshy/commonjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/.tshy/commonjs.json -------------------------------------------------------------------------------- /.tshy/esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/.tshy/esm.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/base.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /reset-scoped.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/reset-scoped.css -------------------------------------------------------------------------------- /reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/reset.css -------------------------------------------------------------------------------- /src/reset-scoped/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/src/reset-scoped/index.ts -------------------------------------------------------------------------------- /src/reset-scoped/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/src/reset-scoped/react/index.ts -------------------------------------------------------------------------------- /src/reset-scoped/react/jsx-dev-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/src/reset-scoped/react/jsx-dev-runtime.ts -------------------------------------------------------------------------------- /src/reset-scoped/react/jsx-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/src/reset-scoped/react/jsx-runtime.ts -------------------------------------------------------------------------------- /src/reset-scoped/react/transformProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/src/reset-scoped/react/transformProps.ts -------------------------------------------------------------------------------- /test-pages/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/test-pages/reset.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /ua-sheets/SOURCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/ua-sheets/SOURCES.md -------------------------------------------------------------------------------- /ua-sheets/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/ua-sheets/chrome.css -------------------------------------------------------------------------------- /ua-sheets/firefox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/ua-sheets/firefox.css -------------------------------------------------------------------------------- /ua-sheets/safari.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kripod/css-homogenizer/HEAD/ua-sheets/safari.css --------------------------------------------------------------------------------