├── .all-contributorsrc ├── .circleci └── config.yml ├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── Troubleshooting.md ├── babel.config.js ├── commitlint.config.js ├── docker-compose.yml ├── docs ├── apply.md ├── background.md ├── borders.md ├── box-shadow.md ├── class-names.md ├── components.md ├── effects.md ├── exists.md ├── extend.md ├── flex.md ├── getSizeFor.md ├── getting-started.md ├── layout.md ├── responsive.md ├── sizing.md ├── spacing.md ├── theme.md ├── troubleshooting.md ├── typography.md └── usage.md ├── example ├── android │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── PrincssExample │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── PrincssExample │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── index.ts ├── ios │ ├── ConsistencssExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ConsistencssExample.xcscheme │ ├── ConsistencssExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── ConsistencssExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ ├── Podfile │ └── Podfile.lock ├── metro.config.js ├── package-lock.json ├── package.json ├── src │ ├── App.tsx │ ├── types.d.ts │ └── views │ │ ├── Another.tsx │ │ └── Home.tsx └── yarn.lock ├── package.json ├── src ├── __tests__ │ ├── dictionary.test.tsx │ ├── index.test.tsx │ ├── performance.test.tsx │ └── utils.test.tsx ├── components.tsx ├── constants.tsx ├── core.ts ├── dictionary.ts ├── getters.ts ├── index.tsx ├── types.ts └── utils.ts ├── tsconfig.json ├── website ├── .gitignore ├── README.md ├── core │ └── Footer.js ├── i18n │ └── en.json ├── package.json ├── pages │ └── en │ │ ├── index.js │ │ ├── users.js │ │ └── versions.js ├── sidebars.json ├── siteConfig.js ├── static │ ├── css │ │ └── custom.css │ └── img │ │ ├── code_home.png │ │ ├── favicon.ico │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── undraw_circles.svg │ │ ├── undraw_product.svg │ │ └── undraw_researching.svg ├── versioned_docs │ ├── version-0.1.1 │ │ ├── apply.md │ │ ├── background.md │ │ ├── borders.md │ │ ├── components.md │ │ ├── effects.md │ │ ├── exists.md │ │ ├── extend.md │ │ ├── flex.md │ │ ├── getting-started.md │ │ ├── layout.md │ │ ├── sizing.md │ │ ├── spacing.md │ │ └── typography.md │ ├── version-0.2.0 │ │ ├── borders.md │ │ ├── layout.md │ │ ├── sizing.md │ │ ├── spacing.md │ │ └── typography.md │ ├── version-0.3.0 │ │ ├── flex.md │ │ ├── layout.md │ │ └── typography.md │ ├── version-0.4.0 │ │ └── components.md │ ├── version-0.5.0 │ │ ├── sizing.md │ │ └── theme.md │ ├── version-0.6.0 │ │ ├── extend.md │ │ ├── getSizeFor.md │ │ ├── getting-started.md │ │ └── typography.md │ ├── version-1.0.0 │ │ ├── extend.md │ │ └── getting-started.md │ ├── version-1.1.0 │ │ ├── borders.md │ │ ├── box-shadow.md │ │ ├── effects.md │ │ ├── extend.md │ │ ├── getSizeFor.md │ │ ├── getting-started.md │ │ ├── troubleshooting.md │ │ ├── typography.md │ │ └── usage.md │ ├── version-1.2.0 │ │ └── class-names.md │ ├── version-1.3.0 │ │ └── class-names.md │ ├── version-1.4.0 │ │ ├── class-names.md │ │ ├── extend.md │ │ └── usage.md │ ├── version-1.5.0 │ │ └── responsive.md │ └── version-1.7.0 │ │ └── borders.md ├── versioned_sidebars │ ├── version-0.1.1-sidebars.json │ ├── version-0.5.0-sidebars.json │ ├── version-0.6.0-sidebars.json │ ├── version-1.1.0-sidebars.json │ ├── version-1.2.0-sidebars.json │ └── version-1.5.0-sidebars.json ├── versions.json └── yarn.lock └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | */node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | coverage 4 | website -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/README.md -------------------------------------------------------------------------------- /Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/Troubleshooting.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'], 3 | }; 4 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/apply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/apply.md -------------------------------------------------------------------------------- /docs/background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/background.md -------------------------------------------------------------------------------- /docs/borders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/borders.md -------------------------------------------------------------------------------- /docs/box-shadow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/box-shadow.md -------------------------------------------------------------------------------- /docs/class-names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/class-names.md -------------------------------------------------------------------------------- /docs/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/components.md -------------------------------------------------------------------------------- /docs/effects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/effects.md -------------------------------------------------------------------------------- /docs/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/exists.md -------------------------------------------------------------------------------- /docs/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/extend.md -------------------------------------------------------------------------------- /docs/flex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/flex.md -------------------------------------------------------------------------------- /docs/getSizeFor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/getSizeFor.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/layout.md -------------------------------------------------------------------------------- /docs/responsive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/responsive.md -------------------------------------------------------------------------------- /docs/sizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/sizing.md -------------------------------------------------------------------------------- /docs/spacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/spacing.md -------------------------------------------------------------------------------- /docs/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/theme.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/typography.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/docs/usage.md -------------------------------------------------------------------------------- /example/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/.project -------------------------------------------------------------------------------- /example/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/PrincssExample/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/debug/java/com/PrincssExample/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/PrincssExample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/java/com/PrincssExample/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/PrincssExample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/java/com/PrincssExample/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/app.json -------------------------------------------------------------------------------- /example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/index.ts -------------------------------------------------------------------------------- /example/ios/ConsistencssExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/ios/ConsistencssExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/ConsistencssExample.xcodeproj/xcshareddata/xcschemes/ConsistencssExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/ios/ConsistencssExample.xcodeproj/xcshareddata/xcschemes/ConsistencssExample.xcscheme -------------------------------------------------------------------------------- /example/ios/ConsistencssExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/ios/ConsistencssExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/ConsistencssExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/ios/ConsistencssExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/ConsistencssExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/ios/ConsistencssExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/ConsistencssExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/ios/ConsistencssExample/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/ConsistencssExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/ios/ConsistencssExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/ConsistencssExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/ios/ConsistencssExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/ConsistencssExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/ios/ConsistencssExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/ConsistencssExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/ios/ConsistencssExample/Info.plist -------------------------------------------------------------------------------- /example/ios/ConsistencssExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/ios/ConsistencssExample/main.m -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/src/types.d.ts -------------------------------------------------------------------------------- /example/src/views/Another.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/src/views/Another.tsx -------------------------------------------------------------------------------- /example/src/views/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/src/views/Home.tsx -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/dictionary.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/src/__tests__/dictionary.test.tsx -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/src/__tests__/index.test.tsx -------------------------------------------------------------------------------- /src/__tests__/performance.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/src/__tests__/performance.test.tsx -------------------------------------------------------------------------------- /src/__tests__/utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/src/__tests__/utils.test.tsx -------------------------------------------------------------------------------- /src/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/src/components.tsx -------------------------------------------------------------------------------- /src/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/src/constants.tsx -------------------------------------------------------------------------------- /src/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/src/core.ts -------------------------------------------------------------------------------- /src/dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/src/dictionary.ts -------------------------------------------------------------------------------- /src/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/src/getters.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/tsconfig.json -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- 1 | .now -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/README.md -------------------------------------------------------------------------------- /website/core/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/core/Footer.js -------------------------------------------------------------------------------- /website/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/i18n/en.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pages/en/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/pages/en/index.js -------------------------------------------------------------------------------- /website/pages/en/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/pages/en/users.js -------------------------------------------------------------------------------- /website/pages/en/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/pages/en/versions.js -------------------------------------------------------------------------------- /website/sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/sidebars.json -------------------------------------------------------------------------------- /website/siteConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/siteConfig.js -------------------------------------------------------------------------------- /website/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/static/css/custom.css -------------------------------------------------------------------------------- /website/static/img/code_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/static/img/code_home.png -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/static/img/favicon.ico -------------------------------------------------------------------------------- /website/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/static/img/logo.png -------------------------------------------------------------------------------- /website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/static/img/logo.svg -------------------------------------------------------------------------------- /website/static/img/undraw_circles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/static/img/undraw_circles.svg -------------------------------------------------------------------------------- /website/static/img/undraw_product.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/static/img/undraw_product.svg -------------------------------------------------------------------------------- /website/static/img/undraw_researching.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/static/img/undraw_researching.svg -------------------------------------------------------------------------------- /website/versioned_docs/version-0.1.1/apply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.1.1/apply.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.1.1/background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.1.1/background.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.1.1/borders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.1.1/borders.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.1.1/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.1.1/components.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.1.1/effects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.1.1/effects.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.1.1/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.1.1/exists.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.1.1/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.1.1/extend.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.1.1/flex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.1.1/flex.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.1.1/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.1.1/getting-started.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.1.1/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.1.1/layout.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.1.1/sizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.1.1/sizing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.1.1/spacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.1.1/spacing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.1.1/typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.1.1/typography.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.2.0/borders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.2.0/borders.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.2.0/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.2.0/layout.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.2.0/sizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.2.0/sizing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.2.0/spacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.2.0/spacing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.2.0/typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.2.0/typography.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.3.0/flex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.3.0/flex.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.3.0/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.3.0/layout.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.3.0/typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.3.0/typography.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.4.0/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.4.0/components.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.5.0/sizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.5.0/sizing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.5.0/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.5.0/theme.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.6.0/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.6.0/extend.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.6.0/getSizeFor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.6.0/getSizeFor.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.6.0/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.6.0/getting-started.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.6.0/typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-0.6.0/typography.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.0.0/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.0.0/extend.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.0.0/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.0.0/getting-started.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.1.0/borders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.1.0/borders.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.1.0/box-shadow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.1.0/box-shadow.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.1.0/effects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.1.0/effects.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.1.0/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.1.0/extend.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.1.0/getSizeFor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.1.0/getSizeFor.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.1.0/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.1.0/getting-started.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.1.0/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.1.0/troubleshooting.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.1.0/typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.1.0/typography.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.1.0/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.1.0/usage.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/class-names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.2.0/class-names.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.3.0/class-names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.3.0/class-names.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.4.0/class-names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.4.0/class-names.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.4.0/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.4.0/extend.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.4.0/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.4.0/usage.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.5.0/responsive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.5.0/responsive.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.7.0/borders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_docs/version-1.7.0/borders.md -------------------------------------------------------------------------------- /website/versioned_sidebars/version-0.1.1-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_sidebars/version-0.1.1-sidebars.json -------------------------------------------------------------------------------- /website/versioned_sidebars/version-0.5.0-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_sidebars/version-0.5.0-sidebars.json -------------------------------------------------------------------------------- /website/versioned_sidebars/version-0.6.0-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_sidebars/version-0.6.0-sidebars.json -------------------------------------------------------------------------------- /website/versioned_sidebars/version-1.1.0-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_sidebars/version-1.1.0-sidebars.json -------------------------------------------------------------------------------- /website/versioned_sidebars/version-1.2.0-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_sidebars/version-1.2.0-sidebars.json -------------------------------------------------------------------------------- /website/versioned_sidebars/version-1.5.0-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versioned_sidebars/version-1.5.0-sidebars.json -------------------------------------------------------------------------------- /website/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/versions.json -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/website/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateosilguero/consistencss/HEAD/yarn.lock --------------------------------------------------------------------------------