├── .commitlintrc.json ├── .eslintrc ├── .gitignore ├── .husky └── commit-msg ├── .nvmrc ├── .prettierrc.json ├── .yarnrc.yml ├── CHANGELOG.md ├── README.md ├── media ├── logo.png ├── logo.psd ├── screenshot.png ├── social.png └── social.psd ├── nx.json ├── package.json ├── packages ├── app │ ├── .eslintrc │ ├── .gitignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── x-unit-selector │ │ │ ├── index.tsx │ │ │ ├── styles.css │ │ │ └── types.ts │ │ └── x-weather │ │ │ ├── components │ │ │ ├── city │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.css │ │ │ │ └── types.ts │ │ │ ├── coordinates │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.css │ │ │ │ └── types.ts │ │ │ ├── forecast │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.css │ │ │ │ └── types.ts │ │ │ ├── loading │ │ │ │ ├── images │ │ │ │ │ └── loading.svg │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.css │ │ │ │ └── types.ts │ │ │ ├── logo │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── meta │ │ │ │ ├── images │ │ │ │ │ ├── feels-like.png │ │ │ │ │ ├── humidity.png │ │ │ │ │ ├── min-max.png │ │ │ │ │ ├── pressure.png │ │ │ │ │ ├── timezone.png │ │ │ │ │ ├── visibility.png │ │ │ │ │ └── wind.png │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.css │ │ │ │ ├── types.ts │ │ │ │ └── utils.tsx │ │ │ ├── places │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.css │ │ │ │ └── types.ts │ │ │ └── units │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.css │ │ │ │ └── types.ts │ │ │ ├── images │ │ │ ├── flag.svg │ │ │ ├── logo.png │ │ │ └── places │ │ │ │ ├── amesbury.png │ │ │ │ ├── amsterdam.png │ │ │ │ ├── athens.png │ │ │ │ ├── bali.png │ │ │ │ ├── barcelona.png │ │ │ │ ├── beijing.png │ │ │ │ ├── berlin.png │ │ │ │ ├── brussels.png │ │ │ │ ├── budapest.png │ │ │ │ ├── cairo.png │ │ │ │ ├── cancun.png │ │ │ │ ├── dubai.png │ │ │ │ ├── fuji.png │ │ │ │ ├── hanga-roa.png │ │ │ │ ├── istanbul.png │ │ │ │ ├── johannesburg.png │ │ │ │ ├── kuala-lumpur.png │ │ │ │ ├── kyoto.png │ │ │ │ ├── london.png │ │ │ │ ├── magelang.png │ │ │ │ ├── matsumoto.png │ │ │ │ ├── miyajima.png │ │ │ │ ├── moscow.png │ │ │ │ ├── munich.png │ │ │ │ ├── new-delhi.png │ │ │ │ ├── new-york.png │ │ │ │ ├── paris.png │ │ │ │ ├── patagonia.png │ │ │ │ ├── petra.png │ │ │ │ ├── phuket.png │ │ │ │ ├── pisa.png │ │ │ │ ├── rio-de-janeiro.png │ │ │ │ ├── rome.png │ │ │ │ ├── saint-petersburg.png │ │ │ │ ├── san-francisco.png │ │ │ │ ├── seattle.png │ │ │ │ ├── seoul.png │ │ │ │ ├── siem-reap.png │ │ │ │ ├── singapore.png │ │ │ │ ├── sydney.png │ │ │ │ ├── venice.png │ │ │ │ └── washington-dc.png │ │ │ ├── index.tsx │ │ │ ├── styles.css │ │ │ ├── types.ts │ │ │ └── utils.ts │ └── tsconfig.json ├── generators │ ├── CHANGELOG.md │ ├── generators.json │ ├── package.json │ ├── src │ │ └── generators │ │ │ └── create-component │ │ │ ├── files │ │ │ ├── .gitignore__template__ │ │ │ ├── package.json__template__ │ │ │ ├── src │ │ │ │ └── index.tsx__template__ │ │ │ └── tsconfig.json__template__ │ │ │ ├── generator.ts │ │ │ ├── schema.json │ │ │ └── types.ts │ └── tsconfig.json ├── library │ ├── .eslintrc │ ├── .gitignore │ ├── .npmignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── jest.config.ts │ ├── makefile │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── client │ │ │ ├── create │ │ │ │ ├── index.tsx │ │ │ │ ├── types.ts │ │ │ │ ├── utils.test.ts │ │ │ │ └── utils.ts │ │ │ └── use │ │ │ │ └── index.ts │ │ ├── global.d.ts │ │ ├── global │ │ │ ├── container │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── node │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── transformers │ │ │ │ ├── index.test.ts │ │ │ │ └── index.ts │ │ │ ├── types │ │ │ │ └── index.ts │ │ │ ├── use │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ └── utils │ │ │ │ ├── index.test.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ ├── index.client.tsx │ │ ├── index.d.ts │ │ ├── index.server.tsx │ │ └── server │ │ │ ├── create │ │ │ ├── index.tsx │ │ │ └── utils.ts │ │ │ ├── imports │ │ │ ├── index.ts │ │ │ └── types.ts │ │ │ ├── preload │ │ │ └── index.ts │ │ │ ├── render │ │ │ ├── index.tsx │ │ │ └── types.ts │ │ │ └── use │ │ │ ├── index.ts │ │ │ └── utils.ts │ └── tsconfig.json └── server │ ├── .eslintrc │ ├── .gitignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ └── index.tsx │ └── tsconfig.json ├── project.json ├── tsconfig.json └── yarn.lock /.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/.commitlintrc.json -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .yarn 2 | node_modules 3 | yarn-error.log 4 | **/.DS_Store -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v19.7.0 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/README.md -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/media/logo.psd -------------------------------------------------------------------------------- /media/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/media/screenshot.png -------------------------------------------------------------------------------- /media/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/media/social.png -------------------------------------------------------------------------------- /media/social.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/media/social.psd -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/package.json -------------------------------------------------------------------------------- /packages/app/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/.eslintrc -------------------------------------------------------------------------------- /packages/app/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /packages/app/.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /packages/app/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/CHANGELOG.md -------------------------------------------------------------------------------- /packages/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/package.json -------------------------------------------------------------------------------- /packages/app/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./x-weather/index.js"; 2 | -------------------------------------------------------------------------------- /packages/app/src/x-unit-selector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-unit-selector/index.tsx -------------------------------------------------------------------------------- /packages/app/src/x-unit-selector/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-unit-selector/styles.css -------------------------------------------------------------------------------- /packages/app/src/x-unit-selector/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-unit-selector/types.ts -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/city/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/city/index.tsx -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/city/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/city/styles.css -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/city/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/city/types.ts -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/coordinates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/coordinates/index.tsx -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/coordinates/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/coordinates/styles.css -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/coordinates/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/coordinates/types.ts -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/forecast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/forecast/index.tsx -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/forecast/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/forecast/styles.css -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/forecast/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/forecast/types.ts -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/loading/images/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/loading/images/loading.svg -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/loading/index.tsx -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/loading/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/loading/styles.css -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/loading/types.ts: -------------------------------------------------------------------------------- 1 | export type Props = { 2 | value: boolean; 3 | }; 4 | -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/logo/index.tsx -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/logo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/logo/styles.css -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/meta/images/feels-like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/meta/images/feels-like.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/meta/images/humidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/meta/images/humidity.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/meta/images/min-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/meta/images/min-max.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/meta/images/pressure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/meta/images/pressure.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/meta/images/timezone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/meta/images/timezone.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/meta/images/visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/meta/images/visibility.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/meta/images/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/meta/images/wind.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/meta/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/meta/index.tsx -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/meta/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/meta/styles.css -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/meta/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/meta/types.ts -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/meta/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/meta/utils.tsx -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/places/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/places/index.tsx -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/places/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/places/styles.css -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/places/types.ts: -------------------------------------------------------------------------------- 1 | export type Props = { 2 | value: string; 3 | }; 4 | -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/units/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/units/index.tsx -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/units/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/units/styles.css -------------------------------------------------------------------------------- /packages/app/src/x-weather/components/units/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/components/units/types.ts -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/flag.svg -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/logo.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/amesbury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/amesbury.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/amsterdam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/amsterdam.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/athens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/athens.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/bali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/bali.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/barcelona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/barcelona.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/beijing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/beijing.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/berlin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/berlin.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/brussels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/brussels.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/budapest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/budapest.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/cairo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/cairo.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/cancun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/cancun.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/dubai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/dubai.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/fuji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/fuji.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/hanga-roa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/hanga-roa.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/istanbul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/istanbul.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/johannesburg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/johannesburg.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/kuala-lumpur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/kuala-lumpur.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/kyoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/kyoto.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/london.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/london.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/magelang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/magelang.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/matsumoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/matsumoto.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/miyajima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/miyajima.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/moscow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/moscow.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/munich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/munich.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/new-delhi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/new-delhi.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/new-york.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/new-york.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/paris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/paris.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/patagonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/patagonia.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/petra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/petra.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/phuket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/phuket.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/pisa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/pisa.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/rio-de-janeiro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/rio-de-janeiro.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/rome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/rome.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/saint-petersburg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/saint-petersburg.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/san-francisco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/san-francisco.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/seattle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/seattle.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/seoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/seoul.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/siem-reap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/siem-reap.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/singapore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/singapore.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/sydney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/sydney.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/venice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/venice.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/images/places/washington-dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/images/places/washington-dc.png -------------------------------------------------------------------------------- /packages/app/src/x-weather/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/index.tsx -------------------------------------------------------------------------------- /packages/app/src/x-weather/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/styles.css -------------------------------------------------------------------------------- /packages/app/src/x-weather/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/types.ts -------------------------------------------------------------------------------- /packages/app/src/x-weather/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/src/x-weather/utils.ts -------------------------------------------------------------------------------- /packages/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/app/tsconfig.json -------------------------------------------------------------------------------- /packages/generators/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/generators/CHANGELOG.md -------------------------------------------------------------------------------- /packages/generators/generators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/generators/generators.json -------------------------------------------------------------------------------- /packages/generators/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/generators/package.json -------------------------------------------------------------------------------- /packages/generators/src/generators/create-component/files/.gitignore__template__: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /packages/generators/src/generators/create-component/files/package.json__template__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/generators/src/generators/create-component/files/package.json__template__ -------------------------------------------------------------------------------- /packages/generators/src/generators/create-component/files/src/index.tsx__template__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/generators/src/generators/create-component/files/src/index.tsx__template__ -------------------------------------------------------------------------------- /packages/generators/src/generators/create-component/files/tsconfig.json__template__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/generators/src/generators/create-component/files/tsconfig.json__template__ -------------------------------------------------------------------------------- /packages/generators/src/generators/create-component/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/generators/src/generators/create-component/generator.ts -------------------------------------------------------------------------------- /packages/generators/src/generators/create-component/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/generators/src/generators/create-component/schema.json -------------------------------------------------------------------------------- /packages/generators/src/generators/create-component/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/generators/src/generators/create-component/types.ts -------------------------------------------------------------------------------- /packages/generators/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/generators/tsconfig.json -------------------------------------------------------------------------------- /packages/library/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/.eslintrc -------------------------------------------------------------------------------- /packages/library/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | coverage/ 4 | -------------------------------------------------------------------------------- /packages/library/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/.npmignore -------------------------------------------------------------------------------- /packages/library/.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /packages/library/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/CHANGELOG.md -------------------------------------------------------------------------------- /packages/library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/LICENSE -------------------------------------------------------------------------------- /packages/library/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/jest.config.ts -------------------------------------------------------------------------------- /packages/library/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/makefile -------------------------------------------------------------------------------- /packages/library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/package.json -------------------------------------------------------------------------------- /packages/library/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/rollup.config.js -------------------------------------------------------------------------------- /packages/library/src/client/create/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/client/create/index.tsx -------------------------------------------------------------------------------- /packages/library/src/client/create/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/client/create/types.ts -------------------------------------------------------------------------------- /packages/library/src/client/create/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/client/create/utils.test.ts -------------------------------------------------------------------------------- /packages/library/src/client/create/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/client/create/utils.ts -------------------------------------------------------------------------------- /packages/library/src/client/use/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/client/use/index.ts -------------------------------------------------------------------------------- /packages/library/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/global.d.ts -------------------------------------------------------------------------------- /packages/library/src/global/container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/global/container/index.tsx -------------------------------------------------------------------------------- /packages/library/src/global/container/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/global/container/types.ts -------------------------------------------------------------------------------- /packages/library/src/global/node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/global/node/index.ts -------------------------------------------------------------------------------- /packages/library/src/global/node/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/global/node/types.ts -------------------------------------------------------------------------------- /packages/library/src/global/transformers/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/global/transformers/index.test.ts -------------------------------------------------------------------------------- /packages/library/src/global/transformers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/global/transformers/index.ts -------------------------------------------------------------------------------- /packages/library/src/global/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/global/types/index.ts -------------------------------------------------------------------------------- /packages/library/src/global/use/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/global/use/index.ts -------------------------------------------------------------------------------- /packages/library/src/global/use/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/global/use/types.ts -------------------------------------------------------------------------------- /packages/library/src/global/utils/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/global/utils/index.test.ts -------------------------------------------------------------------------------- /packages/library/src/global/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/global/utils/index.ts -------------------------------------------------------------------------------- /packages/library/src/global/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/global/utils/types.ts -------------------------------------------------------------------------------- /packages/library/src/index.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/index.client.tsx -------------------------------------------------------------------------------- /packages/library/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/index.d.ts -------------------------------------------------------------------------------- /packages/library/src/index.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/index.server.tsx -------------------------------------------------------------------------------- /packages/library/src/server/create/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/server/create/index.tsx -------------------------------------------------------------------------------- /packages/library/src/server/create/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/server/create/utils.ts -------------------------------------------------------------------------------- /packages/library/src/server/imports/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/server/imports/index.ts -------------------------------------------------------------------------------- /packages/library/src/server/imports/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/server/imports/types.ts -------------------------------------------------------------------------------- /packages/library/src/server/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/server/preload/index.ts -------------------------------------------------------------------------------- /packages/library/src/server/render/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/server/render/index.tsx -------------------------------------------------------------------------------- /packages/library/src/server/render/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/server/render/types.ts -------------------------------------------------------------------------------- /packages/library/src/server/use/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/server/use/index.ts -------------------------------------------------------------------------------- /packages/library/src/server/use/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/src/server/use/utils.ts -------------------------------------------------------------------------------- /packages/library/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/library/tsconfig.json -------------------------------------------------------------------------------- /packages/server/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/server/.eslintrc -------------------------------------------------------------------------------- /packages/server/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /packages/server/.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /packages/server/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/server/CHANGELOG.md -------------------------------------------------------------------------------- /packages/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/server/package.json -------------------------------------------------------------------------------- /packages/server/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/server/src/index.tsx -------------------------------------------------------------------------------- /packages/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/packages/server/tsconfig.json -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/project.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wildhoney/Switzerland/HEAD/yarn.lock --------------------------------------------------------------------------------