gitextract_m0sxkfw_/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── feature_request.yml │ │ ├── icon_request.yml │ │ └── incorrect_icon.yml │ ├── ionic-issue-bot.yml │ └── workflows/ │ ├── actions/ │ │ ├── build-core/ │ │ │ └── action.yml │ │ ├── download-archive/ │ │ │ └── action.yml │ │ ├── publish-npm/ │ │ │ └── action.yml │ │ ├── test-e2e/ │ │ │ └── action.yml │ │ ├── test-spec/ │ │ │ └── action.yml │ │ ├── update-reference-screenshots/ │ │ │ └── action.yml │ │ └── upload-archive/ │ │ └── action.yml │ ├── dev-release.yml │ ├── production-release.yml │ ├── release-orchestrator.yml │ ├── update-screenshots.yml │ └── validation.yml ├── .gitignore ├── .prettierrc.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── jest.config.mjs ├── package.json ├── playwright.config.ts ├── readme.md ├── scripts/ │ ├── build.ts │ ├── cheatsheet-template.html │ ├── collection-copy.ts │ ├── constants.ts │ ├── plugins.ts │ ├── readme.md │ └── types.ts ├── src/ │ ├── components/ │ │ ├── icon/ │ │ │ ├── icon.css │ │ │ ├── icon.tsx │ │ │ ├── readme.md │ │ │ ├── request.ts │ │ │ ├── svg/ │ │ │ │ └── .gitignore │ │ │ ├── test/ │ │ │ │ ├── icon.e2e.ts │ │ │ │ ├── icon.spec.ts │ │ │ │ ├── utils.spec.ts │ │ │ │ └── validate.spec.ts │ │ │ ├── utils.ts │ │ │ └── validate.ts │ │ └── test/ │ │ ├── csp/ │ │ │ ├── icon.e2e.ts │ │ │ └── index.html │ │ └── dynamic-type/ │ │ ├── icon.e2e.ts │ │ └── index.html │ ├── components.d.ts │ ├── data.json │ ├── index.html │ ├── index.ts │ ├── ionicons.web-types.json │ └── utils/ │ └── test/ │ └── playwright/ │ ├── index.ts │ ├── page/ │ │ └── utils/ │ │ ├── goto.ts │ │ └── index.ts │ ├── playwright-declarations.ts │ └── playwright-page.ts ├── stencil.config.ts ├── tsconfig.json └── tsconfig.spec.json