├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ └── CI.yml ├── .gitignore ├── LICENSE ├── eslint.config.js ├── jest.config.js ├── package.json ├── readme.md ├── renovate.json5 ├── scripts └── mkcomponent.sh ├── src ├── assets │ ├── avatar-ben.png │ ├── avatar-finn.png │ ├── avatar-frodo.jpg │ ├── avatar-gollum.jpg │ ├── avatar-han.png │ ├── avatar-leia.png │ ├── avatar-luke.png │ ├── avatar-poe.png │ ├── avatar-rey.png │ ├── avatar-samwise.jpg │ ├── avatar-yoda.png │ ├── avatar.svg │ ├── boniver.jpeg │ ├── card-album.png │ ├── card-coworker-avatar.png │ ├── card-coworker-header.png │ ├── card-top-img.png │ ├── chancetherapper.jpeg │ ├── childishgambino.jpeg │ ├── component-icon.svg │ ├── fonts │ │ ├── Roboto-Medium.ttf │ │ └── Roboto-Regular.ttf │ ├── icon │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ ├── icon192.png │ │ └── icon512.png │ ├── ironwine.jpeg │ ├── kimbra.jpeg │ ├── logo-amtrak.png │ ├── logo-shipt.png │ ├── logo-sworkit.png │ ├── logo-untappd.png │ ├── madison.jpg │ ├── pinkfloyd.jpeg │ ├── porterrobinson.jpeg │ ├── slide-1.png │ ├── slide-2.png │ ├── slide-3.png │ ├── slide-4.png │ ├── thebeatles.jpeg │ └── thumbnail.svg ├── components.d.ts ├── components │ ├── _template_ │ │ ├── _template_.css │ │ └── _template_.tsx │ ├── accordion │ │ ├── accordion.css │ │ └── accordion.tsx │ ├── action-sheet │ │ ├── action-sheet.css │ │ └── action-sheet.tsx │ ├── alert │ │ ├── alert.css │ │ └── alert.tsx │ ├── app-home │ │ ├── app-home.css │ │ ├── app-home.spec.ts │ │ └── app-home.tsx │ ├── app-root │ │ ├── app-root.css │ │ ├── app-root.spec.ts │ │ └── app-root.tsx │ ├── avatar │ │ ├── avatar.css │ │ └── avatar.tsx │ ├── badge │ │ ├── badge.css │ │ └── badge.tsx │ ├── breadcrumbs │ │ ├── breadcrumbs.css │ │ └── breadcrumbs.tsx │ ├── button │ │ ├── button.css │ │ └── button.tsx │ ├── card │ │ ├── card.css │ │ └── card.tsx │ ├── checkbox │ │ ├── checkbox.css │ │ └── checkbox.tsx │ ├── chip │ │ ├── chip.css │ │ └── chip.tsx │ ├── component-details │ │ ├── component-details.css │ │ └── component-details.tsx │ ├── content │ │ ├── content.css │ │ └── content.tsx │ ├── datetime │ │ ├── datetime.css │ │ └── datetime.tsx │ ├── fab │ │ ├── fab.css │ │ └── fab.tsx │ ├── grid │ │ ├── grid.css │ │ └── grid.tsx │ ├── icons │ │ ├── icons.css │ │ └── icons.tsx │ ├── infinite-scroll │ │ ├── infinite-scroll.css │ │ └── infinite-scroll.tsx │ ├── input-otp │ │ ├── input-otp.css │ │ └── input-otp.tsx │ ├── input │ │ ├── input.css │ │ └── input.tsx │ ├── item-group │ │ ├── item-group.css │ │ └── item-group.tsx │ ├── item │ │ ├── item.css │ │ └── item.tsx │ ├── list │ │ ├── list.css │ │ └── list.tsx │ ├── loading │ │ ├── loading.css │ │ └── loading.tsx │ ├── menu │ │ ├── menu.css │ │ └── menu.tsx │ ├── modal │ │ ├── modal-content.tsx │ │ ├── modal.css │ │ └── modal.tsx │ ├── nav │ │ ├── nav.css │ │ └── nav.tsx │ ├── note │ │ ├── note.css │ │ └── note.tsx │ ├── picker │ │ ├── picker.css │ │ └── picker.tsx │ ├── popover │ │ ├── popover-example-page.tsx │ │ ├── popover.css │ │ └── popover.tsx │ ├── progress │ │ ├── progress.css │ │ └── progress.tsx │ ├── radio │ │ ├── radio.css │ │ └── radio.tsx │ ├── range │ │ ├── range.css │ │ └── range.tsx │ ├── refresher │ │ ├── refresher.css │ │ └── refresher.tsx │ ├── reorder │ │ ├── reorder.css │ │ └── reorder.tsx │ ├── searchbar │ │ ├── searchbar.css │ │ └── searchbar.tsx │ ├── segment │ │ ├── segment.css │ │ └── segment.tsx │ ├── select │ │ ├── select.css │ │ └── select.tsx │ ├── skeleton-text │ │ ├── skeleton-text.css │ │ └── skeleton-text.tsx │ ├── spinner │ │ ├── spinner.css │ │ └── spinner.tsx │ ├── tabs │ │ ├── tabs-games.tsx │ │ ├── tabs-movies.tsx │ │ ├── tabs-music.tsx │ │ ├── tabs.css │ │ └── tabs.tsx │ ├── text │ │ ├── text.css │ │ └── text.tsx │ ├── thumbnail │ │ ├── thumbnail.css │ │ └── thumbnail.tsx │ ├── toast │ │ ├── toast.css │ │ └── toast.tsx │ ├── toggle │ │ ├── toggle.css │ │ └── toggle.tsx │ └── toolbar │ │ ├── toolbar.css │ │ └── toolbar.tsx ├── global │ ├── app.css │ └── app.ts ├── index.html ├── interfaces.d.ts ├── manifest.json └── utils │ └── component-utils.ts ├── static.json ├── stencil.config.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ionic-team/framework 2 | -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/eslint.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/readme.md -------------------------------------------------------------------------------- /renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/renovate.json5 -------------------------------------------------------------------------------- /scripts/mkcomponent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/scripts/mkcomponent.sh -------------------------------------------------------------------------------- /src/assets/avatar-ben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/avatar-ben.png -------------------------------------------------------------------------------- /src/assets/avatar-finn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/avatar-finn.png -------------------------------------------------------------------------------- /src/assets/avatar-frodo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/avatar-frodo.jpg -------------------------------------------------------------------------------- /src/assets/avatar-gollum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/avatar-gollum.jpg -------------------------------------------------------------------------------- /src/assets/avatar-han.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/avatar-han.png -------------------------------------------------------------------------------- /src/assets/avatar-leia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/avatar-leia.png -------------------------------------------------------------------------------- /src/assets/avatar-luke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/avatar-luke.png -------------------------------------------------------------------------------- /src/assets/avatar-poe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/avatar-poe.png -------------------------------------------------------------------------------- /src/assets/avatar-rey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/avatar-rey.png -------------------------------------------------------------------------------- /src/assets/avatar-samwise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/avatar-samwise.jpg -------------------------------------------------------------------------------- /src/assets/avatar-yoda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/avatar-yoda.png -------------------------------------------------------------------------------- /src/assets/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/avatar.svg -------------------------------------------------------------------------------- /src/assets/boniver.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/boniver.jpeg -------------------------------------------------------------------------------- /src/assets/card-album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/card-album.png -------------------------------------------------------------------------------- /src/assets/card-coworker-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/card-coworker-avatar.png -------------------------------------------------------------------------------- /src/assets/card-coworker-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/card-coworker-header.png -------------------------------------------------------------------------------- /src/assets/card-top-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/card-top-img.png -------------------------------------------------------------------------------- /src/assets/chancetherapper.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/chancetherapper.jpeg -------------------------------------------------------------------------------- /src/assets/childishgambino.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/childishgambino.jpeg -------------------------------------------------------------------------------- /src/assets/component-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/component-icon.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/assets/icon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/icon/apple-touch-icon.png -------------------------------------------------------------------------------- /src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/assets/icon/icon192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/icon/icon192.png -------------------------------------------------------------------------------- /src/assets/icon/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/icon/icon512.png -------------------------------------------------------------------------------- /src/assets/ironwine.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/ironwine.jpeg -------------------------------------------------------------------------------- /src/assets/kimbra.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/kimbra.jpeg -------------------------------------------------------------------------------- /src/assets/logo-amtrak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/logo-amtrak.png -------------------------------------------------------------------------------- /src/assets/logo-shipt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/logo-shipt.png -------------------------------------------------------------------------------- /src/assets/logo-sworkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/logo-sworkit.png -------------------------------------------------------------------------------- /src/assets/logo-untappd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/logo-untappd.png -------------------------------------------------------------------------------- /src/assets/madison.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/madison.jpg -------------------------------------------------------------------------------- /src/assets/pinkfloyd.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/pinkfloyd.jpeg -------------------------------------------------------------------------------- /src/assets/porterrobinson.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/porterrobinson.jpeg -------------------------------------------------------------------------------- /src/assets/slide-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/slide-1.png -------------------------------------------------------------------------------- /src/assets/slide-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/slide-2.png -------------------------------------------------------------------------------- /src/assets/slide-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/slide-3.png -------------------------------------------------------------------------------- /src/assets/slide-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/slide-4.png -------------------------------------------------------------------------------- /src/assets/thebeatles.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/thebeatles.jpeg -------------------------------------------------------------------------------- /src/assets/thumbnail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/assets/thumbnail.svg -------------------------------------------------------------------------------- /src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components.d.ts -------------------------------------------------------------------------------- /src/components/_template_/_template_.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/_template_/_template_.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/_template_/_template_.tsx -------------------------------------------------------------------------------- /src/components/accordion/accordion.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/accordion/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/accordion/accordion.tsx -------------------------------------------------------------------------------- /src/components/action-sheet/action-sheet.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/action-sheet/action-sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/action-sheet/action-sheet.tsx -------------------------------------------------------------------------------- /src/components/alert/alert.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/alert/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/alert/alert.tsx -------------------------------------------------------------------------------- /src/components/app-home/app-home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/app-home/app-home.css -------------------------------------------------------------------------------- /src/components/app-home/app-home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/app-home/app-home.spec.ts -------------------------------------------------------------------------------- /src/components/app-home/app-home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/app-home/app-home.tsx -------------------------------------------------------------------------------- /src/components/app-root/app-root.css: -------------------------------------------------------------------------------- 1 | ion-app { 2 | user-select: none; 3 | } -------------------------------------------------------------------------------- /src/components/app-root/app-root.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/app-root/app-root.spec.ts -------------------------------------------------------------------------------- /src/components/app-root/app-root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/app-root/app-root.tsx -------------------------------------------------------------------------------- /src/components/avatar/avatar.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/avatar/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/avatar/avatar.tsx -------------------------------------------------------------------------------- /src/components/badge/badge.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/badge/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/badge/badge.tsx -------------------------------------------------------------------------------- /src/components/breadcrumbs/breadcrumbs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/breadcrumbs/breadcrumbs.css -------------------------------------------------------------------------------- /src/components/breadcrumbs/breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/breadcrumbs/breadcrumbs.tsx -------------------------------------------------------------------------------- /src/components/button/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/button/button.css -------------------------------------------------------------------------------- /src/components/button/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/button/button.tsx -------------------------------------------------------------------------------- /src/components/card/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/card/card.css -------------------------------------------------------------------------------- /src/components/card/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/card/card.tsx -------------------------------------------------------------------------------- /src/components/checkbox/checkbox.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/checkbox/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/checkbox/checkbox.tsx -------------------------------------------------------------------------------- /src/components/chip/chip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/chip/chip.css -------------------------------------------------------------------------------- /src/components/chip/chip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/chip/chip.tsx -------------------------------------------------------------------------------- /src/components/component-details/component-details.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/component-details/component-details.css -------------------------------------------------------------------------------- /src/components/component-details/component-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/component-details/component-details.tsx -------------------------------------------------------------------------------- /src/components/content/content.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/content/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/content/content.tsx -------------------------------------------------------------------------------- /src/components/datetime/datetime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/datetime/datetime.css -------------------------------------------------------------------------------- /src/components/datetime/datetime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/datetime/datetime.tsx -------------------------------------------------------------------------------- /src/components/fab/fab.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/fab/fab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/fab/fab.tsx -------------------------------------------------------------------------------- /src/components/grid/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/grid/grid.css -------------------------------------------------------------------------------- /src/components/grid/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/grid/grid.tsx -------------------------------------------------------------------------------- /src/components/icons/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/icons/icons.css -------------------------------------------------------------------------------- /src/components/icons/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/icons/icons.tsx -------------------------------------------------------------------------------- /src/components/infinite-scroll/infinite-scroll.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/infinite-scroll/infinite-scroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/infinite-scroll/infinite-scroll.tsx -------------------------------------------------------------------------------- /src/components/input-otp/input-otp.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/input-otp/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/input-otp/input-otp.tsx -------------------------------------------------------------------------------- /src/components/input/input.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/input/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/input/input.tsx -------------------------------------------------------------------------------- /src/components/item-group/item-group.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/item-group/item-group.css -------------------------------------------------------------------------------- /src/components/item-group/item-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/item-group/item-group.tsx -------------------------------------------------------------------------------- /src/components/item/item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/item/item.css -------------------------------------------------------------------------------- /src/components/item/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/item/item.tsx -------------------------------------------------------------------------------- /src/components/list/list.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/list/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/list/list.tsx -------------------------------------------------------------------------------- /src/components/loading/loading.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/loading/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/loading/loading.tsx -------------------------------------------------------------------------------- /src/components/menu/menu.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/menu/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/menu/menu.tsx -------------------------------------------------------------------------------- /src/components/modal/modal-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/modal/modal-content.tsx -------------------------------------------------------------------------------- /src/components/modal/modal.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/modal/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/modal/modal.tsx -------------------------------------------------------------------------------- /src/components/nav/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/nav/nav.css -------------------------------------------------------------------------------- /src/components/nav/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/nav/nav.tsx -------------------------------------------------------------------------------- /src/components/note/note.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/note/note.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/note/note.tsx -------------------------------------------------------------------------------- /src/components/picker/picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/picker/picker.css -------------------------------------------------------------------------------- /src/components/picker/picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/picker/picker.tsx -------------------------------------------------------------------------------- /src/components/popover/popover-example-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/popover/popover-example-page.tsx -------------------------------------------------------------------------------- /src/components/popover/popover.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/popover/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/popover/popover.tsx -------------------------------------------------------------------------------- /src/components/progress/progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/progress/progress.css -------------------------------------------------------------------------------- /src/components/progress/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/progress/progress.tsx -------------------------------------------------------------------------------- /src/components/radio/radio.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/radio/radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/radio/radio.tsx -------------------------------------------------------------------------------- /src/components/range/range.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/range/range.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/range/range.tsx -------------------------------------------------------------------------------- /src/components/refresher/refresher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/refresher/refresher.css -------------------------------------------------------------------------------- /src/components/refresher/refresher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/refresher/refresher.tsx -------------------------------------------------------------------------------- /src/components/reorder/reorder.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/reorder/reorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/reorder/reorder.tsx -------------------------------------------------------------------------------- /src/components/searchbar/searchbar.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/searchbar/searchbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/searchbar/searchbar.tsx -------------------------------------------------------------------------------- /src/components/segment/segment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/segment/segment.css -------------------------------------------------------------------------------- /src/components/segment/segment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/segment/segment.tsx -------------------------------------------------------------------------------- /src/components/select/select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/select/select.css -------------------------------------------------------------------------------- /src/components/select/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/select/select.tsx -------------------------------------------------------------------------------- /src/components/skeleton-text/skeleton-text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/skeleton-text/skeleton-text.css -------------------------------------------------------------------------------- /src/components/skeleton-text/skeleton-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/skeleton-text/skeleton-text.tsx -------------------------------------------------------------------------------- /src/components/spinner/spinner.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/spinner/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/spinner/spinner.tsx -------------------------------------------------------------------------------- /src/components/tabs/tabs-games.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/tabs/tabs-games.tsx -------------------------------------------------------------------------------- /src/components/tabs/tabs-movies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/tabs/tabs-movies.tsx -------------------------------------------------------------------------------- /src/components/tabs/tabs-music.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/tabs/tabs-music.tsx -------------------------------------------------------------------------------- /src/components/tabs/tabs.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/tabs/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/tabs/tabs.tsx -------------------------------------------------------------------------------- /src/components/text/text.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | margin-top: 0; 3 | } -------------------------------------------------------------------------------- /src/components/text/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/text/text.tsx -------------------------------------------------------------------------------- /src/components/thumbnail/thumbnail.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/thumbnail/thumbnail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/thumbnail/thumbnail.tsx -------------------------------------------------------------------------------- /src/components/toast/toast.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/toast/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/toast/toast.tsx -------------------------------------------------------------------------------- /src/components/toggle/toggle.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/toggle/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/toggle/toggle.tsx -------------------------------------------------------------------------------- /src/components/toolbar/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/toolbar/toolbar.css -------------------------------------------------------------------------------- /src/components/toolbar/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/components/toolbar/toolbar.tsx -------------------------------------------------------------------------------- /src/global/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/global/app.css -------------------------------------------------------------------------------- /src/global/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/global/app.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/index.html -------------------------------------------------------------------------------- /src/interfaces.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/utils/component-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/src/utils/component-utils.ts -------------------------------------------------------------------------------- /static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/static.json -------------------------------------------------------------------------------- /stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/stencil.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/docs-demo/HEAD/tsconfig.json --------------------------------------------------------------------------------