diff --git a/.prettierignore b/.prettierignore index e7f828fe8..a4257ac39 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1 +1,3 @@ -src/docs/community/faq.mdx \ No newline at end of file +src/docs/community/faq.mdx +src/database/sitemap-database.json +src/database/index-database.json \ No newline at end of file diff --git a/package.json b/package.json index 923f23f7f..faac962e7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "doc-it", "author": "Brightlayer UI ", - "version": "2.4.2", + "version": "3.0.0", "private": true, "scripts": { "start": "node scripts/start.js", @@ -27,7 +27,7 @@ "@brainhubeu/react-carousel": "1.12.15", "@brightlayer-ui/colors": "^3.0.1", "@brightlayer-ui/colors-branding": "^3.1.0", - "@brightlayer-ui/icons-mui": "^2.7.0", + "@brightlayer-ui/icons-mui": "^2.8.0", "@brightlayer-ui/react-components": "^5.3.2", "@brightlayer-ui/react-progress-icons": "^2.1.1", "@brightlayer-ui/react-themes": "^6.1.0", diff --git a/public/favico.png b/public/favico.png new file mode 100644 index 000000000..11fa0bb60 Binary files /dev/null and b/public/favico.png differ diff --git a/public/index.html b/public/index.html index f13b6a5e5..dedd8c6f9 100644 --- a/public/index.html +++ b/public/index.html @@ -2,7 +2,7 @@ - + diff --git a/scripts/crawl/sitemap.json b/scripts/crawl/sitemap.json index c317dfaf8..59d6a8bbd 100644 --- a/scripts/crawl/sitemap.json +++ b/scripts/crawl/sitemap.json @@ -136,7 +136,7 @@ "url": "/internationalization" }, { - "title": "Lists & Tables", + "title": "Lists", "url": "/lists" }, { @@ -156,6 +156,10 @@ "url": "/layout", "hidden": true }, + { + "title": "Tables", + "url": "/tables" + }, { "title": "Steppers", "url": "/steppers" diff --git a/src/__configuration__/markdown/markdownMapping.tsx b/src/__configuration__/markdown/markdownMapping.tsx index 2bc0900ce..90a6f55e3 100644 --- a/src/__configuration__/markdown/markdownMapping.tsx +++ b/src/__configuration__/markdown/markdownMapping.tsx @@ -13,7 +13,7 @@ import { } from '@material-ui/core'; import { Link as LinkIcon } from '@material-ui/icons'; import { Link, LinkProps } from 'react-router-dom'; -import { REGULAR_WIDTH_STYLE, copyTextToClipboard } from '../../app/shared'; +import { REGULAR_WIDTH_STYLE, copyTextToClipboard, getHash } from '../../app/shared'; import * as Colors from '@brightlayer-ui/colors'; import color from 'color'; import clsx from 'clsx'; @@ -52,11 +52,6 @@ export const InternalLink = (props: LinkProps): JSX.Element => { /> ); }; -const getHash = (str: string): string => - str - .replace(/ /g, '-') - .replace(/[#?/&]/g, '') - .toLowerCase(); type Headline = HTMLAttributes & { hash: string; diff --git a/src/__configuration__/navigationMenu/navigation.tsx b/src/__configuration__/navigationMenu/navigation.tsx index 366cb39f8..396173797 100644 --- a/src/__configuration__/navigationMenu/navigation.tsx +++ b/src/__configuration__/navigationMenu/navigation.tsx @@ -203,9 +203,9 @@ export const pageDefinitions: SimpleNavItem[] = [ component: , }, { - title: 'Lists & Tables', + title: 'Lists', url: '/lists', - component: , + component: , }, { title: 'Loading & Waiting', @@ -228,6 +228,11 @@ export const pageDefinitions: SimpleNavItem[] = [ component: , hidden: true, }, + { + title: 'Tables', + url: '/tables', + component: , + }, { title: 'Steppers', url: '/steppers', @@ -281,16 +286,16 @@ export const pageDefinitions: SimpleNavItem[] = [ url: '/illustrations', component: , }, - { - title: 'Typography', - url: '/typography', - component: , - }, { title: 'Themes', url: '/themes', component: , }, + { + title: 'Typography', + url: '/typography', + component: , + }, ], }, { diff --git a/src/__configuration__/patterns/index.tsx b/src/__configuration__/patterns/index.tsx index 85c728566..1a9cdc4eb 100644 --- a/src/__configuration__/patterns/index.tsx +++ b/src/__configuration__/patterns/index.tsx @@ -8,6 +8,7 @@ import LoadingImage from '../../app/assets/design-patterns/loading-states/loadin import LoginBanner from '../../app/assets/design-patterns/user-authentication/login.svg'; import NavigationtImg from '../../app/assets/design-patterns/navigation/navigation.svg'; import OverlayBanner from '../../app/assets/design-patterns/overlays/overlay-banner.svg'; +import TableImg from '../../app/assets/design-patterns/tables/tables.svg'; // import PageLayoutImg from '../../app/assets/design-patterns/page-layout/layout-banner.svg'; import StepperImg from '../../app/assets/design-patterns/steppers/steppers-banner.svg'; import VisualizationImage from '../../app/assets/design-patterns/visualizations/visualizations-banner.svg'; @@ -56,7 +57,7 @@ export const patterns = [ }, }, { - title: 'Lists & Tables', + title: 'Lists', url: '/patterns/lists', description: 'Different lists for different kinds of data.', image: ListImg, @@ -88,6 +89,15 @@ export const patterns = [ // description: 'Laying out elements on the screen.', // image: PageLayoutImg, // }, + { + title: 'Tables', + url: '/patterns/tables', + description: 'Render tables in a structured way.', + image: TableImg, + background: { + position: 'center', + }, + }, { title: 'Steppers', url: '/patterns/steppers', diff --git a/src/__configuration__/roadmap/index.ts b/src/__configuration__/roadmap/index.ts index 2ff847817..3054e4684 100644 --- a/src/__configuration__/roadmap/index.ts +++ b/src/__configuration__/roadmap/index.ts @@ -1,12 +1,17 @@ import { Quarter, Release } from '../../__types__'; -export const CURRENT_RELEASE: Release = 'R22'; +export const CURRENT_RELEASE: Release = 'R23'; export const AVAILABLE_RELEASES: Array<{ name: Release; year: number; quarter: Quarter; }> = [ + { + name: 'R24', + year: 2022, + quarter: 'Q2', + }, { name: 'R23', year: 2022, diff --git a/src/__configuration__/themes/schedule.ts b/src/__configuration__/themes/_schedule.ts similarity index 100% rename from src/__configuration__/themes/schedule.ts rename to src/__configuration__/themes/_schedule.ts diff --git a/src/__configuration__/themes/earth-day.ts b/src/__configuration__/themes/earth-day.ts index 00c4b1e5a..5304ee50b 100644 --- a/src/__configuration__/themes/earth-day.ts +++ b/src/__configuration__/themes/earth-day.ts @@ -2,7 +2,6 @@ import * as BLUIThemes from '@brightlayer-ui/react-themes'; import * as Colors from '@brightlayer-ui/colors'; import banner from '../../app/assets/themes/earth-day/earth.jpg'; import cursor from '../../app/assets/themes/earth-day/cursor.svg'; -import titleBlock from '../../app/assets/themes/earth-day/title-block.gif'; import AppBarTile from '../../app/assets/themes/earth-day/tile.svg'; import { Schedule } from './types'; @@ -26,14 +25,9 @@ export const EarthDaySchedule: Schedule = { color: Colors.white[50], }, className: 'earth-day', - customBannerText: { - backgroundImage: `url(${titleBlock})`, - backgroundSize: 'contain', - backgroundRepeat: 'no-repeat', - backgroundPosition: 'center', - }, appBarBackground: { - backgroundImage: `url(${AppBarTile})`, + background: `url(${AppBarTile}), linear-gradient(90deg, ${Colors.green[900]}, ${Colors.blue[700]})`, + backgroundPosition: 'center', }, }, }; diff --git a/src/__configuration__/themes/index.ts b/src/__configuration__/themes/index.ts index 2fedcaf9e..3e7c208bd 100644 --- a/src/__configuration__/themes/index.ts +++ b/src/__configuration__/themes/index.ts @@ -1,2 +1,2 @@ export * from './types'; -export * from './schedule'; +export * from './_schedule'; diff --git a/src/__configuration__/themes/mid-autumn-festival.ts b/src/__configuration__/themes/mid-autumn-festival.ts index fc0d48291..9a140e78a 100644 --- a/src/__configuration__/themes/mid-autumn-festival.ts +++ b/src/__configuration__/themes/mid-autumn-festival.ts @@ -58,6 +58,12 @@ export const MidAutumnSchedule: Schedule = { }, }, }, + MuiFab: { + primary: { + backgroundColor: Colors.red[700], + color: 'white', + }, + }, }, }, landingPageBanner: { @@ -77,6 +83,7 @@ export const MidAutumnSchedule: Schedule = { backgroundRepeat: 'no-repeat', backgroundPosition: 'center', height: '40vh', + width: 600, }, appBarBackground: { backgroundImage: `url(${AppBarTile})`, diff --git a/src/__configuration__/themes/spring-festival.ts b/src/__configuration__/themes/spring-festival.ts index c722dc6c4..be64d80bc 100644 --- a/src/__configuration__/themes/spring-festival.ts +++ b/src/__configuration__/themes/spring-festival.ts @@ -48,6 +48,11 @@ export const SpringFestivalSchedule: Schedule = { outlined: {}, outlinedPrimary: {}, }, + MuiFab: { + primary: { + backgroundColor: Colors.yellow[900], + }, + }, }, }, landingPageBanner: { @@ -65,6 +70,7 @@ export const SpringFestivalSchedule: Schedule = { backgroundSize: 'contain', backgroundRepeat: 'no-repeat', backgroundPosition: 'center', + width: 600, }, drawerActiveBackgroundFade: 0.9, appBarBackground: { diff --git a/src/__types__/index.ts b/src/__types__/index.ts index ba71a53fa..9571e9038 100644 --- a/src/__types__/index.ts +++ b/src/__types__/index.ts @@ -31,7 +31,7 @@ export type IconColor = 'black' | 'blue' | 'gray' | 'white'; export type ItemTypeFilter = 'all' | 'design' | 'development'; export type Status = 'backlog' | 'in-progress' | 'pre-release' | 'deferred' | 'finished'; export type Quarter = 'Q1' | 'Q2' | 'Q3' | 'Q4'; -export type Release = 'R16' | 'R17' | 'R18' | 'R19' | 'R20' | 'R21' | 'R22' | 'R23'; +export type Release = 'R16' | 'R17' | 'R18' | 'R19' | 'R20' | 'R21' | 'R22' | 'R23' | 'R24'; export type RoadmapItem = { name: string; diff --git a/src/app/assets/design-patterns/account-menu/crowded-drawer.png b/src/app/assets/design-patterns/account-menu/crowded-drawer.png index 010b3dc35..db6e5f600 100644 Binary files a/src/app/assets/design-patterns/account-menu/crowded-drawer.png and b/src/app/assets/design-patterns/account-menu/crowded-drawer.png differ diff --git a/src/app/assets/design-patterns/account-menu/crowded-user-menu.png b/src/app/assets/design-patterns/account-menu/crowded-user-menu.png index 15e546e7b..5c02285c6 100644 Binary files a/src/app/assets/design-patterns/account-menu/crowded-user-menu.png and b/src/app/assets/design-patterns/account-menu/crowded-user-menu.png differ diff --git a/src/app/assets/design-patterns/account-menu/drawer-do-and-dont-1.png b/src/app/assets/design-patterns/account-menu/drawer-do-and-dont-1.png index c8c8453c4..520b4ed7c 100644 Binary files a/src/app/assets/design-patterns/account-menu/drawer-do-and-dont-1.png and b/src/app/assets/design-patterns/account-menu/drawer-do-and-dont-1.png differ diff --git a/src/app/assets/design-patterns/account-menu/drawer-do-and-dont-2.png b/src/app/assets/design-patterns/account-menu/drawer-do-and-dont-2.png index d0607f147..39165098c 100644 Binary files a/src/app/assets/design-patterns/account-menu/drawer-do-and-dont-2.png and b/src/app/assets/design-patterns/account-menu/drawer-do-and-dont-2.png differ diff --git a/src/app/assets/design-patterns/action-list/action-list-overlay.png b/src/app/assets/design-patterns/action-list/action-list-overlay.png deleted file mode 100644 index 060c2e07a..000000000 Binary files a/src/app/assets/design-patterns/action-list/action-list-overlay.png and /dev/null differ diff --git a/src/app/assets/design-patterns/app-bar/collapsible-app-bar-1.png b/src/app/assets/design-patterns/app-bar/collapsible-app-bar-1.png index 65d197e21..aa0a19d52 100644 Binary files a/src/app/assets/design-patterns/app-bar/collapsible-app-bar-1.png and b/src/app/assets/design-patterns/app-bar/collapsible-app-bar-1.png differ diff --git a/src/app/assets/design-patterns/app-bar/collapsible-app-bar-2.png b/src/app/assets/design-patterns/app-bar/collapsible-app-bar-2.png index 2e22ca169..72173af79 100644 Binary files a/src/app/assets/design-patterns/app-bar/collapsible-app-bar-2.png and b/src/app/assets/design-patterns/app-bar/collapsible-app-bar-2.png differ diff --git a/src/app/assets/design-patterns/app-bar/safe-area-error.png b/src/app/assets/design-patterns/app-bar/safe-area-error.png new file mode 100644 index 000000000..1d7c87fde Binary files /dev/null and b/src/app/assets/design-patterns/app-bar/safe-area-error.png differ diff --git a/src/app/assets/design-patterns/app-bar/safe-area-ok.png b/src/app/assets/design-patterns/app-bar/safe-area-ok.png new file mode 100644 index 000000000..7a62670ed Binary files /dev/null and b/src/app/assets/design-patterns/app-bar/safe-area-ok.png differ diff --git a/src/app/assets/design-patterns/app-bar/safe-area.png b/src/app/assets/design-patterns/app-bar/safe-area.png deleted file mode 100644 index 3da60d3c3..000000000 Binary files a/src/app/assets/design-patterns/app-bar/safe-area.png and /dev/null differ diff --git a/src/app/assets/design-patterns/empty-states/do-encourage.png b/src/app/assets/design-patterns/empty-states/do-encourage.png index 8582481b0..b56816f80 100644 Binary files a/src/app/assets/design-patterns/empty-states/do-encourage.png and b/src/app/assets/design-patterns/empty-states/do-encourage.png differ diff --git a/src/app/assets/design-patterns/empty-states/dont-distract.png b/src/app/assets/design-patterns/empty-states/dont-distract.png index 6f3038ac3..8cb0bb85a 100644 Binary files a/src/app/assets/design-patterns/empty-states/dont-distract.png and b/src/app/assets/design-patterns/empty-states/dont-distract.png differ diff --git a/src/app/assets/design-patterns/internationalization/icon-align-1.png b/src/app/assets/design-patterns/internationalization/icon-align-1.png new file mode 100644 index 000000000..8eeecac9d Binary files /dev/null and b/src/app/assets/design-patterns/internationalization/icon-align-1.png differ diff --git a/src/app/assets/design-patterns/internationalization/icons-flipped-error.png b/src/app/assets/design-patterns/internationalization/icons-flipped-error.png new file mode 100644 index 000000000..fbd30d12f Binary files /dev/null and b/src/app/assets/design-patterns/internationalization/icons-flipped-error.png differ diff --git a/src/app/assets/design-patterns/internationalization/icons-flipped-ok.png b/src/app/assets/design-patterns/internationalization/icons-flipped-ok.png new file mode 100644 index 000000000..69520a8e7 Binary files /dev/null and b/src/app/assets/design-patterns/internationalization/icons-flipped-ok.png differ diff --git a/src/app/assets/design-patterns/internationalization/icons-flipped.png b/src/app/assets/design-patterns/internationalization/icons-flipped.png deleted file mode 100644 index ec1bf5a31..000000000 Binary files a/src/app/assets/design-patterns/internationalization/icons-flipped.png and /dev/null differ diff --git a/src/app/assets/design-patterns/lists/action-button-as-button.png b/src/app/assets/design-patterns/lists/action-button-as-button.png index bd2a0842b..6fb903ea0 100644 Binary files a/src/app/assets/design-patterns/lists/action-button-as-button.png and b/src/app/assets/design-patterns/lists/action-button-as-button.png differ diff --git a/src/app/assets/design-patterns/lists/icon-align-1.png b/src/app/assets/design-patterns/lists/icon-align-1.png new file mode 100644 index 000000000..8eeecac9d Binary files /dev/null and b/src/app/assets/design-patterns/lists/icon-align-1.png differ diff --git a/src/app/assets/design-patterns/lists/icon-align-2.png b/src/app/assets/design-patterns/lists/icon-align-2.png new file mode 100644 index 000000000..bc0a221f4 Binary files /dev/null and b/src/app/assets/design-patterns/lists/icon-align-2.png differ diff --git a/src/app/assets/design-patterns/lists/icon-align-3.png b/src/app/assets/design-patterns/lists/icon-align-3.png new file mode 100644 index 000000000..a032fc001 Binary files /dev/null and b/src/app/assets/design-patterns/lists/icon-align-3.png differ diff --git a/src/app/assets/design-patterns/lists/icon-align.png b/src/app/assets/design-patterns/lists/icon-align.png deleted file mode 100644 index 3ac6d821e..000000000 Binary files a/src/app/assets/design-patterns/lists/icon-align.png and /dev/null differ diff --git a/src/app/assets/design-patterns/lists/local-list-actions-2.png b/src/app/assets/design-patterns/lists/local-list-actions-2.png index 4433c4ed9..3992b8257 100644 Binary files a/src/app/assets/design-patterns/lists/local-list-actions-2.png and b/src/app/assets/design-patterns/lists/local-list-actions-2.png differ diff --git a/src/app/assets/design-patterns/lists/local-list-actions.png b/src/app/assets/design-patterns/lists/local-list-actions.png index 89411c27a..e4da41915 100644 Binary files a/src/app/assets/design-patterns/lists/local-list-actions.png and b/src/app/assets/design-patterns/lists/local-list-actions.png differ diff --git a/src/app/assets/design-patterns/lists/multi-select-list.png b/src/app/assets/design-patterns/lists/multi-select-list.png index a89d490a4..cf8f7bba4 100644 Binary files a/src/app/assets/design-patterns/lists/multi-select-list.png and b/src/app/assets/design-patterns/lists/multi-select-list.png differ diff --git a/src/app/assets/design-patterns/lists/navigate-list-1.png b/src/app/assets/design-patterns/lists/navigate-list-1.png index f2b62bc47..a0dc3a55f 100644 Binary files a/src/app/assets/design-patterns/lists/navigate-list-1.png and b/src/app/assets/design-patterns/lists/navigate-list-1.png differ diff --git a/src/app/assets/design-patterns/lists/navigate-list-2.png b/src/app/assets/design-patterns/lists/navigate-list-2.png index 5793328a1..98dbab7e6 100644 Binary files a/src/app/assets/design-patterns/lists/navigate-list-2.png and b/src/app/assets/design-patterns/lists/navigate-list-2.png differ diff --git a/src/app/assets/design-patterns/lists/notification-buckets-1.png b/src/app/assets/design-patterns/lists/notification-buckets-1.png index 78cca2687..de7e01420 100644 Binary files a/src/app/assets/design-patterns/lists/notification-buckets-1.png and b/src/app/assets/design-patterns/lists/notification-buckets-1.png differ diff --git a/src/app/assets/design-patterns/lists/notification-buckets-2.png b/src/app/assets/design-patterns/lists/notification-buckets-2.png index 1d76f867c..49a73ff40 100644 Binary files a/src/app/assets/design-patterns/lists/notification-buckets-2.png and b/src/app/assets/design-patterns/lists/notification-buckets-2.png differ diff --git a/src/app/assets/design-patterns/lists/notification-list-desktop.png b/src/app/assets/design-patterns/lists/notification-list-desktop.png index 0e0d91c88..39e62b336 100644 Binary files a/src/app/assets/design-patterns/lists/notification-list-desktop.png and b/src/app/assets/design-patterns/lists/notification-list-desktop.png differ diff --git a/src/app/assets/design-patterns/lists/scorecard.png b/src/app/assets/design-patterns/lists/scorecard.png index 455d929c1..2305495ca 100644 Binary files a/src/app/assets/design-patterns/lists/scorecard.png and b/src/app/assets/design-patterns/lists/scorecard.png differ diff --git a/src/app/assets/design-patterns/lists/simple-list-1.png b/src/app/assets/design-patterns/lists/simple-list-1.png index ba038dd7f..a12c55a12 100644 Binary files a/src/app/assets/design-patterns/lists/simple-list-1.png and b/src/app/assets/design-patterns/lists/simple-list-1.png differ diff --git a/src/app/assets/design-patterns/lists/simple-list-2.png b/src/app/assets/design-patterns/lists/simple-list-2.png index efb9754a7..8f2cf7135 100644 Binary files a/src/app/assets/design-patterns/lists/simple-list-2.png and b/src/app/assets/design-patterns/lists/simple-list-2.png differ diff --git a/src/app/assets/design-patterns/lists/sortable-list.gif b/src/app/assets/design-patterns/lists/sortable-list.gif index 70a55a1e4..64b556aeb 100644 Binary files a/src/app/assets/design-patterns/lists/sortable-list.gif and b/src/app/assets/design-patterns/lists/sortable-list.gif differ diff --git a/src/app/assets/design-patterns/login/forget-password-email-sent.png b/src/app/assets/design-patterns/login/forget-password-email-sent.png deleted file mode 100644 index 50ca8e587..000000000 Binary files a/src/app/assets/design-patterns/login/forget-password-email-sent.png and /dev/null differ diff --git a/src/app/assets/design-patterns/login/forget-password-enter-email.png b/src/app/assets/design-patterns/login/forget-password-enter-email.png deleted file mode 100644 index 3ef1a33c1..000000000 Binary files a/src/app/assets/design-patterns/login/forget-password-enter-email.png and /dev/null differ diff --git a/src/app/assets/design-patterns/login/login-error.png b/src/app/assets/design-patterns/login/login-error.png deleted file mode 100644 index 1b7bec619..000000000 Binary files a/src/app/assets/design-patterns/login/login-error.png and /dev/null differ diff --git a/src/app/assets/design-patterns/login/login-inactive.png b/src/app/assets/design-patterns/login/login-inactive.png deleted file mode 100644 index 80a6250b1..000000000 Binary files a/src/app/assets/design-patterns/login/login-inactive.png and /dev/null differ diff --git a/src/app/assets/design-patterns/login/login-view-password.png b/src/app/assets/design-patterns/login/login-view-password.png deleted file mode 100644 index 8a7d89ea3..000000000 Binary files a/src/app/assets/design-patterns/login/login-view-password.png and /dev/null differ diff --git a/src/app/assets/design-patterns/login/registration-account-details.png b/src/app/assets/design-patterns/login/registration-account-details.png deleted file mode 100644 index b6a4135d9..000000000 Binary files a/src/app/assets/design-patterns/login/registration-account-details.png and /dev/null differ diff --git a/src/app/assets/design-patterns/login/registration-verify-email.png b/src/app/assets/design-patterns/login/registration-verify-email.png deleted file mode 100644 index f469b0673..000000000 Binary files a/src/app/assets/design-patterns/login/registration-verify-email.png and /dev/null differ diff --git a/src/app/assets/design-patterns/navigation/active-parent.png b/src/app/assets/design-patterns/navigation/active-parent.png new file mode 100644 index 000000000..36be24862 Binary files /dev/null and b/src/app/assets/design-patterns/navigation/active-parent.png differ diff --git a/src/app/assets/design-patterns/navigation/active-regular.png b/src/app/assets/design-patterns/navigation/active-regular.png new file mode 100644 index 000000000..12b84f253 Binary files /dev/null and b/src/app/assets/design-patterns/navigation/active-regular.png differ diff --git a/src/app/assets/design-patterns/navigation/active-round.png b/src/app/assets/design-patterns/navigation/active-round.png new file mode 100644 index 000000000..aff0ec333 Binary files /dev/null and b/src/app/assets/design-patterns/navigation/active-round.png differ diff --git a/src/app/assets/design-patterns/navigation/active-solid.png b/src/app/assets/design-patterns/navigation/active-solid.png new file mode 100644 index 000000000..4bfc06bce Binary files /dev/null and b/src/app/assets/design-patterns/navigation/active-solid.png differ diff --git a/src/app/assets/design-patterns/navigation/divider-do.png b/src/app/assets/design-patterns/navigation/divider-do.png new file mode 100644 index 000000000..3c41e58b7 Binary files /dev/null and b/src/app/assets/design-patterns/navigation/divider-do.png differ diff --git a/src/app/assets/design-patterns/navigation/divider-dont.png b/src/app/assets/design-patterns/navigation/divider-dont.png new file mode 100644 index 000000000..dafe14818 Binary files /dev/null and b/src/app/assets/design-patterns/navigation/divider-dont.png differ diff --git a/src/app/assets/design-patterns/navigation/divider.png b/src/app/assets/design-patterns/navigation/divider.png deleted file mode 100644 index af93f9511..000000000 Binary files a/src/app/assets/design-patterns/navigation/divider.png and /dev/null differ diff --git a/src/app/assets/design-patterns/navigation/safe-area-1.png b/src/app/assets/design-patterns/navigation/safe-area-1.png new file mode 100644 index 000000000..9d0c920a3 Binary files /dev/null and b/src/app/assets/design-patterns/navigation/safe-area-1.png differ diff --git a/src/app/assets/design-patterns/navigation/safe-area-2.png b/src/app/assets/design-patterns/navigation/safe-area-2.png new file mode 100644 index 000000000..19dd1073e Binary files /dev/null and b/src/app/assets/design-patterns/navigation/safe-area-2.png differ diff --git a/src/app/assets/design-patterns/navigation/safe-area.png b/src/app/assets/design-patterns/navigation/safe-area.png deleted file mode 100644 index 3fd3f3abf..000000000 Binary files a/src/app/assets/design-patterns/navigation/safe-area.png and /dev/null differ diff --git a/src/app/assets/design-patterns/overlays/modal-bottom-sheet-desktop.png b/src/app/assets/design-patterns/overlays/modal-bottom-sheet-desktop.png index bc366ad10..76e9372cf 100644 Binary files a/src/app/assets/design-patterns/overlays/modal-bottom-sheet-desktop.png and b/src/app/assets/design-patterns/overlays/modal-bottom-sheet-desktop.png differ diff --git a/src/app/assets/design-patterns/overlays/modal-bottom-sheet-mobile.png b/src/app/assets/design-patterns/overlays/modal-bottom-sheet-mobile.png index 861b7ce30..ab03593ec 100644 Binary files a/src/app/assets/design-patterns/overlays/modal-bottom-sheet-mobile.png and b/src/app/assets/design-patterns/overlays/modal-bottom-sheet-mobile.png differ diff --git a/src/app/assets/design-patterns/overlays/overlay-banner.svg b/src/app/assets/design-patterns/overlays/overlay-banner.svg index d582b0188..b18c3c92c 100644 --- a/src/app/assets/design-patterns/overlays/overlay-banner.svg +++ b/src/app/assets/design-patterns/overlays/overlay-banner.svg @@ -1,27 +1,26 @@ - + - + - - + - - - - + + + + - + - + - + diff --git a/src/app/assets/design-patterns/tables/action-at-row-end.png b/src/app/assets/design-patterns/tables/action-at-row-end.png new file mode 100644 index 000000000..5d13255a2 Binary files /dev/null and b/src/app/assets/design-patterns/tables/action-at-row-end.png differ diff --git a/src/app/assets/design-patterns/tables/action-on-hover.png b/src/app/assets/design-patterns/tables/action-on-hover.png new file mode 100644 index 000000000..66b471b8c Binary files /dev/null and b/src/app/assets/design-patterns/tables/action-on-hover.png differ diff --git a/src/app/assets/design-patterns/tables/addition-animation.gif b/src/app/assets/design-patterns/tables/addition-animation.gif new file mode 100644 index 000000000..7b1bdadc5 Binary files /dev/null and b/src/app/assets/design-patterns/tables/addition-animation.gif differ diff --git a/src/app/assets/design-patterns/tables/advanced-table-filter.gif b/src/app/assets/design-patterns/tables/advanced-table-filter.gif new file mode 100644 index 000000000..9e6e7d052 Binary files /dev/null and b/src/app/assets/design-patterns/tables/advanced-table-filter.gif differ diff --git a/src/app/assets/design-patterns/tables/arrange-list.svg b/src/app/assets/design-patterns/tables/arrange-list.svg new file mode 100644 index 000000000..94c186576 --- /dev/null +++ b/src/app/assets/design-patterns/tables/arrange-list.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/app/assets/design-patterns/tables/arrange-table.svg b/src/app/assets/design-patterns/tables/arrange-table.svg new file mode 100644 index 000000000..be27c6ad6 --- /dev/null +++ b/src/app/assets/design-patterns/tables/arrange-table.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/app/assets/design-patterns/tables/batch-action-1.png b/src/app/assets/design-patterns/tables/batch-action-1.png new file mode 100644 index 000000000..e7971a76a Binary files /dev/null and b/src/app/assets/design-patterns/tables/batch-action-1.png differ diff --git a/src/app/assets/design-patterns/tables/batch-action-2.png b/src/app/assets/design-patterns/tables/batch-action-2.png new file mode 100644 index 000000000..ce73fcba6 Binary files /dev/null and b/src/app/assets/design-patterns/tables/batch-action-2.png differ diff --git a/src/app/assets/design-patterns/tables/click-area-1.png b/src/app/assets/design-patterns/tables/click-area-1.png new file mode 100644 index 000000000..12349e2dc Binary files /dev/null and b/src/app/assets/design-patterns/tables/click-area-1.png differ diff --git a/src/app/assets/design-patterns/tables/click-area-2.png b/src/app/assets/design-patterns/tables/click-area-2.png new file mode 100644 index 000000000..d2a106736 Binary files /dev/null and b/src/app/assets/design-patterns/tables/click-area-2.png differ diff --git a/src/app/assets/design-patterns/tables/column-order-1.png b/src/app/assets/design-patterns/tables/column-order-1.png new file mode 100644 index 000000000..e8af1b163 Binary files /dev/null and b/src/app/assets/design-patterns/tables/column-order-1.png differ diff --git a/src/app/assets/design-patterns/tables/column-order-2.png b/src/app/assets/design-patterns/tables/column-order-2.png new file mode 100644 index 000000000..893ea4452 Binary files /dev/null and b/src/app/assets/design-patterns/tables/column-order-2.png differ diff --git a/src/app/assets/design-patterns/tables/dashboard-table.png b/src/app/assets/design-patterns/tables/dashboard-table.png new file mode 100644 index 000000000..856f51b02 Binary files /dev/null and b/src/app/assets/design-patterns/tables/dashboard-table.png differ diff --git a/src/app/assets/design-patterns/tables/drag-1.png b/src/app/assets/design-patterns/tables/drag-1.png new file mode 100644 index 000000000..965ecb95a Binary files /dev/null and b/src/app/assets/design-patterns/tables/drag-1.png differ diff --git a/src/app/assets/design-patterns/tables/drag-2.png b/src/app/assets/design-patterns/tables/drag-2.png new file mode 100644 index 000000000..e4eb8de72 Binary files /dev/null and b/src/app/assets/design-patterns/tables/drag-2.png differ diff --git a/src/app/assets/design-patterns/tables/expanded-row-actions.png b/src/app/assets/design-patterns/tables/expanded-row-actions.png new file mode 100644 index 000000000..d15fa1782 Binary files /dev/null and b/src/app/assets/design-patterns/tables/expanded-row-actions.png differ diff --git a/src/app/assets/design-patterns/tables/expanded-row-too-complicated.png b/src/app/assets/design-patterns/tables/expanded-row-too-complicated.png new file mode 100644 index 000000000..ac1808331 Binary files /dev/null and b/src/app/assets/design-patterns/tables/expanded-row-too-complicated.png differ diff --git a/src/app/assets/design-patterns/tables/expanded-row.gif b/src/app/assets/design-patterns/tables/expanded-row.gif new file mode 100644 index 000000000..6ade821c5 Binary files /dev/null and b/src/app/assets/design-patterns/tables/expanded-row.gif differ diff --git a/src/app/assets/design-patterns/tables/filter-1.png b/src/app/assets/design-patterns/tables/filter-1.png new file mode 100644 index 000000000..e47703e44 Binary files /dev/null and b/src/app/assets/design-patterns/tables/filter-1.png differ diff --git a/src/app/assets/design-patterns/tables/filter-2.png b/src/app/assets/design-patterns/tables/filter-2.png new file mode 100644 index 000000000..266e0cf2a Binary files /dev/null and b/src/app/assets/design-patterns/tables/filter-2.png differ diff --git a/src/app/assets/design-patterns/tables/filter-3.png b/src/app/assets/design-patterns/tables/filter-3.png new file mode 100644 index 000000000..aa3738b5c Binary files /dev/null and b/src/app/assets/design-patterns/tables/filter-3.png differ diff --git a/src/app/assets/design-patterns/tables/filter-4.png b/src/app/assets/design-patterns/tables/filter-4.png new file mode 100644 index 000000000..99c73f40b Binary files /dev/null and b/src/app/assets/design-patterns/tables/filter-4.png differ diff --git a/src/app/assets/design-patterns/tables/home-page-preview.gif b/src/app/assets/design-patterns/tables/home-page-preview.gif new file mode 100644 index 000000000..7e4320143 Binary files /dev/null and b/src/app/assets/design-patterns/tables/home-page-preview.gif differ diff --git a/src/app/assets/design-patterns/tables/horizontal-scroll-bar.png b/src/app/assets/design-patterns/tables/horizontal-scroll-bar.png new file mode 100644 index 000000000..7c0cd5d01 Binary files /dev/null and b/src/app/assets/design-patterns/tables/horizontal-scroll-bar.png differ diff --git a/src/app/assets/design-patterns/tables/implicit-value-list-1.png b/src/app/assets/design-patterns/tables/implicit-value-list-1.png new file mode 100644 index 000000000..032c9f8b9 Binary files /dev/null and b/src/app/assets/design-patterns/tables/implicit-value-list-1.png differ diff --git a/src/app/assets/design-patterns/tables/implicit-value-list-2.png b/src/app/assets/design-patterns/tables/implicit-value-list-2.png new file mode 100644 index 000000000..0b5fce017 Binary files /dev/null and b/src/app/assets/design-patterns/tables/implicit-value-list-2.png differ diff --git a/src/app/assets/design-patterns/tables/implicit-value-table.png b/src/app/assets/design-patterns/tables/implicit-value-table.png new file mode 100644 index 000000000..07ea4afee Binary files /dev/null and b/src/app/assets/design-patterns/tables/implicit-value-table.png differ diff --git a/src/app/assets/design-patterns/tables/invite-to-landscape-countdown.gif b/src/app/assets/design-patterns/tables/invite-to-landscape-countdown.gif new file mode 100644 index 000000000..ffb659e5c Binary files /dev/null and b/src/app/assets/design-patterns/tables/invite-to-landscape-countdown.gif differ diff --git a/src/app/assets/design-patterns/tables/invite-to-landscape-x.png b/src/app/assets/design-patterns/tables/invite-to-landscape-x.png new file mode 100644 index 000000000..118e589a3 Binary files /dev/null and b/src/app/assets/design-patterns/tables/invite-to-landscape-x.png differ diff --git a/src/app/assets/design-patterns/tables/landscape-table.gif b/src/app/assets/design-patterns/tables/landscape-table.gif new file mode 100644 index 000000000..d9d361123 Binary files /dev/null and b/src/app/assets/design-patterns/tables/landscape-table.gif differ diff --git a/src/app/assets/design-patterns/tables/list-v-table-list.png b/src/app/assets/design-patterns/tables/list-v-table-list.png new file mode 100644 index 000000000..739fee2b5 Binary files /dev/null and b/src/app/assets/design-patterns/tables/list-v-table-list.png differ diff --git a/src/app/assets/design-patterns/tables/list-v-table-table.png b/src/app/assets/design-patterns/tables/list-v-table-table.png new file mode 100644 index 000000000..55cebd1ba Binary files /dev/null and b/src/app/assets/design-patterns/tables/list-v-table-table.png differ diff --git a/src/app/assets/design-patterns/tables/mobile-inf-scroll.png b/src/app/assets/design-patterns/tables/mobile-inf-scroll.png new file mode 100644 index 000000000..929935faf Binary files /dev/null and b/src/app/assets/design-patterns/tables/mobile-inf-scroll.png differ diff --git a/src/app/assets/design-patterns/tables/mobile-pagination.png b/src/app/assets/design-patterns/tables/mobile-pagination.png new file mode 100644 index 000000000..a078f7984 Binary files /dev/null and b/src/app/assets/design-patterns/tables/mobile-pagination.png differ diff --git a/src/app/assets/design-patterns/tables/page-body-table.png b/src/app/assets/design-patterns/tables/page-body-table.png new file mode 100644 index 000000000..c7941a4b8 Binary files /dev/null and b/src/app/assets/design-patterns/tables/page-body-table.png differ diff --git a/src/app/assets/design-patterns/tables/read-list.svg b/src/app/assets/design-patterns/tables/read-list.svg new file mode 100644 index 000000000..48628e41f --- /dev/null +++ b/src/app/assets/design-patterns/tables/read-list.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/app/assets/design-patterns/tables/read-table.svg b/src/app/assets/design-patterns/tables/read-table.svg new file mode 100644 index 000000000..82fc5347d --- /dev/null +++ b/src/app/assets/design-patterns/tables/read-table.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/app/assets/design-patterns/tables/spec-pagination.png b/src/app/assets/design-patterns/tables/spec-pagination.png new file mode 100644 index 000000000..0c37abd0b Binary files /dev/null and b/src/app/assets/design-patterns/tables/spec-pagination.png differ diff --git a/src/app/assets/design-patterns/tables/spec-size.png b/src/app/assets/design-patterns/tables/spec-size.png new file mode 100644 index 000000000..2d00a8248 Binary files /dev/null and b/src/app/assets/design-patterns/tables/spec-size.png differ diff --git a/src/app/assets/design-patterns/tables/spec-typography.png b/src/app/assets/design-patterns/tables/spec-typography.png new file mode 100644 index 000000000..b8edd4140 Binary files /dev/null and b/src/app/assets/design-patterns/tables/spec-typography.png differ diff --git a/src/app/assets/design-patterns/tables/standard-table.png b/src/app/assets/design-patterns/tables/standard-table.png new file mode 100644 index 000000000..81e45368f Binary files /dev/null and b/src/app/assets/design-patterns/tables/standard-table.png differ diff --git a/src/app/assets/design-patterns/tables/sticky-checkbox.gif b/src/app/assets/design-patterns/tables/sticky-checkbox.gif new file mode 100644 index 000000000..e4fc571a1 Binary files /dev/null and b/src/app/assets/design-patterns/tables/sticky-checkbox.gif differ diff --git a/src/app/assets/design-patterns/tables/sticky-header.gif b/src/app/assets/design-patterns/tables/sticky-header.gif new file mode 100644 index 000000000..0d48070c5 Binary files /dev/null and b/src/app/assets/design-patterns/tables/sticky-header.gif differ diff --git a/src/app/assets/design-patterns/tables/sticky-row-action.gif b/src/app/assets/design-patterns/tables/sticky-row-action.gif new file mode 100644 index 000000000..002988877 Binary files /dev/null and b/src/app/assets/design-patterns/tables/sticky-row-action.gif differ diff --git a/src/app/assets/design-patterns/tables/substraction-animation.gif b/src/app/assets/design-patterns/tables/substraction-animation.gif new file mode 100644 index 000000000..851b782e1 Binary files /dev/null and b/src/app/assets/design-patterns/tables/substraction-animation.gif differ diff --git a/src/app/assets/design-patterns/tables/table-cell-icon.png b/src/app/assets/design-patterns/tables/table-cell-icon.png new file mode 100644 index 000000000..a8b5ae493 Binary files /dev/null and b/src/app/assets/design-patterns/tables/table-cell-icon.png differ diff --git a/src/app/assets/design-patterns/tables/table-cell-image.png b/src/app/assets/design-patterns/tables/table-cell-image.png new file mode 100644 index 000000000..68ae4477f Binary files /dev/null and b/src/app/assets/design-patterns/tables/table-cell-image.png differ diff --git a/src/app/assets/design-patterns/tables/table-cell-multi-select.png b/src/app/assets/design-patterns/tables/table-cell-multi-select.png new file mode 100644 index 000000000..d46cdb67a Binary files /dev/null and b/src/app/assets/design-patterns/tables/table-cell-multi-select.png differ diff --git a/src/app/assets/design-patterns/tables/table-cell-number.png b/src/app/assets/design-patterns/tables/table-cell-number.png new file mode 100644 index 000000000..4348e5863 Binary files /dev/null and b/src/app/assets/design-patterns/tables/table-cell-number.png differ diff --git a/src/app/assets/design-patterns/tables/table-cell-status.png b/src/app/assets/design-patterns/tables/table-cell-status.png new file mode 100644 index 000000000..42ee3af58 Binary files /dev/null and b/src/app/assets/design-patterns/tables/table-cell-status.png differ diff --git a/src/app/assets/design-patterns/tables/table-cell-stripe.png b/src/app/assets/design-patterns/tables/table-cell-stripe.png new file mode 100644 index 000000000..607bb1db0 Binary files /dev/null and b/src/app/assets/design-patterns/tables/table-cell-stripe.png differ diff --git a/src/app/assets/design-patterns/tables/table-cell-switch.png b/src/app/assets/design-patterns/tables/table-cell-switch.png new file mode 100644 index 000000000..fba7e5239 Binary files /dev/null and b/src/app/assets/design-patterns/tables/table-cell-switch.png differ diff --git a/src/app/assets/design-patterns/tables/table-cell-text-field.png b/src/app/assets/design-patterns/tables/table-cell-text-field.png new file mode 100644 index 000000000..f25381402 Binary files /dev/null and b/src/app/assets/design-patterns/tables/table-cell-text-field.png differ diff --git a/src/app/assets/design-patterns/tables/table-cell-text.png b/src/app/assets/design-patterns/tables/table-cell-text.png new file mode 100644 index 000000000..3a3672531 Binary files /dev/null and b/src/app/assets/design-patterns/tables/table-cell-text.png differ diff --git a/src/app/assets/design-patterns/tables/table-cell-underlined-field.png b/src/app/assets/design-patterns/tables/table-cell-underlined-field.png new file mode 100644 index 000000000..0babc8fd0 Binary files /dev/null and b/src/app/assets/design-patterns/tables/table-cell-underlined-field.png differ diff --git a/src/app/assets/design-patterns/tables/table-on-mobile.svg b/src/app/assets/design-patterns/tables/table-on-mobile.svg new file mode 100644 index 000000000..4be4c12fd --- /dev/null +++ b/src/app/assets/design-patterns/tables/table-on-mobile.svg @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/app/assets/design-patterns/tables/table-stacked-as-list.gif b/src/app/assets/design-patterns/tables/table-stacked-as-list.gif new file mode 100644 index 000000000..a58a00344 Binary files /dev/null and b/src/app/assets/design-patterns/tables/table-stacked-as-list.gif differ diff --git a/src/app/assets/design-patterns/tables/tables.svg b/src/app/assets/design-patterns/tables/tables.svg new file mode 100644 index 000000000..b4ecae312 --- /dev/null +++ b/src/app/assets/design-patterns/tables/tables.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/app/assets/design-patterns/tables/tabular-list.png b/src/app/assets/design-patterns/tables/tabular-list.png new file mode 100644 index 000000000..63b9f7b7e Binary files /dev/null and b/src/app/assets/design-patterns/tables/tabular-list.png differ diff --git a/src/app/assets/design-patterns/tables/user-in-field.jpg b/src/app/assets/design-patterns/tables/user-in-field.jpg new file mode 100644 index 000000000..879759c4d Binary files /dev/null and b/src/app/assets/design-patterns/tables/user-in-field.jpg differ diff --git a/src/app/assets/design-patterns/user-authentication/email-communication-invitation.png b/src/app/assets/design-patterns/user-authentication/email-communication-invitation.png index 9b21db8c8..82e745c6d 100644 Binary files a/src/app/assets/design-patterns/user-authentication/email-communication-invitation.png and b/src/app/assets/design-patterns/user-authentication/email-communication-invitation.png differ diff --git a/src/app/assets/design-patterns/user-authentication/error-states-1.png b/src/app/assets/design-patterns/user-authentication/error-states-1.png new file mode 100644 index 000000000..4fb588910 Binary files /dev/null and b/src/app/assets/design-patterns/user-authentication/error-states-1.png differ diff --git a/src/app/assets/design-patterns/user-authentication/error-states-2.png b/src/app/assets/design-patterns/user-authentication/error-states-2.png new file mode 100644 index 000000000..c56c21485 Binary files /dev/null and b/src/app/assets/design-patterns/user-authentication/error-states-2.png differ diff --git a/src/app/assets/design-patterns/user-authentication/error-states-3.png b/src/app/assets/design-patterns/user-authentication/error-states-3.png new file mode 100644 index 000000000..eac9ad4e0 Binary files /dev/null and b/src/app/assets/design-patterns/user-authentication/error-states-3.png differ diff --git a/src/app/assets/design-patterns/user-authentication/error-states.png b/src/app/assets/design-patterns/user-authentication/error-states.png deleted file mode 100644 index 674d93f09..000000000 Binary files a/src/app/assets/design-patterns/user-authentication/error-states.png and /dev/null differ diff --git a/src/app/assets/design-patterns/visualizations/use-primary-color-do.png b/src/app/assets/design-patterns/visualizations/use-primary-color-do.png new file mode 100644 index 000000000..5bf764faf Binary files /dev/null and b/src/app/assets/design-patterns/visualizations/use-primary-color-do.png differ diff --git a/src/app/assets/design-patterns/visualizations/use-primary-color-dont.png b/src/app/assets/design-patterns/visualizations/use-primary-color-dont.png new file mode 100644 index 000000000..39c9307c1 Binary files /dev/null and b/src/app/assets/design-patterns/visualizations/use-primary-color-dont.png differ diff --git a/src/app/assets/styles/illustrations/animation.gif b/src/app/assets/styles/illustrations/animation.gif index dcbef3995..1ca26954d 100644 Binary files a/src/app/assets/styles/illustrations/animation.gif and b/src/app/assets/styles/illustrations/animation.gif differ diff --git a/src/app/assets/styles/themes/dark-theme-elevation-1.png b/src/app/assets/styles/themes/dark-theme-elevation-1.png new file mode 100644 index 000000000..4f49f072b Binary files /dev/null and b/src/app/assets/styles/themes/dark-theme-elevation-1.png differ diff --git a/src/app/assets/styles/themes/dark-theme-elevation-2.png b/src/app/assets/styles/themes/dark-theme-elevation-2.png new file mode 100644 index 000000000..3d1a97940 Binary files /dev/null and b/src/app/assets/styles/themes/dark-theme-elevation-2.png differ diff --git a/src/app/assets/styles/themes/dark-theme-elevation-3.png b/src/app/assets/styles/themes/dark-theme-elevation-3.png new file mode 100644 index 000000000..656806832 Binary files /dev/null and b/src/app/assets/styles/themes/dark-theme-elevation-3.png differ diff --git a/src/app/assets/styles/themes/dark-theme-elevation.png b/src/app/assets/styles/themes/dark-theme-elevation.png deleted file mode 100644 index 8557e37db..000000000 Binary files a/src/app/assets/styles/themes/dark-theme-elevation.png and /dev/null differ diff --git a/src/app/assets/styles/themes/outlined-and-flat-1.png b/src/app/assets/styles/themes/outlined-and-flat-1.png new file mode 100644 index 000000000..f2adf8fd9 Binary files /dev/null and b/src/app/assets/styles/themes/outlined-and-flat-1.png differ diff --git a/src/app/assets/styles/themes/outlined-and-flat-2.png b/src/app/assets/styles/themes/outlined-and-flat-2.png new file mode 100644 index 000000000..024705b04 Binary files /dev/null and b/src/app/assets/styles/themes/outlined-and-flat-2.png differ diff --git a/src/app/assets/styles/themes/outlined-and-flat-3.png b/src/app/assets/styles/themes/outlined-and-flat-3.png new file mode 100644 index 000000000..3a6747ae3 Binary files /dev/null and b/src/app/assets/styles/themes/outlined-and-flat-3.png differ diff --git a/src/app/assets/styles/themes/outlined-and-flat.png b/src/app/assets/styles/themes/outlined-and-flat.png deleted file mode 100644 index acd400f36..000000000 Binary files a/src/app/assets/styles/themes/outlined-and-flat.png and /dev/null differ diff --git a/src/app/assets/styles/typography/compete-attention-1.png b/src/app/assets/styles/typography/compete-attention-1.png index 2631b10f6..f98488c97 100644 Binary files a/src/app/assets/styles/typography/compete-attention-1.png and b/src/app/assets/styles/typography/compete-attention-1.png differ diff --git a/src/app/assets/styles/typography/compete-attention-2.png b/src/app/assets/styles/typography/compete-attention-2.png index 327bb3e44..d7551e8e7 100644 Binary files a/src/app/assets/styles/typography/compete-attention-2.png and b/src/app/assets/styles/typography/compete-attention-2.png differ diff --git a/src/app/assets/styles/typography/status-color-1.png b/src/app/assets/styles/typography/status-color-1.png index fd7695242..9fc948287 100644 Binary files a/src/app/assets/styles/typography/status-color-1.png and b/src/app/assets/styles/typography/status-color-1.png differ diff --git a/src/app/assets/styles/typography/status-color-2.png b/src/app/assets/styles/typography/status-color-2.png index 32de5a6f4..cc81d98d8 100644 Binary files a/src/app/assets/styles/typography/status-color-2.png and b/src/app/assets/styles/typography/status-color-2.png differ diff --git a/src/app/assets/themes/earth-day/title-block.gif b/src/app/assets/themes/earth-day/title-block.gif deleted file mode 100644 index 9982b19d8..000000000 Binary files a/src/app/assets/themes/earth-day/title-block.gif and /dev/null differ diff --git a/src/app/assets/themes/mid-autumn-festival/title-block.png b/src/app/assets/themes/mid-autumn-festival/title-block.png index dcde4d6a3..dcb273258 100644 Binary files a/src/app/assets/themes/mid-autumn-festival/title-block.png and b/src/app/assets/themes/mid-autumn-festival/title-block.png differ diff --git a/src/app/assets/themes/spring-festival/title-block.svg b/src/app/assets/themes/spring-festival/title-block.svg index 945d55176..c92509a96 100644 --- a/src/app/assets/themes/spring-festival/title-block.svg +++ b/src/app/assets/themes/spring-festival/title-block.svg @@ -1,10 +1,10 @@ - - - - - - - - - + + + + + + + + + diff --git a/src/app/components/docsUtil/ImageGrid.tsx b/src/app/components/docsUtil/ImageGrid.tsx index 4731db4ef..f76ecfc04 100644 --- a/src/app/components/docsUtil/ImageGrid.tsx +++ b/src/app/components/docsUtil/ImageGrid.tsx @@ -1,4 +1,5 @@ import React, { useState, HTMLAttributes } from 'react'; +import { ListItemTag } from '@brightlayer-ui/react-components'; import { Grid, GridProps, @@ -8,7 +9,10 @@ import { Theme, useTheme, useMediaQuery, + PaletteType, } from '@material-ui/core'; +import { PaletteColor } from '@material-ui/core/styles/createPalette'; +import { orange } from '@brightlayer-ui/colors'; const useStyles = makeStyles((theme: Theme) => createStyles({ @@ -50,11 +54,36 @@ type ImageGridProps = HTMLAttributes & { gridImageProps?: GridProps; images: Content[]; regularWidth?: boolean; + captionsUnderImages?: string[]; }; + +const getColoredCaption = ( + captionText: string, + tag: string, + palette: PaletteColor, + themeType: PaletteType, + title: string +): React.ReactNode => ( + <> +
+ +
+ {captionText.trim()} + +); + export const ImageGrid: React.FC = (props): JSX.Element => { const { images, caption, + captionsUnderImages, regularWidth: fullSize, gridContainerProps, gridImageProps, @@ -68,13 +97,54 @@ export const ImageGrid: React.FC = (props): JSX.Element => { const captionArray = Array.isArray(caption) ? caption : [caption]; + const getTaggedCaption = React.useCallback((captionText?: string): React.ReactNode => { + if (!captionText) return undefined; + if (captionText.startsWith('DONT:')) { + return getColoredCaption( + captionText.slice(5), + `DON'T`, + theme.palette.error, + theme.palette.type, + 'Under no circumstance should this ever be used.' + ); + } + if (captionText.startsWith('AVOID:')) { + return getColoredCaption( + captionText.slice(6), + `AVOID`, + { light: orange[100], main: orange[500], dark: orange[900], contrastText: 'black' }, + theme.palette.type, + 'Strong justifications are needed to carry design this way.' + ); + } + if (captionText.startsWith('CAUTION:')) { + return getColoredCaption( + captionText.slice(8), + `CAUTION`, + theme.palette.warning, + theme.palette.type, + 'Must explore other design possibilities before choosing this path.' + ); + } + if (captionText.startsWith('DO:')) { + return getColoredCaption( + captionText.slice(3), + `DO`, + theme.palette.success, + theme.palette.type, + 'We encourage you to design this way, and this is common in other applications using this design system too.' + ); + } + return captionText; + }, []); + return (
= (props): JSX.Element => { } }} /> + { + + {captionsUnderImages && getTaggedCaption(captionsUnderImages[index])} + + } ) : ( @@ -102,7 +177,7 @@ export const ImageGrid: React.FC = (props): JSX.Element => { {captionArray.map((line, lineInd) => ( - {line} + {getTaggedCaption(line)} ))} {imageOpened !== -1 && smUp && ( diff --git a/src/app/components/icons/IconBrowser.tsx b/src/app/components/icons/IconBrowser.tsx index 5d123cbb0..2077bdb6d 100644 --- a/src/app/components/icons/IconBrowser.tsx +++ b/src/app/components/icons/IconBrowser.tsx @@ -150,7 +150,7 @@ const loadIcons = (): void => { const icon: IconType = { name: iconKey, - iconFontKey: iconDetails.name, + iconFontKey: iconDetails.filename.slice(0, -4), type: 'Filled', isMaterial: false, tags: iconDetails.tags || [], diff --git a/src/app/components/icons/IconDrawer.tsx b/src/app/components/icons/IconDrawer.tsx index 422589bfb..cbbfc7c2e 100644 --- a/src/app/components/icons/IconDrawer.tsx +++ b/src/app/components/icons/IconDrawer.tsx @@ -24,7 +24,7 @@ import { EmptyState, Spacer } from '@brightlayer-ui/react-components'; import { GetApp, Close } from '@material-ui/icons'; import { Pxblue } from '@brightlayer-ui/icons-mui'; -import { unCamelCase } from '../../shared'; +import { snakeToTitleCase } from '../../shared'; import { emptyIcon } from '.'; import { downloadPng, downloadSvg } from './utilityFunctions'; @@ -93,6 +93,7 @@ export const IconDrawer: React.FC = () => { const sm = useMediaQuery(theme.breakpoints.down('sm')); const themeConfig = getScheduledSiteConfig(); const showBanner = useSelector((state: AppState) => state.app.showBanner); + const iconTitle = snakeToTitleCase(selectedIcon.iconFontKey); const closeDrawer = (): void => { history.replace(`${location.pathname}`); @@ -156,10 +157,10 @@ export const IconDrawer: React.FC = () => {
- {unCamelCase(selectedIcon.name)} + {iconTitle}
diff --git a/src/app/components/icons/IconGrid.tsx b/src/app/components/icons/IconGrid.tsx index ba2c94796..1c4d2068f 100644 --- a/src/app/components/icons/IconGrid.tsx +++ b/src/app/components/icons/IconGrid.tsx @@ -3,7 +3,7 @@ import { Grid, makeStyles, Theme, Typography } from '@material-ui/core'; import clsx from 'clsx'; import color from 'color'; import { IconType } from '../../../__types__'; -import { unCamelCase } from '../../shared'; +import { snakeToTitleCase } from '../../shared'; import { useSelectedIcon } from '../../contexts/selectedIconContextProvider'; type IconGridProps = { @@ -47,7 +47,7 @@ const Icons: React.FC = (props) => { .map((icon) => { const isSelected = selected && selected.name === icon.name && selected.isMaterial === icon.isMaterial; - const iconDisplayName = unCamelCase(icon.name); + const iconDisplayName = snakeToTitleCase(icon.iconFontKey); return ( => { - const formattedIconName = `${getSnakeCase(iconName)}_${colorName}_${size}dp.png`; - const iconSrc = `https://raw.githubusercontent.com/brightlayer-ui/icons/dev/png/png${size}/${formattedIconName}`; + const formattedIconName = `${iconName}_${colorName}_${size}dp.png`; + const iconSrc = `https://raw.githubusercontent.com/brightlayer-ui/icons/master/png/png${size}/${formattedIconName}`; const icon = await fetch(iconSrc); const iconBlog = await icon.blob(); const iconUrl = URL.createObjectURL(iconBlog); @@ -98,7 +97,7 @@ export const downloadSvg = async (icon: IconType, color: IconColor, size: IconSi const iconData = (await getSvg(getSnakeCase(icon.name), 'material')) || ''; createDownloadSvgElement(icon, iconData, color, size); } else { - const iconData = (await getSvg(getSnakeCase(icon.name), 'brightlayer-ui')) || ''; + const iconData = (await getSvg(icon.iconFontKey, 'brightlayer-ui')) || ''; createDownloadSvgElement(icon, iconData, color, size); } }; @@ -108,7 +107,7 @@ export const downloadPng = (icon: IconType, color: IconColor, size: IconSize): v createDownloadMaterialPngElement(icon.iconFontKey, color, size); } else { const colorName = color === 'white' ? `${color}50` : `${color}500`; - void createDownloadPxbPngElement(icon.name, colorName, size); + void createDownloadBluiPngElement(icon.iconFontKey, colorName, size); } }; @@ -120,10 +119,10 @@ export const getIconFontCopyText: GetCopyTextFn = (framework, icon) => { if (icon.isMaterial) { return `import Icon from '@material-ui/core/Icon';\n${icon.iconFontKey}`; } - return ``; + return ``; case 'angular': if (icon.isMaterial) return `${icon.iconFontKey}`; - return ``; + return ``; default: return ''; } @@ -141,12 +140,12 @@ export const getIconFontSnippet: GetSnippetFn = (framework, icon) => { {`${icon.iconFontKey}`} )} - {!icon.isMaterial && ``} + {!icon.isMaterial && ``} ); case 'angular': if (icon.isMaterial) return <>{`${icon.iconFontKey}`}; - return <>{``}; + return <>{``}; default: return <>; } @@ -158,23 +157,21 @@ export const getIconSvgCopyText: GetCopyTextFn = (framework, icon) => { if (icon.isMaterial) { return `import ${icon.name}Icon from '@material-ui/icons/${icon.name}';\n<${icon.name}Icon>`; } - return `import ${getMuiIconName(icon.name)} from '@brightlayer-ui/icons-svg/${getSnakeCase( - icon.name - )}.svg';\n`; + return `import ${getMuiIconName(icon.name)} from '@brightlayer-ui/icons-svg/${ + icon.iconFontKey + }.svg';\n`; case 'angular': if (icon.isMaterial) { return `${icon.iconFontKey}`; } - return ``; + return ``; case 'react-native': if (icon.isMaterial) { return `import MatIcon from 'react-native-vector-icons/MaterialIcons';\n;`; } - return `import BLUIIcon from '@brightlayer-ui/react-native-vector-icons';\n;`; + return `import BLUIIcon from '@brightlayer-ui/react-native-vector-icons';\n;`; default: return ''; } @@ -187,9 +184,9 @@ export const getIconSvgSnippet: GetSnippetFn = (framework, icon) => { <> {!icon.isMaterial && ( <> - {`import ${getMuiIconName(icon.name)} from '@brightlayer-ui/icons-svg/${getSnakeCase( - icon.name - )}.svg';`} + {`import ${getMuiIconName(icon.name)} from '@brightlayer-ui/icons-svg/${ + icon.iconFontKey + }.svg';`}
{``} @@ -200,7 +197,7 @@ export const getIconSvgSnippet: GetSnippetFn = (framework, icon) => { return ( <> {icon.isMaterial && `${icon.iconFontKey}`} - {!icon.isMaterial && ``} + {!icon.isMaterial && ``} ); case 'react-native': @@ -217,7 +214,7 @@ export const getIconSvgSnippet: GetSnippetFn = (framework, icon) => { <> {`import BLUIIcon from '@brightlayer-ui/react-native-vector-icons';`}
- {``} + {``} )} diff --git a/src/app/components/navigation/TOC.tsx b/src/app/components/navigation/TOC.tsx index 0f7b6de16..e84c16500 100644 --- a/src/app/components/navigation/TOC.tsx +++ b/src/app/components/navigation/TOC.tsx @@ -1,12 +1,12 @@ import React, { useCallback, useEffect, useState } from 'react'; -import { makeStyles, createStyles, Theme, Typography } from '@material-ui/core'; +import { makeStyles, createStyles, Theme, Typography, useTheme, useMediaQuery } from '@material-ui/core'; import { Link, useLocation } from 'react-router-dom'; -import { DRAWER_WIDTH, TOC_WIDTH, PAGE_WIDTH } from '../../shared'; +import { DRAWER_WIDTH, TOC_WIDTH, PAGE_WIDTH, getHash } from '../../shared'; import clsx from 'clsx'; import { useTOC } from '../../hooks/useTOC'; type ToCProps = { - anchors: Array<{ title: string; hash: string }>; + anchors: Array<{ title: string; hash?: string; depth?: number }>; /** * Whether the first anchor passed in is pointing to the page top @@ -71,6 +71,8 @@ const useStyles = makeStyles((theme: Theme) => export const TOC: React.FC = (props) => { const { anchors, isFirstAnchorIntro = true } = props; const classes = useStyles(); + const theme = useTheme(); + const isLgUp = useMediaQuery(theme.breakpoints.up('lg')); const { pathname, hash } = useLocation(); const [activeSection, setActiveSection] = useState(0); const [sectionOffsetTop, setSectionOffsetTop] = useState([]); @@ -80,7 +82,8 @@ export const TOC: React.FC = (props) => { // go through all the section anchors, read their offsetTop values const anchorTops: number[] = []; anchors.forEach((anchor) => { - const sectionAnchor = document.getElementById(anchor.hash.slice(1)); + const anchorHash = anchor.hash?.slice(1) || getHash(anchor.title); + const sectionAnchor = document.getElementById(anchorHash); if (sectionAnchor) { anchorTops.push(sectionAnchor.offsetTop - 200); // add a bit more scroll padding } else { @@ -151,19 +154,23 @@ export const TOC: React.FC = (props) => { On This Page - {anchors.map((anchor, index) => ( - - {anchor.title} - - ))} + {anchors.map( + (anchor, index) => + (isLgUp || !anchor.depth) && ( + + {anchor.title} + + ) + )}
); }; diff --git a/src/app/pages/SearchBar.tsx b/src/app/pages/SearchBar.tsx index 136b2ed2a..0709bd146 100644 --- a/src/app/pages/SearchBar.tsx +++ b/src/app/pages/SearchBar.tsx @@ -255,11 +255,13 @@ export const SearchBar: React.FC = (props) => { field.remove(); } }} + inputProps={{ style: { height: theme.spacing(7) } }} /> )} { dismissSearchBar(); + setInputString(''); }} edge={'end'} > diff --git a/src/app/shared/utilities.tsx b/src/app/shared/utilities.tsx index 19dc8feee..86d1e26b5 100644 --- a/src/app/shared/utilities.tsx +++ b/src/app/shared/utilities.tsx @@ -1,6 +1,6 @@ -export const getSnakeCase = (str: string): string => str.replace(/[A-Z]/g, '_$&').toLowerCase().substr(1); +export const getSnakeCase = (str: string): string => str.replace(/[A-Z]/g, '_$&').toLowerCase().slice(1); -export const getKebabCase = (str: string): string => str.replace(/[A-Z]/g, '-$&').toLowerCase().substr(1); +export const getKebabCase = (str: string): string => str.replace(/[A-Z]/g, '-$&').toLowerCase().slice(1); export const snakeToKebabCase = (str: string): string => str.replaceAll('_', '-').toLowerCase(); @@ -12,9 +12,12 @@ export const unCamelCase = (val: string): string => .replace(/^./, (str) => str.toUpperCase()); export const titleCase = (val: string): string => - val.replace('-', ' ').replace(/\w\S*/g, (txt) => txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase()); + val.replace('-', ' ').replace(/\w\S*/g, (txt) => txt.charAt(0).toUpperCase() + txt.slice(1).toLowerCase()); -export const capitalize = (val: string): string => val.charAt(0).toUpperCase() + val.substr(1); +export const snakeToTitleCase = (str: string): string => + str.replaceAll('_', ' ').replace(/\w\S*/g, (txt) => txt.charAt(0).toUpperCase() + txt.slice(1).toLowerCase()); + +export const capitalize = (val: string): string => val.charAt(0).toUpperCase() + val.slice(1); // https://stackoverflow.com/questions/400212/how-do-i-copy-to-the-clipboard-in-javascript function fallbackCopyTextToClipboard(text: string): void { @@ -41,3 +44,14 @@ export function copyTextToClipboard(text: string, onCopied?: () => void): void { void navigator.clipboard.writeText(text); if (onCopied) onCopied(); } + +/** + * Get markdown title hash for markdown doc titles. + * @param str The title string to be hashed + * @returns The hashed string to be used in a URL, all lowercase + */ +export const getHash = (str: string): string => + str + .replace(/ /g, '-') + .replace(/[#?/&]/g, '') + .toLowerCase(); diff --git a/src/database/index-database.json b/src/database/index-database.json index 087fefbdc..ddf5a3ca4 100644 --- a/src/database/index-database.json +++ b/src/database/index-database.json @@ -1,11494 +1 @@ -{ - "title": { - "brightlayer": [{ "": 1 }, { "/overview": 1 }, { "/development/cli": 1 }], - "ui": [{ "": 1 }, { "/overview": 1 }, { "/development/cli": 1 }], - "powering": [{ "": 1 }], - "teams": [{ "": 1 }], - "to": [{ "": 1 }, { "/get-started/new-project": 1 }], - "make": [{ "": 1 }], - "what": [{ "": 1 }, { "/overview": 1 }], - "matters": [{ "": 1 }], - "is": [{ "/overview": 1 }], - "where": [{ "/get-started/new-project": 1 }], - "begin": [{ "/get-started/new-project": 1 }], - "web": [{ "/get-started/web": 1 }], - "apps": [{ "/get-started/web": 1 }, { "/get-started/mobile": 1 }], - "mobile": [{ "/get-started/mobile": 1 }], - "environment": [{ "/development/environment": 1 }], - "setup": [{ "/development/environment": 1 }], - "cli": [{ "/development/cli": 1 }], - "introduction": [ - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/intro": 1 } - ], - "angular": [{ "/development/frameworks-web/angular": 1 }], - "guide": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/style": 1 } - ], - "react": [{ "/development/frameworks-web/react": 1 }, { "/development/frameworks-mobile/react-native": 1 }], - "ionic": [{ "/development/frameworks-mobile/ionic": 1 }], - "native": [{ "/development/frameworks-mobile/react-native": 1 }], - "testing": [{ "/development/testing": 1 }], - "design": [{ "/design/anatomy": 1 }, { "/patterns": 1 }], - "system": [{ "/design/anatomy": 1 }], - "anatomy": [{ "/design/anatomy": 1 }], - "accessibility": [{ "/design/accessibility": 1 }], - "websites": [{ "/design/websites": 1 }], - "project": [{ "/design/project-identity": 1 }], - "identity": [{ "/design/project-identity": 1 }], - "patterns": [{ "/patterns": 1 }], - "account": [{ "/patterns/account-menu": 1 }], - "menu": [{ "/patterns/account-menu": 1 }], - "app": [{ "/patterns/appbar": 1 }], - "bars": [{ "/patterns/appbar": 1 }], - "empty": [{ "/patterns/empty-states": 1 }], - "states": [{ "/patterns/empty-states": 1 }], - "forms": [{ "/patterns/forms": 1 }], - "and": [{ "/patterns/forms": 1 }], - "validation": [{ "/patterns/forms": 1 }], - "internationalization": [{ "/patterns/internationalization": 1 }], - "lists": [{ "/patterns/lists": 1 }], - "tables": [{ "/patterns/lists": 1 }], - "loading": [{ "/patterns/loading": 1 }], - "waiting": [{ "/patterns/loading": 1 }], - "navigation": [{ "/patterns/navigation": 1 }], - "overlays": [{ "/patterns/overlay": 1 }], - "steppers": [{ "/patterns/steppers": 1 }], - "user": [{ "/patterns/user-auth": 1 }], - "authentication": [{ "/patterns/user-auth": 1 }], - "visualizations": [{ "/patterns/visualizations": 1 }], - "style": [{ "/style": 1 }], - "color": [{ "/style/color": 1 }], - "palette": [{ "/style/color": 1 }], - "iconography": [{ "/style/iconography": 1 }], - "illustrations": [{ "/style/illustrations": 1 }], - "typography": [{ "/style/typography": 1 }], - "themes": [{ "/style/themes": 1 }], - "community": [{ "/community": 1 }], - "licensing": [{ "/community/license": 1 }], - "innersourcing": [{ "/community/innersourcing": 1 }], - "report": [{ "/community/bugs": 1 }], - "bugs": [{ "/community/bugs": 1 }], - "request": [{ "/community/features": 1 }], - "features": [{ "/community/features": 1 }], - "faq": [{ "/community/faq": 1 }], - "our": [{ "/community/our-team": 1 }], - "team": [{ "/community/our-team": 1 }], - "contact": [{ "/community/contactus": 1 }], - "us": [{ "/community/contactus": 1 }], - "developer": [{ "/resources/developer": 1 }], - "resources": [{ "/resources/developer": 1 }, { "/resources/designer": 1 }], - "designer": [{ "/resources/designer": 1 }], - "roadmap": [{ "/roadmap": 1 }], - "release": [{ "/release-notes": 1 }], - "notes": [{ "/release-notes": 1 }], - "attributions": [{ "/attributions": 1 }] - }, - "text": { - "0": [ - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/accessibility": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/community/our-team": 1 } - ], - "1": [{ "/style/illustrations": 2 }, { "/style/iconography": 1 }, { "/style/typography": 1 }], - "2": [ - { "/style/illustrations": 2 }, - { "/design/accessibility": 1 }, - { "/style/typography": 1 }, - { "/community/our-team": 1 } - ], - "3": [{ "/community/license": 2 }, { "/style/illustrations": 1 }], - "5": [{ "/development/environment": 1 }], - "6": [{ "/development/environment": 1 }], - "7": [{ "/patterns/lists": 1 }], - "9": [{ "/style/illustrations": 1 }], - "11": [{ "/development/frameworks-web/angular": 1 }, { "/development/frameworks-web/react": 1 }], - "16": [{ "/development/frameworks-web/react": 1 }, { "/style/illustrations": 1 }], - "48": [{ "/style/iconography": 1 }], - "50": [ - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/style/illustrations": 1 }, - { "/style/themes": 1 } - ], - "80": [{ "/design/intro": 1 }], - "200": [{ "/style/themes": 2 }], - "500": [ - { "/design/accessibility": 4 }, - { "/style/themes": 3 }, - { "/style/color": 1 }, - { "/style/illustrations": 1 } - ], - "897": [{ "/style/typography": 1 }], - "900": [{ "/style/illustrations": 1 }], - "2008": [{ "/design/accessibility": 1 }], - "2011": [{ "/community/our-team": 1 }], - "2013": [{ "/community/our-team": 1 }], - "2015": [{ "/community/our-team": 1 }], - "2017": [{ "/community/our-team": 2 }], - "2018": [{ "/community/our-team": 2 }], - "2019": [{ "/community/our-team": 1 }], - "2020": [{ "/community/license": 1 }, { "/community/our-team": 1 }], - "2021": [{ "/development/frameworks-web/angular": 1 }, { "/development/frameworks-web/react": 1 }], - "8100": [{ "/development/frameworks-mobile/ionic": 1 }], - "keywords": [ - { "/overview": 1 }, - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/color": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 }, - { "/community/contactus": 1 }, - { "/resources/designer": 1 } - ], - "overview": [ - { "/overview": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/community/license": 1 }, - { "/community/faq": 1 } - ], - "brightlayer": [ - { "/development/frameworks-web/angular": 42 }, - { "/development/frameworks-web/react": 39 }, - { "/development/frameworks-mobile/react-native": 38 }, - { "/community/faq": 33 }, - { "/development/frameworks-mobile/ionic": 26 }, - { "/design/project-identity": 18 }, - { "/style/themes": 18 }, - { "/design/intro": 14 }, - { "/overview": 13 }, - { "/design/anatomy": 13 }, - { "/development/cli": 11 }, - { "/community/our-team": 10 }, - { "/style/typography": 8 }, - { "/patterns/visualizations": 7 }, - { "/patterns/lists": 6 }, - { "/style/color": 6 }, - { "/style/iconography": 6 }, - { "/community/innersourcing": 6 }, - { "/community/license": 5 }, - { "/design/accessibility": 4 }, - { "/design/websites": 4 }, - { "/patterns/account-menu": 4 }, - { "/community/bugs": 4 }, - { "/community/contactus": 4 }, - { "/development/frameworks-web/intro": 3 }, - { "/development/frameworks-mobile/intro": 3 }, - { "/patterns/appbar": 3 }, - { "/patterns/empty-states": 3 }, - { "/patterns/navigation": 3 }, - { "/patterns/user-auth": 3 }, - { "/get-started/web": 2 }, - { "/get-started/mobile": 2 }, - { "/development/testing": 2 }, - { "/patterns/steppers": 2 }, - { "/community/features": 2 }, - { "/development/environment": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/overlay": 1 }, - { "/style/illustrations": 1 }, - { "/resources/designer": 1 } - ], - "ui": [ - { "/development/frameworks-web/react": 54 }, - { "/development/frameworks-web/angular": 42 }, - { "/development/frameworks-mobile/react-native": 39 }, - { "/community/faq": 33 }, - { "/development/frameworks-mobile/ionic": 26 }, - { "/style/themes": 21 }, - { "/design/project-identity": 18 }, - { "/design/intro": 16 }, - { "/design/anatomy": 14 }, - { "/overview": 13 }, - { "/development/cli": 11 }, - { "/community/our-team": 10 }, - { "/patterns/lists": 9 }, - { "/patterns/visualizations": 9 }, - { "/style/color": 9 }, - { "/style/typography": 8 }, - { "/patterns/internationalization": 7 }, - { "/development/frameworks-web/intro": 6 }, - { "/development/frameworks-mobile/intro": 6 }, - { "/style/iconography": 6 }, - { "/community/innersourcing": 6 }, - { "/patterns/account-menu": 5 }, - { "/community/license": 5 }, - { "/community/bugs": 5 }, - { "/design/accessibility": 4 }, - { "/design/websites": 4 }, - { "/patterns/appbar": 4 }, - { "/patterns/navigation": 4 }, - { "/community/contactus": 4 }, - { "/patterns/empty-states": 3 }, - { "/patterns/overlay": 3 }, - { "/patterns/steppers": 3 }, - { "/patterns/user-auth": 3 }, - { "/community/features": 3 }, - { "/get-started/web": 2 }, - { "/get-started/mobile": 2 }, - { "/development/testing": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/loading": 2 }, - { "/style/illustrations": 2 }, - { "/development/environment": 1 }, - { "/resources/designer": 1 } - ], - "design": [ - { "/design/project-identity": 18 }, - { "/design/anatomy": 16 }, - { "/design/websites": 16 }, - { "/design/intro": 14 }, - { "/overview": 10 }, - { "/community/faq": 7 }, - { "/community/our-team": 7 }, - { "/get-started/web": 6 }, - { "/style/typography": 6 }, - { "/patterns/forms": 5 }, - { "/patterns/lists": 4 }, - { "/get-started/mobile": 3 }, - { "/patterns/account-menu": 3 }, - { "/patterns/appbar": 3 }, - { "/patterns/empty-states": 3 }, - { "/patterns/steppers": 3 }, - { "/style/iconography": 3 }, - { "/style/themes": 3 }, - { "/community/innersourcing": 3 }, - { "/design/accessibility": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/loading": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/overlay": 2 }, - { "/style/illustrations": 2 }, - { "/community/bugs": 2 }, - { "/resources/designer": 2 }, - { "/get-started/new-project": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/testing": 1 }, - { "/patterns/user-auth": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/color": 1 }, - { "/community/features": 1 } - ], - "development": [ - { "/development/environment": 7 }, - { "/community/faq": 7 }, - { "/overview": 6 }, - { "/get-started/mobile": 5 }, - { "/development/frameworks-mobile/react-native": 5 }, - { "/development/testing": 4 }, - { "/development/frameworks-web/intro": 3 }, - { "/development/frameworks-mobile/intro": 3 }, - { "/development/frameworks-mobile/ionic": 3 }, - { "/community/innersourcing": 2 }, - { "/patterns/internationalization": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/community/bugs": 1 }, - { "/community/our-team": 1 } - ], - "introduction": [ - { "/get-started/web": 2 }, - { "/overview": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 } - ], - "welcome": [ - { "/overview": 1 }, - { "/development/environment": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/empty-states": 1 }, - { "/community/faq": 1 }, - { "/community/contactus": 1 } - ], - "to": [ - { "/community/faq": 59 }, - { "/development/frameworks-mobile/react-native": 53 }, - { "/development/testing": 42 }, - { "/design/websites": 40 }, - { "/design/project-identity": 40 }, - { "/patterns/user-auth": 38 }, - { "/design/accessibility": 32 }, - { "/patterns/internationalization": 31 }, - { "/design/intro": 29 }, - { "/patterns/forms": 28 }, - { "/development/environment": 26 }, - { "/development/frameworks-mobile/ionic": 24 }, - { "/patterns/navigation": 22 }, - { "/development/frameworks-web/react": 21 }, - { "/patterns/lists": 21 }, - { "/patterns/loading": 21 }, - { "/get-started/new-project": 20 }, - { "/development/frameworks-web/angular": 20 }, - { "/patterns/empty-states": 20 }, - { "/style/illustrations": 20 }, - { "/patterns/appbar": 19 }, - { "/community/innersourcing": 19 }, - { "/overview": 18 }, - { "/patterns/account-menu": 18 }, - { "/development/frameworks-mobile/intro": 17 }, - { "/patterns/overlay": 16 }, - { "/style/color": 16 }, - { "/get-started/mobile": 15 }, - { "/design/anatomy": 14 }, - { "/style/typography": 14 }, - { "/style/iconography": 13 }, - { "/development/frameworks-web/intro": 12 }, - { "/get-started/web": 11 }, - { "/community/license": 9 }, - { "/patterns/steppers": 8 }, - { "/community/our-team": 7 }, - { "/patterns/visualizations": 6 }, - { "/style/themes": 6 }, - { "/community/features": 5 }, - { "/community/contactus": 5 }, - { "/community/bugs": 4 }, - { "/development/cli": 3 }, - { "/resources/designer": 2 } - ], - "is": [ - { "/development/testing": 33 }, - { "/patterns/forms": 17 }, - { "/design/websites": 14 }, - { "/patterns/loading": 14 }, - { "/patterns/appbar": 13 }, - { "/patterns/navigation": 12 }, - { "/community/faq": 11 }, - { "/design/project-identity": 10 }, - { "/patterns/user-auth": 10 }, - { "/style/themes": 10 }, - { "/development/frameworks-mobile/react-native": 9 }, - { "/get-started/new-project": 7 }, - { "/design/intro": 7 }, - { "/patterns/account-menu": 7 }, - { "/patterns/empty-states": 7 }, - { "/patterns/internationalization": 7 }, - { "/patterns/lists": 6 }, - { "/patterns/steppers": 6 }, - { "/style/typography": 6 }, - { "/community/innersourcing": 6 }, - { "/overview": 5 }, - { "/development/environment": 5 }, - { "/development/frameworks-mobile/intro": 5 }, - { "/development/frameworks-mobile/ionic": 5 }, - { "/style/color": 5 }, - { "/get-started/mobile": 4 }, - { "/design/anatomy": 4 }, - { "/design/accessibility": 4 }, - { "/style/iconography": 4 }, - { "/get-started/web": 3 }, - { "/development/frameworks-web/intro": 3 }, - { "/patterns/visualizations": 3 }, - { "/community/license": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/community/bugs": 2 }, - { "/development/cli": 1 }, - { "/patterns/overlay": 1 }, - { "/style/illustrations": 1 }, - { "/community/contactus": 1 } - ], - "complete": [ - { "/patterns/appbar": 2 }, - { "/overview": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/style/typography": 1 } - ], - "system": [ - { "/design/anatomy": 6 }, - { "/design/project-identity": 6 }, - { "/design/intro": 4 }, - { "/overview": 3 }, - { "/development/testing": 3 }, - { "/development/environment": 2 }, - { "/design/websites": 2 }, - { "/patterns/user-auth": 2 }, - { "/community/bugs": 2 }, - { "/community/our-team": 2 }, - { "/community/contactus": 2 }, - { "/get-started/web": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 } - ], - "for": [ - { "/development/frameworks-mobile/react-native": 28 }, - { "/community/faq": 28 }, - { "/development/testing": 22 }, - { "/design/accessibility": 22 }, - { "/patterns/internationalization": 20 }, - { "/design/websites": 19 }, - { "/design/project-identity": 17 }, - { "/patterns/user-auth": 17 }, - { "/patterns/forms": 14 }, - { "/style/color": 13 }, - { "/development/frameworks-web/react": 11 }, - { "/development/frameworks-mobile/ionic": 11 }, - { "/design/intro": 11 }, - { "/style/themes": 11 }, - { "/development/environment": 10 }, - { "/style/illustrations": 10 }, - { "/get-started/mobile": 9 }, - { "/development/frameworks-web/angular": 9 }, - { "/patterns/appbar": 9 }, - { "/community/innersourcing": 9 }, - { "/development/frameworks-mobile/intro": 8 }, - { "/patterns/navigation": 8 }, - { "/patterns/lists": 7 }, - { "/get-started/web": 6 }, - { "/development/frameworks-web/intro": 6 }, - { "/patterns/empty-states": 6 }, - { "/patterns/overlay": 6 }, - { "/style/typography": 6 }, - { "/overview": 5 }, - { "/design/anatomy": 5 }, - { "/development/cli": 4 }, - { "/patterns/account-menu": 4 }, - { "/patterns/loading": 4 }, - { "/patterns/steppers": 4 }, - { "/community/our-team": 4 }, - { "/patterns/visualizations": 3 }, - { "/community/bugs": 3 }, - { "/style/iconography": 2 }, - { "/community/license": 2 }, - { "/community/contactus": 2 }, - { "/get-started/new-project": 1 } - ], - "web": [ - { "/get-started/new-project": 10 }, - { "/get-started/web": 9 }, - { "/design/websites": 8 }, - { "/get-started/mobile": 6 }, - { "/design/accessibility": 6 }, - { "/development/frameworks-web/intro": 4 }, - { "/development/frameworks-mobile/ionic": 4 }, - { "/development/frameworks-web/angular": 3 }, - { "/development/frameworks-web/react": 3 }, - { "/development/frameworks-mobile/intro": 3 }, - { "/community/faq": 3 }, - { "/overview": 2 }, - { "/development/testing": 2 }, - { "/design/intro": 2 }, - { "/patterns/internationalization": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/appbar": 1 }, - { "/style/typography": 1 }, - { "/community/our-team": 1 } - ], - "and": [ - { "/development/testing": 42 }, - { "/design/intro": 28 }, - { "/design/websites": 22 }, - { "/design/project-identity": 21 }, - { "/community/faq": 21 }, - { "/development/frameworks-mobile/react-native": 18 }, - { "/design/accessibility": 18 }, - { "/patterns/internationalization": 18 }, - { "/patterns/navigation": 17 }, - { "/style/themes": 16 }, - { "/patterns/user-auth": 14 }, - { "/design/anatomy": 13 }, - { "/patterns/lists": 13 }, - { "/community/license": 13 }, - { "/community/innersourcing": 13 }, - { "/development/frameworks-web/angular": 12 }, - { "/development/frameworks-web/react": 12 }, - { "/style/color": 11 }, - { "/get-started/mobile": 10 }, - { "/patterns/forms": 10 }, - { "/style/illustrations": 10 }, - { "/overview": 9 }, - { "/development/environment": 9 }, - { "/patterns/account-menu": 9 }, - { "/patterns/overlay": 9 }, - { "/style/typography": 9 }, - { "/development/cli": 8 }, - { "/development/frameworks-mobile/intro": 8 }, - { "/development/frameworks-mobile/ionic": 8 }, - { "/patterns/appbar": 7 }, - { "/patterns/visualizations": 7 }, - { "/community/our-team": 7 }, - { "/get-started/new-project": 6 }, - { "/get-started/web": 6 }, - { "/development/frameworks-web/intro": 6 }, - { "/patterns/loading": 6 }, - { "/style/iconography": 5 }, - { "/community/bugs": 5 }, - { "/patterns/steppers": 4 }, - { "/community/contactus": 4 }, - { "/patterns/empty-states": 3 }, - { "/community/features": 3 }, - { "/resources/designer": 2 } - ], - "mobile": [ - { "/get-started/mobile": 15 }, - { "/get-started/new-project": 12 }, - { "/design/intro": 7 }, - { "/development/frameworks-mobile/intro": 6 }, - { "/patterns/forms": 6 }, - { "/patterns/navigation": 6 }, - { "/patterns/lists": 5 }, - { "/patterns/steppers": 4 }, - { "/get-started/web": 3 }, - { "/development/frameworks-mobile/ionic": 3 }, - { "/design/websites": 3 }, - { "/patterns/account-menu": 3 }, - { "/patterns/appbar": 3 }, - { "/style/illustrations": 3 }, - { "/overview": 2 }, - { "/development/environment": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/community/faq": 2 }, - { "/development/testing": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/community/our-team": 1 } - ], - "applications": [ - { "/design/project-identity": 8 }, - { "/get-started/web": 6 }, - { "/patterns/internationalization": 6 }, - { "/community/faq": 6 }, - { "/get-started/new-project": 5 }, - { "/get-started/mobile": 5 }, - { "/design/websites": 5 }, - { "/development/testing": 4 }, - { "/design/accessibility": 4 }, - { "/patterns/navigation": 4 }, - { "/overview": 3 }, - { "/design/intro": 3 }, - { "/patterns/lists": 3 }, - { "/patterns/user-auth": 3 }, - { "/style/themes": 3 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/anatomy": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/overlay": 2 }, - { "/patterns/visualizations": 2 }, - { "/style/color": 2 }, - { "/style/typography": 2 }, - { "/community/license": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/forms": 1 }, - { "/style/illustrations": 1 }, - { "/community/innersourcing": 1 }, - { "/community/our-team": 1 } - ], - "this": [ - { "/patterns/appbar": 12 }, - { "/development/testing": 10 }, - { "/patterns/navigation": 10 }, - { "/community/faq": 10 }, - { "/patterns/account-menu": 9 }, - { "/patterns/user-auth": 9 }, - { "/patterns/forms": 8 }, - { "/community/license": 7 }, - { "/development/frameworks-mobile/react-native": 6 }, - { "/overview": 5 }, - { "/patterns/loading": 5 }, - { "/get-started/new-project": 4 }, - { "/design/project-identity": 4 }, - { "/patterns/empty-states": 4 }, - { "/patterns/lists": 4 }, - { "/community/innersourcing": 4 }, - { "/get-started/mobile": 3 }, - { "/development/environment": 3 }, - { "/design/intro": 3 }, - { "/patterns/internationalization": 3 }, - { "/patterns/overlay": 3 }, - { "/patterns/steppers": 3 }, - { "/style/color": 3 }, - { "/style/typography": 3 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/design/anatomy": 2 }, - { "/design/accessibility": 2 }, - { "/style/illustrations": 2 }, - { "/style/themes": 2 }, - { "/community/bugs": 2 }, - { "/get-started/web": 1 }, - { "/design/websites": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/iconography": 1 } - ], - "will": [ - { "/development/frameworks-mobile/react-native": 13 }, - { "/community/faq": 10 }, - { "/development/frameworks-web/angular": 9 }, - { "/development/environment": 8 }, - { "/development/frameworks-mobile/ionic": 8 }, - { "/community/innersourcing": 8 }, - { "/get-started/new-project": 7 }, - { "/development/frameworks-web/react": 7 }, - { "/development/frameworks-mobile/intro": 5 }, - { "/development/testing": 5 }, - { "/design/project-identity": 5 }, - { "/patterns/appbar": 5 }, - { "/overview": 4 }, - { "/design/intro": 4 }, - { "/patterns/loading": 4 }, - { "/style/illustrations": 4 }, - { "/development/cli": 3 }, - { "/design/websites": 3 }, - { "/patterns/empty-states": 3 }, - { "/patterns/user-auth": 3 }, - { "/patterns/account-menu": 2 }, - { "/style/color": 2 }, - { "/style/iconography": 2 }, - { "/style/typography": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/steppers": 1 }, - { "/community/license": 1 } - ], - "help": [ - { "/development/testing": 3 }, - { "/design/websites": 3 }, - { "/overview": 2 }, - { "/design/intro": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/internationalization": 2 }, - { "/community/faq": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/loading": 1 }, - { "/style/illustrations": 1 }, - { "/community/bugs": 1 }, - { "/community/contactus": 1 } - ], - "your": [ - { "/development/frameworks-mobile/react-native": 29 }, - { "/design/project-identity": 29 }, - { "/style/illustrations": 27 }, - { "/development/testing": 23 }, - { "/design/websites": 22 }, - { "/development/environment": 21 }, - { "/community/faq": 20 }, - { "/development/frameworks-mobile/ionic": 19 }, - { "/patterns/internationalization": 16 }, - { "/development/frameworks-mobile/intro": 15 }, - { "/development/frameworks-web/angular": 14 }, - { "/design/intro": 12 }, - { "/development/frameworks-web/react": 11 }, - { "/design/accessibility": 10 }, - { "/patterns/loading": 9 }, - { "/patterns/forms": 8 }, - { "/style/iconography": 7 }, - { "/style/typography": 7 }, - { "/patterns/account-menu": 6 }, - { "/patterns/navigation": 6 }, - { "/patterns/user-auth": 6 }, - { "/overview": 4 }, - { "/get-started/web": 4 }, - { "/get-started/mobile": 4 }, - { "/patterns/empty-states": 4 }, - { "/community/innersourcing": 4 }, - { "/development/cli": 3 }, - { "/development/frameworks-web/intro": 3 }, - { "/patterns/appbar": 3 }, - { "/patterns/lists": 3 }, - { "/community/bugs": 3 }, - { "/resources/designer": 3 }, - { "/patterns/overlay": 2 }, - { "/patterns/steppers": 2 }, - { "/style/color": 2 }, - { "/style/themes": 2 }, - { "/community/license": 2 }, - { "/community/contactus": 2 }, - { "/get-started/new-project": 1 }, - { "/community/features": 1 } - ], - "team": [ - { "/community/faq": 10 }, - { "/community/our-team": 7 }, - { "/overview": 3 }, - { "/community/contactus": 3 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/style/iconography": 1 }, - { "/community/innersourcing": 1 } - ], - "build": [ - { "/community/faq": 6 }, - { "/development/frameworks-mobile/ionic": 4 }, - { "/design/project-identity": 4 }, - { "/overview": 3 }, - { "/style/iconography": 3 }, - { "/get-started/new-project": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/testing": 1 }, - { "/community/innersourcing": 1 }, - { "/resources/designer": 1 } - ], - "beautiful": [{ "/overview": 1 }], - "that": [ - { "/development/testing": 22 }, - { "/community/faq": 22 }, - { "/design/project-identity": 17 }, - { "/design/accessibility": 11 }, - { "/design/intro": 9 }, - { "/style/typography": 8 }, - { "/development/frameworks-mobile/react-native": 6 }, - { "/design/anatomy": 6 }, - { "/design/websites": 6 }, - { "/patterns/forms": 6 }, - { "/patterns/internationalization": 6 }, - { "/patterns/loading": 6 }, - { "/patterns/navigation": 6 }, - { "/style/illustrations": 6 }, - { "/development/environment": 5 }, - { "/overview": 4 }, - { "/get-started/mobile": 4 }, - { "/patterns/empty-states": 4 }, - { "/patterns/overlay": 4 }, - { "/patterns/steppers": 4 }, - { "/style/color": 4 }, - { "/style/iconography": 4 }, - { "/community/innersourcing": 4 }, - { "/get-started/new-project": 3 }, - { "/get-started/web": 3 }, - { "/patterns/appbar": 3 }, - { "/patterns/lists": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/patterns/user-auth": 2 }, - { "/patterns/visualizations": 2 }, - { "/style/themes": 2 }, - { "/community/license": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/resources/designer": 1 } - ], - "adhere": [ - { "/get-started/mobile": 2 }, - { "/overview": 1 }, - { "/design/accessibility": 1 }, - { "/style/illustrations": 1 } - ], - "our": [ - { "/community/faq": 17 }, - { "/community/innersourcing": 10 }, - { "/style/themes": 9 }, - { "/overview": 6 }, - { "/development/frameworks-mobile/react-native": 5 }, - { "/design/intro": 3 }, - { "/design/project-identity": 3 }, - { "/community/license": 3 }, - { "/get-started/new-project": 2 }, - { "/get-started/mobile": 2 }, - { "/development/environment": 2 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/user-auth": 2 }, - { "/style/color": 2 }, - { "/style/iconography": 2 }, - { "/get-started/web": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/websites": 1 }, - { "/patterns/appbar": 1 }, - { "/community/features": 1 }, - { "/resources/designer": 1 } - ], - "guidelines": [ - { "/overview": 4 }, - { "/design/intro": 4 }, - { "/get-started/mobile": 3 }, - { "/design/accessibility": 3 }, - { "/design/project-identity": 2 }, - { "/style/iconography": 2 }, - { "/style/typography": 2 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/steppers": 1 }, - { "/style/illustrations": 1 }, - { "/community/innersourcing": 1 } - ], - "while": [ - { "/community/faq": 3 }, - { "/patterns/loading": 2 }, - { "/overview": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 } - ], - "ensuring": [{ "/overview": 1 }, { "/design/websites": 1 }, { "/community/faq": 1 }], - "flexibility": [ - { "/overview": 2 }, - { "/get-started/web": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 }, - { "/community/faq": 1 } - ], - "code": [ - { "/development/testing": 13 }, - { "/community/innersourcing": 11 }, - { "/development/frameworks-mobile/react-native": 6 }, - { "/get-started/mobile": 5 }, - { "/development/frameworks-web/angular": 4 }, - { "/development/frameworks-web/react": 4 }, - { "/development/frameworks-mobile/intro": 3 }, - { "/development/frameworks-mobile/ionic": 3 }, - { "/patterns/user-auth": 3 }, - { "/overview": 2 }, - { "/development/environment": 2 }, - { "/patterns/forms": 2 }, - { "/community/faq": 2 }, - { "/get-started/web": 1 }, - { "/development/cli": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/lists": 1 }, - { "/style/illustrations": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 }, - { "/community/contactus": 1 } - ], - "reusability": [ - { "/overview": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/community/faq": 1 } - ], - "check": [ - { "/development/testing": 4 }, - { "/overview": 2 }, - { "/get-started/new-project": 2 }, - { "/development/environment": 2 }, - { "/patterns/forms": 2 }, - { "/community/innersourcing": 2 }, - { "/community/faq": 2 }, - { "/get-started/mobile": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/design/accessibility": 1 }, - { "/style/illustrations": 1 }, - { "/community/license": 1 } - ], - "out": [ - { "/development/testing": 5 }, - { "/community/innersourcing": 4 }, - { "/community/faq": 3 }, - { "/overview": 2 }, - { "/get-started/new-project": 2 }, - { "/patterns/account-menu": 2 }, - { "/patterns/user-auth": 2 }, - { "/community/license": 2 }, - { "/get-started/web": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/design/intro": 1 }, - { "/design/websites": 1 }, - { "/patterns/appbar": 1 }, - { "/style/illustrations": 1 }, - { "/community/features": 1 }, - { "/community/our-team": 1 } - ], - "release": [{ "/community/faq": 3 }, { "/overview": 1 }, { "/community/innersourcing": 1 }], - "notes": [{ "/overview": 1 }], - "see": [ - { "/community/faq": 4 }, - { "/style/themes": 3 }, - { "/overview": 2 }, - { "/get-started/mobile": 2 }, - { "/patterns/account-menu": 2 }, - { "/style/illustrations": 2 }, - { "/community/features": 2 }, - { "/get-started/web": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/innersourcing": 1 } - ], - "what": [ - { "/community/faq": 6 }, - { "/patterns/empty-states": 5 }, - { "/get-started/new-project": 4 }, - { "/development/testing": 4 }, - { "/overview": 3 }, - { "/design/websites": 3 }, - { "/development/frameworks-web/intro": 2 }, - { "/design/intro": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/user-auth": 2 }, - { "/style/iconography": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/community/innersourcing": 1 }, - { "/community/our-team": 1 } - ], - "s": [ - { "/development/testing": 4 }, - { "/design/anatomy": 4 }, - { "/patterns/lists": 4 }, - { "/design/intro": 3 }, - { "/design/websites": 3 }, - { "/patterns/account-menu": 3 }, - { "/patterns/user-auth": 3 }, - { "/style/themes": 3 }, - { "/community/faq": 3 }, - { "/get-started/new-project": 2 }, - { "/get-started/web": 2 }, - { "/development/environment": 2 }, - { "/design/project-identity": 2 }, - { "/overview": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/navigation": 1 }, - { "/style/typography": 1 }, - { "/community/bugs": 1 } - ], - "new": [ - { "/get-started/new-project": 5 }, - { "/development/cli": 5 }, - { "/development/testing": 5 }, - { "/development/frameworks-mobile/react-native": 4 }, - { "/community/features": 4 }, - { "/overview": 3 }, - { "/development/frameworks-web/angular": 3 }, - { "/development/frameworks-web/react": 3 }, - { "/development/frameworks-mobile/ionic": 3 }, - { "/community/innersourcing": 3 }, - { "/community/faq": 3 }, - { "/community/our-team": 3 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/user-auth": 2 }, - { "/style/iconography": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/style/typography": 1 }, - { "/community/contactus": 1 } - ], - "in": [ - { "/development/testing": 26 }, - { "/patterns/internationalization": 23 }, - { "/patterns/account-menu": 18 }, - { "/patterns/forms": 17 }, - { "/community/faq": 16 }, - { "/design/project-identity": 15 }, - { "/design/websites": 14 }, - { "/patterns/lists": 14 }, - { "/patterns/overlay": 14 }, - { "/patterns/navigation": 13 }, - { "/patterns/appbar": 12 }, - { "/style/color": 12 }, - { "/community/license": 12 }, - { "/design/accessibility": 11 }, - { "/style/typography": 11 }, - { "/style/themes": 11 }, - { "/development/frameworks-mobile/react-native": 10 }, - { "/design/intro": 10 }, - { "/patterns/user-auth": 10 }, - { "/community/our-team": 10 }, - { "/design/anatomy": 9 }, - { "/development/environment": 8 }, - { "/development/frameworks-mobile/ionic": 7 }, - { "/patterns/loading": 7 }, - { "/patterns/empty-states": 6 }, - { "/get-started/mobile": 5 }, - { "/development/frameworks-web/angular": 5 }, - { "/patterns/steppers": 5 }, - { "/patterns/visualizations": 5 }, - { "/style/iconography": 5 }, - { "/style/illustrations": 5 }, - { "/community/innersourcing": 5 }, - { "/development/frameworks-web/intro": 4 }, - { "/overview": 3 }, - { "/get-started/new-project": 3 }, - { "/development/frameworks-web/react": 3 }, - { "/get-started/web": 2 }, - { "/development/cli": 2 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/community/bugs": 2 }, - { "/community/features": 2 } - ], - "latest": [{ "/overview": 1 }], - "version": [ - { "/patterns/internationalization": 2 }, - { "/style/typography": 2 }, - { "/overview": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 }, - { "/style/color": 1 }, - { "/style/illustrations": 1 }, - { "/community/bugs": 1 } - ], - "of": [ - { "/development/testing": 37 }, - { "/design/websites": 26 }, - { "/design/project-identity": 21 }, - { "/community/license": 20 }, - { "/community/faq": 18 }, - { "/patterns/forms": 17 }, - { "/patterns/navigation": 15 }, - { "/patterns/internationalization": 13 }, - { "/patterns/overlay": 13 }, - { "/patterns/lists": 12 }, - { "/patterns/loading": 12 }, - { "/style/typography": 11 }, - { "/get-started/web": 10 }, - { "/design/anatomy": 10 }, - { "/design/accessibility": 10 }, - { "/style/color": 10 }, - { "/community/innersourcing": 10 }, - { "/community/our-team": 10 }, - { "/development/environment": 9 }, - { "/development/frameworks-mobile/react-native": 9 }, - { "/design/intro": 9 }, - { "/patterns/appbar": 9 }, - { "/patterns/user-auth": 9 }, - { "/style/iconography": 9 }, - { "/overview": 8 }, - { "/development/frameworks-mobile/intro": 8 }, - { "/style/illustrations": 8 }, - { "/get-started/new-project": 7 }, - { "/development/frameworks-web/angular": 7 }, - { "/development/frameworks-web/react": 7 }, - { "/patterns/steppers": 7 }, - { "/style/themes": 7 }, - { "/community/bugs": 7 }, - { "/development/frameworks-web/intro": 6 }, - { "/patterns/account-menu": 5 }, - { "/patterns/empty-states": 5 }, - { "/get-started/mobile": 4 }, - { "/development/frameworks-mobile/ionic": 4 }, - { "/patterns/visualizations": 2 }, - { "/community/features": 1 } - ], - "goal": [ - { "/patterns/internationalization": 2 }, - { "/overview": 1 }, - { "/design/websites": 1 }, - { "/style/illustrations": 1 } - ], - "ensure": [ - { "/design/intro": 3 }, - { "/style/illustrations": 3 }, - { "/overview": 2 }, - { "/design/project-identity": 2 }, - { "/development/environment": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/navigation": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "consistency": [ - { "/design/project-identity": 5 }, - { "/design/websites": 4 }, - { "/community/faq": 3 }, - { "/design/intro": 2 }, - { "/overview": 1 }, - { "/style/illustrations": 1 } - ], - "between": [ - { "/design/intro": 3 }, - { "/design/project-identity": 3 }, - { "/patterns/appbar": 2 }, - { "/patterns/navigation": 2 }, - { "/style/themes": 2 }, - { "/overview": 1 }, - { "/get-started/new-project": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/illustrations": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "software": [ - { "/community/license": 4 }, - { "/patterns/forms": 3 }, - { "/development/environment": 2 }, - { "/overview": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 } - ], - "products": [ - { "/design/project-identity": 5 }, - { "/community/faq": 4 }, - { "/patterns/internationalization": 3 }, - { "/overview": 2 }, - { "/design/intro": 2 }, - { "/design/accessibility": 1 }, - { "/style/color": 1 }, - { "/style/iconography": 1 }, - { "/community/license": 1 }, - { "/community/our-team": 1 } - ], - "delivered": [{ "/overview": 1 }], - "by": [ - { "/development/testing": 13 }, - { "/development/frameworks-mobile/react-native": 6 }, - { "/design/accessibility": 6 }, - { "/development/frameworks-web/angular": 5 }, - { "/design/intro": 5 }, - { "/development/frameworks-web/react": 4 }, - { "/development/frameworks-mobile/ionic": 4 }, - { "/patterns/lists": 4 }, - { "/overview": 3 }, - { "/development/frameworks-web/intro": 3 }, - { "/patterns/navigation": 3 }, - { "/patterns/user-auth": 3 }, - { "/patterns/appbar": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/overlay": 2 }, - { "/community/innersourcing": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/empty-states": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/community/bugs": 1 }, - { "/community/faq": 1 } - ], - "different": [ - { "/patterns/internationalization": 7 }, - { "/design/websites": 6 }, - { "/patterns/loading": 6 }, - { "/get-started/mobile": 5 }, - { "/development/testing": 4 }, - { "/overview": 3 }, - { "/design/project-identity": 3 }, - { "/patterns/navigation": 3 }, - { "/patterns/user-auth": 3 }, - { "/patterns/forms": 2 }, - { "/patterns/lists": 2 }, - { "/style/illustrations": 2 }, - { "/style/themes": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/development/environment": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "teams": [ - { "/community/faq": 5 }, - { "/development/testing": 3 }, - { "/overview": 2 }, - { "/community/innersourcing": 2 }, - { "/design/intro": 1 }, - { "/community/license": 1 } - ], - "with": [ - { "/community/faq": 17 }, - { "/development/testing": 13 }, - { "/development/frameworks-web/intro": 12 }, - { "/patterns/navigation": 12 }, - { "/patterns/user-auth": 11 }, - { "/development/frameworks-mobile/react-native": 10 }, - { "/design/intro": 9 }, - { "/design/accessibility": 8 }, - { "/overview": 6 }, - { "/get-started/web": 6 }, - { "/development/frameworks-web/angular": 6 }, - { "/development/frameworks-web/react": 6 }, - { "/development/frameworks-mobile/intro": 6 }, - { "/patterns/forms": 6 }, - { "/patterns/lists": 6 }, - { "/patterns/loading": 6 }, - { "/style/illustrations": 6 }, - { "/community/innersourcing": 6 }, - { "/development/frameworks-mobile/ionic": 5 }, - { "/design/anatomy": 5 }, - { "/patterns/internationalization": 5 }, - { "/get-started/new-project": 4 }, - { "/design/websites": 4 }, - { "/design/project-identity": 4 }, - { "/patterns/account-menu": 4 }, - { "/patterns/overlay": 4 }, - { "/style/color": 4 }, - { "/community/our-team": 4 }, - { "/development/environment": 3 }, - { "/community/license": 3 }, - { "/community/bugs": 3 }, - { "/development/cli": 2 }, - { "/patterns/visualizations": 2 }, - { "/style/themes": 2 }, - { "/get-started/mobile": 1 }, - { "/patterns/appbar": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/resources/designer": 1 } - ], - "common": [ - { "/overview": 4 }, - { "/development/testing": 4 }, - { "/design/anatomy": 4 }, - { "/design/project-identity": 4 }, - { "/patterns/empty-states": 3 }, - { "/patterns/forms": 3 }, - { "/patterns/lists": 3 }, - { "/patterns/navigation": 2 }, - { "/patterns/overlay": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/color": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "aesthetic": [{ "/overview": 1 }], - "we": [ - { "/community/faq": 28 }, - { "/community/innersourcing": 14 }, - { "/design/project-identity": 8 }, - { "/design/intro": 7 }, - { "/development/frameworks-mobile/react-native": 4 }, - { "/community/contactus": 4 }, - { "/overview": 3 }, - { "/patterns/internationalization": 3 }, - { "/style/typography": 3 }, - { "/get-started/web": 2 }, - { "/get-started/mobile": 2 }, - { "/development/environment": 2 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/style/iconography": 2 }, - { "/style/illustrations": 2 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/community/our-team": 1 }, - { "/resources/designer": 1 } - ], - "can": [ - { "/community/faq": 14 }, - { "/development/testing": 13 }, - { "/design/websites": 12 }, - { "/development/frameworks-mobile/react-native": 11 }, - { "/patterns/lists": 11 }, - { "/patterns/navigation": 11 }, - { "/patterns/overlay": 10 }, - { "/development/frameworks-web/angular": 9 }, - { "/style/iconography": 9 }, - { "/development/frameworks-mobile/ionic": 8 }, - { "/patterns/empty-states": 8 }, - { "/patterns/account-menu": 7 }, - { "/patterns/user-auth": 7 }, - { "/development/frameworks-web/react": 6 }, - { "/design/anatomy": 6 }, - { "/design/accessibility": 6 }, - { "/patterns/forms": 6 }, - { "/style/illustrations": 6 }, - { "/get-started/web": 5 }, - { "/patterns/appbar": 5 }, - { "/patterns/internationalization": 5 }, - { "/get-started/new-project": 4 }, - { "/development/environment": 4 }, - { "/design/intro": 4 }, - { "/patterns/loading": 4 }, - { "/style/color": 4 }, - { "/style/typography": 4 }, - { "/community/innersourcing": 4 }, - { "/overview": 3 }, - { "/get-started/mobile": 3 }, - { "/design/project-identity": 3 }, - { "/community/bugs": 3 }, - { "/patterns/steppers": 2 }, - { "/style/themes": 2 }, - { "/community/features": 2 }, - { "/community/contactus": 2 }, - { "/resources/designer": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/license": 1 } - ], - "be": [ - { "/patterns/empty-states": 17 }, - { "/patterns/forms": 16 }, - { "/design/websites": 15 }, - { "/design/accessibility": 13 }, - { "/patterns/overlay": 12 }, - { "/style/color": 12 }, - { "/patterns/user-auth": 11 }, - { "/get-started/new-project": 10 }, - { "/development/frameworks-mobile/react-native": 9 }, - { "/development/testing": 9 }, - { "/design/intro": 9 }, - { "/patterns/account-menu": 9 }, - { "/community/faq": 9 }, - { "/design/project-identity": 8 }, - { "/patterns/internationalization": 8 }, - { "/style/illustrations": 8 }, - { "/patterns/lists": 7 }, - { "/patterns/loading": 7 }, - { "/patterns/navigation": 7 }, - { "/development/environment": 6 }, - { "/development/frameworks-mobile/intro": 6 }, - { "/development/frameworks-web/intro": 5 }, - { "/development/frameworks-web/angular": 5 }, - { "/development/frameworks-web/react": 5 }, - { "/design/anatomy": 5 }, - { "/community/innersourcing": 5 }, - { "/development/frameworks-mobile/ionic": 4 }, - { "/style/typography": 4 }, - { "/style/iconography": 3 }, - { "/community/license": 3 }, - { "/get-started/web": 2 }, - { "/get-started/mobile": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/visualizations": 2 }, - { "/overview": 1 }, - { "/patterns/steppers": 1 }, - { "/style/themes": 1 }, - { "/resources/designer": 1 } - ], - "sure": [ - { "/design/accessibility": 3 }, - { "/development/environment": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/websites": 2 }, - { "/design/project-identity": 2 }, - { "/overview": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/patterns/forms": 1 }, - { "/style/typography": 1 } - ], - "all": [ - { "/community/faq": 7 }, - { "/design/websites": 4 }, - { "/development/testing": 3 }, - { "/design/project-identity": 3 }, - { "/patterns/lists": 3 }, - { "/overview": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/design/accessibility": 2 }, - { "/patterns/forms": 2 }, - { "/style/themes": 2 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 }, - { "/community/our-team": 1 }, - { "/community/contactus": 1 } - ], - "feel": [ - { "/community/faq": 4 }, - { "/design/intro": 3 }, - { "/overview": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/style/iconography": 1 }, - { "/style/themes": 1 } - ], - "like": [ - { "/community/faq": 9 }, - { "/design/intro": 5 }, - { "/patterns/navigation": 3 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/testing": 2 }, - { "/community/features": 2 }, - { "/overview": 1 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/user-auth": 1 }, - { "/patterns/visualizations": 1 }, - { "/resources/designer": 1 } - ], - "they": [ - { "/design/websites": 10 }, - { "/patterns/overlay": 9 }, - { "/development/testing": 8 }, - { "/patterns/user-auth": 8 }, - { "/patterns/empty-states": 5 }, - { "/design/accessibility": 4 }, - { "/patterns/lists": 4 }, - { "/design/project-identity": 3 }, - { "/community/innersourcing": 3 }, - { "/community/faq": 3 }, - { "/get-started/new-project": 2 }, - { "/get-started/web": 2 }, - { "/design/intro": 2 }, - { "/design/anatomy": 2 }, - { "/patterns/account-menu": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/steppers": 2 }, - { "/style/illustrations": 2 }, - { "/overview": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 }, - { "/community/our-team": 1 }, - { "/resources/designer": 1 } - ], - "belong": [{ "/overview": 1 }], - "same": [ - { "/community/faq": 4 }, - { "/development/testing": 3 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/anatomy": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/user-auth": 2 }, - { "/overview": 1 }, - { "/get-started/new-project": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/design/intro": 1 }, - { "/design/websites": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 } - ], - "family": [ - { "/overview": 1 }, - { "/design/project-identity": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "based": [ - { "/patterns/user-auth": 5 }, - { "/development/testing": 3 }, - { "/style/iconography": 2 }, - { "/overview": 1 }, - { "/development/environment": 1 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "on": [ - { "/patterns/forms": 17 }, - { "/development/testing": 15 }, - { "/community/faq": 15 }, - { "/design/websites": 12 }, - { "/patterns/lists": 11 }, - { "/development/frameworks-mobile/react-native": 9 }, - { "/style/themes": 9 }, - { "/development/environment": 8 }, - { "/development/frameworks-mobile/ionic": 8 }, - { "/design/project-identity": 8 }, - { "/patterns/appbar": 8 }, - { "/patterns/navigation": 8 }, - { "/design/accessibility": 7 }, - { "/patterns/overlay": 7 }, - { "/patterns/user-auth": 7 }, - { "/design/intro": 6 }, - { "/style/illustrations": 6 }, - { "/design/anatomy": 5 }, - { "/patterns/empty-states": 5 }, - { "/patterns/internationalization": 5 }, - { "/style/iconography": 4 }, - { "/community/innersourcing": 4 }, - { "/community/bugs": 4 }, - { "/overview": 3 }, - { "/get-started/new-project": 3 }, - { "/get-started/mobile": 3 }, - { "/patterns/loading": 3 }, - { "/patterns/visualizations": 3 }, - { "/get-started/web": 2 }, - { "/development/frameworks-web/intro": 2 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/patterns/account-menu": 2 }, - { "/style/typography": 2 }, - { "/community/license": 2 }, - { "/community/features": 2 }, - { "/community/our-team": 2 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/patterns/steppers": 1 }, - { "/style/color": 1 }, - { "/community/contactus": 1 } - ], - "material": [ - { "/development/frameworks-web/react": 16 }, - { "/development/frameworks-web/angular": 14 }, - { "/style/themes": 7 }, - { "/patterns/forms": 5 }, - { "/development/frameworks-mobile/react-native": 4 }, - { "/design/project-identity": 4 }, - { "/style/typography": 4 }, - { "/community/bugs": 4 }, - { "/development/frameworks-web/intro": 3 }, - { "/patterns/appbar": 3 }, - { "/patterns/loading": 3 }, - { "/patterns/overlay": 3 }, - { "/patterns/steppers": 3 }, - { "/style/iconography": 3 }, - { "/community/features": 3 }, - { "/overview": 2 }, - { "/get-started/mobile": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/patterns/account-menu": 2 }, - { "/patterns/lists": 2 }, - { "/patterns/navigation": 2 }, - { "/community/our-team": 2 }, - { "/development/cli": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/community/faq": 1 } - ], - "language": [ - { "/patterns/internationalization": 14 }, - { "/design/intro": 2 }, - { "/overview": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/style/typography": 1 } - ], - "if": [ - { "/community/faq": 20 }, - { "/patterns/forms": 13 }, - { "/patterns/account-menu": 12 }, - { "/development/environment": 11 }, - { "/development/frameworks-mobile/react-native": 10 }, - { "/patterns/loading": 10 }, - { "/patterns/lists": 8 }, - { "/patterns/user-auth": 8 }, - { "/style/iconography": 7 }, - { "/development/frameworks-web/angular": 6 }, - { "/development/frameworks-web/react": 6 }, - { "/development/frameworks-mobile/intro": 6 }, - { "/patterns/empty-states": 6 }, - { "/style/illustrations": 6 }, - { "/get-started/new-project": 5 }, - { "/get-started/web": 5 }, - { "/development/frameworks-web/intro": 5 }, - { "/development/frameworks-mobile/ionic": 5 }, - { "/patterns/internationalization": 5 }, - { "/patterns/navigation": 5 }, - { "/community/bugs": 5 }, - { "/design/websites": 4 }, - { "/development/testing": 3 }, - { "/design/intro": 3 }, - { "/community/innersourcing": 3 }, - { "/community/features": 3 }, - { "/overview": 2 }, - { "/get-started/mobile": 2 }, - { "/design/accessibility": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/appbar": 2 }, - { "/style/typography": 2 }, - { "/community/license": 2 }, - { "/design/anatomy": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/style/themes": 1 }, - { "/community/contactus": 1 } - ], - "you": [ - { "/community/faq": 49 }, - { "/development/frameworks-mobile/react-native": 43 }, - { "/development/environment": 33 }, - { "/design/project-identity": 30 }, - { "/development/frameworks-mobile/ionic": 24 }, - { "/development/testing": 23 }, - { "/development/frameworks-web/react": 22 }, - { "/development/frameworks-web/angular": 21 }, - { "/patterns/loading": 17 }, - { "/design/websites": 16 }, - { "/patterns/lists": 16 }, - { "/patterns/account-menu": 15 }, - { "/community/innersourcing": 15 }, - { "/development/frameworks-mobile/intro": 14 }, - { "/patterns/internationalization": 14 }, - { "/style/iconography": 14 }, - { "/patterns/forms": 13 }, - { "/style/typography": 13 }, - { "/patterns/appbar": 11 }, - { "/get-started/new-project": 10 }, - { "/style/illustrations": 10 }, - { "/get-started/web": 9 }, - { "/patterns/navigation": 9 }, - { "/patterns/user-auth": 9 }, - { "/design/intro": 8 }, - { "/community/bugs": 8 }, - { "/overview": 7 }, - { "/development/frameworks-web/intro": 7 }, - { "/design/accessibility": 7 }, - { "/get-started/mobile": 6 }, - { "/style/themes": 5 }, - { "/community/features": 5 }, - { "/community/contactus": 5 }, - { "/design/anatomy": 3 }, - { "/development/cli": 2 }, - { "/patterns/empty-states": 2 }, - { "/style/color": 2 }, - { "/community/license": 2 }, - { "/resources/designer": 2 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/visualizations": 1 } - ], - "are": [ - { "/development/testing": 24 }, - { "/community/faq": 17 }, - { "/design/project-identity": 16 }, - { "/design/anatomy": 14 }, - { "/development/frameworks-mobile/react-native": 13 }, - { "/development/environment": 12 }, - { "/design/websites": 12 }, - { "/patterns/forms": 12 }, - { "/patterns/internationalization": 12 }, - { "/style/themes": 11 }, - { "/patterns/overlay": 10 }, - { "/style/typography": 10 }, - { "/design/accessibility": 8 }, - { "/patterns/user-auth": 8 }, - { "/style/illustrations": 8 }, - { "/patterns/lists": 7 }, - { "/patterns/navigation": 7 }, - { "/patterns/steppers": 7 }, - { "/patterns/visualizations": 7 }, - { "/patterns/account-menu": 6 }, - { "/patterns/loading": 6 }, - { "/style/color": 6 }, - { "/style/iconography": 6 }, - { "/community/license": 6 }, - { "/development/frameworks-mobile/intro": 5 }, - { "/get-started/mobile": 4 }, - { "/development/frameworks-web/intro": 4 }, - { "/development/frameworks-web/angular": 4 }, - { "/development/frameworks-web/react": 4 }, - { "/patterns/appbar": 4 }, - { "/overview": 3 }, - { "/get-started/web": 3 }, - { "/design/intro": 3 }, - { "/get-started/new-project": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/patterns/empty-states": 2 }, - { "/development/cli": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 }, - { "/resources/designer": 1 } - ], - "working": [ - { "/design/intro": 2 }, - { "/community/faq": 2 }, - { "/overview": 1 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/forms": 1 }, - { "/community/our-team": 1 } - ], - "studio": [ - { "/development/frameworks-mobile/intro": 3 }, - { "/overview": 2 }, - { "/development/environment": 2 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "blue": [ - { "/style/themes": 7 }, - { "/style/color": 5 }, - { "/style/illustrations": 4 }, - { "/overview": 2 }, - { "/design/project-identity": 2 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 } - ], - "their": [ - { "/patterns/user-auth": 9 }, - { "/development/testing": 3 }, - { "/patterns/account-menu": 3 }, - { "/patterns/forms": 3 }, - { "/patterns/internationalization": 2 }, - { "/patterns/overlay": 2 }, - { "/patterns/steppers": 2 }, - { "/overview": 1 }, - { "/get-started/new-project": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/style/iconography": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 }, - { "/community/faq": 1 } - ], - "designs": [ - { "/design/intro": 3 }, - { "/design/websites": 3 }, - { "/overview": 2 }, - { "/get-started/web": 1 }, - { "/design/anatomy": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 }, - { "/resources/designer": 1 } - ], - "follow": [ - { "/development/frameworks-mobile/react-native": 3 }, - { "/design/websites": 2 }, - { "/design/project-identity": 2 }, - { "/overview": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/user-auth": 1 } - ], - "standard": [ - { "/style/typography": 5 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/overview": 1 }, - { "/get-started/mobile": 1 }, - { "/development/testing": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/overlay": 1 } - ], - "not": [ - { "/development/testing": 7 }, - { "/design/project-identity": 7 }, - { "/style/illustrations": 7 }, - { "/community/faq": 7 }, - { "/patterns/user-auth": 6 }, - { "/patterns/lists": 5 }, - { "/patterns/forms": 4 }, - { "/patterns/internationalization": 4 }, - { "/development/frameworks-web/angular": 3 }, - { "/design/accessibility": 3 }, - { "/design/websites": 3 }, - { "/patterns/account-menu": 3 }, - { "/patterns/empty-states": 3 }, - { "/style/color": 3 }, - { "/community/license": 3 }, - { "/get-started/new-project": 2 }, - { "/development/environment": 2 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/loading": 2 }, - { "/patterns/steppers": 2 }, - { "/overview": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/iconography": 1 }, - { "/community/innersourcing": 1 }, - { "/community/contactus": 1 } - ], - "utilizing": [{ "/overview": 1 }, { "/design/accessibility": 1 }, { "/design/websites": 1 }], - "designers": [ - { "/overview": 1 }, - { "/design/anatomy": 1 }, - { "/style/color": 1 }, - { "/style/iconography": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "following": [ - { "/patterns/user-auth": 9 }, - { "/development/frameworks-mobile/react-native": 6 }, - { "/community/license": 3 }, - { "/development/environment": 2 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/testing": 2 }, - { "/overview": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/iconography": 1 }, - { "/community/bugs": 1 }, - { "/resources/designer": 1 } - ], - "as": [ - { "/community/faq": 18 }, - { "/development/testing": 15 }, - { "/design/intro": 10 }, - { "/style/illustrations": 10 }, - { "/patterns/internationalization": 9 }, - { "/patterns/empty-states": 8 }, - { "/patterns/lists": 8 }, - { "/patterns/user-auth": 8 }, - { "/development/frameworks-web/angular": 7 }, - { "/patterns/account-menu": 7 }, - { "/patterns/forms": 7 }, - { "/style/themes": 7 }, - { "/development/frameworks-web/react": 6 }, - { "/design/project-identity": 6 }, - { "/patterns/appbar": 6 }, - { "/patterns/loading": 6 }, - { "/patterns/overlay": 6 }, - { "/style/color": 6 }, - { "/overview": 5 }, - { "/design/anatomy": 5 }, - { "/style/typography": 5 }, - { "/design/accessibility": 4 }, - { "/design/websites": 4 }, - { "/patterns/navigation": 4 }, - { "/development/environment": 3 }, - { "/style/iconography": 3 }, - { "/get-started/new-project": 2 }, - { "/community/our-team": 2 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/license": 1 }, - { "/community/features": 1 }, - { "/community/contactus": 1 } - ], - "well": [ - { "/community/faq": 4 }, - { "/development/frameworks-web/angular": 3 }, - { "/overview": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/testing": 2 }, - { "/patterns/account-menu": 2 }, - { "/style/themes": 2 }, - { "/development/environment": 1 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/typography": 1 } - ], - "any": [ - { "/development/testing": 8 }, - { "/patterns/internationalization": 6 }, - { "/community/license": 6 }, - { "/design/project-identity": 5 }, - { "/design/websites": 3 }, - { "/style/color": 3 }, - { "/overview": 2 }, - { "/get-started/new-project": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/steppers": 2 }, - { "/style/illustrations": 2 }, - { "/community/contactus": 2 }, - { "/get-started/web": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/community/faq": 1 } - ], - "additional": [ - { "/development/frameworks-mobile/ionic": 5 }, - { "/development/testing": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/user-auth": 2 }, - { "/style/color": 2 }, - { "/overview": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/overlay": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "patterns": [ - { "/community/faq": 5 }, - { "/design/project-identity": 4 }, - { "/design/intro": 3 }, - { "/design/anatomy": 3 }, - { "/overview": 2 }, - { "/get-started/mobile": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 }, - { "/community/features": 1 }, - { "/resources/designer": 1 } - ], - "also": [ - { "/development/frameworks-mobile/react-native": 5 }, - { "/development/testing": 5 }, - { "/development/environment": 4 }, - { "/design/websites": 4 }, - { "/patterns/account-menu": 4 }, - { "/community/faq": 4 }, - { "/development/frameworks-web/react": 3 }, - { "/design/intro": 3 }, - { "/patterns/empty-states": 3 }, - { "/patterns/overlay": 3 }, - { "/community/innersourcing": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/design/accessibility": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/user-auth": 2 }, - { "/style/iconography": 2 }, - { "/style/illustrations": 2 }, - { "/community/our-team": 2 }, - { "/overview": 1 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/design/anatomy": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/style/color": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 }, - { "/resources/designer": 1 } - ], - "platform": [ - { "/development/frameworks-mobile/ionic": 4 }, - { "/overview": 2 }, - { "/community/faq": 2 }, - { "/design/intro": 1 } - ], - "intended": [ - { "/development/testing": 2 }, - { "/design/project-identity": 2 }, - { "/overview": 1 }, - { "/get-started/new-project": 1 }, - { "/get-started/mobile": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/lists": 1 }, - { "/style/iconography": 1 }, - { "/style/themes": 1 } - ], - "work": [ - { "/community/faq": 3 }, - { "/overview": 2 }, - { "/get-started/new-project": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/community/innersourcing": 1 }, - { "/community/our-team": 1 } - ], - "quickly": [ - { "/design/intro": 2 }, - { "/design/websites": 2 }, - { "/overview": 1 }, - { "/development/environment": 1 }, - { "/development/cli": 1 }, - { "/development/testing": 1 }, - { "/patterns/navigation": 1 } - ], - "efficiently": [{ "/overview": 1 }], - "providing": [{ "/overview": 1 }, { "/development/environment": 1 }, { "/design/accessibility": 1 }], - "recommendations": [ - { "/overview": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/style/typography": 1 } - ], - "technologies": [ - { "/overview": 4 }, - { "/get-started/mobile": 3 }, - { "/design/accessibility": 3 }, - { "/get-started/web": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/community/faq": 1 } - ], - "tools": [ - { "/development/testing": 5 }, - { "/development/environment": 4 }, - { "/design/accessibility": 3 }, - { "/style/illustrations": 3 }, - { "/community/innersourcing": 3 }, - { "/overview": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/get-started/mobile": 1 }, - { "/community/faq": 1 }, - { "/resources/designer": 1 } - ], - "libraries": [ - { "/development/frameworks-mobile/react-native": 7 }, - { "/development/frameworks-web/intro": 2 }, - { "/development/testing": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/visualizations": 2 }, - { "/community/license": 2 }, - { "/community/bugs": 2 }, - { "/community/features": 2 }, - { "/overview": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/loading": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "approaches": [ - { "/get-started/mobile": 2 }, - { "/overview": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "challenges": [{ "/overview": 1 }], - "re": [ - { "/community/faq": 4 }, - { "/development/environment": 3 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/patterns/lists": 2 }, - { "/community/innersourcing": 2 }, - { "/overview": 1 }, - { "/get-started/web": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/community/our-team": 1 } - ], - "usable": [ - { "/overview": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/community/our-team": 1 } - ], - "components": [ - { "/development/frameworks-mobile/react-native": 16 }, - { "/design/anatomy": 10 }, - { "/development/frameworks-web/angular": 8 }, - { "/development/frameworks-web/react": 8 }, - { "/style/themes": 6 }, - { "/get-started/mobile": 4 }, - { "/development/testing": 4 }, - { "/patterns/account-menu": 4 }, - { "/patterns/appbar": 4 }, - { "/patterns/empty-states": 4 }, - { "/patterns/lists": 4 }, - { "/patterns/navigation": 4 }, - { "/design/accessibility": 3 }, - { "/patterns/steppers": 3 }, - { "/style/typography": 2 }, - { "/community/faq": 2 }, - { "/overview": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 }, - { "/community/our-team": 1 }, - { "/community/contactus": 1 }, - { "/resources/designer": 1 } - ], - "support": [ - { "/community/faq": 5 }, - { "/get-started/mobile": 3 }, - { "/patterns/internationalization": 3 }, - { "/overview": 2 }, - { "/get-started/web": 2 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/patterns/account-menu": 2 }, - { "/style/illustrations": 2 }, - { "/community/our-team": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/testing": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/navigation": 1 }, - { "/style/typography": 1 }, - { "/community/contactus": 1 } - ], - "variety": [ - { "/style/color": 3 }, - { "/development/environment": 2 }, - { "/patterns/overlay": 2 }, - { "/overview": 1 }, - { "/get-started/web": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/steppers": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 } - ], - "give": [ - { "/community/faq": 3 }, - { "/style/color": 2 }, - { "/overview": 1 }, - { "/development/testing": 1 }, - { "/patterns/loading": 1 } - ], - "choose": [ - { "/overview": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "best": [ - { "/overview": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/lists": 1 } - ], - "learn": [ - { "/overview": 2 }, - { "/get-started/new-project": 2 }, - { "/development/frameworks-web/intro": 2 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/community/faq": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 } - ], - "about": [ - { "/community/faq": 5 }, - { "/get-started/new-project": 4 }, - { "/patterns/account-menu": 4 }, - { "/overview": 3 }, - { "/patterns/overlay": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/testing": 2 }, - { "/design/websites": 2 }, - { "/community/innersourcing": 2 }, - { "/community/bugs": 2 }, - { "/get-started/mobile": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 }, - { "/community/our-team": 1 }, - { "/community/contactus": 1 } - ], - "or": [ - { "/development/testing": 16 }, - { "/development/frameworks-mobile/react-native": 13 }, - { "/patterns/account-menu": 12 }, - { "/patterns/forms": 12 }, - { "/patterns/internationalization": 11 }, - { "/patterns/lists": 11 }, - { "/community/license": 11 }, - { "/patterns/overlay": 10 }, - { "/patterns/user-auth": 10 }, - { "/community/faq": 9 }, - { "/design/anatomy": 7 }, - { "/design/websites": 7 }, - { "/design/project-identity": 7 }, - { "/patterns/navigation": 7 }, - { "/style/illustrations": 7 }, - { "/design/accessibility": 6 }, - { "/community/innersourcing": 6 }, - { "/development/frameworks-web/angular": 5 }, - { "/development/frameworks-web/react": 5 }, - { "/patterns/appbar": 5 }, - { "/patterns/loading": 5 }, - { "/style/color": 5 }, - { "/get-started/new-project": 4 }, - { "/development/frameworks-mobile/ionic": 4 }, - { "/development/environment": 3 }, - { "/patterns/empty-states": 3 }, - { "/patterns/visualizations": 3 }, - { "/style/iconography": 3 }, - { "/community/bugs": 3 }, - { "/community/contactus": 3 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/patterns/steppers": 2 }, - { "/style/typography": 2 }, - { "/style/themes": 2 }, - { "/overview": 1 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/intro": 1 }, - { "/community/features": 1 }, - { "/resources/designer": 1 } - ], - "technology": [ - { "/overview": 1 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/intro": 1 } - ], - "pages": [ - { "/design/anatomy": 10 }, - { "/patterns/navigation": 9 }, - { "/design/websites": 2 }, - { "/patterns/account-menu": 2 }, - { "/overview": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/design/intro": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/steppers": 1 } - ], - "resources": [ - { "/community/faq": 7 }, - { "/overview": 3 }, - { "/community/license": 3 }, - { "/resources/designer": 3 }, - { "/design/intro": 2 }, - { "/style/iconography": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 }, - { "/community/our-team": 1 } - ], - "provided": [{ "/community/license": 3 }, { "/overview": 1 }], - "page": [ - { "/design/websites": 10 }, - { "/patterns/account-menu": 7 }, - { "/patterns/appbar": 5 }, - { "/patterns/empty-states": 5 }, - { "/community/faq": 5 }, - { "/design/anatomy": 3 }, - { "/overview": 2 }, - { "/design/intro": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/overlay": 2 }, - { "/get-started/mobile": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 } - ], - "site": [ - { "/design/websites": 8 }, - { "/overview": 2 }, - { "/style/themes": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 } - ], - "provide": [ - { "/community/faq": 4 }, - { "/development/testing": 3 }, - { "/design/intro": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/internationalization": 2 }, - { "/overview": 1 }, - { "/get-started/new-project": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 }, - { "/resources/designer": 1 } - ], - "everything": [ - { "/community/faq": 2 }, - { "/overview": 1 }, - { "/get-started/web": 1 }, - { "/design/accessibility": 1 } - ], - "need": [ - { "/community/faq": 9 }, - { "/development/environment": 8 }, - { "/patterns/loading": 5 }, - { "/development/frameworks-mobile/ionic": 4 }, - { "/get-started/web": 3 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/design/websites": 3 }, - { "/patterns/internationalization": 3 }, - { "/patterns/user-auth": 3 }, - { "/get-started/new-project": 2 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/design/accessibility": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/forms": 2 }, - { "/style/iconography": 2 }, - { "/style/typography": 2 }, - { "/overview": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/style/illustrations": 1 }, - { "/community/innersourcing": 1 }, - { "/community/our-team": 1 } - ], - "get": [ - { "/community/faq": 4 }, - { "/development/environment": 2 }, - { "/community/innersourcing": 2 }, - { "/overview": 1 }, - { "/get-started/web": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/patterns/empty-states": 1 }, - { "/style/iconography": 1 } - ], - "started": [ - { "/development/frameworks-mobile/ionic": 4 }, - { "/development/environment": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/testing": 2 }, - { "/overview": 1 }, - { "/get-started/web": 1 }, - { "/style/themes": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "information": [ - { "/patterns/account-menu": 8 }, - { "/design/websites": 7 }, - { "/patterns/overlay": 7 }, - { "/design/intro": 5 }, - { "/development/frameworks-mobile/react-native": 4 }, - { "/patterns/forms": 4 }, - { "/patterns/lists": 4 }, - { "/community/faq": 4 }, - { "/overview": 3 }, - { "/design/accessibility": 3 }, - { "/community/bugs": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/testing": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/user-auth": 2 }, - { "/style/typography": 2 }, - { "/development/cli": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/appbar": 1 }, - { "/style/color": 1 }, - { "/community/license": 1 } - ], - "guides": [ - { "/overview": 3 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 }, - { "/community/faq": 1 } - ], - "including": [ - { "/design/accessibility": 4 }, - { "/community/license": 3 }, - { "/overview": 2 }, - { "/get-started/new-project": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/steppers": 2 }, - { "/community/faq": 2 }, - { "/get-started/web": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/community/bugs": 1 } - ], - "starting": [ - { "/development/cli": 3 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/community/faq": 2 }, - { "/overview": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/community/our-team": 1 } - ], - "project": [ - { "/development/frameworks-mobile/react-native": 20 }, - { "/development/frameworks-mobile/ionic": 17 }, - { "/development/frameworks-web/angular": 12 }, - { "/development/frameworks-web/react": 12 }, - { "/development/testing": 11 }, - { "/community/faq": 10 }, - { "/get-started/new-project": 6 }, - { "/development/cli": 5 }, - { "/design/project-identity": 3 }, - { "/overview": 2 }, - { "/patterns/empty-states": 2 }, - { "/community/our-team": 2 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 }, - { "/resources/designer": 1 } - ], - "types": [ - { "/patterns/appbar": 2 }, - { "/overview": 1 }, - { "/get-started/new-project": 1 }, - { "/get-started/mobile": 1 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/overlay": 1 }, - { "/style/color": 1 } - ], - "how": [ - { "/design/anatomy": 7 }, - { "/community/faq": 5 }, - { "/overview": 4 }, - { "/community/innersourcing": 4 }, - { "/community/contactus": 3 }, - { "/get-started/new-project": 2 }, - { "/development/testing": 2 }, - { "/design/websites": 2 }, - { "/patterns/steppers": 2 }, - { "/patterns/user-auth": 2 }, - { "/style/themes": 2 }, - { "/get-started/web": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 } - ], - "set": [ - { "/development/environment": 7 }, - { "/overview": 2 }, - { "/design/project-identity": 2 }, - { "/community/faq": 2 }, - { "/patterns/internationalization": 1 }, - { "/patterns/loading": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 } - ], - "up": [ - { "/development/environment": 7 }, - { "/development/frameworks-mobile/ionic": 5 }, - { "/development/frameworks-mobile/react-native": 5 }, - { "/development/testing": 3 }, - { "/design/intro": 2 }, - { "/patterns/loading": 2 }, - { "/resources/designer": 2 }, - { "/overview": 1 }, - { "/get-started/web": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/steppers": 1 }, - { "/style/illustrations": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "environment": [ - { "/development/environment": 4 }, - { "/development/frameworks-mobile/ionic": 4 }, - { "/development/frameworks-mobile/react-native": 4 }, - { "/design/intro": 2 }, - { "/overview": 1 }, - { "/design/project-identity": 1 }, - { "/community/bugs": 1 } - ], - "start": [ - { "/development/frameworks-mobile/react-native": 9 }, - { "/development/frameworks-web/angular": 5 }, - { "/development/frameworks-web/react": 5 }, - { "/development/frameworks-mobile/ionic": 5 }, - { "/community/faq": 4 }, - { "/development/cli": 2 }, - { "/overview": 1 }, - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/patterns/user-auth": 1 } - ], - "supported": [ - { "/development/cli": 2 }, - { "/community/faq": 2 }, - { "/overview": 1 }, - { "/development/testing": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/iconography": 1 } - ], - "use": [ - { "/design/websites": 15 }, - { "/development/frameworks-mobile/react-native": 14 }, - { "/design/project-identity": 10 }, - { "/style/illustrations": 10 }, - { "/design/accessibility": 8 }, - { "/patterns/lists": 8 }, - { "/development/frameworks-web/angular": 7 }, - { "/development/frameworks-web/react": 7 }, - { "/patterns/navigation": 6 }, - { "/style/typography": 6 }, - { "/development/frameworks-mobile/intro": 5 }, - { "/development/testing": 5 }, - { "/patterns/forms": 5 }, - { "/community/license": 5 }, - { "/community/innersourcing": 5 }, - { "/design/intro": 4 }, - { "/patterns/empty-states": 4 }, - { "/patterns/user-auth": 4 }, - { "/style/color": 4 }, - { "/style/iconography": 4 }, - { "/style/themes": 4 }, - { "/overview": 3 }, - { "/get-started/web": 3 }, - { "/development/environment": 3 }, - { "/development/frameworks-web/intro": 3 }, - { "/development/frameworks-mobile/ionic": 3 }, - { "/patterns/appbar": 3 }, - { "/patterns/loading": 3 }, - { "/community/faq": 3 }, - { "/patterns/internationalization": 2 }, - { "/patterns/overlay": 2 }, - { "/patterns/steppers": 2 }, - { "/resources/designer": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/mobile": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/account-menu": 1 }, - { "/community/contactus": 1 } - ], - "testing": [ - { "/development/testing": 25 }, - { "/design/accessibility": 2 }, - { "/overview": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/community/innersourcing": 1 } - ], - "explaining": [{ "/overview": 1 }], - "designer": [{ "/overview": 1 }, { "/design/intro": 1 }, { "/community/faq": 1 }, { "/resources/designer": 1 }], - "examples": [ - { "/community/innersourcing": 3 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/anatomy": 2 }, - { "/community/faq": 2 }, - { "/overview": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/themes": 1 }, - { "/community/features": 1 }, - { "/community/contactus": 1 } - ], - "elements": [ - { "/development/testing": 8 }, - { "/design/intro": 6 }, - { "/design/websites": 5 }, - { "/design/accessibility": 4 }, - { "/patterns/visualizations": 4 }, - { "/design/project-identity": 3 }, - { "/patterns/lists": 3 }, - { "/style/illustrations": 3 }, - { "/style/themes": 3 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/anatomy": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/overlay": 2 }, - { "/style/color": 2 }, - { "/overview": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/loading": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "application": [ - { "/get-started/new-project": 14 }, - { "/development/testing": 14 }, - { "/development/frameworks-mobile/react-native": 13 }, - { "/development/frameworks-mobile/intro": 11 }, - { "/design/project-identity": 10 }, - { "/patterns/user-auth": 9 }, - { "/development/frameworks-mobile/ionic": 8 }, - { "/patterns/account-menu": 8 }, - { "/patterns/internationalization": 8 }, - { "/patterns/navigation": 8 }, - { "/community/faq": 7 }, - { "/development/frameworks-web/angular": 6 }, - { "/get-started/web": 5 }, - { "/design/intro": 5 }, - { "/design/websites": 5 }, - { "/patterns/loading": 5 }, - { "/style/illustrations": 5 }, - { "/development/frameworks-web/intro": 4 }, - { "/development/frameworks-web/react": 4 }, - { "/design/accessibility": 4 }, - { "/style/themes": 4 }, - { "/get-started/mobile": 3 }, - { "/patterns/appbar": 3 }, - { "/patterns/empty-states": 3 }, - { "/development/environment": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/overlay": 2 }, - { "/patterns/steppers": 2 }, - { "/style/color": 2 }, - { "/style/iconography": 2 }, - { "/style/typography": 2 }, - { "/overview": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/lists": 1 } - ], - "extensive": [ - { "/overview": 1 }, - { "/design/intro": 1 }, - { "/style/iconography": 1 }, - { "/community/our-team": 1 } - ], - "icons": [ - { "/development/frameworks-mobile/react-native": 8 }, - { "/style/iconography": 8 }, - { "/development/frameworks-web/react": 7 }, - { "/design/project-identity": 6 }, - { "/community/faq": 4 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/navigation": 2 }, - { "/overview": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/patterns/lists": 1 }, - { "/style/illustrations": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/community/features": 1 } - ], - "colors": [ - { "/style/color": 20 }, - { "/design/accessibility": 5 }, - { "/design/websites": 5 }, - { "/design/project-identity": 5 }, - { "/style/themes": 5 }, - { "/development/frameworks-web/angular": 4 }, - { "/style/illustrations": 4 }, - { "/development/frameworks-web/react": 3 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/style/typography": 2 }, - { "/overview": 1 }, - { "/development/cli": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 } - ], - "typography": [ - { "/style/typography": 5 }, - { "/design/websites": 3 }, - { "/design/intro": 2 }, - { "/patterns/appbar": 2 }, - { "/overview": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/internationalization": 1 } - ], - "links": [ - { "/patterns/account-menu": 2 }, - { "/overview": 1 }, - { "/design/websites": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 } - ], - "npm": [ - { "/development/frameworks-mobile/react-native": 7 }, - { "/development/environment": 3 }, - { "/development/frameworks-web/angular": 3 }, - { "/development/frameworks-web/react": 3 }, - { "/style/themes": 3 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/overview": 1 }, - { "/development/cli": 1 }, - { "/development/testing": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 } - ], - "packages": [ - { "/development/environment": 3 }, - { "/development/frameworks-web/angular": 3 }, - { "/development/frameworks-web/react": 3 }, - { "/development/frameworks-mobile/ionic": 3 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/community/innersourcing": 2 }, - { "/overview": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/bugs": 1 } - ], - "github": [ - { "/community/innersourcing": 4 }, - { "/style/themes": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/style/iconography": 2 }, - { "/overview": 1 }, - { "/community/license": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 } - ], - "repositories": [ - { "/overview": 1 }, - { "/style/illustrations": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 } - ], - "community": [ - { "/resources/designer": 4 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/testing": 2 }, - { "/community/bugs": 2 }, - { "/community/faq": 2 }, - { "/overview": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/project-identity": 1 }, - { "/community/features": 1 } - ], - "section": [ - { "/patterns/account-menu": 3 }, - { "/patterns/navigation": 2 }, - { "/overview": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/steppers": 1 }, - { "/community/features": 1 }, - { "/community/faq": 1 } - ], - "reporting": [{ "/community/bugs": 2 }, { "/overview": 1 }], - "bugs": [{ "/community/bugs": 3 }, { "/overview": 1 }, { "/community/faq": 1 }], - "requesting": [{ "/overview": 1 }], - "features": [ - { "/development/testing": 5 }, - { "/community/features": 3 }, - { "/patterns/empty-states": 2 }, - { "/overview": 1 }, - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/patterns/navigation": 1 }, - { "/style/illustrations": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "more": [ - { "/design/websites": 12 }, - { "/development/testing": 8 }, - { "/design/project-identity": 8 }, - { "/community/faq": 7 }, - { "/development/frameworks-web/intro": 6 }, - { "/development/frameworks-mobile/intro": 5 }, - { "/patterns/appbar": 5 }, - { "/get-started/mobile": 4 }, - { "/patterns/lists": 4 }, - { "/patterns/navigation": 4 }, - { "/get-started/new-project": 3 }, - { "/design/accessibility": 3 }, - { "/patterns/account-menu": 3 }, - { "/patterns/internationalization": 2 }, - { "/patterns/loading": 2 }, - { "/patterns/user-auth": 2 }, - { "/style/illustrations": 2 }, - { "/community/license": 2 }, - { "/community/contactus": 2 }, - { "/overview": 1 }, - { "/development/environment": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/style/iconography": 1 }, - { "/style/themes": 1 }, - { "/community/bugs": 1 } - ], - "compare": [ - { "/get-started/new-project": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 } - ], - "comparison": [ - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/patterns/lists": 1 } - ], - "guide": [ - { "/development/frameworks-mobile/react-native": 5 }, - { "/development/frameworks-mobile/ionic": 4 }, - { "/style/themes": 4 }, - { "/get-started/new-project": 3 }, - { "/design/websites": 3 }, - { "/development/frameworks-web/intro": 2 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/testing": 2 }, - { "/development/environment": 1 }, - { "/patterns/internationalization": 1 }, - { "/community/faq": 1 } - ], - "when": [ - { "/development/testing": 10 }, - { "/patterns/forms": 6 }, - { "/patterns/loading": 6 }, - { "/patterns/navigation": 6 }, - { "/design/websites": 5 }, - { "/patterns/user-auth": 5 }, - { "/design/intro": 4 }, - { "/patterns/account-menu": 4 }, - { "/patterns/appbar": 4 }, - { "/patterns/internationalization": 4 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/style/illustrations": 3 }, - { "/design/project-identity": 2 }, - { "/style/color": 2 }, - { "/style/typography": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/style/iconography": 1 }, - { "/style/themes": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "approaching": [{ "/get-started/new-project": 1 }], - "potential": [ - { "/get-started/new-project": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/style/typography": 1 }, - { "/community/contactus": 1 } - ], - "it": [ - { "/development/testing": 11 }, - { "/get-started/new-project": 8 }, - { "/development/environment": 7 }, - { "/design/websites": 7 }, - { "/design/project-identity": 7 }, - { "/patterns/navigation": 6 }, - { "/development/frameworks-mobile/react-native": 5 }, - { "/design/intro": 5 }, - { "/design/anatomy": 5 }, - { "/design/accessibility": 5 }, - { "/patterns/forms": 5 }, - { "/development/frameworks-mobile/intro": 4 }, - { "/patterns/loading": 4 }, - { "/style/color": 4 }, - { "/style/illustrations": 4 }, - { "/community/innersourcing": 4 }, - { "/get-started/web": 3 }, - { "/patterns/lists": 3 }, - { "/patterns/overlay": 3 }, - { "/style/themes": 3 }, - { "/get-started/mobile": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/patterns/account-menu": 2 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/community/contactus": 1 } - ], - "challenging": [{ "/get-started/new-project": 1 }], - "know": [ - { "/get-started/new-project": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/project-identity": 1 }, - { "/community/bugs": 1 } - ], - "where": [ - { "/design/websites": 6 }, - { "/design/project-identity": 5 }, - { "/patterns/forms": 3 }, - { "/design/intro": 2 }, - { "/patterns/user-auth": 2 }, - { "/get-started/new-project": 1 }, - { "/development/testing": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/style/color": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "first": [ - { "/development/frameworks-mobile/react-native": 4 }, - { "/design/websites": 2 }, - { "/patterns/internationalization": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 }, - { "/community/our-team": 1 } - ], - "step": [ - { "/patterns/steppers": 5 }, - { "/community/innersourcing": 2 }, - { "/get-started/new-project": 1 }, - { "/development/testing": 1 }, - { "/patterns/user-auth": 1 } - ], - "helpful": [{ "/get-started/new-project": 1 }, { "/design/accessibility": 1 }, { "/resources/designer": 1 }], - "decide": [ - { "/development/frameworks-web/intro": 2 }, - { "/get-started/new-project": 1 }, - { "/design/project-identity": 1 }, - { "/style/iconography": 1 } - ], - "going": [ - { "/get-started/new-project": 2 }, - { "/design/project-identity": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 } - ], - "both": [ - { "/development/frameworks-web/intro": 2 }, - { "/development/testing": 2 }, - { "/design/project-identity": 2 }, - { "/style/themes": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/illustrations": 1 }, - { "/community/innersourcing": 1 } - ], - "here": [ - { "/get-started/new-project": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/anatomy": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/themes": 1 } - ], - "run": [ - { "/development/frameworks-mobile/ionic": 11 }, - { "/development/frameworks-mobile/react-native": 7 }, - { "/development/testing": 5 }, - { "/development/environment": 3 }, - { "/get-started/new-project": 2 }, - { "/community/bugs": 2 }, - { "/patterns/internationalization": 1 } - ], - "down": [ - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/bugs": 1 } - ], - "these": [ - { "/design/project-identity": 10 }, - { "/development/testing": 9 }, - { "/patterns/user-auth": 7 }, - { "/style/iconography": 6 }, - { "/development/frameworks-web/angular": 5 }, - { "/development/frameworks-web/react": 5 }, - { "/development/frameworks-mobile/react-native": 5 }, - { "/style/color": 5 }, - { "/design/intro": 4 }, - { "/design/anatomy": 4 }, - { "/design/websites": 4 }, - { "/style/typography": 4 }, - { "/get-started/new-project": 3 }, - { "/patterns/navigation": 3 }, - { "/community/innersourcing": 3 }, - { "/community/faq": 3 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/design/accessibility": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/overlay": 2 }, - { "/style/illustrations": 2 }, - { "/community/license": 2 }, - { "/get-started/web": 1 }, - { "/development/environment": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/bugs": 1 } - ], - "accessible": [ - { "/design/accessibility": 6 }, - { "/development/frameworks-web/intro": 2 }, - { "/design/websites": 2 }, - { "/get-started/new-project": 1 }, - { "/patterns/account-menu": 1 } - ], - "over": [ - { "/community/faq": 2 }, - { "/get-started/new-project": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/user-auth": 1 } - ], - "accessed": [ - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/patterns/account-menu": 1 } - ], - "from": [ - { "/development/frameworks-mobile/react-native": 11 }, - { "/get-started/new-project": 6 }, - { "/style/themes": 6 }, - { "/patterns/internationalization": 5 }, - { "/community/faq": 5 }, - { "/patterns/loading": 4 }, - { "/style/illustrations": 4 }, - { "/community/innersourcing": 4 }, - { "/design/websites": 3 }, - { "/patterns/lists": 3 }, - { "/patterns/user-auth": 3 }, - { "/style/typography": 3 }, - { "/get-started/web": 2 }, - { "/development/environment": 2 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/testing": 2 }, - { "/design/anatomy": 2 }, - { "/patterns/overlay": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/navigation": 1 }, - { "/community/license": 1 }, - { "/community/our-team": 1 }, - { "/community/contactus": 1 } - ], - "device": [ - { "/patterns/lists": 5 }, - { "/get-started/new-project": 4 }, - { "/design/intro": 4 }, - { "/get-started/mobile": 3 }, - { "/development/frameworks-mobile/ionic": 3 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/empty-states": 2 }, - { "/patterns/forms": 2 }, - { "/style/color": 2 }, - { "/get-started/web": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/style/illustrations": 1 } - ], - "network": [{ "/get-started/new-project": 1 }, { "/patterns/forms": 1 }], - "connection": [{ "/get-started/new-project": 1 }], - "browser": [ - { "/development/testing": 4 }, - { "/get-started/new-project": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/community/bugs": 1 } - ], - "personal": [ - { "/get-started/new-project": 1 }, - { "/development/environment": 1 }, - { "/patterns/account-menu": 1 } - ], - "computer": [ - { "/get-started/new-project": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/style/themes": 1 } - ], - "phone": [ - { "/design/intro": 4 }, - { "/patterns/forms": 2 }, - { "/patterns/internationalization": 2 }, - { "/get-started/new-project": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/themes": 1 } - ], - "entails": [{ "/get-started/new-project": 2 }], - "app": [ - { "/patterns/appbar": 25 }, - { "/development/frameworks-mobile/intro": 12 }, - { "/get-started/new-project": 4 }, - { "/get-started/mobile": 3 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/development/testing": 3 }, - { "/design/intro": 3 }, - { "/patterns/account-menu": 3 }, - { "/patterns/internationalization": 3 }, - { "/development/environment": 2 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/patterns/navigation": 2 }, - { "/style/color": 2 }, - { "/style/typography": 2 }, - { "/get-started/web": 1 }, - { "/design/websites": 1 }, - { "/patterns/overlay": 1 }, - { "/community/faq": 1 } - ], - "used": [ - { "/style/color": 14 }, - { "/patterns/overlay": 8 }, - { "/patterns/navigation": 6 }, - { "/patterns/appbar": 5 }, - { "/patterns/empty-states": 5 }, - { "/get-started/new-project": 4 }, - { "/design/intro": 4 }, - { "/design/websites": 4 }, - { "/patterns/loading": 4 }, - { "/patterns/user-auth": 4 }, - { "/development/frameworks-web/angular": 3 }, - { "/development/frameworks-web/react": 3 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/design/anatomy": 3 }, - { "/design/accessibility": 3 }, - { "/design/project-identity": 3 }, - { "/patterns/lists": 3 }, - { "/patterns/steppers": 3 }, - { "/style/themes": 3 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/testing": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/visualizations": 2 }, - { "/patterns/account-menu": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 } - ], - "strictly": [{ "/get-started/new-project": 1 }, { "/get-started/mobile": 1 }], - "devices": [ - { "/design/intro": 5 }, - { "/design/websites": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/lists": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/navigation": 1 }, - { "/style/color": 1 }, - { "/style/illustrations": 1 } - ], - "e": [ - { "/development/testing": 8 }, - { "/patterns/forms": 5 }, - { "/design/websites": 4 }, - { "/patterns/internationalization": 4 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/get-started/new-project": 2 }, - { "/get-started/mobile": 2 }, - { "/development/frameworks-web/intro": 2 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/design/accessibility": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/account-menu": 2 }, - { "/patterns/lists": 2 }, - { "/patterns/overlay": 2 }, - { "/design/anatomy": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/color": 1 }, - { "/style/illustrations": 1 }, - { "/community/license": 1 }, - { "/community/faq": 1 } - ], - "g": [ - { "/development/testing": 5 }, - { "/patterns/forms": 5 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/design/websites": 3 }, - { "/patterns/internationalization": 3 }, - { "/get-started/new-project": 2 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/design/accessibility": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/account-menu": 2 }, - { "/patterns/lists": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/style/color": 1 }, - { "/community/faq": 1 } - ], - "cell": [{ "/get-started/new-project": 1 }], - "phones": [{ "/get-started/new-project": 1 }, { "/design/websites": 1 }], - "tablets": [{ "/get-started/new-project": 1 }, { "/design/websites": 1 }], - "etc": [ - { "/design/accessibility": 5 }, - { "/design/websites": 5 }, - { "/style/color": 4 }, - { "/design/anatomy": 3 }, - { "/patterns/account-menu": 3 }, - { "/patterns/user-auth": 3 }, - { "/design/project-identity": 2 }, - { "/style/illustrations": 2 }, - { "/get-started/new-project": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/features": 1 }, - { "/community/faq": 1 } - ], - "downloaded": [{ "/get-started/new-project": 1 }], - "directly": [ - { "/get-started/new-project": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 }, - { "/community/faq": 1 }, - { "/community/contactus": 1 } - ], - "store": [{ "/development/frameworks-mobile/intro": 3 }, { "/get-started/new-project": 1 }], - "google": [ - { "/get-started/new-project": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 }, - { "/community/bugs": 1 } - ], - "play": [ - { "/development/frameworks-mobile/intro": 2 }, - { "/get-started/new-project": 1 }, - { "/patterns/empty-states": 1 }, - { "/community/innersourcing": 1 }, - { "/resources/designer": 1 } - ], - "do": [ - { "/community/faq": 10 }, - { "/patterns/user-auth": 4 }, - { "/style/illustrations": 4 }, - { "/patterns/lists": 3 }, - { "/get-started/new-project": 2 }, - { "/design/accessibility": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/empty-states": 2 }, - { "/patterns/internationalization": 2 }, - { "/style/color": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/overlay": 1 }, - { "/style/iconography": 1 }, - { "/community/contactus": 1 } - ], - "have": [ - { "/community/faq": 20 }, - { "/development/frameworks-mobile/react-native": 7 }, - { "/patterns/navigation": 7 }, - { "/development/environment": 6 }, - { "/development/frameworks-web/intro": 5 }, - { "/development/frameworks-web/angular": 5 }, - { "/development/frameworks-web/react": 5 }, - { "/development/frameworks-mobile/intro": 5 }, - { "/development/frameworks-mobile/ionic": 4 }, - { "/design/project-identity": 4 }, - { "/patterns/internationalization": 4 }, - { "/patterns/user-auth": 4 }, - { "/design/accessibility": 3 }, - { "/patterns/account-menu": 3 }, - { "/patterns/forms": 3 }, - { "/community/innersourcing": 3 }, - { "/get-started/web": 2 }, - { "/development/cli": 2 }, - { "/development/testing": 2 }, - { "/design/intro": 2 }, - { "/design/anatomy": 2 }, - { "/design/websites": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/lists": 2 }, - { "/style/color": 2 }, - { "/style/iconography": 2 }, - { "/get-started/new-project": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/overlay": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/community/contactus": 1 } - ], - "connected": [ - { "/get-started/new-project": 2 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/user-auth": 1 } - ], - "internet": [ - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 } - ], - "difference": [{ "/get-started/new-project": 1 }, { "/design/intro": 1 }, { "/patterns/user-auth": 1 }], - "native": [ - { "/development/frameworks-mobile/react-native": 47 }, - { "/get-started/mobile": 9 }, - { "/development/frameworks-mobile/intro": 8 }, - { "/patterns/lists": 5 }, - { "/style/themes": 5 }, - { "/development/testing": 4 }, - { "/patterns/overlay": 4 }, - { "/development/cli": 3 }, - { "/development/frameworks-mobile/ionic": 3 }, - { "/patterns/loading": 3 }, - { "/patterns/account-menu": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/empty-states": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/steppers": 2 }, - { "/patterns/user-auth": 2 }, - { "/community/bugs": 2 }, - { "/community/faq": 2 }, - { "/get-started/new-project": 1 }, - { "/community/innersourcing": 1 }, - { "/community/features": 1 } - ], - "hybrid": [ - { "/get-started/mobile": 7 }, - { "/development/frameworks-mobile/intro": 3 }, - { "/get-started/new-project": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/style/themes": 1 } - ], - "apps": [ - { "/get-started/mobile": 7 }, - { "/get-started/new-project": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "deciding": [{ "/get-started/new-project": 1 }], - "kind": [{ "/get-started/new-project": 1 }, { "/patterns/loading": 1 }], - "nature": [{ "/get-started/new-project": 1 }, { "/community/innersourcing": 1 }], - "often": [ - { "/design/websites": 3 }, - { "/style/typography": 2 }, - { "/get-started/new-project": 1 }, - { "/development/environment": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/appbar": 1 }, - { "/style/themes": 1 } - ], - "determines": [{ "/get-started/new-project": 1 }], - "which": [ - { "/style/themes": 4 }, - { "/design/project-identity": 2 }, - { "/patterns/account-menu": 2 }, - { "/style/typography": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/steppers": 1 }, - { "/style/color": 1 }, - { "/style/iconography": 1 }, - { "/community/faq": 1 } - ], - "type": [ - { "/patterns/forms": 3 }, - { "/get-started/new-project": 2 }, - { "/style/typography": 2 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/overlay": 1 } - ], - "replacing": [{ "/get-started/new-project": 1 }], - "existing": [ - { "/get-started/new-project": 4 }, - { "/development/frameworks-web/angular": 3 }, - { "/development/frameworks-web/react": 3 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/testing": 2 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/overlay": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "product": [ - { "/design/websites": 7 }, - { "/get-started/new-project": 5 }, - { "/design/project-identity": 5 }, - { "/design/intro": 3 }, - { "/design/accessibility": 2 }, - { "/patterns/internationalization": 2 }, - { "/style/illustrations": 2 }, - { "/community/faq": 2 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 } - ], - "think": [{ "/get-started/new-project": 2 }, { "/community/innersourcing": 1 }, { "/community/faq": 1 }], - "gather": [{ "/get-started/new-project": 1 }], - "feedback": [ - { "/community/contactus": 3 }, - { "/get-started/new-project": 2 }, - { "/design/intro": 2 }, - { "/patterns/forms": 1 } - ], - "users": [ - { "/design/websites": 15 }, - { "/patterns/user-auth": 15 }, - { "/design/intro": 7 }, - { "/design/accessibility": 7 }, - { "/patterns/forms": 6 }, - { "/patterns/loading": 4 }, - { "/get-started/new-project": 3 }, - { "/patterns/internationalization": 3 }, - { "/patterns/overlay": 3 }, - { "/patterns/steppers": 3 }, - { "/design/project-identity": 2 }, - { "/patterns/account-menu": 2 }, - { "/patterns/empty-states": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/visualizations": 2 }, - { "/style/typography": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/style/illustrations": 1 } - ], - "identify": [ - { "/development/testing": 2 }, - { "/get-started/new-project": 1 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/loading": 1 } - ], - "areas": [ - { "/design/project-identity": 3 }, - { "/design/websites": 2 }, - { "/get-started/new-project": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/navigation": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "improvement": [{ "/get-started/new-project": 1 }, { "/community/contactus": 1 }], - "general": [ - { "/get-started/new-project": 2 }, - { "/design/intro": 2 }, - { "/design/websites": 2 }, - { "/patterns/forms": 2 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "want": [ - { "/get-started/new-project": 5 }, - { "/development/frameworks-web/react": 4 }, - { "/development/frameworks-mobile/react-native": 4 }, - { "/design/project-identity": 3 }, - { "/community/faq": 3 }, - { "/get-started/web": 2 }, - { "/development/environment": 2 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/patterns/loading": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/community/features": 1 } - ], - "at": [ - { "/design/websites": 5 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/patterns/account-menu": 3 }, - { "/patterns/empty-states": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/lists": 2 }, - { "/style/themes": 2 }, - { "/community/faq": 2 }, - { "/get-started/new-project": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/color": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 }, - { "/community/our-team": 1 }, - { "/community/contactus": 1 } - ], - "least": [ - { "/get-started/new-project": 1 }, - { "/development/environment": 1 }, - { "/patterns/account-menu": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 } - ], - "before": [ - { "/get-started/new-project": 3 }, - { "/community/innersourcing": 3 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/overlay": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/faq": 1 } - ], - "unless": [{ "/get-started/new-project": 1 }, { "/design/accessibility": 1 }, { "/patterns/forms": 1 }], - "user": [ - { "/patterns/account-menu": 29 }, - { "/patterns/user-auth": 18 }, - { "/patterns/forms": 12 }, - { "/development/testing": 8 }, - { "/design/anatomy": 5 }, - { "/design/websites": 5 }, - { "/patterns/appbar": 5 }, - { "/patterns/overlay": 5 }, - { "/style/color": 4 }, - { "/patterns/loading": 3 }, - { "/design/intro": 2 }, - { "/design/accessibility": 2 }, - { "/patterns/empty-states": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/steppers": 2 }, - { "/get-started/new-project": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/visualizations": 1 } - ], - "suggests": [{ "/get-started/new-project": 1 }, { "/get-started/web": 1 }, { "/patterns/empty-states": 1 }], - "had": [{ "/get-started/new-project": 1 }], - "may": [ - { "/design/project-identity": 7 }, - { "/development/environment": 5 }, - { "/patterns/lists": 5 }, - { "/style/illustrations": 5 }, - { "/patterns/empty-states": 4 }, - { "/patterns/loading": 4 }, - { "/community/faq": 4 }, - { "/get-started/new-project": 3 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/design/anatomy": 3 }, - { "/patterns/account-menu": 3 }, - { "/patterns/appbar": 3 }, - { "/patterns/forms": 3 }, - { "/patterns/internationalization": 3 }, - { "/patterns/user-auth": 3 }, - { "/style/color": 3 }, - { "/community/innersourcing": 3 }, - { "/development/frameworks-web/intro": 2 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/patterns/navigation": 2 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/overlay": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 }, - { "/community/features": 1 } - ], - "responsive": [ - { "/get-started/web": 3 }, - { "/get-started/new-project": 2 }, - { "/patterns/lists": 2 }, - { "/design/websites": 1 } - ], - "time": [ - { "/patterns/loading": 5 }, - { "/development/testing": 4 }, - { "/community/faq": 3 }, - { "/get-started/mobile": 2 }, - { "/design/project-identity": 2 }, - { "/community/innersourcing": 2 }, - { "/get-started/new-project": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/iconography": 1 }, - { "/style/themes": 1 }, - { "/community/bugs": 1 } - ], - "alternatively": [ - { "/get-started/new-project": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/appbar": 1 }, - { "/style/illustrations": 1 }, - { "/community/innersourcing": 1 }, - { "/community/features": 1 } - ], - "expand": [{ "/get-started/new-project": 1 }, { "/style/themes": 1 }], - "offering": [{ "/get-started/new-project": 1 }], - "brand": [ - { "/design/project-identity": 7 }, - { "/get-started/new-project": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "never": [ - { "/design/project-identity": 3 }, - { "/get-started/new-project": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/illustrations": 1 } - ], - "seen": [{ "/get-started/new-project": 1 }, { "/patterns/appbar": 1 }], - "does": [ - { "/patterns/user-auth": 2 }, - { "/get-started/new-project": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/steppers": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "offer": [ - { "/patterns/forms": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/mobile": 1 }, - { "/design/accessibility": 1 }, - { "/community/faq": 1 } - ], - "access": [ - { "/development/frameworks-mobile/intro": 3 }, - { "/community/faq": 3 }, - { "/get-started/new-project": 2 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/testing": 2 }, - { "/design/accessibility": 2 }, - { "/patterns/account-menu": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/user-auth": 2 }, - { "/get-started/web": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 } - ], - "go": [ - { "/community/faq": 3 }, - { "/get-started/new-project": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/intro": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/illustrations": 1 } - ], - "actively": [{ "/get-started/new-project": 1 }], - "field": [ - { "/patterns/forms": 17 }, - { "/patterns/appbar": 2 }, - { "/get-started/new-project": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/themes": 1 } - ], - "something": [ - { "/patterns/loading": 2 }, - { "/community/faq": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/mobile": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/innersourcing": 1 }, - { "/community/features": 1 } - ], - "likely": [ - { "/development/testing": 3 }, - { "/get-started/new-project": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/loading": 1 } - ], - "desk": [{ "/get-started/new-project": 1 }], - "t": [ - { "/development/environment": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/lists": 2 }, - { "/community/faq": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/design/websites": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/navigation": 1 }, - { "/style/iconography": 1 } - ], - "wrong": [ - { "/get-started/new-project": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 } - ], - "due": [{ "/get-started/new-project": 1 }], - "diligence": [{ "/get-started/new-project": 1 }], - "properly": [{ "/get-started/new-project": 1 }, { "/patterns/forms": 1 }], - "able": [ - { "/design/accessibility": 4 }, - { "/community/faq": 3 }, - { "/development/environment": 2 }, - { "/patterns/user-auth": 2 }, - { "/get-started/new-project": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/intro": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/style/iconography": 1 } - ], - "suspect": [{ "/get-started/new-project": 1 }], - "primary": [ - { "/patterns/navigation": 5 }, - { "/patterns/account-menu": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/overlay": 2 }, - { "/patterns/user-auth": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/websites": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 }, - { "/community/faq": 1 } - ], - "mode": [ - { "/style/color": 2 }, - { "/get-started/new-project": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/style/themes": 1 } - ], - "interacting": [{ "/get-started/new-project": 1 }], - "needs": [ - { "/design/intro": 2 }, - { "/style/typography": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/development/testing": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/illustrations": 1 }, - { "/community/faq": 1 } - ], - "offline": [{ "/get-started/new-project": 1 }, { "/get-started/mobile": 1 }, { "/patterns/lists": 1 }], - "consider": [ - { "/development/testing": 3 }, - { "/design/intro": 3 }, - { "/patterns/internationalization": 3 }, - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 } - ], - "building": [ - { "/development/environment": 4 }, - { "/design/anatomy": 2 }, - { "/get-started/new-project": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/design/project-identity": 1 } - ], - "dedicated": [ - { "/patterns/account-menu": 2 }, - { "/get-started/new-project": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 } - ], - "framework": [ - { "/development/frameworks-web/intro": 7 }, - { "/development/testing": 6 }, - { "/get-started/web": 5 }, - { "/development/frameworks-mobile/intro": 4 }, - { "/get-started/mobile": 2 }, - { "/community/faq": 2 }, - { "/development/environment": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/internationalization": 1 }, - { "/community/license": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 } - ], - "everywhere": [{ "/get-started/web": 1 }, { "/design/project-identity": 1 }], - "name": [ - { "/development/frameworks-mobile/react-native": 3 }, - { "/patterns/account-menu": 3 }, - { "/patterns/internationalization": 3 }, - { "/patterns/navigation": 2 }, - { "/get-started/web": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/style/illustrations": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/resources/designer": 1 } - ], - "means": [ - { "/design/accessibility": 2 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/testing": 1 }, - { "/patterns/appbar": 1 } - ], - "lot": [ - { "/get-started/web": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/overlay": 1 } - ], - "but": [ - { "/design/project-identity": 4 }, - { "/community/faq": 4 }, - { "/patterns/empty-states": 3 }, - { "/get-started/mobile": 2 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/anatomy": 2 }, - { "/patterns/account-menu": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/navigation": 2 }, - { "/style/typography": 2 }, - { "/community/license": 2 }, - { "/community/bugs": 2 }, - { "/get-started/web": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/design/intro": 1 }, - { "/design/websites": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/user-auth": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/illustrations": 1 } - ], - "comes": [ - { "/development/testing": 2 }, - { "/get-started/web": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/lists": 1 } - ], - "extra": [{ "/get-started/web": 1 }, { "/style/iconography": 1 }], - "responsibility": [{ "/get-started/web": 1 }], - "them": [ - { "/development/frameworks-mobile/intro": 3 }, - { "/design/intro": 3 }, - { "/patterns/forms": 3 }, - { "/patterns/lists": 3 }, - { "/patterns/user-auth": 3 }, - { "/get-started/web": 2 }, - { "/style/illustrations": 2 }, - { "/community/innersourcing": 2 }, - { "/community/faq": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/style/color": 1 }, - { "/style/themes": 1 }, - { "/resources/designer": 1 } - ], - "critical": [ - { "/get-started/web": 1 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/overlay": 1 } - ], - "today": [{ "/get-started/web": 1 }], - "nearly": [{ "/get-started/web": 1 }, { "/design/anatomy": 1 }, { "/design/websites": 1 }], - "infinite": [{ "/get-started/web": 1 }], - "capable": [{ "/get-started/web": 1 }, { "/development/frameworks-mobile/intro": 1 }], - "available": [ - { "/patterns/empty-states": 4 }, - { "/style/iconography": 4 }, - { "/style/themes": 4 }, - { "/community/faq": 4 }, - { "/development/frameworks-web/react": 3 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/development/testing": 3 }, - { "/patterns/internationalization": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/loading": 2 }, - { "/style/color": 2 }, - { "/community/our-team": 2 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/steppers": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 } - ], - "ll": [ - { "/development/frameworks-mobile/react-native": 4 }, - { "/development/frameworks-web/react": 3 }, - { "/get-started/web": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/design/intro": 1 }, - { "/patterns/appbar": 1 }, - { "/style/typography": 1 } - ], - "look": [ - { "/get-started/mobile": 2 }, - { "/design/intro": 2 }, - { "/design/websites": 2 }, - { "/style/themes": 2 }, - { "/get-started/web": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 }, - { "/community/faq": 1 }, - { "/community/contactus": 1 } - ], - "great": [ - { "/get-started/web": 1 }, - { "/development/environment": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/overlay": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "much": [ - { "/community/faq": 3 }, - { "/get-started/web": 2 }, - { "/design/intro": 2 }, - { "/design/project-identity": 1 }, - { "/patterns/overlay": 1 }, - { "/community/innersourcing": 1 } - ], - "easier": [ - { "/get-started/web": 2 }, - { "/get-started/mobile": 2 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/color": 1 }, - { "/community/innersourcing": 1 } - ], - "fit": [{ "/get-started/web": 1 }, { "/patterns/lists": 1 }, { "/patterns/navigation": 1 }], - "into": [ - { "/patterns/appbar": 3 }, - { "/patterns/forms": 3 }, - { "/development/testing": 2 }, - { "/community/innersourcing": 2 }, - { "/community/bugs": 2 }, - { "/get-started/web": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/anatomy": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/style/color": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/community/faq": 1 }, - { "/resources/designer": 1 } - ], - "sized": [{ "/get-started/web": 1 }, { "/design/websites": 1 }], - "display": [ - { "/patterns/lists": 3 }, - { "/patterns/empty-states": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/overlay": 2 }, - { "/get-started/web": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/loading": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 } - ], - "scale": [ - { "/get-started/web": 2 }, - { "/design/intro": 2 }, - { "/style/typography": 2 }, - { "/patterns/loading": 1 }, - { "/community/our-team": 1 } - ], - "desktop": [ - { "/patterns/lists": 3 }, - { "/patterns/navigation": 3 }, - { "/community/faq": 3 }, - { "/get-started/web": 2 }, - { "/design/intro": 2 }, - { "/patterns/steppers": 2 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/illustrations": 1 } - ], - "size": [ - { "/design/accessibility": 2 }, - { "/get-started/web": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/loading": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 } - ], - "than": [ - { "/design/websites": 6 }, - { "/patterns/navigation": 4 }, - { "/development/testing": 3 }, - { "/design/intro": 3 }, - { "/patterns/appbar": 3 }, - { "/patterns/account-menu": 2 }, - { "/patterns/loading": 2 }, - { "/patterns/overlay": 2 }, - { "/style/illustrations": 2 }, - { "/community/faq": 2 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/style/typography": 1 } - ], - "then": [{ "/get-started/web": 1 }, { "/patterns/user-auth": 1 }], - "there": [ - { "/development/testing": 7 }, - { "/patterns/forms": 7 }, - { "/design/project-identity": 5 }, - { "/patterns/empty-states": 5 }, - { "/development/environment": 4 }, - { "/development/frameworks-mobile/react-native": 4 }, - { "/patterns/internationalization": 4 }, - { "/community/faq": 4 }, - { "/patterns/account-menu": 3 }, - { "/patterns/lists": 3 }, - { "/patterns/loading": 3 }, - { "/get-started/web": 2 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/design/websites": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/steppers": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/user-auth": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 } - ], - "wonderful": [{ "/get-started/web": 1 }], - "tons": [{ "/get-started/web": 1 }], - "options": [ - { "/patterns/internationalization": 2 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/websites": 1 }, - { "/patterns/overlay": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 } - ], - "proceed": [{ "/get-started/web": 1 }, { "/patterns/loading": 1 }, { "/patterns/user-auth": 1 }], - "most": [ - { "/style/typography": 7 }, - { "/patterns/navigation": 6 }, - { "/development/testing": 5 }, - { "/patterns/account-menu": 4 }, - { "/patterns/forms": 4 }, - { "/design/accessibility": 3 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/intro": 2 }, - { "/design/anatomy": 2 }, - { "/design/websites": 2 }, - { "/patterns/lists": 2 }, - { "/patterns/overlay": 2 }, - { "/patterns/visualizations": 2 }, - { "/style/color": 2 }, - { "/style/themes": 2 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "modern": [ - { "/development/testing": 2 }, - { "/get-started/web": 1 }, - { "/development/environment": 1 }, - { "/community/license": 1 } - ], - "built": [ - { "/development/frameworks-mobile/react-native": 4 }, - { "/get-started/mobile": 2 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/development/testing": 2 }, - { "/patterns/internationalization": 2 }, - { "/community/innersourcing": 2 }, - { "/get-started/web": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/iconography": 1 }, - { "/community/license": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "html": [ - { "/development/frameworks-web/angular": 3 }, - { "/get-started/web": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 } - ], - "css": [ - { "/development/testing": 3 }, - { "/get-started/web": 2 }, - { "/development/frameworks-mobile/intro": 1 } - ], - "sit": [{ "/get-started/web": 1 }, { "/patterns/lists": 1 }, { "/patterns/navigation": 1 }], - "inside": [ - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/testing": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 } - ], - "javascript": [ - { "/get-started/web": 4 }, - { "/development/frameworks-web/intro": 3 }, - { "/development/testing": 3 }, - { "/development/environment": 2 }, - { "/get-started/mobile": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 } - ], - "very": [ - { "/design/anatomy": 2 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/illustrations": 1 } - ], - "small": [{ "/patterns/loading": 2 }, { "/get-started/web": 1 }, { "/patterns/visualizations": 1 }], - "don": [ - { "/development/environment": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/lists": 2 }, - { "/get-started/web": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/intro": 1 }, - { "/design/websites": 1 }, - { "/community/faq": 1 } - ], - "really": [{ "/get-started/web": 1 }], - "infrastructure": [{ "/get-started/web": 1 }], - "certainly": [{ "/get-started/web": 1 }], - "static": [ - { "/get-started/web": 1 }, - { "/design/websites": 1 }, - { "/patterns/lists": 1 }, - { "/style/illustrations": 1 } - ], - "just": [ - { "/get-started/web": 1 }, - { "/development/testing": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 } - ], - "vanilla": [{ "/development/frameworks-mobile/react-native": 2 }, { "/get-started/web": 1 }], - "without": [ - { "/design/accessibility": 2 }, - { "/community/license": 2 }, - { "/get-started/web": 1 }, - { "/development/testing": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/style/color": 1 }, - { "/community/faq": 1 } - ], - "entire": [ - { "/patterns/lists": 3 }, - { "/patterns/empty-states": 2 }, - { "/get-started/web": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/testing": 1 } - ], - "angular": [ - { "/development/frameworks-web/angular": 31 }, - { "/development/testing": 8 }, - { "/development/frameworks-mobile/ionic": 7 }, - { "/style/themes": 7 }, - { "/development/frameworks-web/intro": 6 }, - { "/patterns/lists": 5 }, - { "/patterns/appbar": 4 }, - { "/patterns/account-menu": 3 }, - { "/patterns/loading": 3 }, - { "/patterns/navigation": 3 }, - { "/patterns/steppers": 3 }, - { "/community/bugs": 3 }, - { "/community/faq": 3 }, - { "/development/cli": 2 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/patterns/empty-states": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/overlay": 2 }, - { "/patterns/user-auth": 2 }, - { "/community/features": 2 }, - { "/get-started/web": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/innersourcing": 1 }, - { "/community/our-team": 1 } - ], - "react": [ - { "/development/frameworks-mobile/react-native": 48 }, - { "/development/frameworks-web/react": 19 }, - { "/development/testing": 12 }, - { "/style/themes": 10 }, - { "/development/frameworks-mobile/intro": 9 }, - { "/development/cli": 6 }, - { "/patterns/internationalization": 6 }, - { "/patterns/loading": 6 }, - { "/patterns/lists": 5 }, - { "/patterns/overlay": 5 }, - { "/development/frameworks-web/intro": 4 }, - { "/patterns/account-menu": 4 }, - { "/patterns/appbar": 4 }, - { "/patterns/empty-states": 4 }, - { "/patterns/navigation": 4 }, - { "/patterns/user-auth": 4 }, - { "/community/bugs": 4 }, - { "/community/faq": 4 }, - { "/patterns/forms": 3 }, - { "/patterns/steppers": 3 }, - { "/community/innersourcing": 2 }, - { "/community/features": 2 }, - { "/get-started/web": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/our-team": 1 } - ], - "pros": [{ "/get-started/web": 1 }, { "/development/frameworks-web/intro": 1 }], - "cons": [{ "/get-started/web": 1 }, { "/development/frameworks-web/intro": 1 }], - "each": [ - { "/development/testing": 3 }, - { "/design/anatomy": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/lists": 2 }, - { "/patterns/navigation": 2 }, - { "/get-started/web": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/color": 1 }, - { "/style/illustrations": 1 }, - { "/community/faq": 1 } - ], - "frameworks": [ - { "/development/testing": 6 }, - { "/development/frameworks-web/intro": 4 }, - { "/community/faq": 4 }, - { "/development/environment": 2 }, - { "/development/cli": 2 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/get-started/web": 1 }, - { "/style/iconography": 1 } - ], - "one": [ - { "/development/frameworks-web/angular": 3 }, - { "/design/anatomy": 3 }, - { "/development/frameworks-web/intro": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/testing": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/lists": 2 }, - { "/style/typography": 2 }, - { "/community/innersourcing": 2 }, - { "/community/faq": 2 }, - { "/get-started/web": 1 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 }, - { "/style/themes": 1 }, - { "/community/bugs": 1 }, - { "/community/contactus": 1 } - ], - "goals": [{ "/get-started/web": 1 }, { "/community/innersourcing": 1 }, { "/community/faq": 1 }], - "maximize": [ - { "/design/websites": 2 }, - { "/get-started/web": 1 }, - { "/style/illustrations": 1 }, - { "/community/faq": 1 } - ], - "maintainability": [{ "/get-started/web": 1 }], - "standardizing": [{ "/get-started/web": 1 }, { "/style/typography": 1 }], - "certain": [ - { "/patterns/internationalization": 2 }, - { "/get-started/web": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 } - ], - "those": [ - { "/get-started/web": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/style/illustrations": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 } - ], - "trade": [{ "/get-started/web": 1 }], - "offs": [{ "/get-started/web": 1 }], - "popular": [ - { "/development/testing": 4 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "anywhere": [{ "/get-started/mobile": 1 }], - "take": [ - { "/get-started/mobile": 3 }, - { "/patterns/account-menu": 3 }, - { "/style/iconography": 2 }, - { "/development/environment": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/typography": 1 }, - { "/community/bugs": 1 } - ], - "online": [ - { "/community/innersourcing": 2 }, - { "/get-started/mobile": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/lists": 1 }, - { "/style/illustrations": 1 } - ], - "greater": [ - { "/development/frameworks-web/intro": 2 }, - { "/get-started/mobile": 1 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/appbar": 1 } - ], - "advantage": [ - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/intro": 1 }, - { "/patterns/navigation": 1 }, - { "/style/iconography": 1 }, - { "/community/bugs": 1 } - ], - "capabilities": [{ "/get-started/mobile": 1 }, { "/design/intro": 1 }], - "come": [ - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/visualizations": 1 } - ], - "two": [ - { "/patterns/user-auth": 4 }, - { "/get-started/mobile": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/lists": 2 }, - { "/patterns/navigation": 2 }, - { "/style/themes": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/patterns/forms": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "varieties": [{ "/get-started/mobile": 1 }, { "/development/testing": 1 }], - "must": [ - { "/design/accessibility": 5 }, - { "/design/project-identity": 2 }, - { "/patterns/overlay": 2 }, - { "/community/license": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/themes": 1 } - ], - "using": [ - { "/development/frameworks-mobile/react-native": 11 }, - { "/community/faq": 8 }, - { "/development/frameworks-web/angular": 6 }, - { "/patterns/account-menu": 6 }, - { "/patterns/internationalization": 6 }, - { "/development/frameworks-web/react": 5 }, - { "/development/frameworks-mobile/ionic": 5 }, - { "/design/intro": 5 }, - { "/design/accessibility": 5 }, - { "/style/color": 5 }, - { "/get-started/mobile": 4 }, - { "/development/testing": 4 }, - { "/design/websites": 4 }, - { "/patterns/navigation": 4 }, - { "/style/illustrations": 4 }, - { "/development/environment": 3 }, - { "/development/frameworks-mobile/intro": 3 }, - { "/patterns/lists": 3 }, - { "/patterns/user-auth": 3 }, - { "/style/typography": 3 }, - { "/community/innersourcing": 3 }, - { "/development/frameworks-web/intro": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/loading": 2 }, - { "/community/bugs": 2 }, - { "/development/cli": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/iconography": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/community/features": 1 } - ], - "runs": [{ "/get-started/mobile": 1 }, { "/development/frameworks-mobile/intro": 1 }], - "java": [{ "/get-started/mobile": 1 }], - "android": [ - { "/get-started/mobile": 6 }, - { "/development/frameworks-mobile/react-native": 4 }, - { "/development/frameworks-mobile/ionic": 3 }, - { "/development/environment": 2 } - ], - "swift": [{ "/get-started/mobile": 1 }], - "objective": [{ "/get-started/mobile": 1 }], - "c": [{ "/get-started/mobile": 1 }, { "/community/license": 1 }], - "ios": [ - { "/get-started/mobile": 6 }, - { "/development/frameworks-mobile/ionic": 6 }, - { "/development/environment": 2 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "should": [ - { "/patterns/forms": 25 }, - { "/design/websites": 23 }, - { "/patterns/user-auth": 15 }, - { "/design/accessibility": 13 }, - { "/design/intro": 11 }, - { "/patterns/loading": 11 }, - { "/design/project-identity": 10 }, - { "/patterns/internationalization": 10 }, - { "/development/testing": 9 }, - { "/patterns/account-menu": 8 }, - { "/patterns/empty-states": 8 }, - { "/patterns/lists": 7 }, - { "/patterns/overlay": 6 }, - { "/style/illustrations": 6 }, - { "/style/typography": 5 }, - { "/style/color": 4 }, - { "/get-started/mobile": 3 }, - { "/development/environment": 3 }, - { "/community/faq": 3 }, - { "/design/anatomy": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/iconography": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 } - ], - "platforms": [ - { "/get-started/mobile": 3 }, - { "/patterns/user-auth": 2 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/community/bugs": 1 } - ], - "dominant": [{ "/get-started/mobile": 1 }], - "players": [{ "/get-started/mobile": 1 }, { "/development/environment": 1 }], - "market": [ - { "/patterns/internationalization": 7 }, - { "/get-started/mobile": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "particular": [ - { "/design/websites": 3 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/testing": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/navigation": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 } - ], - "prevalent": [{ "/get-started/mobile": 1 }], - "target": [ - { "/development/testing": 2 }, - { "/design/project-identity": 2 }, - { "/get-started/mobile": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 } - ], - "maintained": [{ "/development/frameworks-web/intro": 2 }, { "/get-started/mobile": 1 }], - "single": [ - { "/patterns/lists": 3 }, - { "/get-started/mobile": 2 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/overlay": 1 }, - { "/style/color": 1 }, - { "/community/our-team": 1 } - ], - "base": [ - { "/get-started/mobile": 3 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/style/themes": 1 } - ], - "deployed": [{ "/get-started/mobile": 1 }], - "multiple": [ - { "/patterns/forms": 4 }, - { "/get-started/mobile": 2 }, - { "/style/illustrations": 2 }, - { "/style/typography": 2 }, - { "/development/environment": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 } - ], - "namely": [{ "/get-started/mobile": 1 }], - "i": [ - { "/community/faq": 7 }, - { "/development/testing": 3 }, - { "/get-started/mobile": 2 }, - { "/development/frameworks-web/intro": 2 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/overlay": 1 }, - { "/style/illustrations": 1 }, - { "/community/license": 1 } - ], - "low": [ - { "/get-started/mobile": 1 }, - { "/design/accessibility": 1 }, - { "/style/color": 1 }, - { "/style/themes": 1 }, - { "/community/innersourcing": 1 } - ], - "barrier": [{ "/get-started/mobile": 1 }], - "entry": [ - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/ionic": 1 } - ], - "developers": [ - { "/development/frameworks-web/intro": 3 }, - { "/community/faq": 2 }, - { "/get-started/mobile": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/color": 1 }, - { "/style/themes": 1 }, - { "/community/innersourcing": 1 }, - { "/community/features": 1 }, - { "/community/our-team": 1 } - ], - "implemented": [{ "/get-started/mobile": 1 }, { "/design/anatomy": 1 }], - "differently": [{ "/get-started/mobile": 1 }], - "depending": [ - { "/development/environment": 3 }, - { "/design/project-identity": 3 }, - { "/patterns/forms": 2 }, - { "/community/innersourcing": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/visualizations": 1 } - ], - "some": [ - { "/design/project-identity": 8 }, - { "/community/faq": 5 }, - { "/patterns/forms": 4 }, - { "/patterns/user-auth": 4 }, - { "/development/testing": 3 }, - { "/patterns/internationalization": 3 }, - { "/style/themes": 3 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/design/anatomy": 2 }, - { "/design/websites": 2 }, - { "/patterns/loading": 2 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 } - ], - "compile": [{ "/get-started/mobile": 1 }], - "others": [{ "/get-started/mobile": 1 }, { "/community/bugs": 1 }], - "render": [{ "/get-started/mobile": 1 }], - "content": [ - { "/patterns/navigation": 10 }, - { "/design/websites": 8 }, - { "/patterns/overlay": 7 }, - { "/design/accessibility": 5 }, - { "/patterns/appbar": 4 }, - { "/development/testing": 3 }, - { "/patterns/loading": 3 }, - { "/patterns/account-menu": 2 }, - { "/patterns/lists": 2 }, - { "/get-started/mobile": 1 }, - { "/design/intro": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "view": [ - { "/patterns/lists": 4 }, - { "/get-started/mobile": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/account-menu": 1 }, - { "/style/iconography": 1 } - ], - "essentially": [{ "/get-started/mobile": 1 }], - "running": [ - { "/development/frameworks-mobile/react-native": 5 }, - { "/development/environment": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/testing": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/style/color": 1 } - ], - "comparing": [{ "/get-started/mobile": 1 }], - "guaranteed": [{ "/get-started/mobile": 1 }], - "since": [ - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/patterns/account-menu": 1 } - ], - "uses": [ - { "/design/project-identity": 2 }, - { "/patterns/navigation": 2 }, - { "/style/themes": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/patterns/account-menu": 1 }, - { "/style/color": 1 } - ], - "requires": [ - { "/development/frameworks-mobile/intro": 3 }, - { "/get-started/mobile": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/accessibility": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/innersourcing": 1 } - ], - "specialized": [{ "/get-started/mobile": 1 }], - "expertise": [{ "/get-started/mobile": 1 }], - "separate": [ - { "/get-started/mobile": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/overlay": 1 }, - { "/style/themes": 1 } - ], - "bases": [{ "/get-started/mobile": 1 }], - "operating": [{ "/development/environment": 2 }, { "/get-started/mobile": 1 }, { "/community/bugs": 1 }], - "systems": [ - { "/design/anatomy": 2 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/patterns/internationalization": 1 }, - { "/community/our-team": 1 } - ], - "longer": [ - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/patterns/forms": 1 } - ], - "expensive": [{ "/get-started/mobile": 1 }], - "maintenance": [{ "/get-started/mobile": 1 }, { "/style/color": 1 }], - "reduces": [{ "/get-started/mobile": 1 }], - "thanks": [{ "/get-started/mobile": 1 }], - "shared": [ - { "/get-started/mobile": 1 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/our-team": 1 } - ], - "provides": [ - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/project-identity": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 } - ], - "many": [ - { "/development/testing": 3 }, - { "/patterns/steppers": 3 }, - { "/patterns/visualizations": 3 }, - { "/design/project-identity": 2 }, - { "/community/innersourcing": 2 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/style/illustrations": 1 } - ], - "allows": [ - { "/patterns/steppers": 3 }, - { "/patterns/appbar": 2 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/iconography": 1 } - ], - "consistent": [ - { "/design/intro": 2 }, - { "/design/websites": 2 }, - { "/get-started/mobile": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/account-menu": 1 }, - { "/style/illustrations": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 } - ], - "makes": [ - { "/design/accessibility": 2 }, - { "/design/project-identity": 2 }, - { "/style/typography": 2 }, - { "/get-started/mobile": 1 }, - { "/development/testing": 1 }, - { "/patterns/forms": 1 }, - { "/community/our-team": 1 } - ], - "make": [ - { "/design/project-identity": 8 }, - { "/development/frameworks-mobile/react-native": 4 }, - { "/design/websites": 3 }, - { "/community/license": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/design/intro": 2 }, - { "/patterns/forms": 2 }, - { "/style/typography": 2 }, - { "/community/innersourcing": 2 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/overlay": 1 }, - { "/style/color": 1 }, - { "/community/bugs": 1 }, - { "/community/faq": 1 }, - { "/community/contactus": 1 } - ], - "doesn": [{ "/get-started/mobile": 1 }], - "so": [ - { "/design/websites": 6 }, - { "/development/testing": 2 }, - { "/design/accessibility": 2 }, - { "/style/typography": 2 }, - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/loading": 1 }, - { "/style/iconography": 1 }, - { "/community/license": 1 } - ], - "recommendation": [{ "/get-started/mobile": 1 }, { "/style/iconography": 1 }], - "approach": [ - { "/development/testing": 2 }, - { "/patterns/account-menu": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/project-identity": 1 }, - { "/style/color": 1 } - ], - "allow": [ - { "/patterns/user-auth": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "deploy": [{ "/get-started/mobile": 1 }], - "versions": [{ "/get-started/mobile": 1 }, { "/development/frameworks-mobile/intro": 1 }], - "several": [ - { "/patterns/account-menu": 2 }, - { "/patterns/navigation": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/lists": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "prefer": [ - { "/get-started/mobile": 1 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/community/faq": 1 } - ], - "standards": [ - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 } - ], - "ways": [ - { "/design/accessibility": 2 }, - { "/patterns/account-menu": 2 }, - { "/patterns/user-auth": 2 }, - { "/get-started/mobile": 1 }, - { "/development/testing": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 } - ], - "doing": [ - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/community/faq": 1 } - ], - "note": [ - { "/development/frameworks-mobile/react-native": 3 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/iconography": 1 } - ], - "limited": [ - { "/patterns/navigation": 2 }, - { "/community/license": 2 }, - { "/get-started/mobile": 1 }, - { "/patterns/account-menu": 1 } - ], - "planning": [{ "/get-started/mobile": 1 }, { "/design/intro": 1 }], - "route": [{ "/get-started/mobile": 1 }, { "/design/project-identity": 1 }, { "/style/iconography": 1 }], - "please": [ - { "/community/faq": 9 }, - { "/style/iconography": 4 }, - { "/community/innersourcing": 2 }, - { "/community/features": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/intro": 1 }, - { "/community/license": 1 }, - { "/community/bugs": 1 }, - { "/community/contactus": 1 } - ], - "contact": [ - { "/community/faq": 6 }, - { "/community/contactus": 4 }, - { "/get-started/mobile": 1 }, - { "/design/intro": 1 }, - { "/patterns/account-menu": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 } - ], - "us": [ - { "/community/faq": 11 }, - { "/community/bugs": 3 }, - { "/design/intro": 2 }, - { "/style/iconography": 2 }, - { "/community/contactus": 2 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 }, - { "/community/features": 1 } - ], - "developer": [{ "/development/environment": 1 }, { "/patterns/lists": 1 }], - "develop": [{ "/development/environment": 2 }, { "/community/faq": 2 }, { "/design/websites": 1 }], - "tutorial": [ - { "/development/environment": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 } - ], - "setting": [ - { "/development/frameworks-mobile/ionic": 4 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/development/environment": 2 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 } - ], - "getting": [ - { "/development/environment": 3 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/community/faq": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/style/themes": 1 } - ], - "frustrating": [{ "/development/environment": 1 }], - "part": [ - { "/patterns/forms": 2 }, - { "/development/environment": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 }, - { "/community/faq": 1 } - ], - "fortunately": [{ "/development/environment": 1 }], - "made": [ - { "/design/intro": 2 }, - { "/development/environment": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/community/license": 1 }, - { "/community/faq": 1 } - ], - "strides": [{ "/development/environment": 1 }], - "possible": [ - { "/community/faq": 4 }, - { "/design/intro": 3 }, - { "/design/websites": 3 }, - { "/style/iconography": 2 }, - { "/development/environment": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/steppers": 1 }, - { "/style/illustrations": 1 } - ], - "below": [ - { "/patterns/forms": 4 }, - { "/patterns/account-menu": 2 }, - { "/patterns/user-auth": 2 }, - { "/community/features": 2 }, - { "/community/faq": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/style/color": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 } - ], - "walk": [ - { "/development/environment": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/community/faq": 1 } - ], - "through": [ - { "/development/frameworks-mobile/intro": 2 }, - { "/development/testing": 2 }, - { "/patterns/user-auth": 2 }, - { "/community/faq": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/steppers": 1 }, - { "/style/themes": 1 } - ], - "basics": [{ "/development/environment": 2 }, { "/community/faq": 1 }], - "integrated": [{ "/development/environment": 1 }], - "ide": [ - { "/development/environment": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/community/innersourcing": 1 } - ], - "bunch": [{ "/development/environment": 1 }], - "ides": [{ "/development/environment": 1 }], - "comfortable": [{ "/development/environment": 1 }], - "preference": [{ "/development/environment": 1 }, { "/patterns/appbar": 1 }], - "recommend": [ - { "/development/frameworks-mobile/react-native": 3 }, - { "/patterns/internationalization": 3 }, - { "/design/intro": 2 }, - { "/community/faq": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/websites": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 } - ], - "trying": [{ "/development/environment": 1 }, { "/design/intro": 1 }, { "/patterns/overlay": 1 }], - "visual": [ - { "/design/accessibility": 5 }, - { "/development/frameworks-mobile/intro": 3 }, - { "/design/project-identity": 3 }, - { "/design/websites": 2 }, - { "/development/environment": 1 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/visualizations": 1 } - ], - "quite": [{ "/development/environment": 1 }, { "/development/frameworks-web/intro": 1 }], - "excellent": [{ "/development/environment": 1 }, { "/style/typography": 1 }], - "experience": [ - { "/development/frameworks-web/intro": 2 }, - { "/design/anatomy": 2 }, - { "/development/environment": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/forms": 1 }, - { "/style/illustrations": 1 }, - { "/community/bugs": 1 }, - { "/community/contactus": 1 } - ], - "seamless": [{ "/development/environment": 1 }], - "free": [ - { "/design/accessibility": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/community/faq": 1 } - ], - "git": [{ "/development/environment": 9 }], - "chances": [{ "/development/environment": 1 }], - "probably": [{ "/development/environment": 1 }, { "/development/frameworks-web/intro": 1 }], - "keep": [ - { "/design/websites": 4 }, - { "/style/illustrations": 2 }, - { "/development/environment": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "source": [ - { "/community/license": 7 }, - { "/development/testing": 3 }, - { "/development/frameworks-web/intro": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/community/our-team": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 }, - { "/community/faq": 1 } - ], - "control": [ - { "/development/environment": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "big": [{ "/development/environment": 1 }], - "space": [ - { "/patterns/navigation": 5 }, - { "/development/environment": 1 }, - { "/design/intro": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/resources/designer": 1 } - ], - "backbone": [{ "/development/environment": 1 }], - "bitbucket": [{ "/development/environment": 1 }], - "already": [ - { "/development/frameworks-mobile/react-native": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/patterns/forms": 1 } - ], - "installed": [{ "/development/environment": 3 }, { "/development/frameworks-mobile/ionic": 1 }], - "sh": [ - { "/development/frameworks-mobile/ionic": 6 }, - { "/development/frameworks-mobile/react-native": 6 }, - { "/development/environment": 5 }, - { "/development/frameworks-web/angular": 4 }, - { "/development/frameworks-web/react": 4 }, - { "/development/testing": 2 }, - { "/development/cli": 1 } - ], - "command": [ - { "/development/environment": 2 }, - { "/development/cli": 2 }, - { "/development/frameworks-mobile/react-native": 2 } - ], - "prompt": [ - { "/development/frameworks-mobile/react-native": 3 }, - { "/development/environment": 2 }, - { "/patterns/overlay": 1 } - ], - "download": [ - { "/development/environment": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/community/faq": 1 } - ], - "website": [ - { "/design/websites": 23 }, - { "/development/environment": 2 }, - { "/development/frameworks-web/intro": 2 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/internationalization": 1 } - ], - "behind": [ - { "/development/environment": 2 }, - { "/patterns/loading": 2 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 } - ], - "proxy": [{ "/development/environment": 15 }], - "proxies": [{ "/development/environment": 1 }], - "config": [ - { "/development/environment": 4 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/frameworks-mobile/react-native": 2 } - ], - "global": [ - { "/patterns/lists": 4 }, - { "/development/environment": 3 }, - { "/patterns/internationalization": 3 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/patterns/appbar": 2 } - ], - "http": [{ "/development/environment": 5 }], - "url": [{ "/development/environment": 4 }], - "port": [{ "/development/environment": 4 }], - "https": [{ "/development/environment": 2 }], - "addresses": [{ "/development/environment": 2 }], - "vary": [{ "/development/environment": 3 }, { "/design/accessibility": 1 }], - "location": [ - { "/development/environment": 3 }, - { "/design/intro": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 } - ], - "consult": [{ "/development/environment": 2 }], - "local": [ - { "/design/project-identity": 4 }, - { "/patterns/lists": 3 }, - { "/development/environment": 2 }, - { "/patterns/internationalization": 2 }, - { "/style/illustrations": 1 } - ], - "department": [{ "/development/environment": 2 }], - "node": [{ "/development/environment": 2 }, { "/development/testing": 1 }], - "majority": [{ "/patterns/user-auth": 2 }, { "/development/environment": 1 }], - "via": [ - { "/patterns/user-auth": 7 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/themes": 1 } - ], - "package": [ - { "/style/themes": 5 }, - { "/development/frameworks-web/react": 4 }, - { "/development/cli": 3 }, - { "/development/frameworks-web/angular": 3 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/development/environment": 2 }, - { "/style/color": 2 }, - { "/community/faq": 1 } - ], - "manager": [{ "/development/environment": 2 }], - "install": [ - { "/development/frameworks-mobile/react-native": 8 }, - { "/development/frameworks-web/react": 6 }, - { "/development/frameworks-web/angular": 5 }, - { "/development/environment": 4 }, - { "/development/frameworks-mobile/ionic": 3 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/accessibility": 1 } - ], - "third": [ - { "/patterns/user-auth": 3 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/environment": 1 }, - { "/style/typography": 1 } - ], - "party": [ - { "/patterns/user-auth": 3 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "other": [ - { "/community/faq": 11 }, - { "/design/accessibility": 3 }, - { "/design/project-identity": 3 }, - { "/patterns/account-menu": 3 }, - { "/style/color": 3 }, - { "/development/environment": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/testing": 2 }, - { "/design/anatomy": 2 }, - { "/style/illustrations": 2 }, - { "/community/license": 2 }, - { "/design/intro": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/iconography": 1 }, - { "/style/themes": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 } - ], - "dependencies": [ - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 } - ], - "nodejs": [{ "/development/environment": 1 }], - "yarn": [ - { "/development/environment": 12 }, - { "/development/frameworks-mobile/react-native": 6 }, - { "/development/frameworks-web/angular": 3 }, - { "/development/frameworks-web/react": 3 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/testing": 1 } - ], - "projects": [ - { "/community/faq": 8 }, - { "/development/frameworks-mobile/react-native": 6 }, - { "/development/frameworks-web/react": 5 }, - { "/development/frameworks-web/angular": 3 }, - { "/development/environment": 2 }, - { "/development/cli": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/internationalization": 2 }, - { "/community/license": 2 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 }, - { "/community/our-team": 1 } - ], - "example": [ - { "/design/accessibility": 2 }, - { "/patterns/internationalization": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/overlay": 1 }, - { "/style/color": 1 } - ], - "instead": [ - { "/development/environment": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/loading": 1 } - ], - "instructions": [ - { "/development/frameworks-mobile/ionic": 7 }, - { "/development/frameworks-mobile/react-native": 7 }, - { "/development/frameworks-web/angular": 4 }, - { "/development/frameworks-web/react": 4 }, - { "/design/accessibility": 2 }, - { "/patterns/user-auth": 2 }, - { "/community/faq": 2 }, - { "/development/environment": 1 }, - { "/development/cli": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/steppers": 1 }, - { "/style/iconography": 1 } - ], - "installing": [ - { "/development/environment": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 } - ], - "various": [ - { "/patterns/appbar": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 } - ], - "found": [ - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/patterns/overlay": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 } - ], - "v": [{ "/development/environment": 1 }], - "configure": [ - { "/development/environment": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/steppers": 1 } - ], - "settings": [ - { "/patterns/account-menu": 11 }, - { "/design/anatomy": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/navigation": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/user-auth": 1 } - ], - "sufficient": [{ "/development/environment": 1 }], - "http_proxy": [{ "/development/environment": 1 }], - "https_proxy": [{ "/development/environment": 1 }], - "variables": [{ "/development/environment": 1 }], - "however": [ - { "/design/websites": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/lists": 2 }, - { "/patterns/user-auth": 2 }, - { "/community/faq": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/overlay": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/resources/designer": 1 } - ], - "explicitly": [{ "/development/environment": 1 }], - "values": [ - { "/development/environment": 1 }, - { "/development/testing": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/themes": 1 } - ], - "once": [ - { "/development/frameworks-mobile/ionic": 2 }, - { "/patterns/forms": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/community/innersourcing": 1 } - ], - "configured": [ - { "/development/testing": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "add": [ - { "/development/frameworks-mobile/ionic": 7 }, - { "/development/frameworks-web/react": 5 }, - { "/development/frameworks-mobile/react-native": 4 }, - { "/development/frameworks-web/angular": 3 }, - { "/patterns/lists": 3 }, - { "/patterns/user-auth": 3 }, - { "/community/innersourcing": 2 }, - { "/community/faq": 2 }, - { "/development/environment": 1 }, - { "/design/intro": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/style/illustrations": 1 }, - { "/community/features": 1 } - ], - "globally": [{ "/development/environment": 1 }], - "path": [ - { "/development/environment": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/anatomy": 1 } - ], - "variable": [ - { "/development/environment": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 } - ], - "has": [ - { "/development/testing": 4 }, - { "/patterns/user-auth": 4 }, - { "/design/intro": 3 }, - { "/development/frameworks-mobile/intro": 2 }, - { "/development/environment": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/navigation": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "pointing": [ - { "/development/environment": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/accessibility": 1 } - ], - "directory": [{ "/development/environment": 1 }, { "/development/frameworks-mobile/ionic": 1 }], - "steps": [ - { "/patterns/steppers": 6 }, - { "/patterns/user-auth": 6 }, - { "/development/environment": 2 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/patterns/forms": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 }, - { "/community/faq": 1 } - ], - "prepare": [{ "/development/environment": 1 }], - "requirements": [ - { "/patterns/forms": 4 }, - { "/development/environment": 2 }, - { "/development/testing": 2 }, - { "/design/accessibility": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/themes": 1 } - ], - "selected": [ - { "/patterns/overlay": 4 }, - { "/patterns/account-menu": 2 }, - { "/patterns/lists": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "specific": [ - { "/design/websites": 3 }, - { "/patterns/forms": 3 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/testing": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/internationalization": 2 }, - { "/style/typography": 2 }, - { "/style/themes": 2 }, - { "/development/environment": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 }, - { "/community/license": 1 }, - { "/community/faq": 1 } - ], - "setup": [{ "/development/environment": 1 }, { "/development/frameworks-mobile/react-native": 1 }], - "detailed": [ - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/websites": 2 }, - { "/development/environment": 1 }, - { "/development/cli": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/account-menu": 1 }, - { "/style/themes": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 } - ], - "prerequisites": [{ "/development/environment": 1 }], - "hardware": [{ "/development/frameworks-mobile/intro": 2 }, { "/development/environment": 1 }], - "resource": [ - { "/development/environment": 1 }, - { "/patterns/internationalization": 1 }, - { "/community/license": 1 } - ], - "intensive": [{ "/development/environment": 1 }], - "machine": [{ "/development/environment": 2 }, { "/community/bugs": 1 }], - "task": [{ "/development/environment": 1 }, { "/design/websites": 1 }], - "match": [{ "/development/environment": 1 }, { "/patterns/loading": 1 }], - "minimum": [ - { "/design/websites": 2 }, - { "/development/environment": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/account-menu": 1 } - ], - "mac": [ - { "/development/environment": 2 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 } - ], - "plan": [{ "/development/environment": 1 }, { "/community/innersourcing": 1 }], - "locally": [{ "/development/environment": 1 }], - "16gb": [{ "/development/environment": 1 }], - "ram": [{ "/development/environment": 1 }], - "emulators": [{ "/development/environment": 1 }], - "easily": [ - { "/development/environment": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/overlay": 1 }, - { "/style/illustrations": 1 } - ], - "push": [{ "/development/environment": 1 }, { "/patterns/loading": 1 }], - "20gb": [{ "/development/environment": 1 }], - "solid": [{ "/development/environment": 1 }], - "state": [ - { "/patterns/empty-states": 7 }, - { "/design/anatomy": 2 }, - { "/patterns/navigation": 2 }, - { "/development/environment": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/style/color": 1 } - ], - "hard": [ - { "/development/environment": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/illustrations": 1 } - ], - "drive": [{ "/development/environment": 1 }, { "/community/faq": 1 }], - "ssd": [{ "/development/environment": 1 }], - "gen": [{ "/development/environment": 1 }], - "core": [{ "/development/frameworks-web/react": 3 }, { "/development/environment": 1 }], - "i7": [{ "/development/environment": 1 }], - "virtualization": [{ "/development/environment": 1 }], - "better": [ - { "/design/project-identity": 3 }, - { "/community/bugs": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/patterns/overlay": 1 }, - { "/style/themes": 1 }, - { "/community/features": 1 } - ], - "few": [ - { "/development/environment": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/typography": 1 } - ], - "required": [ - { "/design/accessibility": 4 }, - { "/patterns/forms": 3 }, - { "/development/environment": 2 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/patterns/lists": 1 } - ], - "xcode": [ - { "/development/environment": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "only": [ - { "/design/websites": 4 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/patterns/loading": 2 }, - { "/patterns/user-auth": 2 }, - { "/community/faq": 2 }, - { "/development/environment": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/overlay": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 } - ], - "cli": [ - { "/development/frameworks-mobile/react-native": 21 }, - { "/development/frameworks-web/angular": 10 }, - { "/development/frameworks-mobile/ionic": 10 }, - { "/development/frameworks-web/react": 8 }, - { "/development/cli": 7 }, - { "/development/testing": 4 }, - { "/development/frameworks-web/intro": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "line": [ - { "/development/cli": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 } - ], - "interface": [ - { "/style/color": 4 }, - { "/design/accessibility": 3 }, - { "/development/cli": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/patterns/overlay": 1 } - ], - "tool": [ - { "/community/faq": 3 }, - { "/development/cli": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/patterns/internationalization": 1 } - ], - "create": [ - { "/patterns/user-auth": 4 }, - { "/development/testing": 3 }, - { "/development/cli": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/intro": 2 }, - { "/design/project-identity": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/loading": 1 }, - { "/style/iconography": 1 }, - { "/community/faq": 1 } - ], - "skeleton": [{ "/patterns/loading": 6 }, { "/development/cli": 1 }], - "chosen": [ - { "/development/cli": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/accessibility": 1 }, - { "/style/typography": 1 } - ], - "automatically": [ - { "/development/frameworks-web/angular": 4 }, - { "/development/frameworks-web/react": 4 }, - { "/development/frameworks-mobile/react-native": 4 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/cli": 1 }, - { "/development/testing": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/style/iconography": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "integrate": [ - { "/community/faq": 2 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "component": [ - { "/development/frameworks-mobile/react-native": 9 }, - { "/development/frameworks-web/react": 5 }, - { "/development/frameworks-web/angular": 4 }, - { "/development/testing": 3 }, - { "/style/typography": 3 }, - { "/community/our-team": 3 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/patterns/lists": 2 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/style/iconography": 1 }, - { "/style/themes": 1 }, - { "/community/faq": 1 } - ], - "themes": [ - { "/style/themes": 20 }, - { "/development/frameworks-web/angular": 11 }, - { "/development/frameworks-web/react": 7 }, - { "/development/frameworks-mobile/react-native": 6 }, - { "/design/project-identity": 5 }, - { "/community/faq": 3 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/style/color": 2 }, - { "/development/cli": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/illustrations": 1 }, - { "/community/license": 1 }, - { "/community/bugs": 1 } - ], - "open": [ - { "/development/frameworks-web/angular": 6 }, - { "/development/frameworks-web/react": 5 }, - { "/development/testing": 5 }, - { "/community/license": 5 }, - { "/development/frameworks-mobile/react-native": 4 }, - { "/design/project-identity": 3 }, - { "/style/typography": 3 }, - { "/development/frameworks-web/intro": 2 }, - { "/patterns/navigation": 2 }, - { "/community/our-team": 2 }, - { "/development/cli": 1 }, - { "/design/websites": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/illustrations": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 }, - { "/community/faq": 1 } - ], - "sans": [ - { "/development/frameworks-web/angular": 6 }, - { "/development/frameworks-web/react": 5 }, - { "/design/project-identity": 4 }, - { "/style/typography": 4 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/cli": 1 }, - { "/design/websites": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/illustrations": 1 } - ], - "formatting": [ - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "linting": [{ "/development/cli": 1 }], - "profiles": [{ "/development/cli": 1 }], - "optional": [ - { "/development/cli": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/navigation": 1 } - ], - "opportunity": [ - { "/development/cli": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/innersourcing": 1 } - ], - "select": [ - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/cli": 1 }, - { "/development/testing": 1 }, - { "/patterns/lists": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 } - ], - "template": [{ "/development/cli": 4 }], - "point": [ - { "/development/cli": 1 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/lists": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "blank": [{ "/development/cli": 1 }], - "basic": [ - { "/patterns/appbar": 4 }, - { "/patterns/steppers": 4 }, - { "/design/anatomy": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/account-menu": 2 }, - { "/patterns/user-auth": 2 }, - { "/development/cli": 1 }, - { "/development/testing": 1 }, - { "/patterns/lists": 1 } - ], - "routing": [{ "/development/cli": 1 }], - "full": [ - { "/patterns/empty-states": 2 }, - { "/patterns/visualizations": 2 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/illustrations": 1 }, - { "/community/license": 1 }, - { "/community/our-team": 1 } - ], - "authentication": [ - { "/patterns/user-auth": 9 }, - { "/development/cli": 1 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/steppers": 1 } - ], - "templates": [ - { "/development/cli": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/community/faq": 1 } - ], - "ionic": [ - { "/development/frameworks-mobile/ionic": 25 }, - { "/development/frameworks-mobile/intro": 7 }, - { "/development/testing": 3 }, - { "/style/themes": 3 }, - { "/development/cli": 2 }, - { "/patterns/loading": 2 }, - { "/patterns/overlay": 2 }, - { "/community/bugs": 2 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/innersourcing": 1 }, - { "/community/features": 1 }, - { "/community/faq": 1 } - ], - "npx": [ - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "p": [ - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "blui": [ - { "/development/testing": 2 }, - { "/style/themes": 2 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "usage": [ - { "/development/cli": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/steppers": 1 }, - { "/style/iconography": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "works": [{ "/development/cli": 1 }, { "/development/testing": 1 }], - "option": [ - { "/patterns/internationalization": 2 }, - { "/development/cli": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/user-auth": 1 } - ], - "typescript": [ - { "/development/frameworks-web/react": 3 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/development/cli": 1 }, - { "/development/frameworks-web/intro": 1 } - ], - "supports": [ - { "/development/frameworks-mobile/intro": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/community/faq": 1 } - ], - "large": [ - { "/patterns/empty-states": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/bugs": 1 } - ], - "communities": [{ "/development/frameworks-web/intro": 1 }], - "implementing": [{ "/development/frameworks-web/intro": 1 }, { "/patterns/internationalization": 1 }], - "comparable": [{ "/development/frameworks-web/intro": 1 }], - "would": [ - { "/community/faq": 8 }, - { "/development/frameworks-web/react": 3 }, - { "/development/frameworks-mobile/ionic": 3 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/testing": 2 }, - { "/community/innersourcing": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/design/intro": 1 }, - { "/patterns/overlay": 1 } - ], - "choosing": [{ "/development/frameworks-web/intro": 2 }, { "/development/frameworks-mobile/intro": 1 }], - "either": [ - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 }, - { "/community/bugs": 1 } - ], - "notable": [ - { "/development/frameworks-web/intro": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 } - ], - "differences": [ - { "/patterns/internationalization": 4 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/intro": 1 }, - { "/design/websites": 1 }, - { "/style/themes": 1 } - ], - "outlined": [ - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/project-identity": 1 }, - { "/style/color": 1 }, - { "/style/themes": 1 } - ], - "comprehensive": [{ "/development/frameworks-web/intro": 2 }, { "/community/faq": 1 }], - "functionality": [ - { "/development/frameworks-mobile/intro": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/user-auth": 1 } - ], - "written": [ - { "/development/testing": 4 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/websites": 1 }, - { "/patterns/internationalization": 1 }, - { "/community/license": 1 } - ], - "superset": [{ "/development/frameworks-web/intro": 1 }], - "strong": [{ "/development/frameworks-web/intro": 1 }, { "/design/intro": 1 }], - "typing": [{ "/development/frameworks-web/intro": 1 }], - "structured": [{ "/development/frameworks-web/intro": 1 }], - "way": [ - { "/development/frameworks-mobile/intro": 2 }, - { "/development/testing": 2 }, - { "/design/websites": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/account-menu": 2 }, - { "/patterns/lists": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/user-auth": 2 }, - { "/community/license": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/innersourcing": 1 } - ], - "organizing": [{ "/development/frameworks-web/intro": 1 }], - "back": [ - { "/development/frameworks-web/intro": 1 }, - { "/design/intro": 1 }, - { "/design/websites": 1 }, - { "/patterns/appbar": 1 }, - { "/style/iconography": 1 } - ], - "end": [ - { "/development/testing": 12 }, - { "/development/frameworks-web/intro": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "stack": [{ "/development/frameworks-web/intro": 1 }], - "library": [ - { "/development/frameworks-mobile/react-native": 6 }, - { "/development/frameworks-web/react": 5 }, - { "/development/frameworks-web/angular": 4 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/testing": 2 }, - { "/style/iconography": 2 }, - { "/community/our-team": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 } - ], - "custom": [ - { "/style/typography": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/navigation": 1 }, - { "/community/our-team": 1 } - ], - "combined": [ - { "/design/anatomy": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/style/illustrations": 1 } - ], - "redux": [{ "/development/frameworks-web/intro": 1 }], - "virtual": [{ "/development/frameworks-web/intro": 1 }], - "dom": [{ "/development/frameworks-web/intro": 1 }, { "/development/testing": 1 }], - "fewer": [{ "/patterns/navigation": 2 }, { "/development/frameworks-web/intro": 1 }, { "/patterns/lists": 1 }], - "renders": [{ "/development/frameworks-web/intro": 1 }, { "/development/frameworks-mobile/intro": 1 }], - "faster": [ - { "/development/frameworks-web/intro": 1 }, - { "/development/testing": 1 }, - { "/patterns/loading": 1 } - ], - "updates": [ - { "/community/innersourcing": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/community/license": 1 }, - { "/community/features": 1 }, - { "/community/faq": 1 } - ], - "front": [{ "/development/frameworks-web/intro": 1 }, { "/patterns/overlay": 1 }], - "facebook": [{ "/development/frameworks-web/intro": 1 }, { "/patterns/user-auth": 1 }], - "entirely": [ - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/style/typography": 1 } - ], - "own": [ - { "/design/project-identity": 5 }, - { "/style/iconography": 4 }, - { "/community/faq": 4 }, - { "/development/testing": 3 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/steppers": 2 }, - { "/resources/designer": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 } - ], - "who": [ - { "/patterns/user-auth": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/accessibility": 1 }, - { "/style/iconography": 1 } - ], - "familiar": [ - { "/development/frameworks-mobile/intro": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 } - ], - "might": [ - { "/design/project-identity": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/intro": 1 }, - { "/patterns/internationalization": 1 } - ], - "worthwhile": [{ "/development/frameworks-web/intro": 1 }], - "avoid": [ - { "/style/illustrations": 5 }, - { "/style/color": 4 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/websites": 2 }, - { "/patterns/forms": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/typography": 1 } - ], - "unnecessary": [{ "/development/frameworks-web/intro": 1 }, { "/design/intro": 1 }, { "/design/websites": 1 }], - "learning": [{ "/development/frameworks-mobile/intro": 2 }, { "/development/frameworks-web/intro": 1 }], - "curves": [{ "/development/frameworks-web/intro": 1 }], - "associated": [ - { "/development/frameworks-web/intro": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 } - ], - "yet": [ - { "/development/frameworks-web/intro": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 } - ], - "conduct": [{ "/development/frameworks-web/intro": 1 }, { "/community/our-team": 1 }], - "depth": [{ "/development/frameworks-web/intro": 1 }, { "/development/testing": 1 }], - "analysis": [{ "/development/frameworks-web/intro": 1 }], - "appropriate": [ - { "/patterns/user-auth": 3 }, - { "/design/accessibility": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/loading": 2 }, - { "/style/typography": 2 }, - { "/development/frameworks-web/intro": 1 }, - { "/design/intro": 1 }, - { "/patterns/empty-states": 1 }, - { "/style/iconography": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 } - ], - "reach": [ - { "/development/frameworks-web/intro": 1 }, - { "/design/accessibility": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "assistance": [{ "/development/frameworks-web/intro": 1 }], - "needed": [{ "/development/frameworks-web/intro": 1 }, { "/patterns/empty-states": 1 }], - "downloading": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/lists": 1 } - ], - "samples": [ - { "/community/innersourcing": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/community/bugs": 1 }, - { "/community/faq": 1 } - ], - "login": [ - { "/patterns/user-auth": 13 }, - { "/design/anatomy": 4 }, - { "/development/testing": 3 }, - { "/patterns/forms": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "navigation": [ - { "/patterns/navigation": 26 }, - { "/patterns/account-menu": 7 }, - { "/design/websites": 5 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/patterns/overlay": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 } - ], - "good": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/style/color": 1 } - ], - "fastest": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "starter": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "necessary": [ - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/empty-states": 2 }, - { "/community/faq": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/illustrations": 1 } - ], - "pre": [ - { "/development/testing": 2 }, - { "/design/intro": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "asked": [ - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/community/faq": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-mobile/ionic": 1 } - ], - "whether": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 }, - { "/community/license": 1 } - ], - "eslint": [ - { "/development/frameworks-web/react": 5 }, - { "/development/frameworks-mobile/react-native": 5 }, - { "/development/frameworks-web/angular": 4 }, - { "/development/frameworks-mobile/ionic": 4 } - ], - "prettier": [ - { "/development/frameworks-web/angular": 4 }, - { "/development/frameworks-web/react": 4 }, - { "/development/frameworks-mobile/ionic": 4 }, - { "/development/frameworks-mobile/react-native": 4 } - ], - "configurations": [ - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/steppers": 1 } - ], - "files": [ - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/testing": 2 }, - { "/resources/designer": 2 }, - { "/development/frameworks-web/angular": 1 } - ], - "include": [ - { "/patterns/account-menu": 5 }, - { "/design/anatomy": 4 }, - { "/development/frameworks-web/angular": 3 }, - { "/design/websites": 3 }, - { "/development/frameworks-web/react": 2 }, - { "/design/accessibility": 2 }, - { "/patterns/lists": 2 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/steppers": 1 }, - { "/style/iconography": 1 }, - { "/community/license": 1 } - ], - "font": [ - { "/style/typography": 9 }, - { "/development/frameworks-web/angular": 4 }, - { "/design/websites": 4 }, - { "/development/frameworks-web/react": 3 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/design/accessibility": 3 }, - { "/design/intro": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/internationalization": 1 }, - { "/style/illustrations": 1 } - ], - "refer": [ - { "/development/frameworks-mobile/react-native": 4 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/design/websites": 2 }, - { "/patterns/account-menu": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/steppers": 2 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/navigation": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 }, - { "/community/faq": 1 } - ], - "documentation": [ - { "/development/frameworks-web/angular": 3 }, - { "/development/frameworks-web/react": 3 }, - { "/development/testing": 3 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/overlay": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 }, - { "/community/faq": 1 }, - { "/community/contactus": 1 } - ], - "manual": [ - { "/development/frameworks-mobile/ionic": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/loading": 1 } - ], - "integration": [ - { "/development/frameworks-mobile/ionic": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/testing": 2 }, - { "/community/our-team": 1 } - ], - "scaffold": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "taking": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "been": [ - { "/community/faq": 3 }, - { "/design/accessibility": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/typography": 1 } - ], - "done": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 } - ], - "designed": [ - { "/community/faq": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/empty-states": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 } - ], - "save": [ - { "/development/frameworks-web/angular": 3 }, - { "/development/frameworks-web/react": 3 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/patterns/lists": 1 } - ], - "sample": [ - { "/development/testing": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 } - ], - "api": [ - { "/patterns/forms": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/patterns/loading": 1 } - ], - "reference": [ - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/community/faq": 1 } - ], - "additionally": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/user-auth": 1 } - ], - "supplemental": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/overlay": 1 }, - { "/style/iconography": 1 } - ], - "specifically": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/community/faq": 1 } - ], - "wish": [ - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/loading": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/community/faq": 1 } - ], - "adding": [ - { "/development/frameworks-mobile/react-native": 5 }, - { "/development/frameworks-web/angular": 3 }, - { "/development/frameworks-web/react": 2 }, - { "/design/websites": 2 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/community/license": 1 }, - { "/community/faq": 1 }, - { "/community/contactus": 1 } - ], - "default": [ - { "/development/frameworks-web/angular": 3 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/design/accessibility": 2 }, - { "/community/faq": 2 }, - { "/development/frameworks-web/react": 1 }, - { "/design/intro": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/navigation": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 } - ], - "themed": [ - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 } - ], - "theme": [ - { "/style/themes": 18 }, - { "/development/frameworks-web/angular": 11 }, - { "/development/frameworks-mobile/react-native": 9 }, - { "/development/frameworks-web/react": 8 }, - { "/design/project-identity": 3 }, - { "/community/faq": 2 }, - { "/community/features": 1 } - ], - "order": [ - { "/design/intro": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 } - ], - "modify": [{ "/development/frameworks-web/angular": 1 }, { "/style/themes": 1 }], - "json": [ - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/style/themes": 1 } - ], - "file": [ - { "/development/testing": 2 }, - { "/patterns/internationalization": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 } - ], - "styles": [ - { "/style/typography": 13 }, - { "/development/frameworks-web/angular": 3 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/design/accessibility": 3 }, - { "/design/intro": 2 }, - { "/style/themes": 2 }, - { "/design/project-identity": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 } - ], - "entries": [{ "/development/frameworks-web/angular": 1 }], - "under": [ - { "/development/frameworks-web/angular": 3 }, - { "/style/illustrations": 2 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 }, - { "/community/faq": 1 }, - { "/resources/designer": 1 } - ], - "test": [ - { "/development/testing": 37 }, - { "/design/accessibility": 3 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/style/illustrations": 1 } - ], - "src": [{ "/development/frameworks-web/angular": 1 }], - "scss": [{ "/development/frameworks-web/angular": 3 }, { "/style/themes": 1 }], - "node_modules": [{ "/development/frameworks-web/angular": 2 }], - "applying": [ - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "apply": [ - { "/development/frameworks-web/angular": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/internationalization": 1 } - ], - "proper": [{ "/development/frameworks-web/angular": 1 }], - "class": [{ "/development/testing": 3 }, { "/development/frameworks-web/angular": 2 }, { "/design/intro": 1 }], - "body": [ - { "/development/frameworks-web/angular": 2 }, - { "/patterns/lists": 2 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/navigation": 1 } - ], - "element": [ - { "/development/testing": 3 }, - { "/patterns/lists": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/patterns/empty-states": 1 } - ], - "dark": [ - { "/style/themes": 9 }, - { "/style/color": 3 }, - { "/patterns/navigation": 2 }, - { "/style/illustrations": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 } - ], - "specify": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/anatomy": 1 } - ], - "fonts": [ - { "/design/project-identity": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/websites": 1 }, - { "/style/typography": 1 } - ], - "mat": [{ "/development/frameworks-web/angular": 1 }], - "h1": [{ "/development/frameworks-web/angular": 1 }], - "text": [ - { "/design/accessibility": 10 }, - { "/patterns/forms": 10 }, - { "/style/illustrations": 6 }, - { "/patterns/empty-states": 4 }, - { "/design/websites": 3 }, - { "/patterns/appbar": 3 }, - { "/patterns/internationalization": 3 }, - { "/style/themes": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/style/color": 2 }, - { "/style/typography": 2 }, - { "/community/license": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 } - ], - "h2": [{ "/development/frameworks-web/angular": 1 }], - "bold": [{ "/development/frameworks-web/angular": 1 }, { "/patterns/forms": 1 }], - "copy": [{ "/development/frameworks-web/angular": 1 }, { "/design/websites": 1 }], - "my": [{ "/community/faq": 3 }, { "/development/frameworks-web/angular": 1 }], - "details": [ - { "/patterns/account-menu": 3 }, - { "/patterns/overlay": 2 }, - { "/patterns/user-auth": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "theming": [ - { "/style/themes": 4 }, - { "/development/frameworks-mobile/react-native": 3 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/community/faq": 1 } - ], - "style": [ - { "/style/typography": 5 }, - { "/development/frameworks-mobile/react-native": 4 }, - { "/design/project-identity": 3 }, - { "/style/illustrations": 3 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/style/themes": 2 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/color": 1 }, - { "/style/iconography": 1 }, - { "/community/faq": 1 } - ], - "internally": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "find": [ - { "/development/testing": 5 }, - { "/design/websites": 3 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/style/typography": 2 }, - { "/community/faq": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/style/color": 1 }, - { "/style/iconography": 1 }, - { "/community/bugs": 1 } - ], - "browsers": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/design/accessibility": 1 } - ], - "specifics": [{ "/development/frameworks-web/angular": 1 }, { "/development/frameworks-web/react": 1 }], - "life": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/design/intro": 1 } - ], - "explorer": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/style/themes": 1 } - ], - "no": [ - { "/design/websites": 4 }, - { "/patterns/empty-states": 4 }, - { "/community/license": 2 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/overlay": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 } - ], - "supporting": [ - { "/patterns/internationalization": 3 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/faq": 1 } - ], - "ie11": [{ "/development/frameworks-web/angular": 1 }, { "/development/frameworks-web/react": 1 }], - "license": [ - { "/community/license": 7 }, - { "/development/frameworks-web/angular": 2 }, - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/account-menu": 1 }, - { "/style/typography": 1 } - ], - "mit": [ - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "mui": [{ "/development/frameworks-web/react": 1 }], - "fontsource": [{ "/development/frameworks-web/react": 1 }], - "enzyme": [{ "/development/frameworks-web/react": 3 }, { "/development/testing": 1 }], - "adapter": [{ "/development/frameworks-web/react": 1 }], - "import": [ - { "/development/frameworks-web/react": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/community/innersourcing": 1 } - ], - "provider": [{ "/development/frameworks-web/react": 1 }, { "/development/frameworks-mobile/react-native": 1 }], - "js": [ - { "/development/frameworks-mobile/react-native": 5 }, - { "/development/testing": 2 }, - { "/development/frameworks-web/react": 1 }, - { "/patterns/internationalization": 1 } - ], - "tsx": [{ "/development/frameworks-web/react": 2 }, { "/development/frameworks-mobile/react-native": 2 }], - "whole": [{ "/development/frameworks-web/react": 1 }, { "/patterns/user-auth": 1 }], - "simply": [ - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/steppers": 1 }, - { "/community/bugs": 1 } - ], - "around": [ - { "/development/frameworks-web/react": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/project-identity": 1 }, - { "/resources/designer": 1 } - ], - "top": [ - { "/patterns/navigation": 7 }, - { "/design/websites": 3 }, - { "/design/project-identity": 2 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/testing": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/overlay": 1 }, - { "/style/iconography": 1 } - ], - "level": [ - { "/patterns/navigation": 3 }, - { "/design/anatomy": 2 }, - { "/design/accessibility": 2 }, - { "/development/frameworks-web/react": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/empty-states": 1 }, - { "/style/color": 1 }, - { "/style/themes": 1 } - ], - "pass": [ - { "/development/frameworks-web/react": 1 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 } - ], - "read": [ - { "/design/websites": 4 }, - { "/design/accessibility": 2 }, - { "/patterns/internationalization": 2 }, - { "/community/faq": 2 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/patterns/appbar": 1 }, - { "/style/iconography": 1 }, - { "/community/features": 1 } - ], - "significant": [ - { "/development/frameworks-mobile/intro": 1 }, - { "/development/testing": 1 }, - { "/community/innersourcing": 1 } - ], - "agnostic": [{ "/development/frameworks-mobile/intro": 1 }], - "webview": [{ "/development/frameworks-mobile/intro": 2 }], - "optimized": [{ "/development/frameworks-mobile/intro": 1 }, { "/style/typography": 1 }], - "lots": [{ "/development/frameworks-mobile/intro": 1 }], - "plugins": [ - { "/development/frameworks-mobile/intro": 2 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/accessibility": 1 } - ], - "logic": [ - { "/development/frameworks-mobile/intro": 2 }, - { "/development/testing": 2 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "writing": [ - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/testing": 2 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/internationalization": 1 } - ], - "curve": [{ "/development/frameworks-mobile/intro": 2 }], - "styling": [{ "/development/frameworks-mobile/intro": 1 }, { "/style/typography": 1 }, { "/style/themes": 1 }], - "biggest": [{ "/development/frameworks-mobile/intro": 1 }], - "concern": [{ "/development/frameworks-mobile/intro": 1 }, { "/patterns/internationalization": 1 }], - "wraps": [{ "/development/frameworks-mobile/intro": 1 }], - "performance": [{ "/development/frameworks-mobile/intro": 1 }, { "/development/testing": 1 }], - "d": [{ "/community/features": 2 }, { "/development/frameworks-mobile/intro": 1 }], - "write": [ - { "/development/testing": 10 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 } - ], - "views": [{ "/development/testing": 2 }, { "/development/frameworks-mobile/intro": 1 }], - "recommended": [ - { "/development/frameworks-mobile/react-native": 3 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/style/illustrations": 1 } - ], - "won": [ - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/community/our-team": 1 } - ], - "process": [ - { "/patterns/internationalization": 3 }, - { "/patterns/steppers": 2 }, - { "/patterns/user-auth": 2 }, - { "/community/innersourcing": 2 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/accessibility": 1 }, - { "/community/license": 1 } - ], - "developing": [ - { "/development/frameworks-mobile/ionic": 2 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/project-identity": 1 }, - { "/style/typography": 1 }, - { "/community/our-team": 1 } - ], - "ultimately": [{ "/development/frameworks-mobile/intro": 1 }, { "/patterns/loading": 1 }], - "creating": [ - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/testing": 2 }, - { "/patterns/user-auth": 2 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/overlay": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 } - ], - "final": [{ "/development/frameworks-mobile/intro": 4 }, { "/development/frameworks-mobile/react-native": 1 }], - "binary": [ - { "/development/frameworks-mobile/intro": 2 }, - { "/community/license": 2 }, - { "/development/frameworks-mobile/ionic": 1 } - ], - "distribute": [{ "/development/frameworks-mobile/intro": 1 }], - "testers": [{ "/development/frameworks-mobile/intro": 1 }], - "customers": [{ "/development/frameworks-mobile/intro": 1 }], - "deploying": [{ "/development/frameworks-mobile/intro": 1 }], - "distributable": [{ "/development/frameworks-mobile/intro": 1 }], - "distributing": [{ "/development/frameworks-mobile/intro": 1 }], - "center": [{ "/development/frameworks-mobile/intro": 3 }, { "/patterns/overlay": 1 }], - "formerly": [{ "/development/frameworks-mobile/intro": 1 }], - "hockeyapp": [{ "/development/frameworks-mobile/intro": 1 }], - "gives": [{ "/development/frameworks-mobile/intro": 1 }, { "/patterns/loading": 1 }], - "ready": [{ "/development/frameworks-mobile/intro": 1 }, { "/development/frameworks-mobile/ionic": 1 }], - "distribution": [{ "/development/frameworks-mobile/intro": 2 }, { "/community/license": 1 }], - "service": [{ "/development/frameworks-mobile/intro": 1 }, { "/patterns/account-menu": 1 }], - "upload": [{ "/development/frameworks-mobile/intro": 1 }], - "binaries": [{ "/development/frameworks-mobile/intro": 1 }], - "lists": [{ "/patterns/lists": 12 }, { "/development/frameworks-mobile/intro": 1 }], - "people": [ - { "/development/frameworks-mobile/intro": 2 }, - { "/patterns/internationalization": 1 }, - { "/community/faq": 1 } - ], - "whom": [{ "/development/frameworks-mobile/intro": 1 }], - "share": [ - { "/community/faq": 2 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "notified": [{ "/development/frameworks-mobile/intro": 1 }, { "/patterns/user-auth": 1 }], - "email": [ - { "/patterns/user-auth": 17 }, - { "/patterns/forms": 4 }, - { "/patterns/account-menu": 2 }, - { "/community/contactus": 2 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/design/project-identity": 1 }, - { "/community/innersourcing": 1 }, - { "/community/features": 1 } - ], - "prompted": [ - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "onto": [ - { "/development/frameworks-mobile/intro": 1 }, - { "/design/intro": 1 }, - { "/patterns/lists": 1 }, - { "/community/faq": 1 } - ], - "request": [ - { "/patterns/user-auth": 3 }, - { "/style/iconography": 2 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/community/innersourcing": 1 }, - { "/community/features": 1 } - ], - "utilize": [{ "/style/themes": 2 }, { "/development/frameworks-mobile/intro": 1 }, { "/style/color": 1 }], - "connect": [{ "/development/frameworks-mobile/intro": 1 }], - "console": [{ "/development/frameworks-mobile/intro": 1 }], - "takes": [{ "/patterns/loading": 2 }, { "/development/frameworks-mobile/ionic": 1 }], - "beyond": [{ "/development/frameworks-mobile/ionic": 1 }], - "cordova": [ - { "/development/frameworks-mobile/ionic": 15 }, - { "/community/bugs": 3 }, - { "/community/features": 1 } - ], - "scenes": [{ "/patterns/loading": 2 }, { "/development/frameworks-mobile/ionic": 1 }], - "offers": [ - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/project-identity": 1 }, - { "/style/color": 1 }, - { "/style/iconography": 1 }, - { "/style/themes": 1 }, - { "/community/faq": 1 } - ], - "convenience": [{ "/development/frameworks-mobile/ionic": 1 }], - "pure": [{ "/development/frameworks-mobile/ionic": 1 }, { "/style/color": 1 }, { "/style/themes": 1 }], - "apache": [ - { "/development/frameworks-mobile/ionic": 1 }, - { "/style/typography": 1 }, - { "/community/features": 1 } - ], - "date": [ - { "/development/frameworks-mobile/ionic": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 } - ], - "gradle": [{ "/development/frameworks-mobile/ionic": 3 }], - "res": [{ "/development/frameworks-mobile/ionic": 2 }], - "gradle_home": [{ "/development/frameworks-mobile/ionic": 1 }], - "virtually": [{ "/development/frameworks-mobile/ionic": 1 }], - "identical": [ - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 } - ], - "normal": [{ "/development/frameworks-mobile/ionic": 1 }, { "/design/anatomy": 1 }], - "serve": [ - { "/design/websites": 2 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/design/intro": 1 }, - { "/community/our-team": 1 } - ], - "localhost": [{ "/development/frameworks-mobile/ionic": 1 }], - "completes": [{ "/development/frameworks-mobile/ionic": 1 }], - "along": [{ "/development/frameworks-mobile/ionic": 1 }, { "/patterns/account-menu": 1 }], - "configuration": [{ "/development/frameworks-mobile/ionic": 1 }], - "now": [{ "/development/frameworks-mobile/ionic": 1 }], - "simulator": [{ "/development/frameworks-mobile/ionic": 1 }], - "flags": [{ "/development/frameworks-mobile/ionic": 1 }], - "buildflag": [{ "/development/frameworks-mobile/ionic": 1 }], - "usemodernbuildsystem": [{ "/development/frameworks-mobile/ionic": 1 }], - "addition": [ - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/community/our-team": 1 } - ], - "expo": [{ "/development/frameworks-mobile/react-native": 16 }, { "/community/innersourcing": 1 }], - "client": [{ "/development/frameworks-mobile/react-native": 1 }, { "/patterns/forms": 1 }], - "creation": [{ "/development/frameworks-mobile/react-native": 1 }, { "/patterns/user-auth": 1 }], - "paper": [ - { "/development/frameworks-mobile/react-native": 10 }, - { "/style/themes": 2 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/overlay": 1 } - ], - "vector": [{ "/development/frameworks-mobile/react-native": 4 }], - "svg": [{ "/style/illustrations": 3 }, { "/development/frameworks-mobile/react-native": 1 }], - "jest": [{ "/development/testing": 3 }, { "/development/frameworks-mobile/react-native": 1 }], - "renderer": [{ "/development/frameworks-mobile/react-native": 1 }, { "/development/testing": 1 }], - "reading": [ - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/accessibility": 1 }, - { "/community/faq": 1 } - ], - "weight": [ - { "/style/typography": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/project-identity": 1 } - ], - "load": [ - { "/patterns/loading": 3 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/patterns/appbar": 1 } - ], - "format": [{ "/development/frameworks-mobile/react-native": 1 }, { "/design/websites": 1 }], - "opensans": [{ "/development/frameworks-mobile/react-native": 2 }], - "semibold": [{ "/development/frameworks-mobile/react-native": 1 }], - "demos": [{ "/development/frameworks-mobile/react-native": 2 }, { "/community/innersourcing": 1 }], - "applies": [{ "/development/frameworks-mobile/react-native": 2 }], - "avoiding": [{ "/development/frameworks-mobile/react-native": 1 }, { "/design/accessibility": 1 }], - "repeated": [{ "/development/frameworks-mobile/react-native": 1 }], - "repeatedly": [{ "/development/frameworks-mobile/react-native": 1 }], - "inline": [{ "/development/frameworks-mobile/react-native": 1 }], - "define": [ - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/patterns/steppers": 1 } - ], - "throughout": [ - { "/design/websites": 3 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/color": 1 }, - { "/style/themes": 1 } - ], - "mytext": [{ "/development/frameworks-mobile/react-native": 2 }], - "export": [{ "/style/illustrations": 4 }, { "/development/frameworks-mobile/react-native": 1 }], - "children": [{ "/development/frameworks-mobile/react-native": 2 }], - "otherfile": [{ "/development/frameworks-mobile/react-native": 1 }], - "object": [{ "/patterns/internationalization": 2 }, { "/development/frameworks-mobile/react-native": 1 }], - "relatively": [{ "/development/frameworks-mobile/react-native": 1 }, { "/patterns/account-menu": 1 }], - "simple": [ - { "/design/websites": 3 }, - { "/design/anatomy": 2 }, - { "/patterns/overlay": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/user-auth": 1 } - ], - "understand": [ - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/typography": 1 }, - { "/community/our-team": 1 } - ], - "remains": [{ "/development/frameworks-mobile/react-native": 1 }], - "little": [{ "/development/frameworks-mobile/react-native": 1 }], - "adjustment": [{ "/development/frameworks-mobile/react-native": 1 }], - "rather": [ - { "/development/testing": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/overlay": 1 }, - { "/style/typography": 1 } - ], - "typical": [{ "/development/frameworks-mobile/react-native": 1 }], - "uis": [{ "/development/frameworks-mobile/react-native": 1 }], - "special": [ - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/style/color": 1 }, - { "/community/license": 1 } - ], - "layouts": [ - { "/design/intro": 2 }, - { "/design/websites": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/innersourcing": 1 } - ], - "exclusively": [{ "/development/frameworks-mobile/react-native": 1 }, { "/style/illustrations": 1 }], - "flexbox": [{ "/development/frameworks-mobile/react-native": 1 }], - "after": [ - { "/development/testing": 3 }, - { "/patterns/user-auth": 3 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/style/illustrations": 1 }, - { "/community/innersourcing": 1 } - ], - "ve": [ - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/project-identity": 1 }, - { "/community/faq": 1 } - ], - "created": [ - { "/development/testing": 3 }, - { "/patterns/user-auth": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/style/iconography": 1 }, - { "/community/innersourcing": 1 } - ], - "cd": [{ "/development/testing": 2 }, { "/development/frameworks-mobile/react-native": 1 }], - "yourappname": [{ "/development/frameworks-mobile/react-native": 1 }], - "rnc": [{ "/development/frameworks-mobile/react-native": 3 }], - "screen": [ - { "/patterns/loading": 6 }, - { "/patterns/overlay": 6 }, - { "/patterns/user-auth": 6 }, - { "/patterns/appbar": 5 }, - { "/patterns/forms": 5 }, - { "/development/testing": 4 }, - { "/patterns/empty-states": 4 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/design/intro": 2 }, - { "/design/accessibility": 2 }, - { "/patterns/lists": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/visualizations": 2 }, - { "/design/anatomy": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/steppers": 1 }, - { "/style/color": 1 }, - { "/style/illustrations": 1 }, - { "/style/themes": 1 }, - { "/community/our-team": 1 } - ], - "changes": [ - { "/design/project-identity": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/user-auth": 1 } - ], - "rebuild": [{ "/development/frameworks-mobile/react-native": 1 }], - "update": [ - { "/development/frameworks-mobile/react-native": 2 }, - { "/development/testing": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 } - ], - "emulator": [{ "/development/frameworks-mobile/react-native": 2 }], - "error": [ - { "/patterns/forms": 8 }, - { "/patterns/user-auth": 4 }, - { "/design/accessibility": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 } - ], - "message": [ - { "/patterns/empty-states": 2 }, - { "/patterns/forms": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/user-auth": 1 } - ], - "watchman": [{ "/development/frameworks-mobile/react-native": 2 }], - "brew": [{ "/development/frameworks-mobile/react-native": 1 }], - "ejecting": [{ "/development/frameworks-mobile/react-native": 5 }], - "becomes": [{ "/development/frameworks-mobile/react-native": 1 }, { "/patterns/appbar": 1 }], - "eject": [{ "/development/frameworks-mobile/react-native": 5 }], - "reason": [ - { "/development/frameworks-mobile/react-native": 3 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 } - ], - "prompts": [{ "/development/frameworks-mobile/react-native": 1 }], - "warning": [{ "/development/frameworks-mobile/react-native": 1 }], - "cannot": [{ "/development/frameworks-mobile/react-native": 1 }, { "/patterns/forms": 1 }], - "undone": [{ "/development/frameworks-mobile/react-native": 1 }], - "proceeding": [{ "/development/frameworks-mobile/react-native": 1 }], - "bare": [{ "/development/frameworks-mobile/react-native": 1 }], - "second": [ - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/loading": 1 }, - { "/style/typography": 1 } - ], - "accept": [{ "/patterns/user-auth": 2 }, { "/development/frameworks-mobile/react-native": 1 }], - "value": [ - { "/development/testing": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/websites": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 } - ], - "press": [{ "/development/frameworks-mobile/react-native": 1 }, { "/patterns/lists": 1 }], - "enter": [ - { "/patterns/user-auth": 6 }, - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/forms": 2 } - ], - "changing": [ - { "/style/typography": 3 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/user-auth": 1 } - ], - "cause": [{ "/development/frameworks-mobile/react-native": 1 }, { "/development/testing": 1 }], - "issues": [ - { "/community/bugs": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/style/color": 1 }, - { "/community/contactus": 1 } - ], - "solution": [{ "/community/faq": 3 }, { "/development/frameworks-mobile/react-native": 1 }], - "folder": [{ "/development/frameworks-mobile/react-native": 1 }], - "folders": [{ "/development/frameworks-mobile/react-native": 1 }], - "projectname": [{ "/development/frameworks-mobile/react-native": 1 }], - "xcodeproj": [{ "/development/frameworks-mobile/react-native": 1 }], - "perform": [ - { "/development/frameworks-mobile/react-native": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/lists": 2 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/innersourcing": 1 } - ], - "builds": [{ "/development/frameworks-mobile/react-native": 2 }, { "/style/typography": 1 }], - "scripts": [{ "/development/frameworks-mobile/react-native": 1 }, { "/patterns/internationalization": 1 }], - "added": [ - { "/community/features": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 }, - { "/community/our-team": 1 } - ], - "during": [ - { "/patterns/forms": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "ejection": [{ "/development/frameworks-mobile/react-native": 1 }], - "manually": [ - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/websites": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 } - ], - "bundle": [{ "/development/frameworks-mobile/react-native": 1 }], - "vs": [ - { "/design/project-identity": 5 }, - { "/patterns/internationalization": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/websites": 1 }, - { "/patterns/navigation": 1 } - ], - "nice": [{ "/development/frameworks-mobile/react-native": 1 }], - "spinning": [{ "/development/frameworks-mobile/react-native": 1 }], - "quick": [ - { "/development/testing": 2 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/navigation": 1 } - ], - "production": [{ "/development/frameworks-mobile/react-native": 1 }], - "complications": [{ "/development/frameworks-mobile/react-native": 1 }], - "because": [ - { "/development/testing": 5 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/appbar": 1 } - ], - "ability": [ - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 } - ], - "live": [ - { "/development/frameworks-mobile/react-native": 1 }, - { "/development/testing": 1 }, - { "/style/iconography": 1 }, - { "/community/innersourcing": 1 }, - { "/community/contactus": 1 } - ], - "snack": [{ "/community/innersourcing": 2 }, { "/development/frameworks-mobile/react-native": 1 }], - "speed": [ - { "/development/frameworks-mobile/react-native": 1 }, - { "/community/innersourcing": 1 }, - { "/resources/designer": 1 } - ], - "improve": [ - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/design/websites": 1 }, - { "/patterns/forms": 1 } - ], - "implementation": [{ "/development/testing": 5 }, { "/development/frameworks-mobile/react-native": 2 }], - "unit": [{ "/development/testing": 14 }, { "/design/anatomy": 1 }], - "e2e": [{ "/development/testing": 7 }], - "tdd": [{ "/development/testing": 3 }], - "bdd": [{ "/development/testing": 2 }], - "cypress": [{ "/development/testing": 6 }], - "successfully": [{ "/development/testing": 1 }, { "/patterns/forms": 1 }], - "releasing": [{ "/development/testing": 1 }, { "/community/innersourcing": 1 }], - "despite": [{ "/development/testing": 1 }], - "importance": [{ "/development/testing": 1 }, { "/design/intro": 1 }], - "overlook": [{ "/development/testing": 1 }], - "neglect": [{ "/development/testing": 1 }], - "considered": [ - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/design/websites": 1 }, - { "/style/typography": 1 } - ], - "beginning": [{ "/development/testing": 1 }], - "afterthought": [{ "/development/testing": 1 }], - "every": [ - { "/design/websites": 3 }, - { "/design/project-identity": 2 }, - { "/community/faq": 2 }, - { "/development/testing": 1 } - ], - "piece": [{ "/development/testing": 1 }, { "/design/websites": 1 }], - "verifies": [{ "/development/testing": 1 }], - "correct": [{ "/development/testing": 3 }, { "/style/illustrations": 1 }, { "/style/themes": 1 }], - "tests": [{ "/development/testing": 46 }, { "/design/accessibility": 1 }], - "purpose": [ - { "/style/color": 2 }, - { "/development/testing": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/license": 1 } - ], - "verify": [{ "/development/testing": 8 }, { "/patterns/forms": 4 }, { "/patterns/user-auth": 3 }], - "individual": [ - { "/patterns/lists": 3 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/empty-states": 1 } - ], - "methods": [{ "/development/testing": 4 }, { "/patterns/forms": 1 }], - "functions": [{ "/patterns/account-menu": 3 }, { "/development/testing": 2 }, { "/design/accessibility": 1 }], - "modules": [{ "/development/testing": 1 }], - "services": [ - { "/patterns/internationalization": 2 }, - { "/development/testing": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/color": 1 }, - { "/community/license": 1 } - ], - "together": [{ "/development/testing": 2 }, { "/design/websites": 1 }], - "functional": [{ "/development/testing": 3 }, { "/design/websites": 3 }, { "/design/anatomy": 1 }], - "output": [{ "/development/testing": 3 }], - "actions": [ - { "/patterns/lists": 14 }, - { "/patterns/account-menu": 8 }, - { "/design/intro": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/empty-states": 2 }, - { "/patterns/overlay": 2 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/visualizations": 1 } - ], - "business": [ - { "/development/testing": 2 }, - { "/community/license": 1 }, - { "/community/faq": 1 }, - { "/community/contactus": 1 } - ], - "behaviors": [ - { "/patterns/forms": 2 }, - { "/development/testing": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/user-auth": 1 } - ], - "workflows": [ - { "/design/anatomy": 8 }, - { "/patterns/user-auth": 7 }, - { "/development/testing": 1 }, - { "/patterns/steppers": 1 }, - { "/community/our-team": 1 } - ], - "function": [ - { "/development/testing": 3 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 } - ], - "expected": [ - { "/development/testing": 2 }, - { "/patterns/internationalization": 2 }, - { "/design/anatomy": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/typography": 1 } - ], - "acceptance": [{ "/development/testing": 2 }], - "meets": [{ "/development/testing": 1 }], - "behaves": [{ "/patterns/navigation": 2 }, { "/development/testing": 1 }], - "correctly": [{ "/development/testing": 1 }, { "/design/accessibility": 1 }, { "/patterns/forms": 1 }], - "heavy": [{ "/development/testing": 1 }], - "smoke": [{ "/development/testing": 1 }], - "checks": [{ "/patterns/forms": 2 }, { "/development/testing": 1 }], - "major": [{ "/development/testing": 1 }, { "/style/themes": 1 }], - "document": [{ "/development/testing": 1 }], - "focuses": [{ "/development/testing": 1 }, { "/design/anatomy": 1 }], - "mainly": [{ "/development/testing": 1 }], - "easiest": [{ "/development/testing": 1 }, { "/patterns/lists": 1 }, { "/style/typography": 1 }], - "automate": [{ "/development/testing": 3 }], - "smallest": [{ "/development/testing": 1 }, { "/style/illustrations": 1 }], - "pieces": [{ "/development/testing": 2 }, { "/community/faq": 1 }], - "such": [ - { "/patterns/internationalization": 5 }, - { "/patterns/lists": 5 }, - { "/patterns/overlay": 5 }, - { "/development/testing": 4 }, - { "/design/anatomy": 4 }, - { "/patterns/forms": 4 }, - { "/patterns/account-menu": 3 }, - { "/patterns/empty-states": 3 }, - { "/patterns/user-auth": 3 }, - { "/style/illustrations": 3 }, - { "/style/themes": 3 }, - { "/style/color": 2 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 }, - { "/community/features": 1 }, - { "/community/faq": 1 } - ], - "verifying": [{ "/patterns/forms": 4 }, { "/development/testing": 1 }], - "inputs": [ - { "/patterns/forms": 3 }, - { "/development/testing": 2 }, - { "/patterns/loading": 1 }, - { "/patterns/overlay": 1 } - ], - "outputs": [{ "/development/testing": 2 }], - "method": [{ "/development/testing": 1 }], - "bulk": [{ "/development/testing": 1 }], - "easy": [ - { "/development/testing": 2 }, - { "/design/websites": 1 }, - { "/patterns/navigation": 1 }, - { "/resources/designer": 1 } - ], - "achieve": [{ "/development/testing": 2 }, { "/style/themes": 1 }], - "coverage": [{ "/development/testing": 7 }], - "measures": [{ "/development/testing": 1 }], - "percentage": [{ "/development/testing": 1 }, { "/style/iconography": 1 }], - "verified": [{ "/patterns/forms": 3 }, { "/development/testing": 1 }, { "/patterns/user-auth": 1 }], - "shouldn": [{ "/development/testing": 1 }], - "external": [{ "/development/testing": 1 }, { "/style/iconography": 1 }], - "apis": [{ "/development/testing": 1 }], - "keeping": [{ "/development/testing": 1 }, { "/design/websites": 1 }], - "isolated": [{ "/development/testing": 1 }], - "manner": [{ "/development/testing": 1 }], - "failing": [{ "/development/testing": 1 }], - "implement": [ - { "/patterns/account-menu": 3 }, - { "/patterns/appbar": 2 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/illustrations": 1 } - ], - "fix": [{ "/development/testing": 1 }], - "combining": [{ "/development/testing": 2 }], - "move": [ - { "/development/testing": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/overlay": 1 }, - { "/community/innersourcing": 1 } - ], - "realm": [{ "/development/testing": 1 }], - "_integration": [{ "/development/testing": 1 }], - "testing_": [{ "/development/testing": 1 }], - "long": [ - { "/development/testing": 3 }, - { "/design/accessibility": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 } - ], - "achieving": [{ "/development/testing": 1 }], - "acceptable": [{ "/style/typography": 2 }, { "/development/testing": 1 }, { "/patterns/forms": 1 }], - "levels": [ - { "/patterns/navigation": 2 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 } - ], - "_when_": [{ "/development/testing": 1 }], - "important": [ - { "/design/websites": 4 }, - { "/style/typography": 3 }, - { "/development/testing": 2 }, - { "/design/accessibility": 2 }, - { "/design/intro": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/style/color": 1 }, - { "/style/illustrations": 1 } - ], - "elect": [{ "/development/testing": 1 }, { "/patterns/account-menu": 1 }], - "driven": [{ "/development/testing": 2 }], - "methodology": [{ "/development/testing": 1 }], - "prior": [{ "/development/testing": 2 }, { "/community/license": 1 }, { "/community/innersourcing": 1 }], - "situation": [ - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/user-auth": 1 } - ], - "actually": [{ "/development/testing": 2 }], - "desired": [{ "/development/testing": 2 }], - "satisfy": [{ "/development/testing": 1 }], - "behavior": [ - { "/development/testing": 3 }, - { "/design/anatomy": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 } - ], - "similar": [ - { "/development/testing": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/community/our-team": 1 } - ], - "cases": [ - { "/patterns/empty-states": 4 }, - { "/development/testing": 2 }, - { "/patterns/lists": 2 }, - { "/design/project-identity": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "focus": [ - { "/development/testing": 2 }, - { "/design/websites": 2 }, - { "/patterns/forms": 2 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/navigation": 1 } - ], - "less": [ - { "/development/testing": 2 }, - { "/patterns/navigation": 2 }, - { "/design/intro": 1 }, - { "/design/websites": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 } - ], - "actual": [{ "/development/testing": 1 }, { "/design/project-identity": 1 }], - "usually": [ - { "/development/testing": 2 }, - { "/design/anatomy": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/navigation": 2 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/user-auth": 1 }, - { "/patterns/visualizations": 1 } - ], - "plain": [{ "/development/testing": 1 }, { "/patterns/forms": 1 }], - "thing": [{ "/development/testing": 1 }], - "mind": [ - { "/development/testing": 1 }, - { "/design/project-identity": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "confidence": [{ "/development/testing": 1 }], - "scenario": [{ "/development/testing": 1 }], - "fine": [{ "/development/testing": 1 }], - "developed": [{ "/development/testing": 2 }], - "quality": [{ "/design/intro": 2 }, { "/development/testing": 1 }, { "/design/websites": 1 }], - "effective": [ - { "/development/testing": 2 }, - { "/design/intro": 2 }, - { "/design/websites": 2 }, - { "/patterns/account-menu": 2 }, - { "/design/anatomy": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/navigation": 1 }, - { "/style/illustrations": 1 } - ], - "rendered": [{ "/development/testing": 4 }], - "internal": [{ "/development/testing": 1 }], - "perspective": [{ "/development/testing": 1 }, { "/style/illustrations": 1 }, { "/style/typography": 1 }], - "things": [{ "/design/project-identity": 4 }, { "/development/testing": 1 }, { "/design/intro": 1 }], - "interacts": [{ "/development/testing": 1 }], - "button": [ - { "/patterns/forms": 16 }, - { "/development/testing": 8 }, - { "/design/accessibility": 5 }, - { "/patterns/loading": 3 }, - { "/patterns/overlay": 3 }, - { "/patterns/appbar": 2 }, - { "/style/themes": 2 }, - { "/design/anatomy": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/innersourcing": 1 } - ], - "modal": [{ "/patterns/overlay": 8 }, { "/development/testing": 1 }], - "dialog": [{ "/patterns/overlay": 9 }, { "/development/testing": 2 }, { "/patterns/steppers": 1 }], - "clicked": [{ "/development/testing": 2 }, { "/patterns/appbar": 1 }], - "_open_": [{ "/development/testing": 1 }], - "label": [ - { "/patterns/forms": 3 }, - { "/patterns/loading": 2 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/style/themes": 1 } - ], - "tempted": [{ "/development/testing": 1 }], - "id": [{ "/development/testing": 7 }], - "called": [{ "/development/testing": 1 }, { "/design/websites": 1 }, { "/patterns/appbar": 1 }], - "pressed": [{ "/development/testing": 1 }, { "/design/anatomy": 1 }], - "break": [{ "/development/testing": 1 }], - "even": [ - { "/development/testing": 2 }, - { "/patterns/internationalization": 2 }, - { "/design/websites": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 } - ], - "though": [{ "/development/testing": 1 }], - "sees": [{ "/development/testing": 1 }], - "interactions": [ - { "/development/testing": 2 }, - { "/design/anatomy": 2 }, - { "/design/intro": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 } - ], - "change": [ - { "/patterns/user-auth": 6 }, - { "/design/project-identity": 5 }, - { "/patterns/forms": 5 }, - { "/development/testing": 3 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 }, - { "/community/faq": 1 } - ], - "interaction": [ - { "/design/anatomy": 2 }, - { "/patterns/navigation": 2 }, - { "/development/testing": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/visualizations": 1 } - ], - "returned": [{ "/development/testing": 1 }], - "action": [ - { "/patterns/forms": 5 }, - { "/patterns/lists": 4 }, - { "/patterns/empty-states": 2 }, - { "/patterns/overlay": 2 }, - { "/development/testing": 1 }, - { "/patterns/appbar": 1 } - ], - "tested": [{ "/development/testing": 1 }, { "/design/accessibility": 1 }], - "jasmine": [{ "/development/testing": 1 }], - "karma": [{ "/development/testing": 1 }], - "identified": [{ "/development/testing": 2 }, { "/design/project-identity": 1 }, { "/patterns/forms": 1 }], - "spec": [{ "/development/testing": 1 }], - "ts": [{ "/development/testing": 2 }], - "extension": [{ "/development/testing": 2 }, { "/patterns/steppers": 1 }], - "execute": [{ "/development/testing": 2 }], - "terminal": [{ "/development/testing": 3 }], - "root": [{ "/development/testing": 2 }, { "/style/illustrations": 1 }], - "ng": [{ "/development/testing": 1 }], - "launch": [{ "/development/testing": 1 }], - "runner": [{ "/development/testing": 2 }], - "show": [ - { "/patterns/loading": 4 }, - { "/patterns/account-menu": 2 }, - { "/patterns/lists": 2 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 }, - { "/community/faq": 1 } - ], - "fail": [{ "/development/testing": 1 }], - "utilities": [{ "/development/testing": 1 }, { "/patterns/visualizations": 1 }], - "complement": [{ "/development/testing": 1 }], - "dependency": [{ "/development/testing": 1 }], - "airbnb": [{ "/development/testing": 1 }], - "bundles": [{ "/development/testing": 1 }], - "strategies": [{ "/development/testing": 2 }], - "generate": [{ "/development/testing": 2 }], - "underlying": [{ "/development/testing": 3 }, { "/patterns/user-auth": 1 }], - "regular": [{ "/development/testing": 1 }, { "/patterns/navigation": 1 }], - "above": [ - { "/patterns/account-menu": 2 }, - { "/patterns/forms": 2 }, - { "/style/illustrations": 2 }, - { "/community/license": 2 }, - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 }, - { "/style/typography": 1 } - ], - "terms": [{ "/development/testing": 1 }, { "/patterns/account-menu": 1 }], - "complexity": [{ "/development/testing": 1 }, { "/design/anatomy": 1 }, { "/patterns/forms": 1 }], - "primarily": [ - { "/patterns/appbar": 2 }, - { "/style/themes": 2 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/overlay": 1 } - ], - "flow": [{ "/development/testing": 1 }, { "/patterns/internationalization": 1 }], - "making": [ - { "/design/accessibility": 4 }, - { "/patterns/forms": 2 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/iconography": 1 } - ], - "journey": [{ "/development/testing": 1 }], - "outcomes": [{ "/development/testing": 1 }], - "generally": [ - { "/design/intro": 2 }, - { "/development/testing": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/user-auth": 1 } - ], - "categorized": [{ "/development/testing": 1 }], - "flows": [{ "/development/testing": 1 }], - "meet": [ - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/community/faq": 1 } - ], - "customer": [{ "/development/testing": 1 }], - "expectations": [{ "/development/testing": 1 }, { "/patterns/loading": 1 }], - "regression": [{ "/development/testing": 1 }], - "broken": [{ "/development/testing": 1 }, { "/design/anatomy": 1 }], - "cover": [ - { "/style/typography": 3 }, - { "/patterns/navigation": 2 }, - { "/development/testing": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/community/faq": 1 } - ], - "stories": [{ "/development/testing": 1 }], - "span": [{ "/development/testing": 1 }], - "signing": [{ "/development/testing": 1 }], - "accounts": [ - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/user-auth": 1 } - ], - "logging": [{ "/development/testing": 1 }, { "/patterns/account-menu": 1 }, { "/patterns/user-auth": 1 }], - "updating": [{ "/development/testing": 1 }, { "/patterns/user-auth": 1 }, { "/community/faq": 1 }], - "profile": [ - { "/patterns/account-menu": 2 }, - { "/development/testing": 1 }, - { "/patterns/user-auth": 1 }, - { "/resources/designer": 1 } - ], - "concerned": [{ "/development/testing": 1 }], - "results": [ - { "/patterns/empty-states": 2 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/appbar": 1 } - ], - "against": [{ "/development/testing": 1 }, { "/community/faq": 1 }], - "case": [ - { "/patterns/forms": 4 }, - { "/design/project-identity": 3 }, - { "/development/testing": 1 }, - { "/design/websites": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "automates": [{ "/development/testing": 1 }], - "automated": [{ "/development/testing": 3 }], - "involved": [{ "/development/testing": 1 }], - "scope": [{ "/development/testing": 1 }], - "try": [ - { "/design/websites": 2 }, - { "/development/testing": 1 }, - { "/patterns/navigation": 1 }, - { "/style/iconography": 1 }, - { "/community/innersourcing": 1 } - ], - "optimize": [{ "/development/testing": 1 }], - "pipeline": [{ "/development/testing": 1 }], - "parallel": [{ "/style/illustrations": 2 }, { "/development/testing": 1 }, { "/design/anatomy": 1 }], - "finish": [{ "/development/testing": 1 }, { "/patterns/forms": 1 }], - "alone": [{ "/development/testing": 1 }], - "enough": [ - { "/design/accessibility": 2 }, - { "/development/testing": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/navigation": 1 }, - { "/community/faq": 1 } - ], - "regressions": [{ "/development/testing": 1 }], - "aim": [{ "/development/testing": 1 }], - "breadth": [{ "/development/testing": 1 }], - "scenarios": [{ "/development/testing": 1 }], - "rely": [ - { "/design/accessibility": 2 }, - { "/development/testing": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 } - ], - "interact": [ - { "/design/accessibility": 2 }, - { "/patterns/overlay": 2 }, - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 } - ], - "reliable": [{ "/development/testing": 2 }], - "mechanism": [ - { "/style/themes": 2 }, - { "/development/testing": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/license": 1 } - ], - "selecting": [{ "/development/testing": 1 }, { "/patterns/overlay": 1 }], - "selectors": [{ "/development/testing": 5 }], - "classes": [{ "/development/testing": 2 }, { "/style/themes": 1 }], - "rules": [ - { "/development/testing": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/themes": 1 } - ], - "drawerlayout": [{ "/development/testing": 2 }], - "div": [{ "/development/testing": 4 }], - "header": [ - { "/patterns/account-menu": 4 }, - { "/patterns/appbar": 3 }, - { "/development/testing": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/lists": 1 }, - { "/style/typography": 1 } - ], - "xpath": [{ "/development/testing": 3 }], - "selector": [{ "/development/testing": 2 }], - "within": [ - { "/development/testing": 2 }, - { "/patterns/internationalization": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 }, - { "/community/contactus": 1 } - ], - "attribute": [{ "/development/testing": 3 }], - "browserstack": [{ "/development/testing": 2 }], - "advantages": [{ "/development/testing": 1 }], - "disadvantages": [{ "/development/testing": 1 }], - "pain": [{ "/development/testing": 1 }], - "automation": [{ "/development/testing": 5 }], - "constantly": [{ "/development/testing": 2 }, { "/community/contactus": 1 }], - "particularly": [ - { "/development/testing": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/forms": 1 } - ], - "dynamically": [{ "/development/testing": 1 }, { "/patterns/forms": 1 }, { "/style/iconography": 1 }], - "ids": [{ "/development/testing": 2 }], - "resulting": [{ "/development/testing": 1 }], - "moving": [{ "/development/testing": 1 }], - "tooling": [{ "/development/testing": 1 }], - "identifying": [{ "/development/testing": 2 }], - "locators": [{ "/development/testing": 1 }], - "_without_": [{ "/development/testing": 1 }], - "property": [{ "/development/testing": 1 }, { "/design/accessibility": 1 }], - "attributes": [{ "/development/testing": 2 }, { "/style/illustrations": 1 }], - "brittle": [{ "/development/testing": 1 }], - "subject": [ - { "/development/testing": 1 }, - { "/design/intro": 1 }, - { "/patterns/appbar": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 } - ], - "reloaded": [{ "/development/testing": 1 }], - "combat": [{ "/development/testing": 1 }], - "dev": [{ "/development/testing": 1 }], - "safer": [{ "/development/testing": 1 }], - "lifecycle": [{ "/development/testing": 1 }], - "identification": [{ "/development/testing": 1 }], - "webelement": [{ "/development/testing": 1 }], - "click": [ - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/forms": 1 }, - { "/community/innersourcing": 1 }, - { "/community/features": 1 } - ], - "driver": [{ "/development/testing": 1 }], - "findelement": [{ "/development/testing": 1 }], - "configuring": [{ "/development/testing": 1 }], - "selenium": [{ "/development/testing": 9 }], - "webdriverio": [{ "/development/testing": 4 }], - "suite": [{ "/development/testing": 2 }], - "languages": [ - { "/patterns/internationalization": 10 }, - { "/development/testing": 1 }, - { "/patterns/forms": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 } - ], - "customized": [{ "/style/typography": 4 }, { "/development/testing": 1 }], - "official": [{ "/development/testing": 3 }, { "/community/innersourcing": 1 }], - "number": [ - { "/design/websites": 3 }, - { "/patterns/internationalization": 3 }, - { "/patterns/forms": 2 }, - { "/patterns/lists": 2 }, - { "/patterns/loading": 2 }, - { "/style/iconography": 2 }, - { "/development/testing": 1 }, - { "/patterns/navigation": 1 }, - { "/community/bugs": 1 } - ], - "tutorials": [{ "/development/testing": 1 }], - "boasts": [{ "/development/testing": 1 }], - "traditional": [{ "/design/websites": 2 }, { "/development/testing": 1 }], - "extendible": [{ "/development/testing": 1 }], - "compatible": [{ "/development/testing": 1 }], - "feature": [ - { "/community/features": 2 }, - { "/development/testing": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/community/innersourcing": 1 } - ], - "rich": [{ "/development/testing": 1 }], - "webdriver": [{ "/development/testing": 1 }], - "io": [{ "/development/testing": 1 }], - "designing": [ - { "/patterns/internationalization": 3 }, - { "/community/faq": 3 }, - { "/design/intro": 2 }, - { "/design/websites": 2 }, - { "/style/illustrations": 2 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 }, - { "/style/typography": 1 } - ], - "greatly": [{ "/design/intro": 1 }], - "efficiency": [{ "/design/intro": 1 }], - "color": [ - { "/style/color": 7 }, - { "/design/websites": 6 }, - { "/style/themes": 6 }, - { "/style/illustrations": 5 }, - { "/patterns/lists": 4 }, - { "/design/accessibility": 3 }, - { "/patterns/internationalization": 2 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 } - ], - "iconography": [ - { "/design/project-identity": 2 }, - { "/design/intro": 1 }, - { "/style/iconography": 1 }, - { "/community/faq": 1 } - ], - "address": [ - { "/patterns/user-auth": 4 }, - { "/design/intro": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/internationalization": 1 } - ], - "encounter": [{ "/community/bugs": 2 }, { "/design/intro": 1 }], - "defined": [ - { "/design/intro": 2 }, - { "/design/anatomy": 2 }, - { "/patterns/steppers": 1 }, - { "/style/themes": 1 } - ], - "unique": [{ "/design/project-identity": 4 }, { "/design/intro": 1 }], - "host": [{ "/design/intro": 1 }], - "maintain": [ - { "/design/intro": 2 }, - { "/design/websites": 2 }, - { "/style/iconography": 1 }, - { "/community/faq": 1 } - ], - "assets": [ - { "/community/faq": 3 }, - { "/design/intro": 2 }, - { "/patterns/internationalization": 1 }, - { "/community/license": 1 } - ], - "figma": [ - { "/design/intro": 3 }, - { "/community/faq": 3 }, - { "/resources/designer": 2 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/style/illustrations": 1 }, - { "/community/innersourcing": 1 } - ], - "powerful": [{ "/design/websites": 2 }, { "/design/intro": 1 }, { "/patterns/internationalization": 1 }], - "prototyping": [{ "/design/intro": 1 }], - "facilitates": [{ "/design/intro": 1 }], - "collaboration": [{ "/design/intro": 1 }, { "/design/anatomy": 1 }], - "sharing": [{ "/community/innersourcing": 3 }, { "/design/intro": 1 }, { "/community/faq": 1 }], - "windows": [{ "/design/intro": 1 }, { "/design/accessibility": 1 }], - "sign": [{ "/patterns/user-auth": 3 }, { "/design/intro": 1 }, { "/design/anatomy": 1 }], - "account": [ - { "/patterns/account-menu": 20 }, - { "/patterns/user-auth": 12 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 } - ], - "foundation": [ - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/our-team": 1 } - ], - "intentional": [{ "/design/intro": 1 }], - "choices": [{ "/design/intro": 1 }], - "shape": [{ "/design/intro": 1 }], - "guidance": [{ "/design/intro": 1 }], - "strongly": [{ "/design/project-identity": 2 }, { "/design/intro": 1 }], - "encourage": [{ "/design/intro": 2 }, { "/design/project-identity": 2 }], - "research": [{ "/design/intro": 1 }, { "/design/accessibility": 1 }, { "/patterns/internationalization": 1 }], - "truly": [{ "/design/intro": 1 }], - "skills": [{ "/design/intro": 1 }], - "preferences": [ - { "/design/intro": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/internationalization": 1 } - ], - "tendencies": [{ "/design/intro": 1 }], - "labels": [ - { "/patterns/navigation": 3 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/steppers": 1 }, - { "/style/illustrations": 1 } - ], - "messaging": [{ "/design/intro": 1 }], - "clear": [{ "/design/intro": 1 }, { "/patterns/appbar": 1 }, { "/style/color": 1 }, { "/community/bugs": 1 }], - "strive": [ - { "/design/websites": 2 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/community/faq": 1 } - ], - "defining": [{ "/design/intro": 1 }, { "/design/anatomy": 1 }], - "layout": [ - { "/design/websites": 2 }, - { "/design/intro": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 } - ], - "purposeful": [{ "/design/intro": 1 }], - "laying": [{ "/design/intro": 1 }], - "relationship": [{ "/design/intro": 1 }], - "items": [ - { "/patterns/lists": 11 }, - { "/design/websites": 3 }, - { "/design/intro": 2 }, - { "/patterns/navigation": 2 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 } - ], - "structure": [{ "/patterns/lists": 3 }, { "/design/intro": 1 }, { "/design/websites": 1 }], - "hierarchy": [ - { "/patterns/navigation": 4 }, - { "/design/intro": 2 }, - { "/style/typography": 2 }, - { "/design/anatomy": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 } - ], - "clarity": [{ "/design/intro": 1 }], - "increases": [{ "/design/intro": 1 }], - "scalability": [{ "/design/intro": 1 }], - "legibility": [{ "/design/intro": 1 }, { "/style/typography": 1 }, { "/style/themes": 1 }], - "readability": [{ "/design/intro": 1 }, { "/design/websites": 1 }], - "communicate": [ - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/steppers": 1 }, - { "/style/color": 1 } - ], - "errors": [ - { "/design/intro": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/style/color": 1 } - ], - "assist": [{ "/design/intro": 1 }, { "/patterns/internationalization": 1 }], - "communicating": [{ "/design/intro": 1 }, { "/design/anatomy": 1 }], - "defaults": [{ "/design/intro": 1 }], - "understanding": [{ "/design/intro": 1 }, { "/design/anatomy": 1 }, { "/patterns/internationalization": 1 }], - "careful": [{ "/design/intro": 1 }, { "/patterns/user-auth": 1 }], - "states": [ - { "/patterns/empty-states": 8 }, - { "/style/color": 3 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/appbar": 1 }, - { "/style/illustrations": 1 } - ], - "paths": [{ "/design/intro": 1 }, { "/style/illustrations": 1 }], - "reduce": [{ "/design/intro": 1 }, { "/design/accessibility": 1 }, { "/patterns/lists": 1 }], - "burden": [{ "/design/intro": 1 }], - "interfaces": [{ "/design/intro": 2 }, { "/patterns/internationalization": 1 }, { "/style/typography": 1 }], - "seven": [{ "/design/intro": 2 }, { "/patterns/navigation": 2 }], - "inches": [{ "/design/intro": 2 }], - "width": [{ "/design/intro": 2 }, { "/patterns/navigation": 1 }], - "treated": [{ "/design/intro": 2 }, { "/patterns/user-auth": 1 }, { "/style/typography": 1 }], - "across": [ - { "/design/intro": 2 }, - { "/design/websites": 2 }, - { "/community/faq": 2 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 } - ], - "regardless": [{ "/design/intro": 1 }, { "/patterns/user-auth": 1 }], - "familiarize": [{ "/design/intro": 1 }, { "/patterns/user-auth": 1 }], - "yourself": [ - { "/design/intro": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 } - ], - "fundamental": [{ "/design/intro": 1 }], - "principle": [{ "/design/intro": 1 }, { "/community/faq": 1 }], - "overload": [{ "/design/intro": 1 }], - "excessive": [{ "/design/intro": 1 }], - "convenient": [{ "/design/intro": 1 }], - "consume": [{ "/design/intro": 1 }, { "/design/accessibility": 1 }], - "presented": [ - { "/patterns/internationalization": 2 }, - { "/patterns/user-auth": 2 }, - { "/design/intro": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/style/typography": 1 } - ], - "reflect": [{ "/design/intro": 1 }], - "tablet": [ - { "/design/intro": 3 }, - { "/patterns/navigation": 3 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/style/themes": 1 } - ], - "real": [{ "/patterns/loading": 5 }, { "/design/intro": 1 }, { "/patterns/appbar": 1 }, { "/style/themes": 1 }], - "estate": [{ "/design/intro": 1 }], - "continues": [{ "/design/intro": 1 }, { "/style/typography": 1 }], - "evolve": [{ "/design/intro": 1 }], - "scaling": [{ "/design/intro": 1 }], - "future": [ - { "/design/intro": 1 }, - { "/patterns/empty-states": 1 }, - { "/style/illustrations": 1 }, - { "/style/themes": 1 }, - { "/community/innersourcing": 1 } - ], - "non": [ - { "/patterns/steppers": 3 }, - { "/design/intro": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/overlay": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 } - ], - "touch": [ - { "/community/faq": 4 }, - { "/design/intro": 2 }, - { "/design/project-identity": 1 }, - { "/community/innersourcing": 1 } - ], - "screens": [ - { "/patterns/user-auth": 9 }, - { "/patterns/forms": 3 }, - { "/patterns/empty-states": 2 }, - { "/design/intro": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/navigation": 1 }, - { "/style/illustrations": 1 } - ], - "interactive": [ - { "/design/websites": 3 }, - { "/style/themes": 2 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/illustrations": 1 } - ], - "displays": [{ "/design/intro": 2 }, { "/style/themes": 1 }], - "automotive": [{ "/design/intro": 1 }], - "laptops": [{ "/design/intro": 1 }], - "phase": [{ "/design/intro": 1 }, { "/patterns/forms": 1 }], - "contributing": [ - { "/community/faq": 2 }, - { "/design/intro": 1 }, - { "/style/iconography": 1 }, - { "/community/license": 1 } - ], - "everyone": [{ "/design/intro": 1 }], - "concepts": [{ "/design/intro": 1 }, { "/design/anatomy": 1 }], - "suggestions": [{ "/design/intro": 1 }, { "/community/faq": 1 }, { "/community/contactus": 1 }], - "ideas": [{ "/design/intro": 1 }, { "/community/innersourcing": 1 }, { "/community/faq": 1 }], - "useful": [ - { "/design/intro": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/community/contactus": 1 } - ], - "contribute": [ - { "/community/faq": 2 }, - { "/design/intro": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 } - ], - "submissions": [{ "/design/intro": 1 }, { "/community/innersourcing": 1 }], - "review": [{ "/style/iconography": 2 }, { "/design/intro": 1 }, { "/patterns/forms": 1 }], - "maintainers": [{ "/design/intro": 1 }], - "backlog": [{ "/design/intro": 1 }], - "bring": [{ "/design/intro": 1 }], - "anatomy": [{ "/design/anatomy": 2 }, { "/patterns/empty-states": 1 }, { "/patterns/forms": 1 }], - "atomic": [{ "/design/anatomy": 4 }], - "blocks": [{ "/design/anatomy": 1 }], - "four": [ - { "/design/accessibility": 2 }, - { "/design/anatomy": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/user-auth": 1 } - ], - "increasing": [{ "/design/anatomy": 1 }], - "members": [{ "/design/anatomy": 1 }], - "terminology": [{ "/design/anatomy": 1 }], - "promote": [{ "/design/anatomy": 1 }, { "/design/websites": 1 }, { "/community/license": 1 }], - "applicable": [{ "/patterns/account-menu": 2 }, { "/design/anatomy": 1 }, { "/patterns/lists": 1 }], - "managers": [{ "/design/anatomy": 1 }], - "foundations": [{ "/design/anatomy": 4 }], - "typically": [ - { "/patterns/navigation": 8 }, - { "/design/websites": 4 }, - { "/patterns/user-auth": 4 }, - { "/design/anatomy": 3 }, - { "/patterns/lists": 3 }, - { "/patterns/forms": 2 }, - { "/patterns/overlay": 2 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/community/contactus": 1 } - ], - "establish": [ - { "/design/project-identity": 4 }, - { "/design/anatomy": 1 }, - { "/style/typography": 1 }, - { "/community/innersourcing": 1 } - ], - "lay": [{ "/design/anatomy": 1 }, { "/design/accessibility": 1 }, { "/patterns/navigation": 1 }], - "units": [{ "/patterns/internationalization": 2 }, { "/design/anatomy": 1 }], - "clicking": [ - { "/patterns/forms": 4 }, - { "/patterns/overlay": 3 }, - { "/design/anatomy": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/faq": 1 } - ], - "expanding": [{ "/design/anatomy": 1 }], - "buttons": [ - { "/patterns/lists": 3 }, - { "/design/websites": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/overlay": 2 }, - { "/style/illustrations": 2 }, - { "/design/anatomy": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/color": 1 }, - { "/style/themes": 1 }, - { "/community/faq": 1 } - ], - "tabs": [{ "/patterns/navigation": 12 }, { "/design/anatomy": 1 }, { "/design/websites": 1 }], - "sliders": [{ "/design/anatomy": 1 }], - "complex": [ - { "/design/anatomy": 2 }, - { "/design/accessibility": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 } - ], - "drawers": [{ "/patterns/navigation": 2 }, { "/design/anatomy": 1 }, { "/patterns/internationalization": 1 }], - "simpler": [{ "/design/anatomy": 1 }], - "form": [ - { "/patterns/forms": 15 }, - { "/patterns/loading": 2 }, - { "/patterns/overlay": 2 }, - { "/community/innersourcing": 2 }, - { "/design/anatomy": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/themes": 1 }, - { "/community/license": 1 }, - { "/community/features": 1 } - ], - "ones": [{ "/design/anatomy": 1 }, { "/design/project-identity": 1 }, { "/patterns/user-auth": 1 }], - "advanced": [{ "/design/anatomy": 1 }, { "/patterns/appbar": 1 }], - "largest": [{ "/design/anatomy": 1 }], - "stay": [{ "/design/anatomy": 1 }, { "/design/project-identity": 1 }], - "room": [ - { "/design/anatomy": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/lists": 1 }, - { "/style/illustrations": 1 } - ], - "customizations": [{ "/design/anatomy": 1 }, { "/style/typography": 1 }], - "empty": [ - { "/patterns/empty-states": 21 }, - { "/design/anatomy": 1 }, - { "/patterns/loading": 1 }, - { "/style/illustrations": 1 } - ], - "fields": [{ "/patterns/forms": 11 }, { "/patterns/user-auth": 2 }, { "/design/anatomy": 1 }], - "password": [ - { "/patterns/user-auth": 25 }, - { "/patterns/forms": 9 }, - { "/design/anatomy": 2 }, - { "/patterns/account-menu": 2 }, - { "/patterns/overlay": 1 } - ], - "invalid": [{ "/patterns/forms": 2 }, { "/design/anatomy": 1 }], - "sequence": [{ "/design/anatomy": 1 }, { "/patterns/steppers": 1 }], - "surrounding": [{ "/design/anatomy": 1 }], - "goes": [{ "/design/anatomy": 3 }, { "/community/faq": 1 }, { "/community/our-team": 1 }], - "another": [ - { "/design/anatomy": 2 }, - { "/patterns/internationalization": 2 }, - { "/patterns/lists": 2 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/user-auth": 1 } - ], - "represent": [{ "/design/anatomy": 1 }, { "/patterns/lists": 1 }, { "/patterns/visualizations": 1 }], - "tasks": [{ "/design/anatomy": 1 }, { "/patterns/overlay": 1 }], - "registration": [{ "/patterns/user-auth": 20 }, { "/patterns/forms": 2 }, { "/design/anatomy": 1 }], - "pattern": [ - { "/patterns/appbar": 4 }, - { "/design/anatomy": 3 }, - { "/patterns/lists": 3 }, - { "/patterns/navigation": 3 }, - { "/patterns/user-auth": 3 }, - { "/patterns/account-menu": 2 }, - { "/patterns/empty-states": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/overlay": 2 }, - { "/patterns/steppers": 2 }, - { "/patterns/internationalization": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/innersourcing": 1 }, - { "/community/faq": 1 } - ], - "exist": [{ "/design/anatomy": 1 }, { "/patterns/user-auth": 1 }], - "described": [{ "/design/anatomy": 1 }], - "showing": [ - { "/patterns/internationalization": 2 }, - { "/patterns/loading": 2 }, - { "/design/anatomy": 1 }, - { "/patterns/user-auth": 1 } - ], - "list": [ - { "/patterns/lists": 45 }, - { "/patterns/navigation": 2 }, - { "/patterns/overlay": 2 }, - { "/community/license": 2 }, - { "/design/anatomy": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/color": 1 }, - { "/community/faq": 1 } - ], - "item": [ - { "/patterns/lists": 17 }, - { "/patterns/overlay": 6 }, - { "/design/anatomy": 1 }, - { "/patterns/forms": 1 } - ], - "centers": [{ "/design/anatomy": 1 }], - "hovered": [{ "/design/anatomy": 1 }, { "/design/websites": 1 }], - "similarly": [{ "/design/anatomy": 1 }], - "workflow": [{ "/patterns/user-auth": 15 }, { "/patterns/steppers": 2 }, { "/design/anatomy": 1 }], - "involve": [{ "/design/anatomy": 1 }], - "2fa": [{ "/design/anatomy": 1 }], - "captcha": [{ "/design/anatomy": 1 }], - "username": [{ "/patterns/account-menu": 3 }, { "/design/anatomy": 1 }], - "tries": [{ "/design/anatomy": 1 }], - "context": [ - { "/design/anatomy": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/style/color": 1 }, - { "/style/iconography": 1 } - ], - "specifications": [ - { "/patterns/account-menu": 2 }, - { "/patterns/forms": 2 }, - { "/design/anatomy": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 } - ], - "looks": [ - { "/patterns/navigation": 2 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 } - ], - "recognize": [{ "/design/anatomy": 1 }], - "atoms": [{ "/design/anatomy": 1 }], - "molecules": [{ "/design/anatomy": 1 }], - "organisms": [{ "/design/anatomy": 1 }], - "idea": [{ "/community/innersourcing": 2 }, { "/design/anatomy": 1 }], - "further": [{ "/design/anatomy": 1 }, { "/design/project-identity": 1 }], - "direction": [{ "/design/anatomy": 1 }], - "comprehensively": [{ "/design/anatomy": 1 }], - "accessibility": [ - { "/design/accessibility": 8 }, - { "/design/websites": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/lists": 1 }, - { "/style/color": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 } - ], - "compliance": [{ "/design/accessibility": 2 }], - "w3c": [{ "/design/accessibility": 2 }], - "refers": [ - { "/design/accessibility": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/navigation": 1 } - ], - "websites": [ - { "/design/websites": 7 }, - { "/design/project-identity": 3 }, - { "/design/accessibility": 2 }, - { "/patterns/internationalization": 1 } - ], - "individuals": [{ "/design/accessibility": 4 }], - "disabilities": [{ "/design/accessibility": 3 }], - "effectively": [{ "/design/accessibility": 1 }, { "/design/websites": 1 }, { "/community/faq": 1 }], - "forms": [ - { "/patterns/forms": 6 }, - { "/design/accessibility": 2 }, - { "/patterns/user-auth": 2 }, - { "/patterns/account-menu": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 } - ], - "physical": [{ "/design/accessibility": 1 }, { "/patterns/appbar": 1 }], - "auditory": [{ "/design/accessibility": 1 }], - "wide": [ - { "/design/accessibility": 3 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/community/faq": 1 } - ], - "audience": [ - { "/design/project-identity": 3 }, - { "/design/websites": 2 }, - { "/design/accessibility": 1 }, - { "/patterns/internationalization": 1 } - ], - "legal": [{ "/design/accessibility": 1 }, { "/design/project-identity": 1 }, { "/patterns/navigation": 1 }], - "reasons": [{ "/design/accessibility": 1 }, { "/community/bugs": 1 }], - "improves": [{ "/design/accessibility": 1 }, { "/community/bugs": 1 }], - "international": [{ "/design/accessibility": 1 }], - "law": [{ "/design/accessibility": 1 }], - "country": [{ "/patterns/internationalization": 2 }, { "/design/accessibility": 1 }], - "practice": [{ "/design/accessibility": 1 }, { "/community/innersourcing": 1 }], - "internationally": [{ "/design/accessibility": 1 }], - "wcag": [{ "/design/accessibility": 1 }], - "released": [{ "/design/accessibility": 1 }, { "/community/our-team": 1 }], - "world": [{ "/design/accessibility": 1 }, { "/community/our-team": 1 }], - "consortium": [{ "/design/accessibility": 1 }], - "principles": [ - { "/design/websites": 4 }, - { "/design/accessibility": 2 }, - { "/design/project-identity": 2 }, - { "/style/typography": 1 } - ], - "anyone": [{ "/design/accessibility": 1 }], - "perceivable": [{ "/design/accessibility": 2 }], - "operable": [{ "/design/accessibility": 3 }], - "understandable": [{ "/design/accessibility": 3 }], - "robust": [{ "/design/accessibility": 3 }], - "perceive": [{ "/design/accessibility": 1 }], - "hidden": [{ "/patterns/forms": 2 }, { "/design/accessibility": 1 }], - "image": [ - { "/design/accessibility": 2 }, - { "/design/websites": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/internationalization": 1 }, - { "/style/illustrations": 1 } - ], - "distinguish": [{ "/design/accessibility": 1 }], - "keyboard": [{ "/patterns/forms": 11 }, { "/design/accessibility": 1 }], - "temporary": [{ "/patterns/navigation": 3 }, { "/design/accessibility": 1 }], - "displayed": [ - { "/patterns/forms": 2 }, - { "/design/accessibility": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/user-auth": 1 } - ], - "impairments": [{ "/design/accessibility": 3 }], - "includes": [ - { "/patterns/user-auth": 4 }, - { "/style/typography": 2 }, - { "/design/accessibility": 1 }, - { "/style/iconography": 1 } - ], - "abbreviations": [{ "/design/accessibility": 1 }], - "behave": [{ "/design/accessibility": 1 }], - "predictable": [{ "/design/accessibility": 1 }], - "messages": [ - { "/patterns/forms": 3 }, - { "/patterns/user-auth": 3 }, - { "/design/accessibility": 2 }, - { "/patterns/loading": 1 } - ], - "accompanying": [{ "/design/accessibility": 1 }], - "meaning": [{ "/patterns/internationalization": 2 }, { "/design/accessibility": 1 }, { "/style/color": 1 }], - "icon": [ - { "/style/iconography": 11 }, - { "/patterns/appbar": 3 }, - { "/community/faq": 3 }, - { "/patterns/empty-states": 2 }, - { "/patterns/lists": 2 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/navigation": 1 }, - { "/style/color": 1 } - ], - "its": [ - { "/patterns/navigation": 3 }, - { "/patterns/lists": 2 }, - { "/design/accessibility": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/loading": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 } - ], - "unclear": [{ "/design/accessibility": 1 }], - "interpreted": [{ "/design/accessibility": 1 }], - "reliably": [{ "/design/accessibility": 1 }], - "assistive": [{ "/design/accessibility": 3 }], - "readers": [{ "/design/accessibility": 1 }], - "speech": [{ "/design/accessibility": 1 }], - "alternative": [ - { "/style/typography": 2 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/loading": 1 }, - { "/community/faq": 1 } - ], - "advance": [{ "/design/accessibility": 1 }], - "advances": [{ "/design/accessibility": 1 }], - "effort": [{ "/community/innersourcing": 3 }, { "/design/accessibility": 1 }], - "range": [ - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/style/typography": 1 } - ], - "white": [ - { "/style/themes": 3 }, - { "/design/accessibility": 2 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/style/color": 1 }, - { "/style/illustrations": 1 }, - { "/community/faq": 1 } - ], - "backgrounds": [ - { "/design/accessibility": 2 }, - { "/design/websites": 2 }, - { "/style/illustrations": 2 }, - { "/style/color": 1 } - ], - "yellow": [{ "/style/color": 2 }, { "/design/accessibility": 1 }], - "red": [ - { "/style/color": 8 }, - { "/design/accessibility": 2 }, - { "/design/project-identity": 2 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 } - ], - "orange": [{ "/style/color": 3 }, { "/design/accessibility": 1 }], - "except": [{ "/design/accessibility": 1 }, { "/style/color": 1 }], - "say": [{ "/patterns/forms": 2 }, { "/design/accessibility": 1 }], - "close": [ - { "/patterns/overlay": 3 }, - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 } - ], - "black": [ - { "/style/color": 3 }, - { "/design/accessibility": 2 }, - { "/design/websites": 1 }, - { "/style/illustrations": 1 } - ], - "headlines": [{ "/design/accessibility": 1 }], - "background": [ - { "/patterns/internationalization": 2 }, - { "/style/illustrations": 2 }, - { "/style/themes": 2 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/empty-states": 1 } - ], - "light": [ - { "/style/themes": 8 }, - { "/style/illustrations": 3 }, - { "/style/color": 2 }, - { "/style/typography": 2 }, - { "/design/accessibility": 1 } - ], - "contrast": [{ "/design/accessibility": 6 }], - "ratio": [{ "/style/illustrations": 2 }, { "/design/accessibility": 1 }], - "determine": [{ "/design/accessibility": 1 }], - "checking": [{ "/design/accessibility": 1 }, { "/patterns/internationalization": 1 }], - "difficult": [{ "/design/accessibility": 1 }, { "/design/websites": 1 }], - "especially": [ - { "/design/accessibility": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/illustrations": 1 } - ], - "ratios": [{ "/design/accessibility": 1 }], - "larger": [ - { "/design/accessibility": 2 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/overlay": 1 } - ], - "affecting": [{ "/design/accessibility": 1 }], - "increase": [{ "/design/accessibility": 1 }], - "clearly": [{ "/patterns/empty-states": 2 }, { "/design/accessibility": 1 }], - "smaller": [ - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 } - ], - "sizes": [ - { "/design/websites": 3 }, - { "/design/accessibility": 2 }, - { "/patterns/internationalization": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/user-auth": 1 } - ], - "still": [ - { "/design/websites": 2 }, - { "/style/illustrations": 2 }, - { "/design/accessibility": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/community/faq": 1 } - ], - "right": [ - { "/patterns/internationalization": 7 }, - { "/patterns/forms": 2 }, - { "/design/accessibility": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/overlay": 1 } - ], - "accommodate": [{ "/design/accessibility": 1 }, { "/patterns/navigation": 1 }, { "/style/themes": 1 }], - "bigger": [{ "/design/accessibility": 1 }], - "images": [ - { "/design/accessibility": 6 }, - { "/design/project-identity": 2 }, - { "/style/illustrations": 2 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 } - ], - "accompanied": [{ "/design/accessibility": 1 }, { "/patterns/account-menu": 1 }], - "caption": [{ "/design/accessibility": 1 }], - "descriptive": [{ "/design/accessibility": 2 }, { "/design/websites": 1 }, { "/patterns/overlay": 1 }], - "purely": [{ "/design/accessibility": 1 }, { "/style/color": 1 }], - "decoration": [{ "/design/accessibility": 1 }], - "decorative": [{ "/design/accessibility": 1 }], - "brief": [ - { "/design/accessibility": 1 }, - { "/patterns/empty-states": 1 }, - { "/style/iconography": 1 }, - { "/community/bugs": 1 }, - { "/community/our-team": 1 } - ], - "description": [{ "/design/accessibility": 2 }, { "/community/bugs": 2 }, { "/style/iconography": 1 }], - "hover": [{ "/patterns/lists": 2 }, { "/design/accessibility": 1 }], - "always": [ - { "/patterns/navigation": 3 }, - { "/patterns/overlay": 2 }, - { "/design/accessibility": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/faq": 1 } - ], - "alt": [{ "/design/accessibility": 2 }], - "reader": [{ "/design/accessibility": 1 }], - "markup": [{ "/design/accessibility": 1 }], - "descriptions": [{ "/design/accessibility": 1 }], - "near": [{ "/design/accessibility": 1 }], - "videos": [{ "/design/accessibility": 1 }], - "audio": [{ "/design/accessibility": 1 }], - "sync": [{ "/design/accessibility": 1 }], - "captioning": [{ "/design/accessibility": 1 }], - "trusted": [{ "/design/accessibility": 1 }], - "tester": [{ "/design/accessibility": 1 }], - "ict": [{ "/design/accessibility": 1 }], - "baseline": [{ "/style/themes": 2 }, { "/design/accessibility": 1 }, { "/design/project-identity": 1 }], - "factors": [{ "/design/accessibility": 1 }], - "ease": [{ "/design/accessibility": 2 }], - "teaching": [{ "/design/accessibility": 1 }], - "accuracy": [{ "/design/accessibility": 1 }], - "inspector": [{ "/design/accessibility": 1 }], - "andi": [{ "/design/accessibility": 1 }], - "analyzer": [{ "/design/accessibility": 1 }], - "cca": [{ "/design/accessibility": 1 }], - "marketing": [{ "/style/color": 3 }, { "/design/websites": 2 }, { "/style/illustrations": 1 }], - "digital": [{ "/design/websites": 2 }], - "_applications_": [{ "/design/websites": 1 }], - "adapted": [{ "/design/websites": 1 }], - "sites": [{ "/design/websites": 2 }, { "/style/illustrations": 1 }], - "blurry": [{ "/design/websites": 1 }], - "purposes": [{ "/design/websites": 1 }], - "education": [{ "/design/websites": 1 }], - "promotion": [{ "/design/websites": 1 }], - "affect": [{ "/design/websites": 1 }, { "/style/themes": 1 }], - "data": [ - { "/patterns/loading": 19 }, - { "/patterns/empty-states": 12 }, - { "/patterns/lists": 8 }, - { "/patterns/visualizations": 6 }, - { "/patterns/forms": 3 }, - { "/patterns/overlay": 3 }, - { "/design/websites": 2 }, - { "/patterns/appbar": 2 }, - { "/style/color": 1 }, - { "/community/license": 1 } - ], - "deleting": [{ "/design/websites": 1 }], - "frequently": [ - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/faq": 1 } - ], - "publicly": [{ "/design/websites": 1 }, { "/community/license": 1 }, { "/resources/designer": 1 }], - "compared": [{ "/design/websites": 2 }, { "/community/faq": 1 }], - "dynamic": [{ "/patterns/steppers": 2 }, { "/design/websites": 1 }], - "incorporates": [{ "/design/websites": 1 }], - "manipulate": [{ "/design/websites": 1 }, { "/patterns/lists": 1 }], - "key": [ - { "/design/websites": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/style/themes": 1 } - ], - "beauty": [{ "/design/websites": 1 }], - "simplicity": [{ "/design/websites": 1 }], - "coming": [{ "/design/websites": 2 }, { "/patterns/empty-states": 1 }, { "/patterns/steppers": 1 }], - "looking": [ - { "/design/websites": 3 }, - { "/patterns/empty-states": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/iconography": 1 }, - { "/community/faq": 1 } - ], - "_will_": [{ "/design/websites": 1 }], - "notice": [{ "/community/license": 2 }, { "/design/websites": 1 }], - "bad": [{ "/design/websites": 1 }], - "visually": [{ "/design/websites": 1 }], - "appealing": [{ "/design/websites": 1 }, { "/design/project-identity": 1 }], - "crucial": [{ "/design/websites": 1 }, { "/patterns/internationalization": 1 }], - "strike": [{ "/design/websites": 1 }, { "/design/project-identity": 1 }], - "balance": [{ "/design/websites": 1 }, { "/design/project-identity": 1 }], - "sake": [{ "/design/websites": 1 }], - "overwhelm": [{ "/design/websites": 1 }], - "clean": [{ "/design/websites": 1 }, { "/style/themes": 1 }], - "helps": [{ "/design/websites": 1 }], - "associate": [{ "/design/websites": 1 }], - "company": [{ "/patterns/navigation": 2 }, { "/design/websites": 1 }], - "whitespace": [{ "/design/websites": 1 }, { "/patterns/forms": 1 }], - "liberally": [{ "/design/websites": 1 }], - "simplistic": [{ "/design/websites": 1 }], - "navigate": [ - { "/patterns/navigation": 4 }, - { "/design/websites": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/steppers": 1 } - ], - "chance": [{ "/design/websites": 1 }, { "/patterns/forms": 1 }], - "finding": [{ "/design/websites": 1 }], - "land": [{ "/design/websites": 1 }], - "immediately": [{ "/design/websites": 1 }], - "located": [{ "/design/websites": 1 }, { "/patterns/account-menu": 1 }, { "/patterns/forms": 1 }], - "map": [{ "/design/websites": 1 }, { "/patterns/overlay": 1 }, { "/patterns/visualizations": 1 }], - "footer": [ - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/navigation": 1 } - ], - "breadcrumbs": [{ "/design/websites": 3 }], - "search": [ - { "/patterns/appbar": 19 }, - { "/patterns/empty-states": 2 }, - { "/design/websites": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/navigation": 1 } - ], - "limit": [ - { "/design/websites": 2 }, - { "/patterns/appbar": 1 }, - { "/patterns/navigation": 1 }, - { "/community/faq": 1 } - ], - "menus": [{ "/patterns/overlay": 2 }, { "/design/websites": 1 }], - "per": [{ "/design/websites": 1 }, { "/patterns/loading": 1 }], - "nesting": [{ "/design/websites": 1 }], - "three": [ - { "/design/websites": 3 }, - { "/patterns/lists": 2 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/typography": 1 } - ], - "deep": [{ "/design/websites": 1 }], - "pyramid": [{ "/design/websites": 1 }], - "organize": [{ "/design/websites": 1 }], - "aspect": [{ "/design/websites": 1 }, { "/style/illustrations": 1 }], - "arrange": [{ "/design/websites": 1 }], - "naturally": [{ "/design/websites": 1 }], - "gravitate": [{ "/design/websites": 1 }], - "facilitate": [{ "/design/websites": 1 }], - "feels": [{ "/design/websites": 1 }], - "intuitive": [{ "/design/websites": 1 }], - "natural": [{ "/design/websites": 1 }, { "/patterns/internationalization": 1 }], - "enjoyable": [{ "/design/websites": 1 }], - "draw": [{ "/design/websites": 1 }, { "/patterns/visualizations": 1 }, { "/style/illustrations": 1 }], - "combination": [{ "/design/websites": 1 }, { "/patterns/navigation": 1 }, { "/style/color": 1 }], - "position": [{ "/design/websites": 1 }], - "grid": [{ "/design/websites": 3 }, { "/patterns/lists": 1 }, { "/style/iconography": 1 }], - "tie": [{ "/design/websites": 1 }], - "responsiveness": [{ "/design/websites": 2 }], - "effect": [{ "/design/websites": 1 }], - "five": [{ "/design/websites": 1 }, { "/patterns/navigation": 1 }], - "ideally": [{ "/design/websites": 1 }, { "/design/project-identity": 1 }], - "shades": [{ "/design/websites": 1 }, { "/style/themes": 1 }], - "gray": [{ "/design/websites": 1 }, { "/style/color": 1 }], - "palette": [ - { "/style/color": 4 }, - { "/style/illustrations": 2 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/themes": 1 } - ], - "catalogs": [{ "/design/websites": 1 }], - "commerce": [{ "/design/websites": 2 }], - "absolutely": [{ "/design/websites": 1 }], - "branding": [ - { "/style/color": 5 }, - { "/design/project-identity": 2 }, - { "/design/websites": 1 }, - { "/patterns/user-auth": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/illustrations": 1 } - ], - "highlight": [{ "/patterns/lists": 2 }, { "/design/websites": 1 }, { "/patterns/navigation": 1 }], - "require": [ - { "/patterns/internationalization": 3 }, - { "/patterns/user-auth": 2 }, - { "/style/color": 2 }, - { "/community/innersourcing": 2 }, - { "/design/websites": 1 }, - { "/patterns/navigation": 1 } - ], - "highly": [{ "/design/websites": 1 }, { "/community/faq": 1 }], - "legible": [{ "/design/websites": 1 }, { "/style/illustrations": 1 }], - "script": [{ "/design/websites": 1 }], - "minimize": [{ "/design/websites": 1 }], - "colored": [{ "/style/color": 2 }, { "/design/websites": 1 }], - "contrasts": [{ "/design/websites": 1 }], - "typefaces": [{ "/design/websites": 2 }], - "12px": [{ "/design/websites": 1 }], - "8px": [{ "/design/websites": 1 }], - "graphics": [ - { "/design/websites": 4 }, - { "/style/illustrations": 2 }, - { "/patterns/forms": 1 }, - { "/patterns/user-auth": 1 } - ], - "sparingly": [{ "/design/websites": 1 }, { "/patterns/loading": 1 }], - "showcase": [{ "/design/websites": 1 }, { "/style/themes": 1 }], - "illustrations": [ - { "/style/illustrations": 15 }, - { "/design/project-identity": 3 }, - { "/design/websites": 1 }, - { "/patterns/forms": 1 } - ], - "overall": [{ "/design/websites": 1 }, { "/community/innersourcing": 1 }], - "tone": [{ "/design/project-identity": 4 }, { "/design/websites": 2 }, { "/patterns/internationalization": 1 }], - "positive": [{ "/design/websites": 1 }, { "/style/color": 1 }], - "impact": [{ "/design/websites": 1 }], - "usability": [ - { "/community/faq": 2 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/community/innersourcing": 1 } - ], - "mean": [{ "/design/websites": 1 }, { "/design/project-identity": 1 }], - "landing": [{ "/design/websites": 1 }], - "consistently": [{ "/design/websites": 1 }, { "/design/project-identity": 1 }], - "voice": [{ "/design/websites": 1 }], - "straight": [{ "/design/websites": 1 }], - "technical": [{ "/design/websites": 1 }, { "/community/contactus": 1 }], - "jargon": [{ "/design/websites": 1 }], - "computers": [{ "/design/websites": 1 }], - "traffic": [{ "/design/websites": 1 }], - "strategy": [{ "/design/websites": 1 }], - "diverse": [{ "/design/websites": 1 }], - "eaton": [ - { "/design/websites": 1 }, - { "/community/license": 1 }, - { "/community/innersourcing": 1 }, - { "/community/contactus": 1 } - ], - "main": [ - { "/patterns/navigation": 9 }, - { "/design/websites": 2 }, - { "/patterns/overlay": 2 }, - { "/patterns/lists": 1 }, - { "/style/color": 1 }, - { "/style/illustrations": 1 } - ], - "conventions": [{ "/design/websites": 3 }, { "/design/project-identity": 1 }], - "expect": [{ "/design/websites": 1 }, { "/design/project-identity": 1 }, { "/patterns/lists": 1 }], - "placing": [ - { "/design/websites": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/account-menu": 1 }, - { "/patterns/lists": 1 } - ], - "left": [ - { "/patterns/internationalization": 5 }, - { "/design/websites": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/lists": 1 } - ], - "side": [ - { "/patterns/overlay": 3 }, - { "/patterns/navigation": 2 }, - { "/design/websites": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/internationalization": 1 }, - { "/community/faq": 1 } - ], - "logo": [{ "/design/websites": 2 }, { "/patterns/navigation": 2 }], - "clickable": [{ "/design/websites": 1 }, { "/patterns/lists": 1 }], - "home": [{ "/design/websites": 1 }], - "appearance": [{ "/design/websites": 1 }, { "/patterns/navigation": 1 }, { "/style/themes": 1 }], - "galleries": [{ "/design/websites": 1 }], - "slideshows": [{ "/design/websites": 1 }], - "rotate": [{ "/design/websites": 1 }], - "slides": [{ "/design/websites": 1 }, { "/patterns/appbar": 1 }], - "shopping": [{ "/design/websites": 1 }], - "cart": [{ "/design/websites": 2 }], - "badge": [{ "/design/websites": 1 }], - "indicates": [ - { "/patterns/internationalization": 2 }, - { "/design/websites": 1 }, - { "/patterns/appbar": 1 }, - { "/style/themes": 1 } - ], - "identity": [ - { "/design/project-identity": 5 }, - { "/patterns/empty-states": 2 }, - { "/patterns/user-auth": 2 }, - { "/style/color": 1 }, - { "/community/faq": 1 } - ], - "flexible": [{ "/design/project-identity": 2 }], - "flex": [{ "/design/project-identity": 1 }], - "serves": [{ "/design/project-identity": 1 }], - "demand": [{ "/design/project-identity": 1 }], - "suit": [{ "/design/project-identity": 1 }], - "among": [{ "/design/project-identity": 1 }, { "/style/illustrations": 1 }], - "maintaining": [{ "/design/project-identity": 2 }, { "/community/faq": 1 }], - "establishing": [{ "/design/project-identity": 2 }], - "leaving": [{ "/design/project-identity": 1 }, { "/patterns/lists": 1 }], - "mincardheight": [{ "/design/project-identity": 1 }], - "unset": [{ "/design/project-identity": 1 }], - "stifle": [{ "/design/project-identity": 1 }], - "creativity": [{ "/design/project-identity": 2 }, { "/community/faq": 1 }], - "enable": [{ "/design/project-identity": 1 }], - "standardizes": [{ "/design/project-identity": 1 }], - "foster": [{ "/design/project-identity": 1 }], - "turn": [{ "/design/project-identity": 1 }], - "spend": [{ "/design/project-identity": 1 }], - "parts": [ - { "/patterns/forms": 2 }, - { "/design/project-identity": 1 }, - { "/style/illustrations": 1 }, - { "/community/innersourcing": 1 } - ], - "too": [{ "/style/illustrations": 2 }, { "/design/project-identity": 1 }, { "/patterns/overlay": 1 }], - "opportunities": [{ "/design/project-identity": 1 }, { "/community/contactus": 1 }], - "tweaks": [{ "/design/project-identity": 1 }, { "/style/typography": 1 }], - "extends": [{ "/design/project-identity": 1 }, { "/patterns/user-auth": 1 }], - "adds": [{ "/design/project-identity": 1 }], - "flashy": [{ "/design/project-identity": 1 }], - "relaxed": [{ "/design/project-identity": 1 }], - "friendly": [{ "/design/project-identity": 3 }], - "aspects": [{ "/design/project-identity": 1 }, { "/community/faq": 1 }], - "related": [ - { "/patterns/account-menu": 5 }, - { "/design/project-identity": 2 }, - { "/patterns/user-auth": 2 }, - { "/style/color": 1 } - ], - "markets": [{ "/design/project-identity": 1 }], - "remember": [{ "/design/project-identity": 1 }, { "/patterns/user-auth": 1 }, { "/style/illustrations": 1 }], - "customize": [{ "/design/project-identity": 1 }], - "lost": [{ "/design/project-identity": 1 }], - "customization": [{ "/style/typography": 2 }, { "/design/project-identity": 1 }], - "avoided": [{ "/design/project-identity": 1 }], - "established": [{ "/design/project-identity": 1 }], - "packaging": [{ "/design/project-identity": 1 }], - "consumer": [{ "/design/project-identity": 2 }, { "/patterns/empty-states": 1 }, { "/patterns/user-auth": 1 }], - "facing": [ - { "/design/project-identity": 2 }, - { "/patterns/empty-states": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/illustrations": 1 } - ], - "moods": [{ "/design/project-identity": 1 }], - "professional": [{ "/design/project-identity": 1 }], - "current": [ - { "/design/project-identity": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/community/faq": 1 } - ], - "requirement": [{ "/design/project-identity": 1 }], - "situations": [ - { "/patterns/loading": 4 }, - { "/design/project-identity": 2 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/overlay": 1 } - ], - "invent": [{ "/design/project-identity": 1 }], - "leverage": [{ "/design/project-identity": 1 }], - "thoroughly": [{ "/design/project-identity": 2 }], - "explored": [{ "/design/project-identity": 1 }], - "variants": [{ "/design/project-identity": 1 }], - "variations": [ - { "/design/project-identity": 3 }, - { "/patterns/loading": 2 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/typography": 1 } - ], - "contained": [{ "/style/themes": 2 }, { "/design/project-identity": 1 }], - "filled": [{ "/design/project-identity": 1 }], - "flat": [{ "/design/project-identity": 1 }, { "/patterns/lists": 1 }, { "/patterns/navigation": 1 }], - "elevated": [{ "/design/project-identity": 1 }, { "/style/themes": 1 }], - "square": [{ "/design/project-identity": 1 }], - "rounded": [{ "/design/project-identity": 1 }], - "corner": [{ "/design/project-identity": 1 }, { "/patterns/forms": 1 }], - "round": [{ "/design/project-identity": 1 }], - "verbiage": [{ "/design/project-identity": 1 }], - "persuasive": [{ "/design/project-identity": 1 }], - "buy": [{ "/design/project-identity": 1 }], - "serious": [{ "/design/project-identity": 1 }], - "deal": [{ "/design/project-identity": 2 }, { "/patterns/navigation": 1 }], - "safety": [{ "/design/project-identity": 1 }, { "/style/color": 1 }], - "concerns": [ - { "/design/project-identity": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/faq": 1 } - ], - "carry": [{ "/design/project-identity": 1 }], - "cheerful": [{ "/design/project-identity": 1 }], - "freedom": [{ "/design/project-identity": 1 }, { "/community/faq": 1 }], - "researched": [{ "/design/project-identity": 1 }], - "exception": [{ "/design/project-identity": 1 }, { "/community/license": 1 }], - "rule": [{ "/design/project-identity": 1 }], - "labeled": [{ "/design/project-identity": 1 }, { "/patterns/forms": 1 }, { "/community/faq": 1 }], - "sold": [{ "/design/project-identity": 1 }, { "/community/faq": 1 }], - "beneficial": [{ "/design/project-identity": 1 }], - "align": [{ "/design/project-identity": 1 }, { "/patterns/lists": 1 }], - "status": [ - { "/patterns/lists": 9 }, - { "/style/color": 8 }, - { "/design/project-identity": 4 }, - { "/style/themes": 1 } - ], - "strict": [{ "/design/project-identity": 1 }, { "/community/license": 1 }], - "indicate": [ - { "/style/color": 3 }, - { "/patterns/empty-states": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/lists": 2 }, - { "/patterns/loading": 2 }, - { "/design/project-identity": 1 }, - { "/patterns/steppers": 1 } - ], - "changed": [{ "/design/project-identity": 2 }, { "/patterns/forms": 1 }], - "instantly": [{ "/design/project-identity": 1 }], - "interfere": [{ "/design/project-identity": 1 }, { "/patterns/lists": 1 }, { "/style/illustrations": 1 }], - "industry": [{ "/design/project-identity": 2 }], - "convention": [{ "/design/project-identity": 2 }], - "differs": [{ "/design/project-identity": 1 }, { "/style/typography": 1 }], - "green": [{ "/style/color": 2 }, { "/design/project-identity": 1 }], - "circuit": [{ "/design/project-identity": 2 }], - "closed": [{ "/patterns/navigation": 3 }, { "/design/project-identity": 1 }], - "breakers": [{ "/design/project-identity": 1 }], - "noto": [ - { "/design/project-identity": 2 }, - { "/patterns/internationalization": 1 }, - { "/style/typography": 1 } - ], - "encouraged": [ - { "/design/project-identity": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/themes": 1 } - ], - "adjust": [{ "/design/project-identity": 1 }], - "discourage": [{ "/design/project-identity": 1 }], - "serif": [{ "/design/project-identity": 1 }], - "underline": [{ "/design/project-identity": 1 }], - "expressly": [{ "/design/project-identity": 1 }], - "forbidden": [{ "/design/project-identity": 1 }], - "preferred": [{ "/design/project-identity": 1 }, { "/patterns/account-menu": 1 }, { "/community/faq": 1 }], - "menu": [ - { "/patterns/account-menu": 16 }, - { "/patterns/appbar": 3 }, - { "/patterns/lists": 2 }, - { "/patterns/navigation": 1 } - ], - "avatar": [{ "/patterns/account-menu": 7 }], - "present": [ - { "/patterns/account-menu": 4 }, - { "/patterns/overlay": 4 }, - { "/patterns/user-auth": 3 }, - { "/patterns/appbar": 2 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/visualizations": 1 }, - { "/community/license": 1 }, - { "/community/faq": 1 } - ], - "viewing": [{ "/style/illustrations": 2 }, { "/patterns/account-menu": 1 }, { "/patterns/overlay": 1 }], - "editing": [{ "/patterns/overlay": 2 }, { "/patterns/account-menu": 1 }], - "drawer": [{ "/patterns/navigation": 33 }, { "/patterns/account-menu": 17 }, { "/patterns/overlay": 2 }], - "commonly": [ - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/typography": 1 } - ], - "involves": [{ "/patterns/user-auth": 3 }, { "/patterns/account-menu": 1 }, { "/style/typography": 1 }], - "job": [{ "/patterns/account-menu": 2 }, { "/community/our-team": 1 }], - "title": [{ "/patterns/account-menu": 2 }, { "/patterns/appbar": 2 }, { "/patterns/overlay": 1 }], - "organization": [{ "/patterns/user-auth": 10 }, { "/patterns/account-menu": 1 }], - "affiliation": [{ "/patterns/account-menu": 1 }], - "link": [{ "/patterns/user-auth": 3 }, { "/patterns/account-menu": 2 }, { "/patterns/forms": 1 }], - "placed": [{ "/patterns/account-menu": 2 }], - "bottom": [ - { "/patterns/overlay": 8 }, - { "/patterns/navigation": 5 }, - { "/patterns/account-menu": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/steppers": 1 } - ], - "contents": [{ "/patterns/account-menu": 3 }, { "/patterns/navigation": 2 }, { "/patterns/overlay": 1 }], - "bar": [ - { "/patterns/appbar": 23 }, - { "/patterns/account-menu": 3 }, - { "/patterns/navigation": 3 }, - { "/patterns/loading": 2 }, - { "/style/typography": 2 }, - { "/patterns/internationalization": 1 }, - { "/patterns/overlay": 1 }, - { "/style/color": 1 } - ], - "rail": [{ "/patterns/navigation": 7 }, { "/patterns/account-menu": 2 }], - "place": [{ "/patterns/account-menu": 1 }, { "/patterns/empty-states": 1 }, { "/patterns/overlay": 1 }], - "appears": [ - { "/patterns/navigation": 2 }, - { "/patterns/overlay": 2 }, - { "/patterns/account-menu": 1 }, - { "/patterns/steppers": 1 } - ], - "opens": [{ "/patterns/account-menu": 1 }], - "avoids": [{ "/patterns/account-menu": 1 }], - "cluttering": [{ "/patterns/account-menu": 1 }], - "currently": [{ "/community/faq": 4 }, { "/patterns/account-menu": 1 }, { "/patterns/visualizations": 1 }], - "logged": [{ "/patterns/user-auth": 2 }, { "/patterns/account-menu": 1 }], - "appear": [ - { "/patterns/lists": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/account-menu": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/overlay": 1 } - ], - "avatars": [{ "/patterns/lists": 2 }, { "/patterns/account-menu": 1 }], - "picture": [{ "/patterns/account-menu": 1 }, { "/style/iconography": 1 }], - "displaying": [{ "/patterns/account-menu": 1 }, { "/patterns/forms": 1 }, { "/patterns/lists": 1 }], - "initials": [{ "/patterns/account-menu": 1 }], - "person": [{ "/patterns/account-menu": 1 }], - "generic": [{ "/patterns/account-menu": 1 }], - "administrator": [{ "/patterns/account-menu": 1 }], - "frequent": [{ "/patterns/account-menu": 1 }], - "log": [ - { "/patterns/account-menu": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/features": 1 } - ], - "privacy": [{ "/patterns/account-menu": 1 }], - "policy": [{ "/patterns/account-menu": 1 }], - "dimensions": [ - { "/patterns/account-menu": 2 }, - { "/patterns/appbar": 2 }, - { "/patterns/forms": 2 }, - { "/patterns/navigation": 2 }, - { "/patterns/steppers": 2 }, - { "/patterns/internationalization": 1 } - ], - "specified": [ - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 } - ], - "suggested": [ - { "/patterns/appbar": 2 }, - { "/patterns/account-menu": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 } - ], - "sheet": [ - { "/patterns/overlay": 6 }, - { "/community/faq": 2 }, - { "/patterns/account-menu": 1 }, - { "/patterns/steppers": 1 } - ], - "nav": [{ "/patterns/navigation": 2 }, { "/patterns/account-menu": 1 }], - "appbar": [{ "/patterns/appbar": 3 }, { "/patterns/lists": 1 }], - "collapse": [{ "/patterns/appbar": 1 }], - "collapsible": [{ "/patterns/appbar": 6 }], - "extend": [{ "/patterns/appbar": 1 }, { "/style/illustrations": 1 }, { "/community/faq": 1 }], - "prominent": [{ "/patterns/appbar": 2 }, { "/patterns/navigation": 1 }], - "toolbar": [{ "/patterns/appbar": 7 }], - "banner": [{ "/patterns/appbar": 2 }], - "bars": [{ "/patterns/appbar": 7 }, { "/patterns/loading": 2 }, { "/style/color": 1 }], - "sometimes": [{ "/patterns/internationalization": 3 }, { "/patterns/appbar": 2 }], - "toolbars": [{ "/patterns/appbar": 1 }, { "/style/color": 1 }, { "/style/themes": 1 }], - "short": [{ "/patterns/appbar": 1 }, { "/patterns/forms": 1 }, { "/patterns/internationalization": 1 }], - "contain": [{ "/patterns/overlay": 2 }, { "/patterns/appbar": 1 }, { "/patterns/navigation": 1 }], - "subtitle": [{ "/patterns/appbar": 4 }, { "/style/typography": 2 }], - "grouping": [{ "/patterns/appbar": 1 }], - "dropdown": [{ "/patterns/appbar": 6 }, { "/patterns/overlay": 1 }], - "transforms": [{ "/patterns/appbar": 1 }], - "switch": [{ "/patterns/appbar": 1 }, { "/patterns/internationalization": 1 }], - "locations": [{ "/patterns/appbar": 1 }, { "/patterns/visualizations": 1 }], - "safe": [{ "/patterns/navigation": 2 }, { "/patterns/appbar": 1 }], - "area": [{ "/patterns/navigation": 4 }, { "/patterns/appbar": 1 }], - "graphic": [{ "/patterns/empty-states": 2 }, { "/patterns/appbar": 1 }, { "/style/illustrations": 1 }], - "lines": [ - { "/style/typography": 2 }, - { "/patterns/appbar": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/navigation": 1 } - ], - "referred": [{ "/patterns/appbar": 1 }], - "expandable": [{ "/patterns/appbar": 1 }, { "/patterns/navigation": 1 }, { "/patterns/overlay": 1 }], - "extended": [{ "/patterns/appbar": 1 }], - "ideal": [{ "/patterns/appbar": 1 }, { "/patterns/internationalization": 1 }], - "starts": [{ "/patterns/appbar": 1 }], - "tall": [{ "/patterns/appbar": 1 }], - "shrink": [{ "/patterns/appbar": 1 }], - "scrolls": [{ "/patterns/appbar": 1 }], - "until": [{ "/patterns/appbar": 1 }, { "/patterns/forms": 1 }, { "/patterns/navigation": 1 }], - "put": [{ "/patterns/appbar": 1 }], - "emphasis": [{ "/patterns/appbar": 1 }], - "pertinent": [{ "/patterns/appbar": 1 }], - "topic": [{ "/patterns/appbar": 1 }], - "eye": [{ "/patterns/appbar": 1 }], - "catching": [{ "/patterns/appbar": 1 }], - "permanently": [{ "/patterns/appbar": 1 }, { "/patterns/navigation": 1 }], - "reducing": [{ "/patterns/appbar": 1 }], - "amount": [ - { "/patterns/appbar": 1 }, - { "/patterns/loading": 1 }, - { "/style/iconography": 1 }, - { "/community/innersourcing": 1 } - ], - "could": [ - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/illustrations": 1 } - ], - "transition": [{ "/patterns/appbar": 3 }], - "smoothly": [{ "/patterns/appbar": 2 }], - "expanded": [{ "/patterns/navigation": 2 }, { "/patterns/appbar": 1 }, { "/style/color": 1 }], - "collapsed": [{ "/patterns/navigation": 2 }, { "/patterns/appbar": 1 }], - "disappear": [{ "/patterns/appbar": 1 }], - "shrinks": [{ "/patterns/appbar": 1 }], - "techniques": [{ "/patterns/appbar": 1 }], - "achieved": [{ "/patterns/appbar": 1 }, { "/patterns/user-auth": 1 }, { "/style/themes": 1 }], - "enters": [{ "/patterns/appbar": 1 }], - "filtered": [{ "/patterns/appbar": 1 }], - "auto": [{ "/patterns/appbar": 2 }], - "searching": [{ "/patterns/appbar": 1 }], - "autocomplete": [{ "/patterns/appbar": 1 }], - "contextual": [{ "/patterns/loading": 3 }, { "/patterns/appbar": 1 }], - "ahead": [{ "/patterns/appbar": 1 }], - "query": [{ "/patterns/appbar": 1 }], - "placeholder": [{ "/patterns/loading": 9 }, { "/patterns/empty-states": 1 }], - "times": [{ "/patterns/empty-states": 1 }, { "/patterns/forms": 1 }], - "happen": [{ "/patterns/empty-states": 1 }], - "loading": [{ "/patterns/loading": 10 }, { "/patterns/empty-states": 2 }, { "/patterns/forms": 1 }], - "filter": [{ "/patterns/empty-states": 2 }], - "criteria": [{ "/patterns/empty-states": 1 }, { "/patterns/forms": 1 }], - "indicators": [{ "/patterns/loading": 4 }, { "/patterns/empty-states": 2 }], - "alert": [{ "/patterns/empty-states": 1 }], - "networking": [{ "/patterns/empty-states": 1 }], - "lack": [{ "/patterns/empty-states": 1 }], - "permissions": [{ "/patterns/empty-states": 1 }], - "placeholders": [{ "/patterns/empty-states": 1 }], - "success": [ - { "/patterns/user-auth": 9 }, - { "/patterns/forms": 3 }, - { "/patterns/empty-states": 1 }, - { "/style/color": 1 } - ], - "followed": [{ "/patterns/empty-states": 1 }, { "/patterns/user-auth": 1 }], - "headline": [{ "/patterns/empty-states": 1 }], - "explanatory": [{ "/patterns/empty-states": 1 }], - "why": [{ "/patterns/empty-states": 2 }, { "/community/license": 1 }], - "anything": [{ "/patterns/empty-states": 1 }, { "/patterns/overlay": 1 }], - "minimal": [{ "/patterns/empty-states": 1 }], - "convey": [{ "/patterns/empty-states": 1 }, { "/patterns/internationalization": 1 }, { "/patterns/lists": 1 }], - "populated": [{ "/patterns/empty-states": 1 }], - "call": [{ "/patterns/forms": 2 }, { "/patterns/empty-states": 1 }, { "/patterns/loading": 1 }], - "indicator": [{ "/patterns/loading": 5 }, { "/patterns/empty-states": 2 }], - "centered": [ - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/user-auth": 1 } - ], - "soon": [ - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/steppers": 1 }, - { "/community/faq": 1 } - ], - "sections": [ - { "/patterns/navigation": 2 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/style/color": 1 } - ], - "card": [ - { "/patterns/empty-states": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/patterns/visualizations": 1 } - ], - "having": [{ "/patterns/empty-states": 1 }, { "/style/illustrations": 1 }], - "dashboard": [{ "/patterns/empty-states": 1 }], - "dataset": [{ "/patterns/empty-states": 2 }], - "inactions": [{ "/patterns/empty-states": 1 }], - "did": [{ "/patterns/empty-states": 1 }], - "caused": [{ "/patterns/empty-states": 1 }, { "/community/license": 1 }], - "populate": [{ "/patterns/empty-states": 1 }, { "/patterns/internationalization": 1 }], - "express": [{ "/patterns/empty-states": 1 }, { "/community/license": 1 }], - "verification": [{ "/patterns/forms": 12 }, { "/patterns/user-auth": 5 }, { "/patterns/loading": 3 }], - "validation": [{ "/patterns/forms": 2 }, { "/patterns/user-auth": 1 }], - "integral": [{ "/patterns/forms": 1 }], - "validating": [{ "/patterns/forms": 1 }], - "follows": [{ "/patterns/forms": 1 }], - "explained": [{ "/patterns/forms": 1 }, { "/patterns/loading": 1 }], - "detail": [{ "/patterns/forms": 1 }, { "/style/illustrations": 1 }], - "overwhelming": [{ "/patterns/forms": 1 }], - "height": [{ "/patterns/forms": 1 }], - "breaking": [{ "/patterns/forms": 1 }, { "/patterns/steppers": 1 }], - "according": [{ "/patterns/forms": 1 }], - "valid": [{ "/patterns/forms": 2 }], - "input": [{ "/patterns/forms": 10 }, { "/patterns/internationalization": 1 }, { "/patterns/overlay": 1 }], - "entered": [{ "/patterns/forms": 1 }], - "problem": [{ "/patterns/forms": 1 }, { "/patterns/user-auth": 1 }], - "helper": [{ "/patterns/forms": 3 }], - "replaced": [{ "/patterns/forms": 1 }], - "optionally": [{ "/patterns/forms": 1 }, { "/patterns/lists": 1 }], - "succinct": [{ "/patterns/forms": 1 }], - "compromise": [{ "/patterns/forms": 1 }, { "/patterns/user-auth": 1 }, { "/community/faq": 1 }], - "security": [{ "/patterns/user-auth": 5 }, { "/patterns/forms": 2 }], - "credentials": [{ "/patterns/user-auth": 7 }, { "/patterns/forms": 3 }], - "incorrect": [{ "/patterns/user-auth": 2 }, { "/patterns/forms": 1 }], - "reached": [{ "/patterns/forms": 2 }], - "submission": [{ "/patterns/forms": 1 }, { "/patterns/loading": 1 }, { "/community/innersourcing": 1 }], - "was": [ - { "/patterns/forms": 1 }, - { "/patterns/loading": 1 }, - { "/style/typography": 1 }, - { "/community/our-team": 1 } - ], - "accepted": [{ "/patterns/forms": 1 }], - "next": [{ "/patterns/forms": 5 }, { "/community/innersourcing": 2 }, { "/patterns/loading": 1 }], - "stylized": [{ "/patterns/forms": 1 }, { "/style/color": 1 }], - "return": [{ "/patterns/forms": 1 }], - "submitting": [{ "/patterns/forms": 2 }, { "/community/innersourcing": 2 }], - "focused": [{ "/patterns/forms": 1 }, { "/patterns/internationalization": 1 }], - "remain": [{ "/patterns/forms": 1 }], - "visibility": [{ "/patterns/forms": 3 }, { "/patterns/user-auth": 1 }], - "toggle": [{ "/patterns/forms": 2 }, { "/patterns/internationalization": 1 }, { "/patterns/lists": 1 }], - "switches": [{ "/patterns/forms": 1 }], - "typed": [{ "/patterns/forms": 1 }], - "blur": [{ "/patterns/forms": 2 }], - "clicks": [{ "/patterns/forms": 1 }], - "away": [{ "/patterns/forms": 1 }], - "keystroke": [{ "/patterns/forms": 1 }], - "performing": [{ "/patterns/forms": 2 }], - "distracting": [{ "/patterns/forms": 1 }], - "confusing": [{ "/patterns/forms": 1 }], - "loses": [{ "/patterns/forms": 1 }], - "finished": [{ "/patterns/forms": 1 }, { "/style/illustrations": 1 }], - "entering": [{ "/patterns/forms": 1 }], - "confirm": [{ "/patterns/forms": 1 }, { "/patterns/user-auth": 1 }], - "updated": [ - { "/patterns/user-auth": 2 }, - { "/patterns/forms": 1 }, - { "/community/license": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "defer": [{ "/patterns/forms": 1 }], - "performed": [{ "/patterns/forms": 1 }, { "/community/innersourcing": 1 }], - "preliminary": [{ "/patterns/forms": 1 }], - "being": [ - { "/patterns/loading": 2 }, - { "/patterns/forms": 1 }, - { "/patterns/lists": 1 }, - { "/community/faq": 1 } - ], - "triggered": [{ "/patterns/forms": 1 }, { "/patterns/user-auth": 1 }], - "replace": [{ "/patterns/forms": 1 }, { "/patterns/loading": 1 }, { "/patterns/navigation": 1 }], - "spinner": [{ "/patterns/loading": 7 }, { "/patterns/forms": 1 }], - "progress": [ - { "/patterns/loading": 11 }, - { "/style/iconography": 3 }, - { "/patterns/forms": 1 }, - { "/patterns/steppers": 1 }, - { "/community/faq": 1 } - ], - "successful": [{ "/patterns/forms": 1 }, { "/patterns/user-auth": 1 }], - "taken": [{ "/patterns/forms": 1 }, { "/patterns/overlay": 1 }], - "submit": [ - { "/patterns/forms": 7 }, - { "/patterns/loading": 3 }, - { "/patterns/user-auth": 1 }, - { "/community/innersourcing": 1 }, - { "/community/bugs": 1 }, - { "/community/features": 1 } - ], - "continue": [{ "/patterns/forms": 1 }, { "/style/typography": 1 }, { "/community/faq": 1 }], - "happens": [{ "/patterns/forms": 1 }, { "/patterns/loading": 1 }], - "_next_": [{ "/patterns/forms": 1 }], - "_finish_": [{ "/patterns/forms": 1 }], - "last": [{ "/patterns/forms": 1 }, { "/patterns/loading": 1 }], - "dismiss": [{ "/patterns/overlay": 2 }, { "/patterns/forms": 1 }], - "known": [{ "/patterns/forms": 1 }], - "length": [{ "/patterns/forms": 2 }], - "omitted": [{ "/patterns/forms": 1 }], - "submitted": [{ "/patterns/forms": 1 }], - "disabling": [{ "/patterns/forms": 1 }], - "indicated": [{ "/patterns/forms": 2 }], - "disabled": [{ "/patterns/forms": 1 }, { "/style/color": 1 }], - "onaction": [{ "/patterns/forms": 1 }], - "aren": [{ "/patterns/forms": 1 }], - "textinput": [{ "/patterns/forms": 1 }], - "internationalization": [{ "/patterns/internationalization": 7 }, { "/style/typography": 1 }], - "i18n": [{ "/patterns/internationalization": 3 }], - "internationalisation": [{ "/patterns/internationalization": 1 }], - "translate": [{ "/patterns/internationalization": 2 }], - "translation": [{ "/patterns/internationalization": 3 }, { "/style/illustrations": 1 }], - "localization": [{ "/patterns/internationalization": 7 }], - "l10n": [{ "/patterns/internationalization": 2 }], - "rtl": [{ "/patterns/internationalization": 2 }], - "localisation": [{ "/patterns/internationalization": 1 }], - "globalization": [{ "/patterns/internationalization": 1 }], - "globalize": [{ "/patterns/internationalization": 1 }], - "globalisation": [{ "/patterns/internationalization": 1 }], - "globalise": [{ "/patterns/internationalization": 1 }], - "practices": [{ "/patterns/internationalization": 1 }, { "/patterns/lists": 1 }], - "adapting": [{ "/patterns/internationalization": 2 }], - "regions": [{ "/patterns/internationalization": 1 }], - "cultures": [{ "/patterns/internationalization": 2 }], - "accomplish": [{ "/patterns/internationalization": 1 }], - "considering": [{ "/patterns/internationalization": 1 }], - "directionality": [{ "/patterns/internationalization": 2 }], - "abbreviated": [{ "/patterns/internationalization": 1 }], - "functionally": [{ "/patterns/internationalization": 1 }], - "independent": [{ "/patterns/internationalization": 1 }], - "cultural": [{ "/patterns/internationalization": 5 }], - "enables": [{ "/patterns/internationalization": 1 }], - "equally": [{ "/patterns/internationalization": 1 }, { "/patterns/user-auth": 1 }], - "experienced": [{ "/patterns/internationalization": 1 }], - "customizing": [{ "/patterns/internationalization": 1 }], - "prosper": [{ "/patterns/internationalization": 1 }], - "vision": [{ "/patterns/internationalization": 1 }], - "reaching": [{ "/patterns/internationalization": 1 }], - "capturing": [{ "/patterns/internationalization": 1 }], - "begin": [{ "/patterns/internationalization": 1 }], - "outset": [{ "/patterns/internationalization": 1 }], - "term": [{ "/patterns/internationalization": 1 }], - "locales": [{ "/patterns/internationalization": 2 }], - "localize": [{ "/patterns/internationalization": 1 }], - "string": [{ "/patterns/internationalization": 1 }], - "contains": [ - { "/patterns/navigation": 3 }, - { "/style/themes": 2 }, - { "/patterns/internationalization": 1 }, - { "/patterns/user-auth": 1 }, - { "/style/color": 1 }, - { "/style/typography": 1 } - ], - "translations": [{ "/patterns/internationalization": 3 }], - "coded": [{ "/patterns/internationalization": 1 }], - "public": [{ "/patterns/internationalization": 1 }], - "cues": [{ "/patterns/internationalization": 1 }], - "locate": [{ "/patterns/internationalization": 1 }], - "selection": [{ "/patterns/internationalization": 1 }], - "names": [{ "/patterns/internationalization": 2 }, { "/community/license": 1 }], - "espa": [{ "/patterns/internationalization": 1 }], - "ol": [{ "/patterns/internationalization": 1 }], - "spanish": [{ "/patterns/internationalization": 2 }], - "converting": [{ "/patterns/internationalization": 1 }], - "currencies": [{ "/patterns/internationalization": 1 }], - "formats": [{ "/patterns/internationalization": 4 }, { "/style/iconography": 1 }], - "currency": [{ "/patterns/internationalization": 1 }], - "linked": [{ "/patterns/internationalization": 1 }], - "locale": [{ "/patterns/internationalization": 3 }], - "influenced": [{ "/patterns/internationalization": 1 }], - "given": [{ "/patterns/internationalization": 1 }], - "surname": [{ "/patterns/internationalization": 1 }], - "street": [{ "/patterns/internationalization": 1 }], - "numbers": [{ "/patterns/internationalization": 1 }], - "comma": [{ "/patterns/internationalization": 1 }], - "period": [{ "/patterns/internationalization": 1 }], - "punctuation": [{ "/patterns/internationalization": 1 }], - "crafting": [{ "/patterns/internationalization": 1 }, { "/style/typography": 1 }], - "vertical": [{ "/patterns/internationalization": 1 }, { "/patterns/steppers": 1 }], - "horizontal": [ - { "/patterns/internationalization": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/steppers": 1 } - ], - "fixed": [{ "/patterns/internationalization": 1 }], - "badges": [{ "/patterns/internationalization": 1 }], - "glyphs": [{ "/patterns/internationalization": 1 }], - "recommends": [{ "/patterns/internationalization": 1 }, { "/community/faq": 1 }], - "western": [{ "/patterns/internationalization": 1 }, { "/style/typography": 1 }], - "bidirectionality": [{ "/patterns/internationalization": 1 }], - "arabic": [{ "/patterns/internationalization": 1 }], - "hebrew": [{ "/patterns/internationalization": 1 }], - "mirror": [{ "/patterns/internationalization": 1 }], - "mirrored": [{ "/patterns/internationalization": 1 }], - "addressing": [{ "/patterns/internationalization": 1 }], - "america": [{ "/patterns/internationalization": 1 }], - "stock": [{ "/patterns/internationalization": 1 }, { "/style/illustrations": 1 }], - "decline": [{ "/patterns/internationalization": 1 }], - "china": [{ "/patterns/internationalization": 1 }], - "rise": [{ "/patterns/internationalization": 1 }], - "thumbs": [{ "/patterns/internationalization": 1 }], - "gesture": [{ "/patterns/internationalization": 2 }], - "expresses": [{ "/patterns/internationalization": 1 }], - "approval": [{ "/patterns/internationalization": 1 }], - "english": [{ "/patterns/internationalization": 2 }], - "speaking": [{ "/patterns/internationalization": 1 }], - "negative": [{ "/patterns/internationalization": 1 }], - "iraq": [{ "/patterns/internationalization": 1 }], - "consultant": [{ "/patterns/internationalization": 1 }], - "audit": [{ "/patterns/internationalization": 1 }, { "/community/innersourcing": 1 }], - "webpages": [{ "/patterns/internationalization": 1 }], - "advertise": [{ "/patterns/internationalization": 1 }], - "appeal": [{ "/patterns/internationalization": 1 }], - "choice": [{ "/community/faq": 2 }, { "/patterns/internationalization": 1 }], - "tailored": [{ "/patterns/internationalization": 1 }], - "targeted": [{ "/patterns/internationalization": 1 }, { "/style/illustrations": 1 }], - "culture": [{ "/patterns/internationalization": 2 }], - "likewise": [{ "/patterns/internationalization": 1 }], - "study": [{ "/patterns/internationalization": 1 }], - "conclusions": [{ "/patterns/internationalization": 1 }, { "/patterns/visualizations": 1 }], - "derived": [{ "/patterns/internationalization": 1 }, { "/community/license": 1 }], - "swap": [{ "/patterns/internationalization": 1 }], - "ngx": [{ "/patterns/loading": 2 }, { "/patterns/internationalization": 1 }], - "switching": [{ "/patterns/internationalization": 1 }], - "internationalize": [{ "/patterns/internationalization": 1 }], - "i18next": [{ "/patterns/internationalization": 2 }], - "manage": [{ "/patterns/internationalization": 2 }], - "carefully": [{ "/patterns/internationalization": 1 }], - "i18nmanager": [{ "/patterns/internationalization": 1 }], - "sort": [{ "/patterns/lists": 1 }], - "table": [{ "/patterns/lists": 3 }], - "drag": [{ "/patterns/lists": 5 }], - "drop": [{ "/patterns/lists": 4 }], - "tables": [{ "/patterns/lists": 6 }], - "groups": [{ "/patterns/lists": 1 }, { "/patterns/user-auth": 1 }], - "logical": [{ "/patterns/lists": 2 }], - "alarm": [{ "/style/color": 3 }, { "/patterns/lists": 1 }], - "pairs": [{ "/patterns/lists": 1 }], - "timelines": [{ "/patterns/lists": 3 }], - "panels": [{ "/patterns/lists": 1 }, { "/patterns/navigation": 1 }], - "alarms": [{ "/style/color": 3 }, { "/patterns/lists": 2 }], - "notifications": [{ "/patterns/lists": 1 }, { "/patterns/user-auth": 1 }], - "inventories": [{ "/patterns/lists": 1 }], - "contacts": [{ "/patterns/lists": 1 }], - "logs": [{ "/patterns/lists": 2 }], - "trees": [{ "/patterns/lists": 1 }], - "represents": [{ "/patterns/lists": 1 }], - "mix": [{ "/patterns/lists": 1 }], - "panel": [{ "/patterns/lists": 3 }, { "/patterns/navigation": 3 }], - "occasionally": [{ "/patterns/lists": 1 }, { "/community/innersourcing": 1 }], - "simplest": [{ "/patterns/lists": 1 }], - "presents": [{ "/patterns/lists": 1 }, { "/patterns/user-auth": 1 }], - "collection": [{ "/patterns/lists": 1 }, { "/style/themes": 1 }], - "indication": [{ "/patterns/loading": 3 }, { "/patterns/lists": 1 }], - "condition": [{ "/patterns/lists": 1 }], - "stripes": [{ "/patterns/lists": 2 }], - "scorecard": [{ "/style/typography": 2 }, { "/patterns/lists": 1 }], - "_solely_": [{ "/patterns/lists": 1 }], - "tags": [{ "/patterns/lists": 1 }], - "timestamps": [{ "/patterns/lists": 2 }], - "timestamp": [{ "/patterns/lists": 1 }], - "occurs": [{ "/patterns/user-auth": 2 }, { "/patterns/lists": 1 }, { "/patterns/loading": 1 }], - "group": [{ "/patterns/lists": 1 }, { "/patterns/user-auth": 1 }, { "/style/illustrations": 1 }], - "scan": [{ "/patterns/lists": 1 }], - "emphasize": [{ "/patterns/lists": 1 }], - "poorly": [{ "/patterns/lists": 1 }], - "examining": [{ "/patterns/lists": 1 }], - "vertically": [{ "/patterns/lists": 1 }], - "sorting": [{ "/patterns/lists": 2 }], - "filtering": [{ "/patterns/lists": 1 }, { "/patterns/navigation": 1 }], - "toggling": [{ "/patterns/lists": 1 }], - "exporting": [{ "/patterns/lists": 1 }, { "/style/illustrations": 1 }], - "orders": [{ "/patterns/lists": 1 }], - "accomplished": [{ "/patterns/lists": 1 }, { "/patterns/user-auth": 1 }], - "handle": [{ "/patterns/lists": 1 }], - "leftmost": [{ "/patterns/lists": 1 }], - "row": [{ "/patterns/lists": 1 }, { "/style/color": 1 }], - "pushing": [{ "/patterns/lists": 1 }], - "locked": [{ "/patterns/lists": 1 }], - "edit": [{ "/patterns/lists": 1 }, { "/patterns/overlay": 1 }], - "represented": [{ "/patterns/lists": 1 }], - "events": [{ "/patterns/lists": 1 }], - "navigating": [{ "/patterns/lists": 1 }, { "/style/color": 1 }], - "tree": [{ "/patterns/lists": 2 }], - "multi": [ - { "/patterns/steppers": 2 }, - { "/patterns/lists": 1 }, - { "/patterns/user-auth": 1 }, - { "/community/our-team": 1 } - ], - "progressive": [{ "/patterns/lists": 1 }], - "disclosure": [{ "/patterns/lists": 1 }], - "tricky": [{ "/patterns/lists": 1 }], - "columns": [{ "/patterns/lists": 1 }], - "visible": [{ "/patterns/navigation": 2 }, { "/patterns/lists": 1 }, { "/style/illustrations": 1 }], - "remove": [{ "/patterns/lists": 1 }], - "summary": [{ "/patterns/lists": 1 }, { "/community/bugs": 1 }], - "cards": [{ "/patterns/lists": 1 }], - "gestures": [{ "/patterns/lists": 1 }], - "swipe": [{ "/patterns/lists": 1 }], - "info": [{ "/patterns/lists": 3 }], - "tag": [{ "/patterns/lists": 3 }], - "cdk": [{ "/patterns/lists": 1 }], - "kit": [{ "/patterns/lists": 1 }], - "asynchronous": [{ "/patterns/loading": 1 }], - "refresh": [{ "/patterns/loading": 5 }], - "waiting": [{ "/patterns/loading": 1 }], - "oftentimes": [{ "/patterns/loading": 1 }], - "send": [{ "/patterns/loading": 1 }, { "/community/innersourcing": 1 }, { "/community/features": 1 }], - "remote": [{ "/patterns/loading": 1 }], - "latency": [{ "/patterns/loading": 1 }], - "happening": [{ "/patterns/loading": 2 }], - "shapes": [{ "/patterns/loading": 5 }, { "/patterns/overlay": 1 }], - "fetching": [{ "/patterns/loading": 1 }], - "skeletons": [{ "/patterns/loading": 1 }], - "mimic": [{ "/patterns/loading": 1 }], - "eventually": [{ "/patterns/loading": 1 }], - "loaded": [{ "/patterns/loading": 2 }], - "impression": [{ "/patterns/loading": 1 }], - "closely": [{ "/patterns/loading": 1 }], - "_structure_": [{ "/patterns/loading": 1 }], - "rectangles": [{ "/patterns/loading": 1 }], - "circles": [{ "/patterns/loading": 1 }], - "_length_": [{ "/patterns/loading": 1 }], - "ended": [{ "/patterns/loading": 1 }], - "slightly": [{ "/patterns/loading": 1 }, { "/patterns/navigation": 1 }], - "ok": [{ "/patterns/loading": 1 }], - "mission": [{ "/patterns/loading": 1 }], - "overlays": [{ "/patterns/overlay": 4 }, { "/patterns/loading": 3 }, { "/patterns/user-auth": 1 }], - "semi": [{ "/patterns/loading": 1 }], - "transparent": [{ "/patterns/loading": 1 }], - "overlay": [ - { "/patterns/overlay": 3 }, - { "/patterns/navigation": 2 }, - { "/patterns/loading": 1 }, - { "/patterns/user-auth": 1 } - ], - "variation": [ - { "/patterns/navigation": 5 }, - { "/patterns/loading": 1 }, - { "/patterns/steppers": 1 }, - { "/style/typography": 1 } - ], - "block": [{ "/patterns/navigation": 2 }, { "/patterns/loading": 1 }, { "/community/license": 1 }], - "processing": [{ "/patterns/loading": 1 }], - "spinners": [{ "/patterns/loading": 3 }], - "wait": [{ "/patterns/loading": 1 }], - "server": [{ "/patterns/loading": 3 }, { "/patterns/user-auth": 2 }], - "response": [{ "/patterns/loading": 1 }, { "/community/bugs": 1 }], - "validate": [{ "/patterns/loading": 1 }], - "disable": [{ "/patterns/loading": 1 }], - "succeeds": [{ "/patterns/loading": 1 }], - "fails": [{ "/patterns/loading": 1 }], - "restored": [{ "/patterns/loading": 1 }], - "discrete": [{ "/patterns/loading": 1 }], - "measurable": [{ "/patterns/loading": 1 }], - "uploading": [{ "/patterns/loading": 1 }], - "polling": [{ "/patterns/loading": 2 }], - "pub": [{ "/patterns/loading": 1 }], - "sub": [{ "/patterns/navigation": 2 }, { "/patterns/loading": 1 }], - "refreshed": [{ "/patterns/loading": 3 }], - "mention": [{ "/patterns/loading": 1 }], - "somewhere": [{ "/patterns/loading": 1 }], - "stale": [{ "/patterns/loading": 1 }], - "minute": [{ "/patterns/loading": 1 }], - "initial": [{ "/patterns/loading": 1 }], - "depend": [{ "/patterns/loading": 1 }], - "plays": [{ "/patterns/loading": 1 }], - "role": [{ "/patterns/loading": 1 }], - "sizing": [{ "/patterns/loading": 1 }], - "container": [{ "/patterns/loading": 1 }], - "netbasal": [{ "/patterns/loading": 2 }], - "loader": [{ "/patterns/loading": 3 }], - "ion": [{ "/patterns/loading": 1 }, { "/patterns/overlay": 1 }], - "lab": [{ "/patterns/loading": 1 }], - "rn": [{ "/patterns/loading": 1 }], - "circular": [{ "/patterns/loading": 1 }], - "linear": [{ "/patterns/steppers": 3 }, { "/patterns/loading": 1 }], - "activity": [{ "/patterns/loading": 1 }], - "tab": [{ "/patterns/navigation": 3 }], - "attached": [{ "/patterns/navigation": 1 }, { "/community/bugs": 1 }], - "subheader": [{ "/patterns/navigation": 1 }], - "trademark": [{ "/patterns/navigation": 1 }], - "permanent": [{ "/patterns/navigation": 4 }, { "/patterns/overlay": 1 }], - "opposed": [{ "/patterns/navigation": 1 }], - "variant": [{ "/patterns/navigation": 2 }], - "nested": [{ "/patterns/navigation": 4 }], - "justify": [{ "/patterns/navigation": 1 }], - "shows": [{ "/patterns/navigation": 1 }, { "/patterns/steppers": 1 }], - "compact": [{ "/patterns/navigation": 1 }], - "saving": [{ "/patterns/navigation": 1 }], - "hmi": [{ "/patterns/navigation": 1 }, { "/patterns/user-auth": 1 }], - "condensed": [{ "/patterns/navigation": 1 }], - "persistent": [{ "/patterns/navigation": 2 }], - "opened": [{ "/patterns/navigation": 5 }], - "momentarily": [{ "/patterns/navigation": 1 }], - "hovering": [{ "/patterns/navigation": 1 }], - "mouse": [{ "/patterns/navigation": 1 }], - "wouldn": [{ "/patterns/navigation": 1 }], - "invisible": [{ "/patterns/navigation": 1 }], - "pressing": [{ "/patterns/navigation": 1 }], - "extreme": [{ "/patterns/navigation": 1 }], - "limitations": [{ "/patterns/navigation": 1 }], - "combine": [{ "/patterns/navigation": 1 }], - "secondary": [{ "/patterns/navigation": 1 }, { "/style/themes": 1 }], - "classic": [{ "/patterns/navigation": 1 }], - "routes": [{ "/patterns/navigation": 3 }], - "handles": [{ "/patterns/navigation": 1 }], - "documents": [{ "/patterns/navigation": 1 }], - "faq": [{ "/patterns/navigation": 1 }, { "/community/faq": 1 }], - "hierarchical": [{ "/patterns/navigation": 1 }], - "resize": [{ "/patterns/navigation": 2 }], - "resizes": [{ "/patterns/navigation": 1 }], - "partially": [{ "/patterns/navigation": 1 }], - "obscuring": [{ "/patterns/navigation": 1 }], - "direct": [{ "/patterns/navigation": 1 }, { "/community/license": 1 }], - "dividers": [{ "/patterns/navigation": 1 }], - "divider": [{ "/patterns/navigation": 1 }], - "separating": [{ "/patterns/navigation": 2 }], - "iphone": [{ "/patterns/navigation": 1 }], - "x": [{ "/patterns/navigation": 1 }], - "model": [{ "/patterns/navigation": 1 }, { "/community/faq": 1 }], - "sidebar": [{ "/patterns/overlay": 4 }], - "popup": [{ "/patterns/overlay": 1 }], - "capture": [{ "/patterns/overlay": 2 }], - "supplement": [{ "/patterns/overlay": 1 }, { "/community/our-team": 1 }], - "confirmation": [{ "/patterns/overlay": 2 }, { "/patterns/user-auth": 2 }], - "dialogs": [{ "/patterns/overlay": 3 }], - "sidebars": [{ "/patterns/overlay": 4 }], - "blocking": [{ "/patterns/overlay": 3 }], - "else": [{ "/patterns/overlay": 1 }], - "ask": [{ "/patterns/overlay": 1 }, { "/community/innersourcing": 1 }], - "decision": [{ "/patterns/overlay": 1 }], - "confirming": [{ "/patterns/overlay": 1 }], - "deletion": [{ "/patterns/overlay": 1 }], - "modals": [{ "/patterns/overlay": 4 }], - "respond": [{ "/patterns/overlay": 1 }, { "/community/contactus": 1 }], - "presenting": [{ "/patterns/overlay": 1 }, { "/patterns/user-auth": 1 }], - "dismissed": [{ "/patterns/overlay": 1 }], - "rest": [{ "/patterns/overlay": 1 }, { "/community/faq": 1 }], - "elsewhere": [{ "/patterns/overlay": 2 }], - "collecting": [{ "/patterns/overlay": 1 }], - "sheets": [{ "/patterns/overlay": 2 }], - "legend": [{ "/patterns/overlay": 1 }], - "chart": [{ "/patterns/visualizations": 3 }, { "/patterns/overlay": 1 }], - "radio": [{ "/patterns/overlay": 1 }], - "checkbox": [{ "/patterns/overlay": 1 }], - "dismissible": [{ "/patterns/overlay": 1 }], - "opposite": [{ "/patterns/overlay": 1 }], - "surfaces": [{ "/patterns/overlay": 1 }], - "slide": [{ "/patterns/overlay": 1 }], - "activated": [{ "/patterns/overlay": 1 }], - "sidenav": [{ "/patterns/overlay": 1 }], - "stepper": [{ "/patterns/steppers": 15 }], - "procedure": [{ "/patterns/steppers": 1 }], - "wizard": [{ "/patterns/steppers": 1 }], - "steppers": [{ "/patterns/steppers": 3 }, { "/patterns/user-auth": 1 }, { "/style/illustrations": 1 }], - "tell": [{ "/patterns/steppers": 1 }], - "wizards": [{ "/patterns/steppers": 1 }], - "procedures": [{ "/patterns/steppers": 2 }], - "editable": [{ "/patterns/steppers": 2 }, { "/community/innersourcing": 1 }], - "included": [{ "/patterns/steppers": 1 }], - "insert": [{ "/patterns/steppers": 1 }], - "emergency": [{ "/patterns/steppers": 1 }], - "shutdown": [{ "/patterns/steppers": 1 }], - "pager": [{ "/patterns/steppers": 4 }], - "simplified": [{ "/patterns/steppers": 1 }], - "solely": [{ "/patterns/steppers": 1 }], - "register": [{ "/patterns/user-auth": 5 }], - "forget": [{ "/patterns/user-auth": 1 }], - "forgot": [{ "/patterns/user-auth": 5 }], - "auth": [{ "/patterns/user-auth": 4 }], - "join": [{ "/patterns/user-auth": 6 }], - "unauthorized": [{ "/patterns/user-auth": 1 }], - "authorized": [{ "/patterns/user-auth": 3 }], - "joining": [{ "/patterns/user-auth": 6 }], - "reset": [{ "/patterns/user-auth": 4 }], - "whereas": [{ "/patterns/user-auth": 1 }], - "themselves": [{ "/patterns/user-auth": 1 }], - "self": [{ "/patterns/user-auth": 5 }], - "invite": [{ "/patterns/user-auth": 1 }], - "invitation": [{ "/patterns/user-auth": 15 }], - "restrict": [{ "/patterns/user-auth": 2 }], - "eula": [{ "/patterns/user-auth": 2 }], - "receive": [{ "/patterns/user-auth": 7 }], - "admin": [{ "/patterns/user-auth": 2 }], - "sends": [{ "/patterns/user-auth": 1 }], - "inviting": [{ "/patterns/user-auth": 1 }], - "initiated": [{ "/patterns/user-auth": 1 }], - "assure": [{ "/patterns/user-auth": 1 }], - "animations": [{ "/patterns/user-auth": 1 }, { "/style/illustrations": 1 }], - "organizations": [{ "/patterns/user-auth": 1 }], - "identifier": [{ "/patterns/user-auth": 1 }], - "sent": [{ "/patterns/user-auth": 3 }], - "joined": [{ "/patterns/user-auth": 2 }], - "forgotten": [{ "/patterns/user-auth": 2 }], - "trigger": [{ "/patterns/user-auth": 1 }], - "amazon": [{ "/patterns/user-auth": 1 }], - "apple": [{ "/patterns/user-auth": 1 }], - "microsoft": [{ "/patterns/user-auth": 1 }], - "hyperlink": [{ "/patterns/user-auth": 2 }], - "credential": [{ "/patterns/user-auth": 1 }], - "mail": [{ "/patterns/user-auth": 1 }], - "resetting": [{ "/patterns/user-auth": 1 }], - "forced": [{ "/patterns/user-auth": 1 }], - "communications": [{ "/patterns/user-auth": 2 }], - "emails": [{ "/patterns/user-auth": 2 }], - "invitations": [{ "/patterns/user-auth": 1 }], - "codes": [{ "/patterns/user-auth": 1 }], - "unsubscribe": [{ "/patterns/user-auth": 1 }], - "terminated": [{ "/patterns/user-auth": 1 }], - "expired": [{ "/patterns/user-auth": 3 }], - "sessions": [{ "/patterns/user-auth": 1 }], - "leaves": [{ "/patterns/user-auth": 1 }], - "session": [{ "/patterns/user-auth": 1 }], - "upon": [{ "/patterns/user-auth": 1 }, { "/style/themes": 1 }], - "returning": [{ "/patterns/user-auth": 1 }], - "again": [{ "/patterns/user-auth": 1 }], - "encounters": [{ "/patterns/user-auth": 1 }], - "mismatch": [{ "/patterns/user-auth": 1 }], - "temporarily": [{ "/patterns/user-auth": 1 }], - "recover": [{ "/patterns/user-auth": 1 }], - "unavailable": [{ "/patterns/user-auth": 1 }], - "expose": [{ "/patterns/user-auth": 1 }], - "exposing": [{ "/patterns/user-auth": 1 }], - "unlike": [{ "/patterns/user-auth": 1 }, { "/style/typography": 1 }], - "vulnerable": [{ "/patterns/user-auth": 1 }], - "outside": [{ "/patterns/user-auth": 1 }], - "threats": [{ "/patterns/user-auth": 1 }], - "toggles": [{ "/patterns/user-auth": 1 }], - "me": [{ "/patterns/user-auth": 1 }], - "factor": [{ "/patterns/user-auth": 3 }], - "sending": [{ "/patterns/user-auth": 1 }], - "sms": [{ "/patterns/user-auth": 1 }], - "construct": [{ "/patterns/user-auth": 1 }], - "_planned_": [{ "/patterns/user-auth": 1 }], - "visualization": [{ "/patterns/visualizations": 1 }, { "/style/color": 1 }], - "graph": [{ "/patterns/visualizations": 1 }, { "/style/illustrations": 1 }], - "highcharts": [{ "/patterns/visualizations": 3 }, { "/community/faq": 1 }], - "chartjs": [{ "/patterns/visualizations": 3 }, { "/community/faq": 1 }], - "mapbox": [{ "/patterns/visualizations": 3 }], - "visualizations": [{ "/patterns/visualizations": 4 }, { "/community/faq": 1 }], - "interested": [{ "/community/faq": 3 }, { "/patterns/visualizations": 1 }, { "/community/license": 1 }], - "raw": [{ "/patterns/visualizations": 1 }], - "charts": [{ "/patterns/visualizations": 5 }, { "/style/color": 1 }], - "graphs": [{ "/patterns/visualizations": 4 }, { "/style/color": 1 }], - "maps": [{ "/patterns/visualizations": 5 }], - "numerous": [{ "/patterns/visualizations": 1 }], - "series": [{ "/patterns/visualizations": 1 }], - "pie": [{ "/patterns/visualizations": 1 }], - "embedded": [{ "/patterns/visualizations": 1 }], - "interfering": [{ "/patterns/visualizations": 1 }], - "spatial": [{ "/patterns/visualizations": 1 }], - "geographical": [{ "/patterns/visualizations": 1 }], - "plot": [{ "/patterns/visualizations": 1 }], - "sets": [{ "/patterns/visualizations": 1 }, { "/style/color": 1 }, { "/style/typography": 1 }], - "facilities": [{ "/patterns/visualizations": 1 }], - "responsible": [{ "/patterns/visualizations": 1 }], - "scrolling": [{ "/patterns/visualizations": 1 }], - "panning": [{ "/patterns/visualizations": 1 }], - "zooming": [{ "/patterns/visualizations": 1 }], - "pricing": [{ "/patterns/visualizations": 2 }], - "palettes": [{ "/style/color": 1 }, { "/style/illustrations": 1 }, { "/style/themes": 1 }], - "weighted": [{ "/style/color": 1 }], - "versatile": [{ "/style/color": 1 }], - "solving": [{ "/style/color": 1 }], - "divided": [{ "/style/color": 1 }], - "stick": [{ "/style/color": 1 }, { "/community/faq": 1 }], - "000000": [{ "/style/color": 1 }], - "instances": [{ "/style/color": 1 }], - "oled": [{ "/style/color": 1 }], - "warnings": [{ "/style/color": 2 }], - "successes": [{ "/style/color": 1 }], - "energized": [{ "/style/color": 1 }], - "_never_": [{ "/style/color": 2 }], - "reinforce": [{ "/style/color": 1 }], - "bell": [{ "/style/color": 2 }], - "paired": [{ "/style/color": 1 }], - "border": [{ "/style/color": 1 }], - "stripe": [{ "/style/color": 1 }], - "solidify": [{ "/style/color": 1 }], - "association": [{ "/style/color": 1 }], - "glance": [{ "/style/color": 1 }], - "denote": [{ "/style/color": 3 }], - "loss": [{ "/style/color": 1 }, { "/community/license": 1 }], - "communication": [{ "/style/color": 1 }], - "alerts": [{ "/style/color": 3 }], - "attention": [{ "/style/color": 2 }, { "/style/illustrations": 1 }, { "/style/typography": 1 }], - "gold": [{ "/style/color": 2 }], - "tripped": [{ "/style/color": 1 }], - "electrical": [{ "/style/color": 1 }], - "confused": [{ "/style/color": 1 }], - "statuses": [{ "/style/color": 1 }], - "purple": [{ "/style/color": 2 }], - "disarmed": [{ "/style/color": 1 }], - "charting": [{ "/community/faq": 4 }, { "/style/color": 1 }], - "graphing": [{ "/style/color": 1 }], - "teal": [{ "/style/color": 1 }], - "citron": [{ "/style/color": 1 }], - "pine": [{ "/style/color": 1 }], - "emerald": [{ "/style/color": 1 }], - "wine": [{ "/style/color": 1 }], - "crimson": [{ "/style/color": 1 }], - "sunset": [{ "/style/color": 1 }], - "rust": [{ "/style/color": 1 }], - "navy": [{ "/style/color": 1 }], - "sky": [{ "/style/color": 1 }], - "sage": [{ "/style/color": 1 }], - "toad": [{ "/style/color": 1 }], - "butter": [{ "/style/color": 1 }], - "goldenrod": [{ "/style/color": 1 }], - "trophy": [{ "/style/color": 1 }], - "health": [{ "/style/iconography": 1 }], - "metrics": [{ "/style/iconography": 1 }], - "adjusted": [{ "/style/iconography": 1 }], - "programmatically": [{ "/style/iconography": 1 }], - "fill": [{ "/style/iconography": 1 }, { "/community/innersourcing": 1 }, { "/community/features": 1 }], - "properties": [{ "/style/iconography": 1 }, { "/style/typography": 1 }], - "suitable": [{ "/style/iconography": 1 }], - "ux": [{ "/style/iconography": 1 }], - "hours": [{ "/style/iconography": 1 }], - "symbols": [{ "/style/iconography": 1 }], - "house": [{ "/style/iconography": 1 }], - "requests": [{ "/style/iconography": 1 }, { "/community/features": 1 }, { "/community/faq": 1 }], - "early": [{ "/style/iconography": 1 }], - "illustration": [{ "/style/illustrations": 4 }], - "onboarding": [{ "/style/illustrations": 3 }], - "mostly": [{ "/style/illustrations": 1 }, { "/style/themes": 1 }], - "supposed": [{ "/style/illustrations": 1 }], - "artwork": [{ "/style/illustrations": 2 }], - "icons8": [{ "/style/illustrations": 1 }], - "adobe": [{ "/style/illustrations": 2 }, { "/community/faq": 1 }], - "humaaans": [{ "/style/illustrations": 1 }], - "plugin": [{ "/style/illustrations": 1 }, { "/resources/designer": 1 }], - "finalizing": [{ "/style/illustrations": 1 }], - "illustrator": [{ "/style/illustrations": 1 }, { "/community/faq": 1 }], - "matter": [{ "/style/illustrations": 1 }], - "ground": [{ "/style/illustrations": 1 }], - "projection": [{ "/style/illustrations": 1 }], - "filling": [{ "/style/illustrations": 1 }], - "leave": [{ "/style/illustrations": 2 }], - "wider": [{ "/style/illustrations": 1 }], - "drawing": [{ "/style/illustrations": 1 }], - "abstract": [{ "/style/illustrations": 1 }], - "artistic": [{ "/style/illustrations": 1 }], - "inform": [{ "/style/illustrations": 1 }], - "decorate": [{ "/style/illustrations": 1 }], - "wherever": [{ "/style/illustrations": 1 }], - "ineffective": [{ "/style/illustrations": 1 }], - "words": [{ "/style/illustrations": 1 }], - "shade": [{ "/style/illustrations": 1 }, { "/style/themes": 1 }], - "foreground": [{ "/style/illustrations": 1 }], - "blend": [{ "/style/illustrations": 2 }], - "stand": [{ "/style/illustrations": 1 }], - "strokes": [{ "/style/illustrations": 3 }], - "vice": [{ "/style/illustrations": 1 }], - "versa": [{ "/style/illustrations": 1 }], - "reused": [{ "/style/illustrations": 1 }], - "infographics": [{ "/style/illustrations": 1 }], - "simulate": [{ "/style/illustrations": 2 }], - "colorblind": [{ "/style/illustrations": 2 }], - "conditions": [{ "/community/license": 3 }, { "/style/illustrations": 2 }, { "/style/themes": 1 }], - "schemes": [{ "/style/illustrations": 1 }], - "intact": [{ "/style/illustrations": 1 }], - "coblis": [{ "/style/illustrations": 1 }], - "animation": [{ "/style/illustrations": 2 }], - "conveyed": [{ "/style/illustrations": 1 }], - "instructional": [{ "/style/illustrations": 1 }], - "lottie": [{ "/style/illustrations": 1 }], - "outline": [{ "/style/illustrations": 2 }], - "stroke": [{ "/style/illustrations": 2 }], - "convert": [{ "/style/illustrations": 1 }], - "layers": [{ "/style/illustrations": 1 }], - "semantically": [{ "/style/illustrations": 1 }], - "animating": [{ "/style/illustrations": 1 }], - "minify": [{ "/style/illustrations": 1 }], - "eliminate": [{ "/style/illustrations": 1 }, { "/community/innersourcing": 1 }], - "naming": [{ "/style/illustrations": 1 }], - "decimal": [{ "/style/illustrations": 2 }], - "precision": [{ "/style/illustrations": 2 }], - "presentation": [{ "/style/illustrations": 1 }], - "enabled": [{ "/style/illustrations": 1 }], - "higher": [{ "/style/illustrations": 2 }], - "smooth": [{ "/style/illustrations": 1 }], - "off": [{ "/style/typography": 2 }], - "licensed": [{ "/style/typography": 1 }, { "/community/license": 1 }], - "character": [{ "/style/typography": 2 }], - "iso": [{ "/style/typography": 1 }], - "latin": [{ "/style/typography": 2 }], - "ce": [{ "/style/typography": 1 }], - "greek": [{ "/style/typography": 1 }], - "cyrillic": [{ "/style/typography": 1 }], - "print": [{ "/style/typography": 1 }], - "characteristics": [{ "/style/typography": 1 }], - "letter": [{ "/style/typography": 1 }], - "grow": [{ "/style/typography": 1 }], - "consideration": [{ "/style/typography": 1 }], - "unrealistic": [{ "/style/typography": 1 }], - "presume": [{ "/style/typography": 1 }], - "_every_": [{ "/style/typography": 1 }], - "slight": [{ "/style/typography": 1 }], - "places": [{ "/style/typography": 1 }, { "/style/themes": 1 }], - "worry": [{ "/style/typography": 1 }], - "adjusting": [{ "/style/typography": 1 }], - "body1": [{ "/style/typography": 2 }], - "favorite": [{ "/style/typography": 1 }], - "18dp": [{ "/style/typography": 1 }], - "h6": [{ "/style/typography": 1 }], - "14dp": [{ "/style/typography": 1 }], - "benefits": [{ "/style/themes": 1 }], - "bluedark": [{ "/style/themes": 1 }], - "inherit": [{ "/style/themes": 1 }], - "typographies": [{ "/style/themes": 1 }], - "explore": [{ "/style/themes": 2 }], - "high": [{ "/style/themes": 2 }], - "representative": [{ "/style/themes": 1 }], - "effects": [{ "/style/themes": 1 }], - "vibrance": [{ "/style/themes": 1 }], - "suited": [{ "/style/themes": 1 }], - "everyday": [{ "/style/themes": 1 }], - "monitor": [{ "/style/themes": 1 }], - "facility": [{ "/style/themes": 1 }], - "inspection": [{ "/style/themes": 1 }], - "iconic": [{ "/style/themes": 1 }], - "007bc1": [{ "/style/themes": 1 }], - "notably": [{ "/style/themes": 1 }], - "applied": [{ "/style/themes": 3 }], - "controls": [{ "/style/themes": 1 }], - "although": [{ "/style/themes": 1 }], - "surface": [{ "/style/themes": 1 }], - "shaded": [{ "/style/themes": 1 }], - "utilizes": [{ "/style/themes": 1 }], - "grays": [{ "/style/themes": 1 }], - "blacks": [{ "/style/themes": 1 }], - "reserved": [{ "/style/themes": 1 }, { "/community/license": 1 }], - "stylesheets": [{ "/style/themes": 1 }], - "imported": [{ "/style/themes": 1 }], - "objects": [{ "/style/themes": 1 }], - "consumed": [{ "/style/themes": 1 }], - "jss": [{ "/style/themes": 1 }], - "readme": [{ "/style/themes": 1 }], - "individually": [{ "/style/themes": 1 }, { "/community/faq": 1 }], - "alter": [{ "/style/themes": 1 }], - "proofing": [{ "/style/themes": 1 }], - "bsd": [{ "/community/license": 3 }], - "clause": [{ "/community/license": 2 }], - "agreement": [{ "/community/license": 1 }], - "comment": [{ "/community/license": 1 }], - "vacuum": [{ "/community/license": 1 }], - "simplify": [{ "/community/license": 1 }], - "delivery": [{ "/community/license": 1 }, { "/community/faq": 1 }], - "publishing": [{ "/community/license": 1 }], - "continuously": [{ "/community/license": 1 }, { "/community/faq": 1 }], - "deliver": [{ "/community/license": 1 }], - "improvements": [{ "/community/license": 1 }], - "seamlessly": [{ "/community/license": 1 }], - "innersource": [{ "/community/innersourcing": 2 }, { "/community/license": 1 }], - "copyright": [{ "/community/license": 6 }], - "rights": [{ "/community/license": 1 }], - "redistribution": [{ "/community/license": 1 }], - "modification": [{ "/community/license": 1 }], - "permitted": [{ "/community/license": 1 }], - "met": [{ "/community/license": 1 }], - "redistributions": [{ "/community/license": 2 }], - "retain": [{ "/community/license": 1 }], - "disclaimer": [{ "/community/license": 2 }], - "reproduce": [{ "/community/license": 1 }, { "/community/bugs": 1 }], - "materials": [ - { "/community/innersourcing": 2 }, - { "/community/license": 1 }, - { "/community/faq": 1 }, - { "/community/our-team": 1 } - ], - "neither": [{ "/community/license": 1 }], - "holder": [{ "/community/license": 2 }], - "nor": [{ "/community/license": 1 }], - "contributors": [{ "/community/license": 3 }], - "endorse": [{ "/community/license": 1 }], - "permission": [{ "/community/license": 1 }], - "holders": [{ "/community/license": 1 }], - "implied": [{ "/community/license": 2 }], - "warranties": [{ "/community/license": 2 }], - "merchantability": [{ "/community/license": 1 }], - "fitness": [{ "/community/license": 1 }], - "disclaimed": [{ "/community/license": 1 }], - "event": [{ "/community/license": 1 }, { "/community/faq": 1 }], - "shall": [{ "/community/license": 1 }], - "liable": [{ "/community/license": 1 }], - "indirect": [{ "/community/license": 1 }], - "incidental": [{ "/community/license": 1 }], - "exemplary": [{ "/community/license": 1 }], - "consequential": [{ "/community/license": 1 }], - "damages": [{ "/community/license": 1 }], - "procurement": [{ "/community/license": 1 }], - "substitute": [{ "/community/license": 1 }], - "goods": [{ "/community/license": 1 }], - "profits": [{ "/community/license": 1 }], - "interruption": [{ "/community/license": 1 }], - "theory": [{ "/community/license": 1 }], - "liability": [{ "/community/license": 2 }], - "contract": [{ "/community/license": 1 }], - "tort": [{ "/community/license": 1 }], - "negligence": [{ "/community/license": 1 }], - "otherwise": [{ "/community/license": 1 }], - "arising": [{ "/community/license": 1 }], - "advised": [{ "/community/license": 1 }], - "possibility": [{ "/community/license": 1 }], - "damage": [{ "/community/license": 1 }], - "innersourcing": [{ "/community/innersourcing": 3 }, { "/community/faq": 3 }, { "/community/features": 1 }], - "duplicate": [{ "/community/innersourcing": 1 }], - "benefit": [{ "/community/innersourcing": 1 }], - "love": [{ "/community/faq": 2 }, { "/community/innersourcing": 1 }], - "hear": [{ "/community/innersourcing": 2 }], - "pull": [{ "/community/innersourcing": 1 }, { "/community/faq": 1 }], - "contribution": [{ "/community/innersourcing": 1 }], - "runnable": [{ "/community/innersourcing": 1 }], - "sandbox": [{ "/community/innersourcing": 1 }], - "snippets": [{ "/community/innersourcing": 1 }], - "evaluate": [{ "/community/innersourcing": 4 }], - "proposed": [{ "/community/innersourcing": 2 }], - "hanging": [{ "/community/innersourcing": 1 }], - "fruit": [{ "/community/innersourcing": 1 }], - "conclusion": [{ "/community/innersourcing": 1 }], - "forward": [{ "/community/innersourcing": 1 }, { "/community/contactus": 1 }], - "conformity": [{ "/community/innersourcing": 1 }], - "aligns": [{ "/community/innersourcing": 1 }], - "questions": [{ "/community/faq": 3 }, { "/community/contactus": 2 }, { "/community/innersourcing": 1 }], - "discuss": [{ "/community/innersourcing": 1 }], - "iteration": [{ "/community/innersourcing": 1 }, { "/community/our-team": 1 }], - "brought": [{ "/community/innersourcing": 1 }], - "availability": [{ "/community/innersourcing": 1 }], - "timeframe": [{ "/community/innersourcing": 1 }], - "scheduled": [{ "/community/innersourcing": 1 }], - "quarterly": [{ "/community/innersourcing": 1 }, { "/community/faq": 1 }], - "releases": [{ "/community/innersourcing": 1 }], - "roadmap": [{ "/community/innersourcing": 1 }, { "/community/faq": 1 }], - "alpha": [{ "/community/innersourcing": 1 }], - "beta": [{ "/community/innersourcing": 1 }], - "encountering": [{ "/community/bugs": 1 }], - "cuts": [{ "/community/bugs": 1 }], - "nobody": [{ "/community/bugs": 1 }], - "perfect": [{ "/community/bugs": 1 }], - "issue": [{ "/community/bugs": 4 }, { "/community/features": 1 }, { "/community/faq": 1 }], - "let": [{ "/community/bugs": 1 }], - "bug": [{ "/community/bugs": 4 }, { "/community/faq": 1 }], - "w": [{ "/community/bugs": 1 }], - "report": [{ "/community/bugs": 1 }, { "/community/faq": 1 }], - "tickets": [{ "/community/bugs": 1 }], - "fork": [{ "/community/bugs": 1 }, { "/community/features": 1 }], - "repository": [{ "/community/bugs": 1 }, { "/community/features": 1 }], - "question": [{ "/community/faq": 2 }], - "answers": [{ "/community/faq": 1 }], - "answered": [{ "/community/faq": 1 }], - "contacting": [{ "/community/faq": 1 }], - "yes": [{ "/community/faq": 2 }], - "whats": [{ "/community/faq": 1 }], - "whys": [{ "/community/faq": 1 }], - "schedule": [{ "/community/faq": 1 }], - "operates": [{ "/community/faq": 1 }], - "continuous": [{ "/community/faq": 1 }], - "planned": [{ "/community/faq": 1 }], - "basis": [{ "/community/faq": 2 }], - "towards": [{ "/community/faq": 1 }], - "quarter": [{ "/community/faq": 3 }], - "hold": [{ "/community/faq": 1 }], - "announcement": [{ "/community/faq": 1 }], - "were": [{ "/community/faq": 1 }, { "/community/our-team": 1 }], - "answer": [{ "/community/faq": 1 }], - "attend": [{ "/community/faq": 1 }], - "announcements": [{ "/community/faq": 1 }], - "mailing": [{ "/community/faq": 1 }], - "track": [{ "/community/faq": 1 }], - "weeks": [{ "/community/faq": 1 }], - "vuejs": [{ "/community/faq": 1 }], - "wpf": [{ "/community/faq": 1 }], - "flutter": [{ "/community/faq": 1 }], - "tried": [{ "/community/faq": 1 }], - "meaningful": [{ "/community/faq": 1 }], - "ongoing": [{ "/community/faq": 1 }], - "staffed": [{ "/community/faq": 1 }], - "integrating": [{ "/community/faq": 1 }], - "_____": [{ "/community/faq": 3 }], - "browsed": [{ "/community/faq": 1 }], - "companies": [{ "/community/faq": 1 }], - "solutions": [{ "/community/faq": 2 }], - "d3": [{ "/community/faq": 1 }], - "genuine": [{ "/community/faq": 1 }], - "standalone": [{ "/community/faq": 1 }], - "electron": [{ "/community/faq": 1 }], - "installation": [{ "/community/faq": 1 }], - "awesome": [{ "/community/faq": 2 }], - "fixes": [{ "/community/faq": 1 }], - "happy": [{ "/community/faq": 2 }], - "comments": [{ "/community/faq": 1 }], - "standardized": [{ "/community/faq": 2 }], - "sticker": [{ "/community/faq": 2 }], - "array": [{ "/community/faq": 1 }], - "kick": [{ "/community/faq": 1 }], - "sketch": [{ "/community/faq": 1 }], - "prioritize": [{ "/community/faq": 1 }], - "interest": [{ "/community/faq": 1 }], - "expressed": [{ "/community/faq": 1 }], - "demo": [{ "/community/faq": 1 }], - "seeing": [{ "/community/faq": 1 }], - "past": [{ "/community/faq": 1 }], - "creative": [{ "/community/faq": 1 }], - "meant": [{ "/community/faq": 1 }], - "box": [{ "/community/faq": 1 }], - "fair": [{ "/community/faq": 1 }], - "game": [{ "/community/faq": 1 }], - "says": [{ "/community/faq": 1 }], - "achievable": [{ "/community/faq": 1 }], - "valuable": [{ "/community/faq": 1 }], - "discussion": [{ "/community/faq": 1 }], - "history": [{ "/community/our-team": 2 }], - "member": [{ "/community/our-team": 1 }], - "recruit": [{ "/community/our-team": 1 }], - "career": [{ "/community/our-team": 1 }], - "seeds": [{ "/community/our-team": 1 }], - "sown": [{ "/community/our-team": 1 }], - "power": [{ "/community/our-team": 2 }], - "xpert": [{ "/community/our-team": 2 }], - "insight": [{ "/community/our-team": 2 }], - "gateway": [{ "/community/our-team": 1 }], - "exposed": [{ "/community/our-team": 1 }], - "polymer": [{ "/community/our-team": 2 }], - "summer": [{ "/community/our-team": 1 }], - "difficulties": [{ "/community/our-team": 1 }], - "led": [{ "/community/our-team": 1 }], - "thinking": [{ "/community/our-team": 1 }], - "rethink": [{ "/community/our-team": 1 }], - "conducted": [{ "/community/our-team": 1 }], - "interviews": [{ "/community/our-team": 1 }], - "wanted": [{ "/community/our-team": 1 }], - "evaluated": [{ "/community/our-team": 1 }], - "february": [{ "/community/our-team": 1 }], - "launches": [{ "/community/our-team": 1 }], - "september": [{ "/community/our-team": 1 }], - "ramped": [{ "/community/our-team": 1 }], - "began": [{ "/community/our-team": 1 }], - "awards": [{ "/community/our-team": 1 }], - "transformation": [{ "/community/our-team": 2 }], - "enterprise": [{ "/community/our-team": 1 }], - "evolving": [{ "/community/contactus": 1 }], - "grows": [{ "/community/contactus": 1 }], - "hesitate": [{ "/community/contactus": 1 }], - "regarding": [{ "/community/contactus": 1 }], - "com": [{ "/community/contactus": 1 }], - "inquiries": [{ "/community/contactus": 1 }], - "day": [{ "/community/contactus": 1 }], - "hearing": [{ "/community/contactus": 1 }], - "listed": [{ "/resources/designer": 1 }], - "eaton_comunity": [{ "/resources/designer": 1 }], - "duplicated": [{ "/resources/designer": 1 }], - "draft": [{ "/resources/designer": 1 }], - "utility": [{ "/resources/designer": 1 }] - }, - "keyword": { - "overview": [{ "/overview": 1 }], - "Brightlayer": [{ "/overview": 1 }], - "UI": [{ "/overview": 1 }], - "design": [ - { "/overview": 1 }, - { "/design/intro": 1 }, - { "/design/anatomy": 1 }, - { "/design/accessibility": 1 }, - { "/design/websites": 1 }, - { "/design/project-identity": 1 }, - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/patterns/visualizations": 1 }, - { "/style/color": 1 }, - { "/style/iconography": 1 }, - { "/style/illustrations": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 }, - { "/resources/designer": 1 } - ], - "development": [{ "/overview": 1 }], - "introduction": [{ "/overview": 1 }, { "/get-started/web": 1 }, { "/development/frameworks-web/intro": 1 }], - "web": [ - { "/get-started/new-project": 1 }, - { "/get-started/web": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/design/websites": 1 } - ], - "mobile": [ - { "/get-started/new-project": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "new": [{ "/get-started/new-project": 1 }, { "/development/cli": 1 }], - "project": [{ "/get-started/new-project": 1 }, { "/development/cli": 1 }], - "compare": [ - { "/get-started/new-project": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 } - ], - "comparison": [ - { "/get-started/new-project": 1 }, - { "/get-started/mobile": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-mobile/intro": 1 } - ], - "application": [{ "/get-started/web": 1 }, { "/get-started/mobile": 1 }, { "/design/websites": 1 }], - "framework": [ - { "/get-started/web": 1 }, - { "/development/frameworks-web/intro": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "hybrid": [ - { "/get-started/mobile": 1 }, - { "/development/frameworks-mobile/intro": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "native": [{ "/get-started/mobile": 1 }, { "/development/frameworks-mobile/react-native": 1 }], - "developer": [{ "/development/environment": 1 }], - "develop": [{ "/development/environment": 1 }], - "environment": [{ "/development/environment": 1 }, { "/design/intro": 1 }], - "guide": [ - { "/development/environment": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 } - ], - "tutorial": [ - { "/development/environment": 1 }, - { "/development/frameworks-web/angular": 1 }, - { "/development/frameworks-web/react": 1 }, - { "/development/frameworks-mobile/ionic": 1 }, - { "/development/frameworks-mobile/react-native": 1 }, - { "/design/intro": 1 }, - { "/design/project-identity": 1 } - ], - "cli": [{ "/development/cli": 1 }], - "command": [{ "/development/cli": 1 }], - "line": [{ "/development/cli": 1 }], - "interface": [{ "/development/cli": 1 }], - "start": [{ "/development/cli": 1 }], - "angular": [{ "/development/frameworks-web/angular": 1 }], - "react": [{ "/development/frameworks-web/react": 1 }, { "/development/frameworks-mobile/react-native": 1 }], - "ionic": [{ "/development/frameworks-mobile/ionic": 1 }], - "testing": [{ "/development/testing": 1 }], - "test": [{ "/development/testing": 1 }], - "unit": [{ "/development/testing": 1 }], - "e2e": [{ "/development/testing": 1 }], - "tdd": [{ "/development/testing": 1 }], - "bdd": [{ "/development/testing": 1 }], - "integration": [{ "/development/testing": 1 }], - "cypress": [{ "/development/testing": 1 }], - "anatomy": [{ "/design/anatomy": 1 }], - "components": [{ "/design/anatomy": 1 }], - "pages": [{ "/design/anatomy": 1 }], - "patterns": [{ "/design/anatomy": 1 }], - "workflows": [{ "/design/anatomy": 1 }], - "atomic": [{ "/design/anatomy": 1 }], - "accessibility": [{ "/design/accessibility": 1 }], - "styles": [{ "/design/accessibility": 1 }], - "compliance": [{ "/design/accessibility": 1 }], - "w3c": [{ "/design/accessibility": 1 }], - "website": [{ "/design/websites": 1 }], - "app": [{ "/design/websites": 1 }], - "marketing": [{ "/design/websites": 1 }], - "branding": [{ "/design/project-identity": 1 }, { "/style/color": 1 }], - "brand": [{ "/design/project-identity": 1 }], - "identity": [{ "/design/project-identity": 1 }], - "flexible": [{ "/design/project-identity": 1 }], - "flex": [{ "/design/project-identity": 1 }], - "pattern": [ - { "/patterns/account-menu": 1 }, - { "/patterns/appbar": 1 }, - { "/patterns/empty-states": 1 }, - { "/patterns/forms": 1 }, - { "/patterns/internationalization": 1 }, - { "/patterns/lists": 1 }, - { "/patterns/loading": 1 }, - { "/patterns/navigation": 1 }, - { "/patterns/overlay": 1 }, - { "/patterns/steppers": 1 }, - { "/patterns/user-auth": 1 }, - { "/patterns/visualizations": 1 } - ], - "user": [{ "/patterns/account-menu": 1 }], - "account": [{ "/patterns/account-menu": 1 }, { "/patterns/user-auth": 1 }], - "details": [{ "/patterns/account-menu": 1 }], - "settings": [{ "/patterns/account-menu": 1 }], - "menu": [{ "/patterns/account-menu": 1 }, { "/patterns/navigation": 1 }], - "avatar": [{ "/patterns/account-menu": 1 }], - "profile": [{ "/patterns/account-menu": 1 }], - "appbar": [{ "/patterns/appbar": 1 }], - "search": [{ "/patterns/appbar": 1 }], - "collapse": [{ "/patterns/appbar": 1 }], - "collapsible": [{ "/patterns/appbar": 1 }], - "extend": [{ "/patterns/appbar": 1 }], - "prominent": [{ "/patterns/appbar": 1 }], - "toolbar": [{ "/patterns/appbar": 1 }], - "banner": [{ "/patterns/appbar": 1 }], - "header": [{ "/patterns/appbar": 1 }], - "empty": [{ "/patterns/empty-states": 1 }], - "state": [{ "/patterns/empty-states": 1 }], - "placeholder": [{ "/patterns/empty-states": 1 }], - "form": [{ "/patterns/forms": 1 }], - "verification": [{ "/patterns/forms": 1 }], - "validation": [{ "/patterns/forms": 1 }], - "error": [{ "/patterns/forms": 1 }], - "internationalization": [{ "/patterns/internationalization": 1 }], - "i18n": [{ "/patterns/internationalization": 1 }], - "internationalisation": [{ "/patterns/internationalization": 1 }], - "language": [{ "/patterns/internationalization": 1 }], - "translate": [{ "/patterns/internationalization": 1 }], - "translation": [{ "/patterns/internationalization": 1 }], - "localization": [{ "/patterns/internationalization": 1 }], - "l10n": [{ "/patterns/internationalization": 1 }], - "rtl": [{ "/patterns/internationalization": 1 }], - "localisation": [{ "/patterns/internationalization": 1 }], - "globalization": [{ "/patterns/internationalization": 1 }], - "globalize": [{ "/patterns/internationalization": 1 }], - "globalisation": [{ "/patterns/internationalization": 1 }], - "globalise": [{ "/patterns/internationalization": 1 }], - "list": [{ "/patterns/lists": 1 }], - "status": [{ "/patterns/lists": 1 }], - "sort": [{ "/patterns/lists": 1 }], - "table": [{ "/patterns/lists": 1 }], - "drag": [{ "/patterns/lists": 1 }], - "drop": [{ "/patterns/lists": 1 }], - "action": [{ "/patterns/lists": 1 }], - "data": [{ "/patterns/lists": 1 }], - "loading": [{ "/patterns/loading": 1 }], - "asynchronous": [{ "/patterns/loading": 1 }], - "api": [{ "/patterns/loading": 1 }], - "refresh": [{ "/patterns/loading": 1 }], - "navigation": [{ "/patterns/navigation": 1 }], - "drawer": [{ "/patterns/navigation": 1 }], - "tab": [{ "/patterns/navigation": 1 }], - "tabs": [{ "/patterns/navigation": 1 }], - "navigate": [{ "/patterns/navigation": 1 }], - "nav": [{ "/patterns/navigation": 1 }], - "overlay": [{ "/patterns/overlay": 1 }], - "modal": [{ "/patterns/overlay": 1 }], - "sidebar": [{ "/patterns/overlay": 1 }], - "popup": [{ "/patterns/overlay": 1 }], - "dialog": [{ "/patterns/overlay": 1 }], - "side": [{ "/patterns/overlay": 1 }], - "sheet": [{ "/patterns/overlay": 1 }], - "stepper": [{ "/patterns/steppers": 1 }], - "procedure": [{ "/patterns/steppers": 1 }], - "wizard": [{ "/patterns/steppers": 1 }], - "login": [{ "/patterns/user-auth": 1 }], - "registration": [{ "/patterns/user-auth": 1 }], - "register": [{ "/patterns/user-auth": 1 }], - "password": [{ "/patterns/user-auth": 1 }], - "forget": [{ "/patterns/user-auth": 1 }], - "forgot": [{ "/patterns/user-auth": 1 }], - "authentication": [{ "/patterns/user-auth": 1 }], - "auth": [{ "/patterns/user-auth": 1 }], - "join": [{ "/patterns/user-auth": 1 }], - "visualization": [{ "/patterns/visualizations": 1 }], - "map": [{ "/patterns/visualizations": 1 }], - "chart": [{ "/patterns/visualizations": 1 }], - "graph": [{ "/patterns/visualizations": 1 }, { "/style/illustrations": 1 }], - "highcharts": [{ "/patterns/visualizations": 1 }], - "chartjs": [{ "/patterns/visualizations": 1 }], - "mapbox": [{ "/patterns/visualizations": 1 }], - "style": [ - { "/style/color": 1 }, - { "/style/iconography": 1 }, - { "/style/typography": 1 }, - { "/style/themes": 1 } - ], - "color": [{ "/style/color": 1 }], - "palette": [{ "/style/color": 1 }], - "icons": [{ "/style/iconography": 1 }], - "progress": [{ "/style/iconography": 1 }], - "illustration": [{ "/style/illustrations": 1 }], - "onboarding": [{ "/style/illustrations": 1 }], - "typography": [{ "/style/typography": 1 }], - "text": [{ "/style/typography": 1 }], - "theme": [{ "/style/themes": 1 }], - "light": [{ "/style/themes": 1 }], - "dark": [{ "/style/themes": 1 }], - "mode": [{ "/style/themes": 1 }], - "license": [{ "/community/license": 1 }], - "open": [{ "/community/license": 1 }], - "source": [{ "/community/license": 1 }], - "bsd": [{ "/community/license": 1 }], - "sharing": [{ "/community/innersourcing": 1 }], - "innersourcing": [{ "/community/innersourcing": 1 }], - "contribute": [{ "/community/innersourcing": 1 }], - "bugs": [{ "/community/bugs": 1 }], - "request": [{ "/community/features": 1 }], - "feature": [{ "/community/features": 1 }], - "faq": [{ "/community/faq": 1 }], - "question": [{ "/community/faq": 1 }], - "answers": [{ "/community/faq": 1 }], - "about": [{ "/community/our-team": 1 }], - "history": [{ "/community/our-team": 1 }], - "team": [{ "/community/our-team": 1 }], - "member": [{ "/community/our-team": 1 }], - "recruit": [{ "/community/our-team": 1 }], - "job": [{ "/community/our-team": 1 }], - "career": [{ "/community/our-team": 1 }], - "contact": [{ "/community/contactus": 1 }], - "email": [{ "/community/contactus": 1 }], - "feedback": [{ "/community/contactus": 1 }], - "questions": [{ "/community/contactus": 1 }], - "support": [{ "/community/contactus": 1 }], - "help": [{ "/community/contactus": 1 }], - "resources": [{ "/resources/designer": 1 }] - } -} +{"title":{"brightlayer":[{"":1},{"/overview":1},{"/development/cli":1}],"ui":[{"":1},{"/overview":1},{"/development/cli":1}],"powering":[{"":1}],"teams":[{"":1}],"to":[{"":1},{"/get-started/new-project":1}],"make":[{"":1}],"what":[{"":1},{"/overview":1}],"matters":[{"":1}],"is":[{"/overview":1}],"where":[{"/get-started/new-project":1}],"begin":[{"/get-started/new-project":1}],"web":[{"/get-started/web":1}],"apps":[{"/get-started/web":1},{"/get-started/mobile":1}],"mobile":[{"/get-started/mobile":1}],"environment":[{"/development/environment":1}],"setup":[{"/development/environment":1}],"cli":[{"/development/cli":1}],"introduction":[{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/design/intro":1}],"angular":[{"/development/frameworks-web/angular":1}],"guide":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/style":1}],"react":[{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1}],"ionic":[{"/development/frameworks-mobile/ionic":1}],"native":[{"/development/frameworks-mobile/react-native":1}],"testing":[{"/development/testing":1}],"design":[{"/design/anatomy":1},{"/patterns":1}],"system":[{"/design/anatomy":1}],"anatomy":[{"/design/anatomy":1}],"accessibility":[{"/design/accessibility":1}],"websites":[{"/design/websites":1}],"project":[{"/design/project-identity":1}],"identity":[{"/design/project-identity":1}],"patterns":[{"/patterns":1}],"account":[{"/patterns/account-menu":1}],"menu":[{"/patterns/account-menu":1}],"app":[{"/patterns/appbar":1}],"bars":[{"/patterns/appbar":1}],"empty":[{"/patterns/empty-states":1}],"states":[{"/patterns/empty-states":1}],"forms":[{"/patterns/forms":1}],"and":[{"/patterns/forms":1}],"validation":[{"/patterns/forms":1}],"internationalization":[{"/patterns/internationalization":1}],"lists":[{"/patterns/lists":1}],"loading":[{"/patterns/loading":1}],"waiting":[{"/patterns/loading":1}],"navigation":[{"/patterns/navigation":1}],"overlays":[{"/patterns/overlay":1}],"tables":[{"/patterns/tables":1}],"steppers":[{"/patterns/steppers":1}],"user":[{"/patterns/user-auth":1}],"authentication":[{"/patterns/user-auth":1}],"visualizations":[{"/patterns/visualizations":1}],"style":[{"/style":1}],"color":[{"/style/color":1}],"palette":[{"/style/color":1}],"iconography":[{"/style/iconography":1}],"illustrations":[{"/style/illustrations":1}],"typography":[{"/style/typography":1}],"themes":[{"/style/themes":1}],"community":[{"/community":1}],"licensing":[{"/community/license":1}],"innersourcing":[{"/community/innersourcing":1}],"report":[{"/community/bugs":1}],"bugs":[{"/community/bugs":1}],"request":[{"/community/features":1}],"features":[{"/community/features":1}],"faq":[{"/community/faq":1}],"our":[{"/community/our-team":1}],"team":[{"/community/our-team":1}],"contact":[{"/community/contactus":1}],"us":[{"/community/contactus":1}],"developer":[{"/resources/developer":1}],"resources":[{"/resources/developer":1},{"/resources/designer":1}],"designer":[{"/resources/designer":1}],"roadmap":[{"/roadmap":1}],"release":[{"/release-notes":1}],"notes":[{"/release-notes":1}],"attributions":[{"/attributions":1}]},"text":{"0":[{"/development/frameworks-mobile/ionic":1},{"/design/accessibility":1},{"/style/iconography":1},{"/style/typography":1},{"/community/our-team":1}],"1":[{"/style/illustrations":2},{"/patterns/tables":1},{"/style/iconography":1},{"/style/typography":1}],"2":[{"/style/illustrations":2},{"/design/accessibility":1},{"/patterns/tables":1},{"/style/typography":1},{"/community/our-team":1}],"3":[{"/community/license":2},{"/style/illustrations":1}],"5":[{"/development/environment":1}],"6":[{"/development/environment":1}],"7":[{"/patterns/lists":1}],"9":[{"/style/illustrations":1}],"11":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1}],"15":[{"/patterns/tables":1}],"16":[{"/development/frameworks-web/react":1},{"/style/illustrations":1}],"48":[{"/style/iconography":1}],"50":[{"/design/accessibility":1},{"/design/websites":1},{"/style/illustrations":1},{"/style/themes":1}],"80":[{"/design/intro":1}],"200":[{"/style/themes":2}],"500":[{"/design/accessibility":4},{"/style/themes":3},{"/style/color":1},{"/style/illustrations":1}],"897":[{"/style/typography":1}],"900":[{"/style/illustrations":1}],"2008":[{"/design/accessibility":1}],"2011":[{"/community/our-team":1}],"2013":[{"/community/our-team":1}],"2015":[{"/community/our-team":1}],"2017":[{"/community/our-team":2}],"2018":[{"/community/our-team":2}],"2019":[{"/community/our-team":1}],"2020":[{"/community/license":1},{"/community/our-team":1}],"2021":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/community/our-team":1}],"8100":[{"/development/frameworks-mobile/ionic":1}],"keywords":[{"/overview":1},{"/get-started/new-project":1},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/environment":1},{"/development/cli":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/intro":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/patterns/visualizations":1},{"/style/color":1},{"/style/iconography":1},{"/style/illustrations":1},{"/style/typography":1},{"/style/themes":1},{"/community/license":1},{"/community/innersourcing":1},{"/community/bugs":1},{"/community/features":1},{"/community/faq":1},{"/community/our-team":1},{"/community/contactus":1},{"/resources/designer":1}],"overview":[{"/overview":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/community/license":1},{"/community/faq":1}],"brightlayer":[{"/development/frameworks-web/angular":42},{"/development/frameworks-web/react":39},{"/development/frameworks-mobile/react-native":38},{"/community/faq":33},{"/development/frameworks-mobile/ionic":26},{"/design/project-identity":18},{"/style/themes":18},{"/design/intro":14},{"/overview":13},{"/design/anatomy":13},{"/development/cli":11},{"/style/typography":8},{"/patterns/visualizations":7},{"/style/color":6},{"/style/iconography":6},{"/community/innersourcing":6},{"/community/our-team":6},{"/patterns/lists":5},{"/community/license":5},{"/design/accessibility":4},{"/design/websites":4},{"/patterns/account-menu":4},{"/community/bugs":4},{"/community/contactus":4},{"/development/frameworks-web/intro":3},{"/development/frameworks-mobile/intro":3},{"/patterns/appbar":3},{"/patterns/empty-states":3},{"/patterns/navigation":3},{"/patterns/user-auth":3},{"/get-started/web":2},{"/get-started/mobile":2},{"/development/testing":2},{"/patterns/steppers":2},{"/community/features":2},{"/development/environment":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/overlay":1},{"/style/illustrations":1},{"/resources/designer":1}],"ui":[{"/development/frameworks-web/react":54},{"/development/frameworks-web/angular":42},{"/development/frameworks-mobile/react-native":39},{"/community/faq":33},{"/development/frameworks-mobile/ionic":26},{"/style/themes":21},{"/design/project-identity":18},{"/design/intro":16},{"/design/anatomy":14},{"/overview":13},{"/development/cli":11},{"/patterns/visualizations":9},{"/style/color":9},{"/patterns/lists":8},{"/style/typography":8},{"/patterns/internationalization":7},{"/development/frameworks-web/intro":6},{"/development/frameworks-mobile/intro":6},{"/style/iconography":6},{"/community/innersourcing":6},{"/patterns/account-menu":5},{"/community/license":5},{"/community/bugs":5},{"/community/our-team":5},{"/design/accessibility":4},{"/design/websites":4},{"/patterns/appbar":4},{"/patterns/navigation":4},{"/community/contactus":4},{"/patterns/empty-states":3},{"/patterns/overlay":3},{"/patterns/steppers":3},{"/patterns/user-auth":3},{"/community/features":3},{"/get-started/web":2},{"/get-started/mobile":2},{"/development/testing":2},{"/patterns/forms":2},{"/style/illustrations":2},{"/development/environment":1},{"/patterns/loading":1},{"/patterns/tables":1},{"/resources/designer":1}],"design":[{"/design/project-identity":18},{"/design/anatomy":16},{"/design/websites":16},{"/design/intro":14},{"/overview":10},{"/community/our-team":8},{"/community/faq":7},{"/get-started/web":6},{"/style/typography":6},{"/patterns/forms":5},{"/patterns/tables":5},{"/patterns/lists":4},{"/get-started/mobile":3},{"/patterns/account-menu":3},{"/patterns/appbar":3},{"/patterns/empty-states":3},{"/patterns/steppers":3},{"/style/iconography":3},{"/style/themes":3},{"/community/innersourcing":3},{"/design/accessibility":2},{"/patterns/internationalization":2},{"/patterns/loading":2},{"/patterns/navigation":2},{"/patterns/overlay":2},{"/style/illustrations":2},{"/community/bugs":2},{"/resources/designer":2},{"/get-started/new-project":1},{"/development/frameworks-web/intro":1},{"/development/testing":1},{"/patterns/user-auth":1},{"/patterns/visualizations":1},{"/style/color":1},{"/community/features":1}],"development":[{"/development/environment":7},{"/community/faq":7},{"/overview":6},{"/get-started/mobile":5},{"/development/frameworks-mobile/react-native":5},{"/development/testing":4},{"/development/frameworks-web/intro":3},{"/development/frameworks-mobile/intro":3},{"/development/frameworks-mobile/ionic":3},{"/community/innersourcing":2},{"/patterns/internationalization":1},{"/style/themes":1},{"/community/license":1},{"/community/bugs":1},{"/community/our-team":1}],"introduction":[{"/get-started/web":2},{"/overview":1},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1}],"welcome":[{"/overview":1},{"/development/environment":1},{"/design/project-identity":1},{"/patterns/empty-states":1},{"/community/faq":1},{"/community/contactus":1}],"to":[{"/community/faq":59},{"/development/frameworks-mobile/react-native":53},{"/patterns/tables":47},{"/development/testing":42},{"/design/websites":40},{"/design/project-identity":40},{"/patterns/user-auth":38},{"/design/accessibility":32},{"/patterns/internationalization":31},{"/design/intro":29},{"/patterns/forms":28},{"/development/environment":26},{"/development/frameworks-mobile/ionic":24},{"/patterns/navigation":23},{"/development/frameworks-web/react":21},{"/patterns/lists":21},{"/patterns/loading":21},{"/get-started/new-project":20},{"/development/frameworks-web/angular":20},{"/patterns/empty-states":20},{"/style/illustrations":20},{"/patterns/appbar":19},{"/community/innersourcing":19},{"/overview":18},{"/patterns/account-menu":18},{"/development/frameworks-mobile/intro":17},{"/patterns/overlay":16},{"/style/color":16},{"/get-started/mobile":15},{"/design/anatomy":14},{"/style/typography":14},{"/style/iconography":13},{"/development/frameworks-web/intro":12},{"/get-started/web":11},{"/community/our-team":10},{"/community/license":9},{"/patterns/steppers":8},{"/patterns/visualizations":6},{"/style/themes":6},{"/community/features":5},{"/community/contactus":5},{"/community/bugs":4},{"/development/cli":3},{"/resources/designer":2}],"is":[{"/development/testing":33},{"/patterns/forms":17},{"/design/websites":14},{"/patterns/loading":14},{"/patterns/appbar":13},{"/patterns/navigation":13},{"/patterns/tables":12},{"/community/faq":11},{"/design/project-identity":10},{"/patterns/user-auth":10},{"/style/themes":10},{"/development/frameworks-mobile/react-native":9},{"/get-started/new-project":7},{"/design/intro":7},{"/patterns/account-menu":7},{"/patterns/empty-states":7},{"/patterns/internationalization":7},{"/patterns/lists":6},{"/patterns/steppers":6},{"/style/typography":6},{"/community/innersourcing":6},{"/overview":5},{"/development/environment":5},{"/development/frameworks-mobile/intro":5},{"/development/frameworks-mobile/ionic":5},{"/style/color":5},{"/get-started/mobile":4},{"/design/anatomy":4},{"/design/accessibility":4},{"/style/iconography":4},{"/get-started/web":3},{"/development/frameworks-web/intro":3},{"/patterns/visualizations":3},{"/community/license":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/community/bugs":2},{"/development/cli":1},{"/patterns/overlay":1},{"/style/illustrations":1},{"/community/contactus":1}],"complete":[{"/patterns/appbar":2},{"/overview":1},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/design/anatomy":1},{"/design/websites":1},{"/style/typography":1}],"system":[{"/design/anatomy":6},{"/design/project-identity":6},{"/design/intro":4},{"/overview":3},{"/development/testing":3},{"/community/our-team":3},{"/development/environment":2},{"/design/websites":2},{"/patterns/user-auth":2},{"/community/bugs":2},{"/community/contactus":2},{"/get-started/web":1},{"/style/iconography":1},{"/style/typography":1},{"/community/innersourcing":1}],"for":[{"/development/frameworks-mobile/react-native":28},{"/community/faq":28},{"/development/testing":22},{"/design/accessibility":22},{"/patterns/internationalization":20},{"/design/websites":19},{"/design/project-identity":17},{"/patterns/user-auth":17},{"/patterns/forms":14},{"/style/color":13},{"/development/frameworks-web/react":11},{"/development/frameworks-mobile/ionic":11},{"/design/intro":11},{"/patterns/tables":11},{"/style/themes":11},{"/development/environment":10},{"/style/illustrations":10},{"/get-started/mobile":9},{"/development/frameworks-web/angular":9},{"/patterns/appbar":9},{"/community/innersourcing":9},{"/development/frameworks-mobile/intro":8},{"/patterns/lists":8},{"/patterns/navigation":8},{"/get-started/web":6},{"/development/frameworks-web/intro":6},{"/patterns/empty-states":6},{"/patterns/overlay":6},{"/style/typography":6},{"/overview":5},{"/design/anatomy":5},{"/development/cli":4},{"/patterns/account-menu":4},{"/patterns/loading":4},{"/patterns/steppers":4},{"/community/our-team":4},{"/patterns/visualizations":3},{"/community/bugs":3},{"/style/iconography":2},{"/community/license":2},{"/community/contactus":2},{"/get-started/new-project":1}],"web":[{"/get-started/new-project":10},{"/get-started/web":9},{"/design/websites":8},{"/get-started/mobile":6},{"/design/accessibility":6},{"/development/frameworks-web/intro":4},{"/development/frameworks-mobile/ionic":4},{"/development/frameworks-web/angular":3},{"/development/frameworks-web/react":3},{"/development/frameworks-mobile/intro":3},{"/community/faq":3},{"/overview":2},{"/development/testing":2},{"/design/intro":2},{"/patterns/internationalization":2},{"/development/frameworks-mobile/react-native":1},{"/patterns/appbar":1},{"/style/typography":1},{"/community/our-team":1}],"and":[{"/development/testing":42},{"/design/intro":28},{"/patterns/tables":24},{"/design/websites":22},{"/design/project-identity":21},{"/community/faq":21},{"/development/frameworks-mobile/react-native":18},{"/design/accessibility":18},{"/patterns/internationalization":18},{"/patterns/navigation":17},{"/style/themes":16},{"/patterns/user-auth":14},{"/design/anatomy":13},{"/community/license":13},{"/community/innersourcing":13},{"/development/frameworks-web/angular":12},{"/development/frameworks-web/react":12},{"/patterns/lists":12},{"/style/color":11},{"/get-started/mobile":10},{"/patterns/forms":10},{"/style/illustrations":10},{"/overview":9},{"/development/environment":9},{"/patterns/account-menu":9},{"/patterns/overlay":9},{"/style/typography":9},{"/development/cli":8},{"/development/frameworks-mobile/intro":8},{"/development/frameworks-mobile/ionic":8},{"/patterns/appbar":7},{"/patterns/visualizations":7},{"/community/our-team":7},{"/get-started/new-project":6},{"/get-started/web":6},{"/development/frameworks-web/intro":6},{"/patterns/loading":6},{"/style/iconography":5},{"/community/bugs":5},{"/patterns/steppers":4},{"/community/contactus":4},{"/patterns/empty-states":3},{"/community/features":3},{"/resources/designer":2}],"mobile":[{"/get-started/mobile":15},{"/get-started/new-project":12},{"/patterns/tables":8},{"/design/intro":7},{"/development/frameworks-mobile/intro":6},{"/patterns/forms":6},{"/patterns/navigation":6},{"/patterns/steppers":5},{"/get-started/web":3},{"/development/frameworks-mobile/ionic":3},{"/design/websites":3},{"/patterns/account-menu":3},{"/patterns/appbar":3},{"/patterns/lists":3},{"/style/illustrations":3},{"/overview":2},{"/development/environment":2},{"/development/frameworks-mobile/react-native":2},{"/community/faq":2},{"/development/testing":1},{"/patterns/overlay":1},{"/patterns/user-auth":1},{"/style/typography":1},{"/style/themes":1},{"/community/our-team":1}],"applications":[{"/design/project-identity":8},{"/patterns/tables":7},{"/get-started/web":6},{"/patterns/internationalization":6},{"/community/faq":6},{"/get-started/new-project":5},{"/get-started/mobile":5},{"/design/websites":5},{"/development/testing":4},{"/design/accessibility":4},{"/patterns/navigation":4},{"/overview":3},{"/design/intro":3},{"/patterns/lists":3},{"/patterns/user-auth":3},{"/style/themes":3},{"/development/frameworks-mobile/react-native":2},{"/design/anatomy":2},{"/patterns/appbar":2},{"/patterns/overlay":2},{"/patterns/visualizations":2},{"/style/color":2},{"/style/typography":2},{"/community/license":2},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/patterns/account-menu":1},{"/patterns/forms":1},{"/style/illustrations":1},{"/community/innersourcing":1},{"/community/our-team":1}],"this":[{"/patterns/appbar":12},{"/development/testing":10},{"/patterns/navigation":10},{"/community/faq":10},{"/patterns/account-menu":9},{"/patterns/user-auth":9},{"/patterns/forms":8},{"/patterns/tables":8},{"/community/license":7},{"/development/frameworks-mobile/react-native":6},{"/overview":5},{"/patterns/loading":5},{"/get-started/new-project":4},{"/design/project-identity":4},{"/patterns/empty-states":4},{"/patterns/lists":4},{"/community/innersourcing":4},{"/get-started/mobile":3},{"/development/environment":3},{"/design/intro":3},{"/patterns/internationalization":3},{"/patterns/overlay":3},{"/patterns/steppers":3},{"/style/color":3},{"/style/typography":3},{"/development/frameworks-mobile/intro":2},{"/design/anatomy":2},{"/design/accessibility":2},{"/style/illustrations":2},{"/style/themes":2},{"/community/bugs":2},{"/get-started/web":1},{"/design/websites":1},{"/patterns/visualizations":1},{"/style/iconography":1}],"will":[{"/development/frameworks-mobile/react-native":13},{"/community/faq":10},{"/development/frameworks-web/angular":9},{"/development/environment":8},{"/development/frameworks-mobile/ionic":8},{"/community/innersourcing":8},{"/get-started/new-project":7},{"/development/frameworks-web/react":7},{"/development/frameworks-mobile/intro":5},{"/development/testing":5},{"/design/project-identity":5},{"/patterns/appbar":5},{"/overview":4},{"/design/intro":4},{"/patterns/loading":4},{"/style/illustrations":4},{"/development/cli":3},{"/design/websites":3},{"/patterns/empty-states":3},{"/patterns/user-auth":3},{"/patterns/account-menu":2},{"/style/color":2},{"/style/iconography":2},{"/style/typography":2},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/design/accessibility":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/community/license":1}],"help":[{"/development/testing":3},{"/design/websites":3},{"/overview":2},{"/design/intro":2},{"/design/project-identity":2},{"/patterns/internationalization":2},{"/community/faq":2},{"/development/frameworks-mobile/react-native":1},{"/patterns/loading":1},{"/patterns/tables":1},{"/style/illustrations":1},{"/community/bugs":1},{"/community/contactus":1}],"your":[{"/development/frameworks-mobile/react-native":29},{"/design/project-identity":29},{"/style/illustrations":27},{"/development/testing":23},{"/design/websites":22},{"/development/environment":21},{"/community/faq":20},{"/development/frameworks-mobile/ionic":19},{"/patterns/internationalization":16},{"/development/frameworks-mobile/intro":15},{"/development/frameworks-web/angular":14},{"/patterns/tables":14},{"/design/intro":12},{"/development/frameworks-web/react":11},{"/design/accessibility":10},{"/patterns/loading":9},{"/patterns/forms":8},{"/style/iconography":7},{"/style/typography":7},{"/patterns/account-menu":6},{"/patterns/navigation":6},{"/patterns/user-auth":6},{"/overview":4},{"/get-started/web":4},{"/get-started/mobile":4},{"/patterns/empty-states":4},{"/community/innersourcing":4},{"/development/cli":3},{"/development/frameworks-web/intro":3},{"/patterns/appbar":3},{"/community/bugs":3},{"/resources/designer":3},{"/patterns/lists":2},{"/patterns/overlay":2},{"/patterns/steppers":2},{"/style/color":2},{"/style/themes":2},{"/community/license":2},{"/community/contactus":2},{"/get-started/new-project":1},{"/community/features":1}],"team":[{"/community/faq":10},{"/community/our-team":7},{"/overview":3},{"/community/contactus":3},{"/development/frameworks-mobile/intro":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/style/iconography":1},{"/community/innersourcing":1}],"build":[{"/community/faq":6},{"/development/frameworks-mobile/ionic":4},{"/design/project-identity":4},{"/overview":3},{"/style/iconography":3},{"/get-started/new-project":2},{"/development/frameworks-mobile/react-native":2},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/frameworks-web/angular":1},{"/development/testing":1},{"/community/innersourcing":1},{"/community/our-team":1},{"/resources/designer":1}],"beautiful":[{"/overview":1}],"that":[{"/development/testing":22},{"/community/faq":22},{"/design/project-identity":17},{"/design/accessibility":11},{"/design/intro":9},{"/style/typography":8},{"/patterns/navigation":7},{"/development/frameworks-mobile/react-native":6},{"/design/anatomy":6},{"/design/websites":6},{"/patterns/forms":6},{"/patterns/internationalization":6},{"/patterns/loading":6},{"/patterns/tables":6},{"/style/illustrations":6},{"/development/environment":5},{"/overview":4},{"/get-started/mobile":4},{"/patterns/empty-states":4},{"/patterns/overlay":4},{"/patterns/steppers":4},{"/style/color":4},{"/style/iconography":4},{"/community/innersourcing":4},{"/get-started/new-project":3},{"/get-started/web":3},{"/patterns/appbar":3},{"/patterns/lists":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/ionic":2},{"/patterns/user-auth":2},{"/patterns/visualizations":2},{"/style/themes":2},{"/community/license":2},{"/development/frameworks-web/intro":1},{"/resources/designer":1}],"adhere":[{"/get-started/mobile":2},{"/overview":1},{"/design/accessibility":1},{"/style/illustrations":1}],"our":[{"/community/faq":17},{"/community/innersourcing":10},{"/style/themes":9},{"/overview":6},{"/development/frameworks-mobile/react-native":5},{"/design/intro":3},{"/design/project-identity":3},{"/community/license":3},{"/get-started/new-project":2},{"/get-started/mobile":2},{"/development/environment":2},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/ionic":2},{"/patterns/internationalization":2},{"/patterns/user-auth":2},{"/style/color":2},{"/style/iconography":2},{"/get-started/web":1},{"/development/frameworks-web/intro":1},{"/design/websites":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/community/features":1},{"/community/our-team":1},{"/resources/designer":1}],"guidelines":[{"/overview":4},{"/design/intro":4},{"/get-started/mobile":3},{"/design/accessibility":3},{"/design/project-identity":2},{"/style/iconography":2},{"/style/typography":2},{"/development/frameworks-mobile/intro":1},{"/design/anatomy":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/steppers":1},{"/style/illustrations":1},{"/community/innersourcing":1}],"while":[{"/community/faq":3},{"/patterns/loading":2},{"/patterns/tables":2},{"/overview":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/anatomy":1},{"/design/project-identity":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/navigation":1}],"ensuring":[{"/overview":1},{"/design/websites":1},{"/community/faq":1}],"flexibility":[{"/overview":2},{"/get-started/web":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/internationalization":1},{"/community/faq":1}],"code":[{"/development/testing":13},{"/community/innersourcing":11},{"/development/frameworks-mobile/react-native":6},{"/get-started/mobile":5},{"/development/frameworks-web/angular":4},{"/development/frameworks-web/react":4},{"/development/frameworks-mobile/intro":3},{"/development/frameworks-mobile/ionic":3},{"/patterns/user-auth":3},{"/overview":2},{"/development/environment":2},{"/patterns/forms":2},{"/community/faq":2},{"/get-started/web":1},{"/development/cli":1},{"/design/intro":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/patterns/lists":1},{"/style/illustrations":1},{"/style/themes":1},{"/community/license":1},{"/community/bugs":1},{"/community/features":1},{"/community/contactus":1}],"reusability":[{"/overview":1},{"/development/frameworks-mobile/react-native":1},{"/community/faq":1}],"check":[{"/development/testing":4},{"/overview":2},{"/get-started/new-project":2},{"/development/environment":2},{"/patterns/forms":2},{"/community/innersourcing":2},{"/community/faq":2},{"/get-started/mobile":1},{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/design/accessibility":1},{"/patterns/lists":1},{"/style/illustrations":1},{"/community/license":1}],"out":[{"/development/testing":5},{"/community/innersourcing":4},{"/community/faq":3},{"/overview":2},{"/get-started/new-project":2},{"/patterns/account-menu":2},{"/patterns/tables":2},{"/patterns/user-auth":2},{"/community/license":2},{"/get-started/web":1},{"/development/cli":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/design/intro":1},{"/design/websites":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/style/illustrations":1},{"/community/features":1},{"/community/our-team":1}],"release":[{"/community/faq":3},{"/overview":1},{"/community/innersourcing":1}],"notes":[{"/overview":1}],"see":[{"/community/faq":4},{"/style/themes":3},{"/overview":2},{"/get-started/mobile":2},{"/patterns/account-menu":2},{"/style/illustrations":2},{"/community/features":2},{"/get-started/web":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/community/innersourcing":1}],"what":[{"/community/faq":6},{"/patterns/empty-states":5},{"/get-started/new-project":4},{"/development/testing":4},{"/overview":3},{"/design/websites":3},{"/development/frameworks-web/intro":2},{"/design/intro":2},{"/design/project-identity":2},{"/patterns/tables":2},{"/patterns/user-auth":2},{"/style/iconography":2},{"/get-started/mobile":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/patterns/forms":1},{"/patterns/loading":1},{"/community/innersourcing":1},{"/community/our-team":1}],"s":[{"/development/testing":4},{"/design/anatomy":4},{"/patterns/lists":4},{"/design/intro":3},{"/design/websites":3},{"/patterns/account-menu":3},{"/patterns/user-auth":3},{"/style/themes":3},{"/community/faq":3},{"/get-started/new-project":2},{"/get-started/web":2},{"/development/environment":2},{"/design/project-identity":2},{"/overview":1},{"/get-started/mobile":1},{"/development/frameworks-web/angular":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/navigation":1},{"/style/typography":1},{"/community/bugs":1}],"new":[{"/get-started/new-project":5},{"/development/cli":5},{"/development/testing":5},{"/development/frameworks-mobile/react-native":4},{"/community/features":4},{"/overview":3},{"/development/frameworks-web/angular":3},{"/development/frameworks-web/react":3},{"/development/frameworks-mobile/ionic":3},{"/community/innersourcing":3},{"/community/faq":3},{"/community/our-team":3},{"/development/frameworks-mobile/intro":2},{"/patterns/internationalization":2},{"/patterns/user-auth":2},{"/style/iconography":2},{"/development/frameworks-web/intro":1},{"/design/intro":1},{"/design/project-identity":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/style/typography":1},{"/community/contactus":1}],"in":[{"/development/testing":26},{"/patterns/internationalization":23},{"/patterns/account-menu":18},{"/patterns/forms":17},{"/patterns/tables":16},{"/community/faq":16},{"/design/project-identity":15},{"/design/websites":14},{"/patterns/lists":14},{"/patterns/navigation":14},{"/patterns/overlay":14},{"/patterns/appbar":12},{"/style/color":12},{"/community/license":12},{"/design/accessibility":11},{"/style/typography":11},{"/style/themes":11},{"/community/our-team":11},{"/development/frameworks-mobile/react-native":10},{"/design/intro":10},{"/patterns/user-auth":10},{"/design/anatomy":9},{"/development/environment":8},{"/development/frameworks-mobile/ionic":7},{"/patterns/loading":7},{"/patterns/empty-states":6},{"/get-started/mobile":5},{"/development/frameworks-web/angular":5},{"/patterns/steppers":5},{"/patterns/visualizations":5},{"/style/iconography":5},{"/style/illustrations":5},{"/community/innersourcing":5},{"/development/frameworks-web/intro":4},{"/overview":3},{"/get-started/new-project":3},{"/development/frameworks-web/react":3},{"/get-started/web":2},{"/development/cli":2},{"/development/frameworks-mobile/intro":2},{"/community/bugs":2},{"/community/features":2}],"latest":[{"/overview":1}],"version":[{"/patterns/internationalization":2},{"/style/typography":2},{"/overview":1},{"/development/environment":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/patterns/steppers":1},{"/style/color":1},{"/style/illustrations":1},{"/community/bugs":1}],"of":[{"/development/testing":37},{"/design/websites":26},{"/design/project-identity":21},{"/community/license":20},{"/community/faq":18},{"/patterns/forms":17},{"/patterns/navigation":15},{"/patterns/internationalization":13},{"/patterns/overlay":13},{"/patterns/loading":12},{"/patterns/tables":12},{"/patterns/lists":11},{"/style/typography":11},{"/get-started/web":10},{"/design/anatomy":10},{"/design/accessibility":10},{"/style/color":10},{"/community/innersourcing":10},{"/community/our-team":10},{"/development/environment":9},{"/development/frameworks-mobile/react-native":9},{"/design/intro":9},{"/patterns/appbar":9},{"/patterns/user-auth":9},{"/style/iconography":9},{"/overview":8},{"/development/frameworks-mobile/intro":8},{"/style/illustrations":8},{"/get-started/new-project":7},{"/development/frameworks-web/angular":7},{"/development/frameworks-web/react":7},{"/patterns/steppers":7},{"/style/themes":7},{"/community/bugs":7},{"/development/frameworks-web/intro":6},{"/patterns/account-menu":5},{"/patterns/empty-states":5},{"/get-started/mobile":4},{"/development/frameworks-mobile/ionic":4},{"/patterns/visualizations":2},{"/community/features":1}],"goal":[{"/patterns/internationalization":2},{"/overview":1},{"/design/websites":1},{"/style/illustrations":1}],"ensure":[{"/design/intro":3},{"/style/illustrations":3},{"/overview":2},{"/design/project-identity":2},{"/development/environment":1},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/navigation":1},{"/community/innersourcing":1},{"/community/faq":1}],"consistency":[{"/design/project-identity":5},{"/design/websites":4},{"/community/faq":3},{"/design/intro":2},{"/overview":1},{"/style/illustrations":1}],"between":[{"/design/intro":3},{"/design/project-identity":3},{"/patterns/appbar":2},{"/patterns/navigation":2},{"/patterns/tables":2},{"/style/themes":2},{"/overview":1},{"/get-started/new-project":1},{"/development/frameworks-mobile/intro":1},{"/development/testing":1},{"/design/anatomy":1},{"/design/websites":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/style/illustrations":1},{"/community/faq":1},{"/community/our-team":1}],"software":[{"/community/license":4},{"/patterns/forms":3},{"/development/environment":2},{"/overview":1},{"/development/testing":1},{"/design/accessibility":1}],"products":[{"/design/project-identity":5},{"/community/faq":4},{"/patterns/internationalization":3},{"/overview":2},{"/design/intro":2},{"/design/accessibility":1},{"/style/color":1},{"/style/iconography":1},{"/community/license":1},{"/community/our-team":1}],"delivered":[{"/overview":1}],"by":[{"/development/testing":13},{"/development/frameworks-mobile/react-native":6},{"/design/accessibility":6},{"/development/frameworks-web/angular":5},{"/design/intro":5},{"/development/frameworks-web/react":4},{"/development/frameworks-mobile/ionic":4},{"/patterns/lists":4},{"/overview":3},{"/development/frameworks-web/intro":3},{"/patterns/navigation":3},{"/patterns/user-auth":3},{"/patterns/appbar":2},{"/patterns/forms":2},{"/patterns/internationalization":2},{"/patterns/overlay":2},{"/patterns/tables":2},{"/community/innersourcing":2},{"/get-started/new-project":1},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/environment":1},{"/development/frameworks-mobile/intro":1},{"/design/anatomy":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/patterns/empty-states":1},{"/style/typography":1},{"/style/themes":1},{"/community/license":1},{"/community/bugs":1},{"/community/faq":1}],"different":[{"/patterns/internationalization":7},{"/design/websites":6},{"/patterns/loading":6},{"/get-started/mobile":5},{"/development/testing":4},{"/patterns/navigation":4},{"/overview":3},{"/design/project-identity":3},{"/patterns/user-auth":3},{"/patterns/forms":2},{"/patterns/lists":2},{"/patterns/tables":2},{"/style/illustrations":2},{"/style/themes":2},{"/get-started/new-project":1},{"/get-started/web":1},{"/development/environment":1},{"/design/anatomy":1},{"/patterns/appbar":1},{"/patterns/visualizations":1},{"/style/color":1},{"/style/typography":1},{"/community/faq":1}],"teams":[{"/community/faq":5},{"/development/testing":3},{"/overview":2},{"/community/innersourcing":2},{"/design/intro":1},{"/community/license":1}],"with":[{"/community/faq":17},{"/development/testing":13},{"/development/frameworks-web/intro":12},{"/patterns/navigation":12},{"/patterns/user-auth":11},{"/development/frameworks-mobile/react-native":10},{"/design/intro":9},{"/design/accessibility":8},{"/patterns/tables":7},{"/overview":6},{"/get-started/web":6},{"/development/frameworks-web/angular":6},{"/development/frameworks-web/react":6},{"/development/frameworks-mobile/intro":6},{"/patterns/forms":6},{"/patterns/lists":6},{"/patterns/loading":6},{"/style/illustrations":6},{"/community/innersourcing":6},{"/development/frameworks-mobile/ionic":5},{"/design/anatomy":5},{"/patterns/internationalization":5},{"/community/our-team":5},{"/get-started/new-project":4},{"/design/websites":4},{"/design/project-identity":4},{"/patterns/account-menu":4},{"/patterns/overlay":4},{"/style/color":4},{"/development/environment":3},{"/community/license":3},{"/community/bugs":3},{"/development/cli":2},{"/patterns/visualizations":2},{"/style/themes":2},{"/get-started/mobile":1},{"/patterns/appbar":1},{"/style/iconography":1},{"/style/typography":1},{"/resources/designer":1}],"common":[{"/overview":4},{"/development/testing":4},{"/design/anatomy":4},{"/design/project-identity":4},{"/patterns/empty-states":3},{"/patterns/forms":3},{"/patterns/lists":3},{"/patterns/navigation":2},{"/patterns/overlay":2},{"/patterns/tables":2},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/loading":1},{"/patterns/steppers":1},{"/patterns/visualizations":1},{"/style/color":1},{"/style/iconography":1},{"/style/typography":1},{"/community/innersourcing":1},{"/community/faq":1}],"aesthetic":[{"/overview":1}],"we":[{"/community/faq":28},{"/community/innersourcing":14},{"/design/project-identity":8},{"/design/intro":7},{"/development/frameworks-mobile/react-native":4},{"/patterns/tables":4},{"/community/contactus":4},{"/overview":3},{"/patterns/internationalization":3},{"/style/typography":3},{"/get-started/web":2},{"/get-started/mobile":2},{"/development/environment":2},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/style/iconography":2},{"/style/illustrations":2},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/design/anatomy":1},{"/design/websites":1},{"/patterns/user-auth":1},{"/style/themes":1},{"/community/license":1},{"/community/our-team":1},{"/resources/designer":1}],"can":[{"/community/faq":14},{"/development/testing":13},{"/design/websites":12},{"/development/frameworks-mobile/react-native":11},{"/patterns/lists":11},{"/patterns/navigation":11},{"/patterns/overlay":10},{"/development/frameworks-web/angular":9},{"/style/iconography":9},{"/development/frameworks-mobile/ionic":8},{"/patterns/empty-states":8},{"/patterns/tables":8},{"/patterns/account-menu":7},{"/patterns/user-auth":7},{"/development/frameworks-web/react":6},{"/design/anatomy":6},{"/design/accessibility":6},{"/patterns/forms":6},{"/style/illustrations":6},{"/get-started/web":5},{"/patterns/appbar":5},{"/patterns/internationalization":5},{"/get-started/new-project":4},{"/development/environment":4},{"/design/intro":4},{"/patterns/loading":4},{"/style/color":4},{"/style/typography":4},{"/community/innersourcing":4},{"/overview":3},{"/get-started/mobile":3},{"/design/project-identity":3},{"/community/bugs":3},{"/patterns/steppers":2},{"/style/themes":2},{"/community/features":2},{"/community/contactus":2},{"/resources/designer":2},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/patterns/visualizations":1},{"/community/license":1}],"be":[{"/patterns/empty-states":17},{"/patterns/forms":16},{"/design/websites":15},{"/design/accessibility":13},{"/patterns/overlay":12},{"/patterns/tables":12},{"/style/color":12},{"/patterns/user-auth":11},{"/get-started/new-project":10},{"/development/frameworks-mobile/react-native":9},{"/development/testing":9},{"/design/intro":9},{"/patterns/account-menu":9},{"/community/faq":9},{"/design/project-identity":8},{"/patterns/internationalization":8},{"/style/illustrations":8},{"/patterns/lists":7},{"/patterns/loading":7},{"/patterns/navigation":7},{"/development/environment":6},{"/development/frameworks-mobile/intro":6},{"/development/frameworks-web/intro":5},{"/development/frameworks-web/angular":5},{"/development/frameworks-web/react":5},{"/design/anatomy":5},{"/community/innersourcing":5},{"/development/frameworks-mobile/ionic":4},{"/style/typography":4},{"/style/iconography":3},{"/community/license":3},{"/get-started/web":2},{"/get-started/mobile":2},{"/patterns/appbar":2},{"/patterns/visualizations":2},{"/overview":1},{"/patterns/steppers":1},{"/style/themes":1},{"/resources/designer":1}],"sure":[{"/design/accessibility":3},{"/development/environment":2},{"/development/frameworks-mobile/react-native":2},{"/design/websites":2},{"/design/project-identity":2},{"/overview":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/design/intro":1},{"/patterns/forms":1},{"/style/typography":1}],"all":[{"/community/faq":7},{"/design/websites":4},{"/development/testing":3},{"/design/project-identity":3},{"/patterns/lists":3},{"/overview":2},{"/development/frameworks-mobile/ionic":2},{"/design/accessibility":2},{"/patterns/forms":2},{"/style/themes":2},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/patterns/appbar":1},{"/patterns/internationalization":1},{"/patterns/user-auth":1},{"/style/typography":1},{"/community/license":1},{"/community/innersourcing":1},{"/community/our-team":1},{"/community/contactus":1}],"feel":[{"/community/faq":4},{"/design/intro":3},{"/overview":1},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/design/websites":1},{"/design/project-identity":1},{"/style/iconography":1},{"/style/themes":1}],"like":[{"/community/faq":9},{"/design/intro":5},{"/patterns/navigation":3},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/react-native":2},{"/development/testing":2},{"/community/features":2},{"/overview":1},{"/get-started/mobile":1},{"/development/environment":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-mobile/ionic":1},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/user-auth":1},{"/patterns/visualizations":1},{"/resources/designer":1}],"they":[{"/design/websites":10},{"/patterns/tables":10},{"/patterns/overlay":9},{"/development/testing":8},{"/patterns/user-auth":8},{"/patterns/empty-states":5},{"/design/accessibility":4},{"/patterns/lists":4},{"/design/project-identity":3},{"/community/innersourcing":3},{"/community/faq":3},{"/get-started/new-project":2},{"/get-started/web":2},{"/design/intro":2},{"/design/anatomy":2},{"/patterns/account-menu":2},{"/patterns/forms":2},{"/patterns/steppers":2},{"/style/illustrations":2},{"/overview":1},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/appbar":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/visualizations":1},{"/style/color":1},{"/style/typography":1},{"/community/license":1},{"/community/our-team":1},{"/resources/designer":1}],"belong":[{"/overview":1}],"same":[{"/community/faq":4},{"/development/testing":3},{"/development/frameworks-mobile/react-native":2},{"/design/anatomy":2},{"/design/project-identity":2},{"/patterns/user-auth":2},{"/overview":1},{"/get-started/new-project":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/design/intro":1},{"/design/websites":1},{"/patterns/internationalization":1},{"/style/themes":1},{"/community/license":1}],"family":[{"/overview":1},{"/design/project-identity":1},{"/style/typography":1},{"/community/faq":1}],"based":[{"/patterns/user-auth":5},{"/development/testing":3},{"/style/iconography":2},{"/overview":1},{"/development/environment":1},{"/design/intro":1},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/patterns/visualizations":1},{"/style/typography":1},{"/community/faq":1}],"on":[{"/patterns/forms":17},{"/development/testing":15},{"/community/faq":15},{"/patterns/tables":14},{"/design/websites":12},{"/patterns/lists":10},{"/development/frameworks-mobile/react-native":9},{"/style/themes":9},{"/development/environment":8},{"/development/frameworks-mobile/ionic":8},{"/design/project-identity":8},{"/patterns/appbar":8},{"/patterns/navigation":8},{"/design/accessibility":7},{"/patterns/overlay":7},{"/patterns/user-auth":7},{"/design/intro":6},{"/style/illustrations":6},{"/design/anatomy":5},{"/patterns/empty-states":5},{"/patterns/internationalization":5},{"/style/iconography":4},{"/community/innersourcing":4},{"/community/bugs":4},{"/overview":3},{"/get-started/new-project":3},{"/get-started/mobile":3},{"/patterns/loading":3},{"/patterns/visualizations":3},{"/get-started/web":2},{"/development/frameworks-web/intro":2},{"/development/frameworks-mobile/intro":2},{"/patterns/account-menu":2},{"/style/typography":2},{"/community/license":2},{"/community/features":2},{"/community/our-team":2},{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/patterns/steppers":1},{"/style/color":1},{"/community/contactus":1}],"material":[{"/development/frameworks-web/react":16},{"/development/frameworks-web/angular":14},{"/style/themes":7},{"/patterns/forms":5},{"/development/frameworks-mobile/react-native":4},{"/design/project-identity":4},{"/style/typography":4},{"/community/bugs":4},{"/development/frameworks-web/intro":3},{"/patterns/appbar":3},{"/patterns/loading":3},{"/patterns/overlay":3},{"/patterns/steppers":3},{"/style/iconography":3},{"/community/features":3},{"/overview":2},{"/get-started/mobile":2},{"/development/frameworks-mobile/ionic":2},{"/patterns/account-menu":2},{"/patterns/lists":2},{"/patterns/navigation":2},{"/patterns/tables":2},{"/community/our-team":2},{"/development/cli":1},{"/design/anatomy":1},{"/design/websites":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/community/faq":1}],"language":[{"/patterns/internationalization":14},{"/design/intro":2},{"/overview":1},{"/development/testing":1},{"/design/accessibility":1},{"/design/websites":1},{"/design/project-identity":1},{"/style/typography":1}],"if":[{"/community/faq":20},{"/patterns/forms":13},{"/patterns/account-menu":12},{"/development/environment":11},{"/development/frameworks-mobile/react-native":10},{"/patterns/loading":10},{"/patterns/tables":8},{"/patterns/user-auth":8},{"/style/iconography":7},{"/development/frameworks-web/angular":6},{"/development/frameworks-web/react":6},{"/development/frameworks-mobile/intro":6},{"/patterns/empty-states":6},{"/patterns/lists":6},{"/style/illustrations":6},{"/get-started/new-project":5},{"/get-started/web":5},{"/development/frameworks-web/intro":5},{"/development/frameworks-mobile/ionic":5},{"/patterns/internationalization":5},{"/patterns/navigation":5},{"/community/bugs":5},{"/design/websites":4},{"/development/testing":3},{"/design/intro":3},{"/community/innersourcing":3},{"/community/features":3},{"/overview":2},{"/get-started/mobile":2},{"/design/accessibility":2},{"/design/project-identity":2},{"/patterns/appbar":2},{"/style/typography":2},{"/community/license":2},{"/design/anatomy":1},{"/patterns/overlay":1},{"/patterns/steppers":1},{"/style/themes":1},{"/community/contactus":1}],"you":[{"/community/faq":49},{"/development/frameworks-mobile/react-native":43},{"/development/environment":33},{"/design/project-identity":30},{"/development/frameworks-mobile/ionic":24},{"/development/testing":23},{"/development/frameworks-web/react":22},{"/development/frameworks-web/angular":21},{"/patterns/loading":17},{"/patterns/tables":17},{"/design/websites":16},{"/patterns/account-menu":15},{"/patterns/lists":15},{"/community/innersourcing":15},{"/development/frameworks-mobile/intro":14},{"/patterns/internationalization":14},{"/style/iconography":14},{"/patterns/forms":13},{"/style/typography":13},{"/patterns/appbar":11},{"/get-started/new-project":10},{"/style/illustrations":10},{"/get-started/web":9},{"/patterns/navigation":9},{"/patterns/user-auth":9},{"/design/intro":8},{"/community/bugs":8},{"/overview":7},{"/development/frameworks-web/intro":7},{"/design/accessibility":7},{"/get-started/mobile":6},{"/style/themes":5},{"/community/features":5},{"/community/contactus":5},{"/design/anatomy":3},{"/development/cli":2},{"/patterns/empty-states":2},{"/style/color":2},{"/community/license":2},{"/resources/designer":2},{"/patterns/overlay":1},{"/patterns/steppers":1},{"/patterns/visualizations":1}],"are":[{"/development/testing":24},{"/community/faq":17},{"/design/project-identity":16},{"/patterns/tables":16},{"/design/anatomy":14},{"/development/frameworks-mobile/react-native":13},{"/development/environment":12},{"/design/websites":12},{"/patterns/forms":12},{"/patterns/internationalization":12},{"/style/themes":11},{"/patterns/overlay":10},{"/style/typography":10},{"/design/accessibility":8},{"/patterns/navigation":8},{"/patterns/user-auth":8},{"/style/illustrations":8},{"/patterns/lists":7},{"/patterns/steppers":7},{"/patterns/visualizations":7},{"/patterns/account-menu":6},{"/patterns/loading":6},{"/style/color":6},{"/style/iconography":6},{"/community/license":6},{"/development/frameworks-mobile/intro":5},{"/get-started/mobile":4},{"/development/frameworks-web/intro":4},{"/development/frameworks-web/angular":4},{"/development/frameworks-web/react":4},{"/patterns/appbar":4},{"/overview":3},{"/get-started/web":3},{"/design/intro":3},{"/get-started/new-project":2},{"/development/frameworks-mobile/ionic":2},{"/patterns/empty-states":2},{"/development/cli":1},{"/community/bugs":1},{"/community/features":1},{"/resources/designer":1}],"working":[{"/design/intro":2},{"/community/faq":2},{"/overview":1},{"/development/testing":1},{"/design/websites":1},{"/patterns/forms":1},{"/community/our-team":1}],"studio":[{"/development/frameworks-mobile/intro":3},{"/overview":2},{"/development/environment":2},{"/development/frameworks-mobile/react-native":1}],"blue":[{"/style/themes":7},{"/community/our-team":7},{"/style/color":5},{"/style/illustrations":4},{"/overview":2},{"/design/project-identity":2},{"/design/accessibility":1},{"/design/websites":1}],"their":[{"/patterns/user-auth":9},{"/patterns/tables":4},{"/development/testing":3},{"/patterns/account-menu":3},{"/patterns/forms":3},{"/patterns/internationalization":2},{"/patterns/overlay":2},{"/patterns/steppers":2},{"/overview":1},{"/get-started/new-project":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/design/intro":1},{"/design/anatomy":1},{"/design/websites":1},{"/design/project-identity":1},{"/style/iconography":1},{"/community/bugs":1},{"/community/features":1},{"/community/faq":1}],"designs":[{"/design/intro":3},{"/design/websites":3},{"/overview":2},{"/get-started/web":1},{"/design/anatomy":1},{"/style/typography":1},{"/community/innersourcing":1},{"/resources/designer":1}],"follow":[{"/development/frameworks-mobile/react-native":3},{"/design/websites":2},{"/design/project-identity":2},{"/overview":1},{"/get-started/mobile":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/user-auth":1}],"standard":[{"/style/typography":5},{"/development/frameworks-mobile/react-native":2},{"/overview":1},{"/get-started/mobile":1},{"/development/testing":1},{"/patterns/navigation":1},{"/patterns/overlay":1}],"not":[{"/development/testing":7},{"/design/project-identity":7},{"/patterns/tables":7},{"/style/illustrations":7},{"/community/faq":7},{"/patterns/user-auth":6},{"/patterns/forms":4},{"/patterns/internationalization":4},{"/patterns/lists":4},{"/development/frameworks-web/angular":3},{"/design/accessibility":3},{"/design/websites":3},{"/patterns/account-menu":3},{"/patterns/empty-states":3},{"/style/color":3},{"/community/license":3},{"/get-started/new-project":2},{"/development/environment":2},{"/development/frameworks-mobile/intro":2},{"/development/frameworks-mobile/ionic":2},{"/development/frameworks-mobile/react-native":2},{"/patterns/loading":2},{"/patterns/steppers":2},{"/overview":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/react":1},{"/patterns/appbar":1},{"/patterns/navigation":1},{"/patterns/visualizations":1},{"/style/iconography":1},{"/community/innersourcing":1},{"/community/contactus":1}],"utilizing":[{"/overview":1},{"/design/accessibility":1},{"/design/websites":1}],"designers":[{"/overview":1},{"/design/anatomy":1},{"/style/color":1},{"/style/iconography":1},{"/community/faq":1},{"/community/our-team":1}],"following":[{"/patterns/user-auth":9},{"/development/frameworks-mobile/react-native":6},{"/community/license":3},{"/development/environment":2},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/ionic":2},{"/development/testing":2},{"/overview":1},{"/development/frameworks-web/intro":1},{"/design/intro":1},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/patterns/visualizations":1},{"/style/iconography":1},{"/community/bugs":1},{"/resources/designer":1}],"as":[{"/community/faq":18},{"/development/testing":15},{"/design/intro":10},{"/style/illustrations":10},{"/patterns/internationalization":9},{"/patterns/tables":9},{"/patterns/empty-states":8},{"/patterns/user-auth":8},{"/development/frameworks-web/angular":7},{"/patterns/account-menu":7},{"/patterns/forms":7},{"/patterns/lists":7},{"/style/themes":7},{"/development/frameworks-web/react":6},{"/design/project-identity":6},{"/patterns/appbar":6},{"/patterns/loading":6},{"/patterns/overlay":6},{"/style/color":6},{"/overview":5},{"/design/anatomy":5},{"/style/typography":5},{"/design/accessibility":4},{"/design/websites":4},{"/patterns/navigation":4},{"/development/environment":3},{"/style/iconography":3},{"/get-started/new-project":2},{"/community/our-team":2},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/cli":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/steppers":1},{"/patterns/visualizations":1},{"/community/license":1},{"/community/features":1},{"/community/contactus":1}],"well":[{"/community/faq":4},{"/development/frameworks-web/angular":3},{"/overview":2},{"/development/frameworks-web/react":2},{"/development/testing":2},{"/patterns/account-menu":2},{"/style/themes":2},{"/development/environment":1},{"/design/intro":1},{"/design/accessibility":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/user-auth":1},{"/style/typography":1}],"any":[{"/development/testing":8},{"/patterns/internationalization":6},{"/community/license":6},{"/design/project-identity":5},{"/design/websites":3},{"/style/color":3},{"/overview":2},{"/get-started/new-project":2},{"/patterns/forms":2},{"/patterns/steppers":2},{"/style/illustrations":2},{"/community/contactus":2},{"/get-started/web":1},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/ionic":1},{"/design/intro":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/patterns/tables":1},{"/community/faq":1}],"additional":[{"/development/frameworks-mobile/ionic":5},{"/development/testing":2},{"/patterns/forms":2},{"/patterns/user-auth":2},{"/style/color":2},{"/overview":1},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/style/typography":1},{"/community/faq":1}],"patterns":[{"/community/faq":5},{"/design/project-identity":4},{"/design/intro":3},{"/design/anatomy":3},{"/overview":2},{"/get-started/mobile":1},{"/patterns/user-auth":1},{"/style/typography":1},{"/community/innersourcing":1},{"/community/features":1},{"/resources/designer":1}],"also":[{"/development/frameworks-mobile/react-native":5},{"/development/testing":5},{"/development/environment":4},{"/design/websites":4},{"/patterns/account-menu":4},{"/patterns/tables":4},{"/community/faq":4},{"/development/frameworks-web/react":3},{"/design/intro":3},{"/patterns/empty-states":3},{"/patterns/overlay":3},{"/community/innersourcing":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-mobile/ionic":2},{"/design/accessibility":2},{"/patterns/appbar":2},{"/patterns/internationalization":2},{"/patterns/navigation":2},{"/patterns/user-auth":2},{"/style/iconography":2},{"/style/illustrations":2},{"/community/our-team":2},{"/overview":1},{"/get-started/web":1},{"/get-started/mobile":1},{"/design/anatomy":1},{"/design/project-identity":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/style/color":1},{"/style/themes":1},{"/community/license":1},{"/community/bugs":1},{"/community/features":1},{"/resources/designer":1}],"platform":[{"/development/frameworks-mobile/ionic":4},{"/overview":2},{"/community/faq":2},{"/design/intro":1},{"/community/our-team":1}],"intended":[{"/development/testing":2},{"/design/project-identity":2},{"/overview":1},{"/get-started/new-project":1},{"/get-started/mobile":1},{"/design/anatomy":1},{"/patterns/lists":1},{"/style/iconography":1},{"/style/themes":1}],"work":[{"/community/faq":3},{"/overview":2},{"/get-started/new-project":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/project-identity":1},{"/patterns/lists":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/style/iconography":1},{"/style/typography":1},{"/style/themes":1},{"/community/innersourcing":1},{"/community/our-team":1}],"quickly":[{"/design/intro":2},{"/design/websites":2},{"/overview":1},{"/development/environment":1},{"/development/cli":1},{"/development/testing":1},{"/patterns/navigation":1}],"efficiently":[{"/overview":1}],"providing":[{"/overview":1},{"/development/environment":1},{"/design/accessibility":1}],"recommendations":[{"/overview":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/design/project-identity":1},{"/style/typography":1}],"technologies":[{"/overview":4},{"/get-started/mobile":3},{"/design/accessibility":3},{"/get-started/web":1},{"/development/frameworks-mobile/ionic":1},{"/community/faq":1}],"tools":[{"/development/testing":5},{"/development/environment":4},{"/design/accessibility":3},{"/style/illustrations":3},{"/community/innersourcing":3},{"/overview":2},{"/development/frameworks-mobile/ionic":2},{"/get-started/mobile":1},{"/community/faq":1},{"/resources/designer":1}],"libraries":[{"/development/frameworks-mobile/react-native":7},{"/development/frameworks-web/intro":2},{"/development/testing":2},{"/patterns/internationalization":2},{"/patterns/visualizations":2},{"/community/license":2},{"/community/bugs":2},{"/community/features":2},{"/overview":1},{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/design/anatomy":1},{"/patterns/loading":1},{"/community/faq":1},{"/community/our-team":1}],"approaches":[{"/get-started/mobile":2},{"/overview":1},{"/development/frameworks-mobile/react-native":1}],"challenges":[{"/overview":1}],"re":[{"/community/faq":4},{"/development/environment":3},{"/development/frameworks-mobile/intro":2},{"/patterns/lists":2},{"/community/innersourcing":2},{"/overview":1},{"/get-started/web":1},{"/development/frameworks-web/intro":1},{"/community/our-team":1}],"usable":[{"/overview":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/community/our-team":1}],"components":[{"/development/frameworks-mobile/react-native":16},{"/design/anatomy":10},{"/development/frameworks-web/angular":8},{"/development/frameworks-web/react":8},{"/style/themes":6},{"/get-started/mobile":4},{"/development/testing":4},{"/patterns/account-menu":4},{"/patterns/appbar":4},{"/patterns/empty-states":4},{"/patterns/navigation":4},{"/design/accessibility":3},{"/patterns/lists":3},{"/patterns/steppers":3},{"/style/typography":2},{"/community/faq":2},{"/overview":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/ionic":1},{"/design/project-identity":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/style/iconography":1},{"/community/innersourcing":1},{"/community/bugs":1},{"/community/features":1},{"/community/our-team":1},{"/community/contactus":1},{"/resources/designer":1}],"support":[{"/community/faq":5},{"/get-started/mobile":3},{"/patterns/internationalization":3},{"/overview":2},{"/get-started/web":2},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/patterns/account-menu":2},{"/style/illustrations":2},{"/community/our-team":2},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/development/testing":1},{"/design/project-identity":1},{"/patterns/navigation":1},{"/style/typography":1},{"/community/contactus":1}],"variety":[{"/style/color":3},{"/development/environment":2},{"/patterns/overlay":2},{"/overview":1},{"/get-started/web":1},{"/design/accessibility":1},{"/patterns/empty-states":1},{"/patterns/steppers":1},{"/style/iconography":1},{"/style/typography":1},{"/community/license":1}],"give":[{"/community/faq":3},{"/style/color":2},{"/overview":1},{"/development/testing":1},{"/patterns/loading":1}],"choose":[{"/overview":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/user-auth":1},{"/community/innersourcing":1},{"/community/faq":1}],"best":[{"/overview":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/design/intro":1},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/lists":1}],"learn":[{"/overview":2},{"/get-started/new-project":2},{"/development/frameworks-web/intro":2},{"/development/frameworks-mobile/intro":2},{"/community/faq":2},{"/get-started/mobile":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/style/themes":1},{"/community/license":1}],"about":[{"/community/faq":5},{"/get-started/new-project":4},{"/patterns/account-menu":4},{"/overview":3},{"/patterns/overlay":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/react-native":2},{"/development/testing":2},{"/design/websites":2},{"/community/innersourcing":2},{"/community/bugs":2},{"/get-started/mobile":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/tables":1},{"/style/iconography":1},{"/style/typography":1},{"/community/license":1},{"/community/our-team":1},{"/community/contactus":1}],"or":[{"/development/testing":16},{"/development/frameworks-mobile/react-native":13},{"/patterns/account-menu":12},{"/patterns/forms":12},{"/patterns/internationalization":11},{"/community/license":11},{"/patterns/lists":10},{"/patterns/overlay":10},{"/patterns/user-auth":10},{"/community/faq":9},{"/design/anatomy":7},{"/design/websites":7},{"/design/project-identity":7},{"/patterns/navigation":7},{"/style/illustrations":7},{"/design/accessibility":6},{"/community/innersourcing":6},{"/development/frameworks-web/angular":5},{"/development/frameworks-web/react":5},{"/patterns/appbar":5},{"/patterns/loading":5},{"/patterns/tables":5},{"/style/color":5},{"/get-started/new-project":4},{"/development/frameworks-mobile/ionic":4},{"/development/environment":3},{"/patterns/empty-states":3},{"/patterns/visualizations":3},{"/style/iconography":3},{"/community/bugs":3},{"/community/contactus":3},{"/development/frameworks-mobile/intro":2},{"/patterns/steppers":2},{"/style/typography":2},{"/style/themes":2},{"/overview":1},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/cli":1},{"/development/frameworks-web/intro":1},{"/design/intro":1},{"/community/features":1},{"/resources/designer":1}],"technology":[{"/overview":1},{"/get-started/mobile":1},{"/development/environment":1},{"/development/frameworks-mobile/intro":1},{"/design/intro":1}],"pages":[{"/design/anatomy":10},{"/patterns/navigation":9},{"/design/websites":2},{"/patterns/account-menu":2},{"/overview":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/design/intro":1},{"/patterns/forms":1},{"/patterns/steppers":1}],"resources":[{"/community/faq":7},{"/overview":3},{"/community/license":3},{"/resources/designer":3},{"/design/intro":2},{"/style/iconography":2},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/react-native":1},{"/community/innersourcing":1},{"/community/bugs":1},{"/community/our-team":1}],"provided":[{"/community/license":3},{"/overview":1}],"page":[{"/design/websites":10},{"/patterns/account-menu":7},{"/patterns/tables":6},{"/patterns/appbar":5},{"/patterns/empty-states":5},{"/community/faq":5},{"/design/anatomy":3},{"/overview":2},{"/design/intro":2},{"/patterns/internationalization":2},{"/patterns/overlay":2},{"/get-started/mobile":1},{"/development/testing":1},{"/design/accessibility":1},{"/patterns/forms":1},{"/patterns/navigation":1},{"/patterns/user-auth":1},{"/style/color":1},{"/style/typography":1},{"/community/innersourcing":1},{"/community/bugs":1}],"site":[{"/design/websites":8},{"/overview":2},{"/style/themes":1},{"/community/innersourcing":1},{"/community/bugs":1}],"provide":[{"/community/faq":4},{"/development/testing":3},{"/design/intro":2},{"/design/project-identity":2},{"/patterns/appbar":2},{"/patterns/internationalization":2},{"/overview":1},{"/get-started/new-project":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/forms":1},{"/patterns/loading":1},{"/patterns/user-auth":1},{"/style/iconography":1},{"/style/illustrations":1},{"/style/typography":1},{"/resources/designer":1}],"everything":[{"/community/faq":2},{"/overview":1},{"/get-started/web":1},{"/design/accessibility":1},{"/patterns/tables":1}],"need":[{"/community/faq":9},{"/development/environment":8},{"/patterns/loading":5},{"/development/frameworks-mobile/ionic":4},{"/patterns/tables":4},{"/get-started/web":3},{"/development/frameworks-mobile/react-native":3},{"/design/websites":3},{"/patterns/internationalization":3},{"/patterns/user-auth":3},{"/get-started/new-project":2},{"/development/frameworks-mobile/intro":2},{"/design/accessibility":2},{"/design/project-identity":2},{"/patterns/appbar":2},{"/patterns/forms":2},{"/style/iconography":2},{"/style/typography":2},{"/overview":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/testing":1},{"/design/intro":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/style/illustrations":1},{"/community/innersourcing":1},{"/community/our-team":1}],"get":[{"/community/faq":4},{"/development/environment":2},{"/community/innersourcing":2},{"/overview":1},{"/get-started/web":1},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/design/intro":1},{"/patterns/empty-states":1},{"/style/iconography":1}],"started":[{"/development/frameworks-mobile/ionic":4},{"/development/environment":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/react-native":2},{"/development/testing":2},{"/overview":1},{"/get-started/web":1},{"/style/themes":1},{"/community/innersourcing":1},{"/community/faq":1}],"information":[{"/patterns/account-menu":8},{"/design/websites":7},{"/patterns/overlay":7},{"/design/intro":5},{"/patterns/lists":5},{"/development/frameworks-mobile/react-native":4},{"/patterns/forms":4},{"/community/faq":4},{"/overview":3},{"/design/accessibility":3},{"/community/bugs":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/ionic":2},{"/development/testing":2},{"/patterns/navigation":2},{"/patterns/user-auth":2},{"/style/typography":2},{"/development/cli":1},{"/design/anatomy":1},{"/patterns/appbar":1},{"/style/color":1},{"/community/license":1}],"guides":[{"/overview":3},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/style/typography":1},{"/community/license":1},{"/community/faq":1}],"including":[{"/design/accessibility":4},{"/community/license":3},{"/overview":2},{"/get-started/new-project":2},{"/development/frameworks-mobile/react-native":2},{"/patterns/steppers":2},{"/community/faq":2},{"/get-started/web":1},{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/testing":1},{"/design/websites":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/style/color":1},{"/style/typography":1},{"/style/themes":1},{"/community/bugs":1}],"starting":[{"/development/cli":3},{"/development/frameworks-mobile/react-native":2},{"/community/faq":2},{"/overview":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/community/our-team":1}],"project":[{"/development/frameworks-mobile/react-native":20},{"/development/frameworks-mobile/ionic":17},{"/development/frameworks-web/angular":12},{"/development/frameworks-web/react":12},{"/development/testing":11},{"/community/faq":10},{"/get-started/new-project":6},{"/development/cli":5},{"/design/project-identity":3},{"/overview":2},{"/patterns/empty-states":2},{"/community/our-team":2},{"/design/intro":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/patterns/user-auth":1},{"/community/innersourcing":1},{"/community/bugs":1},{"/resources/designer":1}],"types":[{"/patterns/appbar":2},{"/overview":1},{"/get-started/new-project":1},{"/get-started/mobile":1},{"/development/testing":1},{"/design/websites":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/overlay":1},{"/style/color":1}],"how":[{"/design/anatomy":7},{"/community/faq":5},{"/overview":4},{"/community/innersourcing":4},{"/community/contactus":3},{"/get-started/new-project":2},{"/development/testing":2},{"/design/websites":2},{"/patterns/steppers":2},{"/patterns/user-auth":2},{"/style/themes":2},{"/get-started/web":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/community/our-team":1}],"set":[{"/development/environment":7},{"/overview":2},{"/design/project-identity":2},{"/patterns/tables":2},{"/community/faq":2},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/style/color":1},{"/style/typography":1}],"up":[{"/development/environment":7},{"/development/frameworks-mobile/ionic":5},{"/development/frameworks-mobile/react-native":5},{"/development/testing":3},{"/patterns/tables":3},{"/design/intro":2},{"/patterns/loading":2},{"/resources/designer":2},{"/overview":1},{"/get-started/web":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/design/anatomy":1},{"/design/project-identity":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/steppers":1},{"/style/illustrations":1},{"/community/innersourcing":1},{"/community/faq":1},{"/community/our-team":1}],"environment":[{"/development/environment":4},{"/development/frameworks-mobile/ionic":4},{"/development/frameworks-mobile/react-native":4},{"/design/intro":2},{"/overview":1},{"/design/project-identity":1},{"/community/bugs":1}],"start":[{"/development/frameworks-mobile/react-native":9},{"/development/frameworks-web/angular":5},{"/development/frameworks-web/react":5},{"/development/frameworks-mobile/ionic":5},{"/community/faq":4},{"/development/cli":2},{"/overview":1},{"/get-started/new-project":1},{"/get-started/web":1},{"/development/testing":1},{"/design/intro":1},{"/patterns/user-auth":1}],"supported":[{"/development/cli":2},{"/community/faq":2},{"/overview":1},{"/development/testing":1},{"/patterns/internationalization":1},{"/style/iconography":1}],"use":[{"/design/websites":15},{"/development/frameworks-mobile/react-native":14},{"/design/project-identity":10},{"/style/illustrations":10},{"/design/accessibility":8},{"/patterns/lists":8},{"/development/frameworks-web/angular":7},{"/development/frameworks-web/react":7},{"/patterns/navigation":6},{"/patterns/tables":6},{"/style/typography":6},{"/development/frameworks-mobile/intro":5},{"/development/testing":5},{"/patterns/forms":5},{"/community/license":5},{"/community/innersourcing":5},{"/design/intro":4},{"/patterns/empty-states":4},{"/patterns/user-auth":4},{"/style/color":4},{"/style/iconography":4},{"/style/themes":4},{"/overview":3},{"/get-started/web":3},{"/development/environment":3},{"/development/frameworks-web/intro":3},{"/development/frameworks-mobile/ionic":3},{"/patterns/appbar":3},{"/patterns/loading":3},{"/community/faq":3},{"/patterns/internationalization":2},{"/patterns/overlay":2},{"/patterns/steppers":2},{"/resources/designer":2},{"/get-started/new-project":1},{"/get-started/mobile":1},{"/design/anatomy":1},{"/patterns/account-menu":1},{"/community/contactus":1}],"testing":[{"/development/testing":25},{"/design/accessibility":2},{"/overview":1},{"/development/environment":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/community/innersourcing":1}],"explaining":[{"/overview":1}],"designer":[{"/overview":1},{"/design/intro":1},{"/community/faq":1},{"/resources/designer":1}],"examples":[{"/community/innersourcing":3},{"/development/frameworks-mobile/react-native":2},{"/design/anatomy":2},{"/patterns/tables":2},{"/community/faq":2},{"/overview":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/design/project-identity":1},{"/patterns/user-auth":1},{"/style/themes":1},{"/community/features":1},{"/community/contactus":1}],"elements":[{"/development/testing":8},{"/design/intro":6},{"/design/websites":5},{"/design/accessibility":4},{"/patterns/visualizations":4},{"/design/project-identity":3},{"/patterns/lists":3},{"/style/illustrations":3},{"/style/themes":3},{"/development/frameworks-mobile/react-native":2},{"/design/anatomy":2},{"/patterns/appbar":2},{"/patterns/overlay":2},{"/style/color":2},{"/overview":1},{"/development/frameworks-mobile/intro":1},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/style/typography":1},{"/community/faq":1}],"application":[{"/get-started/new-project":14},{"/development/testing":14},{"/development/frameworks-mobile/react-native":13},{"/development/frameworks-mobile/intro":11},{"/design/project-identity":10},{"/patterns/user-auth":9},{"/development/frameworks-mobile/ionic":8},{"/patterns/account-menu":8},{"/patterns/internationalization":8},{"/patterns/navigation":8},{"/community/faq":7},{"/development/frameworks-web/angular":6},{"/patterns/tables":6},{"/get-started/web":5},{"/design/intro":5},{"/design/websites":5},{"/patterns/loading":5},{"/style/illustrations":5},{"/development/frameworks-web/intro":4},{"/development/frameworks-web/react":4},{"/design/accessibility":4},{"/style/themes":4},{"/get-started/mobile":3},{"/patterns/appbar":3},{"/patterns/empty-states":3},{"/development/environment":2},{"/patterns/forms":2},{"/patterns/overlay":2},{"/patterns/steppers":2},{"/style/color":2},{"/style/iconography":2},{"/style/typography":2},{"/overview":1},{"/design/anatomy":1},{"/patterns/lists":1}],"extensive":[{"/overview":1},{"/design/intro":1},{"/style/iconography":1},{"/community/our-team":1}],"icons":[{"/development/frameworks-mobile/react-native":8},{"/style/iconography":8},{"/development/frameworks-web/react":7},{"/design/project-identity":6},{"/community/faq":4},{"/development/frameworks-web/angular":2},{"/development/frameworks-mobile/ionic":2},{"/patterns/internationalization":2},{"/patterns/navigation":2},{"/overview":1},{"/design/anatomy":1},{"/design/websites":1},{"/patterns/lists":1},{"/patterns/tables":1},{"/style/illustrations":1},{"/style/themes":1},{"/community/license":1},{"/community/features":1}],"colors":[{"/style/color":20},{"/design/accessibility":5},{"/design/websites":5},{"/design/project-identity":5},{"/style/themes":5},{"/development/frameworks-web/angular":4},{"/style/illustrations":4},{"/development/frameworks-web/react":3},{"/development/frameworks-mobile/ionic":2},{"/development/frameworks-mobile/react-native":2},{"/style/typography":2},{"/overview":1},{"/development/cli":1},{"/community/license":1},{"/community/innersourcing":1}],"typography":[{"/style/typography":5},{"/design/websites":3},{"/design/intro":2},{"/patterns/appbar":2},{"/overview":1},{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/design/anatomy":1},{"/patterns/internationalization":1}],"links":[{"/patterns/account-menu":2},{"/overview":1},{"/design/websites":1},{"/community/innersourcing":1},{"/community/bugs":1},{"/community/features":1}],"npm":[{"/development/frameworks-mobile/react-native":7},{"/development/environment":3},{"/development/frameworks-web/angular":3},{"/development/frameworks-web/react":3},{"/style/themes":3},{"/development/frameworks-mobile/ionic":2},{"/overview":1},{"/development/cli":1},{"/development/testing":1},{"/community/license":1},{"/community/innersourcing":1},{"/community/bugs":1}],"packages":[{"/development/environment":3},{"/development/frameworks-web/angular":3},{"/development/frameworks-web/react":3},{"/development/frameworks-mobile/ionic":3},{"/development/frameworks-mobile/react-native":3},{"/community/innersourcing":2},{"/overview":1},{"/patterns/user-auth":1},{"/community/bugs":1}],"github":[{"/community/innersourcing":4},{"/style/themes":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/ionic":2},{"/development/frameworks-mobile/react-native":2},{"/style/iconography":2},{"/overview":1},{"/community/license":1},{"/community/bugs":1},{"/community/features":1}],"repositories":[{"/overview":1},{"/style/illustrations":1},{"/community/license":1},{"/community/innersourcing":1}],"community":[{"/resources/designer":4},{"/development/frameworks-mobile/react-native":2},{"/development/testing":2},{"/community/bugs":2},{"/community/faq":2},{"/overview":1},{"/development/frameworks-mobile/intro":1},{"/design/intro":1},{"/design/anatomy":1},{"/design/project-identity":1},{"/community/features":1}],"section":[{"/patterns/account-menu":3},{"/patterns/navigation":2},{"/overview":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/community/features":1},{"/community/faq":1}],"reporting":[{"/community/bugs":2},{"/overview":1}],"bugs":[{"/community/bugs":3},{"/overview":1},{"/community/faq":1}],"requesting":[{"/overview":1}],"features":[{"/development/testing":5},{"/community/features":3},{"/patterns/empty-states":2},{"/overview":1},{"/get-started/new-project":1},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/patterns/navigation":1},{"/style/illustrations":1},{"/community/innersourcing":1},{"/community/faq":1}],"more":[{"/design/websites":12},{"/development/testing":8},{"/design/project-identity":8},{"/community/faq":7},{"/development/frameworks-web/intro":6},{"/patterns/tables":6},{"/development/frameworks-mobile/intro":5},{"/patterns/appbar":5},{"/get-started/mobile":4},{"/patterns/lists":4},{"/patterns/navigation":4},{"/get-started/new-project":3},{"/design/accessibility":3},{"/patterns/account-menu":3},{"/patterns/internationalization":2},{"/patterns/loading":2},{"/patterns/user-auth":2},{"/style/illustrations":2},{"/community/license":2},{"/community/contactus":2},{"/overview":1},{"/development/environment":1},{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/design/anatomy":1},{"/style/iconography":1},{"/style/themes":1},{"/community/bugs":1}],"compare":[{"/patterns/tables":2},{"/get-started/new-project":1},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1}],"comparison":[{"/get-started/new-project":1},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1}],"guide":[{"/development/frameworks-mobile/react-native":5},{"/development/frameworks-mobile/ionic":4},{"/style/themes":4},{"/get-started/new-project":3},{"/design/websites":3},{"/development/frameworks-web/intro":2},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/testing":2},{"/development/environment":1},{"/patterns/internationalization":1},{"/community/faq":1}],"when":[{"/development/testing":10},{"/patterns/forms":6},{"/patterns/loading":6},{"/patterns/navigation":6},{"/patterns/tables":6},{"/design/websites":5},{"/patterns/user-auth":5},{"/design/intro":4},{"/patterns/account-menu":4},{"/patterns/appbar":4},{"/patterns/internationalization":4},{"/development/frameworks-mobile/react-native":3},{"/style/illustrations":3},{"/design/project-identity":2},{"/style/color":2},{"/style/typography":2},{"/get-started/new-project":1},{"/get-started/web":1},{"/development/cli":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/overlay":1},{"/patterns/steppers":1},{"/style/iconography":1},{"/style/themes":1},{"/community/innersourcing":1},{"/community/faq":1}],"approaching":[{"/get-started/new-project":1}],"potential":[{"/get-started/new-project":1},{"/design/accessibility":1},{"/design/websites":1},{"/design/project-identity":1},{"/style/typography":1},{"/community/contactus":1}],"it":[{"/development/testing":11},{"/get-started/new-project":8},{"/development/environment":7},{"/design/websites":7},{"/design/project-identity":7},{"/patterns/navigation":6},{"/development/frameworks-mobile/react-native":5},{"/design/intro":5},{"/design/anatomy":5},{"/design/accessibility":5},{"/patterns/forms":5},{"/development/frameworks-mobile/intro":4},{"/patterns/loading":4},{"/style/color":4},{"/style/illustrations":4},{"/community/innersourcing":4},{"/get-started/web":3},{"/patterns/lists":3},{"/patterns/overlay":3},{"/style/themes":3},{"/get-started/mobile":2},{"/development/frameworks-web/react":2},{"/patterns/account-menu":2},{"/development/cli":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/style/iconography":1},{"/style/typography":1},{"/community/contactus":1}],"challenging":[{"/get-started/new-project":1}],"know":[{"/get-started/new-project":1},{"/development/frameworks-mobile/react-native":1},{"/design/project-identity":1},{"/patterns/tables":1},{"/community/bugs":1}],"where":[{"/design/websites":6},{"/patterns/tables":6},{"/design/project-identity":5},{"/patterns/forms":3},{"/design/intro":2},{"/patterns/user-auth":2},{"/get-started/new-project":1},{"/development/testing":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/style/color":1},{"/style/iconography":1},{"/style/illustrations":1},{"/style/typography":1},{"/style/themes":1},{"/community/innersourcing":1},{"/community/faq":1}],"first":[{"/development/frameworks-mobile/react-native":4},{"/design/websites":2},{"/patterns/internationalization":2},{"/get-started/new-project":1},{"/get-started/web":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/design/intro":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/loading":1},{"/patterns/user-auth":1},{"/style/typography":1},{"/community/innersourcing":1},{"/community/our-team":1}],"step":[{"/patterns/steppers":5},{"/community/innersourcing":2},{"/get-started/new-project":1},{"/development/testing":1},{"/patterns/user-auth":1}],"helpful":[{"/get-started/new-project":1},{"/design/accessibility":1},{"/patterns/tables":1},{"/resources/designer":1}],"decide":[{"/development/frameworks-web/intro":2},{"/get-started/new-project":1},{"/design/project-identity":1},{"/style/iconography":1}],"going":[{"/get-started/new-project":2},{"/design/project-identity":1},{"/patterns/user-auth":1},{"/style/iconography":1}],"both":[{"/development/frameworks-web/intro":2},{"/development/testing":2},{"/design/project-identity":2},{"/patterns/tables":2},{"/style/themes":2},{"/get-started/new-project":1},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/patterns/internationalization":1},{"/style/illustrations":1},{"/community/innersourcing":1}],"here":[{"/get-started/new-project":1},{"/development/frameworks-mobile/react-native":1},{"/design/anatomy":1},{"/design/project-identity":1},{"/patterns/lists":1},{"/patterns/user-auth":1},{"/style/themes":1}],"run":[{"/development/frameworks-mobile/ionic":11},{"/development/frameworks-mobile/react-native":7},{"/development/testing":5},{"/development/environment":3},{"/get-started/new-project":2},{"/community/bugs":2},{"/patterns/internationalization":1}],"down":[{"/patterns/tables":3},{"/get-started/new-project":1},{"/get-started/web":1},{"/get-started/mobile":1},{"/design/intro":1},{"/design/anatomy":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/user-auth":1},{"/community/bugs":1}],"these":[{"/design/project-identity":10},{"/development/testing":9},{"/patterns/user-auth":7},{"/style/iconography":6},{"/development/frameworks-web/angular":5},{"/development/frameworks-web/react":5},{"/development/frameworks-mobile/react-native":5},{"/style/color":5},{"/design/intro":4},{"/design/anatomy":4},{"/design/websites":4},{"/style/typography":4},{"/get-started/new-project":3},{"/patterns/navigation":3},{"/community/innersourcing":3},{"/community/faq":3},{"/development/frameworks-mobile/intro":2},{"/development/frameworks-mobile/ionic":2},{"/design/accessibility":2},{"/patterns/forms":2},{"/patterns/internationalization":2},{"/patterns/overlay":2},{"/patterns/tables":2},{"/style/illustrations":2},{"/community/license":2},{"/get-started/web":1},{"/development/environment":1},{"/development/cli":1},{"/development/frameworks-web/intro":1},{"/patterns/empty-states":1},{"/patterns/visualizations":1},{"/community/bugs":1}],"accessible":[{"/design/accessibility":6},{"/development/frameworks-web/intro":2},{"/design/websites":2},{"/get-started/new-project":1},{"/patterns/account-menu":1}],"over":[{"/community/faq":2},{"/get-started/new-project":1},{"/development/environment":1},{"/development/frameworks-mobile/intro":1},{"/development/testing":1},{"/design/websites":1},{"/patterns/user-auth":1}],"accessed":[{"/get-started/new-project":1},{"/get-started/web":1},{"/get-started/mobile":1},{"/patterns/account-menu":1}],"from":[{"/development/frameworks-mobile/react-native":11},{"/get-started/new-project":6},{"/style/themes":6},{"/patterns/internationalization":5},{"/community/faq":5},{"/patterns/loading":4},{"/style/illustrations":4},{"/community/innersourcing":4},{"/design/websites":3},{"/patterns/lists":3},{"/patterns/user-auth":3},{"/style/typography":3},{"/get-started/web":2},{"/development/environment":2},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/ionic":2},{"/development/testing":2},{"/design/anatomy":2},{"/patterns/overlay":2},{"/get-started/mobile":1},{"/development/frameworks-mobile/intro":1},{"/design/intro":1},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/navigation":1},{"/community/license":1},{"/community/our-team":1},{"/community/contactus":1}],"device":[{"/get-started/new-project":4},{"/design/intro":4},{"/patterns/lists":4},{"/get-started/mobile":3},{"/development/frameworks-mobile/ionic":3},{"/development/frameworks-mobile/react-native":2},{"/patterns/empty-states":2},{"/patterns/forms":2},{"/style/color":2},{"/get-started/web":1},{"/development/frameworks-mobile/intro":1},{"/style/illustrations":1}],"network":[{"/get-started/new-project":1},{"/patterns/forms":1}],"connection":[{"/get-started/new-project":1}],"browser":[{"/development/testing":4},{"/get-started/new-project":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/community/bugs":1}],"personal":[{"/get-started/new-project":1},{"/development/environment":1},{"/patterns/account-menu":1}],"computer":[{"/get-started/new-project":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/style/themes":1}],"phone":[{"/design/intro":4},{"/patterns/forms":2},{"/patterns/internationalization":2},{"/get-started/new-project":1},{"/patterns/user-auth":1},{"/style/themes":1}],"entails":[{"/get-started/new-project":2}],"app":[{"/patterns/appbar":25},{"/development/frameworks-mobile/intro":12},{"/get-started/new-project":4},{"/get-started/mobile":3},{"/development/frameworks-mobile/react-native":3},{"/development/testing":3},{"/design/intro":3},{"/patterns/account-menu":3},{"/patterns/internationalization":3},{"/development/environment":2},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/patterns/navigation":2},{"/style/color":2},{"/style/typography":2},{"/get-started/web":1},{"/design/websites":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/community/faq":1}],"used":[{"/style/color":14},{"/patterns/overlay":8},{"/patterns/navigation":6},{"/patterns/appbar":5},{"/patterns/empty-states":5},{"/get-started/new-project":4},{"/design/intro":4},{"/design/websites":4},{"/patterns/loading":4},{"/patterns/user-auth":4},{"/development/frameworks-web/angular":3},{"/development/frameworks-web/react":3},{"/development/frameworks-mobile/react-native":3},{"/design/anatomy":3},{"/design/accessibility":3},{"/design/project-identity":3},{"/patterns/lists":3},{"/patterns/steppers":3},{"/style/themes":3},{"/development/frameworks-mobile/ionic":2},{"/development/testing":2},{"/patterns/internationalization":2},{"/patterns/tables":2},{"/patterns/visualizations":2},{"/patterns/account-menu":1},{"/style/iconography":1},{"/style/illustrations":1},{"/community/license":1},{"/community/innersourcing":1}],"strictly":[{"/get-started/new-project":1},{"/get-started/mobile":1}],"devices":[{"/design/intro":5},{"/design/websites":2},{"/patterns/forms":2},{"/patterns/lists":2},{"/get-started/new-project":1},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/frameworks-mobile/react-native":1},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/style/color":1},{"/style/illustrations":1}],"e":[{"/development/testing":8},{"/patterns/forms":5},{"/design/websites":4},{"/patterns/internationalization":4},{"/development/frameworks-mobile/react-native":3},{"/get-started/new-project":2},{"/get-started/mobile":2},{"/development/frameworks-web/intro":2},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/design/accessibility":2},{"/design/project-identity":2},{"/patterns/account-menu":2},{"/patterns/lists":2},{"/patterns/overlay":2},{"/design/anatomy":1},{"/patterns/appbar":1},{"/patterns/navigation":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/style/color":1},{"/style/illustrations":1},{"/community/license":1},{"/community/faq":1}],"g":[{"/development/testing":5},{"/patterns/forms":5},{"/development/frameworks-mobile/react-native":3},{"/design/websites":3},{"/patterns/internationalization":3},{"/get-started/new-project":2},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/ionic":2},{"/design/accessibility":2},{"/design/project-identity":2},{"/patterns/account-menu":2},{"/patterns/lists":2},{"/development/frameworks-web/intro":1},{"/patterns/appbar":1},{"/patterns/navigation":1},{"/patterns/overlay":1},{"/patterns/steppers":1},{"/style/color":1},{"/community/faq":1}],"cell":[{"/get-started/new-project":1}],"phones":[{"/get-started/new-project":1},{"/design/websites":1},{"/patterns/tables":1}],"tablets":[{"/get-started/new-project":1},{"/design/websites":1}],"etc":[{"/design/accessibility":5},{"/design/websites":5},{"/style/color":4},{"/design/anatomy":3},{"/patterns/account-menu":3},{"/patterns/user-auth":3},{"/design/project-identity":2},{"/style/illustrations":2},{"/get-started/new-project":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/intro":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/overlay":1},{"/patterns/visualizations":1},{"/community/features":1},{"/community/faq":1}],"downloaded":[{"/get-started/new-project":1}],"directly":[{"/get-started/new-project":1},{"/development/frameworks-mobile/intro":1},{"/community/innersourcing":1},{"/community/bugs":1},{"/community/features":1},{"/community/faq":1},{"/community/contactus":1}],"store":[{"/development/frameworks-mobile/intro":3},{"/get-started/new-project":1}],"google":[{"/get-started/new-project":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/appbar":1},{"/patterns/user-auth":1},{"/style/iconography":1},{"/community/bugs":1}],"play":[{"/development/frameworks-mobile/intro":2},{"/get-started/new-project":1},{"/patterns/empty-states":1},{"/community/innersourcing":1},{"/resources/designer":1}],"do":[{"/community/faq":10},{"/patterns/tables":4},{"/patterns/user-auth":4},{"/style/illustrations":4},{"/get-started/new-project":2},{"/design/accessibility":2},{"/design/project-identity":2},{"/patterns/empty-states":2},{"/patterns/internationalization":2},{"/patterns/lists":2},{"/style/color":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/websites":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/loading":1},{"/patterns/overlay":1},{"/style/iconography":1},{"/community/contactus":1}],"have":[{"/community/faq":20},{"/development/frameworks-mobile/react-native":7},{"/patterns/navigation":7},{"/development/environment":6},{"/development/frameworks-web/intro":5},{"/development/frameworks-web/angular":5},{"/development/frameworks-web/react":5},{"/development/frameworks-mobile/intro":5},{"/patterns/tables":5},{"/development/frameworks-mobile/ionic":4},{"/design/project-identity":4},{"/patterns/internationalization":4},{"/patterns/user-auth":4},{"/design/accessibility":3},{"/patterns/account-menu":3},{"/patterns/forms":3},{"/community/innersourcing":3},{"/get-started/web":2},{"/development/cli":2},{"/development/testing":2},{"/design/intro":2},{"/design/anatomy":2},{"/design/websites":2},{"/patterns/appbar":2},{"/patterns/lists":2},{"/style/color":2},{"/style/iconography":2},{"/get-started/new-project":1},{"/patterns/empty-states":1},{"/patterns/overlay":1},{"/style/illustrations":1},{"/style/typography":1},{"/style/themes":1},{"/community/license":1},{"/community/contactus":1}],"connected":[{"/get-started/new-project":2},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/user-auth":1}],"internet":[{"/get-started/new-project":1},{"/get-started/web":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1}],"difference":[{"/get-started/new-project":1},{"/design/intro":1},{"/patterns/user-auth":1}],"native":[{"/development/frameworks-mobile/react-native":47},{"/get-started/mobile":9},{"/development/frameworks-mobile/intro":8},{"/patterns/lists":5},{"/style/themes":5},{"/development/testing":4},{"/patterns/overlay":4},{"/patterns/tables":4},{"/development/cli":3},{"/development/frameworks-mobile/ionic":3},{"/patterns/loading":3},{"/patterns/account-menu":2},{"/patterns/appbar":2},{"/patterns/empty-states":2},{"/patterns/forms":2},{"/patterns/internationalization":2},{"/patterns/navigation":2},{"/patterns/steppers":2},{"/patterns/user-auth":2},{"/community/bugs":2},{"/community/faq":2},{"/get-started/new-project":1},{"/community/innersourcing":1},{"/community/features":1}],"hybrid":[{"/get-started/mobile":7},{"/development/frameworks-mobile/intro":3},{"/get-started/new-project":1},{"/development/environment":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/style/themes":1}],"apps":[{"/get-started/mobile":7},{"/get-started/new-project":1},{"/development/frameworks-mobile/react-native":1}],"deciding":[{"/patterns/tables":2},{"/get-started/new-project":1}],"kind":[{"/get-started/new-project":1},{"/patterns/loading":1}],"nature":[{"/get-started/new-project":1},{"/community/innersourcing":1}],"often":[{"/patterns/tables":4},{"/design/websites":3},{"/style/typography":2},{"/get-started/new-project":1},{"/development/environment":1},{"/design/anatomy":1},{"/patterns/appbar":1},{"/style/themes":1}],"determines":[{"/get-started/new-project":1}],"which":[{"/style/themes":4},{"/design/project-identity":2},{"/patterns/account-menu":2},{"/patterns/tables":2},{"/style/typography":2},{"/get-started/new-project":1},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/development/testing":1},{"/design/accessibility":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/steppers":1},{"/style/color":1},{"/style/iconography":1},{"/community/faq":1}],"type":[{"/patterns/forms":3},{"/get-started/new-project":2},{"/style/typography":2},{"/design/intro":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/patterns/overlay":1}],"replacing":[{"/get-started/new-project":1}],"existing":[{"/get-started/new-project":4},{"/development/frameworks-web/angular":3},{"/development/frameworks-web/react":3},{"/development/frameworks-mobile/react-native":3},{"/development/frameworks-mobile/ionic":2},{"/development/testing":2},{"/development/frameworks-mobile/intro":1},{"/patterns/forms":1},{"/patterns/overlay":1},{"/style/iconography":1},{"/style/illustrations":1},{"/community/innersourcing":1},{"/community/faq":1},{"/community/our-team":1}],"product":[{"/design/websites":7},{"/get-started/new-project":5},{"/design/project-identity":5},{"/design/intro":3},{"/design/accessibility":2},{"/patterns/internationalization":2},{"/style/illustrations":2},{"/community/faq":2},{"/development/testing":1},{"/design/anatomy":1},{"/patterns/navigation":1},{"/patterns/user-auth":1},{"/style/color":1},{"/style/typography":1}],"think":[{"/get-started/new-project":2},{"/patterns/tables":1},{"/community/innersourcing":1},{"/community/faq":1}],"gather":[{"/get-started/new-project":1}],"feedback":[{"/community/contactus":3},{"/get-started/new-project":2},{"/design/intro":2},{"/patterns/forms":1}],"users":[{"/patterns/tables":18},{"/design/websites":15},{"/patterns/user-auth":15},{"/design/intro":7},{"/design/accessibility":7},{"/patterns/forms":6},{"/patterns/loading":4},{"/get-started/new-project":3},{"/patterns/internationalization":3},{"/patterns/overlay":3},{"/patterns/steppers":3},{"/design/project-identity":2},{"/patterns/account-menu":2},{"/patterns/empty-states":2},{"/patterns/navigation":2},{"/patterns/visualizations":2},{"/style/typography":2},{"/get-started/mobile":1},{"/development/frameworks-mobile/intro":1},{"/patterns/appbar":1},{"/style/illustrations":1}],"identify":[{"/development/testing":2},{"/get-started/new-project":1},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/loading":1},{"/patterns/tables":1}],"areas":[{"/design/project-identity":3},{"/design/websites":2},{"/get-started/new-project":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/navigation":1},{"/style/typography":1},{"/community/faq":1}],"improvement":[{"/get-started/new-project":1},{"/community/contactus":1}],"general":[{"/get-started/new-project":2},{"/design/intro":2},{"/design/websites":2},{"/patterns/forms":2},{"/get-started/mobile":1},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/project-identity":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/style/typography":1},{"/community/faq":1}],"want":[{"/get-started/new-project":5},{"/development/frameworks-web/react":4},{"/development/frameworks-mobile/react-native":4},{"/design/project-identity":3},{"/community/faq":3},{"/get-started/web":2},{"/development/environment":2},{"/development/frameworks-web/angular":2},{"/development/frameworks-mobile/ionic":2},{"/patterns/loading":2},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/tables":1},{"/community/features":1}],"at":[{"/design/websites":5},{"/development/frameworks-mobile/react-native":3},{"/patterns/account-menu":3},{"/patterns/tables":3},{"/patterns/empty-states":2},{"/patterns/forms":2},{"/patterns/lists":2},{"/style/themes":2},{"/community/faq":2},{"/get-started/new-project":1},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/testing":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/steppers":1},{"/patterns/visualizations":1},{"/style/color":1},{"/style/illustrations":1},{"/style/typography":1},{"/community/our-team":1},{"/community/contactus":1}],"least":[{"/get-started/new-project":1},{"/development/environment":1},{"/patterns/account-menu":1},{"/style/illustrations":1},{"/style/typography":1}],"before":[{"/get-started/new-project":3},{"/patterns/tables":3},{"/community/innersourcing":3},{"/development/frameworks-mobile/react-native":2},{"/patterns/overlay":2},{"/development/environment":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/design/project-identity":1},{"/patterns/forms":1},{"/patterns/user-auth":1},{"/community/faq":1}],"unless":[{"/get-started/new-project":1},{"/design/accessibility":1},{"/patterns/forms":1}],"user":[{"/patterns/account-menu":29},{"/patterns/user-auth":18},{"/patterns/forms":12},{"/development/testing":8},{"/design/anatomy":5},{"/design/websites":5},{"/patterns/appbar":5},{"/patterns/overlay":5},{"/style/color":4},{"/patterns/loading":3},{"/patterns/tables":3},{"/design/intro":2},{"/design/accessibility":2},{"/patterns/empty-states":2},{"/patterns/internationalization":2},{"/patterns/navigation":2},{"/patterns/steppers":2},{"/get-started/new-project":1},{"/design/project-identity":1},{"/patterns/visualizations":1},{"/community/our-team":1}],"suggests":[{"/get-started/new-project":1},{"/get-started/web":1},{"/patterns/empty-states":1}],"had":[{"/get-started/new-project":1}],"may":[{"/design/project-identity":7},{"/development/environment":5},{"/patterns/lists":5},{"/patterns/tables":5},{"/style/illustrations":5},{"/patterns/empty-states":4},{"/patterns/loading":4},{"/community/faq":4},{"/get-started/new-project":3},{"/development/frameworks-mobile/react-native":3},{"/design/anatomy":3},{"/patterns/account-menu":3},{"/patterns/appbar":3},{"/patterns/forms":3},{"/patterns/internationalization":3},{"/patterns/user-auth":3},{"/style/color":3},{"/community/innersourcing":3},{"/development/frameworks-web/intro":2},{"/development/frameworks-mobile/intro":2},{"/patterns/navigation":2},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/design/intro":1},{"/design/accessibility":1},{"/patterns/overlay":1},{"/style/iconography":1},{"/style/typography":1},{"/community/license":1},{"/community/features":1}],"responsive":[{"/get-started/web":3},{"/get-started/new-project":2},{"/patterns/lists":2},{"/patterns/tables":2},{"/design/websites":1}],"time":[{"/patterns/loading":5},{"/development/testing":4},{"/community/faq":3},{"/get-started/mobile":2},{"/design/project-identity":2},{"/community/innersourcing":2},{"/get-started/new-project":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/style/iconography":1},{"/style/themes":1},{"/community/bugs":1}],"alternatively":[{"/get-started/new-project":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/appbar":1},{"/style/illustrations":1},{"/community/innersourcing":1},{"/community/features":1}],"expand":[{"/get-started/new-project":1},{"/patterns/tables":1},{"/style/themes":1}],"offering":[{"/get-started/new-project":1},{"/patterns/tables":1}],"brand":[{"/design/project-identity":7},{"/get-started/new-project":1},{"/design/intro":1},{"/design/anatomy":1},{"/design/websites":1},{"/community/faq":1},{"/community/our-team":1}],"never":[{"/design/project-identity":3},{"/get-started/new-project":1},{"/patterns/lists":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/style/illustrations":1}],"seen":[{"/get-started/new-project":1},{"/patterns/appbar":1}],"does":[{"/patterns/user-auth":2},{"/get-started/new-project":1},{"/development/frameworks-mobile/intro":1},{"/development/testing":1},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/community/innersourcing":1},{"/community/faq":1}],"offer":[{"/patterns/forms":2},{"/get-started/new-project":1},{"/get-started/mobile":1},{"/design/accessibility":1},{"/community/faq":1}],"access":[{"/development/frameworks-mobile/intro":3},{"/community/faq":3},{"/get-started/new-project":2},{"/development/frameworks-web/angular":2},{"/development/testing":2},{"/design/accessibility":2},{"/patterns/account-menu":2},{"/patterns/navigation":2},{"/patterns/user-auth":2},{"/get-started/web":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1}],"go":[{"/community/faq":3},{"/get-started/new-project":2},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/design/intro":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/user-auth":1},{"/style/illustrations":1}],"actively":[{"/get-started/new-project":1}],"field":[{"/patterns/forms":17},{"/patterns/appbar":2},{"/get-started/new-project":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/style/themes":1}],"something":[{"/patterns/loading":2},{"/community/faq":2},{"/get-started/new-project":1},{"/get-started/mobile":1},{"/patterns/user-auth":1},{"/community/innersourcing":1},{"/community/features":1}],"likely":[{"/development/testing":3},{"/get-started/new-project":1},{"/patterns/account-menu":1},{"/patterns/loading":1}],"desk":[{"/get-started/new-project":1}],"t":[{"/development/environment":2},{"/patterns/internationalization":2},{"/community/faq":2},{"/get-started/new-project":1},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/design/intro":1},{"/design/websites":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/style/iconography":1}],"wrong":[{"/get-started/new-project":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1}],"due":[{"/get-started/new-project":1}],"diligence":[{"/get-started/new-project":1}],"properly":[{"/get-started/new-project":1},{"/patterns/forms":1}],"able":[{"/design/accessibility":4},{"/community/faq":3},{"/development/environment":2},{"/patterns/tables":2},{"/patterns/user-auth":2},{"/get-started/new-project":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/design/intro":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/style/iconography":1}],"suspect":[{"/get-started/new-project":1}],"primary":[{"/patterns/navigation":5},{"/patterns/tables":3},{"/patterns/account-menu":2},{"/patterns/appbar":2},{"/patterns/overlay":2},{"/patterns/user-auth":2},{"/get-started/new-project":1},{"/get-started/mobile":1},{"/development/frameworks-mobile/react-native":1},{"/design/websites":1},{"/patterns/internationalization":1},{"/style/color":1},{"/style/typography":1},{"/community/innersourcing":1},{"/community/bugs":1},{"/community/faq":1}],"mode":[{"/patterns/tables":2},{"/style/color":2},{"/get-started/new-project":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/style/themes":1}],"interacting":[{"/get-started/new-project":1}],"needs":[{"/design/intro":2},{"/style/typography":2},{"/get-started/new-project":1},{"/get-started/web":1},{"/development/testing":1},{"/patterns/internationalization":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/style/illustrations":1},{"/community/faq":1}],"offline":[{"/get-started/new-project":1},{"/get-started/mobile":1},{"/patterns/lists":1}],"consider":[{"/development/testing":3},{"/design/intro":3},{"/patterns/internationalization":3},{"/patterns/tables":3},{"/get-started/new-project":1},{"/get-started/web":1},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/user-auth":1},{"/style/iconography":1},{"/style/typography":1}],"building":[{"/development/environment":4},{"/design/anatomy":2},{"/get-started/new-project":1},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/design/project-identity":1}],"dedicated":[{"/patterns/account-menu":2},{"/get-started/new-project":1},{"/development/frameworks-mobile/intro":1},{"/development/testing":1},{"/design/intro":1}],"framework":[{"/development/frameworks-web/intro":7},{"/development/testing":6},{"/get-started/web":5},{"/development/frameworks-mobile/intro":4},{"/get-started/mobile":2},{"/community/faq":2},{"/development/environment":1},{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/internationalization":1},{"/community/license":1},{"/community/bugs":1},{"/community/features":1}],"everywhere":[{"/get-started/web":1},{"/design/project-identity":1}],"name":[{"/development/frameworks-mobile/react-native":3},{"/patterns/account-menu":3},{"/patterns/internationalization":3},{"/patterns/navigation":2},{"/get-started/web":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/design/accessibility":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/style/illustrations":1},{"/style/themes":1},{"/community/license":1},{"/resources/designer":1}],"means":[{"/design/accessibility":2},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/testing":1},{"/patterns/appbar":1}],"lot":[{"/get-started/web":2},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/overlay":1}],"but":[{"/design/project-identity":4},{"/community/faq":4},{"/patterns/empty-states":3},{"/get-started/mobile":2},{"/development/frameworks-mobile/intro":2},{"/development/frameworks-mobile/ionic":2},{"/development/frameworks-mobile/react-native":2},{"/design/anatomy":2},{"/patterns/account-menu":2},{"/patterns/appbar":2},{"/patterns/navigation":2},{"/style/typography":2},{"/community/license":2},{"/community/bugs":2},{"/get-started/web":1},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/design/intro":1},{"/design/websites":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/user-auth":1},{"/patterns/visualizations":1},{"/style/illustrations":1}],"comes":[{"/development/testing":2},{"/get-started/web":1},{"/development/environment":1},{"/development/frameworks-mobile/react-native":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/lists":1}],"extra":[{"/get-started/web":1},{"/style/iconography":1}],"responsibility":[{"/get-started/web":1}],"them":[{"/development/frameworks-mobile/intro":3},{"/design/intro":3},{"/patterns/forms":3},{"/patterns/lists":3},{"/patterns/user-auth":3},{"/get-started/web":2},{"/style/illustrations":2},{"/community/innersourcing":2},{"/community/faq":2},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/accessibility":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/loading":1},{"/patterns/overlay":1},{"/patterns/steppers":1},{"/style/color":1},{"/style/themes":1},{"/resources/designer":1}],"critical":[{"/get-started/web":1},{"/development/testing":1},{"/design/websites":1},{"/patterns/lists":1},{"/patterns/overlay":1}],"today":[{"/get-started/web":1}],"nearly":[{"/get-started/web":1},{"/design/anatomy":1},{"/design/websites":1}],"infinite":[{"/patterns/tables":2},{"/get-started/web":1}],"capable":[{"/get-started/web":1},{"/development/frameworks-mobile/intro":1}],"available":[{"/patterns/empty-states":4},{"/style/iconography":4},{"/style/themes":4},{"/community/faq":4},{"/development/frameworks-web/react":3},{"/development/frameworks-mobile/react-native":3},{"/development/testing":3},{"/patterns/internationalization":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-mobile/intro":2},{"/design/project-identity":2},{"/patterns/loading":2},{"/style/color":2},{"/community/our-team":2},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/environment":1},{"/development/cli":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/ionic":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/patterns/account-menu":1},{"/patterns/steppers":1},{"/style/typography":1},{"/community/license":1},{"/community/innersourcing":1}],"ll":[{"/development/frameworks-mobile/react-native":4},{"/development/frameworks-web/react":3},{"/get-started/web":2},{"/development/frameworks-mobile/ionic":2},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/design/intro":1},{"/patterns/appbar":1},{"/style/typography":1}],"look":[{"/get-started/mobile":2},{"/design/intro":2},{"/design/websites":2},{"/style/themes":2},{"/get-started/web":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/tables":1},{"/style/iconography":1},{"/style/illustrations":1},{"/community/faq":1},{"/community/contactus":1}],"great":[{"/get-started/web":1},{"/development/environment":1},{"/design/project-identity":1},{"/patterns/empty-states":1},{"/patterns/overlay":1},{"/community/innersourcing":1},{"/community/faq":1}],"much":[{"/community/faq":3},{"/get-started/web":2},{"/design/intro":2},{"/patterns/tables":2},{"/design/project-identity":1},{"/patterns/overlay":1},{"/community/innersourcing":1}],"easier":[{"/get-started/web":2},{"/get-started/mobile":2},{"/development/testing":1},{"/design/intro":1},{"/patterns/lists":1},{"/patterns/visualizations":1},{"/style/color":1},{"/community/innersourcing":1}],"fit":[{"/get-started/web":1},{"/patterns/lists":1},{"/patterns/navigation":1}],"into":[{"/patterns/tables":4},{"/patterns/appbar":3},{"/patterns/forms":3},{"/development/testing":2},{"/community/innersourcing":2},{"/community/bugs":2},{"/get-started/web":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1},{"/design/anatomy":1},{"/design/project-identity":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/overlay":1},{"/patterns/steppers":1},{"/style/color":1},{"/style/iconography":1},{"/style/illustrations":1},{"/style/typography":1},{"/style/themes":1},{"/community/license":1},{"/community/faq":1},{"/resources/designer":1}],"sized":[{"/get-started/web":1},{"/design/websites":1}],"display":[{"/patterns/lists":3},{"/patterns/empty-states":2},{"/patterns/internationalization":2},{"/patterns/overlay":2},{"/patterns/tables":2},{"/get-started/web":1},{"/patterns/account-menu":1},{"/patterns/loading":1},{"/style/color":1},{"/style/typography":1}],"scale":[{"/get-started/web":2},{"/design/intro":2},{"/style/typography":2},{"/patterns/loading":1},{"/community/our-team":1}],"desktop":[{"/patterns/lists":3},{"/patterns/navigation":3},{"/community/faq":3},{"/get-started/web":2},{"/design/intro":2},{"/patterns/steppers":2},{"/development/testing":1},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/style/illustrations":1}],"size":[{"/design/accessibility":2},{"/get-started/web":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/loading":1},{"/patterns/tables":1},{"/style/iconography":1},{"/style/typography":1}],"than":[{"/design/websites":6},{"/patterns/navigation":4},{"/development/testing":3},{"/design/intro":3},{"/patterns/appbar":3},{"/patterns/account-menu":2},{"/patterns/loading":2},{"/patterns/overlay":2},{"/style/illustrations":2},{"/community/faq":2},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/frameworks-mobile/react-native":1},{"/design/project-identity":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/tables":1},{"/style/typography":1}],"then":[{"/get-started/web":1},{"/patterns/user-auth":1}],"there":[{"/development/testing":7},{"/patterns/forms":7},{"/design/project-identity":5},{"/patterns/empty-states":5},{"/development/environment":4},{"/development/frameworks-mobile/react-native":4},{"/patterns/internationalization":4},{"/community/faq":4},{"/patterns/account-menu":3},{"/patterns/lists":3},{"/patterns/loading":3},{"/patterns/navigation":3},{"/get-started/web":2},{"/development/frameworks-mobile/intro":2},{"/design/websites":2},{"/patterns/tables":2},{"/patterns/steppers":2},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/patterns/overlay":1},{"/patterns/user-auth":1},{"/patterns/visualizations":1},{"/style/iconography":1},{"/style/typography":1}],"wonderful":[{"/get-started/web":1}],"tons":[{"/get-started/web":1}],"options":[{"/patterns/internationalization":2},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/frameworks-mobile/intro":1},{"/design/websites":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/style/iconography":1},{"/style/illustrations":1}],"proceed":[{"/get-started/web":1},{"/patterns/loading":1},{"/patterns/user-auth":1}],"most":[{"/style/typography":7},{"/patterns/navigation":6},{"/development/testing":5},{"/patterns/account-menu":4},{"/patterns/forms":4},{"/design/accessibility":3},{"/development/frameworks-mobile/react-native":2},{"/design/intro":2},{"/design/anatomy":2},{"/design/websites":2},{"/patterns/lists":2},{"/patterns/overlay":2},{"/patterns/visualizations":2},{"/style/color":2},{"/style/themes":2},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/loading":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/community/license":1},{"/community/innersourcing":1},{"/community/faq":1}],"modern":[{"/development/testing":2},{"/get-started/web":1},{"/development/environment":1},{"/community/license":1}],"built":[{"/development/frameworks-mobile/react-native":4},{"/get-started/mobile":2},{"/development/frameworks-mobile/intro":2},{"/development/testing":2},{"/patterns/internationalization":2},{"/community/innersourcing":2},{"/get-started/web":1},{"/development/frameworks-web/intro":1},{"/design/anatomy":1},{"/design/websites":1},{"/patterns/visualizations":1},{"/style/iconography":1},{"/community/license":1},{"/community/faq":1},{"/community/our-team":1}],"html":[{"/development/frameworks-web/angular":3},{"/get-started/web":2},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1}],"css":[{"/development/testing":3},{"/get-started/web":2},{"/development/frameworks-mobile/intro":1}],"sit":[{"/get-started/web":1},{"/patterns/lists":1},{"/patterns/navigation":1}],"inside":[{"/get-started/web":1},{"/get-started/mobile":1},{"/development/testing":1},{"/design/project-identity":1},{"/patterns/lists":1},{"/patterns/navigation":1}],"javascript":[{"/get-started/web":4},{"/development/frameworks-web/intro":3},{"/development/testing":3},{"/development/environment":2},{"/get-started/mobile":1},{"/development/cli":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/community/bugs":1},{"/community/features":1}],"very":[{"/design/anatomy":2},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/development/testing":1},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/style/illustrations":1}],"small":[{"/patterns/loading":2},{"/get-started/web":1},{"/patterns/tables":1},{"/patterns/visualizations":1}],"don":[{"/development/environment":2},{"/patterns/internationalization":2},{"/get-started/web":1},{"/development/frameworks-web/intro":1},{"/design/intro":1},{"/design/websites":1},{"/patterns/lists":1},{"/community/faq":1}],"really":[{"/get-started/web":1},{"/patterns/tables":1}],"infrastructure":[{"/get-started/web":1}],"certainly":[{"/get-started/web":1}],"static":[{"/get-started/web":1},{"/design/websites":1},{"/patterns/lists":1},{"/style/illustrations":1}],"just":[{"/get-started/web":1},{"/development/testing":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/patterns/appbar":1}],"vanilla":[{"/development/frameworks-mobile/react-native":2},{"/get-started/web":1}],"without":[{"/design/accessibility":2},{"/community/license":2},{"/get-started/web":1},{"/development/testing":1},{"/patterns/appbar":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/style/color":1},{"/community/faq":1}],"entire":[{"/patterns/lists":3},{"/patterns/empty-states":2},{"/get-started/web":1},{"/development/frameworks-web/intro":1},{"/development/testing":1}],"angular":[{"/development/frameworks-web/angular":31},{"/development/testing":8},{"/development/frameworks-mobile/ionic":7},{"/style/themes":7},{"/development/frameworks-web/intro":6},{"/patterns/appbar":4},{"/patterns/lists":4},{"/patterns/account-menu":3},{"/patterns/loading":3},{"/patterns/navigation":3},{"/patterns/steppers":3},{"/community/bugs":3},{"/community/faq":3},{"/development/cli":2},{"/development/frameworks-mobile/intro":2},{"/patterns/empty-states":2},{"/patterns/forms":2},{"/patterns/internationalization":2},{"/patterns/overlay":2},{"/patterns/tables":2},{"/patterns/user-auth":2},{"/community/features":2},{"/get-started/web":1},{"/patterns/visualizations":1},{"/community/innersourcing":1},{"/community/our-team":1}],"react":[{"/development/frameworks-mobile/react-native":48},{"/development/frameworks-web/react":19},{"/development/testing":12},{"/style/themes":10},{"/development/frameworks-mobile/intro":9},{"/development/cli":6},{"/patterns/internationalization":6},{"/patterns/loading":6},{"/patterns/lists":5},{"/patterns/overlay":5},{"/development/frameworks-web/intro":4},{"/patterns/account-menu":4},{"/patterns/appbar":4},{"/patterns/empty-states":4},{"/patterns/navigation":4},{"/patterns/user-auth":4},{"/community/bugs":4},{"/community/faq":4},{"/patterns/forms":3},{"/patterns/tables":3},{"/patterns/steppers":3},{"/community/innersourcing":2},{"/community/features":2},{"/get-started/web":1},{"/patterns/visualizations":1},{"/community/our-team":1}],"pros":[{"/get-started/web":1},{"/development/frameworks-web/intro":1}],"cons":[{"/get-started/web":1},{"/development/frameworks-web/intro":1}],"each":[{"/development/testing":3},{"/patterns/tables":3},{"/design/anatomy":2},{"/patterns/forms":2},{"/patterns/navigation":2},{"/get-started/web":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/react-native":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/style/color":1},{"/style/illustrations":1},{"/community/faq":1}],"frameworks":[{"/development/testing":6},{"/development/frameworks-web/intro":4},{"/community/faq":4},{"/development/environment":2},{"/development/cli":2},{"/development/frameworks-mobile/intro":2},{"/get-started/web":1},{"/style/iconography":1}],"one":[{"/development/frameworks-web/angular":3},{"/design/anatomy":3},{"/development/frameworks-web/intro":2},{"/development/frameworks-mobile/react-native":2},{"/development/testing":2},{"/patterns/forms":2},{"/patterns/lists":2},{"/style/typography":2},{"/community/innersourcing":2},{"/community/faq":2},{"/get-started/web":1},{"/get-started/mobile":1},{"/development/environment":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/patterns/user-auth":1},{"/style/iconography":1},{"/style/themes":1},{"/community/bugs":1},{"/community/contactus":1}],"goals":[{"/get-started/web":1},{"/patterns/tables":1},{"/community/innersourcing":1},{"/community/faq":1}],"maximize":[{"/design/websites":2},{"/get-started/web":1},{"/style/illustrations":1},{"/community/faq":1}],"maintainability":[{"/get-started/web":1}],"standardizing":[{"/get-started/web":1},{"/style/typography":1}],"certain":[{"/patterns/internationalization":2},{"/get-started/web":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/anatomy":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/patterns/steppers":1}],"those":[{"/get-started/web":1},{"/design/accessibility":1},{"/design/project-identity":1},{"/style/illustrations":1},{"/community/bugs":1},{"/community/features":1}],"trade":[{"/get-started/web":1}],"offs":[{"/get-started/web":1}],"popular":[{"/development/testing":4},{"/get-started/mobile":1},{"/development/frameworks-mobile/react-native":1}],"anywhere":[{"/get-started/mobile":1}],"take":[{"/get-started/mobile":3},{"/patterns/account-menu":3},{"/patterns/tables":2},{"/style/iconography":2},{"/development/environment":1},{"/development/testing":1},{"/design/intro":1},{"/design/anatomy":1},{"/design/websites":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/visualizations":1},{"/style/typography":1},{"/community/bugs":1}],"online":[{"/community/innersourcing":2},{"/get-started/mobile":1},{"/development/testing":1},{"/design/accessibility":1},{"/patterns/lists":1},{"/style/illustrations":1}],"greater":[{"/development/frameworks-web/intro":2},{"/get-started/mobile":1},{"/design/intro":1},{"/design/accessibility":1},{"/patterns/appbar":1}],"advantage":[{"/get-started/mobile":1},{"/development/frameworks-mobile/ionic":1},{"/design/intro":1},{"/patterns/navigation":1},{"/style/iconography":1},{"/community/bugs":1}],"capabilities":[{"/get-started/mobile":1},{"/design/intro":1}],"come":[{"/get-started/mobile":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/empty-states":1},{"/patterns/overlay":1},{"/patterns/visualizations":1}],"two":[{"/patterns/user-auth":4},{"/get-started/mobile":2},{"/design/project-identity":2},{"/patterns/lists":2},{"/patterns/navigation":2},{"/style/themes":2},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/patterns/forms":1},{"/patterns/tables":1},{"/community/faq":1},{"/community/our-team":1}],"varieties":[{"/get-started/mobile":1},{"/development/testing":1}],"must":[{"/design/accessibility":5},{"/design/project-identity":2},{"/patterns/overlay":2},{"/community/license":2},{"/get-started/mobile":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/account-menu":1},{"/patterns/forms":1},{"/patterns/user-auth":1},{"/style/themes":1}],"using":[{"/development/frameworks-mobile/react-native":11},{"/community/faq":8},{"/development/frameworks-web/angular":6},{"/patterns/account-menu":6},{"/patterns/internationalization":6},{"/development/frameworks-web/react":5},{"/development/frameworks-mobile/ionic":5},{"/design/intro":5},{"/design/accessibility":5},{"/style/color":5},{"/get-started/mobile":4},{"/development/testing":4},{"/design/websites":4},{"/patterns/navigation":4},{"/patterns/tables":4},{"/style/illustrations":4},{"/development/environment":3},{"/development/frameworks-mobile/intro":3},{"/patterns/user-auth":3},{"/style/typography":3},{"/community/innersourcing":3},{"/development/frameworks-web/intro":2},{"/patterns/forms":2},{"/patterns/lists":2},{"/patterns/loading":2},{"/community/bugs":2},{"/development/cli":1},{"/design/project-identity":1},{"/patterns/visualizations":1},{"/style/iconography":1},{"/style/themes":1},{"/community/license":1},{"/community/features":1}],"runs":[{"/get-started/mobile":1},{"/development/frameworks-mobile/intro":1}],"java":[{"/get-started/mobile":1}],"android":[{"/get-started/mobile":6},{"/development/frameworks-mobile/react-native":4},{"/development/frameworks-mobile/ionic":3},{"/development/environment":2}],"swift":[{"/get-started/mobile":1}],"objective":[{"/get-started/mobile":1}],"c":[{"/get-started/mobile":1},{"/community/license":1}],"ios":[{"/get-started/mobile":6},{"/development/frameworks-mobile/ionic":6},{"/development/environment":2},{"/development/frameworks-mobile/react-native":1}],"should":[{"/patterns/forms":25},{"/design/websites":23},{"/patterns/user-auth":15},{"/design/accessibility":13},{"/design/intro":11},{"/patterns/loading":11},{"/patterns/tables":11},{"/design/project-identity":10},{"/patterns/internationalization":10},{"/development/testing":9},{"/patterns/account-menu":8},{"/patterns/empty-states":8},{"/patterns/lists":7},{"/patterns/overlay":6},{"/style/illustrations":6},{"/style/typography":5},{"/style/color":4},{"/get-started/mobile":3},{"/development/environment":3},{"/community/faq":3},{"/design/anatomy":2},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/appbar":1},{"/patterns/navigation":1},{"/patterns/visualizations":1},{"/style/iconography":1},{"/style/themes":1},{"/community/license":1}],"platforms":[{"/get-started/mobile":3},{"/patterns/user-auth":2},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/patterns/tables":1},{"/community/bugs":1}],"dominant":[{"/get-started/mobile":1}],"players":[{"/get-started/mobile":1},{"/development/environment":1}],"market":[{"/patterns/internationalization":7},{"/get-started/mobile":2},{"/development/environment":1},{"/development/frameworks-mobile/react-native":1}],"particular":[{"/design/websites":3},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/development/testing":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/navigation":1},{"/style/typography":1},{"/community/license":1}],"prevalent":[{"/get-started/mobile":1}],"target":[{"/development/testing":2},{"/design/project-identity":2},{"/get-started/mobile":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/tables":1}],"maintained":[{"/development/frameworks-web/intro":2},{"/get-started/mobile":1}],"single":[{"/patterns/lists":3},{"/get-started/mobile":2},{"/design/anatomy":1},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/overlay":1},{"/style/color":1},{"/community/our-team":1}],"base":[{"/get-started/mobile":3},{"/development/frameworks-mobile/react-native":1},{"/style/themes":1}],"deployed":[{"/get-started/mobile":1}],"multiple":[{"/patterns/forms":4},{"/patterns/tables":3},{"/get-started/mobile":2},{"/style/illustrations":2},{"/style/typography":2},{"/development/environment":1},{"/development/testing":1},{"/design/accessibility":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/navigation":1}],"namely":[{"/get-started/mobile":1}],"i":[{"/community/faq":7},{"/development/testing":3},{"/get-started/mobile":2},{"/development/frameworks-web/intro":2},{"/development/frameworks-mobile/intro":1},{"/design/anatomy":1},{"/design/websites":1},{"/patterns/internationalization":1},{"/patterns/overlay":1},{"/style/illustrations":1},{"/community/license":1}],"low":[{"/get-started/mobile":1},{"/design/accessibility":1},{"/style/color":1},{"/style/themes":1},{"/community/innersourcing":1}],"barrier":[{"/get-started/mobile":1}],"entry":[{"/get-started/mobile":1},{"/development/environment":1},{"/development/frameworks-mobile/ionic":1},{"/patterns/tables":1}],"developers":[{"/development/frameworks-web/intro":3},{"/community/faq":2},{"/get-started/mobile":1},{"/design/intro":1},{"/design/anatomy":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/patterns/visualizations":1},{"/style/color":1},{"/style/themes":1},{"/community/innersourcing":1},{"/community/features":1},{"/community/our-team":1}],"implemented":[{"/get-started/mobile":1},{"/design/anatomy":1}],"differently":[{"/get-started/mobile":1}],"depending":[{"/development/environment":3},{"/design/project-identity":3},{"/patterns/forms":2},{"/community/innersourcing":2},{"/get-started/mobile":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/overlay":1},{"/patterns/visualizations":1}],"some":[{"/design/project-identity":8},{"/community/faq":5},{"/patterns/forms":4},{"/patterns/user-auth":4},{"/development/testing":3},{"/patterns/internationalization":3},{"/style/themes":3},{"/development/frameworks-mobile/ionic":2},{"/design/anatomy":2},{"/design/websites":2},{"/patterns/loading":2},{"/get-started/mobile":1},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/design/intro":1},{"/design/accessibility":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/style/illustrations":1},{"/style/typography":1},{"/community/innersourcing":1}],"compile":[{"/get-started/mobile":1}],"others":[{"/get-started/mobile":1},{"/community/bugs":1}],"render":[{"/get-started/mobile":1},{"/patterns/tables":1}],"content":[{"/patterns/navigation":10},{"/design/websites":8},{"/patterns/overlay":7},{"/design/accessibility":5},{"/patterns/appbar":4},{"/development/testing":3},{"/patterns/loading":3},{"/patterns/account-menu":2},{"/patterns/lists":2},{"/get-started/mobile":1},{"/design/intro":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/tables":1},{"/style/typography":1},{"/community/faq":1}],"view":[{"/patterns/tables":5},{"/patterns/lists":4},{"/get-started/mobile":1},{"/design/accessibility":1},{"/patterns/account-menu":1},{"/style/iconography":1}],"essentially":[{"/get-started/mobile":1}],"running":[{"/development/frameworks-mobile/react-native":5},{"/development/environment":2},{"/development/frameworks-mobile/ionic":2},{"/development/testing":2},{"/get-started/mobile":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/style/color":1}],"comparing":[{"/get-started/mobile":1}],"guaranteed":[{"/get-started/mobile":1}],"since":[{"/get-started/mobile":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/patterns/account-menu":1}],"uses":[{"/design/project-identity":2},{"/patterns/navigation":2},{"/style/themes":2},{"/get-started/mobile":1},{"/development/frameworks-mobile/ionic":1},{"/patterns/account-menu":1},{"/style/color":1}],"requires":[{"/development/frameworks-mobile/intro":3},{"/get-started/mobile":2},{"/development/frameworks-mobile/react-native":2},{"/design/accessibility":1},{"/patterns/internationalization":1},{"/patterns/user-auth":1},{"/community/innersourcing":1}],"specialized":[{"/get-started/mobile":1}],"expertise":[{"/get-started/mobile":1}],"separate":[{"/get-started/mobile":1},{"/patterns/internationalization":1},{"/patterns/overlay":1},{"/style/themes":1}],"bases":[{"/get-started/mobile":1}],"operating":[{"/development/environment":2},{"/get-started/mobile":1},{"/community/bugs":1}],"systems":[{"/design/anatomy":2},{"/get-started/mobile":1},{"/development/environment":1},{"/patterns/internationalization":1},{"/community/our-team":1}],"longer":[{"/get-started/mobile":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/patterns/forms":1}],"expensive":[{"/get-started/mobile":1}],"maintenance":[{"/get-started/mobile":1},{"/style/color":1}],"reduces":[{"/get-started/mobile":1}],"thanks":[{"/get-started/mobile":1}],"shared":[{"/get-started/mobile":1},{"/development/testing":1},{"/design/anatomy":1},{"/patterns/account-menu":1},{"/patterns/user-auth":1},{"/community/our-team":1}],"provides":[{"/development/frameworks-mobile/react-native":2},{"/design/project-identity":2},{"/get-started/mobile":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/design/intro":1},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/appbar":1},{"/patterns/visualizations":1},{"/style/illustrations":1},{"/style/typography":1}],"many":[{"/development/testing":3},{"/patterns/tables":3},{"/patterns/steppers":3},{"/patterns/visualizations":3},{"/design/project-identity":2},{"/community/innersourcing":2},{"/get-started/mobile":1},{"/development/environment":1},{"/design/intro":1},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/style/illustrations":1}],"allows":[{"/patterns/steppers":3},{"/patterns/appbar":2},{"/get-started/mobile":1},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/design/project-identity":1},{"/patterns/tables":1},{"/patterns/visualizations":1},{"/style/iconography":1}],"consistent":[{"/design/intro":2},{"/design/websites":2},{"/get-started/mobile":1},{"/design/accessibility":1},{"/patterns/account-menu":1},{"/style/illustrations":1},{"/style/themes":1},{"/community/license":1}],"makes":[{"/design/accessibility":2},{"/design/project-identity":2},{"/style/typography":2},{"/get-started/mobile":1},{"/development/testing":1},{"/patterns/forms":1},{"/community/our-team":1}],"make":[{"/design/project-identity":8},{"/development/frameworks-mobile/react-native":4},{"/design/websites":3},{"/patterns/tables":3},{"/community/license":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/design/intro":2},{"/patterns/forms":2},{"/style/typography":2},{"/community/innersourcing":2},{"/get-started/mobile":1},{"/development/environment":1},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/design/accessibility":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/overlay":1},{"/style/color":1},{"/community/bugs":1},{"/community/faq":1},{"/community/contactus":1}],"doesn":[{"/get-started/mobile":1}],"so":[{"/design/websites":6},{"/development/testing":2},{"/design/accessibility":2},{"/patterns/tables":2},{"/style/typography":2},{"/get-started/mobile":1},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/design/project-identity":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/style/iconography":1},{"/community/license":1}],"recommendation":[{"/get-started/mobile":1},{"/style/iconography":1}],"approach":[{"/development/testing":2},{"/patterns/account-menu":2},{"/get-started/mobile":1},{"/development/frameworks-mobile/intro":1},{"/design/project-identity":1},{"/style/color":1}],"allow":[{"/patterns/tables":2},{"/patterns/user-auth":2},{"/get-started/mobile":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/visualizations":1},{"/community/license":1},{"/community/innersourcing":1},{"/community/faq":1}],"deploy":[{"/get-started/mobile":1}],"versions":[{"/get-started/mobile":1},{"/development/frameworks-mobile/intro":1}],"several":[{"/patterns/account-menu":2},{"/patterns/navigation":2},{"/get-started/mobile":1},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/lists":1},{"/community/innersourcing":1},{"/community/faq":1}],"prefer":[{"/get-started/mobile":1},{"/development/environment":1},{"/development/frameworks-mobile/ionic":1},{"/community/faq":1}],"standards":[{"/get-started/mobile":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/design/project-identity":1}],"ways":[{"/design/accessibility":2},{"/patterns/account-menu":2},{"/patterns/navigation":2},{"/patterns/user-auth":2},{"/get-started/mobile":1},{"/development/testing":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/tables":1},{"/patterns/steppers":1}],"doing":[{"/get-started/mobile":1},{"/development/frameworks-mobile/react-native":1},{"/community/faq":1}],"note":[{"/development/frameworks-mobile/react-native":3},{"/development/frameworks-mobile/ionic":2},{"/get-started/mobile":1},{"/development/frameworks-web/react":1},{"/patterns/internationalization":1},{"/style/iconography":1}],"limited":[{"/patterns/navigation":2},{"/community/license":2},{"/get-started/mobile":1},{"/patterns/account-menu":1},{"/patterns/tables":1}],"planning":[{"/get-started/mobile":1},{"/design/intro":1}],"route":[{"/get-started/mobile":1},{"/design/project-identity":1},{"/style/iconography":1}],"please":[{"/community/faq":9},{"/style/iconography":4},{"/community/innersourcing":2},{"/community/features":2},{"/get-started/mobile":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/design/intro":1},{"/community/license":1},{"/community/bugs":1},{"/community/contactus":1}],"contact":[{"/community/faq":6},{"/community/contactus":4},{"/get-started/mobile":1},{"/design/intro":1},{"/patterns/account-menu":1},{"/style/iconography":1},{"/style/typography":1},{"/community/innersourcing":1},{"/community/bugs":1}],"us":[{"/community/faq":11},{"/community/bugs":3},{"/design/intro":2},{"/style/iconography":2},{"/community/contactus":2},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/patterns/tables":1},{"/style/typography":1},{"/community/license":1},{"/community/innersourcing":1},{"/community/features":1}],"developer":[{"/development/environment":1},{"/patterns/lists":1}],"develop":[{"/development/environment":2},{"/community/faq":2},{"/design/websites":1}],"tutorial":[{"/development/environment":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/design/project-identity":1}],"setting":[{"/development/frameworks-mobile/ionic":4},{"/development/frameworks-mobile/react-native":3},{"/development/environment":2},{"/patterns/internationalization":1},{"/patterns/lists":1}],"getting":[{"/development/environment":3},{"/development/frameworks-mobile/ionic":2},{"/community/faq":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/style/themes":1}],"frustrating":[{"/development/environment":1}],"part":[{"/patterns/forms":2},{"/development/environment":1},{"/design/intro":1},{"/design/project-identity":1},{"/community/bugs":1},{"/community/features":1},{"/community/faq":1}],"fortunately":[{"/development/environment":1}],"made":[{"/design/intro":2},{"/development/environment":1},{"/development/testing":1},{"/design/accessibility":1},{"/community/license":1},{"/community/faq":1}],"strides":[{"/development/environment":1}],"possible":[{"/community/faq":4},{"/design/intro":3},{"/design/websites":3},{"/style/iconography":2},{"/development/environment":1},{"/design/accessibility":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/patterns/steppers":1},{"/style/illustrations":1}],"below":[{"/patterns/forms":4},{"/patterns/tables":3},{"/patterns/account-menu":2},{"/patterns/user-auth":2},{"/community/features":2},{"/community/faq":2},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/style/color":1},{"/style/iconography":1},{"/style/illustrations":1},{"/style/typography":1},{"/style/themes":1},{"/community/innersourcing":1},{"/community/bugs":1}],"walk":[{"/development/environment":1},{"/development/frameworks-mobile/intro":1},{"/community/faq":1}],"through":[{"/development/frameworks-mobile/intro":2},{"/development/testing":2},{"/patterns/user-auth":2},{"/community/faq":2},{"/development/environment":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/patterns/lists":1},{"/patterns/steppers":1},{"/style/themes":1}],"basics":[{"/development/environment":2},{"/community/faq":1}],"integrated":[{"/development/environment":1}],"ide":[{"/development/environment":1},{"/development/frameworks-mobile/react-native":1},{"/community/innersourcing":1}],"bunch":[{"/development/environment":1}],"ides":[{"/development/environment":1}],"comfortable":[{"/development/environment":1}],"preference":[{"/development/environment":1},{"/patterns/appbar":1}],"recommend":[{"/development/frameworks-mobile/react-native":3},{"/patterns/internationalization":3},{"/design/intro":2},{"/community/faq":2},{"/development/environment":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/design/websites":1},{"/patterns/user-auth":1},{"/style/iconography":1},{"/style/illustrations":1},{"/style/typography":1},{"/community/innersourcing":1}],"trying":[{"/development/environment":1},{"/design/intro":1},{"/patterns/overlay":1}],"visual":[{"/design/accessibility":5},{"/development/frameworks-mobile/intro":3},{"/design/project-identity":3},{"/design/websites":2},{"/development/environment":1},{"/development/testing":1},{"/design/anatomy":1},{"/patterns/lists":1},{"/patterns/visualizations":1}],"quite":[{"/development/environment":1},{"/development/frameworks-web/intro":1}],"excellent":[{"/development/environment":1},{"/style/typography":1}],"experience":[{"/development/frameworks-web/intro":2},{"/design/anatomy":2},{"/development/environment":1},{"/design/accessibility":1},{"/patterns/forms":1},{"/style/illustrations":1},{"/community/bugs":1},{"/community/contactus":1}],"seamless":[{"/development/environment":1}],"free":[{"/design/accessibility":2},{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/design/intro":1},{"/design/project-identity":1},{"/community/faq":1}],"git":[{"/development/environment":9}],"chances":[{"/development/environment":1}],"probably":[{"/development/environment":1},{"/development/frameworks-web/intro":1}],"keep":[{"/design/websites":4},{"/style/illustrations":2},{"/development/environment":1},{"/development/testing":1},{"/design/intro":1},{"/design/project-identity":1},{"/patterns/forms":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/style/typography":1},{"/community/faq":1}],"source":[{"/community/license":7},{"/development/testing":3},{"/development/frameworks-web/intro":2},{"/development/frameworks-mobile/react-native":2},{"/community/our-team":2},{"/development/environment":1},{"/development/frameworks-web/angular":1},{"/patterns/visualizations":1},{"/community/bugs":1},{"/community/features":1},{"/community/faq":1}],"control":[{"/development/environment":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1}],"big":[{"/development/environment":1}],"space":[{"/patterns/navigation":5},{"/patterns/tables":2},{"/development/environment":1},{"/design/intro":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/resources/designer":1}],"backbone":[{"/development/environment":1}],"bitbucket":[{"/development/environment":1}],"already":[{"/development/frameworks-mobile/react-native":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/environment":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/patterns/forms":1}],"installed":[{"/development/environment":3},{"/development/frameworks-mobile/ionic":1}],"sh":[{"/development/frameworks-mobile/ionic":6},{"/development/frameworks-mobile/react-native":6},{"/development/environment":5},{"/development/frameworks-web/angular":4},{"/development/frameworks-web/react":4},{"/development/testing":2},{"/development/cli":1}],"command":[{"/development/environment":2},{"/development/cli":2},{"/development/frameworks-mobile/react-native":2}],"prompt":[{"/development/frameworks-mobile/react-native":3},{"/development/environment":2},{"/patterns/overlay":1}],"download":[{"/development/environment":1},{"/development/frameworks-mobile/intro":1},{"/community/faq":1}],"website":[{"/design/websites":23},{"/development/environment":2},{"/development/frameworks-web/intro":2},{"/development/frameworks-mobile/intro":2},{"/development/frameworks-mobile/ionic":1},{"/design/intro":1},{"/design/project-identity":1},{"/patterns/internationalization":1}],"behind":[{"/development/environment":2},{"/patterns/loading":2},{"/development/frameworks-mobile/ionic":1},{"/design/accessibility":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/navigation":1}],"proxy":[{"/development/environment":15}],"proxies":[{"/development/environment":1}],"config":[{"/development/environment":4},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/ionic":2},{"/development/frameworks-mobile/react-native":2}],"global":[{"/patterns/lists":4},{"/development/environment":3},{"/patterns/internationalization":3},{"/development/frameworks-mobile/ionic":2},{"/patterns/appbar":2}],"http":[{"/development/environment":5}],"url":[{"/development/environment":4}],"port":[{"/development/environment":4}],"https":[{"/development/environment":2}],"addresses":[{"/development/environment":2}],"vary":[{"/development/environment":3},{"/design/accessibility":1}],"location":[{"/development/environment":3},{"/design/intro":1},{"/patterns/forms":1},{"/patterns/loading":1},{"/patterns/navigation":1}],"consult":[{"/development/environment":2}],"local":[{"/design/project-identity":4},{"/patterns/lists":3},{"/development/environment":2},{"/patterns/internationalization":2},{"/style/illustrations":1}],"department":[{"/development/environment":2}],"node":[{"/development/environment":2},{"/development/testing":1}],"majority":[{"/patterns/user-auth":2},{"/development/environment":1}],"via":[{"/patterns/user-auth":7},{"/development/environment":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1},{"/design/accessibility":1},{"/patterns/loading":1},{"/patterns/overlay":1},{"/patterns/visualizations":1},{"/style/themes":1}],"package":[{"/style/themes":5},{"/development/frameworks-web/react":4},{"/development/cli":3},{"/development/frameworks-web/angular":3},{"/development/frameworks-mobile/react-native":3},{"/development/environment":2},{"/style/color":2},{"/community/faq":1}],"manager":[{"/development/environment":2}],"install":[{"/development/frameworks-mobile/react-native":8},{"/development/frameworks-web/react":6},{"/development/frameworks-web/angular":5},{"/development/environment":4},{"/development/frameworks-mobile/ionic":3},{"/development/frameworks-mobile/intro":1},{"/design/accessibility":1}],"third":[{"/patterns/user-auth":3},{"/development/frameworks-mobile/react-native":2},{"/development/environment":1},{"/style/typography":1}],"party":[{"/patterns/user-auth":3},{"/development/environment":1},{"/development/frameworks-mobile/react-native":1}],"other":[{"/community/faq":11},{"/design/accessibility":3},{"/design/project-identity":3},{"/patterns/account-menu":3},{"/style/color":3},{"/development/environment":2},{"/development/frameworks-mobile/react-native":2},{"/development/testing":2},{"/design/anatomy":2},{"/patterns/tables":2},{"/style/illustrations":2},{"/community/license":2},{"/design/intro":1},{"/patterns/overlay":1},{"/patterns/visualizations":1},{"/style/iconography":1},{"/style/themes":1},{"/community/innersourcing":1},{"/community/bugs":1}],"dependencies":[{"/development/frameworks-mobile/ionic":2},{"/development/environment":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1}],"nodejs":[{"/development/environment":1}],"yarn":[{"/development/environment":12},{"/development/frameworks-mobile/react-native":6},{"/development/frameworks-web/angular":3},{"/development/frameworks-web/react":3},{"/development/frameworks-mobile/ionic":2},{"/development/testing":1}],"projects":[{"/community/faq":8},{"/development/frameworks-mobile/react-native":6},{"/development/frameworks-web/react":5},{"/development/frameworks-web/angular":3},{"/development/environment":2},{"/development/cli":2},{"/design/project-identity":2},{"/patterns/internationalization":2},{"/community/license":2},{"/development/frameworks-mobile/ionic":1},{"/patterns/user-auth":1},{"/community/innersourcing":1},{"/community/bugs":1},{"/community/features":1},{"/community/our-team":1}],"example":[{"/design/accessibility":2},{"/patterns/internationalization":2},{"/development/environment":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/anatomy":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/loading":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/style/color":1}],"instead":[{"/development/environment":1},{"/development/frameworks-mobile/react-native":1},{"/design/anatomy":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/patterns/tables":1}],"instructions":[{"/development/frameworks-mobile/ionic":7},{"/development/frameworks-mobile/react-native":7},{"/development/frameworks-web/angular":4},{"/development/frameworks-web/react":4},{"/design/accessibility":2},{"/patterns/user-auth":2},{"/community/faq":2},{"/development/environment":1},{"/development/cli":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/steppers":1},{"/style/iconography":1}],"installing":[{"/development/environment":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1}],"various":[{"/patterns/appbar":2},{"/development/environment":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/testing":1},{"/design/intro":1},{"/design/anatomy":1}],"found":[{"/development/frameworks-mobile/ionic":2},{"/development/frameworks-mobile/react-native":2},{"/development/environment":1},{"/development/frameworks-web/angular":1},{"/patterns/overlay":1},{"/community/license":1},{"/community/innersourcing":1}],"v":[{"/development/environment":1}],"configure":[{"/development/environment":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/appbar":1},{"/patterns/steppers":1}],"settings":[{"/patterns/account-menu":11},{"/design/anatomy":2},{"/patterns/internationalization":2},{"/patterns/navigation":2},{"/development/environment":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/patterns/user-auth":1}],"sufficient":[{"/development/environment":1},{"/patterns/tables":1}],"http_proxy":[{"/development/environment":1}],"https_proxy":[{"/development/environment":1}],"variables":[{"/development/environment":1}],"however":[{"/patterns/tables":5},{"/design/websites":2},{"/design/project-identity":2},{"/patterns/user-auth":2},{"/community/faq":2},{"/development/environment":1},{"/development/frameworks-mobile/intro":1},{"/development/testing":1},{"/design/intro":1},{"/patterns/appbar":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/overlay":1},{"/style/typography":1},{"/style/themes":1},{"/community/license":1},{"/resources/designer":1}],"explicitly":[{"/development/environment":1}],"values":[{"/patterns/tables":2},{"/development/environment":1},{"/development/testing":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/style/themes":1}],"once":[{"/patterns/tables":3},{"/development/frameworks-mobile/ionic":2},{"/patterns/forms":2},{"/development/environment":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/project-identity":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/community/innersourcing":1}],"configured":[{"/development/testing":2},{"/development/environment":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"add":[{"/development/frameworks-mobile/ionic":7},{"/development/frameworks-web/react":5},{"/development/frameworks-mobile/react-native":4},{"/development/frameworks-web/angular":3},{"/patterns/lists":3},{"/patterns/user-auth":3},{"/community/innersourcing":2},{"/community/faq":2},{"/development/environment":1},{"/design/intro":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/style/illustrations":1},{"/community/features":1}],"globally":[{"/development/environment":1}],"path":[{"/development/environment":1},{"/development/frameworks-mobile/ionic":1},{"/design/anatomy":1},{"/patterns/tables":1}],"variable":[{"/development/environment":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/ionic":1}],"has":[{"/development/testing":4},{"/patterns/user-auth":4},{"/design/intro":3},{"/development/frameworks-mobile/intro":2},{"/development/environment":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/navigation":1},{"/style/typography":1},{"/community/faq":1}],"pointing":[{"/development/environment":1},{"/development/frameworks-mobile/ionic":1},{"/design/accessibility":1}],"directory":[{"/development/environment":1},{"/development/frameworks-mobile/ionic":1}],"steps":[{"/patterns/steppers":6},{"/patterns/user-auth":6},{"/development/environment":2},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/react-native":2},{"/development/frameworks-mobile/ionic":1},{"/patterns/forms":1},{"/community/innersourcing":1},{"/community/bugs":1},{"/community/faq":1}],"prepare":[{"/development/environment":1}],"requirements":[{"/patterns/forms":4},{"/development/environment":2},{"/development/testing":2},{"/design/accessibility":2},{"/development/frameworks-mobile/react-native":1},{"/design/project-identity":1},{"/patterns/user-auth":1},{"/style/themes":1}],"selected":[{"/patterns/overlay":4},{"/patterns/account-menu":2},{"/patterns/lists":2},{"/development/environment":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/community/faq":1},{"/community/our-team":1}],"specific":[{"/design/websites":3},{"/patterns/forms":3},{"/development/frameworks-mobile/ionic":2},{"/development/testing":2},{"/design/project-identity":2},{"/patterns/internationalization":2},{"/style/typography":2},{"/style/themes":2},{"/development/environment":1},{"/patterns/account-menu":1},{"/patterns/user-auth":1},{"/style/iconography":1},{"/community/license":1},{"/community/faq":1}],"setup":[{"/development/environment":1},{"/development/frameworks-mobile/react-native":1}],"detailed":[{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/react-native":2},{"/design/websites":2},{"/development/environment":1},{"/development/cli":1},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/design/accessibility":1},{"/patterns/account-menu":1},{"/style/themes":1},{"/community/innersourcing":1},{"/community/bugs":1}],"prerequisites":[{"/development/environment":1}],"hardware":[{"/development/frameworks-mobile/intro":2},{"/development/environment":1}],"resource":[{"/development/environment":1},{"/patterns/internationalization":1},{"/community/license":1}],"intensive":[{"/development/environment":1}],"machine":[{"/development/environment":2},{"/community/bugs":1}],"task":[{"/development/environment":1},{"/design/websites":1}],"match":[{"/development/environment":1},{"/patterns/loading":1},{"/patterns/tables":1}],"minimum":[{"/design/websites":2},{"/development/environment":1},{"/design/accessibility":1},{"/patterns/account-menu":1}],"mac":[{"/development/environment":2},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/design/accessibility":1}],"plan":[{"/development/environment":1},{"/community/innersourcing":1}],"locally":[{"/development/environment":1}],"16gb":[{"/development/environment":1}],"ram":[{"/development/environment":1}],"emulators":[{"/development/environment":1}],"easily":[{"/patterns/tables":2},{"/development/environment":1},{"/design/accessibility":1},{"/patterns/account-menu":1},{"/patterns/overlay":1},{"/style/illustrations":1}],"push":[{"/development/environment":1},{"/patterns/loading":1}],"20gb":[{"/development/environment":1}],"solid":[{"/development/environment":1}],"state":[{"/patterns/empty-states":7},{"/patterns/navigation":3},{"/design/anatomy":2},{"/development/environment":1},{"/development/testing":1},{"/design/intro":1},{"/style/color":1}],"hard":[{"/development/environment":1},{"/design/accessibility":1},{"/patterns/internationalization":1},{"/style/illustrations":1}],"drive":[{"/development/environment":1},{"/community/faq":1}],"ssd":[{"/development/environment":1}],"gen":[{"/development/environment":1}],"core":[{"/development/frameworks-web/react":3},{"/development/environment":1}],"i7":[{"/development/environment":1}],"virtualization":[{"/development/environment":1}],"better":[{"/design/project-identity":3},{"/community/bugs":2},{"/development/environment":1},{"/development/frameworks-mobile/intro":1},{"/patterns/overlay":1},{"/style/themes":1},{"/community/features":1},{"/community/our-team":1}],"few":[{"/patterns/tables":4},{"/development/environment":1},{"/development/frameworks-mobile/react-native":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/patterns/internationalization":1},{"/style/typography":1}],"required":[{"/design/accessibility":4},{"/patterns/forms":3},{"/development/environment":2},{"/development/frameworks-mobile/ionic":1},{"/patterns/lists":1}],"xcode":[{"/development/environment":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"only":[{"/patterns/tables":5},{"/design/websites":4},{"/development/frameworks-mobile/react-native":3},{"/patterns/loading":2},{"/patterns/user-auth":2},{"/community/faq":2},{"/development/environment":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/design/intro":1},{"/design/project-identity":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/patterns/overlay":1},{"/style/color":1},{"/style/typography":1}],"cli":[{"/development/frameworks-mobile/react-native":21},{"/development/frameworks-web/angular":10},{"/development/frameworks-mobile/ionic":10},{"/development/frameworks-web/react":8},{"/development/cli":7},{"/development/testing":4},{"/development/frameworks-web/intro":1},{"/community/innersourcing":1},{"/community/bugs":1},{"/community/faq":1},{"/community/our-team":1}],"line":[{"/development/cli":2},{"/development/frameworks-mobile/react-native":2},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/lists":1},{"/patterns/visualizations":1},{"/style/illustrations":1},{"/style/typography":1}],"interface":[{"/style/color":4},{"/design/accessibility":3},{"/development/cli":2},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/patterns/overlay":1},{"/community/our-team":1}],"tool":[{"/community/faq":3},{"/development/cli":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/patterns/internationalization":1}],"create":[{"/patterns/user-auth":4},{"/development/testing":3},{"/development/cli":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/react-native":2},{"/design/intro":2},{"/design/project-identity":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/design/anatomy":1},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/style/iconography":1},{"/community/faq":1}],"skeleton":[{"/patterns/loading":6},{"/development/cli":1}],"chosen":[{"/development/cli":1},{"/development/frameworks-mobile/intro":1},{"/design/accessibility":1},{"/style/typography":1}],"automatically":[{"/development/frameworks-web/angular":4},{"/development/frameworks-web/react":4},{"/development/frameworks-mobile/react-native":4},{"/development/frameworks-mobile/ionic":2},{"/development/cli":1},{"/development/testing":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/style/iconography":1},{"/community/faq":1},{"/community/our-team":1}],"integrate":[{"/community/faq":2},{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"component":[{"/development/frameworks-mobile/react-native":9},{"/development/frameworks-web/react":5},{"/development/frameworks-web/angular":4},{"/development/testing":3},{"/style/typography":3},{"/community/our-team":3},{"/development/frameworks-mobile/ionic":2},{"/patterns/lists":2},{"/development/cli":1},{"/development/frameworks-web/intro":1},{"/design/anatomy":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/style/iconography":1},{"/style/themes":1},{"/community/faq":1}],"themes":[{"/style/themes":20},{"/development/frameworks-web/angular":11},{"/development/frameworks-web/react":7},{"/development/frameworks-mobile/react-native":6},{"/design/project-identity":5},{"/community/faq":3},{"/development/frameworks-mobile/ionic":2},{"/style/color":2},{"/development/cli":1},{"/patterns/visualizations":1},{"/style/illustrations":1},{"/community/license":1},{"/community/bugs":1}],"open":[{"/development/frameworks-web/angular":6},{"/development/frameworks-web/react":5},{"/development/testing":5},{"/community/license":5},{"/development/frameworks-mobile/react-native":4},{"/design/project-identity":3},{"/style/typography":3},{"/development/frameworks-web/intro":2},{"/patterns/navigation":2},{"/community/our-team":2},{"/development/cli":1},{"/design/websites":1},{"/patterns/forms":1},{"/patterns/overlay":1},{"/patterns/visualizations":1},{"/style/illustrations":1},{"/community/bugs":1},{"/community/features":1},{"/community/faq":1}],"sans":[{"/development/frameworks-web/angular":6},{"/development/frameworks-web/react":5},{"/design/project-identity":4},{"/style/typography":4},{"/development/frameworks-mobile/react-native":2},{"/development/cli":1},{"/design/websites":1},{"/patterns/internationalization":1},{"/style/illustrations":1}],"formatting":[{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"linting":[{"/development/cli":1}],"profiles":[{"/development/cli":1}],"optional":[{"/development/cli":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/forms":1},{"/patterns/navigation":1}],"opportunity":[{"/development/cli":1},{"/patterns/appbar":1},{"/patterns/user-auth":1},{"/community/innersourcing":1}],"select":[{"/development/frameworks-mobile/react-native":2},{"/development/cli":1},{"/development/testing":1},{"/patterns/lists":1},{"/style/iconography":1},{"/style/typography":1}],"template":[{"/development/cli":4}],"point":[{"/development/cli":1},{"/development/testing":1},{"/design/websites":1},{"/patterns/tables":1},{"/style/typography":1},{"/community/faq":1}],"blank":[{"/development/cli":1}],"basic":[{"/patterns/appbar":4},{"/patterns/steppers":4},{"/design/anatomy":2},{"/design/project-identity":2},{"/patterns/account-menu":2},{"/patterns/user-auth":2},{"/development/cli":1},{"/development/testing":1},{"/patterns/lists":1}],"routing":[{"/development/cli":1}],"full":[{"/patterns/empty-states":2},{"/patterns/tables":2},{"/patterns/visualizations":2},{"/development/cli":1},{"/development/frameworks-web/intro":1},{"/design/anatomy":1},{"/patterns/account-menu":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/patterns/user-auth":1},{"/style/illustrations":1},{"/community/license":1},{"/community/our-team":1}],"authentication":[{"/patterns/user-auth":9},{"/development/cli":1},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/steppers":1}],"templates":[{"/development/cli":1},{"/design/websites":1},{"/design/project-identity":1},{"/community/faq":1}],"ionic":[{"/development/frameworks-mobile/ionic":25},{"/development/frameworks-mobile/intro":7},{"/development/testing":3},{"/style/themes":3},{"/development/cli":2},{"/patterns/loading":2},{"/patterns/overlay":2},{"/community/bugs":2},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/patterns/visualizations":1},{"/community/innersourcing":1},{"/community/features":1},{"/community/faq":1}],"npx":[{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"p":[{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"blui":[{"/development/testing":2},{"/style/themes":2},{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"usage":[{"/development/cli":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/design/project-identity":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/steppers":1},{"/style/iconography":1},{"/community/innersourcing":1},{"/community/faq":1}],"works":[{"/development/cli":1},{"/development/testing":1}],"option":[{"/patterns/internationalization":2},{"/patterns/tables":2},{"/development/cli":1},{"/development/frameworks-mobile/react-native":1},{"/design/accessibility":1},{"/patterns/lists":1},{"/patterns/user-auth":1}],"typescript":[{"/development/frameworks-web/react":3},{"/development/frameworks-mobile/react-native":3},{"/development/cli":1},{"/development/frameworks-web/intro":1}],"supports":[{"/development/frameworks-mobile/intro":2},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/community/faq":1}],"large":[{"/patterns/empty-states":2},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/tables":1},{"/patterns/visualizations":1},{"/community/bugs":1}],"communities":[{"/development/frameworks-web/intro":1}],"implementing":[{"/development/frameworks-web/intro":1},{"/patterns/internationalization":1}],"comparable":[{"/development/frameworks-web/intro":1}],"would":[{"/community/faq":8},{"/development/frameworks-web/react":3},{"/development/frameworks-mobile/ionic":3},{"/development/frameworks-mobile/react-native":2},{"/development/testing":2},{"/patterns/tables":2},{"/community/innersourcing":2},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/design/intro":1},{"/patterns/overlay":1}],"choosing":[{"/development/frameworks-web/intro":2},{"/development/frameworks-mobile/intro":1}],"either":[{"/patterns/tables":3},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/forms":1},{"/patterns/loading":1},{"/patterns/overlay":1},{"/patterns/user-auth":1},{"/style/iconography":1},{"/style/illustrations":1},{"/community/bugs":1}],"notable":[{"/development/frameworks-web/intro":1},{"/design/websites":1},{"/design/project-identity":1}],"differences":[{"/patterns/internationalization":4},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/design/intro":1},{"/design/websites":1},{"/patterns/lists":1},{"/style/themes":1}],"outlined":[{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/design/project-identity":1},{"/style/color":1},{"/style/themes":1}],"comprehensive":[{"/development/frameworks-web/intro":2},{"/community/faq":1}],"functionality":[{"/development/frameworks-mobile/intro":2},{"/development/frameworks-web/intro":1},{"/development/testing":1},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/user-auth":1}],"written":[{"/development/testing":4},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/react-native":1},{"/design/websites":1},{"/patterns/internationalization":1},{"/community/license":1}],"superset":[{"/development/frameworks-web/intro":1}],"strong":[{"/development/frameworks-web/intro":1},{"/design/intro":1}],"typing":[{"/development/frameworks-web/intro":1}],"structured":[{"/patterns/tables":3},{"/development/frameworks-web/intro":1}],"way":[{"/development/frameworks-mobile/intro":2},{"/development/testing":2},{"/design/websites":2},{"/design/project-identity":2},{"/patterns/account-menu":2},{"/patterns/lists":2},{"/patterns/navigation":2},{"/patterns/user-auth":2},{"/community/license":2},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/patterns/tables":1},{"/patterns/visualizations":1},{"/community/innersourcing":1}],"organizing":[{"/development/frameworks-web/intro":1}],"back":[{"/development/frameworks-web/intro":1},{"/design/intro":1},{"/design/websites":1},{"/patterns/appbar":1},{"/patterns/tables":1},{"/style/iconography":1}],"end":[{"/development/testing":12},{"/development/frameworks-web/intro":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/tables":1},{"/community/faq":1},{"/community/our-team":1}],"stack":[{"/development/frameworks-web/intro":1}],"library":[{"/development/frameworks-mobile/react-native":6},{"/development/frameworks-web/react":5},{"/development/frameworks-web/angular":4},{"/development/frameworks-mobile/ionic":2},{"/development/testing":2},{"/style/iconography":2},{"/community/our-team":2},{"/development/frameworks-web/intro":1},{"/style/typography":1},{"/community/innersourcing":1}],"custom":[{"/style/typography":2},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/navigation":1},{"/community/our-team":1}],"combined":[{"/design/anatomy":2},{"/development/frameworks-web/intro":1},{"/style/illustrations":1}],"redux":[{"/development/frameworks-web/intro":1}],"virtual":[{"/development/frameworks-web/intro":1}],"dom":[{"/development/frameworks-web/intro":1},{"/development/testing":1}],"fewer":[{"/patterns/navigation":2},{"/development/frameworks-web/intro":1},{"/patterns/lists":1}],"renders":[{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1}],"faster":[{"/development/frameworks-web/intro":1},{"/development/testing":1},{"/patterns/loading":1}],"updates":[{"/community/innersourcing":2},{"/development/frameworks-web/intro":1},{"/community/license":1},{"/community/features":1},{"/community/faq":1}],"front":[{"/development/frameworks-web/intro":1},{"/patterns/overlay":1}],"facebook":[{"/development/frameworks-web/intro":1},{"/patterns/user-auth":1}],"entirely":[{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1},{"/style/typography":1}],"own":[{"/design/project-identity":5},{"/style/iconography":4},{"/community/faq":4},{"/development/testing":3},{"/development/frameworks-mobile/react-native":2},{"/patterns/steppers":2},{"/resources/designer":2},{"/development/frameworks-web/intro":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/patterns/internationalization":1},{"/patterns/tables":1},{"/style/illustrations":1},{"/style/typography":1}],"who":[{"/patterns/user-auth":2},{"/development/frameworks-web/intro":1},{"/design/accessibility":1},{"/patterns/tables":1},{"/style/iconography":1}],"familiar":[{"/development/frameworks-mobile/intro":2},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/design/anatomy":1}],"might":[{"/design/project-identity":2},{"/development/frameworks-web/intro":1},{"/design/intro":1},{"/patterns/internationalization":1},{"/patterns/tables":1}],"worthwhile":[{"/development/frameworks-web/intro":1}],"avoid":[{"/style/illustrations":5},{"/style/color":4},{"/development/frameworks-mobile/react-native":2},{"/design/websites":2},{"/patterns/forms":2},{"/patterns/tables":2},{"/development/frameworks-web/intro":1},{"/development/testing":1},{"/design/intro":1},{"/design/accessibility":1},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/patterns/visualizations":1},{"/style/typography":1}],"unnecessary":[{"/development/frameworks-web/intro":1},{"/design/intro":1},{"/design/websites":1}],"learning":[{"/development/frameworks-mobile/intro":2},{"/development/frameworks-web/intro":1}],"curves":[{"/development/frameworks-web/intro":1}],"associated":[{"/development/frameworks-web/intro":1},{"/patterns/tables":1},{"/community/bugs":1},{"/community/features":1}],"yet":[{"/development/frameworks-web/intro":1},{"/patterns/internationalization":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/community/bugs":1},{"/community/features":1}],"conduct":[{"/development/frameworks-web/intro":1},{"/patterns/tables":1},{"/community/our-team":1}],"depth":[{"/development/frameworks-web/intro":1},{"/development/testing":1}],"analysis":[{"/development/frameworks-web/intro":1}],"appropriate":[{"/patterns/user-auth":3},{"/design/accessibility":2},{"/patterns/forms":2},{"/patterns/internationalization":2},{"/patterns/loading":2},{"/style/typography":2},{"/development/frameworks-web/intro":1},{"/design/intro":1},{"/patterns/empty-states":1},{"/style/iconography":1},{"/community/innersourcing":1},{"/community/bugs":1}],"reach":[{"/development/frameworks-web/intro":1},{"/design/accessibility":1},{"/community/innersourcing":1},{"/community/faq":1}],"assistance":[{"/development/frameworks-web/intro":1}],"needed":[{"/development/frameworks-web/intro":1},{"/patterns/empty-states":1}],"downloading":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/lists":1}],"samples":[{"/community/innersourcing":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/community/bugs":1},{"/community/faq":1}],"login":[{"/patterns/user-auth":13},{"/design/anatomy":4},{"/development/testing":3},{"/patterns/forms":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"navigation":[{"/patterns/navigation":26},{"/patterns/account-menu":7},{"/design/websites":5},{"/development/frameworks-mobile/react-native":3},{"/patterns/overlay":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/patterns/appbar":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/tables":1}],"good":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/style/color":1}],"fastest":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"starter":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"necessary":[{"/patterns/tables":3},{"/development/frameworks-mobile/react-native":2},{"/patterns/empty-states":2},{"/community/faq":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/design/intro":1},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/overlay":1},{"/patterns/user-auth":1},{"/style/illustrations":1}],"pre":[{"/development/testing":2},{"/design/intro":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"asked":[{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/react-native":2},{"/community/faq":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-mobile/ionic":1}],"whether":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/account-menu":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/style/iconography":1},{"/community/license":1}],"eslint":[{"/development/frameworks-web/react":5},{"/development/frameworks-mobile/react-native":5},{"/development/frameworks-web/angular":4},{"/development/frameworks-mobile/ionic":4}],"prettier":[{"/development/frameworks-web/angular":4},{"/development/frameworks-web/react":4},{"/development/frameworks-mobile/ionic":4},{"/development/frameworks-mobile/react-native":4}],"configurations":[{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/ionic":2},{"/development/frameworks-mobile/react-native":2},{"/patterns/steppers":1}],"files":[{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/ionic":2},{"/development/frameworks-mobile/react-native":2},{"/development/testing":2},{"/resources/designer":2},{"/development/frameworks-web/angular":1}],"include":[{"/patterns/account-menu":5},{"/design/anatomy":4},{"/development/frameworks-web/angular":3},{"/design/websites":3},{"/development/frameworks-web/react":2},{"/design/accessibility":2},{"/patterns/lists":2},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/intro":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/style/iconography":1},{"/community/license":1}],"font":[{"/style/typography":9},{"/development/frameworks-web/angular":4},{"/design/websites":4},{"/development/frameworks-web/react":3},{"/development/frameworks-mobile/react-native":3},{"/design/accessibility":3},{"/design/intro":2},{"/design/project-identity":2},{"/patterns/internationalization":1},{"/style/illustrations":1}],"refer":[{"/development/frameworks-mobile/react-native":4},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/ionic":2},{"/design/websites":2},{"/patterns/account-menu":2},{"/patterns/forms":2},{"/patterns/steppers":2},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/navigation":1},{"/style/iconography":1},{"/style/typography":1},{"/community/license":1},{"/community/faq":1}],"documentation":[{"/development/frameworks-web/angular":3},{"/development/frameworks-web/react":3},{"/development/testing":3},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/appbar":1},{"/patterns/overlay":1},{"/community/license":1},{"/community/innersourcing":1},{"/community/bugs":1},{"/community/faq":1},{"/community/contactus":1}],"manual":[{"/development/frameworks-mobile/ionic":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/react-native":2},{"/patterns/loading":1}],"integration":[{"/development/frameworks-mobile/ionic":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/react-native":2},{"/development/testing":2},{"/community/our-team":1}],"scaffold":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"taking":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/tables":1}],"been":[{"/community/faq":3},{"/design/accessibility":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/design/project-identity":1},{"/patterns/user-auth":1},{"/style/typography":1}],"done":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/patterns/empty-states":1},{"/patterns/forms":1}],"designed":[{"/community/faq":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/react-native":2},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/empty-states":1},{"/style/color":1},{"/style/typography":1}],"save":[{"/development/frameworks-web/angular":3},{"/development/frameworks-web/react":3},{"/development/frameworks-mobile/react-native":3},{"/patterns/lists":1}],"sample":[{"/development/testing":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1}],"api":[{"/patterns/forms":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/patterns/loading":1}],"reference":[{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/community/faq":1}],"additionally":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/patterns/loading":1},{"/patterns/user-auth":1}],"supplemental":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/overlay":1},{"/style/iconography":1}],"specifically":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1},{"/community/faq":1}],"wish":[{"/development/frameworks-mobile/react-native":2},{"/patterns/loading":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/community/faq":1}],"adding":[{"/development/frameworks-mobile/react-native":5},{"/development/frameworks-web/angular":3},{"/development/frameworks-web/react":2},{"/design/websites":2},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/community/license":1},{"/community/faq":1},{"/community/contactus":1}],"default":[{"/development/frameworks-web/angular":3},{"/development/frameworks-mobile/react-native":3},{"/design/accessibility":2},{"/community/faq":2},{"/development/frameworks-web/react":1},{"/design/intro":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/internationalization":1},{"/patterns/navigation":1},{"/style/typography":1},{"/style/themes":1}],"themed":[{"/development/frameworks-mobile/react-native":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1}],"theme":[{"/style/themes":18},{"/development/frameworks-web/angular":11},{"/development/frameworks-mobile/react-native":9},{"/development/frameworks-web/react":8},{"/design/project-identity":3},{"/community/faq":2},{"/community/features":1}],"order":[{"/design/intro":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-mobile/ionic":1},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/lists":1}],"modify":[{"/development/frameworks-web/angular":1},{"/style/themes":1}],"json":[{"/development/frameworks-web/angular":2},{"/development/frameworks-mobile/react-native":1},{"/style/themes":1}],"file":[{"/development/testing":2},{"/patterns/internationalization":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-mobile/react-native":1},{"/patterns/lists":1},{"/patterns/loading":1}],"styles":[{"/style/typography":13},{"/development/frameworks-web/angular":3},{"/development/frameworks-mobile/react-native":3},{"/design/accessibility":3},{"/design/intro":2},{"/style/themes":2},{"/design/project-identity":1},{"/patterns/loading":1},{"/patterns/navigation":1}],"entries":[{"/development/frameworks-web/angular":1}],"under":[{"/development/frameworks-web/angular":3},{"/style/illustrations":2},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/project-identity":1},{"/patterns/internationalization":1},{"/style/typography":1},{"/community/license":1},{"/community/faq":1},{"/resources/designer":1}],"test":[{"/development/testing":37},{"/design/accessibility":3},{"/development/frameworks-web/angular":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1},{"/style/illustrations":1}],"src":[{"/development/frameworks-web/angular":1}],"scss":[{"/development/frameworks-web/angular":3},{"/style/themes":1}],"node_modules":[{"/development/frameworks-web/angular":2}],"applying":[{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1}],"apply":[{"/development/frameworks-web/angular":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/internationalization":1}],"proper":[{"/development/frameworks-web/angular":1}],"class":[{"/development/testing":3},{"/development/frameworks-web/angular":2},{"/design/intro":1}],"body":[{"/development/frameworks-web/angular":2},{"/patterns/lists":2},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/navigation":1}],"element":[{"/development/testing":3},{"/patterns/lists":2},{"/development/frameworks-web/angular":1},{"/patterns/empty-states":1}],"dark":[{"/style/themes":9},{"/style/color":3},{"/patterns/navigation":2},{"/style/illustrations":2},{"/development/frameworks-web/angular":1},{"/design/accessibility":1},{"/design/project-identity":1}],"specify":[{"/development/frameworks-web/angular":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/design/anatomy":1}],"fonts":[{"/design/project-identity":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-mobile/react-native":1},{"/design/websites":1},{"/style/typography":1}],"mat":[{"/development/frameworks-web/angular":1}],"h1":[{"/development/frameworks-web/angular":1}],"text":[{"/design/accessibility":10},{"/patterns/forms":10},{"/style/illustrations":6},{"/patterns/empty-states":4},{"/design/websites":3},{"/patterns/appbar":3},{"/patterns/internationalization":3},{"/style/themes":3},{"/development/frameworks-web/angular":2},{"/style/color":2},{"/style/typography":2},{"/community/license":2},{"/development/frameworks-mobile/react-native":1},{"/design/project-identity":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/tables":1}],"h2":[{"/development/frameworks-web/angular":1}],"bold":[{"/development/frameworks-web/angular":1},{"/patterns/forms":1}],"copy":[{"/development/frameworks-web/angular":1},{"/design/websites":1}],"my":[{"/community/faq":3},{"/development/frameworks-web/angular":1}],"details":[{"/patterns/account-menu":3},{"/patterns/tables":3},{"/patterns/overlay":2},{"/patterns/user-auth":2},{"/development/frameworks-web/angular":1},{"/design/project-identity":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/style/color":1},{"/style/typography":1},{"/style/themes":1},{"/community/innersourcing":1},{"/community/faq":1}],"theming":[{"/style/themes":4},{"/development/frameworks-mobile/react-native":3},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/community/faq":1}],"style":[{"/style/typography":5},{"/development/frameworks-mobile/react-native":4},{"/design/project-identity":3},{"/style/illustrations":3},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/ionic":2},{"/style/themes":2},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/internationalization":1},{"/style/color":1},{"/style/iconography":1},{"/community/faq":1}],"internally":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"find":[{"/development/testing":5},{"/design/websites":3},{"/patterns/tables":3},{"/development/frameworks-mobile/react-native":2},{"/style/typography":2},{"/community/faq":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/design/intro":1},{"/design/project-identity":1},{"/style/color":1},{"/style/iconography":1},{"/community/bugs":1}],"browsers":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/design/accessibility":1}],"specifics":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1}],"life":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/design/intro":1}],"explorer":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/style/themes":1}],"no":[{"/design/websites":4},{"/patterns/empty-states":4},{"/community/license":2},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1},{"/design/anatomy":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/overlay":1},{"/style/iconography":1},{"/style/illustrations":1}],"supporting":[{"/patterns/internationalization":3},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/patterns/lists":1},{"/patterns/visualizations":1},{"/community/faq":1}],"ie11":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1}],"license":[{"/community/license":7},{"/development/frameworks-web/angular":2},{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/ionic":2},{"/development/frameworks-mobile/react-native":2},{"/patterns/account-menu":1},{"/style/typography":1}],"mit":[{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"mui":[{"/development/frameworks-web/react":1},{"/patterns/loading":1}],"fontsource":[{"/development/frameworks-web/react":1}],"enzyme":[{"/development/frameworks-web/react":3},{"/development/testing":1}],"adapter":[{"/development/frameworks-web/react":1}],"import":[{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/react-native":1},{"/community/innersourcing":1}],"provider":[{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1}],"js":[{"/development/frameworks-mobile/react-native":5},{"/development/testing":2},{"/development/frameworks-web/react":1},{"/patterns/internationalization":1}],"tsx":[{"/development/frameworks-web/react":2},{"/development/frameworks-mobile/react-native":2}],"whole":[{"/development/frameworks-web/react":1},{"/patterns/tables":1},{"/patterns/user-auth":1}],"simply":[{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/design/anatomy":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/steppers":1},{"/community/bugs":1}],"around":[{"/development/frameworks-web/react":1},{"/design/intro":1},{"/design/anatomy":1},{"/design/project-identity":1},{"/resources/designer":1}],"top":[{"/patterns/navigation":7},{"/design/websites":3},{"/design/project-identity":2},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/testing":1},{"/patterns/account-menu":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/style/iconography":1}],"level":[{"/patterns/navigation":3},{"/design/anatomy":2},{"/design/accessibility":2},{"/development/frameworks-web/react":1},{"/patterns/account-menu":1},{"/patterns/empty-states":1},{"/patterns/tables":1},{"/style/color":1},{"/style/themes":1}],"pass":[{"/development/frameworks-web/react":1},{"/development/testing":1},{"/design/accessibility":1}],"read":[{"/design/websites":4},{"/design/accessibility":2},{"/patterns/internationalization":2},{"/community/faq":2},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/patterns/appbar":1},{"/patterns/tables":1},{"/style/iconography":1},{"/community/features":1}],"significant":[{"/development/frameworks-mobile/intro":1},{"/development/testing":1},{"/community/innersourcing":1}],"agnostic":[{"/development/frameworks-mobile/intro":1}],"webview":[{"/development/frameworks-mobile/intro":2}],"optimized":[{"/development/frameworks-mobile/intro":1},{"/style/typography":1}],"lots":[{"/development/frameworks-mobile/intro":1}],"plugins":[{"/development/frameworks-mobile/intro":2},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/design/accessibility":1}],"logic":[{"/development/frameworks-mobile/intro":2},{"/development/testing":2},{"/development/frameworks-mobile/react-native":1}],"writing":[{"/development/frameworks-mobile/ionic":2},{"/development/testing":2},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/internationalization":1}],"curve":[{"/development/frameworks-mobile/intro":2}],"styling":[{"/development/frameworks-mobile/intro":1},{"/style/typography":1},{"/style/themes":1}],"biggest":[{"/development/frameworks-mobile/intro":1}],"concern":[{"/development/frameworks-mobile/intro":1},{"/patterns/internationalization":1}],"wraps":[{"/development/frameworks-mobile/intro":1}],"performance":[{"/development/frameworks-mobile/intro":1},{"/development/testing":1}],"d":[{"/community/features":2},{"/development/frameworks-mobile/intro":1}],"write":[{"/development/testing":10},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1}],"views":[{"/development/testing":2},{"/development/frameworks-mobile/intro":1}],"recommended":[{"/development/frameworks-mobile/react-native":3},{"/development/frameworks-mobile/intro":1},{"/patterns/appbar":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/style/illustrations":1}],"won":[{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/community/our-team":1}],"process":[{"/patterns/internationalization":3},{"/patterns/steppers":2},{"/patterns/user-auth":2},{"/community/innersourcing":2},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1},{"/design/accessibility":1},{"/patterns/tables":1},{"/community/license":1}],"developing":[{"/development/frameworks-mobile/ionic":2},{"/development/frameworks-mobile/intro":1},{"/design/project-identity":1},{"/style/typography":1},{"/community/our-team":1}],"ultimately":[{"/development/frameworks-mobile/intro":1},{"/patterns/loading":1}],"creating":[{"/development/frameworks-mobile/react-native":2},{"/development/testing":2},{"/patterns/user-auth":2},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/design/project-identity":1},{"/patterns/overlay":1},{"/style/illustrations":1},{"/style/typography":1},{"/community/innersourcing":1}],"final":[{"/development/frameworks-mobile/intro":4},{"/development/frameworks-mobile/react-native":1}],"binary":[{"/development/frameworks-mobile/intro":2},{"/community/license":2},{"/development/frameworks-mobile/ionic":1}],"distribute":[{"/development/frameworks-mobile/intro":1}],"testers":[{"/development/frameworks-mobile/intro":1}],"customers":[{"/development/frameworks-mobile/intro":1}],"deploying":[{"/development/frameworks-mobile/intro":1}],"distributable":[{"/development/frameworks-mobile/intro":1}],"distributing":[{"/development/frameworks-mobile/intro":1}],"center":[{"/development/frameworks-mobile/intro":3},{"/patterns/overlay":1}],"formerly":[{"/development/frameworks-mobile/intro":1}],"hockeyapp":[{"/development/frameworks-mobile/intro":1}],"gives":[{"/development/frameworks-mobile/intro":1},{"/patterns/loading":1}],"ready":[{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1}],"distribution":[{"/development/frameworks-mobile/intro":2},{"/community/license":1}],"service":[{"/development/frameworks-mobile/intro":1},{"/patterns/account-menu":1}],"upload":[{"/development/frameworks-mobile/intro":1}],"binaries":[{"/development/frameworks-mobile/intro":1}],"lists":[{"/patterns/lists":12},{"/patterns/tables":10},{"/development/frameworks-mobile/intro":1}],"people":[{"/development/frameworks-mobile/intro":2},{"/patterns/internationalization":1},{"/community/faq":1}],"whom":[{"/development/frameworks-mobile/intro":1}],"share":[{"/community/faq":2},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1}],"notified":[{"/development/frameworks-mobile/intro":1},{"/patterns/user-auth":1}],"email":[{"/patterns/user-auth":17},{"/patterns/forms":4},{"/patterns/account-menu":2},{"/community/contactus":2},{"/development/frameworks-mobile/intro":1},{"/design/project-identity":1},{"/community/innersourcing":1},{"/community/features":1}],"prompted":[{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/react-native":1}],"onto":[{"/development/frameworks-mobile/intro":1},{"/design/intro":1},{"/patterns/lists":1},{"/community/faq":1}],"request":[{"/patterns/user-auth":3},{"/style/iconography":2},{"/development/frameworks-mobile/intro":1},{"/community/innersourcing":1},{"/community/features":1}],"utilize":[{"/style/themes":2},{"/development/frameworks-mobile/intro":1},{"/style/color":1}],"connect":[{"/development/frameworks-mobile/intro":1}],"console":[{"/development/frameworks-mobile/intro":1}],"takes":[{"/patterns/loading":2},{"/development/frameworks-mobile/ionic":1}],"beyond":[{"/development/frameworks-mobile/ionic":1}],"cordova":[{"/development/frameworks-mobile/ionic":15},{"/community/bugs":3},{"/community/features":1}],"scenes":[{"/patterns/loading":2},{"/development/frameworks-mobile/ionic":1}],"offers":[{"/development/frameworks-mobile/ionic":1},{"/design/project-identity":1},{"/style/color":1},{"/style/iconography":1},{"/style/themes":1},{"/community/faq":1}],"convenience":[{"/development/frameworks-mobile/ionic":1}],"pure":[{"/development/frameworks-mobile/ionic":1},{"/style/color":1},{"/style/themes":1}],"apache":[{"/development/frameworks-mobile/ionic":1},{"/style/typography":1},{"/community/features":1}],"date":[{"/development/frameworks-mobile/ionic":1},{"/patterns/internationalization":1},{"/patterns/lists":1}],"gradle":[{"/development/frameworks-mobile/ionic":3}],"res":[{"/development/frameworks-mobile/ionic":2}],"gradle_home":[{"/development/frameworks-mobile/ionic":1}],"virtually":[{"/development/frameworks-mobile/ionic":1}],"identical":[{"/development/frameworks-mobile/ionic":1},{"/design/anatomy":1},{"/design/websites":1}],"normal":[{"/development/frameworks-mobile/ionic":1},{"/design/anatomy":1}],"serve":[{"/design/websites":2},{"/development/frameworks-mobile/ionic":1},{"/design/intro":1},{"/community/our-team":1}],"localhost":[{"/development/frameworks-mobile/ionic":1}],"completes":[{"/development/frameworks-mobile/ionic":1}],"along":[{"/development/frameworks-mobile/ionic":1},{"/patterns/account-menu":1}],"configuration":[{"/development/frameworks-mobile/ionic":1}],"now":[{"/development/frameworks-mobile/ionic":1}],"simulator":[{"/development/frameworks-mobile/ionic":1}],"flags":[{"/development/frameworks-mobile/ionic":1}],"buildflag":[{"/development/frameworks-mobile/ionic":1}],"usemodernbuildsystem":[{"/development/frameworks-mobile/ionic":1}],"addition":[{"/development/frameworks-mobile/react-native":1},{"/design/accessibility":1},{"/design/websites":1},{"/community/our-team":1}],"expo":[{"/development/frameworks-mobile/react-native":16},{"/community/innersourcing":1}],"client":[{"/development/frameworks-mobile/react-native":1},{"/patterns/forms":1},{"/patterns/tables":1}],"creation":[{"/development/frameworks-mobile/react-native":1},{"/patterns/user-auth":1}],"paper":[{"/development/frameworks-mobile/react-native":10},{"/style/themes":2},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/overlay":1},{"/patterns/tables":1}],"vector":[{"/development/frameworks-mobile/react-native":4}],"svg":[{"/style/illustrations":3},{"/development/frameworks-mobile/react-native":1}],"jest":[{"/development/testing":3},{"/development/frameworks-mobile/react-native":1}],"renderer":[{"/development/frameworks-mobile/react-native":1},{"/development/testing":1}],"reading":[{"/development/frameworks-mobile/react-native":1},{"/design/accessibility":1},{"/community/faq":1}],"weight":[{"/style/typography":2},{"/development/frameworks-mobile/react-native":1},{"/design/project-identity":1}],"load":[{"/patterns/loading":3},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/patterns/appbar":1},{"/patterns/tables":1}],"format":[{"/development/frameworks-mobile/react-native":1},{"/design/websites":1}],"opensans":[{"/development/frameworks-mobile/react-native":2}],"semibold":[{"/development/frameworks-mobile/react-native":1}],"demos":[{"/development/frameworks-mobile/react-native":2},{"/community/innersourcing":1}],"applies":[{"/development/frameworks-mobile/react-native":2}],"avoiding":[{"/development/frameworks-mobile/react-native":1},{"/design/accessibility":1}],"repeated":[{"/development/frameworks-mobile/react-native":1}],"repeatedly":[{"/development/frameworks-mobile/react-native":1}],"inline":[{"/development/frameworks-mobile/react-native":1}],"define":[{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/anatomy":1},{"/design/websites":1},{"/patterns/steppers":1}],"throughout":[{"/design/websites":3},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/intro":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/patterns/user-auth":1},{"/style/color":1},{"/style/themes":1}],"mytext":[{"/development/frameworks-mobile/react-native":2}],"export":[{"/style/illustrations":4},{"/development/frameworks-mobile/react-native":1}],"children":[{"/development/frameworks-mobile/react-native":2}],"otherfile":[{"/development/frameworks-mobile/react-native":1}],"object":[{"/patterns/internationalization":2},{"/development/frameworks-mobile/react-native":1}],"relatively":[{"/development/frameworks-mobile/react-native":1},{"/patterns/account-menu":1}],"simple":[{"/design/websites":3},{"/design/anatomy":2},{"/patterns/overlay":2},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/patterns/user-auth":1}],"understand":[{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/design/project-identity":1},{"/patterns/tables":1},{"/patterns/visualizations":1},{"/style/typography":1},{"/community/our-team":1}],"remains":[{"/development/frameworks-mobile/react-native":1}],"little":[{"/development/frameworks-mobile/react-native":1}],"adjustment":[{"/development/frameworks-mobile/react-native":1}],"rather":[{"/development/testing":2},{"/development/frameworks-mobile/react-native":1},{"/design/project-identity":1},{"/patterns/empty-states":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/style/typography":1}],"typical":[{"/development/frameworks-mobile/react-native":1}],"uis":[{"/development/frameworks-mobile/react-native":1}],"special":[{"/development/frameworks-mobile/react-native":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/style/color":1},{"/community/license":1}],"layouts":[{"/design/intro":2},{"/design/websites":2},{"/development/frameworks-mobile/react-native":1},{"/patterns/user-auth":1},{"/community/innersourcing":1}],"exclusively":[{"/development/frameworks-mobile/react-native":1},{"/style/illustrations":1}],"flexbox":[{"/development/frameworks-mobile/react-native":1}],"after":[{"/development/testing":3},{"/patterns/user-auth":3},{"/development/frameworks-mobile/react-native":2},{"/patterns/forms":1},{"/patterns/loading":1},{"/style/illustrations":1},{"/community/innersourcing":1}],"ve":[{"/development/frameworks-mobile/react-native":1},{"/design/project-identity":1},{"/community/faq":1}],"created":[{"/development/testing":3},{"/patterns/user-auth":2},{"/development/frameworks-mobile/react-native":1},{"/style/iconography":1},{"/community/innersourcing":1}],"cd":[{"/development/testing":2},{"/development/frameworks-mobile/react-native":1}],"yourappname":[{"/development/frameworks-mobile/react-native":1}],"rnc":[{"/development/frameworks-mobile/react-native":3}],"screen":[{"/patterns/loading":6},{"/patterns/overlay":6},{"/patterns/user-auth":6},{"/patterns/appbar":5},{"/patterns/forms":5},{"/development/testing":4},{"/patterns/empty-states":4},{"/development/frameworks-mobile/react-native":2},{"/design/intro":2},{"/design/accessibility":2},{"/patterns/lists":2},{"/patterns/navigation":2},{"/patterns/visualizations":2},{"/design/anatomy":1},{"/patterns/internationalization":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/style/color":1},{"/style/illustrations":1},{"/style/themes":1},{"/community/our-team":1}],"changes":[{"/design/project-identity":2},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/intro":1},{"/patterns/forms":1},{"/patterns/tables":1},{"/patterns/user-auth":1}],"rebuild":[{"/development/frameworks-mobile/react-native":1}],"update":[{"/development/frameworks-mobile/react-native":2},{"/development/testing":1},{"/patterns/account-menu":1},{"/patterns/appbar":1}],"emulator":[{"/development/frameworks-mobile/react-native":2}],"error":[{"/patterns/forms":8},{"/patterns/user-auth":4},{"/design/accessibility":2},{"/development/frameworks-mobile/react-native":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/loading":1}],"message":[{"/patterns/empty-states":2},{"/patterns/forms":2},{"/development/frameworks-mobile/react-native":1},{"/patterns/lists":1},{"/patterns/overlay":1},{"/patterns/user-auth":1}],"watchman":[{"/development/frameworks-mobile/react-native":2}],"brew":[{"/development/frameworks-mobile/react-native":1}],"ejecting":[{"/development/frameworks-mobile/react-native":5}],"becomes":[{"/development/frameworks-mobile/react-native":1},{"/patterns/appbar":1}],"eject":[{"/development/frameworks-mobile/react-native":5}],"reason":[{"/development/frameworks-mobile/react-native":3},{"/design/websites":1},{"/design/project-identity":1}],"prompts":[{"/development/frameworks-mobile/react-native":1}],"warning":[{"/development/frameworks-mobile/react-native":1}],"cannot":[{"/development/frameworks-mobile/react-native":1},{"/patterns/forms":1}],"undone":[{"/development/frameworks-mobile/react-native":1}],"proceeding":[{"/development/frameworks-mobile/react-native":1}],"bare":[{"/development/frameworks-mobile/react-native":1}],"second":[{"/development/frameworks-mobile/react-native":2},{"/patterns/loading":1},{"/style/typography":1}],"accept":[{"/patterns/user-auth":2},{"/development/frameworks-mobile/react-native":1}],"value":[{"/development/testing":2},{"/development/frameworks-mobile/react-native":1},{"/design/websites":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/tables":1}],"press":[{"/development/frameworks-mobile/react-native":1},{"/patterns/lists":1},{"/patterns/tables":1}],"enter":[{"/patterns/user-auth":6},{"/development/frameworks-mobile/react-native":2},{"/patterns/forms":2}],"changing":[{"/style/typography":3},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/patterns/account-menu":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/overlay":1},{"/patterns/user-auth":1}],"cause":[{"/development/frameworks-mobile/react-native":1},{"/development/testing":1}],"issues":[{"/community/bugs":2},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/style/color":1},{"/community/contactus":1}],"solution":[{"/community/faq":3},{"/development/frameworks-mobile/react-native":1}],"folder":[{"/development/frameworks-mobile/react-native":1}],"folders":[{"/development/frameworks-mobile/react-native":1}],"projectname":[{"/development/frameworks-mobile/react-native":1}],"xcodeproj":[{"/development/frameworks-mobile/react-native":1}],"perform":[{"/patterns/tables":3},{"/development/frameworks-mobile/react-native":2},{"/patterns/forms":2},{"/design/intro":1},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/user-auth":1},{"/community/innersourcing":1}],"builds":[{"/development/frameworks-mobile/react-native":2},{"/style/typography":1}],"scripts":[{"/development/frameworks-mobile/react-native":1},{"/patterns/internationalization":1}],"added":[{"/community/features":2},{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/style/typography":1},{"/community/innersourcing":1},{"/community/our-team":1}],"during":[{"/patterns/forms":2},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/patterns/user-auth":1},{"/community/innersourcing":1},{"/community/faq":1}],"ejection":[{"/development/frameworks-mobile/react-native":1}],"manually":[{"/development/frameworks-mobile/react-native":1},{"/design/websites":1},{"/patterns/lists":1},{"/patterns/loading":1}],"bundle":[{"/development/frameworks-mobile/react-native":1}],"vs":[{"/design/project-identity":5},{"/patterns/internationalization":2},{"/development/frameworks-mobile/react-native":1},{"/design/websites":1},{"/patterns/navigation":1},{"/patterns/tables":1}],"nice":[{"/development/frameworks-mobile/react-native":1}],"spinning":[{"/development/frameworks-mobile/react-native":1}],"quick":[{"/development/testing":2},{"/development/frameworks-mobile/react-native":1},{"/patterns/account-menu":1},{"/patterns/navigation":1},{"/patterns/tables":1}],"production":[{"/development/frameworks-mobile/react-native":1}],"complications":[{"/development/frameworks-mobile/react-native":1}],"because":[{"/development/testing":5},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/design/anatomy":1},{"/patterns/appbar":1},{"/patterns/tables":1}],"ability":[{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/design/websites":1},{"/patterns/appbar":1},{"/patterns/internationalization":1},{"/patterns/lists":1}],"live":[{"/development/frameworks-mobile/react-native":1},{"/development/testing":1},{"/style/iconography":1},{"/community/innersourcing":1},{"/community/contactus":1}],"snack":[{"/community/innersourcing":2},{"/development/frameworks-mobile/react-native":1}],"speed":[{"/development/frameworks-mobile/react-native":1},{"/community/innersourcing":1},{"/resources/designer":1}],"improve":[{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/design/websites":1},{"/patterns/forms":1}],"implementation":[{"/development/testing":5},{"/development/frameworks-mobile/react-native":2}],"unit":[{"/development/testing":14},{"/design/anatomy":1}],"e2e":[{"/development/testing":7}],"tdd":[{"/development/testing":3}],"bdd":[{"/development/testing":2}],"cypress":[{"/development/testing":6}],"successfully":[{"/development/testing":1},{"/patterns/forms":1}],"releasing":[{"/development/testing":1},{"/community/innersourcing":1}],"despite":[{"/development/testing":1}],"importance":[{"/development/testing":1},{"/design/intro":1}],"overlook":[{"/development/testing":1}],"neglect":[{"/development/testing":1}],"considered":[{"/development/testing":1},{"/design/intro":1},{"/design/websites":1},{"/style/typography":1}],"beginning":[{"/development/testing":1}],"afterthought":[{"/development/testing":1}],"every":[{"/design/websites":3},{"/design/project-identity":2},{"/community/faq":2},{"/development/testing":1}],"piece":[{"/development/testing":1},{"/design/websites":1}],"verifies":[{"/development/testing":1}],"correct":[{"/development/testing":3},{"/patterns/tables":1},{"/style/illustrations":1},{"/style/themes":1}],"tests":[{"/development/testing":46},{"/design/accessibility":1}],"purpose":[{"/style/color":2},{"/development/testing":1},{"/design/project-identity":1},{"/patterns/overlay":1},{"/patterns/user-auth":1},{"/community/license":1}],"verify":[{"/development/testing":8},{"/patterns/forms":4},{"/patterns/user-auth":3}],"individual":[{"/patterns/lists":2},{"/patterns/tables":2},{"/development/testing":1},{"/design/anatomy":1},{"/patterns/empty-states":1}],"methods":[{"/development/testing":4},{"/patterns/forms":1}],"functions":[{"/patterns/account-menu":3},{"/development/testing":2},{"/design/accessibility":1}],"modules":[{"/development/testing":1}],"services":[{"/patterns/internationalization":2},{"/development/testing":1},{"/patterns/visualizations":1},{"/style/color":1},{"/community/license":1}],"together":[{"/development/testing":2},{"/design/websites":1},{"/patterns/tables":1}],"functional":[{"/development/testing":3},{"/design/websites":3},{"/design/anatomy":1}],"output":[{"/development/testing":3}],"actions":[{"/patterns/lists":15},{"/patterns/account-menu":8},{"/patterns/tables":6},{"/design/intro":2},{"/patterns/appbar":2},{"/patterns/empty-states":2},{"/patterns/overlay":2},{"/development/testing":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/visualizations":1}],"business":[{"/development/testing":2},{"/community/license":1},{"/community/faq":1},{"/community/contactus":1}],"behaviors":[{"/patterns/forms":2},{"/development/testing":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/patterns/user-auth":1}],"workflows":[{"/design/anatomy":8},{"/patterns/user-auth":7},{"/development/testing":1},{"/patterns/steppers":1},{"/community/our-team":1}],"function":[{"/development/testing":3},{"/design/intro":1},{"/design/accessibility":1},{"/design/websites":1}],"expected":[{"/development/testing":2},{"/patterns/internationalization":2},{"/design/anatomy":1},{"/design/project-identity":1},{"/patterns/visualizations":1},{"/style/typography":1}],"acceptance":[{"/development/testing":2}],"meets":[{"/development/testing":1}],"behaves":[{"/patterns/navigation":2},{"/development/testing":1}],"correctly":[{"/development/testing":1},{"/design/accessibility":1},{"/patterns/forms":1}],"heavy":[{"/development/testing":1}],"smoke":[{"/development/testing":1}],"checks":[{"/patterns/forms":2},{"/development/testing":1}],"major":[{"/development/testing":1},{"/style/themes":1}],"document":[{"/development/testing":1}],"focuses":[{"/development/testing":1},{"/design/anatomy":1}],"mainly":[{"/development/testing":1}],"easiest":[{"/development/testing":1},{"/patterns/lists":1},{"/style/typography":1}],"automate":[{"/development/testing":3}],"smallest":[{"/development/testing":1},{"/style/illustrations":1}],"pieces":[{"/development/testing":2},{"/community/faq":1}],"such":[{"/patterns/internationalization":5},{"/patterns/lists":5},{"/patterns/overlay":5},{"/development/testing":4},{"/design/anatomy":4},{"/patterns/forms":4},{"/patterns/account-menu":3},{"/patterns/empty-states":3},{"/patterns/user-auth":3},{"/style/illustrations":3},{"/style/themes":3},{"/patterns/tables":2},{"/style/color":2},{"/design/intro":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/steppers":1},{"/patterns/visualizations":1},{"/style/typography":1},{"/community/license":1},{"/community/features":1},{"/community/faq":1}],"verifying":[{"/patterns/forms":4},{"/development/testing":1}],"inputs":[{"/patterns/forms":3},{"/development/testing":2},{"/patterns/loading":1},{"/patterns/overlay":1}],"outputs":[{"/development/testing":2}],"method":[{"/development/testing":1}],"bulk":[{"/development/testing":1}],"easy":[{"/development/testing":2},{"/design/websites":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/resources/designer":1}],"achieve":[{"/development/testing":2},{"/style/themes":1}],"coverage":[{"/development/testing":7}],"measures":[{"/development/testing":1}],"percentage":[{"/development/testing":1},{"/style/iconography":1}],"verified":[{"/patterns/forms":3},{"/development/testing":1},{"/patterns/user-auth":1}],"shouldn":[{"/development/testing":1}],"external":[{"/development/testing":1},{"/style/iconography":1}],"apis":[{"/development/testing":1}],"keeping":[{"/development/testing":1},{"/design/websites":1}],"isolated":[{"/development/testing":1}],"manner":[{"/development/testing":1}],"failing":[{"/development/testing":1}],"implement":[{"/patterns/account-menu":3},{"/patterns/appbar":2},{"/development/testing":1},{"/design/anatomy":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/style/illustrations":1}],"fix":[{"/development/testing":1}],"combining":[{"/development/testing":2}],"move":[{"/development/testing":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/patterns/overlay":1},{"/community/innersourcing":1}],"realm":[{"/development/testing":1}],"_integration":[{"/development/testing":1}],"testing_":[{"/development/testing":1}],"long":[{"/development/testing":3},{"/patterns/tables":2},{"/design/accessibility":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/steppers":1}],"achieving":[{"/development/testing":1}],"acceptable":[{"/style/typography":2},{"/development/testing":1},{"/patterns/forms":1}],"levels":[{"/patterns/navigation":2},{"/development/testing":1},{"/design/anatomy":1},{"/design/websites":1}],"_when_":[{"/development/testing":1}],"important":[{"/design/websites":4},{"/style/typography":3},{"/development/testing":2},{"/design/accessibility":2},{"/design/intro":1},{"/patterns/forms":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/style/color":1},{"/style/illustrations":1}],"elect":[{"/development/testing":1},{"/patterns/account-menu":1}],"driven":[{"/development/testing":2}],"methodology":[{"/development/testing":1}],"prior":[{"/development/testing":2},{"/community/license":1},{"/community/innersourcing":1}],"situation":[{"/development/testing":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/user-auth":1}],"actually":[{"/development/testing":2}],"desired":[{"/development/testing":2},{"/patterns/tables":2}],"satisfy":[{"/development/testing":1}],"behavior":[{"/development/testing":3},{"/design/anatomy":2},{"/patterns/navigation":2},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/tables":1}],"similar":[{"/patterns/tables":3},{"/development/testing":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/community/our-team":1}],"cases":[{"/patterns/empty-states":4},{"/development/testing":2},{"/patterns/lists":2},{"/design/project-identity":1},{"/patterns/forms":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/style/color":1},{"/style/typography":1},{"/style/themes":1},{"/community/innersourcing":1},{"/community/faq":1}],"focus":[{"/development/testing":2},{"/design/websites":2},{"/patterns/forms":2},{"/design/intro":1},{"/design/project-identity":1},{"/patterns/navigation":1}],"less":[{"/development/testing":2},{"/patterns/navigation":2},{"/patterns/tables":2},{"/design/intro":1},{"/design/websites":1},{"/patterns/empty-states":1},{"/patterns/lists":1}],"actual":[{"/development/testing":1},{"/design/project-identity":1}],"usually":[{"/development/testing":2},{"/design/anatomy":2},{"/patterns/internationalization":2},{"/patterns/navigation":2},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/lists":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/patterns/visualizations":1}],"plain":[{"/development/testing":1},{"/patterns/forms":1}],"thing":[{"/development/testing":1}],"mind":[{"/development/testing":1},{"/design/project-identity":1},{"/style/typography":1},{"/community/faq":1}],"confidence":[{"/development/testing":1}],"scenario":[{"/development/testing":1}],"fine":[{"/development/testing":1}],"developed":[{"/development/testing":2}],"quality":[{"/design/intro":2},{"/development/testing":1},{"/design/websites":1}],"effective":[{"/development/testing":2},{"/design/intro":2},{"/design/websites":2},{"/patterns/account-menu":2},{"/design/anatomy":1},{"/patterns/forms":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/style/illustrations":1},{"/community/our-team":1}],"rendered":[{"/development/testing":4}],"internal":[{"/development/testing":1}],"perspective":[{"/development/testing":1},{"/style/illustrations":1},{"/style/typography":1}],"things":[{"/design/project-identity":4},{"/development/testing":1},{"/design/intro":1}],"interacts":[{"/development/testing":1}],"button":[{"/patterns/forms":16},{"/development/testing":8},{"/design/accessibility":5},{"/patterns/loading":3},{"/patterns/overlay":3},{"/patterns/appbar":2},{"/style/themes":2},{"/design/anatomy":1},{"/patterns/account-menu":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/community/innersourcing":1}],"modal":[{"/patterns/overlay":8},{"/development/testing":1}],"dialog":[{"/patterns/overlay":9},{"/development/testing":2},{"/patterns/steppers":1}],"clicked":[{"/development/testing":2},{"/patterns/appbar":1}],"_open_":[{"/development/testing":1}],"label":[{"/patterns/forms":3},{"/patterns/loading":2},{"/development/testing":1},{"/design/accessibility":1},{"/design/websites":1},{"/style/themes":1}],"tempted":[{"/development/testing":1}],"id":[{"/development/testing":7}],"called":[{"/development/testing":1},{"/design/websites":1},{"/patterns/appbar":1},{"/patterns/tables":1}],"pressed":[{"/development/testing":1},{"/design/anatomy":1}],"break":[{"/development/testing":1}],"even":[{"/development/testing":2},{"/patterns/internationalization":2},{"/design/websites":1},{"/style/typography":1},{"/community/license":1}],"though":[{"/development/testing":1}],"sees":[{"/development/testing":1}],"interactions":[{"/development/testing":2},{"/design/anatomy":2},{"/patterns/tables":2},{"/design/intro":1},{"/patterns/internationalization":1},{"/patterns/lists":1}],"change":[{"/patterns/user-auth":6},{"/design/project-identity":5},{"/patterns/forms":5},{"/development/testing":3},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/internationalization":1},{"/patterns/tables":1},{"/community/faq":1}],"interaction":[{"/design/anatomy":2},{"/patterns/navigation":2},{"/development/testing":1},{"/patterns/appbar":1},{"/patterns/loading":1},{"/patterns/tables":1},{"/patterns/visualizations":1}],"returned":[{"/development/testing":1}],"action":[{"/patterns/forms":5},{"/patterns/lists":4},{"/patterns/empty-states":2},{"/patterns/overlay":2},{"/patterns/tables":2},{"/development/testing":1},{"/patterns/appbar":1}],"tested":[{"/development/testing":1},{"/design/accessibility":1}],"jasmine":[{"/development/testing":1}],"karma":[{"/development/testing":1}],"identified":[{"/development/testing":2},{"/design/project-identity":1},{"/patterns/forms":1}],"spec":[{"/development/testing":1}],"ts":[{"/development/testing":2}],"extension":[{"/development/testing":2},{"/patterns/steppers":1}],"execute":[{"/development/testing":2}],"terminal":[{"/development/testing":3}],"root":[{"/development/testing":2},{"/style/illustrations":1}],"ng":[{"/development/testing":1}],"launch":[{"/development/testing":1}],"runner":[{"/development/testing":2}],"show":[{"/patterns/loading":4},{"/patterns/account-menu":2},{"/patterns/lists":2},{"/development/testing":1},{"/design/accessibility":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/style/iconography":1},{"/style/illustrations":1},{"/community/faq":1}],"fail":[{"/development/testing":1}],"utilities":[{"/development/testing":1},{"/patterns/visualizations":1}],"complement":[{"/development/testing":1}],"dependency":[{"/development/testing":1}],"airbnb":[{"/development/testing":1}],"bundles":[{"/development/testing":1}],"strategies":[{"/development/testing":2}],"generate":[{"/development/testing":2}],"underlying":[{"/development/testing":3},{"/patterns/user-auth":1}],"regular":[{"/development/testing":1},{"/patterns/navigation":1}],"above":[{"/patterns/account-menu":2},{"/patterns/forms":2},{"/style/illustrations":2},{"/community/license":2},{"/development/testing":1},{"/design/anatomy":1},{"/patterns/appbar":1},{"/patterns/navigation":1},{"/patterns/steppers":1},{"/style/typography":1}],"terms":[{"/development/testing":1},{"/patterns/account-menu":1}],"complexity":[{"/development/testing":1},{"/design/anatomy":1},{"/patterns/forms":1}],"primarily":[{"/patterns/appbar":2},{"/patterns/tables":2},{"/style/themes":2},{"/development/testing":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/overlay":1}],"flow":[{"/development/testing":1},{"/patterns/internationalization":1}],"making":[{"/design/accessibility":4},{"/patterns/forms":2},{"/development/testing":1},{"/design/websites":1},{"/patterns/internationalization":1},{"/style/iconography":1}],"journey":[{"/development/testing":1}],"outcomes":[{"/development/testing":1}],"generally":[{"/design/intro":2},{"/development/testing":1},{"/patterns/user-auth":1}],"categorized":[{"/development/testing":1}],"flows":[{"/development/testing":1}],"meet":[{"/development/testing":1},{"/design/accessibility":1},{"/design/project-identity":1},{"/community/faq":1}],"customer":[{"/development/testing":1}],"expectations":[{"/development/testing":1},{"/patterns/loading":1}],"regression":[{"/development/testing":1}],"broken":[{"/development/testing":1},{"/design/anatomy":1}],"cover":[{"/style/typography":3},{"/patterns/navigation":2},{"/development/testing":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/community/faq":1}],"stories":[{"/development/testing":1}],"span":[{"/development/testing":1}],"signing":[{"/development/testing":1}],"accounts":[{"/development/testing":1},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/user-auth":1}],"logging":[{"/development/testing":1},{"/patterns/account-menu":1},{"/patterns/user-auth":1}],"updating":[{"/development/testing":1},{"/patterns/user-auth":1},{"/community/faq":1}],"profile":[{"/patterns/account-menu":2},{"/development/testing":1},{"/patterns/user-auth":1},{"/resources/designer":1}],"concerned":[{"/development/testing":1}],"results":[{"/patterns/empty-states":2},{"/development/testing":1},{"/design/accessibility":1},{"/patterns/appbar":1}],"against":[{"/development/testing":1},{"/community/faq":1}],"case":[{"/patterns/forms":4},{"/design/project-identity":3},{"/development/testing":1},{"/design/websites":1},{"/patterns/appbar":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/style/typography":1},{"/community/faq":1}],"automates":[{"/development/testing":1}],"automated":[{"/development/testing":3}],"involved":[{"/development/testing":1}],"scope":[{"/development/testing":1}],"try":[{"/design/websites":2},{"/development/testing":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/style/iconography":1},{"/community/innersourcing":1}],"optimize":[{"/development/testing":1}],"pipeline":[{"/development/testing":1}],"parallel":[{"/style/illustrations":2},{"/development/testing":1},{"/design/anatomy":1}],"finish":[{"/development/testing":1},{"/patterns/forms":1}],"alone":[{"/development/testing":1}],"enough":[{"/design/accessibility":2},{"/development/testing":1},{"/patterns/empty-states":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/community/faq":1}],"regressions":[{"/development/testing":1}],"aim":[{"/development/testing":1}],"breadth":[{"/development/testing":1}],"scenarios":[{"/development/testing":1}],"rely":[{"/design/accessibility":2},{"/development/testing":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/tables":1}],"interact":[{"/design/accessibility":2},{"/patterns/overlay":2},{"/patterns/tables":2},{"/development/testing":1},{"/design/intro":1},{"/design/anatomy":1}],"reliable":[{"/development/testing":2}],"mechanism":[{"/style/themes":2},{"/development/testing":1},{"/patterns/account-menu":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/user-auth":1},{"/community/license":1}],"selecting":[{"/development/testing":1},{"/patterns/overlay":1}],"selectors":[{"/development/testing":5}],"classes":[{"/development/testing":2},{"/style/themes":1}],"rules":[{"/development/testing":1},{"/design/anatomy":1},{"/patterns/user-auth":1},{"/style/themes":1}],"drawerlayout":[{"/development/testing":2}],"div":[{"/development/testing":4}],"header":[{"/patterns/account-menu":4},{"/patterns/appbar":3},{"/patterns/tables":3},{"/development/testing":2},{"/patterns/navigation":2},{"/patterns/lists":1},{"/style/typography":1}],"xpath":[{"/development/testing":3}],"selector":[{"/development/testing":2}],"within":[{"/development/testing":2},{"/patterns/internationalization":1},{"/patterns/user-auth":1},{"/style/iconography":1},{"/style/illustrations":1},{"/community/contactus":1}],"attribute":[{"/development/testing":3}],"browserstack":[{"/development/testing":2}],"advantages":[{"/development/testing":1},{"/patterns/tables":1}],"disadvantages":[{"/development/testing":1}],"pain":[{"/development/testing":1}],"automation":[{"/development/testing":5}],"constantly":[{"/development/testing":2},{"/community/contactus":1}],"particularly":[{"/development/testing":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/patterns/forms":1}],"dynamically":[{"/development/testing":1},{"/patterns/forms":1},{"/style/iconography":1}],"ids":[{"/development/testing":2}],"resulting":[{"/development/testing":1}],"moving":[{"/development/testing":1}],"tooling":[{"/development/testing":1}],"identifying":[{"/development/testing":2}],"locators":[{"/development/testing":1}],"_without_":[{"/development/testing":1}],"property":[{"/development/testing":1},{"/design/accessibility":1},{"/patterns/tables":1}],"attributes":[{"/development/testing":2},{"/style/illustrations":1}],"brittle":[{"/development/testing":1}],"subject":[{"/development/testing":1},{"/design/intro":1},{"/patterns/appbar":1},{"/patterns/tables":1},{"/style/iconography":1},{"/style/illustrations":1}],"reloaded":[{"/development/testing":1}],"combat":[{"/development/testing":1}],"dev":[{"/development/testing":1}],"safer":[{"/development/testing":1}],"lifecycle":[{"/development/testing":1}],"identification":[{"/development/testing":1}],"webelement":[{"/development/testing":1}],"click":[{"/development/testing":1},{"/design/accessibility":1},{"/patterns/forms":1},{"/patterns/tables":1},{"/community/innersourcing":1},{"/community/features":1}],"driver":[{"/development/testing":1}],"findelement":[{"/development/testing":1}],"configuring":[{"/development/testing":1}],"selenium":[{"/development/testing":9}],"webdriverio":[{"/development/testing":4}],"suite":[{"/development/testing":2}],"languages":[{"/patterns/internationalization":10},{"/development/testing":1},{"/patterns/forms":1},{"/style/illustrations":1},{"/style/typography":1}],"customized":[{"/style/typography":4},{"/development/testing":1}],"official":[{"/development/testing":3},{"/community/innersourcing":1}],"number":[{"/design/websites":3},{"/patterns/internationalization":3},{"/patterns/forms":2},{"/patterns/loading":2},{"/style/iconography":2},{"/development/testing":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/community/bugs":1}],"tutorials":[{"/development/testing":1}],"boasts":[{"/development/testing":1}],"traditional":[{"/design/websites":2},{"/development/testing":1}],"extendible":[{"/development/testing":1}],"compatible":[{"/development/testing":1}],"feature":[{"/community/features":2},{"/development/testing":1},{"/design/accessibility":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/community/innersourcing":1}],"rich":[{"/development/testing":1}],"webdriver":[{"/development/testing":1}],"io":[{"/development/testing":1}],"designing":[{"/patterns/internationalization":3},{"/community/faq":3},{"/design/intro":2},{"/design/websites":2},{"/style/illustrations":2},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/style/typography":1}],"greatly":[{"/design/intro":1}],"efficiency":[{"/design/intro":1}],"color":[{"/style/color":7},{"/design/websites":6},{"/style/themes":6},{"/style/illustrations":5},{"/patterns/lists":4},{"/design/accessibility":3},{"/patterns/internationalization":2},{"/design/intro":1},{"/design/anatomy":1},{"/design/project-identity":1},{"/patterns/forms":1},{"/patterns/visualizations":1},{"/style/iconography":1},{"/style/typography":1}],"iconography":[{"/design/project-identity":2},{"/design/intro":1},{"/style/iconography":1},{"/community/faq":1}],"address":[{"/patterns/user-auth":4},{"/design/intro":1},{"/patterns/account-menu":1},{"/patterns/internationalization":1}],"encounter":[{"/community/bugs":2},{"/design/intro":1}],"defined":[{"/design/intro":2},{"/design/anatomy":2},{"/patterns/steppers":1},{"/style/themes":1}],"unique":[{"/design/project-identity":4},{"/design/intro":1}],"host":[{"/design/intro":1}],"maintain":[{"/design/intro":2},{"/design/websites":2},{"/style/iconography":1},{"/community/faq":1}],"assets":[{"/community/faq":3},{"/design/intro":2},{"/patterns/internationalization":1},{"/community/license":1}],"figma":[{"/design/intro":3},{"/community/faq":3},{"/resources/designer":2},{"/design/accessibility":1},{"/design/websites":1},{"/style/illustrations":1},{"/community/innersourcing":1}],"powerful":[{"/design/websites":2},{"/design/intro":1},{"/patterns/internationalization":1},{"/patterns/tables":1}],"prototyping":[{"/design/intro":1}],"facilitates":[{"/design/intro":1}],"collaboration":[{"/design/intro":1},{"/design/anatomy":1}],"sharing":[{"/community/innersourcing":3},{"/design/intro":1},{"/community/faq":1}],"windows":[{"/design/intro":1},{"/design/accessibility":1}],"sign":[{"/patterns/user-auth":3},{"/design/intro":1},{"/design/anatomy":1}],"account":[{"/patterns/account-menu":20},{"/patterns/user-auth":12},{"/design/intro":1},{"/design/accessibility":1},{"/patterns/appbar":1},{"/patterns/internationalization":1}],"foundation":[{"/design/intro":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/visualizations":1},{"/community/our-team":1}],"intentional":[{"/design/intro":1}],"choices":[{"/design/intro":1}],"shape":[{"/design/intro":1}],"guidance":[{"/design/intro":1}],"strongly":[{"/design/project-identity":2},{"/design/intro":1},{"/patterns/tables":1}],"encourage":[{"/patterns/tables":3},{"/design/intro":2},{"/design/project-identity":2}],"research":[{"/design/intro":1},{"/design/accessibility":1},{"/patterns/internationalization":1},{"/patterns/tables":1}],"truly":[{"/design/intro":1}],"skills":[{"/design/intro":1}],"preferences":[{"/design/intro":1},{"/patterns/account-menu":1},{"/patterns/internationalization":1}],"tendencies":[{"/design/intro":1}],"labels":[{"/patterns/navigation":3},{"/design/intro":1},{"/design/accessibility":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/style/illustrations":1}],"messaging":[{"/design/intro":1}],"clear":[{"/patterns/tables":2},{"/design/intro":1},{"/patterns/appbar":1},{"/style/color":1},{"/community/bugs":1}],"strive":[{"/design/websites":2},{"/design/intro":1},{"/design/anatomy":1},{"/community/faq":1}],"defining":[{"/design/intro":1},{"/design/anatomy":1}],"layout":[{"/design/websites":2},{"/design/intro":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/internationalization":1}],"purposeful":[{"/design/intro":1}],"laying":[{"/design/intro":1}],"relationship":[{"/design/intro":1}],"items":[{"/patterns/lists":10},{"/design/websites":3},{"/design/intro":2},{"/patterns/navigation":2},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/tables":1}],"structure":[{"/patterns/lists":2},{"/design/intro":1},{"/design/websites":1},{"/patterns/tables":1}],"hierarchy":[{"/patterns/navigation":4},{"/design/intro":2},{"/style/typography":2},{"/design/anatomy":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/appbar":1}],"clarity":[{"/design/intro":1}],"increases":[{"/design/intro":1}],"scalability":[{"/design/intro":1}],"legibility":[{"/design/intro":1},{"/style/typography":1},{"/style/themes":1}],"readability":[{"/design/intro":1},{"/design/websites":1}],"communicate":[{"/design/intro":1},{"/design/anatomy":1},{"/patterns/empty-states":1},{"/patterns/steppers":1},{"/style/color":1}],"errors":[{"/design/intro":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/style/color":1}],"assist":[{"/design/intro":1},{"/patterns/internationalization":1}],"communicating":[{"/design/intro":1},{"/design/anatomy":1}],"defaults":[{"/design/intro":1}],"understanding":[{"/patterns/tables":2},{"/design/intro":1},{"/design/anatomy":1},{"/patterns/internationalization":1}],"careful":[{"/design/intro":1},{"/patterns/tables":1},{"/patterns/user-auth":1}],"states":[{"/patterns/empty-states":8},{"/style/color":3},{"/design/intro":1},{"/design/anatomy":1},{"/patterns/appbar":1},{"/style/illustrations":1}],"paths":[{"/design/intro":1},{"/style/illustrations":1}],"reduce":[{"/design/intro":1},{"/design/accessibility":1},{"/patterns/tables":1}],"burden":[{"/design/intro":1}],"interfaces":[{"/design/intro":2},{"/patterns/internationalization":1},{"/style/typography":1}],"seven":[{"/design/intro":2},{"/patterns/navigation":2}],"inches":[{"/design/intro":2}],"width":[{"/design/intro":2},{"/patterns/navigation":1}],"treated":[{"/design/intro":2},{"/patterns/user-auth":1},{"/style/typography":1}],"across":[{"/design/intro":2},{"/design/websites":2},{"/patterns/tables":2},{"/community/faq":2},{"/design/anatomy":1},{"/design/accessibility":1}],"regardless":[{"/design/intro":1},{"/patterns/user-auth":1}],"familiarize":[{"/design/intro":1},{"/patterns/user-auth":1}],"yourself":[{"/design/intro":1},{"/patterns/appbar":1},{"/patterns/navigation":1},{"/patterns/user-auth":1},{"/community/bugs":1},{"/community/features":1}],"fundamental":[{"/design/intro":1}],"principle":[{"/design/intro":1},{"/community/faq":1}],"overload":[{"/design/intro":1}],"excessive":[{"/design/intro":1}],"convenient":[{"/design/intro":1},{"/patterns/tables":1}],"consume":[{"/design/intro":1},{"/design/accessibility":1}],"presented":[{"/patterns/internationalization":2},{"/patterns/user-auth":2},{"/design/intro":1},{"/design/accessibility":1},{"/design/websites":1},{"/style/typography":1}],"reflect":[{"/design/intro":1}],"tablet":[{"/design/intro":3},{"/patterns/navigation":3},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/style/themes":1}],"real":[{"/patterns/loading":5},{"/design/intro":1},{"/patterns/appbar":1},{"/patterns/tables":1},{"/style/themes":1}],"estate":[{"/design/intro":1}],"continues":[{"/design/intro":1},{"/style/typography":1}],"evolve":[{"/design/intro":1}],"scaling":[{"/design/intro":1}],"future":[{"/design/intro":1},{"/patterns/empty-states":1},{"/patterns/tables":1},{"/style/illustrations":1},{"/style/themes":1},{"/community/innersourcing":1}],"non":[{"/patterns/steppers":3},{"/design/intro":1},{"/patterns/internationalization":1},{"/patterns/overlay":1},{"/style/color":1},{"/style/typography":1}],"touch":[{"/community/faq":4},{"/design/intro":2},{"/patterns/tables":2},{"/design/project-identity":1},{"/community/innersourcing":1}],"screens":[{"/patterns/user-auth":9},{"/patterns/forms":3},{"/patterns/empty-states":2},{"/design/intro":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/style/illustrations":1}],"interactive":[{"/design/websites":3},{"/style/themes":2},{"/design/intro":1},{"/design/anatomy":1},{"/patterns/lists":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/patterns/visualizations":1},{"/style/illustrations":1}],"displays":[{"/design/intro":2},{"/style/themes":1}],"automotive":[{"/design/intro":1}],"laptops":[{"/design/intro":1}],"phase":[{"/design/intro":1},{"/patterns/forms":1}],"contributing":[{"/community/faq":2},{"/design/intro":1},{"/style/iconography":1},{"/community/license":1}],"everyone":[{"/design/intro":1}],"concepts":[{"/design/intro":1},{"/design/anatomy":1}],"suggestions":[{"/design/intro":1},{"/community/faq":1},{"/community/contactus":1}],"ideas":[{"/design/intro":1},{"/community/innersourcing":1},{"/community/faq":1}],"useful":[{"/design/intro":1},{"/patterns/account-menu":1},{"/patterns/forms":1},{"/patterns/loading":1},{"/patterns/overlay":1},{"/patterns/steppers":1},{"/community/contactus":1}],"contribute":[{"/community/faq":2},{"/design/intro":1},{"/community/innersourcing":1},{"/community/bugs":1},{"/community/features":1}],"submissions":[{"/design/intro":1},{"/community/innersourcing":1}],"review":[{"/style/iconography":2},{"/design/intro":1},{"/patterns/forms":1}],"maintainers":[{"/design/intro":1}],"backlog":[{"/design/intro":1}],"bring":[{"/design/intro":1},{"/patterns/tables":1}],"anatomy":[{"/design/anatomy":2},{"/patterns/empty-states":1},{"/patterns/forms":1}],"atomic":[{"/design/anatomy":4}],"blocks":[{"/design/anatomy":1}],"four":[{"/design/accessibility":2},{"/design/anatomy":1},{"/patterns/navigation":1},{"/patterns/user-auth":1}],"increasing":[{"/design/anatomy":1}],"members":[{"/design/anatomy":1}],"terminology":[{"/design/anatomy":1}],"promote":[{"/design/anatomy":1},{"/design/websites":1},{"/community/license":1}],"applicable":[{"/patterns/account-menu":2},{"/design/anatomy":1},{"/patterns/lists":1}],"managers":[{"/design/anatomy":1}],"foundations":[{"/design/anatomy":4}],"typically":[{"/patterns/navigation":8},{"/design/websites":4},{"/patterns/user-auth":4},{"/design/anatomy":3},{"/patterns/lists":3},{"/patterns/forms":2},{"/patterns/overlay":2},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/internationalization":1},{"/patterns/steppers":1},{"/patterns/visualizations":1},{"/style/typography":1},{"/style/themes":1},{"/community/license":1},{"/community/contactus":1}],"establish":[{"/design/project-identity":4},{"/design/anatomy":1},{"/style/typography":1},{"/community/innersourcing":1}],"lay":[{"/design/anatomy":1},{"/design/accessibility":1},{"/patterns/navigation":1}],"units":[{"/patterns/internationalization":2},{"/design/anatomy":1}],"clicking":[{"/patterns/forms":4},{"/patterns/overlay":3},{"/design/anatomy":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/user-auth":1},{"/community/faq":1}],"expanding":[{"/design/anatomy":1}],"buttons":[{"/patterns/lists":3},{"/design/websites":2},{"/patterns/appbar":2},{"/patterns/internationalization":2},{"/patterns/overlay":2},{"/style/illustrations":2},{"/design/anatomy":1},{"/design/project-identity":1},{"/patterns/navigation":1},{"/patterns/user-auth":1},{"/style/color":1},{"/style/themes":1},{"/community/faq":1}],"tabs":[{"/patterns/navigation":12},{"/design/anatomy":1},{"/design/websites":1}],"sliders":[{"/design/anatomy":1}],"complex":[{"/design/anatomy":2},{"/design/accessibility":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/navigation":1}],"drawers":[{"/patterns/navigation":2},{"/design/anatomy":1},{"/patterns/internationalization":1}],"simpler":[{"/design/anatomy":1}],"form":[{"/patterns/forms":15},{"/patterns/loading":2},{"/patterns/overlay":2},{"/community/innersourcing":2},{"/design/anatomy":1},{"/patterns/account-menu":1},{"/patterns/user-auth":1},{"/style/themes":1},{"/community/license":1},{"/community/features":1}],"ones":[{"/design/anatomy":1},{"/design/project-identity":1},{"/patterns/user-auth":1}],"advanced":[{"/design/anatomy":1},{"/patterns/appbar":1}],"largest":[{"/design/anatomy":1}],"stay":[{"/design/anatomy":1},{"/design/project-identity":1}],"room":[{"/design/anatomy":1},{"/patterns/account-menu":1},{"/patterns/lists":1},{"/style/illustrations":1}],"customizations":[{"/design/anatomy":1},{"/style/typography":1}],"empty":[{"/patterns/empty-states":21},{"/design/anatomy":1},{"/patterns/loading":1},{"/style/illustrations":1}],"fields":[{"/patterns/forms":11},{"/patterns/user-auth":2},{"/design/anatomy":1}],"password":[{"/patterns/user-auth":25},{"/patterns/forms":9},{"/design/anatomy":2},{"/patterns/account-menu":2},{"/patterns/overlay":1}],"invalid":[{"/patterns/forms":2},{"/design/anatomy":1}],"sequence":[{"/design/anatomy":1},{"/patterns/steppers":1}],"surrounding":[{"/design/anatomy":1}],"goes":[{"/design/anatomy":3},{"/community/faq":1},{"/community/our-team":1}],"another":[{"/design/anatomy":2},{"/patterns/internationalization":2},{"/patterns/lists":2},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/patterns/tables":1},{"/patterns/user-auth":1}],"represent":[{"/design/anatomy":1},{"/patterns/lists":1},{"/patterns/visualizations":1}],"tasks":[{"/design/anatomy":1},{"/patterns/overlay":1}],"registration":[{"/patterns/user-auth":20},{"/patterns/forms":2},{"/design/anatomy":1}],"pattern":[{"/patterns/tables":5},{"/patterns/appbar":4},{"/patterns/lists":4},{"/design/anatomy":3},{"/patterns/navigation":3},{"/patterns/user-auth":3},{"/patterns/account-menu":2},{"/patterns/empty-states":2},{"/patterns/forms":2},{"/patterns/overlay":2},{"/patterns/steppers":2},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/patterns/visualizations":1},{"/community/innersourcing":1},{"/community/faq":1}],"exist":[{"/design/anatomy":1},{"/patterns/user-auth":1}],"described":[{"/design/anatomy":1}],"showing":[{"/patterns/internationalization":2},{"/patterns/loading":2},{"/design/anatomy":1},{"/patterns/user-auth":1}],"list":[{"/patterns/lists":44},{"/patterns/tables":7},{"/patterns/navigation":2},{"/patterns/overlay":2},{"/community/license":2},{"/design/anatomy":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/style/color":1},{"/community/faq":1}],"item":[{"/patterns/lists":17},{"/patterns/overlay":6},{"/patterns/tables":3},{"/design/anatomy":1},{"/patterns/forms":1},{"/patterns/navigation":1}],"centers":[{"/design/anatomy":1}],"hovered":[{"/design/anatomy":1},{"/design/websites":1}],"similarly":[{"/design/anatomy":1}],"workflow":[{"/patterns/user-auth":15},{"/patterns/steppers":2},{"/design/anatomy":1}],"involve":[{"/design/anatomy":1}],"2fa":[{"/design/anatomy":1}],"captcha":[{"/design/anatomy":1}],"username":[{"/patterns/account-menu":3},{"/design/anatomy":1}],"tries":[{"/design/anatomy":1}],"context":[{"/design/anatomy":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/style/color":1},{"/style/iconography":1}],"specifications":[{"/patterns/account-menu":2},{"/patterns/forms":2},{"/design/anatomy":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/patterns/steppers":1}],"looks":[{"/patterns/navigation":2},{"/design/anatomy":1},{"/design/accessibility":1},{"/design/websites":1}],"recognize":[{"/design/anatomy":1}],"atoms":[{"/design/anatomy":1}],"molecules":[{"/design/anatomy":1}],"organisms":[{"/design/anatomy":1}],"idea":[{"/community/innersourcing":2},{"/design/anatomy":1}],"further":[{"/design/anatomy":1},{"/design/project-identity":1},{"/patterns/tables":1}],"direction":[{"/design/anatomy":1}],"comprehensively":[{"/design/anatomy":1}],"accessibility":[{"/design/accessibility":8},{"/design/websites":2},{"/design/project-identity":2},{"/patterns/lists":1},{"/style/color":1},{"/style/illustrations":1},{"/style/typography":1},{"/style/themes":1}],"compliance":[{"/design/accessibility":2}],"w3c":[{"/design/accessibility":2}],"refers":[{"/design/accessibility":1},{"/patterns/internationalization":1},{"/patterns/navigation":1}],"websites":[{"/design/websites":7},{"/design/project-identity":3},{"/design/accessibility":2},{"/patterns/internationalization":1}],"individuals":[{"/design/accessibility":4}],"disabilities":[{"/design/accessibility":3}],"effectively":[{"/design/accessibility":1},{"/design/websites":1},{"/community/faq":1}],"forms":[{"/patterns/forms":6},{"/design/accessibility":2},{"/patterns/user-auth":2},{"/patterns/account-menu":1},{"/patterns/internationalization":1},{"/patterns/navigation":1},{"/patterns/steppers":1},{"/patterns/visualizations":1},{"/style/typography":1},{"/community/license":1}],"physical":[{"/design/accessibility":1},{"/patterns/appbar":1}],"auditory":[{"/design/accessibility":1}],"wide":[{"/design/accessibility":3},{"/design/websites":1},{"/design/project-identity":1},{"/community/faq":1}],"audience":[{"/design/project-identity":3},{"/design/websites":2},{"/design/accessibility":1},{"/patterns/internationalization":1}],"legal":[{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/navigation":1}],"reasons":[{"/design/accessibility":1},{"/community/bugs":1}],"improves":[{"/design/accessibility":1},{"/community/bugs":1}],"international":[{"/design/accessibility":1}],"law":[{"/design/accessibility":1}],"country":[{"/patterns/internationalization":2},{"/design/accessibility":1}],"practice":[{"/design/accessibility":1},{"/community/innersourcing":1}],"internationally":[{"/design/accessibility":1}],"wcag":[{"/design/accessibility":1}],"released":[{"/design/accessibility":1},{"/community/our-team":1}],"world":[{"/design/accessibility":1},{"/patterns/tables":1},{"/community/our-team":1}],"consortium":[{"/design/accessibility":1}],"principles":[{"/design/websites":4},{"/design/accessibility":2},{"/design/project-identity":2},{"/style/typography":1}],"anyone":[{"/design/accessibility":1}],"perceivable":[{"/design/accessibility":2}],"operable":[{"/design/accessibility":3}],"understandable":[{"/design/accessibility":3}],"robust":[{"/design/accessibility":3}],"perceive":[{"/design/accessibility":1}],"hidden":[{"/patterns/forms":2},{"/design/accessibility":1}],"image":[{"/design/accessibility":2},{"/design/websites":2},{"/design/project-identity":2},{"/patterns/internationalization":1},{"/style/illustrations":1}],"distinguish":[{"/design/accessibility":1}],"keyboard":[{"/patterns/forms":11},{"/design/accessibility":1}],"temporary":[{"/patterns/navigation":3},{"/design/accessibility":1}],"displayed":[{"/patterns/forms":2},{"/design/accessibility":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/user-auth":1}],"impairments":[{"/design/accessibility":3}],"includes":[{"/patterns/user-auth":4},{"/style/typography":2},{"/design/accessibility":1},{"/style/iconography":1}],"abbreviations":[{"/design/accessibility":1}],"behave":[{"/design/accessibility":1}],"predictable":[{"/design/accessibility":1}],"messages":[{"/patterns/forms":3},{"/patterns/user-auth":3},{"/design/accessibility":2},{"/patterns/loading":1}],"accompanying":[{"/design/accessibility":1}],"meaning":[{"/patterns/internationalization":2},{"/design/accessibility":1},{"/style/color":1}],"icon":[{"/style/iconography":11},{"/patterns/appbar":3},{"/community/faq":3},{"/patterns/empty-states":2},{"/patterns/lists":2},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/navigation":1},{"/style/color":1}],"its":[{"/patterns/navigation":3},{"/patterns/lists":2},{"/design/accessibility":1},{"/patterns/appbar":1},{"/patterns/loading":1},{"/patterns/tables":1},{"/style/iconography":1},{"/style/typography":1},{"/community/license":1},{"/community/innersourcing":1}],"unclear":[{"/design/accessibility":1},{"/patterns/tables":1}],"interpreted":[{"/design/accessibility":1}],"reliably":[{"/design/accessibility":1}],"assistive":[{"/design/accessibility":3}],"readers":[{"/design/accessibility":1}],"speech":[{"/design/accessibility":1}],"alternative":[{"/style/typography":2},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/internationalization":1},{"/patterns/loading":1},{"/community/faq":1}],"advance":[{"/design/accessibility":1}],"advances":[{"/design/accessibility":1}],"effort":[{"/community/innersourcing":3},{"/design/accessibility":1}],"range":[{"/design/accessibility":1},{"/design/websites":1},{"/design/project-identity":1},{"/style/typography":1}],"white":[{"/style/themes":3},{"/design/accessibility":2},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/tables":1},{"/style/color":1},{"/style/illustrations":1},{"/community/faq":1}],"backgrounds":[{"/design/accessibility":2},{"/design/websites":2},{"/style/illustrations":2},{"/style/color":1}],"yellow":[{"/style/color":2},{"/design/accessibility":1}],"red":[{"/style/color":8},{"/design/accessibility":2},{"/design/project-identity":2},{"/patterns/forms":1},{"/patterns/internationalization":1}],"orange":[{"/style/color":3},{"/design/accessibility":1}],"except":[{"/design/accessibility":1},{"/style/color":1}],"say":[{"/patterns/forms":2},{"/design/accessibility":1}],"close":[{"/patterns/overlay":3},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/appbar":1}],"black":[{"/style/color":3},{"/design/accessibility":2},{"/design/websites":1},{"/patterns/tables":1},{"/style/illustrations":1}],"headlines":[{"/design/accessibility":1}],"background":[{"/patterns/internationalization":2},{"/style/illustrations":2},{"/style/themes":2},{"/design/accessibility":1},{"/design/websites":1},{"/patterns/empty-states":1}],"light":[{"/style/themes":8},{"/style/illustrations":3},{"/style/color":2},{"/style/typography":2},{"/design/accessibility":1}],"contrast":[{"/design/accessibility":6}],"ratio":[{"/style/illustrations":2},{"/design/accessibility":1}],"determine":[{"/design/accessibility":1}],"checking":[{"/design/accessibility":1},{"/patterns/internationalization":1}],"difficult":[{"/design/accessibility":1},{"/design/websites":1},{"/patterns/tables":1}],"especially":[{"/patterns/tables":2},{"/design/accessibility":1},{"/design/project-identity":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/user-auth":1},{"/style/illustrations":1}],"ratios":[{"/design/accessibility":1}],"larger":[{"/design/accessibility":2},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/overlay":1},{"/community/our-team":1}],"affecting":[{"/design/accessibility":1}],"increase":[{"/design/accessibility":1}],"clearly":[{"/patterns/empty-states":2},{"/design/accessibility":1}],"smaller":[{"/design/accessibility":1},{"/design/websites":1},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/navigation":1}],"sizes":[{"/design/websites":3},{"/design/accessibility":2},{"/patterns/internationalization":1},{"/patterns/overlay":1},{"/patterns/user-auth":1}],"still":[{"/design/websites":2},{"/style/illustrations":2},{"/design/accessibility":1},{"/patterns/tables":1},{"/style/iconography":1},{"/style/typography":1},{"/community/faq":1}],"right":[{"/patterns/internationalization":7},{"/patterns/forms":2},{"/design/accessibility":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/patterns/overlay":1},{"/patterns/tables":1}],"accommodate":[{"/design/accessibility":1},{"/patterns/navigation":1},{"/style/themes":1}],"bigger":[{"/design/accessibility":1}],"images":[{"/design/accessibility":6},{"/design/project-identity":2},{"/style/illustrations":2},{"/patterns/account-menu":1},{"/patterns/appbar":1}],"accompanied":[{"/design/accessibility":1},{"/patterns/account-menu":1}],"caption":[{"/design/accessibility":1}],"descriptive":[{"/design/accessibility":2},{"/design/websites":1},{"/patterns/overlay":1}],"purely":[{"/design/accessibility":1},{"/style/color":1}],"decoration":[{"/design/accessibility":1}],"decorative":[{"/design/accessibility":1}],"brief":[{"/design/accessibility":1},{"/patterns/empty-states":1},{"/style/iconography":1},{"/community/bugs":1},{"/community/our-team":1}],"description":[{"/design/accessibility":2},{"/community/bugs":2},{"/style/iconography":1}],"hover":[{"/patterns/lists":3},{"/design/accessibility":1}],"always":[{"/patterns/navigation":3},{"/patterns/overlay":2},{"/design/accessibility":1},{"/patterns/internationalization":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/community/faq":1}],"alt":[{"/design/accessibility":2}],"reader":[{"/design/accessibility":1}],"markup":[{"/design/accessibility":1}],"descriptions":[{"/design/accessibility":1}],"near":[{"/design/accessibility":1}],"videos":[{"/design/accessibility":1}],"audio":[{"/design/accessibility":1}],"sync":[{"/design/accessibility":1}],"captioning":[{"/design/accessibility":1}],"trusted":[{"/design/accessibility":1}],"tester":[{"/design/accessibility":1}],"ict":[{"/design/accessibility":1}],"baseline":[{"/style/themes":2},{"/design/accessibility":1},{"/design/project-identity":1}],"factors":[{"/design/accessibility":1},{"/patterns/tables":1}],"ease":[{"/design/accessibility":2}],"teaching":[{"/design/accessibility":1}],"accuracy":[{"/design/accessibility":1}],"inspector":[{"/design/accessibility":1}],"andi":[{"/design/accessibility":1}],"analyzer":[{"/design/accessibility":1}],"cca":[{"/design/accessibility":1}],"marketing":[{"/style/color":3},{"/design/websites":2},{"/style/illustrations":1}],"digital":[{"/design/websites":2},{"/community/our-team":1}],"_applications_":[{"/design/websites":1}],"adapted":[{"/design/websites":1}],"sites":[{"/design/websites":2},{"/style/illustrations":1}],"blurry":[{"/design/websites":1}],"purposes":[{"/design/websites":1}],"education":[{"/design/websites":1}],"promotion":[{"/design/websites":1}],"affect":[{"/design/websites":1},{"/style/themes":1}],"data":[{"/patterns/loading":19},{"/patterns/tables":19},{"/patterns/empty-states":12},{"/patterns/lists":6},{"/patterns/visualizations":6},{"/patterns/forms":3},{"/patterns/overlay":3},{"/design/websites":2},{"/patterns/appbar":2},{"/style/color":1},{"/community/license":1}],"deleting":[{"/design/websites":1},{"/patterns/tables":1}],"frequently":[{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/patterns/user-auth":1},{"/community/faq":1}],"publicly":[{"/design/websites":1},{"/community/license":1},{"/resources/designer":1}],"compared":[{"/design/websites":2},{"/community/faq":1}],"dynamic":[{"/patterns/steppers":2},{"/design/websites":1},{"/patterns/tables":1}],"incorporates":[{"/design/websites":1}],"manipulate":[{"/design/websites":1},{"/patterns/lists":1}],"key":[{"/design/websites":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/style/themes":1}],"beauty":[{"/design/websites":1}],"simplicity":[{"/design/websites":1}],"coming":[{"/design/websites":2},{"/patterns/empty-states":1}],"looking":[{"/design/websites":3},{"/patterns/empty-states":1},{"/patterns/loading":1},{"/patterns/tables":1},{"/patterns/visualizations":1},{"/style/iconography":1},{"/community/faq":1}],"_will_":[{"/design/websites":1}],"notice":[{"/community/license":2},{"/design/websites":1}],"bad":[{"/design/websites":1}],"visually":[{"/design/websites":1}],"appealing":[{"/design/websites":1},{"/design/project-identity":1}],"crucial":[{"/design/websites":1},{"/patterns/internationalization":1}],"strike":[{"/design/websites":1},{"/design/project-identity":1}],"balance":[{"/design/websites":1},{"/design/project-identity":1}],"sake":[{"/design/websites":1}],"overwhelm":[{"/design/websites":1}],"clean":[{"/design/websites":1},{"/style/themes":1}],"helps":[{"/design/websites":1}],"associate":[{"/design/websites":1}],"company":[{"/patterns/navigation":2},{"/design/websites":1}],"whitespace":[{"/design/websites":1},{"/patterns/forms":1}],"liberally":[{"/design/websites":1}],"simplistic":[{"/design/websites":1}],"navigate":[{"/patterns/navigation":4},{"/patterns/tables":2},{"/design/websites":1},{"/patterns/lists":1},{"/patterns/steppers":1}],"chance":[{"/design/websites":1},{"/patterns/forms":1}],"finding":[{"/design/websites":1}],"land":[{"/design/websites":1},{"/patterns/tables":1}],"immediately":[{"/design/websites":1}],"located":[{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/forms":1}],"map":[{"/design/websites":1},{"/patterns/overlay":1},{"/patterns/visualizations":1}],"footer":[{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/internationalization":1},{"/patterns/navigation":1}],"breadcrumbs":[{"/design/websites":3}],"search":[{"/patterns/appbar":19},{"/patterns/empty-states":2},{"/design/websites":1},{"/patterns/forms":1},{"/patterns/navigation":1}],"limit":[{"/design/websites":2},{"/patterns/appbar":1},{"/patterns/navigation":1},{"/community/faq":1}],"menus":[{"/patterns/overlay":2},{"/design/websites":1}],"per":[{"/design/websites":1},{"/patterns/loading":1}],"nesting":[{"/design/websites":1}],"three":[{"/design/websites":3},{"/patterns/lists":2},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/overlay":1},{"/patterns/user-auth":1},{"/style/typography":1}],"deep":[{"/design/websites":1}],"pyramid":[{"/design/websites":1}],"organize":[{"/design/websites":1},{"/patterns/tables":1}],"aspect":[{"/design/websites":1},{"/style/illustrations":1}],"arrange":[{"/design/websites":1}],"naturally":[{"/design/websites":1}],"gravitate":[{"/design/websites":1}],"facilitate":[{"/design/websites":1},{"/patterns/tables":1}],"feels":[{"/design/websites":1}],"intuitive":[{"/design/websites":1}],"natural":[{"/design/websites":1},{"/patterns/internationalization":1}],"enjoyable":[{"/design/websites":1}],"draw":[{"/design/websites":1},{"/patterns/visualizations":1},{"/style/illustrations":1}],"combination":[{"/design/websites":1},{"/patterns/navigation":1},{"/style/color":1}],"position":[{"/design/websites":1}],"grid":[{"/design/websites":3},{"/patterns/lists":1},{"/patterns/tables":1},{"/style/iconography":1}],"tie":[{"/design/websites":1}],"responsiveness":[{"/design/websites":2}],"effect":[{"/design/websites":1}],"five":[{"/design/websites":1},{"/patterns/navigation":1}],"ideally":[{"/design/websites":1},{"/design/project-identity":1}],"shades":[{"/design/websites":1},{"/style/themes":1}],"gray":[{"/design/websites":1},{"/style/color":1}],"palette":[{"/style/color":4},{"/style/illustrations":2},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/lists":1},{"/patterns/visualizations":1},{"/style/themes":1}],"catalogs":[{"/design/websites":1}],"commerce":[{"/design/websites":2}],"absolutely":[{"/design/websites":1}],"branding":[{"/style/color":5},{"/design/project-identity":2},{"/design/websites":1},{"/patterns/user-auth":1},{"/patterns/visualizations":1},{"/style/illustrations":1}],"highlight":[{"/design/websites":1},{"/patterns/lists":1},{"/patterns/navigation":1}],"require":[{"/patterns/internationalization":3},{"/patterns/user-auth":2},{"/style/color":2},{"/community/innersourcing":2},{"/design/websites":1},{"/patterns/navigation":1}],"highly":[{"/design/websites":1},{"/community/faq":1}],"legible":[{"/design/websites":1},{"/style/illustrations":1}],"script":[{"/design/websites":1}],"minimize":[{"/design/websites":1}],"colored":[{"/style/color":2},{"/design/websites":1}],"contrasts":[{"/design/websites":1}],"typefaces":[{"/design/websites":2}],"12px":[{"/design/websites":1}],"8px":[{"/design/websites":1}],"graphics":[{"/design/websites":4},{"/style/illustrations":2},{"/patterns/forms":1},{"/patterns/user-auth":1}],"sparingly":[{"/design/websites":1},{"/patterns/loading":1}],"showcase":[{"/design/websites":1},{"/style/themes":1}],"illustrations":[{"/style/illustrations":15},{"/design/project-identity":3},{"/design/websites":1},{"/patterns/forms":1}],"overall":[{"/design/websites":1},{"/community/innersourcing":1}],"tone":[{"/design/project-identity":4},{"/design/websites":2},{"/patterns/internationalization":1}],"positive":[{"/design/websites":1},{"/style/color":1}],"impact":[{"/design/websites":1}],"usability":[{"/community/faq":2},{"/design/websites":1},{"/design/project-identity":1},{"/community/innersourcing":1}],"mean":[{"/design/websites":1},{"/design/project-identity":1}],"landing":[{"/design/websites":1}],"consistently":[{"/design/websites":1},{"/design/project-identity":1}],"voice":[{"/design/websites":1}],"straight":[{"/design/websites":1}],"technical":[{"/design/websites":1},{"/patterns/tables":1},{"/community/contactus":1}],"jargon":[{"/design/websites":1}],"computers":[{"/design/websites":1}],"traffic":[{"/design/websites":1}],"strategy":[{"/design/websites":1},{"/community/our-team":1}],"diverse":[{"/design/websites":1}],"eaton":[{"/design/websites":1},{"/community/license":1},{"/community/innersourcing":1},{"/community/our-team":1},{"/community/contactus":1}],"main":[{"/patterns/navigation":9},{"/design/websites":2},{"/patterns/overlay":2},{"/patterns/lists":1},{"/style/color":1},{"/style/illustrations":1}],"conventions":[{"/design/websites":3},{"/design/project-identity":1}],"expect":[{"/design/websites":1},{"/design/project-identity":1},{"/patterns/tables":1}],"placing":[{"/design/websites":2},{"/patterns/appbar":2},{"/patterns/account-menu":1},{"/patterns/lists":1}],"left":[{"/patterns/internationalization":5},{"/design/websites":2},{"/patterns/forms":2},{"/patterns/tables":2},{"/patterns/lists":1}],"side":[{"/patterns/overlay":3},{"/patterns/navigation":2},{"/patterns/tables":2},{"/design/websites":1},{"/patterns/account-menu":1},{"/patterns/internationalization":1},{"/community/faq":1}],"logo":[{"/design/websites":2},{"/patterns/navigation":2}],"clickable":[{"/design/websites":1},{"/patterns/lists":1}],"home":[{"/design/websites":1}],"appearance":[{"/design/websites":1},{"/patterns/navigation":1},{"/patterns/tables":1},{"/style/themes":1}],"galleries":[{"/design/websites":1}],"slideshows":[{"/design/websites":1}],"rotate":[{"/design/websites":1}],"slides":[{"/design/websites":1},{"/patterns/appbar":1}],"shopping":[{"/design/websites":1}],"cart":[{"/design/websites":2}],"badge":[{"/design/websites":1}],"indicates":[{"/patterns/internationalization":2},{"/design/websites":1},{"/patterns/appbar":1},{"/style/themes":1}],"identity":[{"/design/project-identity":5},{"/patterns/empty-states":2},{"/patterns/user-auth":2},{"/style/color":1},{"/community/faq":1}],"flexible":[{"/design/project-identity":2}],"flex":[{"/design/project-identity":1}],"serves":[{"/design/project-identity":1}],"demand":[{"/design/project-identity":1}],"suit":[{"/design/project-identity":1}],"among":[{"/design/project-identity":1},{"/style/illustrations":1}],"maintaining":[{"/design/project-identity":2},{"/community/faq":1}],"establishing":[{"/design/project-identity":2}],"leaving":[{"/design/project-identity":1},{"/patterns/lists":1}],"mincardheight":[{"/design/project-identity":1}],"unset":[{"/design/project-identity":1}],"stifle":[{"/design/project-identity":1}],"creativity":[{"/design/project-identity":2},{"/community/faq":1}],"enable":[{"/design/project-identity":1}],"standardizes":[{"/design/project-identity":1}],"foster":[{"/design/project-identity":1}],"turn":[{"/design/project-identity":1}],"spend":[{"/design/project-identity":1}],"parts":[{"/patterns/forms":2},{"/design/project-identity":1},{"/style/illustrations":1},{"/community/innersourcing":1}],"too":[{"/style/illustrations":2},{"/design/project-identity":1},{"/patterns/overlay":1}],"opportunities":[{"/design/project-identity":1},{"/community/contactus":1}],"tweaks":[{"/design/project-identity":1},{"/style/typography":1}],"extends":[{"/design/project-identity":1},{"/patterns/user-auth":1}],"adds":[{"/design/project-identity":1}],"flashy":[{"/design/project-identity":1}],"relaxed":[{"/design/project-identity":1}],"friendly":[{"/design/project-identity":3}],"aspects":[{"/design/project-identity":1},{"/community/faq":1}],"related":[{"/patterns/account-menu":5},{"/design/project-identity":2},{"/patterns/user-auth":2},{"/patterns/tables":1},{"/style/color":1}],"markets":[{"/design/project-identity":1}],"remember":[{"/design/project-identity":1},{"/patterns/user-auth":1},{"/style/illustrations":1}],"customize":[{"/design/project-identity":1}],"lost":[{"/design/project-identity":1}],"customization":[{"/style/typography":2},{"/design/project-identity":1}],"avoided":[{"/design/project-identity":1}],"established":[{"/design/project-identity":1}],"packaging":[{"/design/project-identity":1}],"consumer":[{"/design/project-identity":2},{"/patterns/tables":2},{"/patterns/empty-states":1},{"/patterns/user-auth":1}],"facing":[{"/design/project-identity":2},{"/patterns/tables":2},{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/user-auth":1},{"/style/illustrations":1}],"moods":[{"/design/project-identity":1}],"professional":[{"/design/project-identity":1}],"current":[{"/design/project-identity":1},{"/patterns/appbar":1},{"/patterns/lists":1},{"/community/faq":1}],"requirement":[{"/design/project-identity":1}],"situations":[{"/patterns/loading":4},{"/design/project-identity":2},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/overlay":1}],"invent":[{"/design/project-identity":1}],"leverage":[{"/design/project-identity":1}],"thoroughly":[{"/design/project-identity":2}],"explored":[{"/design/project-identity":1}],"variants":[{"/design/project-identity":1}],"variations":[{"/design/project-identity":3},{"/patterns/loading":2},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/lists":1},{"/patterns/navigation":1},{"/patterns/overlay":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/style/typography":1}],"contained":[{"/style/themes":2},{"/design/project-identity":1}],"filled":[{"/design/project-identity":1}],"flat":[{"/design/project-identity":1},{"/patterns/lists":1},{"/patterns/navigation":1}],"elevated":[{"/design/project-identity":1},{"/style/themes":1}],"square":[{"/design/project-identity":1}],"rounded":[{"/design/project-identity":1}],"corner":[{"/design/project-identity":1},{"/patterns/forms":1}],"round":[{"/design/project-identity":1}],"verbiage":[{"/design/project-identity":1}],"persuasive":[{"/design/project-identity":1}],"buy":[{"/design/project-identity":1}],"serious":[{"/design/project-identity":1}],"deal":[{"/design/project-identity":2},{"/patterns/navigation":1}],"safety":[{"/design/project-identity":1},{"/style/color":1}],"concerns":[{"/design/project-identity":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/user-auth":1},{"/community/faq":1}],"carry":[{"/design/project-identity":1}],"cheerful":[{"/design/project-identity":1}],"freedom":[{"/design/project-identity":1},{"/community/faq":1}],"researched":[{"/design/project-identity":1}],"exception":[{"/design/project-identity":1},{"/community/license":1}],"rule":[{"/design/project-identity":1}],"labeled":[{"/design/project-identity":1},{"/patterns/forms":1},{"/patterns/tables":1},{"/community/faq":1}],"sold":[{"/design/project-identity":1},{"/community/faq":1}],"beneficial":[{"/design/project-identity":1}],"align":[{"/design/project-identity":1},{"/patterns/lists":1},{"/community/our-team":1}],"status":[{"/patterns/lists":9},{"/style/color":8},{"/design/project-identity":4},{"/style/themes":1}],"strict":[{"/design/project-identity":1},{"/community/license":1}],"indicate":[{"/style/color":3},{"/patterns/empty-states":2},{"/patterns/forms":2},{"/patterns/lists":2},{"/patterns/loading":2},{"/design/project-identity":1},{"/patterns/navigation":1},{"/patterns/steppers":1}],"changed":[{"/design/project-identity":2},{"/patterns/forms":1}],"instantly":[{"/design/project-identity":1}],"interfere":[{"/design/project-identity":1},{"/patterns/lists":1},{"/style/illustrations":1}],"industry":[{"/design/project-identity":2}],"convention":[{"/design/project-identity":2}],"differs":[{"/design/project-identity":1},{"/style/typography":1}],"green":[{"/style/color":2},{"/design/project-identity":1}],"circuit":[{"/design/project-identity":2}],"closed":[{"/patterns/navigation":3},{"/design/project-identity":1}],"breakers":[{"/design/project-identity":1}],"noto":[{"/design/project-identity":2},{"/patterns/internationalization":1},{"/style/typography":1}],"encouraged":[{"/design/project-identity":1},{"/patterns/internationalization":1},{"/patterns/user-auth":1},{"/style/themes":1}],"adjust":[{"/design/project-identity":1}],"discourage":[{"/design/project-identity":1}],"serif":[{"/design/project-identity":1}],"underline":[{"/design/project-identity":1}],"expressly":[{"/design/project-identity":1}],"forbidden":[{"/design/project-identity":1}],"preferred":[{"/design/project-identity":1},{"/patterns/account-menu":1},{"/community/faq":1}],"menu":[{"/patterns/account-menu":16},{"/patterns/appbar":3},{"/patterns/lists":2},{"/patterns/navigation":2},{"/patterns/tables":1}],"avatar":[{"/patterns/account-menu":7}],"present":[{"/patterns/account-menu":4},{"/patterns/overlay":4},{"/patterns/user-auth":3},{"/patterns/appbar":2},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/tables":1},{"/patterns/visualizations":1},{"/community/license":1},{"/community/faq":1}],"viewing":[{"/style/illustrations":2},{"/patterns/account-menu":1},{"/patterns/overlay":1}],"editing":[{"/patterns/overlay":2},{"/patterns/account-menu":1}],"drawer":[{"/patterns/navigation":34},{"/patterns/account-menu":17},{"/patterns/overlay":2}],"commonly":[{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/overlay":1},{"/patterns/user-auth":1},{"/style/typography":1}],"involves":[{"/patterns/user-auth":3},{"/patterns/account-menu":1},{"/style/typography":1}],"job":[{"/patterns/account-menu":2},{"/community/our-team":1}],"title":[{"/patterns/account-menu":2},{"/patterns/appbar":2},{"/patterns/overlay":1}],"organization":[{"/patterns/user-auth":10},{"/patterns/account-menu":1}],"affiliation":[{"/patterns/account-menu":1}],"link":[{"/patterns/user-auth":3},{"/patterns/account-menu":2},{"/patterns/forms":1}],"placed":[{"/patterns/account-menu":2},{"/patterns/tables":1}],"bottom":[{"/patterns/overlay":8},{"/patterns/navigation":5},{"/patterns/account-menu":2},{"/patterns/forms":2},{"/patterns/steppers":1}],"contents":[{"/patterns/account-menu":3},{"/patterns/navigation":2},{"/patterns/overlay":1},{"/patterns/tables":1}],"bar":[{"/patterns/appbar":23},{"/patterns/account-menu":3},{"/patterns/navigation":3},{"/patterns/loading":2},{"/style/typography":2},{"/patterns/internationalization":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/style/color":1}],"rail":[{"/patterns/navigation":7},{"/patterns/account-menu":2}],"place":[{"/patterns/tables":2},{"/patterns/account-menu":1},{"/patterns/empty-states":1},{"/patterns/overlay":1}],"appears":[{"/patterns/navigation":2},{"/patterns/overlay":2},{"/patterns/account-menu":1},{"/patterns/steppers":1}],"opens":[{"/patterns/account-menu":1},{"/patterns/tables":1}],"avoids":[{"/patterns/account-menu":1}],"cluttering":[{"/patterns/account-menu":1}],"currently":[{"/community/faq":4},{"/patterns/account-menu":1},{"/patterns/visualizations":1}],"logged":[{"/patterns/user-auth":2},{"/patterns/account-menu":1}],"appear":[{"/patterns/lists":2},{"/patterns/navigation":2},{"/patterns/account-menu":1},{"/patterns/forms":1},{"/patterns/overlay":1}],"avatars":[{"/patterns/lists":2},{"/patterns/account-menu":1},{"/patterns/tables":1}],"picture":[{"/patterns/account-menu":1},{"/style/iconography":1}],"displaying":[{"/patterns/account-menu":1},{"/patterns/forms":1},{"/patterns/lists":1}],"initials":[{"/patterns/account-menu":1}],"person":[{"/patterns/account-menu":1}],"generic":[{"/patterns/account-menu":1}],"administrator":[{"/patterns/account-menu":1}],"frequent":[{"/patterns/account-menu":1}],"log":[{"/patterns/account-menu":1},{"/patterns/forms":1},{"/patterns/user-auth":1},{"/community/features":1}],"privacy":[{"/patterns/account-menu":1}],"policy":[{"/patterns/account-menu":1}],"dimensions":[{"/patterns/account-menu":2},{"/patterns/appbar":2},{"/patterns/forms":2},{"/patterns/navigation":2},{"/patterns/steppers":2},{"/patterns/internationalization":1}],"specified":[{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/navigation":1},{"/patterns/steppers":1},{"/patterns/user-auth":1}],"suggested":[{"/patterns/appbar":2},{"/patterns/account-menu":1},{"/patterns/forms":1},{"/patterns/navigation":1},{"/patterns/steppers":1}],"sheet":[{"/patterns/overlay":6},{"/community/faq":2},{"/patterns/account-menu":1},{"/patterns/steppers":1}],"nav":[{"/patterns/navigation":2},{"/patterns/account-menu":1}],"appbar":[{"/patterns/appbar":3},{"/patterns/lists":1}],"collapse":[{"/patterns/appbar":1}],"collapsible":[{"/patterns/appbar":6}],"extend":[{"/patterns/appbar":1},{"/style/illustrations":1},{"/community/faq":1}],"prominent":[{"/patterns/appbar":2},{"/patterns/navigation":1}],"toolbar":[{"/patterns/appbar":7}],"banner":[{"/patterns/appbar":2}],"bars":[{"/patterns/appbar":7},{"/patterns/loading":2},{"/style/color":1}],"sometimes":[{"/patterns/internationalization":3},{"/patterns/appbar":2}],"toolbars":[{"/patterns/appbar":1},{"/style/color":1},{"/style/themes":1}],"short":[{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/internationalization":1}],"contain":[{"/patterns/overlay":2},{"/patterns/appbar":1},{"/patterns/navigation":1}],"subtitle":[{"/patterns/appbar":4},{"/style/typography":2}],"grouping":[{"/patterns/appbar":1}],"dropdown":[{"/patterns/appbar":6},{"/patterns/overlay":1}],"transforms":[{"/patterns/appbar":1}],"switch":[{"/patterns/appbar":1},{"/patterns/internationalization":1}],"locations":[{"/patterns/appbar":1},{"/patterns/visualizations":1}],"safe":[{"/patterns/navigation":2},{"/patterns/appbar":1}],"area":[{"/patterns/navigation":4},{"/patterns/appbar":1}],"graphic":[{"/patterns/empty-states":2},{"/patterns/appbar":1},{"/style/illustrations":1}],"lines":[{"/style/typography":2},{"/patterns/appbar":1},{"/patterns/lists":1},{"/patterns/navigation":1}],"referred":[{"/patterns/appbar":1}],"expandable":[{"/patterns/appbar":1},{"/patterns/navigation":1},{"/patterns/overlay":1}],"extended":[{"/patterns/appbar":1}],"ideal":[{"/patterns/appbar":1},{"/patterns/internationalization":1}],"starts":[{"/patterns/appbar":1}],"tall":[{"/patterns/appbar":1}],"shrink":[{"/patterns/appbar":1}],"scrolls":[{"/patterns/appbar":1}],"until":[{"/patterns/appbar":1},{"/patterns/forms":1},{"/patterns/navigation":1}],"put":[{"/patterns/appbar":1}],"emphasis":[{"/patterns/appbar":1},{"/patterns/tables":1}],"pertinent":[{"/patterns/appbar":1}],"topic":[{"/patterns/appbar":1}],"eye":[{"/patterns/appbar":1},{"/patterns/tables":1}],"catching":[{"/patterns/appbar":1}],"permanently":[{"/patterns/appbar":1},{"/patterns/navigation":1}],"reducing":[{"/patterns/appbar":1}],"amount":[{"/patterns/appbar":1},{"/patterns/loading":1},{"/style/iconography":1},{"/community/innersourcing":1}],"could":[{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/loading":1},{"/patterns/user-auth":1},{"/style/illustrations":1}],"transition":[{"/patterns/appbar":3},{"/patterns/tables":1}],"smoothly":[{"/patterns/appbar":2}],"expanded":[{"/patterns/navigation":2},{"/patterns/appbar":1},{"/patterns/tables":1},{"/style/color":1}],"collapsed":[{"/patterns/navigation":2},{"/patterns/appbar":1}],"disappear":[{"/patterns/appbar":1}],"shrinks":[{"/patterns/appbar":1}],"techniques":[{"/patterns/appbar":1}],"achieved":[{"/patterns/appbar":1},{"/patterns/user-auth":1},{"/style/themes":1}],"enters":[{"/patterns/appbar":1}],"filtered":[{"/patterns/appbar":1}],"auto":[{"/patterns/appbar":2}],"searching":[{"/patterns/tables":2},{"/patterns/appbar":1}],"autocomplete":[{"/patterns/appbar":1}],"contextual":[{"/patterns/loading":3},{"/patterns/appbar":1},{"/patterns/tables":1}],"ahead":[{"/patterns/appbar":1}],"query":[{"/patterns/appbar":1}],"placeholder":[{"/patterns/loading":9},{"/patterns/empty-states":1}],"times":[{"/patterns/empty-states":1},{"/patterns/forms":1}],"happen":[{"/patterns/empty-states":1}],"loading":[{"/patterns/loading":10},{"/patterns/empty-states":2},{"/patterns/forms":1}],"filter":[{"/patterns/empty-states":2}],"criteria":[{"/patterns/empty-states":1},{"/patterns/forms":1}],"indicators":[{"/patterns/loading":4},{"/patterns/empty-states":2}],"alert":[{"/patterns/empty-states":1}],"networking":[{"/patterns/empty-states":1}],"lack":[{"/patterns/empty-states":1},{"/patterns/tables":1}],"permissions":[{"/patterns/empty-states":1}],"placeholders":[{"/patterns/empty-states":1}],"success":[{"/patterns/user-auth":9},{"/patterns/forms":3},{"/patterns/empty-states":1},{"/style/color":1}],"followed":[{"/patterns/empty-states":1},{"/patterns/user-auth":1}],"headline":[{"/patterns/empty-states":1}],"explanatory":[{"/patterns/empty-states":1}],"why":[{"/patterns/empty-states":2},{"/community/license":1}],"anything":[{"/patterns/empty-states":1},{"/patterns/overlay":1}],"minimal":[{"/patterns/empty-states":1},{"/patterns/tables":1}],"convey":[{"/patterns/empty-states":1},{"/patterns/internationalization":1},{"/patterns/lists":1}],"populated":[{"/patterns/empty-states":1}],"call":[{"/patterns/forms":2},{"/patterns/empty-states":1},{"/patterns/loading":1},{"/patterns/tables":1}],"indicator":[{"/patterns/loading":5},{"/patterns/empty-states":2}],"centered":[{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/loading":1},{"/patterns/user-auth":1}],"soon":[{"/patterns/empty-states":1},{"/patterns/forms":1},{"/community/faq":1}],"sections":[{"/patterns/navigation":2},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/style/color":1}],"card":[{"/patterns/empty-states":1},{"/patterns/lists":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/patterns/visualizations":1}],"having":[{"/patterns/empty-states":1},{"/style/illustrations":1}],"dashboard":[{"/patterns/empty-states":1}],"dataset":[{"/patterns/empty-states":2}],"inactions":[{"/patterns/empty-states":1}],"did":[{"/patterns/empty-states":1}],"caused":[{"/patterns/empty-states":1},{"/community/license":1}],"populate":[{"/patterns/empty-states":1},{"/patterns/internationalization":1}],"express":[{"/patterns/empty-states":1},{"/community/license":1}],"verification":[{"/patterns/forms":12},{"/patterns/user-auth":5},{"/patterns/loading":3}],"validation":[{"/patterns/forms":2},{"/patterns/user-auth":1}],"integral":[{"/patterns/forms":1}],"validating":[{"/patterns/forms":1}],"follows":[{"/patterns/forms":1}],"explained":[{"/patterns/forms":1},{"/patterns/loading":1}],"detail":[{"/patterns/forms":1},{"/style/illustrations":1}],"overwhelming":[{"/patterns/forms":1}],"height":[{"/patterns/forms":1}],"breaking":[{"/patterns/forms":1},{"/patterns/tables":1},{"/patterns/steppers":1}],"according":[{"/patterns/forms":1}],"valid":[{"/patterns/forms":2}],"input":[{"/patterns/forms":10},{"/patterns/internationalization":1},{"/patterns/overlay":1}],"entered":[{"/patterns/forms":1}],"problem":[{"/patterns/forms":1},{"/patterns/user-auth":1}],"helper":[{"/patterns/forms":3}],"replaced":[{"/patterns/forms":1}],"optionally":[{"/patterns/forms":1},{"/patterns/lists":1}],"succinct":[{"/patterns/forms":1}],"compromise":[{"/patterns/forms":1},{"/patterns/user-auth":1},{"/community/faq":1}],"security":[{"/patterns/user-auth":5},{"/patterns/forms":2}],"credentials":[{"/patterns/user-auth":7},{"/patterns/forms":3}],"incorrect":[{"/patterns/user-auth":2},{"/patterns/forms":1}],"reached":[{"/patterns/forms":2}],"submission":[{"/patterns/forms":1},{"/patterns/loading":1},{"/community/innersourcing":1}],"was":[{"/community/our-team":2},{"/patterns/forms":1},{"/patterns/loading":1},{"/style/typography":1}],"accepted":[{"/patterns/forms":1}],"next":[{"/patterns/forms":5},{"/community/innersourcing":2},{"/patterns/loading":1}],"stylized":[{"/patterns/forms":1},{"/style/color":1}],"return":[{"/patterns/forms":1}],"submitting":[{"/patterns/forms":2},{"/community/innersourcing":2}],"focused":[{"/patterns/forms":1},{"/patterns/internationalization":1}],"remain":[{"/patterns/forms":1}],"visibility":[{"/patterns/forms":3},{"/patterns/user-auth":1}],"toggle":[{"/patterns/forms":2},{"/patterns/internationalization":1},{"/patterns/lists":1}],"switches":[{"/patterns/forms":1}],"typed":[{"/patterns/forms":1}],"blur":[{"/patterns/forms":2}],"clicks":[{"/patterns/forms":1}],"away":[{"/patterns/forms":1}],"keystroke":[{"/patterns/forms":1}],"performing":[{"/patterns/forms":2}],"distracting":[{"/patterns/forms":1}],"confusing":[{"/patterns/forms":1}],"loses":[{"/patterns/forms":1}],"finished":[{"/patterns/forms":1},{"/style/illustrations":1}],"entering":[{"/patterns/forms":1}],"confirm":[{"/patterns/forms":1},{"/patterns/user-auth":1}],"updated":[{"/patterns/user-auth":2},{"/patterns/forms":1},{"/community/license":1},{"/community/faq":1},{"/community/our-team":1}],"defer":[{"/patterns/forms":1}],"performed":[{"/patterns/forms":1},{"/community/innersourcing":1}],"preliminary":[{"/patterns/forms":1}],"being":[{"/patterns/loading":2},{"/patterns/forms":1},{"/patterns/lists":1},{"/community/faq":1}],"triggered":[{"/patterns/forms":1},{"/patterns/user-auth":1}],"replace":[{"/patterns/forms":1},{"/patterns/loading":1},{"/patterns/navigation":1}],"spinner":[{"/patterns/loading":7},{"/patterns/forms":1}],"progress":[{"/patterns/loading":11},{"/style/iconography":3},{"/patterns/forms":1},{"/patterns/steppers":1},{"/community/faq":1}],"successful":[{"/patterns/forms":1},{"/patterns/user-auth":1}],"taken":[{"/patterns/forms":1},{"/patterns/overlay":1}],"submit":[{"/patterns/forms":7},{"/patterns/loading":3},{"/patterns/user-auth":1},{"/community/innersourcing":1},{"/community/bugs":1},{"/community/features":1}],"continue":[{"/patterns/forms":1},{"/style/typography":1},{"/community/faq":1}],"happens":[{"/patterns/forms":1},{"/patterns/loading":1}],"_next_":[{"/patterns/forms":1}],"_finish_":[{"/patterns/forms":1}],"last":[{"/patterns/forms":1},{"/patterns/loading":1}],"dismiss":[{"/patterns/overlay":2},{"/patterns/forms":1}],"known":[{"/patterns/forms":1},{"/patterns/tables":1}],"length":[{"/patterns/forms":2}],"omitted":[{"/patterns/forms":1}],"submitted":[{"/patterns/forms":1}],"disabling":[{"/patterns/forms":1}],"indicated":[{"/patterns/forms":2}],"disabled":[{"/patterns/forms":1},{"/style/color":1}],"onaction":[{"/patterns/forms":1}],"aren":[{"/patterns/forms":1}],"textinput":[{"/patterns/forms":1}],"internationalization":[{"/patterns/internationalization":7},{"/style/typography":1}],"i18n":[{"/patterns/internationalization":3}],"internationalisation":[{"/patterns/internationalization":1}],"translate":[{"/patterns/internationalization":2}],"translation":[{"/patterns/internationalization":3},{"/style/illustrations":1}],"localization":[{"/patterns/internationalization":7}],"l10n":[{"/patterns/internationalization":2}],"rtl":[{"/patterns/internationalization":2}],"localisation":[{"/patterns/internationalization":1}],"globalization":[{"/patterns/internationalization":1}],"globalize":[{"/patterns/internationalization":1}],"globalisation":[{"/patterns/internationalization":1}],"globalise":[{"/patterns/internationalization":1}],"practices":[{"/patterns/internationalization":1},{"/patterns/lists":1}],"adapting":[{"/patterns/internationalization":2}],"regions":[{"/patterns/internationalization":1}],"cultures":[{"/patterns/internationalization":2}],"accomplish":[{"/patterns/internationalization":1}],"considering":[{"/patterns/internationalization":1}],"directionality":[{"/patterns/internationalization":2}],"abbreviated":[{"/patterns/internationalization":1}],"functionally":[{"/patterns/internationalization":1}],"independent":[{"/patterns/internationalization":1}],"cultural":[{"/patterns/internationalization":5}],"enables":[{"/patterns/internationalization":1}],"equally":[{"/patterns/internationalization":1},{"/patterns/user-auth":1}],"experienced":[{"/patterns/internationalization":1}],"customizing":[{"/patterns/internationalization":1}],"prosper":[{"/patterns/internationalization":1}],"vision":[{"/patterns/internationalization":1}],"reaching":[{"/patterns/internationalization":1}],"capturing":[{"/patterns/internationalization":1}],"begin":[{"/patterns/internationalization":1}],"outset":[{"/patterns/internationalization":1}],"term":[{"/patterns/internationalization":1}],"locales":[{"/patterns/internationalization":2}],"localize":[{"/patterns/internationalization":1}],"string":[{"/patterns/internationalization":1}],"contains":[{"/patterns/navigation":3},{"/style/themes":2},{"/patterns/internationalization":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/style/color":1},{"/style/typography":1}],"translations":[{"/patterns/internationalization":3}],"coded":[{"/patterns/internationalization":1},{"/patterns/tables":1}],"public":[{"/patterns/internationalization":1}],"cues":[{"/patterns/internationalization":1}],"locate":[{"/patterns/internationalization":1}],"selection":[{"/patterns/tables":3},{"/patterns/internationalization":1}],"names":[{"/patterns/internationalization":2},{"/community/license":1}],"espa":[{"/patterns/internationalization":1}],"ol":[{"/patterns/internationalization":1}],"spanish":[{"/patterns/internationalization":2}],"converting":[{"/patterns/internationalization":1}],"currencies":[{"/patterns/internationalization":1}],"formats":[{"/patterns/internationalization":4},{"/style/iconography":1}],"currency":[{"/patterns/internationalization":1}],"linked":[{"/patterns/internationalization":1}],"locale":[{"/patterns/internationalization":3}],"influenced":[{"/patterns/internationalization":1}],"given":[{"/patterns/internationalization":1}],"surname":[{"/patterns/internationalization":1}],"street":[{"/patterns/internationalization":1}],"numbers":[{"/patterns/internationalization":1}],"comma":[{"/patterns/internationalization":1}],"period":[{"/patterns/internationalization":1}],"punctuation":[{"/patterns/internationalization":1}],"crafting":[{"/patterns/internationalization":1},{"/style/typography":1}],"vertical":[{"/patterns/internationalization":1},{"/patterns/steppers":1}],"horizontal":[{"/patterns/tables":2},{"/patterns/internationalization":1},{"/patterns/navigation":1},{"/patterns/steppers":1}],"fixed":[{"/patterns/internationalization":1}],"badges":[{"/patterns/internationalization":1}],"glyphs":[{"/patterns/internationalization":1}],"recommends":[{"/patterns/internationalization":1},{"/community/faq":1}],"western":[{"/patterns/internationalization":1},{"/style/typography":1}],"bidirectionality":[{"/patterns/internationalization":1}],"arabic":[{"/patterns/internationalization":1}],"hebrew":[{"/patterns/internationalization":1}],"mirror":[{"/patterns/internationalization":1}],"mirrored":[{"/patterns/internationalization":1}],"addressing":[{"/patterns/internationalization":1}],"america":[{"/patterns/internationalization":1}],"stock":[{"/patterns/internationalization":1},{"/style/illustrations":1}],"decline":[{"/patterns/internationalization":1}],"china":[{"/patterns/internationalization":1}],"rise":[{"/patterns/internationalization":1}],"thumbs":[{"/patterns/internationalization":1}],"gesture":[{"/patterns/internationalization":2}],"expresses":[{"/patterns/internationalization":1}],"approval":[{"/patterns/internationalization":1}],"english":[{"/patterns/internationalization":2}],"speaking":[{"/patterns/internationalization":1}],"negative":[{"/patterns/internationalization":1}],"iraq":[{"/patterns/internationalization":1}],"consultant":[{"/patterns/internationalization":1}],"audit":[{"/patterns/internationalization":1},{"/community/innersourcing":1}],"webpages":[{"/patterns/internationalization":1}],"advertise":[{"/patterns/internationalization":1}],"appeal":[{"/patterns/internationalization":1}],"choice":[{"/community/faq":2},{"/patterns/internationalization":1}],"tailored":[{"/patterns/internationalization":1}],"targeted":[{"/patterns/internationalization":1},{"/style/illustrations":1}],"culture":[{"/patterns/internationalization":2}],"likewise":[{"/patterns/internationalization":1}],"study":[{"/patterns/internationalization":1}],"conclusions":[{"/patterns/internationalization":1},{"/patterns/visualizations":1}],"derived":[{"/patterns/internationalization":1},{"/community/license":1}],"swap":[{"/patterns/internationalization":1}],"ngx":[{"/patterns/loading":2},{"/patterns/internationalization":1}],"switching":[{"/patterns/internationalization":1}],"internationalize":[{"/patterns/internationalization":1}],"i18next":[{"/patterns/internationalization":2}],"manage":[{"/patterns/internationalization":2}],"carefully":[{"/patterns/internationalization":1}],"i18nmanager":[{"/patterns/internationalization":1}],"sort":[{"/patterns/lists":1},{"/patterns/tables":1}],"table":[{"/patterns/tables":21},{"/patterns/lists":1}],"drag":[{"/patterns/lists":5}],"drop":[{"/patterns/lists":4}],"groups":[{"/patterns/lists":1},{"/patterns/user-auth":1}],"logical":[{"/patterns/lists":2}],"alarm":[{"/style/color":3},{"/patterns/lists":1}],"pairs":[{"/patterns/lists":1}],"timelines":[{"/patterns/lists":3}],"panels":[{"/patterns/lists":1},{"/patterns/navigation":1}],"alarms":[{"/style/color":3},{"/patterns/lists":2}],"notifications":[{"/patterns/lists":1},{"/patterns/user-auth":1}],"inventories":[{"/patterns/lists":1}],"contacts":[{"/patterns/lists":1}],"logs":[{"/patterns/lists":2}],"trees":[{"/patterns/lists":1}],"represents":[{"/patterns/lists":1}],"mix":[{"/patterns/lists":1}],"tables":[{"/patterns/tables":20},{"/patterns/lists":2}],"panel":[{"/patterns/lists":3},{"/patterns/navigation":3}],"occasionally":[{"/patterns/lists":1},{"/patterns/tables":1},{"/community/innersourcing":1}],"simplest":[{"/patterns/lists":1}],"presents":[{"/patterns/lists":1},{"/patterns/user-auth":1}],"collection":[{"/patterns/lists":1},{"/patterns/tables":1},{"/style/themes":1}],"indication":[{"/patterns/loading":3},{"/patterns/lists":1}],"condition":[{"/patterns/lists":1}],"stripes":[{"/patterns/lists":2}],"scorecard":[{"/style/typography":2},{"/patterns/lists":1}],"_solely_":[{"/patterns/lists":1}],"tags":[{"/patterns/lists":1}],"timestamps":[{"/patterns/lists":2}],"timestamp":[{"/patterns/lists":1}],"occurs":[{"/patterns/user-auth":2},{"/patterns/lists":1},{"/patterns/loading":1}],"group":[{"/patterns/lists":1},{"/patterns/user-auth":1},{"/style/illustrations":1}],"scan":[{"/patterns/lists":1}],"sorting":[{"/patterns/lists":2},{"/patterns/tables":1}],"filtering":[{"/patterns/tables":3},{"/patterns/lists":1},{"/patterns/navigation":1}],"toggling":[{"/patterns/lists":1}],"exporting":[{"/patterns/lists":1},{"/style/illustrations":1}],"orders":[{"/patterns/lists":1}],"accomplished":[{"/patterns/lists":1},{"/patterns/user-auth":1}],"handle":[{"/patterns/lists":1}],"leftmost":[{"/patterns/lists":1}],"row":[{"/patterns/tables":12},{"/patterns/lists":1},{"/style/color":1}],"pushing":[{"/patterns/lists":1}],"locked":[{"/patterns/lists":1}],"edit":[{"/patterns/lists":1},{"/patterns/overlay":1},{"/patterns/tables":1}],"multi":[{"/patterns/steppers":2},{"/patterns/lists":1},{"/patterns/tables":1},{"/patterns/user-auth":1},{"/community/our-team":1}],"represented":[{"/patterns/lists":1}],"events":[{"/patterns/lists":1}],"navigating":[{"/patterns/lists":1},{"/patterns/tables":1},{"/style/color":1}],"tree":[{"/patterns/lists":2}],"progressive":[{"/patterns/lists":1}],"disclosure":[{"/patterns/lists":1}],"tricky":[{"/patterns/lists":1}],"remove":[{"/patterns/lists":1}],"summary":[{"/patterns/lists":1},{"/community/bugs":1}],"cards":[{"/patterns/lists":1}],"gestures":[{"/patterns/tables":3},{"/patterns/lists":1}],"swipe":[{"/patterns/tables":2},{"/patterns/lists":1}],"info":[{"/patterns/lists":3}],"tag":[{"/patterns/lists":3}],"cdk":[{"/patterns/lists":1}],"kit":[{"/patterns/lists":1}],"asynchronous":[{"/patterns/loading":1}],"refresh":[{"/patterns/loading":5}],"waiting":[{"/patterns/loading":1}],"oftentimes":[{"/patterns/loading":1}],"send":[{"/patterns/loading":1},{"/community/innersourcing":1},{"/community/features":1}],"remote":[{"/patterns/loading":1}],"latency":[{"/patterns/loading":1}],"happening":[{"/patterns/loading":2}],"shapes":[{"/patterns/loading":5},{"/patterns/overlay":1}],"fetching":[{"/patterns/loading":1}],"skeletons":[{"/patterns/loading":1}],"mimic":[{"/patterns/loading":1}],"eventually":[{"/patterns/loading":1}],"loaded":[{"/patterns/loading":2}],"impression":[{"/patterns/loading":1}],"closely":[{"/patterns/loading":1}],"_structure_":[{"/patterns/loading":1}],"rectangles":[{"/patterns/loading":1}],"circles":[{"/patterns/loading":1}],"_length_":[{"/patterns/loading":1}],"ended":[{"/patterns/loading":1}],"slightly":[{"/patterns/loading":1},{"/patterns/navigation":1}],"ok":[{"/patterns/loading":1}],"mission":[{"/patterns/loading":1}],"overlays":[{"/patterns/overlay":4},{"/patterns/loading":3},{"/patterns/user-auth":1}],"semi":[{"/patterns/loading":1}],"transparent":[{"/patterns/loading":1}],"overlay":[{"/patterns/overlay":3},{"/patterns/navigation":2},{"/patterns/loading":1},{"/patterns/user-auth":1}],"variation":[{"/patterns/navigation":5},{"/patterns/loading":1},{"/patterns/steppers":1},{"/style/typography":1}],"block":[{"/patterns/navigation":2},{"/patterns/loading":1},{"/community/license":1}],"processing":[{"/patterns/loading":1}],"spinners":[{"/patterns/loading":3}],"wait":[{"/patterns/loading":1}],"server":[{"/patterns/loading":3},{"/patterns/user-auth":2},{"/patterns/tables":1}],"response":[{"/patterns/loading":1},{"/community/bugs":1}],"validate":[{"/patterns/loading":1}],"disable":[{"/patterns/loading":1}],"succeeds":[{"/patterns/loading":1}],"fails":[{"/patterns/loading":1}],"restored":[{"/patterns/loading":1}],"discrete":[{"/patterns/loading":1}],"measurable":[{"/patterns/loading":1}],"uploading":[{"/patterns/loading":1}],"polling":[{"/patterns/loading":2}],"pub":[{"/patterns/loading":1}],"sub":[{"/patterns/navigation":2},{"/patterns/loading":1}],"refreshed":[{"/patterns/loading":3}],"mention":[{"/patterns/loading":1}],"somewhere":[{"/patterns/loading":1}],"stale":[{"/patterns/loading":1}],"minute":[{"/patterns/loading":1}],"initial":[{"/patterns/loading":1}],"depend":[{"/patterns/loading":1}],"plays":[{"/patterns/loading":1}],"role":[{"/patterns/loading":1}],"sizing":[{"/patterns/loading":1}],"container":[{"/patterns/loading":1}],"netbasal":[{"/patterns/loading":2}],"loader":[{"/patterns/loading":3}],"ion":[{"/patterns/loading":1},{"/patterns/overlay":1}],"rn":[{"/patterns/loading":1}],"circular":[{"/patterns/loading":1}],"linear":[{"/patterns/steppers":3},{"/patterns/loading":1}],"activity":[{"/patterns/loading":1}],"tab":[{"/patterns/navigation":3}],"attached":[{"/patterns/navigation":1},{"/community/bugs":1}],"subheader":[{"/patterns/navigation":1}],"trademark":[{"/patterns/navigation":1}],"permanent":[{"/patterns/navigation":4},{"/patterns/overlay":1}],"visible":[{"/patterns/navigation":2},{"/patterns/tables":1},{"/style/illustrations":1}],"opposed":[{"/patterns/navigation":1}],"variant":[{"/patterns/navigation":2}],"nested":[{"/patterns/navigation":4}],"justify":[{"/patterns/navigation":1}],"shows":[{"/patterns/navigation":1},{"/patterns/steppers":1}],"compact":[{"/patterns/navigation":1}],"saving":[{"/patterns/navigation":1}],"hmi":[{"/patterns/navigation":1},{"/patterns/user-auth":1}],"condensed":[{"/patterns/navigation":1}],"persistent":[{"/patterns/navigation":2}],"opened":[{"/patterns/navigation":5}],"momentarily":[{"/patterns/navigation":1}],"hovering":[{"/patterns/navigation":1}],"mouse":[{"/patterns/navigation":1}],"wouldn":[{"/patterns/navigation":1}],"invisible":[{"/patterns/navigation":1}],"pressing":[{"/patterns/navigation":1}],"extreme":[{"/patterns/navigation":1}],"limitations":[{"/patterns/navigation":1}],"combine":[{"/patterns/navigation":1},{"/patterns/tables":1}],"secondary":[{"/patterns/navigation":1},{"/style/themes":1}],"classic":[{"/patterns/navigation":1}],"routes":[{"/patterns/navigation":3}],"handles":[{"/patterns/navigation":1}],"documents":[{"/patterns/navigation":1}],"faq":[{"/patterns/navigation":1},{"/community/faq":1}],"hierarchical":[{"/patterns/navigation":1}],"resize":[{"/patterns/navigation":2}],"resizes":[{"/patterns/navigation":1}],"partially":[{"/patterns/navigation":1}],"obscuring":[{"/patterns/navigation":1}],"direct":[{"/patterns/navigation":1},{"/community/license":1}],"active":[{"/patterns/navigation":2}],"dividers":[{"/patterns/navigation":1}],"divider":[{"/patterns/navigation":1}],"separating":[{"/patterns/navigation":2}],"iphone":[{"/patterns/navigation":1}],"x":[{"/patterns/navigation":1}],"model":[{"/patterns/navigation":1},{"/community/faq":1}],"sidebar":[{"/patterns/overlay":4}],"popup":[{"/patterns/overlay":1}],"capture":[{"/patterns/overlay":2}],"supplement":[{"/patterns/overlay":1},{"/community/our-team":1}],"confirmation":[{"/patterns/overlay":2},{"/patterns/user-auth":2}],"dialogs":[{"/patterns/overlay":3}],"sidebars":[{"/patterns/overlay":4}],"blocking":[{"/patterns/overlay":3}],"else":[{"/patterns/overlay":1}],"ask":[{"/patterns/overlay":1},{"/community/innersourcing":1}],"decision":[{"/patterns/overlay":1}],"confirming":[{"/patterns/overlay":1}],"deletion":[{"/patterns/overlay":1}],"modals":[{"/patterns/overlay":4}],"respond":[{"/patterns/overlay":1},{"/community/contactus":1}],"presenting":[{"/patterns/overlay":1},{"/patterns/user-auth":1}],"dismissed":[{"/patterns/overlay":1}],"rest":[{"/patterns/overlay":1},{"/community/faq":1}],"elsewhere":[{"/patterns/overlay":2}],"collecting":[{"/patterns/overlay":1}],"sheets":[{"/patterns/overlay":2}],"legend":[{"/patterns/overlay":1}],"chart":[{"/patterns/visualizations":3},{"/patterns/overlay":1}],"radio":[{"/patterns/overlay":1}],"checkbox":[{"/patterns/overlay":1},{"/patterns/tables":1}],"dismissible":[{"/patterns/overlay":1}],"opposite":[{"/patterns/overlay":1}],"surfaces":[{"/patterns/overlay":1}],"slide":[{"/patterns/overlay":1}],"activated":[{"/patterns/overlay":1}],"sidenav":[{"/patterns/overlay":1}],"tabular":[{"/patterns/tables":2}],"evolving":[{"/patterns/tables":1},{"/community/contactus":1}],"shown":[{"/patterns/tables":1}],"let":[{"/patterns/tables":1},{"/community/bugs":1}],"analyze":[{"/patterns/tables":1}],"cells":[{"/patterns/tables":1}],"seek":[{"/patterns/tables":1}],"delete":[{"/patterns/tables":4}],"batch":[{"/patterns/tables":2}],"column":[{"/patterns/tables":3}],"handling":[{"/patterns/tables":1}],"sticky":[{"/patterns/tables":1}],"gets":[{"/patterns/tables":2}],"scroll":[{"/patterns/tables":5}],"rows":[{"/patterns/tables":3}],"peek":[{"/patterns/tables":1}],"scrolling":[{"/patterns/tables":1},{"/patterns/visualizations":1}],"overflows":[{"/patterns/tables":1}],"horizontally":[{"/patterns/tables":2}],"ergonomically":[{"/patterns/tables":1}],"trackpad":[{"/patterns/tables":1}],"suggest":[{"/patterns/tables":1}],"animation":[{"/style/illustrations":2},{"/patterns/tables":1}],"differentiate":[{"/patterns/tables":1}],"animations":[{"/patterns/tables":1},{"/patterns/user-auth":1},{"/style/illustrations":1}],"transitions":[{"/patterns/tables":1}],"distinction":[{"/patterns/tables":1}],"arrangement":[{"/patterns/tables":1}],"columns":[{"/patterns/tables":3}],"allowing":[{"/patterns/tables":1}],"points":[{"/patterns/tables":2}],"hand":[{"/patterns/tables":2}],"tend":[{"/patterns/tables":3}],"treat":[{"/patterns/tables":1}],"cohesive":[{"/patterns/tables":1}],"therefore":[{"/patterns/tables":1}],"almost":[{"/patterns/tables":1}],"reside":[{"/patterns/tables":1}],"dashboards":[{"/patterns/tables":1}],"widgets":[{"/patterns/tables":1}],"competing":[{"/patterns/tables":1}],"viewport":[{"/patterns/tables":1}],"attempts":[{"/patterns/tables":1}],"result":[{"/patterns/tables":1}],"pick":[{"/patterns/tables":1}],"movement":[{"/patterns/tables":1}],"properties":[{"/patterns/tables":1},{"/style/iconography":1},{"/style/typography":1}],"jump":[{"/patterns/tables":1}],"exit":[{"/patterns/tables":1}],"lawn":[{"/patterns/tables":1}],"mower":[{"/patterns/tables":1}],"scanning":[{"/patterns/tables":1}],"layer":[{"/patterns/tables":1}],"cake":[{"/patterns/tables":1}],"parameters":[{"/patterns/tables":2}],"structuring":[{"/patterns/tables":1}],"explanations":[{"/patterns/tables":1}],"included":[{"/patterns/tables":1},{"/patterns/steppers":1}],"mentally":[{"/patterns/tables":1}],"objects":[{"/patterns/tables":1},{"/style/themes":1}],"abstract":[{"/patterns/tables":1},{"/style/illustrations":1}],"examine":[{"/patterns/tables":1}],"complicated":[{"/patterns/tables":2}],"viewports":[{"/patterns/tables":1}],"computational":[{"/patterns/tables":1}],"power":[{"/community/our-team":4},{"/patterns/tables":1}],"massive":[{"/patterns/tables":1}],"sets":[{"/patterns/tables":1},{"/patterns/visualizations":1},{"/style/color":1},{"/style/typography":1}],"intentions":[{"/patterns/tables":1}],"cross":[{"/patterns/tables":1}],"comparisons":[{"/patterns/tables":1}],"foot":[{"/patterns/tables":1}],"pay":[{"/patterns/tables":1}],"attention":[{"/style/color":2},{"/patterns/tables":1},{"/style/illustrations":1},{"/style/typography":1}],"surroundings":[{"/patterns/tables":1}],"decisions":[{"/patterns/tables":1}],"suffice":[{"/patterns/tables":1}],"pagination":[{"/patterns/tables":3}],"become":[{"/patterns/tables":1}],"preserved":[{"/patterns/tables":1}],"embedding":[{"/patterns/tables":1}],"landscape":[{"/patterns/tables":2}],"meant":[{"/patterns/tables":1},{"/community/faq":1}],"portrait":[{"/patterns/tables":1}],"stepper":[{"/patterns/steppers":15}],"procedure":[{"/patterns/steppers":1}],"wizard":[{"/patterns/steppers":1}],"steppers":[{"/patterns/steppers":3},{"/patterns/user-auth":1},{"/style/illustrations":1}],"tell":[{"/patterns/steppers":1}],"wizards":[{"/patterns/steppers":1}],"procedures":[{"/patterns/steppers":2}],"editable":[{"/patterns/steppers":2},{"/community/innersourcing":1}],"insert":[{"/patterns/steppers":1}],"emergency":[{"/patterns/steppers":1}],"shutdown":[{"/patterns/steppers":1}],"pager":[{"/patterns/steppers":4}],"simplified":[{"/patterns/steppers":1}],"solely":[{"/patterns/steppers":1}],"register":[{"/patterns/user-auth":5}],"forget":[{"/patterns/user-auth":1}],"forgot":[{"/patterns/user-auth":5}],"auth":[{"/patterns/user-auth":4}],"join":[{"/patterns/user-auth":6}],"unauthorized":[{"/patterns/user-auth":1}],"authorized":[{"/patterns/user-auth":3}],"joining":[{"/patterns/user-auth":6}],"reset":[{"/patterns/user-auth":4}],"whereas":[{"/patterns/user-auth":1}],"themselves":[{"/patterns/user-auth":1}],"self":[{"/patterns/user-auth":5}],"invite":[{"/patterns/user-auth":1}],"invitation":[{"/patterns/user-auth":15}],"restrict":[{"/patterns/user-auth":2}],"eula":[{"/patterns/user-auth":2}],"receive":[{"/patterns/user-auth":7}],"admin":[{"/patterns/user-auth":2}],"sends":[{"/patterns/user-auth":1}],"inviting":[{"/patterns/user-auth":1}],"initiated":[{"/patterns/user-auth":1}],"assure":[{"/patterns/user-auth":1}],"organizations":[{"/patterns/user-auth":1}],"identifier":[{"/patterns/user-auth":1}],"sent":[{"/patterns/user-auth":3}],"joined":[{"/patterns/user-auth":2}],"forgotten":[{"/patterns/user-auth":2}],"trigger":[{"/patterns/user-auth":1}],"amazon":[{"/patterns/user-auth":1}],"apple":[{"/patterns/user-auth":1}],"microsoft":[{"/patterns/user-auth":1}],"hyperlink":[{"/patterns/user-auth":2}],"credential":[{"/patterns/user-auth":1}],"mail":[{"/patterns/user-auth":1}],"resetting":[{"/patterns/user-auth":1}],"forced":[{"/patterns/user-auth":1}],"communications":[{"/patterns/user-auth":2}],"emails":[{"/patterns/user-auth":2}],"invitations":[{"/patterns/user-auth":1}],"codes":[{"/patterns/user-auth":1}],"unsubscribe":[{"/patterns/user-auth":1}],"terminated":[{"/patterns/user-auth":1}],"expired":[{"/patterns/user-auth":3}],"sessions":[{"/patterns/user-auth":1}],"leaves":[{"/patterns/user-auth":1}],"session":[{"/patterns/user-auth":1}],"upon":[{"/patterns/user-auth":1},{"/style/themes":1}],"returning":[{"/patterns/user-auth":1}],"again":[{"/patterns/user-auth":1}],"encounters":[{"/patterns/user-auth":1}],"mismatch":[{"/patterns/user-auth":1}],"temporarily":[{"/patterns/user-auth":1}],"recover":[{"/patterns/user-auth":1}],"unavailable":[{"/patterns/user-auth":1}],"expose":[{"/patterns/user-auth":1}],"exposing":[{"/patterns/user-auth":1}],"unlike":[{"/patterns/user-auth":1},{"/style/typography":1}],"vulnerable":[{"/patterns/user-auth":1}],"outside":[{"/patterns/user-auth":1}],"threats":[{"/patterns/user-auth":1}],"toggles":[{"/patterns/user-auth":1}],"me":[{"/patterns/user-auth":1}],"factor":[{"/patterns/user-auth":3}],"sending":[{"/patterns/user-auth":1}],"sms":[{"/patterns/user-auth":1}],"construct":[{"/patterns/user-auth":1}],"_planned_":[{"/patterns/user-auth":1}],"visualization":[{"/patterns/visualizations":1},{"/style/color":1}],"graph":[{"/patterns/visualizations":1},{"/style/illustrations":1}],"highcharts":[{"/patterns/visualizations":3},{"/community/faq":1}],"chartjs":[{"/patterns/visualizations":3},{"/community/faq":1}],"mapbox":[{"/patterns/visualizations":3}],"visualizations":[{"/patterns/visualizations":4},{"/community/faq":1}],"interested":[{"/community/faq":3},{"/patterns/visualizations":1},{"/community/license":1}],"raw":[{"/patterns/visualizations":1}],"charts":[{"/patterns/visualizations":5},{"/style/color":1}],"graphs":[{"/patterns/visualizations":4},{"/style/color":1}],"maps":[{"/patterns/visualizations":5}],"numerous":[{"/patterns/visualizations":1}],"series":[{"/patterns/visualizations":1}],"pie":[{"/patterns/visualizations":1}],"embedded":[{"/patterns/visualizations":1}],"interfering":[{"/patterns/visualizations":1}],"spatial":[{"/patterns/visualizations":1}],"geographical":[{"/patterns/visualizations":1}],"plot":[{"/patterns/visualizations":1}],"facilities":[{"/patterns/visualizations":1}],"responsible":[{"/patterns/visualizations":1}],"panning":[{"/patterns/visualizations":1}],"zooming":[{"/patterns/visualizations":1}],"pricing":[{"/patterns/visualizations":2}],"palettes":[{"/style/color":1},{"/style/illustrations":1},{"/style/themes":1}],"weighted":[{"/style/color":1}],"versatile":[{"/style/color":1}],"solving":[{"/style/color":1}],"divided":[{"/style/color":1}],"stick":[{"/style/color":1},{"/community/faq":1}],"000000":[{"/style/color":1}],"instances":[{"/style/color":1}],"oled":[{"/style/color":1}],"warnings":[{"/style/color":2}],"successes":[{"/style/color":1}],"energized":[{"/style/color":1}],"_never_":[{"/style/color":2}],"reinforce":[{"/style/color":1}],"bell":[{"/style/color":2}],"paired":[{"/style/color":1}],"border":[{"/style/color":1}],"stripe":[{"/style/color":1}],"solidify":[{"/style/color":1}],"association":[{"/style/color":1}],"glance":[{"/style/color":1}],"denote":[{"/style/color":3}],"loss":[{"/style/color":1},{"/community/license":1}],"communication":[{"/style/color":1}],"alerts":[{"/style/color":3}],"gold":[{"/style/color":2}],"tripped":[{"/style/color":1}],"electrical":[{"/style/color":1}],"confused":[{"/style/color":1}],"statuses":[{"/style/color":1}],"purple":[{"/style/color":2}],"disarmed":[{"/style/color":1}],"charting":[{"/community/faq":4},{"/style/color":1}],"graphing":[{"/style/color":1}],"teal":[{"/style/color":1}],"citron":[{"/style/color":1}],"pine":[{"/style/color":1}],"emerald":[{"/style/color":1}],"wine":[{"/style/color":1}],"crimson":[{"/style/color":1}],"sunset":[{"/style/color":1}],"rust":[{"/style/color":1}],"navy":[{"/style/color":1}],"sky":[{"/style/color":1}],"sage":[{"/style/color":1}],"toad":[{"/style/color":1}],"butter":[{"/style/color":1}],"goldenrod":[{"/style/color":1}],"trophy":[{"/style/color":1}],"health":[{"/style/iconography":1}],"metrics":[{"/style/iconography":1}],"adjusted":[{"/style/iconography":1}],"programmatically":[{"/style/iconography":1}],"fill":[{"/style/iconography":1},{"/community/innersourcing":1},{"/community/features":1}],"suitable":[{"/style/iconography":1}],"ux":[{"/style/iconography":1}],"hours":[{"/style/iconography":1}],"symbols":[{"/style/iconography":1}],"house":[{"/style/iconography":1}],"requests":[{"/style/iconography":1},{"/community/features":1},{"/community/faq":1}],"early":[{"/style/iconography":1}],"illustration":[{"/style/illustrations":4}],"onboarding":[{"/style/illustrations":3}],"mostly":[{"/style/illustrations":1},{"/style/themes":1}],"supposed":[{"/style/illustrations":1}],"artwork":[{"/style/illustrations":2}],"icons8":[{"/style/illustrations":1}],"adobe":[{"/style/illustrations":2},{"/community/faq":1}],"humaaans":[{"/style/illustrations":1}],"plugin":[{"/style/illustrations":1},{"/resources/designer":1}],"finalizing":[{"/style/illustrations":1}],"illustrator":[{"/style/illustrations":1},{"/community/faq":1}],"matter":[{"/style/illustrations":1}],"ground":[{"/style/illustrations":1}],"projection":[{"/style/illustrations":1}],"filling":[{"/style/illustrations":1}],"leave":[{"/style/illustrations":2}],"wider":[{"/style/illustrations":1}],"drawing":[{"/style/illustrations":1}],"artistic":[{"/style/illustrations":1}],"inform":[{"/style/illustrations":1}],"decorate":[{"/style/illustrations":1}],"wherever":[{"/style/illustrations":1}],"ineffective":[{"/style/illustrations":1}],"words":[{"/style/illustrations":1}],"shade":[{"/style/illustrations":1},{"/style/themes":1}],"foreground":[{"/style/illustrations":1}],"blend":[{"/style/illustrations":2}],"stand":[{"/style/illustrations":1}],"strokes":[{"/style/illustrations":3}],"vice":[{"/style/illustrations":1}],"versa":[{"/style/illustrations":1}],"reused":[{"/style/illustrations":1}],"infographics":[{"/style/illustrations":1}],"simulate":[{"/style/illustrations":2}],"colorblind":[{"/style/illustrations":2}],"conditions":[{"/community/license":3},{"/style/illustrations":2},{"/style/themes":1}],"schemes":[{"/style/illustrations":1}],"intact":[{"/style/illustrations":1}],"coblis":[{"/style/illustrations":1}],"conveyed":[{"/style/illustrations":1}],"instructional":[{"/style/illustrations":1}],"lottie":[{"/style/illustrations":1}],"outline":[{"/style/illustrations":2}],"stroke":[{"/style/illustrations":2}],"convert":[{"/style/illustrations":1}],"layers":[{"/style/illustrations":1}],"semantically":[{"/style/illustrations":1}],"animating":[{"/style/illustrations":1}],"minify":[{"/style/illustrations":1}],"eliminate":[{"/style/illustrations":1},{"/community/innersourcing":1}],"naming":[{"/style/illustrations":1}],"decimal":[{"/style/illustrations":2}],"precision":[{"/style/illustrations":2}],"presentation":[{"/style/illustrations":1}],"enabled":[{"/style/illustrations":1}],"higher":[{"/style/illustrations":2}],"smooth":[{"/style/illustrations":1}],"off":[{"/style/typography":2}],"licensed":[{"/style/typography":1},{"/community/license":1}],"character":[{"/style/typography":2}],"iso":[{"/style/typography":1}],"latin":[{"/style/typography":2}],"ce":[{"/style/typography":1}],"greek":[{"/style/typography":1}],"cyrillic":[{"/style/typography":1}],"print":[{"/style/typography":1}],"characteristics":[{"/style/typography":1}],"letter":[{"/style/typography":1}],"grow":[{"/style/typography":1}],"consideration":[{"/style/typography":1}],"unrealistic":[{"/style/typography":1}],"presume":[{"/style/typography":1}],"_every_":[{"/style/typography":1}],"slight":[{"/style/typography":1}],"places":[{"/style/typography":1},{"/style/themes":1}],"worry":[{"/style/typography":1}],"adjusting":[{"/style/typography":1}],"body1":[{"/style/typography":2}],"favorite":[{"/style/typography":1}],"18dp":[{"/style/typography":1}],"h6":[{"/style/typography":1}],"14dp":[{"/style/typography":1}],"benefits":[{"/style/themes":1}],"bluedark":[{"/style/themes":1}],"inherit":[{"/style/themes":1}],"typographies":[{"/style/themes":1}],"explore":[{"/style/themes":2}],"high":[{"/style/themes":2}],"representative":[{"/style/themes":1}],"effects":[{"/style/themes":1}],"vibrance":[{"/style/themes":1}],"suited":[{"/style/themes":1}],"everyday":[{"/style/themes":1}],"monitor":[{"/style/themes":1}],"facility":[{"/style/themes":1}],"inspection":[{"/style/themes":1}],"iconic":[{"/style/themes":1}],"007bc1":[{"/style/themes":1}],"notably":[{"/style/themes":1}],"applied":[{"/style/themes":3}],"controls":[{"/style/themes":1}],"although":[{"/style/themes":1}],"surface":[{"/style/themes":1}],"shaded":[{"/style/themes":1}],"utilizes":[{"/style/themes":1}],"grays":[{"/style/themes":1}],"blacks":[{"/style/themes":1}],"reserved":[{"/style/themes":1},{"/community/license":1}],"stylesheets":[{"/style/themes":1}],"imported":[{"/style/themes":1}],"consumed":[{"/style/themes":1}],"jss":[{"/style/themes":1}],"readme":[{"/style/themes":1}],"individually":[{"/style/themes":1},{"/community/faq":1}],"alter":[{"/style/themes":1}],"proofing":[{"/style/themes":1}],"bsd":[{"/community/license":3}],"clause":[{"/community/license":2}],"agreement":[{"/community/license":1}],"comment":[{"/community/license":1}],"vacuum":[{"/community/license":1}],"simplify":[{"/community/license":1}],"delivery":[{"/community/license":1},{"/community/faq":1}],"publishing":[{"/community/license":1}],"continuously":[{"/community/license":1},{"/community/faq":1}],"deliver":[{"/community/license":1}],"improvements":[{"/community/license":1}],"seamlessly":[{"/community/license":1}],"innersource":[{"/community/innersourcing":2},{"/community/license":1}],"copyright":[{"/community/license":6}],"rights":[{"/community/license":1}],"redistribution":[{"/community/license":1}],"modification":[{"/community/license":1}],"permitted":[{"/community/license":1}],"met":[{"/community/license":1}],"redistributions":[{"/community/license":2}],"retain":[{"/community/license":1}],"disclaimer":[{"/community/license":2}],"reproduce":[{"/community/license":1},{"/community/bugs":1}],"materials":[{"/community/innersourcing":2},{"/community/license":1},{"/community/faq":1},{"/community/our-team":1}],"neither":[{"/community/license":1}],"holder":[{"/community/license":2}],"nor":[{"/community/license":1}],"contributors":[{"/community/license":3}],"endorse":[{"/community/license":1}],"permission":[{"/community/license":1}],"holders":[{"/community/license":1}],"implied":[{"/community/license":2}],"warranties":[{"/community/license":2}],"merchantability":[{"/community/license":1}],"fitness":[{"/community/license":1}],"disclaimed":[{"/community/license":1}],"event":[{"/community/license":1},{"/community/faq":1}],"shall":[{"/community/license":1}],"liable":[{"/community/license":1}],"indirect":[{"/community/license":1}],"incidental":[{"/community/license":1}],"exemplary":[{"/community/license":1}],"consequential":[{"/community/license":1}],"damages":[{"/community/license":1}],"procurement":[{"/community/license":1}],"substitute":[{"/community/license":1}],"goods":[{"/community/license":1}],"profits":[{"/community/license":1}],"interruption":[{"/community/license":1}],"theory":[{"/community/license":1}],"liability":[{"/community/license":2}],"contract":[{"/community/license":1}],"tort":[{"/community/license":1}],"negligence":[{"/community/license":1}],"otherwise":[{"/community/license":1}],"arising":[{"/community/license":1}],"advised":[{"/community/license":1}],"possibility":[{"/community/license":1}],"damage":[{"/community/license":1}],"innersourcing":[{"/community/innersourcing":3},{"/community/faq":3},{"/community/features":1}],"duplicate":[{"/community/innersourcing":1}],"benefit":[{"/community/innersourcing":1}],"love":[{"/community/faq":2},{"/community/innersourcing":1}],"hear":[{"/community/innersourcing":2}],"pull":[{"/community/innersourcing":1},{"/community/faq":1}],"contribution":[{"/community/innersourcing":1}],"runnable":[{"/community/innersourcing":1}],"sandbox":[{"/community/innersourcing":1}],"snippets":[{"/community/innersourcing":1}],"evaluate":[{"/community/innersourcing":4}],"proposed":[{"/community/innersourcing":2}],"hanging":[{"/community/innersourcing":1}],"fruit":[{"/community/innersourcing":1}],"conclusion":[{"/community/innersourcing":1}],"forward":[{"/community/innersourcing":1},{"/community/contactus":1}],"conformity":[{"/community/innersourcing":1}],"aligns":[{"/community/innersourcing":1}],"questions":[{"/community/faq":3},{"/community/contactus":2},{"/community/innersourcing":1}],"discuss":[{"/community/innersourcing":1}],"iteration":[{"/community/innersourcing":1},{"/community/our-team":1}],"brought":[{"/community/innersourcing":1}],"availability":[{"/community/innersourcing":1}],"timeframe":[{"/community/innersourcing":1}],"scheduled":[{"/community/innersourcing":1}],"quarterly":[{"/community/innersourcing":1},{"/community/faq":1}],"releases":[{"/community/innersourcing":1}],"roadmap":[{"/community/innersourcing":1},{"/community/faq":1}],"alpha":[{"/community/innersourcing":1}],"beta":[{"/community/innersourcing":1}],"encountering":[{"/community/bugs":1}],"cuts":[{"/community/bugs":1}],"nobody":[{"/community/bugs":1}],"perfect":[{"/community/bugs":1}],"issue":[{"/community/bugs":4},{"/community/features":1},{"/community/faq":1}],"bug":[{"/community/bugs":4},{"/community/faq":1}],"w":[{"/community/bugs":1}],"report":[{"/community/bugs":1},{"/community/faq":1}],"tickets":[{"/community/bugs":1}],"fork":[{"/community/bugs":1},{"/community/features":1}],"repository":[{"/community/bugs":1},{"/community/features":1}],"question":[{"/community/faq":2}],"answers":[{"/community/faq":1}],"answered":[{"/community/faq":1}],"contacting":[{"/community/faq":1}],"yes":[{"/community/faq":2}],"whats":[{"/community/faq":1}],"whys":[{"/community/faq":1}],"schedule":[{"/community/faq":1}],"operates":[{"/community/faq":1}],"continuous":[{"/community/faq":1}],"planned":[{"/community/faq":1}],"basis":[{"/community/faq":2}],"towards":[{"/community/faq":1}],"quarter":[{"/community/faq":3}],"hold":[{"/community/faq":1}],"announcement":[{"/community/faq":1}],"were":[{"/community/faq":1},{"/community/our-team":1}],"answer":[{"/community/faq":1}],"attend":[{"/community/faq":1}],"announcements":[{"/community/faq":1}],"mailing":[{"/community/faq":1}],"track":[{"/community/faq":1}],"weeks":[{"/community/faq":1}],"vuejs":[{"/community/faq":1}],"wpf":[{"/community/faq":1}],"flutter":[{"/community/faq":1}],"tried":[{"/community/faq":1}],"meaningful":[{"/community/faq":1}],"ongoing":[{"/community/faq":1}],"staffed":[{"/community/faq":1}],"integrating":[{"/community/faq":1}],"_____":[{"/community/faq":3}],"browsed":[{"/community/faq":1}],"companies":[{"/community/faq":1}],"solutions":[{"/community/faq":2}],"d3":[{"/community/faq":1}],"genuine":[{"/community/faq":1}],"standalone":[{"/community/faq":1}],"electron":[{"/community/faq":1}],"installation":[{"/community/faq":1}],"awesome":[{"/community/faq":2}],"fixes":[{"/community/faq":1}],"happy":[{"/community/faq":2}],"comments":[{"/community/faq":1}],"standardized":[{"/community/faq":2}],"sticker":[{"/community/faq":2}],"array":[{"/community/faq":1}],"kick":[{"/community/faq":1}],"sketch":[{"/community/faq":1}],"prioritize":[{"/community/faq":1}],"interest":[{"/community/faq":1}],"expressed":[{"/community/faq":1}],"demo":[{"/community/faq":1}],"seeing":[{"/community/faq":1}],"past":[{"/community/faq":1}],"creative":[{"/community/faq":1}],"box":[{"/community/faq":1}],"fair":[{"/community/faq":1}],"game":[{"/community/faq":1}],"says":[{"/community/faq":1}],"achievable":[{"/community/faq":1}],"valuable":[{"/community/faq":1}],"discussion":[{"/community/faq":1}],"history":[{"/community/our-team":2}],"member":[{"/community/our-team":1}],"recruit":[{"/community/our-team":1}],"career":[{"/community/our-team":1}],"seeds":[{"/community/our-team":1}],"sown":[{"/community/our-team":1}],"xpert":[{"/community/our-team":4}],"insight":[{"/community/our-team":2}],"gateway":[{"/community/our-team":1}],"exposed":[{"/community/our-team":1}],"named":[{"/community/our-team":1}],"px":[{"/community/our-team":5}],"polymer":[{"/community/our-team":2}],"summer":[{"/community/our-team":1}],"difficulties":[{"/community/our-team":1}],"led":[{"/community/our-team":1}],"thinking":[{"/community/our-team":1}],"fundamentally":[{"/community/our-team":1}],"rethink":[{"/community/our-team":1}],"conducted":[{"/community/our-team":1}],"interviews":[{"/community/our-team":1}],"wanted":[{"/community/our-team":1}],"evaluated":[{"/community/our-team":1}],"february":[{"/community/our-team":1}],"launches":[{"/community/our-team":1}],"september":[{"/community/our-team":1}],"ramped":[{"/community/our-team":1}],"began":[{"/community/our-team":1}],"awards":[{"/community/our-team":1}],"transformation":[{"/community/our-team":2}],"enterprise":[{"/community/our-team":1}],"renamed":[{"/community/our-team":1}],"grows":[{"/community/contactus":1}],"hesitate":[{"/community/contactus":1}],"regarding":[{"/community/contactus":1}],"com":[{"/community/contactus":1}],"inquiries":[{"/community/contactus":1}],"day":[{"/community/contactus":1}],"hearing":[{"/community/contactus":1}],"listed":[{"/resources/designer":1}],"eaton_comunity":[{"/resources/designer":1}],"duplicated":[{"/resources/designer":1}],"draft":[{"/resources/designer":1}],"utility":[{"/resources/designer":1}]},"keyword":{"overview":[{"/overview":1}],"Brightlayer":[{"/overview":1}],"UI":[{"/overview":1}],"design":[{"/overview":1},{"/design/intro":1},{"/design/anatomy":1},{"/design/accessibility":1},{"/design/websites":1},{"/design/project-identity":1},{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/patterns/visualizations":1},{"/style/color":1},{"/style/iconography":1},{"/style/illustrations":1},{"/style/typography":1},{"/style/themes":1},{"/resources/designer":1}],"development":[{"/overview":1}],"introduction":[{"/overview":1},{"/get-started/web":1},{"/development/frameworks-web/intro":1}],"web":[{"/get-started/new-project":1},{"/get-started/web":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/design/websites":1}],"mobile":[{"/get-started/new-project":1},{"/get-started/mobile":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"new":[{"/get-started/new-project":1},{"/development/cli":1}],"project":[{"/get-started/new-project":1},{"/development/cli":1}],"compare":[{"/get-started/new-project":1},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1}],"comparison":[{"/get-started/new-project":1},{"/get-started/mobile":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-mobile/intro":1}],"application":[{"/get-started/web":1},{"/get-started/mobile":1},{"/design/websites":1}],"framework":[{"/get-started/web":1},{"/development/frameworks-web/intro":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"hybrid":[{"/get-started/mobile":1},{"/development/frameworks-mobile/intro":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"native":[{"/get-started/mobile":1},{"/development/frameworks-mobile/react-native":1}],"developer":[{"/development/environment":1}],"develop":[{"/development/environment":1}],"environment":[{"/development/environment":1},{"/design/intro":1}],"guide":[{"/development/environment":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1}],"tutorial":[{"/development/environment":1},{"/development/frameworks-web/angular":1},{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/ionic":1},{"/development/frameworks-mobile/react-native":1},{"/design/intro":1},{"/design/project-identity":1}],"cli":[{"/development/cli":1}],"command":[{"/development/cli":1}],"line":[{"/development/cli":1}],"interface":[{"/development/cli":1}],"start":[{"/development/cli":1}],"angular":[{"/development/frameworks-web/angular":1}],"react":[{"/development/frameworks-web/react":1},{"/development/frameworks-mobile/react-native":1}],"ionic":[{"/development/frameworks-mobile/ionic":1}],"testing":[{"/development/testing":1}],"test":[{"/development/testing":1}],"unit":[{"/development/testing":1}],"e2e":[{"/development/testing":1}],"tdd":[{"/development/testing":1}],"bdd":[{"/development/testing":1}],"integration":[{"/development/testing":1}],"cypress":[{"/development/testing":1}],"anatomy":[{"/design/anatomy":1}],"components":[{"/design/anatomy":1}],"pages":[{"/design/anatomy":1}],"patterns":[{"/design/anatomy":1}],"workflows":[{"/design/anatomy":1}],"atomic":[{"/design/anatomy":1}],"accessibility":[{"/design/accessibility":1}],"styles":[{"/design/accessibility":1}],"compliance":[{"/design/accessibility":1}],"w3c":[{"/design/accessibility":1}],"website":[{"/design/websites":1}],"app":[{"/design/websites":1}],"marketing":[{"/design/websites":1}],"branding":[{"/design/project-identity":1},{"/style/color":1}],"brand":[{"/design/project-identity":1}],"identity":[{"/design/project-identity":1}],"flexible":[{"/design/project-identity":1}],"flex":[{"/design/project-identity":1}],"pattern":[{"/patterns/account-menu":1},{"/patterns/appbar":1},{"/patterns/empty-states":1},{"/patterns/forms":1},{"/patterns/internationalization":1},{"/patterns/lists":1},{"/patterns/loading":1},{"/patterns/navigation":1},{"/patterns/overlay":1},{"/patterns/tables":1},{"/patterns/steppers":1},{"/patterns/user-auth":1},{"/patterns/visualizations":1}],"user":[{"/patterns/account-menu":1}],"account":[{"/patterns/account-menu":1},{"/patterns/user-auth":1}],"details":[{"/patterns/account-menu":1}],"settings":[{"/patterns/account-menu":1}],"menu":[{"/patterns/account-menu":1},{"/patterns/navigation":1}],"avatar":[{"/patterns/account-menu":1}],"profile":[{"/patterns/account-menu":1}],"appbar":[{"/patterns/appbar":1}],"search":[{"/patterns/appbar":1}],"collapse":[{"/patterns/appbar":1}],"collapsible":[{"/patterns/appbar":1}],"extend":[{"/patterns/appbar":1}],"prominent":[{"/patterns/appbar":1}],"toolbar":[{"/patterns/appbar":1}],"banner":[{"/patterns/appbar":1}],"header":[{"/patterns/appbar":1}],"empty":[{"/patterns/empty-states":1}],"state":[{"/patterns/empty-states":1}],"placeholder":[{"/patterns/empty-states":1}],"form":[{"/patterns/forms":1}],"verification":[{"/patterns/forms":1}],"validation":[{"/patterns/forms":1}],"error":[{"/patterns/forms":1}],"internationalization":[{"/patterns/internationalization":1}],"i18n":[{"/patterns/internationalization":1}],"internationalisation":[{"/patterns/internationalization":1}],"language":[{"/patterns/internationalization":1}],"translate":[{"/patterns/internationalization":1}],"translation":[{"/patterns/internationalization":1}],"localization":[{"/patterns/internationalization":1}],"l10n":[{"/patterns/internationalization":1}],"rtl":[{"/patterns/internationalization":1}],"localisation":[{"/patterns/internationalization":1}],"globalization":[{"/patterns/internationalization":1}],"globalize":[{"/patterns/internationalization":1}],"globalisation":[{"/patterns/internationalization":1}],"globalise":[{"/patterns/internationalization":1}],"list":[{"/patterns/lists":1},{"/patterns/tables":1}],"status":[{"/patterns/lists":1}],"sort":[{"/patterns/lists":1},{"/patterns/tables":1}],"table":[{"/patterns/lists":1},{"/patterns/tables":1}],"drag":[{"/patterns/lists":1}],"drop":[{"/patterns/lists":1}],"action":[{"/patterns/lists":1}],"data":[{"/patterns/lists":1},{"/patterns/tables":1}],"loading":[{"/patterns/loading":1}],"asynchronous":[{"/patterns/loading":1}],"api":[{"/patterns/loading":1}],"refresh":[{"/patterns/loading":1}],"navigation":[{"/patterns/navigation":1}],"drawer":[{"/patterns/navigation":1}],"tab":[{"/patterns/navigation":1}],"tabs":[{"/patterns/navigation":1}],"navigate":[{"/patterns/navigation":1}],"nav":[{"/patterns/navigation":1}],"overlay":[{"/patterns/overlay":1}],"modal":[{"/patterns/overlay":1}],"sidebar":[{"/patterns/overlay":1}],"popup":[{"/patterns/overlay":1}],"dialog":[{"/patterns/overlay":1}],"side":[{"/patterns/overlay":1}],"sheet":[{"/patterns/overlay":1}],"tabular":[{"/patterns/tables":1}],"stepper":[{"/patterns/steppers":1}],"procedure":[{"/patterns/steppers":1}],"wizard":[{"/patterns/steppers":1}],"login":[{"/patterns/user-auth":1}],"registration":[{"/patterns/user-auth":1}],"register":[{"/patterns/user-auth":1}],"password":[{"/patterns/user-auth":1}],"forget":[{"/patterns/user-auth":1}],"forgot":[{"/patterns/user-auth":1}],"authentication":[{"/patterns/user-auth":1}],"auth":[{"/patterns/user-auth":1}],"join":[{"/patterns/user-auth":1}],"visualization":[{"/patterns/visualizations":1}],"map":[{"/patterns/visualizations":1}],"chart":[{"/patterns/visualizations":1}],"graph":[{"/patterns/visualizations":1},{"/style/illustrations":1}],"highcharts":[{"/patterns/visualizations":1}],"chartjs":[{"/patterns/visualizations":1}],"mapbox":[{"/patterns/visualizations":1}],"style":[{"/style/color":1},{"/style/iconography":1},{"/style/typography":1},{"/style/themes":1}],"color":[{"/style/color":1}],"palette":[{"/style/color":1}],"icons":[{"/style/iconography":1}],"progress":[{"/style/iconography":1}],"illustration":[{"/style/illustrations":1}],"onboarding":[{"/style/illustrations":1}],"typography":[{"/style/typography":1}],"text":[{"/style/typography":1}],"theme":[{"/style/themes":1}],"light":[{"/style/themes":1}],"dark":[{"/style/themes":1}],"mode":[{"/style/themes":1}],"license":[{"/community/license":1}],"open":[{"/community/license":1}],"source":[{"/community/license":1}],"bsd":[{"/community/license":1}],"sharing":[{"/community/innersourcing":1}],"innersourcing":[{"/community/innersourcing":1}],"contribute":[{"/community/innersourcing":1}],"bugs":[{"/community/bugs":1}],"request":[{"/community/features":1}],"feature":[{"/community/features":1}],"faq":[{"/community/faq":1}],"question":[{"/community/faq":1}],"answers":[{"/community/faq":1}],"about":[{"/community/our-team":1}],"history":[{"/community/our-team":1}],"team":[{"/community/our-team":1}],"member":[{"/community/our-team":1}],"recruit":[{"/community/our-team":1}],"job":[{"/community/our-team":1}],"career":[{"/community/our-team":1}],"contact":[{"/community/contactus":1}],"email":[{"/community/contactus":1}],"feedback":[{"/community/contactus":1}],"questions":[{"/community/contactus":1}],"support":[{"/community/contactus":1}],"help":[{"/community/contactus":1}],"resources":[{"/resources/designer":1}]}} \ No newline at end of file diff --git a/src/database/sitemap-database.json b/src/database/sitemap-database.json index 182c700b7..4e01910e2 100644 --- a/src/database/sitemap-database.json +++ b/src/database/sitemap-database.json @@ -1,182 +1 @@ -{ - "": { "title": "Brightlayer UI | Powering Teams to Make What Matters*" }, - "/overview": { - "title": "What is Brightlayer UI?", - "text": "import { Divider, ImageGrid } from '../app/components';\nimport DesignSystemImage from '../app/assets/design-system.jpg';\n\n\n\n# Welcome to Brightlayer UI\n\n\n\nBrightlayer UI is a complete design system for web and mobile applications. This system will help your team build beautiful applications that adhere to our design guidelines while ensuring flexibility and code reusability.\n\n> Check out our [Release Notes](/release-notes) to see what's new in the latest version of Brightlayer UI.\n\n## Design\n\nThe goal of the Brightlayer UI design system is to ensure consistency between software products delivered by different teams. With a common aesthetic and common guidelines, we can be sure that all products feel like they belong to the same family.\n\nBrightlayer UI is based on the [Material Design](https://material.io/) language. If you are working with our Studio Blue design team, their designs will follow this standard. If you are not utilizing Studio Blue, ensure that your designers are following the Material Guidelines as well as any additional Brightlayer UI [design patterns](/patterns).\n\n## Development\n\nBrightlayer UI is also a development platform. This platform is intended to help development teams work quickly and efficiently by providing recommendations for technologies, tools/libraries, approaches to common challenges, as well as re-usable components. We support a variety of technologies to give your team the flexibility to choose what will work best for you.\n\n- To learn about the technologies we support, check out our [Web](/development/frameworks-web/intro) or [Mobile](/development/frameworks-mobile/intro) technology pages.\n- To learn about the different resources provided by Brightlayer UI, see our [Resources](/resources/developer) page.\n\n\n\n# About this site\n\nThis site will provide you with everything you need to get started with Brightlayer UI:\n\n- Information Guides, including information on starting a [New Project](/get-started/new-project) and the different types of applications you can build\n- Development Guides, including how to set up a [Development Environment](/development/environment), how to start a new project in any of our supported technologies, and what tools to use for [Testing](/development/testing)\n- [Design Guides](/design/intro) explaining how to use Brightlayer UI as a designer\n- Code Examples/[Design Patterns](/patterns) for how to build common elements of a Brightlayer UI application\n- An extensive set of [icons](/style/iconography), [colors](/style/color), and [typography](/style/typography) guidelines that you can use in your designs\n- A [resources](/resources) page with links to all of the Brightlayer UI [NPM packages](https://www.npmjs.com/org/brightlayer-ui) and [GitHub repositories](https://github.com/brightlayer-ui)\n- A community section with information on [reporting bugs](/community/bugs), [requesting features](/community/features), and more.\n" - }, - "/get-started/new-project": { - "title": "Where to Begin?", - "text": "import { Divider } from '../../app/components';\n\n\n\n# New Project Guide\n\nWhen approaching a potential new project, it can be challenging to know where to start. As a first step, it's helpful to decide if this is going to be a web application, mobile application, or both. Here is a run-down of these different types of applications.\n\n## Web Applications\n\nThese applications are accessible over the web. They can be accessed from any device with a network connection and a web browser (personal computer, mobile phone). To learn more about what a web application entails, check out our [Web App](/get-started/web) guide.\n\n## Mobile Applications\n\nMobile applications are intended to be used strictly on mobile devices (e.g., cell phones, tablets, etc.). These can be downloaded directly to the device (e.g., from the App Store or Google Play) and do not have to be connected to the Internet to run. To learn more about what a mobile application entails, including the difference between native and hybrid apps, check out our [Mobile App](/get-started/mobile) guide.\n\n\n\n# Deciding What Kind of Application to Build\n\nWith a new project, the nature of the project often determines which type of application you will need.\n\n## This Project is Replacing an Existing Product\n\nThink about the existing product and how it is used. Gather feedback from existing users and identify areas for improvement.\n\nIn general, you will want to at least provide the same type of application as before (unless user feedback suggests that it's not what they need). If you had a web application before, you may want to build a responsive web application this time. Alternatively, you may want to expand on the existing product by offering a mobile application.\n\n## This is a Brand New Product (never before seen)\n\nThink about how the product will be used. Does it offer features that users will want to access on the go? Is it going to be actively used in the field, or is it something users will more likely use from their desk?\n\nIn general, you can't go wrong with a web application. If you do your due diligence and design a properly responsive application, you will be able to access it from any connected device, including mobile. If you suspect that the primary mode of interacting with the application will be from a mobile device or if the application needs to work offline, you may want to consider building a dedicated mobile app.\n" - }, - "/get-started/web": { - "title": "Web Apps", - "text": "\n\n# Web Applications\n\nWeb applications are everywhere. As the name suggests, they can be accessed from any device that can access the Internet. This means they have a lot of flexibility, but that comes with extra responsibility when you design them.\n\n## Responsive Design\n\nResponsive web design is critical for web applications today. With a nearly infinite variety of web-capable devices available, you'll want your application to look great on all of them. It's much easier to design a responsive web application if you start with mobile designs first. If you can fit your features into a mobile-sized display, it's much easier to scale up to a desktop size than it is to design for desktop and then scale everything down to mobile.\n\n## Get Started With a Web App\n\nThere are a lot of wonderful web applications out there and tons of options for how to proceed. Most modern applications are built with HTML / CSS and sit inside a JavaScript framework. If your application needs to be very small, or if you don't really have a need for a JavaScript infrastructure, you can certainly build static applications with just HTML and CSS. You can also use \"vanilla\" JavaScript without the need for including an entire JavaScript framework in your application. We support both Angular and React in the Brightlayer UI design system.\n\nFor a comparison of the pros / cons of each of these frameworks, see our [Framework Introduction](/development/frameworks-web/intro).\n\nOne of the goals of Brightlayer UI is to maximize maintainability and code re-use by standardizing on certain technologies. If you want to use a different framework from those that we support, you'll need to consider the trade-offs.\n" - }, - "/get-started/mobile": { - "title": "Mobile Apps", - "text": "import { Divider } from '../../app/components';\n\n\n\n# Mobile Applications\n\nMobile applications are very popular. They can be accessed anywhere you can take your mobile device, both online and offline, and can take greater advantage of device features and capabilities than a web application.\n\nMobile applications come in two primary varieties: native apps and hybrid apps.\n\n## Native mobile apps\n\n- Must be built using the native code that runs on mobile devices. In general, that means Java (Android) or Swift / Objective C (iOS)\n- Should adhere to the design and development guidelines for the intended platforms:\n - [iOS Guidelines](https://developer.apple.com/design/human-interface-guidelines/ios/overview/themes/)\n \n - [Android Guidelines](https://developer.android.com/design/index.html)\n \n\nAndroid and iOS are the dominant players in the mobile market, but you should check with your particular users to see what is most prevalent in your target market.\n\n## Hybrid mobile apps\n\n- Maintained as a single code base that is deployed to multiple different device types (namely iOS and Android)\n- Built using web-technologies (i.e. JavaScript)\n - low barrier to entry for web developers\n- Implemented differently depending on the framework:\n - some compile down to native components\n - others render all content in a web view (essentially a web page running inside of an app)\n\n\n\n# Comparing the two approaches\n\n## Native mobile apps\n\n- Guaranteed to look & feel like an app since it uses native components\n- Requires more specialized development expertise\n- Requires separate code bases for different operating systems\n - Longer development time\n - More expensive / more maintenance\n\n## Hybrid mobile apps\n\n- Reduces development time thanks to shared code base\n- Provides more technology options\n - Many different hybrid platforms / tools available\n- Allows for a consistent look on different platforms\n- Makes development easier by using web technologies, but it's also easier to make something that doesn't follow standard mobile patterns\n\n\n\n# So, which one should you use?\n\nOur recommendation for mobile applications is to take a hybrid approach. This will allow you to deploy multiple versions of your application (i.e. iOS and Android) from a single code base. We offer support for several different approaches to building hybrid apps (see our [Mobile Framework Introduction](/development/frameworks-mobile/intro) to learn about the technologies we support).\n\nIf you prefer to build a strictly native app and adhere to the Brightlayer UI standards, there are ways of doing this using [Material Design Components for Android](https://material.io/develop/android/) and [Material Design Components for iOS](https://material.io/develop/ios/).\n\n> **NOTE:** Brightlayer UI support for native mobile applications is limited - if you are planning to go this route, please [Contact us](/community/contactus).\n" - }, - "/development/environment": { - "title": "Environment Setup", - "text": "import { Divider } from '../../app/components';\n\n\n\n# Setting up Your Development Environment\n\nGetting started is often the most frustrating part of application development. Fortunately, many of the modern JavaScript frameworks have made great strides in providing tools to get you up and running as quickly as possible. Below, we walk through the basics of getting your system set up to develop.\n\n## Integrated Development Environment (IDE)\n\nThere are a bunch of different IDEs on the market, and in general you should be able to use any of these that you like and are comfortable with. If you don't have a personal preference, we recommend trying [Visual Studio Code](https://code.visualstudio.com) - it is quite excellent and comes with a variety of tools to make your development experience seamless. And it's free!\n\n## Git\n\nChances are, you probably want to keep your application in source control. Git is one of the big players in this space (it's also the backbone for BitBucket).\n\nYou may already have git installed. To check, run:\n\n```sh\ngit --version\n```\n\nin a command prompt. If you don't have git installed, you can download it from the [Git Website](http://git-scm.com/downloads).\n\nIf you are behind a proxy, you'll also need to set up the git proxies as well:\n\n```sh\ngit config --global http.proxy http://url.to.your.proxy:port\ngit config --global https.proxy http://url.to.your.proxy:port\n```\n\nThe proxy addresses may vary depending on your location. Consult your local IT department if you’re not sure.\n\n## Node\n\nThe majority of JavaScript frameworks (and Brightlayer UI resources) are available via the Node Package Manager (NPM). This package manager allows you to install a variety of third party tools, packages, and other dependencies that you need for your applications. To use NPM, you will need to install [NodeJS](https://nodejs.org/en/download/).\n\n## Yarn\n\nOur projects and example code are set up to be run using yarn, but if you prefer, you're welcome to use NPM in your projects instead. Instructions for installing yarn on various operating systems can be found on the [Yarn Website](https://yarnpkg.com/en/docs/install).\n\nTo check if you have yarn installed, run:\n\n```sh\nyarn -v\n```\n\nfrom a command prompt. If you are behind a proxy, you will also need to configure your proxy settings. It may be sufficient for you to set `HTTP_PROXY` and `HTTPS_PROXY` in your environment variables. However, you may need to also explicitly set proxy values for yarn:\n\n```sh\nyarn config set proxy http://url.to.your.proxy:port\nyarn config set https-proxy http://url.to.your.proxy:port\n```\n\nThe proxy addresses may vary depending on your location. Consult your local IT department if you’re not sure. Once you have configured the proxy, you should be able to install packages by using:\n\n```sh\nyarn add \n```\n\n> If you are installing packages globally using yarn, you will need to ensure that your PATH variable has an entry pointing to your global yarn install directory. This location will vary based on your operating system.\n\n\n\n# Hybrid App Development\n\nIf you are setting up for building a mobile app, there are some additional steps you will want to take to prepare. The following requirements are the basics. Depending on your selected [framework](/development/frameworks-mobile/intro), there will be other specific setup steps detailed in our Getting Started Guides.\n\n## Prerequisites\n\n### Hardware\n\nMobile development is resource-intensive, so you will need a development machine that is up to the task. Your machine should at least match the following minimum requirements:\n\n- a Mac (if you plan on building or testing iOS locally)\n- 16GB RAM or more (running multiple emulators can easily push you over 20GB)\n- Solid State Hard Drive (SSD)\n- 5/6 Gen Core i7 with Virtualization Technology or better\n\n### Software\n\nThere are a few software tools that you will need before you can get started:\n\n\n\n- [Android Studio](https://developer.android.com/studio/) (required for building for Android)\n \n- [xCode](https://developer.apple.com/xcode/) (Mac-only, required for building for iOS)\n" - }, - "/development/cli": { - "title": "Brightlayer UI CLI", - "text": "import { Divider, EmbeddedYouTubePlayer } from '../../app/components';\n\n\n\n# Brightlayer UI CLI\n\n\n\nThe Brightlayer UI CLI (Command-Line Interface) is a tool for quickly starting new projects using Brightlayer UI. It will create a skeleton project in your chosen framework and automatically integrate:\n\n- Material and Brightlayer UI component libraries\n- Brightlayer UI themes\n- Open Sans Typography package\n- Brightlayer UI colors package\n- Brightlayer UI code formatting and linting profiles (optional)\n\nWhen starting a new project, you will have the opportunity to select a template as your starting point, including a blank template, basic routing template, and a full authentication template.\n\n> These templates are available for [Angular](https://github.com/brightlayer-ui/angular-cli-templates/blob/master/README.md#angular-cli-templates), [React](https://github.com/brightlayer-ui/react-cli-templates/blob/master/README.md#react-cli-templates), [React-Native](https://github.com/brightlayer-ui/react-native-cli-templates/blob/master/README.md#react-native-cli-templates), and [Ionic](https://github.com/brightlayer-ui/angular-cli-templates/blob/master/README.md#angular-cli-templates).\n\nTo start a new project with the CLI:\n\n```sh\nnpx -p @brightlayer-ui/cli blui new\n```\n\nFor more detailed information and usage instructions, check out the [@brightlayer-ui/cli](https://www.npmjs.com/package/@brightlayer-ui/cli) package on NPM.\n\n## Supported Frameworks\n\nThe Brightlayer UI CLI works with all Brightlayer UI supported frameworks: Angular, React, Ionic, and React Native. For React and React Native projects, you will have the option to create your project in TypeScript or JavaScript.\n" - }, - "/development/frameworks-web/intro": { - "title": "Introduction", - "text": "import { Divider } from '../../../app/components';\n\n\n\n# Brightlayer UI Web Frameworks\n\nBrightlayer UI supports web application development using Angular and React. Both are open source JavaScript frameworks with large communities of support and both have open source component libraries implementing Material Design. The two are quite comparable and you would not go wrong by choosing either, but there are some notable differences outlined below.\n\n## Angular (with Angular Material)\n\n- A comprehensive framework, with a lot of built-in features and functionality\n- Written in TypeScript (superset of JavaScript with strong variable typing)\n- Structured way of organizing your entire application (if following the Angular CLI)\n- May be more accessible to developers with greater back-end or full-stack experience\n- Maintained by Google\n- Learn more on the [Angular website](https://angular.io/)\n\n## React (with Material UI)\n\n- A UI library for building custom Web Components / Applications\n- Can be combined with additional libraries (e.g. Redux) to be a more comprehensive framework\n- Virtual DOM allows for fewer re-renders (i.e., faster UI updates)\n- May be more accessible to developers with greater experience with JavaScript and front-end development\n- Maintained by Facebook\n- Learn more on the [React website](https://reactjs.org/)\n\n\n\n# Which framework should I use?\n\nChoosing a framework is entirely up to you. They each have their own pros and cons, so you'll need to decide what is best for your application. In general, if you have developers who are very familiar with a particular framework, it might be worthwhile to use that framework to avoid any unnecessary learning curves associated with a new one. If you don't have development resources yet, you will probably want to conduct a more in-depth analysis of the available frameworks to decide what is most appropriate for your application. Feel free to reach out to us for assistance if needed.\n\nIf you choose to use one of these frameworks, have a look at our Guides for using them with Brightlayer UI:\n\n- [Angular Guide](/development/frameworks-web/angular)\n- [React Guide](/development/frameworks-web/react)\n" - }, - "/development/frameworks-web/angular": { - "title": "Angular Guide", - "text": "import { Divider } from '../../../app/components';\n\n\n\n# Getting Started with Angular\n\nThe following instructions will guide you through starting a new Brightlayer UI project using Angular. Alternatively, you can also start your project by downloading one of our code samples from [Github](https://github.com/brightlayer-ui) (the Login or Navigation examples are good projects to start from).\n\n## Using the Brightlayer UI CLI\n\nThe fastest way to start a new Brightlayer UI project is to use the [Brightlayer UI CLI](/development/cli). The CLI will automatically create a starter project for you (using the [Angular CLI](http://cli.angular.io/)) with all of the necessary Brightlayer UI dependencies pre-configured. To start an Angular project:\n\n```sh\nnpx -p @brightlayer-ui/cli blui new angular\n```\n\nYou will be asked to provide a name for your project and whether or not you want to use the Brightlayer UI eslint and prettier configurations files.\n\nThe Brightlayer UI CLI will automatically include:\n\n- Angular Material Component Library ([@angular/material](https://www.npmjs.com/package/@angular/material))\n- Brightlayer UI Component Library ([@brightlayer-ui/angular-components](https://www.npmjs.com/package/@brightlayer-ui/angular-components))\n- Brightlayer UI Themes ([@brightlayer-ui/angular-themes](https://www.npmjs.com/package/@brightlayer-ui/angular-themes))\n- Brightlayer UI Icons ([@brightlayer-ui/icons](https://www.npmjs.com/package/@brightlayer-ui/icons))\n- Brightlayer UI Colors ([@brightlayer-ui/colors](https://www.npmjs.com/package/@brightlayer-ui/colors))\n- Open Sans web font ([@font-source/open-sans](https://www.npmjs.com/package/@fontsource/open-sans))\n- Brightlayer UI ESLint and Prettier configurations, if selected ([@brightlayer-ui/eslint-config](https://www.npmjs.com/package/@brightlayer-ui/eslint-config) / [@brightlayer-ui/prettier-config](https://www.npmjs.com/package/@brightlayer-ui/prettier-config))\n\nFor detailed usage instructions, refer to the [Brightlayer UI CLI documentation](https://www.npmjs.com/package/@brightlayer-ui/cli).\n\n## Using an Existing Project\n\nIf you have an existing project and would like to integrate Brightlayer UI, you can follow the manual integration instructions below. If you have not already started your project, we recommend that you scaffold your project with the Brightlayer UI CLI.\n\n\n\n# Manual Brightlayer UI Integration\n\nBefore taking the following steps, you'll want to make sure that you have an existing application. If you used the Brightlayer UI CLI to start your project, these steps have already been done for you automatically.\n\n## Including the Component Libraries\n\n### Angular Material\n\nAngular projects should make use of the [Angular Material](https://material.angular.io/) component library. Our Brightlayer UI themes are designed to work with these components.\n\n```sh\nnpm install --save @angular/material\n// or\nyarn add @angular/material\n```\n\nFor detailed documentation about the various components available in Angular Material, as well as sample code and API reference, refer to the [Angular Material Documentation](https://material.angular.io/components/).\n\n### Brightlayer UI Components\n\nAdditionally, we have a [supplemental library](https://github.com/brightlayer-ui/angular-component-library/tree/dev) of components designed specifically for Brightlayer UI applications. If you wish to use these components, you can install them by running:\n\n```sh\nnpm install --save @brightlayer-ui/angular-components\n// or\nyarn add @brightlayer-ui/angular-components\n```\n\n## Adding Brightlayer UI Themes\n\nBy default, your application will be themed with the Google Material theme. To use the [Brightlayer UI theme](https://www.npmjs.com/package/@brightlayer-ui/angular-themes), first install it:\n\n```sh\nnpm install --save @brightlayer-ui/angular-themes\n// or\nyarn add @brightlayer-ui/angular-themes\n```\n\nInstalling the theme package will automatically include the Open Sans web font package as well as the Brightlayer UI [colors](https://www.npmjs.com/package/@brightlayer-ui/colors) package. In order to use the Brightlayer UI themes and font (Open Sans), you will need to modify your angular.json file \"styles\" entries (there is one under \"build\" and one under \"test\") to include the Brightlayer UI themes and Open Sans reference:\n\n```json\n\"styles\": [\n \"src/styles.scss\",\n \"./node_modules/@brightlayer-ui/angular-themes/theme.scss\",\n \"./node_modules/@brightlayer-ui/angular-themes/open-sans.scss\",\n],\n```\n\n### Applying the Theme\n\nYou can apply the theme to your application by adding the proper class to your application's body element:\n\n```html\n// Default Theme\n\n\n// Dark Theme\n\n```\n\n> If you do not specify a theme class, your application will use the default Material theme.\n\nYou can access the fonts using mat-typography, e.g.:\n\n```html\n
\n

H1 Text

\n

H2 Text

\n

Paragraph text

\n
Bold body copy
\n
\n```\n\nYou can access theme colors as well, e.g.:\n\n```html\nMy App\n```\n\nMore details about applying themes in your application can be found in [Theming your Angular Material app](https://material.angular.io/guide/theming).\n\n\n\n# Additional Information\n\n## Code Formatting / Style\n\nBrightlayer UI provides packages for code standards and style using ESLint and Prettier. These packages are used internally by the Brightlayer UI team, but they can also be used in your projects. You can find instructions for adding these packages to your project on [GitHub](https://github.com/brightlayer-ui/code-standards).\n\n## Browser Support\n\nBrightlayer UI supports the same browsers as Angular and Angular Material. For specifics, please check out their support pages:\n\n- [Angular CLI](https://angular.io/guide/browser-support)\n- [Angular Material](https://github.com/angular/material2#browser-and-screen-reader-support)\n\n> With the end-of-life of Internet Explorer 11, Brightlayer UI will no longer be supporting IE11 as of 2021.\n\n## License Information\n\n[Angular](https://github.com/angular/angular/blob/master/LICENSE) and [Angular Material](https://github.com/angular/material2/blob/master/LICENSE) are both available under the MIT License.\n" - }, - "/development/frameworks-web/react": { - "title": "React Guide", - "text": "import { Divider } from '../../../app/components';\n\n\n\n# Getting Started with React\n\nThe following instructions will guide you through starting a new Brightlayer UI project using React. Alternatively, you can also start your project by downloading one of our code samples from [Github](https://github.com/brightlayer-ui) (the Login or Navigation examples are good projects to start from).\n\n## Using the Brightlayer UI CLI\n\nThe fastest way to start a new Brightlayer UI project is to use the [Brightlayer UI CLI](/development/cli). The CLI will automatically create a starter project for you (using [Create React App](https://github.com/facebookincubator/create-react-app)) with all of the necessary Brightlayer UI dependencies pre-configured. To start a React project:\n\n```sh\nnpx -p @brightlayer-ui/cli blui new react\n```\n\nYou will be asked to provide a name for your project, choose whether you would like to use TypeScript or JavaScript, and for TypeScript projects, you'll be asked if you want to use the Brightlayer UI eslint and prettier configurations files.\n\nThe Brightlayer UI CLI will automatically include:\n\n- Material-UI Component Library and Icons ([@material-ui/core](https://www.npmjs.com/package/@material-ui/core) / [@material-ui/icons](https://www.npmjs.com/package/@material-ui/icons))\n- Brightlayer UI Component Library ([@brightlayer-ui/react-components](https://www.npmjs.com/package/@brightlayer-ui/react-components))\n- Brightlayer UI Themes ([@brightlayer-ui/react-themes](https://www.npmjs.com/package/@brightlayer-ui/react-themes))\n- Brightlayer UI Icons ([@brightlayer-ui/icons-mui](https://www.npmjs.com/package/@brightlayer-ui/icons-mui))\n- Brightlayer UI Colors ([@brightlayer-ui/colors](https://www.npmjs.com/package/@brightlayer-ui/colors))\n- Open Sans web font ([@fontsource/open-sans](https://www.npmjs.com/package/@fontsource/open-sans))\n- Brightlayer UI ESLint and Prettier configurations, if selected ([@brightlayer-ui/eslint-config](https://www.npmjs.com/package/@brightlayer-ui/eslint-config) / [@brightlayer-ui/prettier-config](https://www.npmjs.com/package/@brightlayer-ui/prettier-config))\n- Enzyme testing library ([enzyme](https://www.npmjs.com/package/enzyme) / [enzyme-adapter-react-16](https://www.npmjs.com/package/enzyme-adapter-react-16))\n\nFor detailed usage instructions, refer to the [Brightlayer UI CLI documentation](https://www.npmjs.com/package/@brightlayer-ui/cli).\n\n## Using an Existing Project\n\nIf you have an existing project and would like to integrate Brightlayer UI, you can follow the manual integration instructions below. If you have not already started your project, we recommend that you scaffold your project with the Brightlayer UI CLI.\n\n\n\n# Manual Brightlayer UI Integration\n\nBefore taking the following steps, you'll want to make sure that you have an existing application. If you used the Brightlayer UI CLI to start your project, these steps have already been done for you automatically.\n\n## Including the Component Libraries\n\n### Material UI\n\nReact projects should make use of the [Material-UI](https://mui.com/) component library. Our Brightlayer UI themes are designed to work with these components. You'll also want to install the icons.\n\n```sh\nnpm install --save @material-ui/core @material-ui/icons\n// or\nyarn add @material-ui/core @material-ui/icons\n```\n\nFor detailed documentation about the various components available in Material UI, as well as sample code and API reference, refer to the [Material UI Documentation](https://mui.com/).\n\n### Brightlayer UI Components\n\nAdditionally, we have a [supplemental library](https://github.com/brightlayer-ui/react-component-library/tree/dev) of components designed specifically for Brightlayer UI applications. If you wish to use these components, you can install them by running:\n\n```sh\nnpm install --save @brightlayer-ui/react-components\n// or\nyarn add @brightlayer-ui/react-components\n```\n\n## Adding Brightlayer UI Themes\n\nBy default, your application will be themed with the Google Material theme. To use the [Brightlayer UI theme](https://www.npmjs.com/package/@brightlayer-ui/react-themes), first install it:\n\n```sh\nnpm install --save @brightlayer-ui/react-themes\n// or\nyarn add @brightlayer-ui/react-themes\n```\n\nInstalling the theme package will automatically include the Open Sans web font package as well as the Brightlayer UI [colors](https://www.npmjs.com/package/@brightlayer-ui/colors) package.\n\n### Applying the Theme\n\nImport the theme files, Material UI theme provider, and **Open Sans** font into your application, e.g. in App.js:\n\n```tsx\nimport { ThemeProvider, createTheme } from '@material-ui/core/styles';\nimport CssBaseline from '@material-ui/core/CssBaseline';\nimport * as BluiThemes from '@brightlayer-ui/react-themes';\nimport '@brightlayer-ui/react-themes/open-sans';\n```\n\nTo add the theme to your whole application, you would simply add a `` around your top-level component and pass it the theme you want to use, e.g.:\n\n```tsx\n\n \n \n\n```\n\nYou can read about [React Theming](https://mui.com/customization/theming/) to learn more.\n\n\n\n# Additional Information\n\n## Code Formatting / Style\n\nBrightlayer UI provides packages for code standards and style using ESLint and Prettier. These packages are used internally by the Brightlayer UI team, but they can also be used in your projects. You can find instructions for adding these packages to your project on [GitHub](https://github.com/brightlayer-ui/code-standards).\n\n> NOTE: the ESLint package is only available for TypeScript projects.\n\n## Browser Support\n\nBrightlayer UI supports the same browsers as React and Material UI. For specifics, please check out their support pages:\n\n- [React](https://facebook.github.io/create-react-app/docs/supported-browsers-features)\n- [Material UI](https://mui.com/getting-started/supported-platforms/)\n\n> With the end-of-life of Internet Explorer 11, Brightlayer UI will no longer be supporting IE11 as of 2021.\n\n## License Information\n\n[React](https://github.com/facebook/react/blob/master/LICENSE) and [Material UI](https://github.com/mui-org/material-ui/blob/master/LICENSE) are both available under the MIT License.\n" - }, - "/development/frameworks-mobile/intro": { - "title": "Introduction", - "text": "import { Divider } from '../../../app/components';\n\n\n\n# Brightlayer UI Mobile (Hybrid) Frameworks\n\nBrightlayer UI supports hybrid mobile application development using Ionic and React Native. Both are capable frameworks, but there are some significant differences between them, outlined below.\n\n## Ionic\n\n- Built with web technology (framework agnostic)\n - Brightlayer UI only supports Ionic with Angular\n- Runs in a WebView\n- Is the fastest way to have a mobile app (if you already have a web app)\n- Requires your web app to be optimized for mobile\n- Has lots of available plugins to access hardware / native functionality\n- Learn more on the [Ionic Website](https://ionicframework.com/)\n\n## React Native\n\n- Renders native UI elements (not a WebView)\n- Can re-use application logic code (React)\n- Requires writing new code for UI (learning curve)\n- Does not use CSS for styling (learning curve)\n- Provides access to hardware functionality through various plugins / libraries\n- Has a large community of support\n- Learn more on the [React Native Website](https://facebook.github.io/react-native/)\n\n\n\n# Which framework should I use?\n\nThis is entirely up to you. If time is your biggest concern, Ionic may be the best approach since it simply wraps an existing application and requires no additional code.\n\nHowever, if you want more control over the look and performance of your application, it may be better to use React Native. If you have a React application, you'd be able to re-use most of your application logic, but you have to write custom / dedicated UI views for mobile.\n\nIn general, if your development team is more familiar with Angular, we recommended using Ionic. If your team is more familiar with React, you won't go wrong by choosing React Native.\n\n\n\n# Building your application\n\nFollow the guidelines for app development using your chosen framework:\n\n- [Ionic](/development/frameworks-mobile/ionic)\n \n- [React Native](/development/frameworks-mobile/react-native)\n\nThese guides will walk you through the process of developing your application and ultimately creating a final binary to distribute (either to your testers or your final customers).\n\n## Deploying your application\n\nOnce you have built your application into a distributable binary, there are two options for distributing it.\n\n### Visual Studio App Center (formerly HockeyApp)\n\nVisual Studio App Center gives you a way to test your app with users before you are ready for final distribution. This service allows you to upload app binaries and create lists of people with whom to share them. These people will be notified via email when new versions of the app are available, and they will be prompted to download and install them directly onto their device. You will need to request access to Visual Studio App Center from IT.\n\n### App Store / Play Store\n\nFor final distribution of your application, you will need to utilize App Store Connect and / or Google Play Console.\n" - }, - "/development/frameworks-mobile/ionic": { - "title": "Ionic Guide", - "text": "import { Divider } from '../../../app/components';\n\n\n\n# Getting Started with Ionic\n\nThe following instructions will guide you through setting up your computer for Ionic development and starting a new Brightlayer UI project. Alternatively, you can start your project by downloading one of our code samples from [Github](https://github.com/brightlayer-ui) (the Login example is a good project to start from) once you configure your environment.\n\n\n\n# Setting Up Your Environment\n\nYou'll need to start by following the general instructions for setting up your development environment for mobile, found in our [Environment Guide](/development/environment). Since Ionic takes advantage of web technologies, you won't need any specific additional tools beyond what you would use for web development.\n\nIonic uses Cordova behind the scenes but offers some additional convenience tools on top. If you would prefer to write a pure Cordova application, you can read instructions in the [Apache Cordova Getting Started Guide](/development/frameworks-mobile/cordova).\n\n## Installing Ionic\n\nThe most up-to-date instructions for setting up Ionic can be found on the [Ionic Website](https://ionicframework.com/docs/installation/cli).\n\nTo get started, run:\n\n```sh\nnpm install -g @ionic/cli cordova\n// or\nyarn global add @ionic/cli cordova\n```\n\nYou'll also want to install some additional dependencies:\n\n```sh\nnpm install -g native-run gradle cordova-res\n// or\nyarn global add native-run gradle cordova-res\n```\n\nMake sure that you have a `GRADLE_HOME` entry in your PATH variable pointing to your gradle binary directory.\n\n\n\n# Creating Your Application\n\n## Using the Brightlayer UI CLI\n\nThe fastest way to start a new Brightlayer UI project is to use the [Brightlayer UI CLI](/development/cli). The CLI will automatically create a starter project for you (using either the [Ionic CLI](https://ionicframework.com/docs/cli)) with all of the necessary Brightlayer UI dependencies pre-configured. To start an Ionic project:\n\n```sh\nnpx -p @brightlayer-ui/cli blui new ionic\n```\n\nYou will be asked to provide a name for your project and whether or not you want to use the Brightlayer UI eslint and prettier configurations files.\n\nThe Brightlayer UI CLI will automatically include:\n\n- Angular Material Component Library ([@angular/material](https://www.npmjs.com/package/@angular/material))\n- Brightlayer UI Component Library ([@brightlayer-ui/angular-components](https://www.npmjs.com/package/@brightlayer-ui/angular-components))\n- Brightlayer UI Themes ([@brightlayer-ui/angular-themes](https://www.npmjs.com/package/@brightlayer-ui/angular-themes))\n- Brightlayer UI Icons ([@brightlayer-ui/icons](https://www.npmjs.com/package/@brightlayer-ui/icons))\n- Brightlayer UI Colors ([@brightlayer-ui/colors](https://www.npmjs.com/package/@brightlayer-ui/colors))\n- Brightlayer UI ESLint and Prettier configurations, if selected ([@brightlayer-ui/eslint-config](https://www.npmjs.com/package/@brightlayer-ui/eslint-config) / [@brightlayer-ui/prettier-config](https://www.npmjs.com/package/@brightlayer-ui/prettier-config))\n\nFor detailed usage instructions, refer to the [Brightlayer UI CLI documentation](https://www.npmjs.com/package/@brightlayer-ui/cli).\n\n## Using an Existing Project\n\nIf you have an existing project and would like to integrate Brightlayer UI, you can follow the manual integration instructions below. If you have not already started your project, we recommend that you scaffold your project with the Brightlayer UI CLI.\n\n\n\n# Manual Brightlayer UI Integration\n\nPlease refer to the Manual Brightlayer UI Integration steps for [Angular](/development/frameworks-web/angular).\n\n\n\n# Writing an Ionic Application\n\nDeveloping an Ionic project with Angular is virtually identical to writing a normal web application using Angular.\n\n## Running your application\n\n`ionic serve` will run the application in a web browser on localhost:8100. In order to see the application run on a mobile device, you will need to add platforms.\n\n```sh\nionic cordova platform add android\nionic cordova platform add ios\n```\n\n> **NOTE**: You will only be able to add the ios platform if you are developing on a Mac.\n\nWhen the ionic cordova platform add completes, your project will have all the required native plugins installed along with several configuration files specific to your project.\n\n## Building your application\n\nThe project is now ready to build and you can run:\n\n```sh\nionic cordova build android\nionic cordova build ios\n```\n\nOnce complete, you can run your project in a device simulator (or connected device) by running:\n\n```sh\nionic cordova run android\nionic cordova run ios\n```\n\n\n\n# Additional Information\n\n## Code Formatting / Style\n\nBrightlayer UI provides packages for code standards and style using ESLint and Prettier. These packages are used internally by the Brightlayer UI team, but they can also be used in your projects. You can find instructions for adding these packages to your project on [GitHub](https://github.com/brightlayer-ui/code-standards).\n\n> **NOTE**: Depending on your version of Xcode, you may need to specify additional build flags to run on ios: `ionic cordova run ios --buildFlag=\"-UseModernBuildSystem=0\"`.\n\n## License Information\n\n[Ionic](https://ionicframework.com/docs/intro#license) is available under the MIT License.\n" - }, - "/development/frameworks-mobile/react-native": { - "title": "React Native Guide", - "text": "import { Divider } from '../../../app/components';\n\n\n\n# Getting Started with React Native\n\nThe following instructions will guide you through setting up your computer for React Native development and starting a new Brightlayer UI project. Alternatively, you can start your project by downloading one of our code samples from [GitHub](https://github.com/brightlayer-ui) (the Login example is a good project to start from) once you configure your environment.\n\n\n\n# Setting Up Your Environment\n\nYou'll need to start by following the general instructions for setting up your development environment for mobile found in our [Environment Guide](/development/environment). In addition to the base requirements, you may also want the following:\n\n- [Expo Client](https://expo.io/learn) (project creation / setup tool for React Native apps)(optional, for Expo projects)\n\n\n\n# Creating Your Application\n\n## Using the Brightlayer UI CLI\n\nThe fastest way to start a new Brightlayer UI project is to use the [Brightlayer UI CLI](/development/cli). The CLI will automatically create a starter project for you (using either the [React Native Community CLI](https://github.com/react-native-community/cli) (recommended) or [Expo CLI](https://docs.expo.io/)) with all of the necessary Brightlayer UI dependencies pre-configured. To start a React Native project:\n\n```sh\nnpx -p @brightlayer-ui/cli blui new react-native\n```\n\nYou will be asked to provide a name for your project, select a CLI to use, choose whether you would like to use TypeScript or JavaScript, and for TypeScript projects, you'll be asked if you want to use the Brightlayer UI eslint and prettier configurations files.\n\nThe Brightlayer UI CLI will automatically include:\n\n- React Native Paper Component Library ([react-native-paper](https://www.npmjs.com/package/react-native-paper))\n- Brightlayer UI Component Library ([@brightlayer-ui/react-native-components](https://www.npmjs.com/package/@brightlayer-ui/react-native-components))\n- Brightlayer UI Themes ([@brightlayer-ui/react-native-themes](https://www.npmjs.com/package/@brightlayer-ui/react-native-themes))\n- Material Icons ([react-native-vector-icons](https://www.npmjs.com/package/react-native-vector-icons))\n- Brightlayer UI Icons ([@brightlayer-ui/icons-svg](https://www.npmjs.com/package/@brightlayer-ui/icons-svg))\n- Brightlayer UI Colors ([@brightlayer-ui/colors](https://www.npmjs.com/package/@brightlayer-ui/colors))\n- Open Sans font\n- Brightlayer UI ESLint and Prettier configurations, if selected ([@brightlayer-ui/eslint-config](https://www.npmjs.com/package/@brightlayer-ui/eslint-config) / [@brightlayer-ui/prettier-config](https://www.npmjs.com/package/@brightlayer-ui/prettier-config))\n- Testing libraries ([jest](https://www.npmjs.com/package/jest) / [react-test-renderer](https://www.npmjs.com/package/react-test-renderer))\n\nFor detailed usage instructions, refer to the [Brightlayer UI CLI documentation](https://www.npmjs.com/package/@brightlayer-ui/cli).\n\n## Using an Existing Project\n\nIf you have an existing project and would like to integrate Brightlayer UI, you can follow the manual integration instructions below. If you have not already started your project, we recommend that you scaffold your project with the Brightlayer UI CLI.\n\n\n\n# Manual Brightlayer UI Integration\n\nBefore taking the following steps, you'll want to make sure that you have an existing application. If you used the Brightlayer UI CLI to start your project, these steps have already been done for you automatically.\n\n## Including the Component Libraries\n\n### Material Components\n\nReact Native projects should make use of the [React-Native-Paper](https://callstack.github.io/react-native-paper/index.html) component library. Our Brightlayer UI themes are designed to work with these components. You'll also want to install [react-native-vector-icons](https://www.npmjs.com/package/react-native-vector-icons) to access the Material icons.\n\n```sh\nnpm install --save react-native-paper react-native-vector-icons\n// or\nyarn add react-native-paper react-native-vector-icons\n```\n\n### Brightlayer UI Components\n\nWe have a [supplemental library](https://github.com/brightlayer-ui/react-native-component-library/tree/dev) of components designed specifically for Brightlayer UI applications. If you wish to use these components, you can install them by running:\n\n```sh\nnpm install --save @brightlayer-ui/react-components\n// or\nyarn add @brightlayer-ui/react-native-components\n```\n\n## Adding Brightlayer UI Themes\n\nIf you are using the recommended component libraries, your application will be themed with the Google Material theme by default. To use the Brightlayer UI theme, first install it:\n\n```sh\nnpm install --save @brightlayer-ui/react-native-themes\n// or\nyarn add @brightlayer-ui/react-native-themes\n```\n\n> Using the Brightlayer UI React Native theme **requires** that you add the Open Sans font to your application. You can learn how to do this by reading the instructions for [Vanilla React Native](https://medium.com/react-native-training/react-native-custom-fonts-ccc9aacf9e5e) or [Expo](https://docs.expo.io/guides/using-custom-fonts/). You can find the fonts [here](https://github.com/brightlayer-ui/cli-helpers/tree/master/fonts).\n\n> When using Expo, you will need to specify the name for each font weight you load using the format OpenSans-``, e.g., OpenSans-SemiBold. Refer to one of our React Native demos for reference.\n\n## Applying the Theme\n\nImport the theme files and React Native Paper theme provider into your application, e.g. in App.js:\n\n```tsx\nimport { Provider as ThemeProvider } from 'react-native-paper';\nimport * as BluiThemes from '@brightlayer-ui/react-native-themes';\n...\n\n \n\n```\n\nFor detailed information about theming, refer to the react-native-paper [theming guide](https://callstack.github.io/react-native-paper/theming.html).\n\n> NOTE: This theme only applies to the components in the react-native-paper and @brightlayer-ui/react-native-components package. It will not theme the components from other third party libraries. If you wish to use our theme to style your own components, refer to the react-native-paper [theming guide](https://callstack.github.io/react-native-paper/theming.html#using-the-theme-in-your-own-components).\n\n### Avoiding Repeated Styles\n\nTo avoid adding repeatedly adding inline styles to standard components, you can define your own component that applies the styles and use that throughout your application, e.g.:\n\n```tsx\n// MyText.js\nexport default MyText = ({style, children, ...other}) => (\n \n {children}\n \n);\n\n// OtherFile.js\nimport Text from 'path/to/MyText.js';\n...\nThemed Text Object\n```\n\n\n\n# Writing a React Native Application\n\nIf you are familiar with React development, React Native will be relatively simple to understand. The application logic remains the same, while the UI requires a little adjustment. Rather than typical HTML elements, React Native UIs are built with a special library of [Components](https://facebook.github.io/react-native/docs/components-and-apis), including ``, ``, ``, etc. React Native layouts are built exclusively using FlexBox.\n\n## Running your application\n\nAfter you've created your application with a CLI, it can be run from the command line:\n\n```sh\ncd YourAppName\n\n// RNC CLI\nnpm run \n// or\nyarn \n\n// Expo CLI (follow the on-screen instructions or use the web interface to open the app on a device)\nnpm run start\n// or\nyarn start\n```\n\nWhen you make changes to the source code, the application will automatically rebuild and update on the device.\n\n> To run on an Android emulator, the emulator must already be running or you will see an error message, \"No connected devices found.\"\n\n> On a Mac, you may be prompted to install watchman (`brew install watchman`) or update a few settings to run the application.\n\n## Ejecting from Expo\n\nIf you use Expo to create your project, there will come a time in your development when it becomes necessary to eject from Expo. The most common reason for this are for adding native libraries to your project.\n\nTo eject your app, run the following and follow the on-screen prompts (WARNING: Ejecting from Expo cannot be undone. Make sure you know what you are doing and have your project in source control before proceeding):\n\n```sh\nnpm run eject\n// or\nyarn eject\n```\n\n> - At the first prompt, select 'Bare (first option)'\n> - At the second prompt, accept the default value (press Enter). Changing this can cause issues running your project.\n> - At the third prompt, enter a name for the solution folder.\n\nFor more information, read about [ejecting from Expo](https://docs.expo.io/workflow/customizing/).\n\n## Final Build\n\nAfter ejecting from Expo, the process for creating a build is the same as for a standard native application. You can open the project folders in xCode (/ios/projectName.xcodeproj) or Android Studio (/android) and perform builds from the IDE. There are also npm scripts added to your package.json file during ejection that will allow you to perform builds from the command line. Depending on the version of React Native you are using, you may have to [manually bundle your JS code](https://stackoverflow.com/questions/44446523/unable-to-load-script-from-assets-index-android-bundle-on-windows) for Android.\n\n\n\n# Additional Information\n\n## RNC CLI vs. Expo CLI\n\nThere are two popular approaches to starting a new React Native project. The first (recommended) is to use the [React Native Community CLI](https://github.com/react-native-community/cli) and the second is to use the [Expo CLI](https://docs.expo.io/workflow/expo-cli/). The Expo CLI is nice for spinning up quick projects and demos, but to use certain libraries/plugins you will need to eject to vanilla React Native. For this reason, we recommend most production applications start with the RNC CLI instead to avoid the complications of ejecting.\n\n> **NOTE:** Brightlayer UI examples are written using the Expo CLI. The primary reason for this is because it provides the ability to share live-running code examples via [Snack](https://snack.expo.io/).\n\n## Code Formatting / Style\n\nBrightlayer UI provides packages for code standards and style using ESLint and Prettier. These packages are used internally by the Brightlayer UI team, but they can also be used in your projects. You can find instructions for adding these packages to your project on [GitHub](https://github.com/brightlayer-ui/code-standards).\n\n> NOTE: the ESLint package is only available for TypeScript projects.\n\n## Component recommendations\n\nThere are a lot of resources and components available on the market to help speed up your development and improve reusability. React Native also comes with a built-in component library. We recommend the following:\n\n- Navigation\n - [React Navigation](https://reactnavigation.org/) (JS-only implementation)\n - [React Native Navigation](https://wix.github.io/react-native-navigation/#/) (native implementation)\n- Component Libraries\n - [React Native Built-in Components](https://facebook.github.io/react-native/docs/components-and-apis.html)\n - [React Native Paper](https://callstack.github.io/react-native-paper/)\n - [React Native Elements](https://react-native-training.github.io/react-native-elements/)\n\n## License Information\n\n[React Native](https://github.com/facebook/react-native/blob/master/LICENSE) is available under the MIT License.\n" - }, - "/development/testing": { - "title": "Testing", - "text": "import { DemoCard, ImageGrid, MaterialDesignDescription, Divider } from '../../app/components';\n\n# Testing Your Brightlayer UI Applications\n\n\n\nTesting is a critical component of successfully building and releasing an application. Despite the value and importance of testing, it is common for teams to overlook or neglect it. Testing should be considered from the very beginning of development, not as an afterthought once development is complete. In general, every time you write a new piece of code or update existing code, you should also write a test that verifies that your code is correct.\n\nThere are many [varieties of tests](https://www.atlassian.com/continuous-delivery/software-testing/types-of-software-testing), each with their own intended purpose. The most common types of tests are:\n\n- **Unit Tests**: verify individual methods, functions, or components.\n- **Integration Tests**: verify that different modules or services in your application work together.\n- **Functional Tests**: verify the output of certain actions based on business requirements.\n- **End-to-end (E2E) Tests**: verify that user behaviors / workflows function as expected.\n- **Acceptance Tests**: verify that the entire system meets the business requirements.\n- **Performance Tests**: verify that the system behaves correctly under heavy load.\n- **Smoke Tests: quick**: basic checks of the major features of the application.\n\nThis document focuses mainly on Unit Tests and E2E tests, as they are the easiest to automate.\n\n\n\n# Unit Tests\n\nUnit tests target the smallest pieces of your application (such as verifying inputs and outputs of a class method or function). These will likely make up the bulk of your tests because they are quick to write, easy to automate, and can help you achieve significant code coverage.\n\n> Code Coverage measures the percentage of your code that is verified by your tests.\n\nA unit test shouldn't have any external dependencies, such as other methods or APIs. By keeping unit tests isolated in this manner, it's easy to identify the cause of a failing test and implement a fix quickly. When you start combining features and methods together, you move into the realm of _integration testing_.\n\n## When to Write\n\nAs long as you are writing tests and achieving acceptable levels of coverage, the _when_ is not as important.\n\nSome teams elect to follow a Test-Driven Development (TDD) methodology, where unit tests are written prior to any code. In this situation the tests actually define the desired implementation of the application and the code is written to satisfy the tests.\n\nBehavior-Driven Development (BDD) is similar to TDD in that test cases are written prior to writing any applications code. However, these test cases focus more on the desired behavior (inputs and outputs) of the application, and less on the actual implementation. These are usually written in plain language rather than code.\n\nThe most important thing to keep in mind about tests is that they should provide confidence that the code and design are working as intended without issues in any scenario. For most teams, it's fine to write tests after features and functions are developed, so long as you write quality tests and achieve good coverage.\n\n## How to Write\n\nWhen unit testing components, the most effective tests are based on what is actually rendered on the screen rather than the internal implementation logic. The test should consider the application from the user's perspective and test things the user views and interacts with.\n\nFor example, consider testing an Open Button that should open a modal dialog when clicked. Your test should check that a button with the _Open_ label is rendered on the screen, and when it is clicked, the dialog is rendered on the screen with the correct content. You may be tempted to identify the button by a class or id, or test that a particular function is called when the button is pressed - these tests are not as effective because they are more likely to break if the implementation of the component changes, even though the end behavior is the same.\n\n- Test what the user sees (i.e., rendered output) and what the user can do  (i.e., interactions).\n- If there is visual change after an interaction, test for it.\n- If there is a value returned after an action, test for it.\n\n## Testing Frameworks\n\nAngular, React, and React Native all come with built-in unit testing frameworks. Ionic can be unit tested using the same tools you would use for a standard Angular application.\n\n### Angular\n\nThe Angular CLI comes pre-configured with [Jasmine](https://jasmine.github.io/2.0/introduction) and [Karma](https://karma-runner.github.io/latest/index.html) for unit testing. When you create a new project, sample tests are created in your project for you (test files are identified by the `.spec.ts` file extension). You can execute the tests by running the following in your terminal:\n\n```sh\ncd your/project/root\nng test\n```\n\nThis will build your app and launch the browser with the test runner.\n\n### React\n\nThe Create React App CLI is pre-configured with the [Jest](https://github.com/facebook/jest) testing framework. When creating a new project, a sample test is created in your project for you (test files are identified by the `.test.js` or `test.ts` file extension). You can execute the tests by running the following in your terminal:\n\n```sh\ncd your/project/root\nnpm run test\n// or\nyarn test\n```\n\nThis will run your tests and show the pass / fail output in the terminal.\n\nThere are additional test utilities that complement Jest well. [Create React App](https://facebook.github.io/create-react-app/docs/running-tests) provides access to [React Testing Library](https://www.npmjs.com/package/@testing-library/react) through the `react-dom` dependency. The Brightlayer UI team has also made use of [Enzyme](https://airbnb.io/enzyme/), a testing framework created by AirBnB, and [Test Renderer](https://reactjs.org/docs/test-renderer.html).\n\n### React Native\n\nLike React, the React Native CLI also bundles Jest into your application. Most of the testing strategies and libraries can be shared between the two frameworks. You can also consider additional libraries like [React Native Testing Library](https://www.npmjs.com/package/@testing-library/react-native).\n\n### Ionic\n\nWhen creating an Ionic project with Angular, the Angular CLI is used to generate the underlying project, so you have access to all the same testing tools as you would with a regular Angular project.\n\n\n\n# End-to-End Testing\n\nEnd-to-end tests at a step above unit tests, both in terms of complexity and what they test. They focus primarily on the flow of the application, making sure that a user's journey through the application has the expected outcomes. These tests can generally be categorized as:\n\n- **Acceptance Tests**: verify that various features and flows meet the customer expectations.\n- **Regression Tests**: verify that existing functionality is not broken when new features are added.\n\nThey should cover user stories that span multiple components and views, such as signing up for an accounts, logging in and out of the application, updating a profile, etc. These tests are not concerned with the underlying state or implementation of the application - just the end results.\n\nEnd-to-end tests usually run in a browser against a live system (in the case of web, using a test runner that automates the browser). Automated E2E tests can take a long time to run because of all of the different pieces involved and the scope of the tests. You should try to optimize your testing pipeline to run tests in parallel to finish faster.\n\nFunctional tests alone will not give you enough test coverage to avoid regressions. Unit tests aim to provide code coverage depth, while functional tests provide coverage over the breadth of user test scenarios.\n\n## How to Write\n\nEnd-to-end tests rely on the ability to find elements on the screen and interact with them in an automated way. This means that you need a reliable mechanism for selecting elements. Depending on your testing framework, there are different ways to select elements, including:\n\n- **CSS Selectors**: find elements by using CSS classes or rules (e.g., `.your-class-name`)\n- **Element Selectors**: find elements inside the elements (e.g., `#\\@\\@blui-drawerlayout-content > div > header > div > button`)\n- **xPath Selectors**: find selector within xPath (e.g., `//*[@id=\"@@blui-drawerlayout-content\"]/div/header/div/button`)\n- **ID Selectors**: find attribute id within elements (e.g., `#login-button`)\n\n> You can read more about different selector strategies on [browserstack](https://www.browserstack.com/guide/css-selectors-in-selenium) and [software testing help](https://www.guru99.com/find-element-selenium.html).\n\nEach of these methods has their own advantages and disadvantages. A common pain point in E2E test automation is that modern Javascript platforms are constantly changing, particularly in the open source community. Many of these frameworks automatically (and dynamically) generate IDs and classes for components resulting in a constantly moving target for automation tooling. Identifying elements by these values (i.e., using IDs, CSS, or xPath locators _without_ property attributes) makes your tests brittle because they are subject to change any time a new version comes out (or even any time the page is reloaded).\n\nOne way to combat this in your own applications is to use dedicated attributes for testing (e.g., `test-id` or `dev-id`). By adding this test-specific attribute to the element, identifying the correct underlying component should be safer. Because this attribute is test-specific and the application logic does not use it, it will be less likely to change throughout the product lifecycle. Combining this approach with other selectors is a common and reliable approach for element identification.\n\n```html\n\n\n\n\nWebElement click = driver.findElement(By.id(\"login-button\"));\n```\n\n## Testing Frameworks\n\nThere are many tools available for configuring automated E2E tests. Some of the more popular tools include:\n\n- [Selenium](https://www.selenium.dev/documentation/en/)\n- [Cypress](https://docs.cypress.io/guides/overview/why-cypress.html#In-a-nutshell)\n- [WebDriverIO](https://webdriver.io/docs/gettingstarted.html)\n\n### Selenium\n\nSelenium is a popular automation testing suite which can be used to automate the desktop and mobile web browser interactions. You can write test code in any of the languages supported by Selenium.\n\nSelenium test suite has several test frameworks available and each one can be customized to your project needs.\n\nFor more information, check out the browserstack [selenium guide](https://www.browserstack.com/guide/selenium-framework) or the official [selenium documentation](https://github.com/SeleniumHQ/selenium).\n\nThere are also a number of [Selenium tutorials](https://www.guru99.com/selenium-tutorial.html) available online to help you get started.\n\n### Cypress\n\nCypress is a popular open source testing framework that boasts support for any modern JavaScript framework. It works well for E2E tests in both Angular and React applications and is easier to use than some of the more traditional tools, such as Selenium.\n\nFor a more detailed write-up on Cypress, check out the official [Cypress Documentation](https://docs.cypress.io/guides/getting-started/installing-cypress.html#System-requirements).\n\n### WebDriverIO\n\nWebdriverIO is a popular Javascript based test automation framework built on top of node.js. It is an open-source project developed for the automation testing community. WebdriverIO is extendible, compatible and feature-rich.\n\nFor more information, check out the official [Webdriver.io documentation](https://webdriver.io/) and their [getting started guide](https://webdriver.io/docs/gettingstarted.html).\n\n\n" - }, - "/design/intro": { - "title": "Introduction", - "text": "import { Divider, LinkGrid } from '../../app/components';\nimport { patternLinks } from '../../__configuration__/design';\n\n\n\n# Designing with Brightlayer UI\n\nUsing the Brightlayer UI design system as a designer can greatly improve your efficiency and the quality of your products. Brightlayer UI has many patterns and guidelines (color usage, typography, iconography, etc.) to address the most common elements and interactions that you might encounter when designing a product. By following these recommendations and using pre-defined resources from Brightlayer UI, your time is free to focus on the elements that make your project unique. In general, we recommend trying to use Brightlayer UI for 80% of your product's needs.\n\n## Environment\n\nWe host and maintain all [our design assets](/resources/designer) through Figma. Figma is a powerful prototyping tool that facilitates collaboration and sharing of design assets between teams. It can be used on the web, and they also provide a desktop app for Mac and Windows. In order to use Figma, you will need to [sign up](https://www.figma.com/) for an account.\n\n## Guidelines\n\nBrightlayer UI has design guidelines that serve as the foundation for the design system. These are intentional design choices we made to shape the Brightlayer UI brand — what Brightlayer UI applications should look like and how users should interact with them.\n\n\n\n\n\n# General Guidance\n\nThe best designs generally start with mobile first, and that's what we recommend as well when working with the Brightlayer UI design system. It's much easier to scale designs up than to scale them down. We also strongly encourage you to perform extensive user research to truly understand your users and their needs, skills, preferences, and tendencies.\n\n## Web Applications\n\nKeep the interface simple - avoid unnecessary elements and ensure the language used for labels and messaging is clear.\n\n\n\nStrive for consistency by using pre-defined Brightlayer UI UI elements where possible. By using these elements, your users will feel more familiar and will be able to get things done quickly. You can also help ensure consistency by defining patterns in language, layout, and design that are used throughout the application.\n\n\n\nBe purposeful when laying out page content. Consider space and the relationship between items on the page. Structure pages based on importance.\n\n\n\nUse the typography guidelines to create hierarchy and clarity. An effective type hierarchy increases scalability, legibility, and readability.\n\n\n\nEnsure that the application provides effective feedback to users. Make sure that you communicate location, actions, changes in state, and errors to users. Brightlayer UI has various UI elements to assist with communicating this information.\n\n\n\nConsider using defaults. If you have a strong understanding of the users of your application, careful planning around default states, actions, and paths can reduce the burden on your users.\n\n\n\n## Mobile Applications\n\nGenerally, interfaces less than seven inches in width should be treated as a mobile (phone) device. Font styles and layouts should be consistent across devices as much as possible - your product should feel like the same application regardless of the device used to access it. When working with a dedicated mobile app, familiarize yourself with device / platform capabilities and take advantage of these where possible.\n\n\n\nA fundamental principle for mobile design is to include only the information that is necessary. Don't overload the user with excessive information. Mobile devices are a convenient way to quickly consume information on the go and the information presented should reflect this.\n\n\n\nInterfaces greater than seven inches in width should be treated as a tablet device. As with phone devices, font styles and layouts should be consistent across devices in this class. However, you may find it appropriate to have some differences between phone and tablet devices because of the difference in screen real estate.\n\n\n\nTablet designs should look and feel like a desktop application / website, but they should function like a phone app.\n\n\n\nAs technology continues to evolve, it is important to consider scaling for the future. Products such as non-mobile touch screens, interactive displays, automotive displays, and touch screen laptops should be considered during your design phase.\n\n\n\n\n\n# Contributing\n\nWe encourage everyone to provide feedback, new design concepts, patterns, suggestions, or other ideas to help us create the most useful design system for our community. If you would like to contribute back, please [contact us](/community/contactus)!\n\nIn order to maintain the quality standards for Brightlayer UI resources, any submissions will be subject to review by the Brightlayer UI maintainers. If your design is made a part of Brightlayer UI, we'll add items onto our backlog to bring them to life in code for developers to use.\n" - }, - "/design/anatomy": { - "title": "Design System Anatomy", - "text": "import { Divider, ImageGrid, RegularWidth } from '../../app/components';\nimport CategoriesImg from '../../app/assets/resource-anatomy/resource-categories.png';\nimport PatternStatesImg from '../../app/assets/resource-anatomy/pattern-states.png';\n\n\n\n# Design System Anatomy\n\nThe building blocks of the Brightlayer UI design system are broken down into four levels of increasing complexity: elements, components, pages, and workflows. When communicating with other members of the Brightlayer UI community, you should strive to use this terminology to promote effective collaboration and understanding. This is applicable to designers, developers, product managers, etc.\n\n\n\n## Foundations\n\nThe foundations include the most basic visual elements on the page, such as [color](/style/color), [icons](/style/iconography), [typography](/style/typography), etc. These typically have no behavior or interaction on their own, but instead are used to communicate information to a user, establish a brand, or lay the foundations for the Brightlayer UI components, pages, and workflows.\n\n## Components\n\nComponents are the basic functional units of the UI. They are usually interactive through clicking, expanding, etc. Components can be as simple (such as buttons, tabs, sliders) or complex (such as [navigation drawers](/patterns/navigation)). Simpler components are often combined to form complex ones.\n\nMost of the simple components in Brightlayer UI are defined and built by Material Design and the component libraries that implement it. Brightlayer UI focuses on defining and building advanced components that are shared across Brightlayer UI applications.\n\n## Pages\n\nPages are the largest single unit in the Brightlayer UI design system. These are typically full-screen designs that specify how certain pages can look in an application. Foundation of these pages should stay the same while there may be some room for customizations. Examples of pages include \"login (empty fields)\" and \"create password (invalid)\".\n\n## Workflows\n\nWorkflows are a sequence of pages combined with rules surrounding how a user goes from one page to another. These usually represent a common path that a user is expected to take to complete various tasks. Workflows that are defined in Brightlayer UI are intended to be nearly identical between applications. Examples of very common workflows include the [login](/patterns/user-auth) experience and user registration / sign up.\n\n\n\n# Design Patterns\n\n\n \n\n\n[Design patterns](/patterns) are very common in Brightlayer UI. A design pattern is a common interaction or behavior that can exist at any level in the design system hierarchy described above. For example, we may have a design pattern for showing actions available on a list item or how to interact with individual settings on a settings page.\n\nBecause a design pattern centers around interactions, they typically include different states. A button can be normal, hovered, or pressed. Similarly, a login workflow can involve login with 2FA, Captcha, or simply a username and password.\n\nFor each state, Brightlayer UI tries to provide:\n\n- Guidelines: How it's used and in what context\n- Design Specifications: How it looks\n- Interactions: How it goes from one state to another\n- Code: How it can be implemented\n\n\n\n# Brightlayer UI and the Atomic Design System\n\nIf you are familiar with other design systems, such as the [Atomic Design System](https://bradfrost.com/blog/post/atomic-web-design/), you may recognize some concepts used here. Brightlayer UI's \"components\" parallel Atomic Design's atoms, molecules, and organisms. The idea of \"pages\" is the same in both systems, but Brightlayer UI also goes one level further in each direction (i.e., Foundations and Workflows) to define a project's user experience more comprehensively.\n" - }, - "/design/accessibility": { - "title": "Accessibility", - "text": "import { MaterialDesignDescription, Divider, ImageGrid } from '../../app/components';\nimport { Link as LinkIcon } from '@material-ui/icons';\nimport AccessibilityDesignImg from '../../app/assets/design/design-color.png';\nimport PerceivableDesignImg from '../../app/assets/design/design-perceivable.png';\nimport UnderstandableDesignImg from '../../app/assets/design/design-understandable.png';\n\n\n\n# Accessibility\n\nAccessibility for the web refers to designing your websites and applications so that individuals with disabilities are able to use them effectively. Disabilities can come in many forms including visual, physical, auditory, etc. It is important to design your applications to be accessible, both to reach as wide an audience as possible and for potential legal reasons. Making your application accessible improves the user experience for individuals without disabilities as well.\n\n> For international products it is important to research what level of compliance is required by law — accessibility requirements vary from one country to another.\n\nThe best practice guidelines used internationally for making websites accessible are the [Web Content Accessibility Guidelines](https://www.w3.org/TR/WCAG20/) (WCAG) 2.0, released by the World Wide Web Consortium (W3C) in 2008.\n\n\n\n# Four Principles of Accessibility\n\nThere are four principles that lay the foundation necessary for anyone to access and use web content — Perceivable, Operable, Understandable, and Robust.\n\n## Perceivable\n\nInformation and user interface components must be presented to users in ways that they can perceive. For example, a button should look like a button and not be hidden behind an image or other hard-to-distinguish elements.\n\n\n\n## Operable\n\nOperable means that users must be able to perform the actions required to interact with interface elements. This means that all functionality should be available via the keyboard (including navigation), temporary content should be displayed long enough to be read by individuals with visual impairments, etc.\n\n## Understandable\n\nUsers must be able to consume information and interact with the application easily. This includes using appropriate language (avoiding abbreviations, writing at an appropriate reading level, etc.), making sure that interface elements behave in consistent and predictable ways, providing helpful error messages and instructions, etc.\n\nFor example, accompanying a button with a text label makes it more understandable if the meaning of the icon on its own is unclear.\n\n\n\n## Robust\n\nWeb content must be robust enough that it can be interpreted reliably by a wide variety of users, including those who rely on assistive technologies (e.g., screen readers, text-to-speech software, alternative pointing devices, etc.). As assistive technologies advance, your applications will need to account for these advances.\n\n\n\n# Color\n\n\n\nBrightlayer UI colors and components have been tested to meet minimum accessibility requirements. By using these default styles, you should be able to reduce the effort required for your product to pass accessibility tests.\n\nIf your project requires the use of additional styles or colors, you should adhere to the following guidelines:\n\n- Use Brightlayer UI colors in the 500+ range for white backgrounds.\n- Avoid using yellow, red, and orange for text (except for single-line error messages on forms)\n- Do not rely on colors for instructions (e.g., do not say \"Click the red button to close\")\n\nMost Brightlayer UI text elements use the Black 500 color, with some headlines using Blue 500. Button labels should use White 50 for dark background and Black 500 on light backgrounds. You can check the contrast ratio to determine which option provides greater contrast.\n\n\n }\n />\n }\n />\n }\n />\n\n\n## Checking Contrast\n\nLow contrast makes it difficult for all users to view your product, especially for individuals with visual impairments. You can test your contrast ratios using free [online tools](https://webaim.org/resources/contrastchecker/) and [Figma plugins](https://www.figma.com/community/plugin/732603254453395948/Stark).\n\n\n\n# Text\n\nIn addition to making sure that the colors used for text are accessible, you should also ensure that text can be made larger without affecting the content or function of the page. Users with visual impairments may need to increase the font size of applications in order to read more clearly.\n\nMost browsers offer a feature for you to change the default font size (larger or smaller). You should test your application across multiple sizes to make sure that everything still looks right and functions correctly.\n\nMost Brightlayer UI components are designed to accommodate bigger font sizes when required.\n\n\n\n# Images\n\nAny images in your application should be accompanied by a caption or other descriptive text, unless they are purely for decoration. Decorative images should show a brief description on hover. Images should always include an \"alt\" property so that they are accessible to users utilizing a screen-reader or other assistive technologies.\n\n- Images should include descriptive text/alt text in the markup/code.\n- Complex images should have more detailed descriptions near the image\n- Videos must provide visual access to the audio information through in-sync captioning\n\n\n\n# Testing Tools For Web\n\nThe tools used in the Trusted Tester Test Process (and ICT Testing Baseline) have been chosen based on several factors including ease of use, ease of teaching, and accuracy of results. They are also free to install and use.\n\n- [Accessible Name & Description Inspector](https://www.ssa.gov/accessibility/andi/help/install.html) (ANDI)\n- Color Contrast Analyzer for [Mac](https://github.com/ThePacielloGroup/CCA-OSX/releases/tag/2.4) and [Windows](https://github.com/ThePacielloGroup/CCA-Win/releases/tag/2.5.0) (CCA)\n" - }, - "/design/websites": { - "title": "Websites", - "text": "import { Divider, ImageGrid } from '../../app/components';\nimport ResponsiveDesignImg from '../../app/assets/design/responsive-design.png';\nimport WebsiteDesign from '../../app/assets/design/website-design.jpg';\nimport WebApp from '../../app/assets/design/webapp.jpg';\nimport Website from '../../app/assets/design/website.jpg';\nimport Grid from '../../app/assets/design/grids.png';\n\n\n\n# Designing for Websites\n\nBrightlayer UI is a design system for digital _applications_. However, it can also be adapted for use in traditional web sites as well.\n\n\n\n## Websites vs. Applications\n\nThe line between websites and web applications is often blurry. In general, websites primarily provide information in a read-only format for the purposes of education, promotion, marketing, etc.\n\nA web application is typically more interactive and provides users the ability to affect the data in the application (e.g., adding items, deleting items, etc.). These applications are typically built to serve a particular use case or function that users need to perform frequently.\n\nWebsites:\n\n- Static content\n- Usually publicly accessible\n- Read-only visual & text content\n- Less interactive / functional compared to web applications\n\nApplications:\n\n- Dynamic content\n- Often incorporates user accounts / authentication\n- Users can manipulate data\n- More interactive / functional compared to a website\n\n\n\n\n# Principles of Website Design\n\nThere are several key principles for effective website design. Many of these principles can also be considered when designing a web application, with some notable differences called out below.\n\n## Beauty & Simplicity\n\nHow your website looks is important, but it's not the reason users are coming to your site — typically they are looking for some particular piece of information. However, users _will_ notice a bad design, so making sure your website is visually appealing is still crucial.\n\nKeeping your designs simple is a way to strike balance. You should avoid unnecessary design elements (i.e., don't design for the sake of design) — this will only serve to overwhelm users and make it more difficult for them to find what they are looking for. A clean and simple design helps the audience focus on the value of the brand and on your content. Often, users will associate a website design with the quality of a particular company or product.\n\n> Using whitespace liberally can help maintain a simplistic design and also improve readability.\n\n## Effective Navigation\n\nUsers are typically coming to your website to find information, so you should make your website as easy to navigate as possible to maximize their chance of finding what they need. User should be able to land on your site and immediately identify where they need to go.\n\n- Primary navigation should be simple and located at the top of every page\n- Include additional navigation or a site map in the footer of your website\n- Consider adding breadcrumbs so users can quickly see where they are.\n - If you use breadcrumbs, they should be used on every page.\n- Include a search functionality so users can quickly find what they are looking for\n- Limit the number of navigation options (e.g., tabs, breadcrumbs, menus, etc.) per page\n- Limit the nesting of information where possible.\n - Try to keep your website to no more than three levels deep (use a pyramid structure to organize your content).\n\n## Layout & Hierarchy\n\nWhere and how content is presented is a critical aspect of website design. You should arrange the elements on each page so that the user will naturally gravitate to the most important elements first. Your goal should be to facilitate users' actions in a way that feels intuitive, natural, and enjoyable. You can draw your users to certain elements on the page by utilizing a combination of position, size, and color.\n\nYour website should be designed on a [grid system](https://www.smashingmagazine.com/2017/12/building-better-ui-designs-layout-grids/) to help tie elements together and promote responsiveness for different sized screens.\n\n\n\n## Colors\n\nColor can be very powerful when it is used effectively. You should keep colors to a minimum to maximize the effect in the areas where they are used. We recommend using no more than five different colors in your website designs (ideally shades of blue, black, gray, and white from the Brightlayer UI [palette](/style/color)). For product catalogs or commerce sites, you should absolutely use the product's branding color(s) on your site.\n\nYou should focus your use of color on image backgrounds, highlight colors, etc.\n\n## Typography\n\nIn general, websites following the Brightlayer UI design language should use the Open Sans font. If you require an alternative, you should ensure that any font you use is highly legible at all sizes.\n\n- Avoid using script fonts\n- Minimize the use of colored text and make sure it contrasts with the background color.\n- Use no more than three different typefaces.\n- Use no more than three different font sizes.\n- Keep body copy and label font sizes at 12px or larger\n - Do not use any text smaller than 8px\n\nYou can read more about typography in the [Typography](/style/typography) guide.\n\n## Graphics\n\nGraphics are most powerful when used sparingly. Only use graphics if they help the user complete a specific task or if they showcase a specific product / situation. You can read more about graphics in our [Illustrations](/style/illustrations) guide.\n\n## Consistency\n\nThe overall look and feel of your site should be consistent across pages. Backgrounds, colors, typefaces and the tone of writing are all areas where consistency has a positive impact on usability.\n\nConsistency does not mean every page should look identical. Try to define different layouts for specific types of pages (e.g., landing page, information page, product page, etc.). Use these layouts consistently throughout your website.\n\nIn addition to visual consistency, it is also important to maintain a consistent tone throughout the website. Your content should be written using the same voice throughout the website. Content should be descriptive and straight to the point — keep technical jargon to a minimum.\n\n## Responsiveness\n\nYour website should be functional across a wide range of different devices, including desktop computers, mobile phones, and tablets. Nearly 50% of all web traffic comes from mobile and tablet devices, so you should strive to follow a [mobile-first](https://medium.com/@Vincentxia77/what-is-mobile-first-design-why-its-important-how-to-make-it-7d3cf2e29d00) design strategy. Brightlayer UI is working to develop website grid templates for traditional website design in Figma. You can refer to [Material designs Responsive layout](https://material.io/design/layout/understanding-layout.html) grid for more detailed information.\n\n\n\n## Accessibility\n\nThe audience for a website can be even more diverse than for a web application. Your website should be accessible to all potential users. As with any Eaton digital product it is important to refer to the [Accessibility](/design/accessibility) guide for more detailed information. The main principles still apply to website design.\n\n## Conventions\n\nThere are a number of conventions that users have come to expect from websites. You should strive to follow these conventions when possible:\n\n- Placing the main navigation at the top left or on the side of the site\n- Placing a product logo at the top left of the site\n - The logo should be clickable and take the user back to the home page\n- Links and buttons should change color / appearance when hovered over\n- Ensuring image galleries / slideshows have buttons for users to manually rotate slides\n- Use shopping cart icons on a commerce site.\n - Include a badge that indicates the number of items in the cart.\n\n\n" - }, - "/design/project-identity": { - "title": "Project Identity", - "text": "import { Divider, ImageGrid, MaterialDesignDescription } from '../../app/components';\nimport PxblueSmallAltIcon from '@brightlayer-ui/icons-mui/PxblueSmallAlt';\nimport ConsumerIndustrial from '../../app/assets/design/project-identity/consumer-industrial.png';\nimport StyleChoice from '../../app/assets/design/project-identity/style-choice.png';\nimport IllustrationConsumer from '../../app/assets/design/project-identity/illustration-consumer.png';\nimport IllustrationIndustrial from '../../app/assets/design/project-identity/illustration-industrial.png';\nimport ImageAppBar from '../../app/assets/design/project-identity/image-app-bar.png';\nimport ImageDrawerRegular from '../../app/assets/design/project-identity/image-drawer-regular.png';\nimport ImageDrawerProfile from '../../app/assets/design/project-identity/image-drawer-profile.png';\nimport ImageScorecardHeader from '../../app/assets/design/project-identity/image-scorecard-header.png';\nimport ImageLogin from '../../app/assets/design/project-identity/image-login.png';\nimport ImageSuccess from '../../app/assets/design/project-identity/image-success.png';\nimport VariationButton from '../../app/assets/design/project-identity/variation-button.png';\nimport VariationTextField from '../../app/assets/design/project-identity/variation-text-field.png';\nimport VerbiageNeutral from '../../app/assets/design/project-identity/verbiage-neutral.png';\nimport VerbiageExcitement from '../../app/assets/design/project-identity/verbiage-excitement.png';\nimport ListColorCorrect from '../../app/assets/design/project-identity/list-color-correct.png';\nimport ListColorIncorrect from '../../app/assets/design/project-identity/list-color-incorrect.png';\n\n\n\n# Project Identity and Design Flexibility\n\nBrightlayer UI provides a foundation for designing and developing applications in a way that makes them feel like they are a part of the same brand. However, the purpose of Brightlayer UI is not to make every application look the same.\n\nAs Brightlayer UI serves as a design system for a wide range of applications, some projects might demand unique design or branding elements to better suit their audience. There is a balance that you must strike among maintaining consistency between applications and establishing a unique brand for each product. Brightlayer UI provides some of the basic elements and patterns to help you build consistency, leaving you more time to focus on what makes your product unique.\n\n}\n minCardHeight={'unset'}\n/>\n\n## Brightlayer UI is Flexible\n\nBrightlayer UI is not intended to stifle your creativity, but rather to enable it. Brightlayer UI standardizes some of the basic elements of design in order to foster consistency between projects, which in turn allows you to spend more of your time and creativity on the parts of your project that make it unique.\n\nJust as we build on top of [Material Design](https://material.io) principles, you too can build on top of Brightlayer UI principles to make your products better for your target audience. There are many opportunities in Brightlayer UI where you are free to make changes and tweaks.\n\n\n\n## Build a Local Design System\n\nWe expect that you will establish your own local design system for your project that extends Brightlayer UI and adds your own style / identity. Depending on your use case, your design system may need to be more flashy, visual, relaxed, friendly, etc. Depending on where your application will be used, you may also need to change aspects of the design system related to accessibility (such as larger buttons for touch-screens) or legal requirements in your target markets.\n\n\n\nWhile establishing your local product identity, remember that Brightlayer UI is here to help establish consistency. You do not want to customize so much that this is lost. Below, we go into details about some common areas of customization as well as some areas that should be avoided.\n\n## Common Things to Change\n\nThere are some areas where we strongly encourage you to make changes and establish your own brand identity.\n\nKeep in mind that once you've established a local design system, you must make sure that you apply it consistently everywhere. You should use it in your packaging, your website, your email templates, the application, etc.\n\n### Illustrations\n\n\n\n[Illustrations](/style/illustrations) are common for [websites](/design/websites) and other consumer-facing products. Different image styles can create different moods (e.g., friendly vs. professional) and set the tone for how users will use your application.\n\n### Images\n\nSimilar to illustrations, images are another way to make your applications and websites more user-friendly.\n\n\n\n### Icons\n\nBrightlayer UI primarily uses the baseline style of Material Design's icons (see [our iconography](/style/iconography)).\n\nHowever, we understand that the current iconography set may not cover every single use case or requirement for your product. In these situations, you are welcome to invent your own icons or leverage [Material Design's community icons](https://materialdesignicons.com/). Before going this route, make sure that you have thoroughly explored the available icons first and when creating new icons, ensure that they follow the [Material Design icon design guidelines](https://material.io/design/iconography/system-icons.html#design-principles).\n\n### Component Variants\n\n\n\nMany components have style variations. These variations are all available for you to use, and it is up to you to decide which ones work best for your application. Some common variations include:\n\n- Outlined vs. Contained / Filled\n- Flat vs. Elevated\n- Square vs. Rounded Corner vs. Round\n\n### Verbiage\n\n\n\nThe actual text used in your application can change based on your intended tone. For websites, you may want to use more persuasive and appealing language to encourage the audience to buy or use your product. Inside an application, you may want to use a more serious tone, especially for applications that deal with potential safety concerns. Consumer-facing products in general carry a more cheerful tone.\n\n\n\n## Things You Should NEVER Change\n\nWhen it comes to Brightlayer UI, you have a great deal of design freedom, but there are a few things you should never change. Most of these are related to maintaining visual consistency and other conventions between applications.\n\n### Theme\n\nBrightlayer UI [offers two themes](/style/themes): Blue theme and Blue Dark theme. Ideally, an application should support both themes, but some applications might be more usable depending on the environment and context of the usage.\n\nYou are expected to stay close to those two themes. Both themes have been thoroughly researched to ensure they meet the standards for usability and accessibility.\n\n> One notable exception to this rule is if you are building products that will be white-labeled or sold under a different brand. In this case, you may find it beneficial to create your own custom themes that will better align with the brand.\n\n### Status Colors\n\n\n\nBrightlayer UI has strict guidelines around our [status color palette](/style/color). The status colors are used to indicate the status of certain items or devices. These should not be changed for any reason — users should be able to instantly know what these colors mean in any Brightlayer UI application. Further, the colors you are using to brand your application should not interfere with these colors.\n\nThe only situation where these may be changed is if there is an industry-specific convention that differs from the Brightlayer UI recommendations (e.g., green = circuit closed, red = circuit open for breakers). In these situations, you should follow the industry-specific convention.\n\n### Font Family\n\nBrightlayer UI [uses Open Sans and Noto Sans](/style/typography) for all applications. You are encouraged to adjust font [weight and size](/style/typography#customization) where necessary to establish a visual type hierarchy, but we strongly discourage the use of any fonts other than Open Sans and Noto Sans, particularly any [Serif fonts](https://en.wikipedia.org/wiki/Serif).\n\n### Design Patterns\n\nThroughout our [design patterns](/patterns), we provide examples of \"things not to do\" — these are typically identified by an image with a red underline. You should never use any of these expressly-forbidden patterns in your products. In all cases, we provide an example of the preferred approach.\n" - }, - "/patterns": { "title": "Design Patterns" }, - "/patterns/account-menu": { - "title": "Account Menu", - "text": "import { DemoCard, ImageGrid, MaterialDesignDescription, Divider, TOC } from '../../app/components';\nimport PxblueSmallAltIcon from '@brightlayer-ui/icons-mui/PxblueSmallAlt';\nimport Banner from '../../app/assets/design-patterns/account-menu/account-menu-banner.png';\nimport AccountSettingsPage from '../../app/assets/design-patterns/account-menu/account-settings-page.png';\nimport DrawerDetails1 from '../../app/assets/design-patterns/account-menu/drawer-do-and-dont-1.png';\nimport DrawerDetails2 from '../../app/assets/design-patterns/account-menu/drawer-do-and-dont-2.png';\nimport UserMenuContents from '../../app/assets/design-patterns/account-menu/user-menu-contents.png';\nimport AvatarVariants from '../../app/assets/design-patterns/account-menu/avatar-variants.png';\nimport CrowdedDrawer from '../../app/assets/design-patterns/account-menu/crowded-drawer.png';\nimport CrowdedUserMenu from '../../app/assets/design-patterns/account-menu/crowded-user-menu.png';\n\nimport Specs1 from '../../app/assets/design-patterns/account-menu/spec-typography-mobile.png';\nimport Specs2 from '../../app/assets/design-patterns/account-menu/spec-typography-desktop.png';\nimport Specs3 from '../../app/assets/design-patterns/account-menu/spec-drawer.png';\nimport Specs4 from '../../app/assets/design-patterns/account-menu/spec-avatar.png';\n\n\n\n# Account Menu\n\n\n\nWhen applications implement a form of [User Authentication](/patterns/user-auth), they must include ways for users to view / update their personal or account information as well as take account-related actions, such as logging out of the application or changing a password. There are several ways to present this information to the user in a Brightlayer UI application.\n\n\n \n \n\n\n# Account Settings Page\n\n\n\nAt a minimum, your application should implement a dedicated account settings page for viewing and editing a user's account details, preferences, settings, etc. This page should also include a way for users to take account-related actions. The style of this page should be consistent with other settings pages in your application, if applicable. If you have multiple settings pages in your application, the account settings should be easily accessible from the top level.\n\n\n \n\n\n# In a Navigation Drawer\n\nIf your application is using [Drawer Navigation](/patterns/navigation#drawer-navigation), you can include quick-access user information and actions in the Drawer. Commonly, this involves placing an avatar in the drawer header along with basic information about the user (e.g., their name, username, email address, job title and / or organization affiliation). Additional account actions and a link to the account settings page can be placed at the bottom of the drawer body, just above the footer, if present (see the [contents](/patterns/account-menu#contents) section below).\n\n\n\nThis approach is most effective when there are relatively few account-related actions and is also preferred on mobile where there is limited space in the app bar.\n\nIf you are using a navigation rail, you may place account settings links in the rail, but you will not be able to show specific details about the user. Consider using the [User Menu](#via-user-menu) in this situation or if you are using a primary navigation mechanism other than a drawer.\n\n\n \n }\n />\n \n\n\n# In a User Menu\n\n\n\nAnother way to present user information and actions is with the user menu. The user menu appears as an Avatar in the [App Bar](/patterns/appbar) which opens a menu with the user-related content (see the [contents](#contents) section below).\n\nThis approach is most effective if you have more than three account-related actions, or if you want to present more detailed information about a user since it avoids cluttering the primary navigation drawer.\n\n\n \n }\n />\n \n\n\n# Contents\n\nWhether you are using the drawer or a dedicated user menu component, the content should be very similar.\n\n## Avatar\n\n\n\nAn avatar is used to identify the currently logged-in user / account. It may appear in the drawer header or in the [App Bar](/patterns/appbar).\n\nAvatars can take several forms. Usually, they display a user-selected profile picture. If your application does not support user-selected images, you can default to displaying the user's initials or a [person icon](/style/iconography?icon=Person&isMaterial=true). You can also elect to show the user's full name or username — this may be particularly useful when your application uses shared or generic accounts (e.g., 'Administrator').\n\nThe avatar should be accompanied by basic information about the user, such as their name, username, email, job title, etc., which can be placed in the navigation drawer header or in the user menu header.\n\n## Account Functions\n\nMost account functions can be located on the account settings page, but you should provide access to the most common / frequent actions in the drawer or user menu as well.\n\nYou should at least include:\n\n- A link to the account settings page\n- A Log Out button\n- Links to terms of service / privacy policy / license information (if applicable)\n\nWhen using the user menu, you will likely have more room available if you wish to include other frequently accessed account functions, such as change password, contact support, etc.\n\n\n \n \n\n\n# Design Specifications\n\n## Mobile\n\n### Navigation Drawer\n\n\n\n### User Menu\n\n\n\n### Avatar\n\n\n\n## Desktop and Tablet\n\nIf certain dimensions are not specified, refer to the dimensions suggested in the mobile section above.\n\n### User Menu\n\n\n\nAlso refer to the design specifications for [Drawer](/patterns/navigation#design-specifications) and [Bottom Sheet](/patterns/overlay#bottom-sheet).\n\n\n\n# Developers\n\nUse the following components to implement this pattern:\n\n**Angular** and **Ionic**:\n\n- Angular Material\n - [Side Nav](https://material.angular.io/components/sidenav/overview)\n- @brightlayer-ui/angular-components\n - [Drawer](https://brightlayer-ui-components.github.io/angular/?path=/info/components-drawer--readme)\n - [User Menu](https://brightlayer-ui-components.github.io/angular/?path=/info/components-user-menu--readme)\n\n**React**:\n\n- Material UI\n - [Drawer](https://mui.com/components/drawers/)\n- @brightlayer-ui/react-components\n - [Drawer](https://brightlayer-ui-components.github.io/react/?path=/info/components-drawer--get-read-me-story)\n - [User Menu](https://brightlayer-ui-components.github.io/react/?path=/info/components-user-menu--get-read-me-story)\n\n**React Native**:\n\n- @brightlayer-ui/react-native-components\n - [Drawer](https://brightlayer-ui-components.github.io/react-native/?path=/info/components-documentation--drawer)\n - [User Menu](https://brightlayer-ui-components.github.io/react-native/?path=/info/components-documentation--user-menu)\n" - }, - "/patterns/appbar": { - "title": "App Bars", - "text": "import { DemoCard, ImageGrid, MaterialDesignDescription, Divider, TOC } from '../../app/components';\nimport Banner from '../../app/assets/design-patterns/app-bar/appbar-banner.png';\nimport Search from '../../app/assets/design-patterns/app-bar/search-bar/search.gif';\nimport MiniSearch from '../../app/assets/design-patterns/app-bar/search-bar/mini-search.png';\nimport SiteSearch from '../../app/assets/design-patterns/app-bar/search-bar/site-search.png';\nimport PageSearch from '../../app/assets/design-patterns/app-bar/search-bar/page-search.png';\nimport ComponentSearch from '../../app/assets/design-patterns/app-bar/search-bar/component-search.png';\nimport CollapsibleAppBarDynamic from '../../app/assets/design-patterns/app-bar/collapsible-app-bar-dynamic.gif';\nimport CollapsibleAppBarSnap from '../../app/assets/design-patterns/app-bar/collapsible-app-bar-snap.gif';\nimport CollapsibleAppBar1 from '../../app/assets/design-patterns/app-bar/collapsible-app-bar-1.png';\nimport CollapsibleAppBar2 from '../../app/assets/design-patterns/app-bar/collapsible-app-bar-2.png';\nimport SafeArea from '../../app/assets/design-patterns/app-bar/safe-area.png';\nimport HideOnCollapse from '../../app/assets/design-patterns/app-bar/what-to-hide-on-collapse.png';\nimport AutoVariants from '../../app/assets/design-patterns/app-bar/search-bar/auto-complete-variants.png';\nimport BasicBars from '../../app/assets/design-patterns/app-bar/basic-app-bars.png';\nimport DropdownVariations1 from '../../app/assets/design-patterns/app-bar/dropdown-toolbar-variations-1.png';\nimport DropdownVariations2 from '../../app/assets/design-patterns/app-bar/dropdown-toolbar-variations-2.png';\nimport Specs1Image from '../../app/assets/design-patterns/app-bar/specs-1.png';\nimport Specs2Image from '../../app/assets/design-patterns/app-bar/specs-2.png';\nimport Specs3Image from '../../app/assets/design-patterns/app-bar/specs-3.png';\nimport Specs4Image from '../../app/assets/design-patterns/app-bar/specs-4.png';\nimport Specs5Image from '../../app/assets/design-patterns/app-bar/specs-5.png';\nimport Specs6Image from '../../app/assets/design-patterns/app-bar/specs-6.png';\n\n\n\n# App Bars\n\n\n\nApp bars, sometimes called toolbars, are often one of the first elements you see in an application. They are primarily used to provide context for where a user is in the hierarchy of the application.\n\n\n \n \n \n\n\n# Basic App Bar\n\n\n\nThe basic app bar provides information about the current screen. Typically, this is a short title that indicates which screen the user is on (e.g., \"Settings\"). However, the app bar can also contain a navigation icon, subtitle, and/or various global action buttons for the screen. When placing actions in the app bar, limit yourself to no more than three. If you have more actions than this, consider grouping them into a menu.\n\n## Dropdown Toolbar\n\n\n \n\n\nA special case of the basic app bar is the dropdown toolbar. This version transforms the simple text subtitle of the app bar into a dropdown menu that can be used to configure the page. For example, you may have a dropdown that allows users to switch between different physical locations on an overview screen.\n\n\n\n## Safe Area\n\n\n\n\n\n# Collapsible App Bar\n\nIn some situations, you may want to present more than just a title and subtitle in an app bar, such as a large graphic, buttons, or multiple lines of text. Collapsible app bars — sometimes referred to as expandable app bars, extended app bars, or prominent app bars — are ideal for this situation. The app bar starts out tall but will shrink as the user scrolls down the page until it becomes a basic app bar.\n\n\n \n \n\n\nCollapsible app bars put a greater emphasis on the app bar content on page load and provide an opportunity to show images pertinent to the page topic. This allows you the flexibility to present an eye-catching banner without permanently reducing the amount of usable space on the page. This pattern is most commonly used for mobile applications, but could also be used for web.\n\n\n\nThe collapsible appbar should transition smoothly between the expanded and collapsed states — this means you will need to account for how the app bar will look throughout the transition. Because elements will disappear as the app bar shrinks, you'll need to use various transition techniques to do this smoothly, depending on your content.\n\n