├── .eslintignore ├── .eslintrc.js ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── config.yml ├── release-drafter.yaml └── workflows │ ├── deploy-docs.yaml │ ├── release-drafter.yaml │ └── update-changelog.yaml ├── .gitignore ├── .prettierrc.js ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── stacks-logo.png └── stacks-preview.png ├── bun.lockb ├── docs ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── babel.config.js ├── bun.lockb ├── components │ ├── Components.module.css │ ├── Components.tsx │ ├── Device.module.css │ ├── Device.tsx │ ├── Divider.module.css │ ├── Divider.tsx │ ├── Example.module.css │ ├── Example.tsx │ ├── Placeholder.module.css │ ├── Placeholder.tsx │ └── svg │ │ ├── icon-design.svg │ │ ├── icon-glasses.svg │ │ ├── icon-grid.svg │ │ ├── icon-multiple-devices.svg │ │ ├── icon-smartphone-tablet.svg │ │ └── stacks-logo.svg ├── examples │ ├── bleed │ │ └── bleed.tsx │ ├── box │ │ ├── align-x.tsx │ │ ├── align-y.tsx │ │ ├── flex.tsx │ │ ├── gap.tsx │ │ ├── margin.tsx │ │ ├── padding.tsx │ │ └── size.tsx │ ├── columns │ │ ├── align-x.tsx │ │ ├── align-y.tsx │ │ ├── collapse-below.tsx │ │ ├── flex.tsx │ │ └── reverse.tsx │ ├── float-box │ │ └── float-box.tsx │ ├── grid │ │ └── grid.tsx │ ├── inline │ │ ├── align-x.tsx │ │ ├── align-y.tsx │ │ └── space.tsx │ ├── inset │ │ └── inset.tsx │ ├── rows │ │ ├── align-x.tsx │ │ ├── align-y.tsx │ │ ├── flex.tsx │ │ └── rows.tsx │ ├── stack │ │ ├── align.tsx │ │ ├── divider.tsx │ │ ├── horizontal.tsx │ │ └── space.tsx │ └── tiles │ │ ├── columns.tsx │ │ ├── fill.tsx │ │ └── space.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.mdx │ ├── _meta.json │ ├── about.mdx │ ├── docs │ │ ├── _meta.json │ │ ├── components.mdx │ │ ├── components │ │ │ ├── _meta.json │ │ │ ├── bleed.mdx │ │ │ ├── box.mdx │ │ │ ├── columns.mdx │ │ │ ├── float-box.mdx │ │ │ ├── grid.mdx │ │ │ ├── hidden.mdx │ │ │ ├── inline.mdx │ │ │ ├── inset.mdx │ │ │ ├── rows.mdx │ │ │ ├── stack.mdx │ │ │ └── tiles.mdx │ │ ├── getting-started.mdx │ │ ├── hooks.mdx │ │ ├── index.mdx │ │ ├── migration-guide.mdx │ │ ├── types.mdx │ │ └── usage.mdx │ └── index.mdx ├── postcss.config.js ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── og-slogan.png │ ├── og-website.png │ └── stacks-preview.png ├── styles.css ├── tailwind.config.js ├── theme.config.jsx ├── tsconfig.json └── unistyles.ts ├── example ├── .gitignore ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── anonymous │ │ │ │ └── stacks │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-mdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable │ │ │ ├── rn_edit_text_material.xml │ │ │ └── splashscreen.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── colors.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── app │ ├── _layout.tsx │ ├── bleed │ │ └── index.tsx │ ├── columns │ │ └── index.tsx │ ├── components │ │ ├── Divider.tsx │ │ ├── Placeholder.tsx │ │ └── Screen.tsx │ ├── float-box │ │ └── index.tsx │ ├── grid │ │ └── index.tsx │ ├── index.tsx │ ├── inline │ │ └── index.tsx │ ├── inset │ │ └── index.tsx │ ├── rows │ │ └── index.tsx │ ├── stack │ │ └── index.tsx │ ├── styles │ │ └── unistyles.ts │ └── tiles │ │ └── index.tsx ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── bun.lockb ├── ios │ ├── .gitignore │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── Podfile.properties.json │ ├── stacks.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── stacks.xcscheme │ ├── stacks.xcworkspace │ │ └── contents.xcworkspacedata │ └── stacks │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── App-Icon-1024x1024@1x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── SplashScreen.imageset │ │ │ ├── Contents.json │ │ │ └── image.png │ │ └── SplashScreenBackground.imageset │ │ │ ├── Contents.json │ │ │ └── image.png │ │ ├── Info.plist │ │ ├── SplashScreen.storyboard │ │ ├── Supporting │ │ └── Expo.plist │ │ ├── main.m │ │ ├── noop-file.swift │ │ ├── stacks-Bridging-Header.h │ │ └── stacks.entitlements ├── metro.config.js ├── package.json └── tsconfig.json ├── package.json ├── plugin └── index.js ├── src ├── components │ ├── Bleed.tsx │ ├── Box.tsx │ ├── Column.tsx │ ├── Columns.tsx │ ├── FloatBox.tsx │ ├── Grid.tsx │ ├── Hidden.tsx │ ├── Inline.tsx │ ├── Inset.tsx │ ├── Row.tsx │ ├── Rows.tsx │ ├── Stack.tsx │ ├── Tiles.tsx │ └── index.ts ├── hooks │ ├── index.ts │ ├── useBreakpointComparators.ts │ ├── useDebugStyle.ts │ ├── useResponsiveProp.ts │ └── useSpacingHelpers.ts ├── index.ts ├── polymorphic.ts ├── types.ts └── utils.ts ├── tsconfig.json └── tsup.config.ts /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: mobily 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/release-drafter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/.github/release-drafter.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/.github/workflows/deploy-docs.yaml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/.github/workflows/release-drafter.yaml -------------------------------------------------------------------------------- /.github/workflows/update-changelog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/.github/workflows/update-changelog.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@grapp/prettier-config') 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/README.md -------------------------------------------------------------------------------- /assets/stacks-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/assets/stacks-logo.png -------------------------------------------------------------------------------- /assets/stacks-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/assets/stacks-preview.png -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/bun.lockb -------------------------------------------------------------------------------- /docs/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: [require.resolve('@grapp/eslint-config/default')], 3 | }; 4 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@grapp/prettier-config') 2 | -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/bun.lockb -------------------------------------------------------------------------------- /docs/components/Components.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/Components.module.css -------------------------------------------------------------------------------- /docs/components/Components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/Components.tsx -------------------------------------------------------------------------------- /docs/components/Device.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/Device.module.css -------------------------------------------------------------------------------- /docs/components/Device.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/Device.tsx -------------------------------------------------------------------------------- /docs/components/Divider.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/Divider.module.css -------------------------------------------------------------------------------- /docs/components/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/Divider.tsx -------------------------------------------------------------------------------- /docs/components/Example.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/Example.module.css -------------------------------------------------------------------------------- /docs/components/Example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/Example.tsx -------------------------------------------------------------------------------- /docs/components/Placeholder.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/Placeholder.module.css -------------------------------------------------------------------------------- /docs/components/Placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/Placeholder.tsx -------------------------------------------------------------------------------- /docs/components/svg/icon-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/svg/icon-design.svg -------------------------------------------------------------------------------- /docs/components/svg/icon-glasses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/svg/icon-glasses.svg -------------------------------------------------------------------------------- /docs/components/svg/icon-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/svg/icon-grid.svg -------------------------------------------------------------------------------- /docs/components/svg/icon-multiple-devices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/svg/icon-multiple-devices.svg -------------------------------------------------------------------------------- /docs/components/svg/icon-smartphone-tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/svg/icon-smartphone-tablet.svg -------------------------------------------------------------------------------- /docs/components/svg/stacks-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/components/svg/stacks-logo.svg -------------------------------------------------------------------------------- /docs/examples/bleed/bleed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/bleed/bleed.tsx -------------------------------------------------------------------------------- /docs/examples/box/align-x.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/box/align-x.tsx -------------------------------------------------------------------------------- /docs/examples/box/align-y.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/box/align-y.tsx -------------------------------------------------------------------------------- /docs/examples/box/flex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/box/flex.tsx -------------------------------------------------------------------------------- /docs/examples/box/gap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/box/gap.tsx -------------------------------------------------------------------------------- /docs/examples/box/margin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/box/margin.tsx -------------------------------------------------------------------------------- /docs/examples/box/padding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/box/padding.tsx -------------------------------------------------------------------------------- /docs/examples/box/size.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/box/size.tsx -------------------------------------------------------------------------------- /docs/examples/columns/align-x.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/columns/align-x.tsx -------------------------------------------------------------------------------- /docs/examples/columns/align-y.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/columns/align-y.tsx -------------------------------------------------------------------------------- /docs/examples/columns/collapse-below.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/columns/collapse-below.tsx -------------------------------------------------------------------------------- /docs/examples/columns/flex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/columns/flex.tsx -------------------------------------------------------------------------------- /docs/examples/columns/reverse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/columns/reverse.tsx -------------------------------------------------------------------------------- /docs/examples/float-box/float-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/float-box/float-box.tsx -------------------------------------------------------------------------------- /docs/examples/grid/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/grid/grid.tsx -------------------------------------------------------------------------------- /docs/examples/inline/align-x.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/inline/align-x.tsx -------------------------------------------------------------------------------- /docs/examples/inline/align-y.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/inline/align-y.tsx -------------------------------------------------------------------------------- /docs/examples/inline/space.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/inline/space.tsx -------------------------------------------------------------------------------- /docs/examples/inset/inset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/inset/inset.tsx -------------------------------------------------------------------------------- /docs/examples/rows/align-x.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/rows/align-x.tsx -------------------------------------------------------------------------------- /docs/examples/rows/align-y.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/rows/align-y.tsx -------------------------------------------------------------------------------- /docs/examples/rows/flex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/rows/flex.tsx -------------------------------------------------------------------------------- /docs/examples/rows/rows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/rows/rows.tsx -------------------------------------------------------------------------------- /docs/examples/stack/align.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/stack/align.tsx -------------------------------------------------------------------------------- /docs/examples/stack/divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/stack/divider.tsx -------------------------------------------------------------------------------- /docs/examples/stack/horizontal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/stack/horizontal.tsx -------------------------------------------------------------------------------- /docs/examples/stack/space.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/stack/space.tsx -------------------------------------------------------------------------------- /docs/examples/tiles/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/tiles/columns.tsx -------------------------------------------------------------------------------- /docs/examples/tiles/fill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/tiles/fill.tsx -------------------------------------------------------------------------------- /docs/examples/tiles/space.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/examples/tiles/space.tsx -------------------------------------------------------------------------------- /docs/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/next-env.d.ts -------------------------------------------------------------------------------- /docs/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/next.config.js -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pages/_app.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/_app.mdx -------------------------------------------------------------------------------- /docs/pages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/_meta.json -------------------------------------------------------------------------------- /docs/pages/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/about.mdx -------------------------------------------------------------------------------- /docs/pages/docs/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/_meta.json -------------------------------------------------------------------------------- /docs/pages/docs/components.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/components.mdx -------------------------------------------------------------------------------- /docs/pages/docs/components/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/components/_meta.json -------------------------------------------------------------------------------- /docs/pages/docs/components/bleed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/components/bleed.mdx -------------------------------------------------------------------------------- /docs/pages/docs/components/box.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/components/box.mdx -------------------------------------------------------------------------------- /docs/pages/docs/components/columns.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/components/columns.mdx -------------------------------------------------------------------------------- /docs/pages/docs/components/float-box.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/components/float-box.mdx -------------------------------------------------------------------------------- /docs/pages/docs/components/grid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/components/grid.mdx -------------------------------------------------------------------------------- /docs/pages/docs/components/hidden.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/components/hidden.mdx -------------------------------------------------------------------------------- /docs/pages/docs/components/inline.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/components/inline.mdx -------------------------------------------------------------------------------- /docs/pages/docs/components/inset.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/components/inset.mdx -------------------------------------------------------------------------------- /docs/pages/docs/components/rows.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/components/rows.mdx -------------------------------------------------------------------------------- /docs/pages/docs/components/stack.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/components/stack.mdx -------------------------------------------------------------------------------- /docs/pages/docs/components/tiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/components/tiles.mdx -------------------------------------------------------------------------------- /docs/pages/docs/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/getting-started.mdx -------------------------------------------------------------------------------- /docs/pages/docs/hooks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/hooks.mdx -------------------------------------------------------------------------------- /docs/pages/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/index.mdx -------------------------------------------------------------------------------- /docs/pages/docs/migration-guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/migration-guide.mdx -------------------------------------------------------------------------------- /docs/pages/docs/types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/types.mdx -------------------------------------------------------------------------------- /docs/pages/docs/usage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/docs/usage.mdx -------------------------------------------------------------------------------- /docs/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/pages/index.mdx -------------------------------------------------------------------------------- /docs/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@grapp/nextra-theme/config/postcss') 2 | -------------------------------------------------------------------------------- /docs/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/public/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/public/favicon-16x16.png -------------------------------------------------------------------------------- /docs/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/public/favicon-32x32.png -------------------------------------------------------------------------------- /docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/public/favicon.ico -------------------------------------------------------------------------------- /docs/public/og-slogan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/public/og-slogan.png -------------------------------------------------------------------------------- /docs/public/og-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/public/og-website.png -------------------------------------------------------------------------------- /docs/public/stacks-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/public/stacks-preview.png -------------------------------------------------------------------------------- /docs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/styles.css -------------------------------------------------------------------------------- /docs/tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@grapp/nextra-theme/config/tailwind') 2 | -------------------------------------------------------------------------------- /docs/theme.config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/theme.config.jsx -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/unistyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/docs/unistyles.ts -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/anonymous/stacks/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/java/com/anonymous/stacks/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/anonymous/stacks/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/java/com/anonymous/stacks/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-hdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/drawable-hdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-mdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/drawable-mdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/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/grapp-dev/stacks/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/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/grapp-dev/stacks/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/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/grapp-dev/stacks/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/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/grapp-dev/stacks/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app.json -------------------------------------------------------------------------------- /example/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/_layout.tsx -------------------------------------------------------------------------------- /example/app/bleed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/bleed/index.tsx -------------------------------------------------------------------------------- /example/app/columns/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/columns/index.tsx -------------------------------------------------------------------------------- /example/app/components/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/components/Divider.tsx -------------------------------------------------------------------------------- /example/app/components/Placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/components/Placeholder.tsx -------------------------------------------------------------------------------- /example/app/components/Screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/components/Screen.tsx -------------------------------------------------------------------------------- /example/app/float-box/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/float-box/index.tsx -------------------------------------------------------------------------------- /example/app/grid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/grid/index.tsx -------------------------------------------------------------------------------- /example/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/index.tsx -------------------------------------------------------------------------------- /example/app/inline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/inline/index.tsx -------------------------------------------------------------------------------- /example/app/inset/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/inset/index.tsx -------------------------------------------------------------------------------- /example/app/rows/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/rows/index.tsx -------------------------------------------------------------------------------- /example/app/stack/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/stack/index.tsx -------------------------------------------------------------------------------- /example/app/styles/unistyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/styles/unistyles.ts -------------------------------------------------------------------------------- /example/app/tiles/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/app/tiles/index.tsx -------------------------------------------------------------------------------- /example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/bun.lockb -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/Podfile.properties.json -------------------------------------------------------------------------------- /example/ios/stacks.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/stacks.xcodeproj/xcshareddata/xcschemes/stacks.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks.xcodeproj/xcshareddata/xcschemes/stacks.xcscheme -------------------------------------------------------------------------------- /example/ios/stacks.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/stacks/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/stacks/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/stacks/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/stacks/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/stacks/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/stacks/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/stacks/Images.xcassets/SplashScreen.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/Images.xcassets/SplashScreen.imageset/image.png -------------------------------------------------------------------------------- /example/ios/stacks/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/stacks/Images.xcassets/SplashScreenBackground.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/Images.xcassets/SplashScreenBackground.imageset/image.png -------------------------------------------------------------------------------- /example/ios/stacks/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/Info.plist -------------------------------------------------------------------------------- /example/ios/stacks/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/SplashScreen.storyboard -------------------------------------------------------------------------------- /example/ios/stacks/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/Supporting/Expo.plist -------------------------------------------------------------------------------- /example/ios/stacks/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/main.m -------------------------------------------------------------------------------- /example/ios/stacks/noop-file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/noop-file.swift -------------------------------------------------------------------------------- /example/ios/stacks/stacks-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/stacks-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/stacks/stacks.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/ios/stacks/stacks.entitlements -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/package.json -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/package.json -------------------------------------------------------------------------------- /plugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/plugin/index.js -------------------------------------------------------------------------------- /src/components/Bleed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/Bleed.tsx -------------------------------------------------------------------------------- /src/components/Box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/Box.tsx -------------------------------------------------------------------------------- /src/components/Column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/Column.tsx -------------------------------------------------------------------------------- /src/components/Columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/Columns.tsx -------------------------------------------------------------------------------- /src/components/FloatBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/FloatBox.tsx -------------------------------------------------------------------------------- /src/components/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/Grid.tsx -------------------------------------------------------------------------------- /src/components/Hidden.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/Hidden.tsx -------------------------------------------------------------------------------- /src/components/Inline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/Inline.tsx -------------------------------------------------------------------------------- /src/components/Inset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/Inset.tsx -------------------------------------------------------------------------------- /src/components/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/Row.tsx -------------------------------------------------------------------------------- /src/components/Rows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/Rows.tsx -------------------------------------------------------------------------------- /src/components/Stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/Stack.tsx -------------------------------------------------------------------------------- /src/components/Tiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/Tiles.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/useBreakpointComparators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/hooks/useBreakpointComparators.ts -------------------------------------------------------------------------------- /src/hooks/useDebugStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/hooks/useDebugStyle.ts -------------------------------------------------------------------------------- /src/hooks/useResponsiveProp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/hooks/useResponsiveProp.ts -------------------------------------------------------------------------------- /src/hooks/useSpacingHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/hooks/useSpacingHelpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/polymorphic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/polymorphic.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grapp-dev/stacks/HEAD/tsup.config.ts --------------------------------------------------------------------------------