├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── node_src ├── create_pages.js ├── helpers.js └── sitemap.js ├── package.json ├── scripts └── patch-react-spring.js ├── src ├── @types │ └── styled.d.ts ├── core │ ├── blocks │ │ ├── awards │ │ │ ├── AwardBlock.js │ │ │ └── AwardIcon.js │ │ ├── block │ │ │ ├── Block.js │ │ │ ├── BlockCompletionIndicator.js │ │ │ ├── BlockData.js │ │ │ ├── BlockExport.js │ │ │ ├── BlockLegends.js │ │ │ ├── BlockLegendsItem.js │ │ │ ├── BlockNote.js │ │ │ ├── BlockSwitcher.js │ │ │ ├── BlockTitle.js │ │ │ ├── BlockUnitsSelector.js │ │ │ └── BlockViewSelector.js │ │ ├── demographics │ │ │ ├── GenderBlock.js │ │ │ └── ParticipationByCountryBlock.js │ │ ├── features │ │ │ ├── FeatureExperienceBlock.js │ │ │ ├── FeatureResources.js │ │ │ ├── FeaturesOverviewBlock.js │ │ │ └── KnowledgeScoreBlock.js │ │ ├── generic │ │ │ ├── HeatmapBlock.js │ │ │ ├── HorizontalBarBlock.js │ │ │ └── VerticalBarBlock.js │ │ ├── happiness │ │ │ └── HappinessHistoryBlock │ │ │ │ ├── HappinessHistoryBlock.tsx │ │ │ │ ├── HappinessHistoryChart.tsx │ │ │ │ └── index.ts │ │ ├── opinions │ │ │ ├── OpinionBlock.tsx │ │ │ └── YearOpinionBlock.js │ │ ├── other │ │ │ ├── BioBlock.js │ │ │ ├── ConclusionBlock.js │ │ │ ├── HintBlock.js │ │ │ ├── NewsletterBlock.js │ │ │ ├── NotFoundBlock.js │ │ │ ├── PageIntroductionBlock.js │ │ │ ├── PicksBlock.js │ │ │ ├── RecommendedResourcesBlock.js │ │ │ ├── SponsorsBlock.js │ │ │ ├── SurveyIntroBlock.js │ │ │ ├── TextBlock.js │ │ │ ├── TranslatorsBlock.js │ │ │ └── TshirtBlock.js │ │ ├── tools │ │ │ ├── AllSectionsToolsCardinalityByUserBlock │ │ │ │ ├── AllSectionsToolsCardinalityByUserBlock.tsx │ │ │ │ ├── AllSectionsToolsCardinalityByUserChart.tsx │ │ │ │ ├── SectionItem.tsx │ │ │ │ └── index.ts │ │ │ ├── SectionToolsCardinalityByUserBlock │ │ │ │ ├── SectionToolsCardinalityByUserBlock.tsx │ │ │ │ └── index.ts │ │ │ ├── ToolExperienceBlock.tsx │ │ │ ├── ToolExperienceGraphBlock.js │ │ │ ├── ToolHeaderBlock.js │ │ │ ├── ToolPeriodicElement.js │ │ │ ├── ToolsArrowsBlock │ │ │ │ ├── ToolsArrowsBlock.tsx │ │ │ │ ├── ToolsArrowsChart--with-untested-canvas-code.js │ │ │ │ ├── ToolsArrowsChart.js │ │ │ │ ├── ToolsArrowsChart.scss │ │ │ │ ├── helpers.js │ │ │ │ ├── index.ts │ │ │ │ ├── toolsArrowsLabelOffsets.js │ │ │ │ └── types.ts │ │ │ ├── ToolsCityscapeBlock │ │ │ │ ├── ToolsCityscapeBlock.tsx │ │ │ │ ├── ToolsCityscapeChart.tsx │ │ │ │ └── index.ts │ │ │ ├── ToolsExperienceMarimekkoBlock │ │ │ │ ├── ToolsExperienceMarimekkoBlock.tsx │ │ │ │ ├── ToolsExperienceMarimekkoChart.tsx │ │ │ │ ├── ToolsExperienceMarimekkoLegend.tsx │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── ToolsExperienceRankingBlock.tsx │ │ │ ├── ToolsMatricesBlock.tsx │ │ │ ├── ToolsScatterplotBlock.js │ │ │ ├── ToolsSectionOverviewBlock.js │ │ │ ├── ToolsSectionStreamsBlock.js │ │ │ └── ToolsUsageVariationsBlock │ │ │ │ ├── Switcher.tsx │ │ │ │ ├── ToolsUsageVariationsBlock.tsx │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ └── types.ts │ ├── bucket_keys.ts │ ├── charts │ │ ├── ChartContainer.js │ │ ├── demographics │ │ │ ├── ParticipationByCountryChart.js │ │ │ └── ParticipationByCountryTooltip.js │ │ ├── features │ │ │ ├── FeaturesCirclePackingChart.js │ │ │ ├── FeaturesCirclePackingChartTooltip.js │ │ │ └── FeaturesOverviewCirclePackingChart.js │ │ ├── generic │ │ │ ├── BarTooltip.js │ │ │ ├── ExperienceByYearBarChart.tsx │ │ │ ├── GaugeBarChart.js │ │ │ ├── HeatmapChart.js │ │ │ ├── HeatmapChartRow.js │ │ │ ├── HorizontalBarChart.js │ │ │ ├── HorizontalBarStripes.js │ │ │ ├── RankingChart.tsx │ │ │ ├── StreamChart.js │ │ │ ├── UsageVariationsChart │ │ │ │ ├── UsageVariationsChart.tsx │ │ │ │ ├── index.ts │ │ │ │ └── multiple-diverging-lines │ │ │ │ │ ├── Dots.tsx │ │ │ │ │ ├── Labels.tsx │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ ├── Lines.tsx │ │ │ │ │ ├── MultipleDivergingLines.tsx │ │ │ │ │ ├── NegativePattern.tsx │ │ │ │ │ ├── ResponsiveMultipleDivergingLines.tsx │ │ │ │ │ ├── SubAxes.tsx │ │ │ │ │ ├── hooks.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── props.ts │ │ │ │ │ └── types.ts │ │ │ └── VerticalBarChart.js │ │ ├── hooks.ts │ │ ├── table │ │ │ └── Table.js │ │ └── tools │ │ │ ├── ToolExperienceGraphChart │ │ │ ├── LinkTooltip.js │ │ │ ├── NodeTooltip.js │ │ │ ├── ToolExperienceGraphChart.js │ │ │ ├── YearsLayer.js │ │ │ └── index.js │ │ │ ├── ToolLabel.js │ │ │ ├── ToolsScatterplotChart.js │ │ │ └── ToolsSectionOverviewChart.js │ ├── components │ │ ├── Button.js │ │ ├── ButtonGroup.js │ │ ├── ChartLabel.js │ │ ├── Debug.js │ │ ├── Hamburger.js │ │ ├── Head.js │ │ ├── LocaleLink.js │ │ ├── ModalTrigger.js │ │ ├── Newsletter.js │ │ ├── Popover.js │ │ └── sidebar │ │ │ ├── Nav.js │ │ │ ├── Sidebar.js │ │ │ └── index.js │ ├── entities │ │ └── entitiesContext.js │ ├── helpers │ │ ├── blockHelpers.js │ │ ├── blockRegistry.js │ │ ├── bold.js │ │ ├── keydownContext.js │ │ ├── pageContext.js │ │ ├── pageHelpers.js │ │ ├── paragraphs.js │ │ ├── replaceAll.js │ │ ├── slugify.js │ │ ├── stripMarkdown.js │ │ ├── tools.js │ │ ├── toolsContext.js │ │ └── useBucketKeys.js │ ├── i18n │ │ ├── LanguageSwitcher.js │ │ ├── Locales.js │ │ ├── T.js │ │ ├── Trans.js │ │ ├── i18nContext.js │ │ ├── translation-key-getters.js │ │ ├── translator.js │ │ └── wording.js │ ├── layout │ │ ├── LayoutWrapper.js │ │ └── MainLayout.js │ ├── pages │ │ ├── IntroductionFooter.js │ │ ├── PageFooter.js │ │ ├── PageHeader.js │ │ ├── PageLabel.js │ │ ├── PageLink.js │ │ ├── PageMeta.js │ │ ├── PageMetaDebug.js │ │ ├── PageTemplate.js │ │ ├── Pagination.js │ │ └── PaginationLink.js │ ├── report │ │ ├── ReportBlock.js │ │ ├── ReportBlockImport.js │ │ ├── ReportBlockTitle.js │ │ ├── ReportHeading.js │ │ ├── ReportLayout.js │ │ ├── ReportOverlay.js │ │ └── ReportSectionLink.js │ ├── share │ │ ├── ShareBlock.js │ │ ├── ShareBlockDebug.js │ │ ├── ShareBlockTemplate.js │ │ ├── ShareEmail.js │ │ ├── ShareFacebook.js │ │ ├── ShareImage.js │ │ ├── ShareLink.js │ │ ├── ShareLinkedIn.js │ │ ├── SharePermalink.js │ │ ├── ShareSite.js │ │ ├── ShareTwitter.js │ │ └── tracking.js │ ├── survey_api │ │ ├── happiness.ts │ │ ├── matrices.ts │ │ ├── opinions.ts │ │ └── tools.ts │ ├── theme │ │ ├── GlobalStyle.js │ │ ├── charts.ts │ │ ├── colors.ts │ │ ├── index.js │ │ ├── mixins.js │ │ ├── mq.js │ │ ├── typography.ts │ │ └── util.js │ └── types.ts ├── data │ └── geo │ │ └── world_countries.json └── stylesheets │ ├── _charts.scss │ ├── _features.scss │ ├── _global.scss │ ├── _logo.scss │ ├── _normalize.scss │ ├── screen.scss │ └── to-remove │ ├── _breakpoints.scss │ ├── _colors.scss │ ├── _typography.scss │ └── _variables.scss ├── surveys ├── css2020 │ ├── config │ │ ├── authors.yml │ │ ├── block_templates.yml │ │ ├── capture.yml │ │ ├── config.yml │ │ ├── page_templates.yml │ │ ├── periodic_table.yml │ │ ├── picks.yml │ │ ├── raw_sitemap.yml │ │ ├── recommended_resources.yml │ │ ├── report.mdx │ │ ├── report │ │ │ ├── en-US │ │ │ │ └── report.mdx │ │ │ └── fr-FR │ │ │ │ └── report.mdx │ │ ├── sponsors.yml │ │ └── variables.yml │ ├── images │ │ ├── favicon.png │ │ ├── guests │ │ │ └── amelia.png │ │ ├── picks │ │ │ ├── 5t3ph.jpg │ │ │ ├── argyleink.jpg │ │ │ ├── christianoliff.jpg │ │ │ ├── foolip.jpg │ │ │ ├── hugogiraudel.jpg │ │ │ ├── jina.jpg │ │ │ ├── kilianvalkhof.jpg │ │ │ ├── piccalilli_.jpg │ │ │ ├── sachagreif.jpg │ │ │ ├── sarasoueidan.jpg │ │ │ ├── shadeed9.jpg │ │ │ └── walterstephanie.jpg │ │ ├── resources │ │ │ ├── chroma │ │ │ │ ├── sojs2019-ad.jpg │ │ │ │ └── sojs2019-lsb.jpg │ │ │ ├── designcode1.jpg │ │ │ ├── designcode2.jpg │ │ │ ├── frontendmasters │ │ │ │ ├── code.jpg │ │ │ │ ├── css.jpg │ │ │ │ ├── design-for-developers.jpg │ │ │ │ ├── grid.jpg │ │ │ │ ├── react.jpg │ │ │ │ ├── sass.jpg │ │ │ │ ├── svg.jpg │ │ │ │ └── typography.jpg │ │ │ ├── learnstorybook.png │ │ │ ├── newline │ │ │ │ ├── angular-ng-book.png │ │ │ │ ├── d3-fullstack.png │ │ │ │ ├── express-fullstack-nodejs.png │ │ │ │ ├── original │ │ │ │ │ ├── angular-ng-book.png │ │ │ │ │ ├── d3-fullstack.png │ │ │ │ │ ├── express-fullstack-nodejs.png │ │ │ │ │ ├── react-native-fullstack-react-native.png │ │ │ │ │ ├── react-tinyhouse.png │ │ │ │ │ └── vue-fullstack-vue.png │ │ │ │ ├── react-native-fullstack-react-native.png │ │ │ │ ├── react-tinyhouse.png │ │ │ │ └── vue-fullstack-vue.png │ │ │ ├── sojs2018-cdd.jpg │ │ │ ├── sojs2018-lsb.jpg │ │ │ ├── sojs2018-visual-testing-handbook.jpg │ │ │ ├── vscode │ │ │ │ └── vscodepro.png │ │ │ └── wesbos │ │ │ │ ├── advancedreact.jpg │ │ │ │ ├── es6.jpg │ │ │ │ ├── javascript30.jpg │ │ │ │ ├── learnnode.jpg │ │ │ │ └── reactforbeginners.jpg │ │ ├── sponsors │ │ │ ├── chroma logo space.svg │ │ │ ├── chroma_logo.svg │ │ │ ├── frontend-masters-dark.png │ │ │ ├── newline-logo-dark.png │ │ │ ├── zenshome-inverted.svg │ │ │ └── zenshome-whitebg.svg │ │ ├── stateofcss2020_socialmedia.png │ │ ├── stateofcss_small_2020.svg │ │ ├── stateofjs-logo.png │ │ ├── stateofjs-logo.svg │ │ ├── stateofjs-socialmedia.png │ │ └── tshirt │ │ │ ├── tshirt4.png │ │ │ ├── tshirt5.jpg │ │ │ └── tshirt6.jpg │ ├── logo │ │ ├── IntroLogo.tsx │ │ ├── Logo.tsx │ │ └── SidebarLogo.tsx │ └── theme │ │ ├── charts.ts │ │ ├── colors.ts │ │ ├── dimensions.ts │ │ ├── index.ts │ │ ├── typography.ts │ │ └── zIndexes.ts ├── css2021 │ ├── config │ │ ├── authors.yml │ │ ├── block_templates.yml │ │ ├── capture.yml │ │ ├── config.yml │ │ ├── page_templates.yml │ │ ├── periodic_table.yml │ │ ├── picks.yml │ │ ├── raw_sitemap.yml │ │ ├── recommended_resources.yml │ │ ├── report.mdx │ │ ├── report │ │ │ ├── en-US │ │ │ │ └── report.mdx │ │ │ └── fr-FR │ │ │ │ └── report.mdx │ │ ├── sponsors.yml │ │ └── variables.yml │ ├── images │ │ ├── favicon.png │ │ ├── guests │ │ │ └── amelia.png │ │ ├── picks │ │ │ ├── 5t3ph.jpg │ │ │ ├── argyleink.jpg │ │ │ ├── christianoliff.jpg │ │ │ ├── foolip.jpg │ │ │ ├── hugogiraudel.jpg │ │ │ ├── jina.jpg │ │ │ ├── kilianvalkhof.jpg │ │ │ ├── piccalilli_.jpg │ │ │ ├── sachagreif.jpg │ │ │ ├── sarasoueidan.jpg │ │ │ ├── shadeed9.jpg │ │ │ └── walterstephanie.jpg │ │ ├── resources │ │ │ ├── chroma │ │ │ │ ├── sojs2019-ad.jpg │ │ │ │ └── sojs2019-lsb.jpg │ │ │ ├── designcode1.jpg │ │ │ ├── designcode2.jpg │ │ │ ├── frontendmasters │ │ │ │ ├── code.jpg │ │ │ │ ├── css.jpg │ │ │ │ ├── design-for-developers.jpg │ │ │ │ ├── grid.jpg │ │ │ │ ├── react.jpg │ │ │ │ ├── sass.jpg │ │ │ │ ├── svg.jpg │ │ │ │ └── typography.jpg │ │ │ ├── learnstorybook.png │ │ │ ├── newline │ │ │ │ ├── angular-ng-book.png │ │ │ │ ├── d3-fullstack.png │ │ │ │ ├── express-fullstack-nodejs.png │ │ │ │ ├── original │ │ │ │ │ ├── angular-ng-book.png │ │ │ │ │ ├── d3-fullstack.png │ │ │ │ │ ├── express-fullstack-nodejs.png │ │ │ │ │ ├── react-native-fullstack-react-native.png │ │ │ │ │ ├── react-tinyhouse.png │ │ │ │ │ └── vue-fullstack-vue.png │ │ │ │ ├── react-native-fullstack-react-native.png │ │ │ │ ├── react-tinyhouse.png │ │ │ │ └── vue-fullstack-vue.png │ │ │ ├── sojs2018-cdd.jpg │ │ │ ├── sojs2018-lsb.jpg │ │ │ ├── sojs2018-visual-testing-handbook.jpg │ │ │ ├── vscode │ │ │ │ └── vscodepro.png │ │ │ └── wesbos │ │ │ │ ├── advancedreact.jpg │ │ │ │ ├── es6.jpg │ │ │ │ ├── javascript30.jpg │ │ │ │ ├── learnnode.jpg │ │ │ │ └── reactforbeginners.jpg │ │ ├── sponsors │ │ │ ├── chroma logo space.svg │ │ │ ├── chroma_logo.svg │ │ │ ├── frontend-masters-dark.png │ │ │ ├── newline-logo-dark.png │ │ │ ├── zenshome-inverted.svg │ │ │ └── zenshome-whitebg.svg │ │ ├── stateofcss2020_socialmedia.png │ │ ├── stateofcss_small_2020.svg │ │ ├── stateofjs-logo.png │ │ ├── stateofjs-logo.svg │ │ ├── stateofjs-socialmedia.png │ │ └── tshirt │ │ │ ├── tshirt4.png │ │ │ ├── tshirt5.jpg │ │ │ └── tshirt6.jpg │ ├── logo │ │ ├── IntroLogo.tsx │ │ ├── Logo.tsx │ │ └── SidebarLogo.tsx │ └── theme │ │ ├── charts.ts │ │ ├── colors.ts │ │ ├── dimensions.ts │ │ ├── index.ts │ │ ├── typography.ts │ │ └── zIndexes.ts └── js2020 │ ├── config │ ├── block_templates.yml │ ├── capture.yml │ ├── config.yml │ ├── page_templates.yml │ ├── periodic_table.yml │ ├── picks.yml │ ├── raw_sitemap.yml │ ├── recommended_resources.yml │ ├── report.mdx │ ├── sponsors.yml │ └── variables.yml │ ├── images │ ├── favicon.png │ ├── picks │ │ ├── cassidoo.jpg │ │ ├── joshwcomeau.jpg │ │ ├── kentcdodds.jpg │ │ ├── ladyleet.jpg │ │ ├── markdalgleish.jpg │ │ ├── midudev.jpeg │ │ ├── midudev.jpg │ │ ├── sachagreif.jpg │ │ ├── sarah_edo.jpg │ │ ├── swyx.jpg │ │ └── tomdale.jpg │ ├── resources │ │ ├── Sencha-WebTestIt-Logo-svg.png │ │ ├── froala.png │ │ ├── m-black-highres.png │ │ ├── wb-es6.jpg │ │ ├── wb-gatsby.png │ │ ├── wb-graphql.png │ │ ├── wb-javascript.png │ │ ├── wb-node.jpg │ │ ├── wb-react.jpg │ │ ├── webtestit.png │ │ └── wesbos.jpg │ ├── sponsors │ │ ├── IderaInc-DevTools-Reversed_dark_v1.svg │ │ ├── IderaInc-DevTools_light_v1.svg │ │ └── frontend-masters-dark.png │ ├── stateofjs2020_socialmedia.png │ └── tshirt │ │ ├── stateofjs2019tshirt-illustration.png │ │ ├── stateofjs2019tshirt-illustration2.png │ │ ├── tshirt1.jpg │ │ ├── tshirt2.jpg │ │ └── tshirt3.png │ ├── logo │ ├── IntroLogo.tsx │ ├── LogoCell.tsx │ └── SidebarLogo.tsx │ └── theme │ ├── charts.ts │ ├── colors.ts │ ├── dimensions.ts │ ├── index.ts │ ├── typography.ts │ └── zIndexes.ts ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v14.17.5 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /node_src/create_pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/node_src/create_pages.js -------------------------------------------------------------------------------- /node_src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/node_src/helpers.js -------------------------------------------------------------------------------- /node_src/sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/node_src/sitemap.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/package.json -------------------------------------------------------------------------------- /scripts/patch-react-spring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/scripts/patch-react-spring.js -------------------------------------------------------------------------------- /src/@types/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/@types/styled.d.ts -------------------------------------------------------------------------------- /src/core/blocks/awards/AwardBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/awards/AwardBlock.js -------------------------------------------------------------------------------- /src/core/blocks/awards/AwardIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/awards/AwardIcon.js -------------------------------------------------------------------------------- /src/core/blocks/block/Block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/block/Block.js -------------------------------------------------------------------------------- /src/core/blocks/block/BlockCompletionIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/block/BlockCompletionIndicator.js -------------------------------------------------------------------------------- /src/core/blocks/block/BlockData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/block/BlockData.js -------------------------------------------------------------------------------- /src/core/blocks/block/BlockExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/block/BlockExport.js -------------------------------------------------------------------------------- /src/core/blocks/block/BlockLegends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/block/BlockLegends.js -------------------------------------------------------------------------------- /src/core/blocks/block/BlockLegendsItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/block/BlockLegendsItem.js -------------------------------------------------------------------------------- /src/core/blocks/block/BlockNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/block/BlockNote.js -------------------------------------------------------------------------------- /src/core/blocks/block/BlockSwitcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/block/BlockSwitcher.js -------------------------------------------------------------------------------- /src/core/blocks/block/BlockTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/block/BlockTitle.js -------------------------------------------------------------------------------- /src/core/blocks/block/BlockUnitsSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/block/BlockUnitsSelector.js -------------------------------------------------------------------------------- /src/core/blocks/block/BlockViewSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/block/BlockViewSelector.js -------------------------------------------------------------------------------- /src/core/blocks/demographics/GenderBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/demographics/GenderBlock.js -------------------------------------------------------------------------------- /src/core/blocks/demographics/ParticipationByCountryBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/demographics/ParticipationByCountryBlock.js -------------------------------------------------------------------------------- /src/core/blocks/features/FeatureExperienceBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/features/FeatureExperienceBlock.js -------------------------------------------------------------------------------- /src/core/blocks/features/FeatureResources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/features/FeatureResources.js -------------------------------------------------------------------------------- /src/core/blocks/features/FeaturesOverviewBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/features/FeaturesOverviewBlock.js -------------------------------------------------------------------------------- /src/core/blocks/features/KnowledgeScoreBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/features/KnowledgeScoreBlock.js -------------------------------------------------------------------------------- /src/core/blocks/generic/HeatmapBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/generic/HeatmapBlock.js -------------------------------------------------------------------------------- /src/core/blocks/generic/HorizontalBarBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/generic/HorizontalBarBlock.js -------------------------------------------------------------------------------- /src/core/blocks/generic/VerticalBarBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/generic/VerticalBarBlock.js -------------------------------------------------------------------------------- /src/core/blocks/happiness/HappinessHistoryBlock/HappinessHistoryBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/happiness/HappinessHistoryBlock/HappinessHistoryBlock.tsx -------------------------------------------------------------------------------- /src/core/blocks/happiness/HappinessHistoryBlock/HappinessHistoryChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/happiness/HappinessHistoryBlock/HappinessHistoryChart.tsx -------------------------------------------------------------------------------- /src/core/blocks/happiness/HappinessHistoryBlock/index.ts: -------------------------------------------------------------------------------- 1 | export * from './HappinessHistoryBlock' 2 | -------------------------------------------------------------------------------- /src/core/blocks/opinions/OpinionBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/opinions/OpinionBlock.tsx -------------------------------------------------------------------------------- /src/core/blocks/opinions/YearOpinionBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/opinions/YearOpinionBlock.js -------------------------------------------------------------------------------- /src/core/blocks/other/BioBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/other/BioBlock.js -------------------------------------------------------------------------------- /src/core/blocks/other/ConclusionBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/other/ConclusionBlock.js -------------------------------------------------------------------------------- /src/core/blocks/other/HintBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/other/HintBlock.js -------------------------------------------------------------------------------- /src/core/blocks/other/NewsletterBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/other/NewsletterBlock.js -------------------------------------------------------------------------------- /src/core/blocks/other/NotFoundBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/other/NotFoundBlock.js -------------------------------------------------------------------------------- /src/core/blocks/other/PageIntroductionBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/other/PageIntroductionBlock.js -------------------------------------------------------------------------------- /src/core/blocks/other/PicksBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/other/PicksBlock.js -------------------------------------------------------------------------------- /src/core/blocks/other/RecommendedResourcesBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/other/RecommendedResourcesBlock.js -------------------------------------------------------------------------------- /src/core/blocks/other/SponsorsBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/other/SponsorsBlock.js -------------------------------------------------------------------------------- /src/core/blocks/other/SurveyIntroBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/other/SurveyIntroBlock.js -------------------------------------------------------------------------------- /src/core/blocks/other/TextBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/other/TextBlock.js -------------------------------------------------------------------------------- /src/core/blocks/other/TranslatorsBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/other/TranslatorsBlock.js -------------------------------------------------------------------------------- /src/core/blocks/other/TshirtBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/other/TshirtBlock.js -------------------------------------------------------------------------------- /src/core/blocks/tools/AllSectionsToolsCardinalityByUserBlock/AllSectionsToolsCardinalityByUserBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/AllSectionsToolsCardinalityByUserBlock/AllSectionsToolsCardinalityByUserBlock.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/AllSectionsToolsCardinalityByUserBlock/AllSectionsToolsCardinalityByUserChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/AllSectionsToolsCardinalityByUserBlock/AllSectionsToolsCardinalityByUserChart.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/AllSectionsToolsCardinalityByUserBlock/SectionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/AllSectionsToolsCardinalityByUserBlock/SectionItem.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/AllSectionsToolsCardinalityByUserBlock/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AllSectionsToolsCardinalityByUserBlock' 2 | -------------------------------------------------------------------------------- /src/core/blocks/tools/SectionToolsCardinalityByUserBlock/SectionToolsCardinalityByUserBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/SectionToolsCardinalityByUserBlock/SectionToolsCardinalityByUserBlock.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/SectionToolsCardinalityByUserBlock/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SectionToolsCardinalityByUserBlock' -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolExperienceBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolExperienceBlock.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolExperienceGraphBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolExperienceGraphBlock.js -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolHeaderBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolHeaderBlock.js -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolPeriodicElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolPeriodicElement.js -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsArrowsBlock/ToolsArrowsBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsArrowsBlock/ToolsArrowsBlock.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsArrowsBlock/ToolsArrowsChart--with-untested-canvas-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsArrowsBlock/ToolsArrowsChart--with-untested-canvas-code.js -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsArrowsBlock/ToolsArrowsChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsArrowsBlock/ToolsArrowsChart.js -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsArrowsBlock/ToolsArrowsChart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsArrowsBlock/ToolsArrowsChart.scss -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsArrowsBlock/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsArrowsBlock/helpers.js -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsArrowsBlock/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ToolsArrowsBlock' 2 | -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsArrowsBlock/toolsArrowsLabelOffsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsArrowsBlock/toolsArrowsLabelOffsets.js -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsArrowsBlock/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsArrowsBlock/types.ts -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsCityscapeBlock/ToolsCityscapeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsCityscapeBlock/ToolsCityscapeBlock.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsCityscapeBlock/ToolsCityscapeChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsCityscapeBlock/ToolsCityscapeChart.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsCityscapeBlock/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ToolsCityscapeBlock' 2 | -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsExperienceMarimekkoBlock/ToolsExperienceMarimekkoBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsExperienceMarimekkoBlock/ToolsExperienceMarimekkoBlock.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsExperienceMarimekkoBlock/ToolsExperienceMarimekkoChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsExperienceMarimekkoBlock/ToolsExperienceMarimekkoChart.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsExperienceMarimekkoBlock/ToolsExperienceMarimekkoLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsExperienceMarimekkoBlock/ToolsExperienceMarimekkoLegend.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsExperienceMarimekkoBlock/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ToolsExperienceMarimekkoBlock' 2 | -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsExperienceMarimekkoBlock/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsExperienceMarimekkoBlock/types.ts -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsExperienceRankingBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsExperienceRankingBlock.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsMatricesBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsMatricesBlock.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsScatterplotBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsScatterplotBlock.js -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsSectionOverviewBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsSectionOverviewBlock.js -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsSectionStreamsBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsSectionStreamsBlock.js -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsUsageVariationsBlock/Switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsUsageVariationsBlock/Switcher.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsUsageVariationsBlock/ToolsUsageVariationsBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsUsageVariationsBlock/ToolsUsageVariationsBlock.tsx -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsUsageVariationsBlock/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ToolsUsageVariationsBlock' 2 | -------------------------------------------------------------------------------- /src/core/blocks/tools/ToolsUsageVariationsBlock/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/tools/ToolsUsageVariationsBlock/types.ts -------------------------------------------------------------------------------- /src/core/blocks/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/blocks/types.ts -------------------------------------------------------------------------------- /src/core/bucket_keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/bucket_keys.ts -------------------------------------------------------------------------------- /src/core/charts/ChartContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/ChartContainer.js -------------------------------------------------------------------------------- /src/core/charts/demographics/ParticipationByCountryChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/demographics/ParticipationByCountryChart.js -------------------------------------------------------------------------------- /src/core/charts/demographics/ParticipationByCountryTooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/demographics/ParticipationByCountryTooltip.js -------------------------------------------------------------------------------- /src/core/charts/features/FeaturesCirclePackingChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/features/FeaturesCirclePackingChart.js -------------------------------------------------------------------------------- /src/core/charts/features/FeaturesCirclePackingChartTooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/features/FeaturesCirclePackingChartTooltip.js -------------------------------------------------------------------------------- /src/core/charts/features/FeaturesOverviewCirclePackingChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/features/FeaturesOverviewCirclePackingChart.js -------------------------------------------------------------------------------- /src/core/charts/generic/BarTooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/BarTooltip.js -------------------------------------------------------------------------------- /src/core/charts/generic/ExperienceByYearBarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/ExperienceByYearBarChart.tsx -------------------------------------------------------------------------------- /src/core/charts/generic/GaugeBarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/GaugeBarChart.js -------------------------------------------------------------------------------- /src/core/charts/generic/HeatmapChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/HeatmapChart.js -------------------------------------------------------------------------------- /src/core/charts/generic/HeatmapChartRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/HeatmapChartRow.js -------------------------------------------------------------------------------- /src/core/charts/generic/HorizontalBarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/HorizontalBarChart.js -------------------------------------------------------------------------------- /src/core/charts/generic/HorizontalBarStripes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/HorizontalBarStripes.js -------------------------------------------------------------------------------- /src/core/charts/generic/RankingChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/RankingChart.tsx -------------------------------------------------------------------------------- /src/core/charts/generic/StreamChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/StreamChart.js -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/UsageVariationsChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/UsageVariationsChart/UsageVariationsChart.tsx -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UsageVariationsChart' 2 | -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/Dots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/Dots.tsx -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/Labels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/Labels.tsx -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/Legend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/Legend.tsx -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/Lines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/Lines.tsx -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/MultipleDivergingLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/MultipleDivergingLines.tsx -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/NegativePattern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/NegativePattern.tsx -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/ResponsiveMultipleDivergingLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/ResponsiveMultipleDivergingLines.tsx -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/SubAxes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/SubAxes.tsx -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/hooks.ts -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/index.ts -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/props.ts -------------------------------------------------------------------------------- /src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/UsageVariationsChart/multiple-diverging-lines/types.ts -------------------------------------------------------------------------------- /src/core/charts/generic/VerticalBarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/generic/VerticalBarChart.js -------------------------------------------------------------------------------- /src/core/charts/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/hooks.ts -------------------------------------------------------------------------------- /src/core/charts/table/Table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/table/Table.js -------------------------------------------------------------------------------- /src/core/charts/tools/ToolExperienceGraphChart/LinkTooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/tools/ToolExperienceGraphChart/LinkTooltip.js -------------------------------------------------------------------------------- /src/core/charts/tools/ToolExperienceGraphChart/NodeTooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/tools/ToolExperienceGraphChart/NodeTooltip.js -------------------------------------------------------------------------------- /src/core/charts/tools/ToolExperienceGraphChart/ToolExperienceGraphChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/tools/ToolExperienceGraphChart/ToolExperienceGraphChart.js -------------------------------------------------------------------------------- /src/core/charts/tools/ToolExperienceGraphChart/YearsLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/tools/ToolExperienceGraphChart/YearsLayer.js -------------------------------------------------------------------------------- /src/core/charts/tools/ToolExperienceGraphChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/tools/ToolExperienceGraphChart/index.js -------------------------------------------------------------------------------- /src/core/charts/tools/ToolLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/tools/ToolLabel.js -------------------------------------------------------------------------------- /src/core/charts/tools/ToolsScatterplotChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/tools/ToolsScatterplotChart.js -------------------------------------------------------------------------------- /src/core/charts/tools/ToolsSectionOverviewChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/charts/tools/ToolsSectionOverviewChart.js -------------------------------------------------------------------------------- /src/core/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/components/Button.js -------------------------------------------------------------------------------- /src/core/components/ButtonGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/components/ButtonGroup.js -------------------------------------------------------------------------------- /src/core/components/ChartLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/components/ChartLabel.js -------------------------------------------------------------------------------- /src/core/components/Debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/components/Debug.js -------------------------------------------------------------------------------- /src/core/components/Hamburger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/components/Hamburger.js -------------------------------------------------------------------------------- /src/core/components/Head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/components/Head.js -------------------------------------------------------------------------------- /src/core/components/LocaleLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/components/LocaleLink.js -------------------------------------------------------------------------------- /src/core/components/ModalTrigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/components/ModalTrigger.js -------------------------------------------------------------------------------- /src/core/components/Newsletter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/components/Newsletter.js -------------------------------------------------------------------------------- /src/core/components/Popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/components/Popover.js -------------------------------------------------------------------------------- /src/core/components/sidebar/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/components/sidebar/Nav.js -------------------------------------------------------------------------------- /src/core/components/sidebar/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/components/sidebar/Sidebar.js -------------------------------------------------------------------------------- /src/core/components/sidebar/index.js: -------------------------------------------------------------------------------- 1 | export * from './Sidebar' 2 | -------------------------------------------------------------------------------- /src/core/entities/entitiesContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/entities/entitiesContext.js -------------------------------------------------------------------------------- /src/core/helpers/blockHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/helpers/blockHelpers.js -------------------------------------------------------------------------------- /src/core/helpers/blockRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/helpers/blockRegistry.js -------------------------------------------------------------------------------- /src/core/helpers/bold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/helpers/bold.js -------------------------------------------------------------------------------- /src/core/helpers/keydownContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/helpers/keydownContext.js -------------------------------------------------------------------------------- /src/core/helpers/pageContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/helpers/pageContext.js -------------------------------------------------------------------------------- /src/core/helpers/pageHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/helpers/pageHelpers.js -------------------------------------------------------------------------------- /src/core/helpers/paragraphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/helpers/paragraphs.js -------------------------------------------------------------------------------- /src/core/helpers/replaceAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/helpers/replaceAll.js -------------------------------------------------------------------------------- /src/core/helpers/slugify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/helpers/slugify.js -------------------------------------------------------------------------------- /src/core/helpers/stripMarkdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/helpers/stripMarkdown.js -------------------------------------------------------------------------------- /src/core/helpers/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/helpers/tools.js -------------------------------------------------------------------------------- /src/core/helpers/toolsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/helpers/toolsContext.js -------------------------------------------------------------------------------- /src/core/helpers/useBucketKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/helpers/useBucketKeys.js -------------------------------------------------------------------------------- /src/core/i18n/LanguageSwitcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/i18n/LanguageSwitcher.js -------------------------------------------------------------------------------- /src/core/i18n/Locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/i18n/Locales.js -------------------------------------------------------------------------------- /src/core/i18n/T.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/i18n/T.js -------------------------------------------------------------------------------- /src/core/i18n/Trans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/i18n/Trans.js -------------------------------------------------------------------------------- /src/core/i18n/i18nContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/i18n/i18nContext.js -------------------------------------------------------------------------------- /src/core/i18n/translation-key-getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/i18n/translation-key-getters.js -------------------------------------------------------------------------------- /src/core/i18n/translator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/i18n/translator.js -------------------------------------------------------------------------------- /src/core/i18n/wording.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/i18n/wording.js -------------------------------------------------------------------------------- /src/core/layout/LayoutWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/layout/LayoutWrapper.js -------------------------------------------------------------------------------- /src/core/layout/MainLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/layout/MainLayout.js -------------------------------------------------------------------------------- /src/core/pages/IntroductionFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/pages/IntroductionFooter.js -------------------------------------------------------------------------------- /src/core/pages/PageFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/pages/PageFooter.js -------------------------------------------------------------------------------- /src/core/pages/PageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/pages/PageHeader.js -------------------------------------------------------------------------------- /src/core/pages/PageLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/pages/PageLabel.js -------------------------------------------------------------------------------- /src/core/pages/PageLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/pages/PageLink.js -------------------------------------------------------------------------------- /src/core/pages/PageMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/pages/PageMeta.js -------------------------------------------------------------------------------- /src/core/pages/PageMetaDebug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/pages/PageMetaDebug.js -------------------------------------------------------------------------------- /src/core/pages/PageTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/pages/PageTemplate.js -------------------------------------------------------------------------------- /src/core/pages/Pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/pages/Pagination.js -------------------------------------------------------------------------------- /src/core/pages/PaginationLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/pages/PaginationLink.js -------------------------------------------------------------------------------- /src/core/report/ReportBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/report/ReportBlock.js -------------------------------------------------------------------------------- /src/core/report/ReportBlockImport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/report/ReportBlockImport.js -------------------------------------------------------------------------------- /src/core/report/ReportBlockTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/report/ReportBlockTitle.js -------------------------------------------------------------------------------- /src/core/report/ReportHeading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/report/ReportHeading.js -------------------------------------------------------------------------------- /src/core/report/ReportLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/report/ReportLayout.js -------------------------------------------------------------------------------- /src/core/report/ReportOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/report/ReportOverlay.js -------------------------------------------------------------------------------- /src/core/report/ReportSectionLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/report/ReportSectionLink.js -------------------------------------------------------------------------------- /src/core/share/ShareBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/share/ShareBlock.js -------------------------------------------------------------------------------- /src/core/share/ShareBlockDebug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/share/ShareBlockDebug.js -------------------------------------------------------------------------------- /src/core/share/ShareBlockTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/share/ShareBlockTemplate.js -------------------------------------------------------------------------------- /src/core/share/ShareEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/share/ShareEmail.js -------------------------------------------------------------------------------- /src/core/share/ShareFacebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/share/ShareFacebook.js -------------------------------------------------------------------------------- /src/core/share/ShareImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/share/ShareImage.js -------------------------------------------------------------------------------- /src/core/share/ShareLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/share/ShareLink.js -------------------------------------------------------------------------------- /src/core/share/ShareLinkedIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/share/ShareLinkedIn.js -------------------------------------------------------------------------------- /src/core/share/SharePermalink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/share/SharePermalink.js -------------------------------------------------------------------------------- /src/core/share/ShareSite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/share/ShareSite.js -------------------------------------------------------------------------------- /src/core/share/ShareTwitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/share/ShareTwitter.js -------------------------------------------------------------------------------- /src/core/share/tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/share/tracking.js -------------------------------------------------------------------------------- /src/core/survey_api/happiness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/survey_api/happiness.ts -------------------------------------------------------------------------------- /src/core/survey_api/matrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/survey_api/matrices.ts -------------------------------------------------------------------------------- /src/core/survey_api/opinions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/survey_api/opinions.ts -------------------------------------------------------------------------------- /src/core/survey_api/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/survey_api/tools.ts -------------------------------------------------------------------------------- /src/core/theme/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/theme/GlobalStyle.js -------------------------------------------------------------------------------- /src/core/theme/charts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/theme/charts.ts -------------------------------------------------------------------------------- /src/core/theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/theme/colors.ts -------------------------------------------------------------------------------- /src/core/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/theme/index.js -------------------------------------------------------------------------------- /src/core/theme/mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/theme/mixins.js -------------------------------------------------------------------------------- /src/core/theme/mq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/theme/mq.js -------------------------------------------------------------------------------- /src/core/theme/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/theme/typography.ts -------------------------------------------------------------------------------- /src/core/theme/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/theme/util.js -------------------------------------------------------------------------------- /src/core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/core/types.ts -------------------------------------------------------------------------------- /src/data/geo/world_countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/data/geo/world_countries.json -------------------------------------------------------------------------------- /src/stylesheets/_charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/stylesheets/_charts.scss -------------------------------------------------------------------------------- /src/stylesheets/_features.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/stylesheets/_features.scss -------------------------------------------------------------------------------- /src/stylesheets/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/stylesheets/_global.scss -------------------------------------------------------------------------------- /src/stylesheets/_logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/stylesheets/_logo.scss -------------------------------------------------------------------------------- /src/stylesheets/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/stylesheets/_normalize.scss -------------------------------------------------------------------------------- /src/stylesheets/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/stylesheets/screen.scss -------------------------------------------------------------------------------- /src/stylesheets/to-remove/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/stylesheets/to-remove/_breakpoints.scss -------------------------------------------------------------------------------- /src/stylesheets/to-remove/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/stylesheets/to-remove/_colors.scss -------------------------------------------------------------------------------- /src/stylesheets/to-remove/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/stylesheets/to-remove/_typography.scss -------------------------------------------------------------------------------- /src/stylesheets/to-remove/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/src/stylesheets/to-remove/_variables.scss -------------------------------------------------------------------------------- /surveys/css2020/config/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/config/authors.yml -------------------------------------------------------------------------------- /surveys/css2020/config/block_templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/config/block_templates.yml -------------------------------------------------------------------------------- /surveys/css2020/config/capture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/config/capture.yml -------------------------------------------------------------------------------- /surveys/css2020/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/config/config.yml -------------------------------------------------------------------------------- /surveys/css2020/config/page_templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/config/page_templates.yml -------------------------------------------------------------------------------- /surveys/css2020/config/periodic_table.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/config/periodic_table.yml -------------------------------------------------------------------------------- /surveys/css2020/config/picks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/config/picks.yml -------------------------------------------------------------------------------- /surveys/css2020/config/raw_sitemap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/config/raw_sitemap.yml -------------------------------------------------------------------------------- /surveys/css2020/config/recommended_resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/config/recommended_resources.yml -------------------------------------------------------------------------------- /surveys/css2020/config/report.mdx: -------------------------------------------------------------------------------- 1 | Delete me -------------------------------------------------------------------------------- /surveys/css2020/config/report/en-US/report.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/config/report/en-US/report.mdx -------------------------------------------------------------------------------- /surveys/css2020/config/report/fr-FR/report.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/config/report/fr-FR/report.mdx -------------------------------------------------------------------------------- /surveys/css2020/config/sponsors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/config/sponsors.yml -------------------------------------------------------------------------------- /surveys/css2020/config/variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/config/variables.yml -------------------------------------------------------------------------------- /surveys/css2020/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/favicon.png -------------------------------------------------------------------------------- /surveys/css2020/images/guests/amelia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/guests/amelia.png -------------------------------------------------------------------------------- /surveys/css2020/images/picks/5t3ph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/picks/5t3ph.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/picks/argyleink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/picks/argyleink.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/picks/christianoliff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/picks/christianoliff.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/picks/foolip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/picks/foolip.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/picks/hugogiraudel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/picks/hugogiraudel.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/picks/jina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/picks/jina.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/picks/kilianvalkhof.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/picks/kilianvalkhof.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/picks/piccalilli_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/picks/piccalilli_.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/picks/sachagreif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/picks/sachagreif.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/picks/sarasoueidan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/picks/sarasoueidan.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/picks/shadeed9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/picks/shadeed9.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/picks/walterstephanie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/picks/walterstephanie.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/chroma/sojs2019-ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/chroma/sojs2019-ad.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/chroma/sojs2019-lsb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/chroma/sojs2019-lsb.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/designcode1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/designcode1.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/designcode2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/designcode2.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/frontendmasters/code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/frontendmasters/code.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/frontendmasters/css.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/frontendmasters/css.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/frontendmasters/design-for-developers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/frontendmasters/design-for-developers.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/frontendmasters/grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/frontendmasters/grid.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/frontendmasters/react.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/frontendmasters/react.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/frontendmasters/sass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/frontendmasters/sass.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/frontendmasters/svg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/frontendmasters/svg.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/frontendmasters/typography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/frontendmasters/typography.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/learnstorybook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/learnstorybook.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/newline/angular-ng-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/newline/angular-ng-book.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/newline/d3-fullstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/newline/d3-fullstack.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/newline/express-fullstack-nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/newline/express-fullstack-nodejs.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/newline/original/angular-ng-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/newline/original/angular-ng-book.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/newline/original/d3-fullstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/newline/original/d3-fullstack.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/newline/original/express-fullstack-nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/newline/original/express-fullstack-nodejs.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/newline/original/react-native-fullstack-react-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/newline/original/react-native-fullstack-react-native.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/newline/original/react-tinyhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/newline/original/react-tinyhouse.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/newline/original/vue-fullstack-vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/newline/original/vue-fullstack-vue.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/newline/react-native-fullstack-react-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/newline/react-native-fullstack-react-native.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/newline/react-tinyhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/newline/react-tinyhouse.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/newline/vue-fullstack-vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/newline/vue-fullstack-vue.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/sojs2018-cdd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/sojs2018-cdd.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/sojs2018-lsb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/sojs2018-lsb.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/sojs2018-visual-testing-handbook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/sojs2018-visual-testing-handbook.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/vscode/vscodepro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/vscode/vscodepro.png -------------------------------------------------------------------------------- /surveys/css2020/images/resources/wesbos/advancedreact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/wesbos/advancedreact.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/wesbos/es6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/wesbos/es6.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/wesbos/javascript30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/wesbos/javascript30.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/wesbos/learnnode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/wesbos/learnnode.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/resources/wesbos/reactforbeginners.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/resources/wesbos/reactforbeginners.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/sponsors/chroma logo space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/sponsors/chroma logo space.svg -------------------------------------------------------------------------------- /surveys/css2020/images/sponsors/chroma_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/sponsors/chroma_logo.svg -------------------------------------------------------------------------------- /surveys/css2020/images/sponsors/frontend-masters-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/sponsors/frontend-masters-dark.png -------------------------------------------------------------------------------- /surveys/css2020/images/sponsors/newline-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/sponsors/newline-logo-dark.png -------------------------------------------------------------------------------- /surveys/css2020/images/sponsors/zenshome-inverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/sponsors/zenshome-inverted.svg -------------------------------------------------------------------------------- /surveys/css2020/images/sponsors/zenshome-whitebg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/sponsors/zenshome-whitebg.svg -------------------------------------------------------------------------------- /surveys/css2020/images/stateofcss2020_socialmedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/stateofcss2020_socialmedia.png -------------------------------------------------------------------------------- /surveys/css2020/images/stateofcss_small_2020.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/stateofcss_small_2020.svg -------------------------------------------------------------------------------- /surveys/css2020/images/stateofjs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/stateofjs-logo.png -------------------------------------------------------------------------------- /surveys/css2020/images/stateofjs-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/stateofjs-logo.svg -------------------------------------------------------------------------------- /surveys/css2020/images/stateofjs-socialmedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/stateofjs-socialmedia.png -------------------------------------------------------------------------------- /surveys/css2020/images/tshirt/tshirt4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/tshirt/tshirt4.png -------------------------------------------------------------------------------- /surveys/css2020/images/tshirt/tshirt5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/tshirt/tshirt5.jpg -------------------------------------------------------------------------------- /surveys/css2020/images/tshirt/tshirt6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/images/tshirt/tshirt6.jpg -------------------------------------------------------------------------------- /surveys/css2020/logo/IntroLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/logo/IntroLogo.tsx -------------------------------------------------------------------------------- /surveys/css2020/logo/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/logo/Logo.tsx -------------------------------------------------------------------------------- /surveys/css2020/logo/SidebarLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/logo/SidebarLogo.tsx -------------------------------------------------------------------------------- /surveys/css2020/theme/charts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/theme/charts.ts -------------------------------------------------------------------------------- /surveys/css2020/theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/theme/colors.ts -------------------------------------------------------------------------------- /surveys/css2020/theme/dimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/theme/dimensions.ts -------------------------------------------------------------------------------- /surveys/css2020/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/theme/index.ts -------------------------------------------------------------------------------- /surveys/css2020/theme/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/theme/typography.ts -------------------------------------------------------------------------------- /surveys/css2020/theme/zIndexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2020/theme/zIndexes.ts -------------------------------------------------------------------------------- /surveys/css2021/config/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/config/authors.yml -------------------------------------------------------------------------------- /surveys/css2021/config/block_templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/config/block_templates.yml -------------------------------------------------------------------------------- /surveys/css2021/config/capture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/config/capture.yml -------------------------------------------------------------------------------- /surveys/css2021/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/config/config.yml -------------------------------------------------------------------------------- /surveys/css2021/config/page_templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/config/page_templates.yml -------------------------------------------------------------------------------- /surveys/css2021/config/periodic_table.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/config/periodic_table.yml -------------------------------------------------------------------------------- /surveys/css2021/config/picks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/config/picks.yml -------------------------------------------------------------------------------- /surveys/css2021/config/raw_sitemap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/config/raw_sitemap.yml -------------------------------------------------------------------------------- /surveys/css2021/config/recommended_resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/config/recommended_resources.yml -------------------------------------------------------------------------------- /surveys/css2021/config/report.mdx: -------------------------------------------------------------------------------- 1 | Delete me -------------------------------------------------------------------------------- /surveys/css2021/config/report/en-US/report.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/config/report/en-US/report.mdx -------------------------------------------------------------------------------- /surveys/css2021/config/report/fr-FR/report.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/config/report/fr-FR/report.mdx -------------------------------------------------------------------------------- /surveys/css2021/config/sponsors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/config/sponsors.yml -------------------------------------------------------------------------------- /surveys/css2021/config/variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/config/variables.yml -------------------------------------------------------------------------------- /surveys/css2021/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/favicon.png -------------------------------------------------------------------------------- /surveys/css2021/images/guests/amelia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/guests/amelia.png -------------------------------------------------------------------------------- /surveys/css2021/images/picks/5t3ph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/picks/5t3ph.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/picks/argyleink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/picks/argyleink.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/picks/christianoliff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/picks/christianoliff.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/picks/foolip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/picks/foolip.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/picks/hugogiraudel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/picks/hugogiraudel.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/picks/jina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/picks/jina.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/picks/kilianvalkhof.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/picks/kilianvalkhof.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/picks/piccalilli_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/picks/piccalilli_.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/picks/sachagreif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/picks/sachagreif.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/picks/sarasoueidan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/picks/sarasoueidan.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/picks/shadeed9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/picks/shadeed9.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/picks/walterstephanie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/picks/walterstephanie.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/chroma/sojs2019-ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/chroma/sojs2019-ad.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/chroma/sojs2019-lsb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/chroma/sojs2019-lsb.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/designcode1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/designcode1.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/designcode2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/designcode2.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/frontendmasters/code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/frontendmasters/code.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/frontendmasters/css.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/frontendmasters/css.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/frontendmasters/design-for-developers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/frontendmasters/design-for-developers.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/frontendmasters/grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/frontendmasters/grid.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/frontendmasters/react.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/frontendmasters/react.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/frontendmasters/sass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/frontendmasters/sass.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/frontendmasters/svg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/frontendmasters/svg.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/frontendmasters/typography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/frontendmasters/typography.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/learnstorybook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/learnstorybook.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/newline/angular-ng-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/newline/angular-ng-book.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/newline/d3-fullstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/newline/d3-fullstack.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/newline/express-fullstack-nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/newline/express-fullstack-nodejs.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/newline/original/angular-ng-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/newline/original/angular-ng-book.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/newline/original/d3-fullstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/newline/original/d3-fullstack.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/newline/original/express-fullstack-nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/newline/original/express-fullstack-nodejs.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/newline/original/react-native-fullstack-react-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/newline/original/react-native-fullstack-react-native.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/newline/original/react-tinyhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/newline/original/react-tinyhouse.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/newline/original/vue-fullstack-vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/newline/original/vue-fullstack-vue.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/newline/react-native-fullstack-react-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/newline/react-native-fullstack-react-native.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/newline/react-tinyhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/newline/react-tinyhouse.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/newline/vue-fullstack-vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/newline/vue-fullstack-vue.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/sojs2018-cdd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/sojs2018-cdd.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/sojs2018-lsb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/sojs2018-lsb.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/sojs2018-visual-testing-handbook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/sojs2018-visual-testing-handbook.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/vscode/vscodepro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/vscode/vscodepro.png -------------------------------------------------------------------------------- /surveys/css2021/images/resources/wesbos/advancedreact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/wesbos/advancedreact.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/wesbos/es6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/wesbos/es6.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/wesbos/javascript30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/wesbos/javascript30.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/wesbos/learnnode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/wesbos/learnnode.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/resources/wesbos/reactforbeginners.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/resources/wesbos/reactforbeginners.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/sponsors/chroma logo space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/sponsors/chroma logo space.svg -------------------------------------------------------------------------------- /surveys/css2021/images/sponsors/chroma_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/sponsors/chroma_logo.svg -------------------------------------------------------------------------------- /surveys/css2021/images/sponsors/frontend-masters-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/sponsors/frontend-masters-dark.png -------------------------------------------------------------------------------- /surveys/css2021/images/sponsors/newline-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/sponsors/newline-logo-dark.png -------------------------------------------------------------------------------- /surveys/css2021/images/sponsors/zenshome-inverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/sponsors/zenshome-inverted.svg -------------------------------------------------------------------------------- /surveys/css2021/images/sponsors/zenshome-whitebg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/sponsors/zenshome-whitebg.svg -------------------------------------------------------------------------------- /surveys/css2021/images/stateofcss2020_socialmedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/stateofcss2020_socialmedia.png -------------------------------------------------------------------------------- /surveys/css2021/images/stateofcss_small_2020.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/stateofcss_small_2020.svg -------------------------------------------------------------------------------- /surveys/css2021/images/stateofjs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/stateofjs-logo.png -------------------------------------------------------------------------------- /surveys/css2021/images/stateofjs-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/stateofjs-logo.svg -------------------------------------------------------------------------------- /surveys/css2021/images/stateofjs-socialmedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/stateofjs-socialmedia.png -------------------------------------------------------------------------------- /surveys/css2021/images/tshirt/tshirt4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/tshirt/tshirt4.png -------------------------------------------------------------------------------- /surveys/css2021/images/tshirt/tshirt5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/tshirt/tshirt5.jpg -------------------------------------------------------------------------------- /surveys/css2021/images/tshirt/tshirt6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/images/tshirt/tshirt6.jpg -------------------------------------------------------------------------------- /surveys/css2021/logo/IntroLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/logo/IntroLogo.tsx -------------------------------------------------------------------------------- /surveys/css2021/logo/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/logo/Logo.tsx -------------------------------------------------------------------------------- /surveys/css2021/logo/SidebarLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/logo/SidebarLogo.tsx -------------------------------------------------------------------------------- /surveys/css2021/theme/charts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/theme/charts.ts -------------------------------------------------------------------------------- /surveys/css2021/theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/theme/colors.ts -------------------------------------------------------------------------------- /surveys/css2021/theme/dimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/theme/dimensions.ts -------------------------------------------------------------------------------- /surveys/css2021/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/theme/index.ts -------------------------------------------------------------------------------- /surveys/css2021/theme/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/theme/typography.ts -------------------------------------------------------------------------------- /surveys/css2021/theme/zIndexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/css2021/theme/zIndexes.ts -------------------------------------------------------------------------------- /surveys/js2020/config/block_templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/config/block_templates.yml -------------------------------------------------------------------------------- /surveys/js2020/config/capture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/config/capture.yml -------------------------------------------------------------------------------- /surveys/js2020/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/config/config.yml -------------------------------------------------------------------------------- /surveys/js2020/config/page_templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/config/page_templates.yml -------------------------------------------------------------------------------- /surveys/js2020/config/periodic_table.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/config/periodic_table.yml -------------------------------------------------------------------------------- /surveys/js2020/config/picks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/config/picks.yml -------------------------------------------------------------------------------- /surveys/js2020/config/raw_sitemap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/config/raw_sitemap.yml -------------------------------------------------------------------------------- /surveys/js2020/config/recommended_resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/config/recommended_resources.yml -------------------------------------------------------------------------------- /surveys/js2020/config/report.mdx: -------------------------------------------------------------------------------- 1 | Nothing here yet -------------------------------------------------------------------------------- /surveys/js2020/config/sponsors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/config/sponsors.yml -------------------------------------------------------------------------------- /surveys/js2020/config/variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/config/variables.yml -------------------------------------------------------------------------------- /surveys/js2020/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/favicon.png -------------------------------------------------------------------------------- /surveys/js2020/images/picks/cassidoo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/picks/cassidoo.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/picks/joshwcomeau.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/picks/joshwcomeau.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/picks/kentcdodds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/picks/kentcdodds.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/picks/ladyleet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/picks/ladyleet.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/picks/markdalgleish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/picks/markdalgleish.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/picks/midudev.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/picks/midudev.jpeg -------------------------------------------------------------------------------- /surveys/js2020/images/picks/midudev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/picks/midudev.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/picks/sachagreif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/picks/sachagreif.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/picks/sarah_edo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/picks/sarah_edo.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/picks/swyx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/picks/swyx.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/picks/tomdale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/picks/tomdale.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/resources/Sencha-WebTestIt-Logo-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/resources/Sencha-WebTestIt-Logo-svg.png -------------------------------------------------------------------------------- /surveys/js2020/images/resources/froala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/resources/froala.png -------------------------------------------------------------------------------- /surveys/js2020/images/resources/m-black-highres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/resources/m-black-highres.png -------------------------------------------------------------------------------- /surveys/js2020/images/resources/wb-es6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/resources/wb-es6.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/resources/wb-gatsby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/resources/wb-gatsby.png -------------------------------------------------------------------------------- /surveys/js2020/images/resources/wb-graphql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/resources/wb-graphql.png -------------------------------------------------------------------------------- /surveys/js2020/images/resources/wb-javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/resources/wb-javascript.png -------------------------------------------------------------------------------- /surveys/js2020/images/resources/wb-node.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/resources/wb-node.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/resources/wb-react.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/resources/wb-react.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/resources/webtestit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/resources/webtestit.png -------------------------------------------------------------------------------- /surveys/js2020/images/resources/wesbos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/resources/wesbos.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/sponsors/IderaInc-DevTools-Reversed_dark_v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/sponsors/IderaInc-DevTools-Reversed_dark_v1.svg -------------------------------------------------------------------------------- /surveys/js2020/images/sponsors/IderaInc-DevTools_light_v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/sponsors/IderaInc-DevTools_light_v1.svg -------------------------------------------------------------------------------- /surveys/js2020/images/sponsors/frontend-masters-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/sponsors/frontend-masters-dark.png -------------------------------------------------------------------------------- /surveys/js2020/images/stateofjs2020_socialmedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/stateofjs2020_socialmedia.png -------------------------------------------------------------------------------- /surveys/js2020/images/tshirt/stateofjs2019tshirt-illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/tshirt/stateofjs2019tshirt-illustration.png -------------------------------------------------------------------------------- /surveys/js2020/images/tshirt/stateofjs2019tshirt-illustration2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/tshirt/stateofjs2019tshirt-illustration2.png -------------------------------------------------------------------------------- /surveys/js2020/images/tshirt/tshirt1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/tshirt/tshirt1.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/tshirt/tshirt2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/tshirt/tshirt2.jpg -------------------------------------------------------------------------------- /surveys/js2020/images/tshirt/tshirt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/images/tshirt/tshirt3.png -------------------------------------------------------------------------------- /surveys/js2020/logo/IntroLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/logo/IntroLogo.tsx -------------------------------------------------------------------------------- /surveys/js2020/logo/LogoCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/logo/LogoCell.tsx -------------------------------------------------------------------------------- /surveys/js2020/logo/SidebarLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/logo/SidebarLogo.tsx -------------------------------------------------------------------------------- /surveys/js2020/theme/charts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/theme/charts.ts -------------------------------------------------------------------------------- /surveys/js2020/theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/theme/colors.ts -------------------------------------------------------------------------------- /surveys/js2020/theme/dimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/theme/dimensions.ts -------------------------------------------------------------------------------- /surveys/js2020/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/theme/index.ts -------------------------------------------------------------------------------- /surveys/js2020/theme/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/theme/typography.ts -------------------------------------------------------------------------------- /surveys/js2020/theme/zIndexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/surveys/js2020/theme/zIndexes.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devographics/StateOfJS-2020/HEAD/yarn.lock --------------------------------------------------------------------------------