diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 6c70128f275..1a9649c1ff2 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -12,9 +12,6 @@ # This should make it easy to add new rules without breaking existing ones. /_templates/ @mapsandapps -/docs/api/ @mapsandapps -/src/ @mapsandapps -/static/usage/ @mapsandapps /static/code/stackblitz/**/*/package.json @ionic-team/framework /static/code/stackblitz/**/*/package-lock.json @ionic-team/framework diff --git a/.prettierignore b/.prettierignore index c9e0e72442c..928dd935591 100644 --- a/.prettierignore +++ b/.prettierignore @@ -13,3 +13,4 @@ static/code/stackblitz .github build node_modules +src/translate diff --git a/docs/api/backdrop.md b/docs/api/backdrop.md index ac2f25308d1..7a1a48a1662 100644 --- a/docs/api/backdrop.md +++ b/docs/api/backdrop.md @@ -16,7 +16,7 @@ Backdropは、他のコンポーネントをオーバーレイするためフル ## 基本的な使い方 -バックドロップは、デフォルトで透明です。バックドロップは、その背後にあるコンテンツのクリックやタップを防ぐことができます。 +Backdropは、その後ろのコンテンツをクリックしたりタップしたりするのを防ぎます。デフォルトでは透明なので、下のデモではCSSで見えるようにしています。 import Basic from '@site/static/usage/v7/backdrop/basic/index.md'; diff --git a/docs/developing/keyboard.md b/docs/developing/keyboard.md index a99c93ece67..b71d97bc82c 100644 --- a/docs/developing/keyboard.md +++ b/docs/developing/keyboard.md @@ -2,7 +2,6 @@ title: Keyboard --- -import Codepen from '@components/global/Codepen'; import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; @@ -29,77 +28,9 @@ import TabItem from '@theme/TabItem'; ### Usage -````mdx-code-block - - - -```html - - Username or Email - - - - - Enter a number - - -``` - - - -```html - - Username or Email - - - - - Enter a number - - -``` - - - -```html - - Username or Email - - - - - Enter a number - - -``` - - - -```html - - Username or Email - - - - - Enter a number - - -``` - - -```` +import Inputmode from '@site/static/usage/v7/keyboard/inputmode/index.md'; - + :::note `inputmode` 属性は Chrome 66+ と iOS Safari 12.2+のデバイスでサポートされています: https://caniuse.com/#search=inputmode @@ -115,57 +46,9 @@ import TabItem from '@theme/TabItem'; ### Usage -````mdx-code-block - - - -```html - - Enter search query - - -``` - - - -```html - - Enter search query - - -``` - - - -```html - - Enter search query - - -``` - - - -```html - - Enter search query - - -``` - - -```` +import Enterkeyhint from '@site/static/usage/v7/keyboard/enterkeyhint/index.md'; - + :::note `enterkeyhint` 属性は Chrome 77+ and iOS Safari 13.4+ のデバイスでサポートされています diff --git a/docs/react/testing/introduction.md b/docs/react/testing/introduction.md new file mode 100644 index 00000000000..a8cae30a467 --- /dev/null +++ b/docs/react/testing/introduction.md @@ -0,0 +1,21 @@ +--- +sidebar_label: Introduction +title: Ionic React Testing Introduction +description: Learn how to test an Ionic React application. This document provides an overview of how to test an application built with @ionic/react. +--- + +# Testing Ionic React + +This document provides an overview of how to test an application built with `@ionic/react`. It covers the basics of testing with React, as well as the specific tools and libraries developers can use to test their applications. + +## Introduction + +Testing is an important part of the development process, and it helps to ensure that an application is working as intended. In `@ionic/react`, testing is done using a combination of tools and libraries, including Jest, React Testing Library, Playwright or Cypress. + +## Types of Tests + +There are two types of tests that can be written: + +**Unit Tests**: Unit tests are used to test individual functions and components in isolation. [Jest](https://jestjs.io) and [React Testing Library](https://testing-library.com) are commonly used for unit testing. + +**Integration Tests**: Integration tests are used to test how different components work together. [Cypress](https://www.cypress.io) or [Playwright](https://playwright.dev) are commonly used for integration testing. diff --git a/docs/react/testing/unit-testing/best-practices.md b/docs/react/testing/unit-testing/best-practices.md new file mode 100644 index 00000000000..ce1562d391f --- /dev/null +++ b/docs/react/testing/unit-testing/best-practices.md @@ -0,0 +1,51 @@ +--- +sidebar_label: Best Practices +--- + +# Best Practices + +## IonApp is required for test templates + +In your test template when rendering with React Testing Library, you must wrap your component with an `IonApp` component. This is required for the component to be rendered correctly. + +```tsx title="Example.test.tsx" +import { IonApp } from '@ionic/react'; +import { render } from "@testing-library/react"; + +import Example from './Example'; + +test('example', () => { + render( + + + + ); + ... +}); +``` + +## Use `user-event` for user interactions + +React Testing Library recommends using the `user-event` library for simulating user interactions. This library provides a more realistic simulation of user interactions than the `fireEvent` function provided by React Testing Library. + +```tsx title="Example.test.tsx" +import { IonApp } from '@ionic/react'; +import { render } from '@testing-library/react'; +import userEvent from '@testing-library/user-event'; + +import Example from './Example'; + +test('example', async () => { + const user = userEvent.setup(); + + render( + + + + ); + + await user.click(screen.getByRole('button', { name: /click me!/i })); +}); +``` + +For more information on `user-event`, see the [user-event documentation](https://testing-library.com/docs/user-event/intro/). diff --git a/docs/react/testing/unit-testing/examples.md b/docs/react/testing/unit-testing/examples.md new file mode 100644 index 00000000000..39275eef669 --- /dev/null +++ b/docs/react/testing/unit-testing/examples.md @@ -0,0 +1,112 @@ +--- +sidebar_label: Examples +title: Ionic React Testing Examples +description: Learn how to test an Ionic React application. This document provides examples of how to test different types of components. +--- + +# Examples + +## Testing a modal presented from a trigger + +This example shows how to test a modal that is presented from a trigger. The modal is presented when the user clicks a button. + +### Example component + +```tsx title="src/Example.tsx" +import { IonButton, IonModal } from '@ionic/react'; + +export default function Example() { + return ( + <> + Open + Modal content + + ); +} +``` + +### Testing the modal + +```tsx title="src/Example.test.tsx" +import { IonApp } from '@ionic/react'; +import { fireEvent, render, screen, waitFor } from '@testing-library/react'; + +import Example from './Example'; + +test('button presents a modal when clicked', async () => { + render( + + + + ); + // Simulate a click on the button + fireEvent.click(screen.getByText('Open')); + // Wait for the modal to be presented + await waitFor(() => { + // Assert that the modal is present + expect(screen.getByText('Modal content')).toBeInTheDocument(); + }); +}); +``` + +## Testing a modal presented from useIonModal + +This example shows how to test a modal that is presented using the `useIonModal` hook. The modal is presented when the user clicks a button. + +### Example component + +```tsx title="src/Example.tsx" +import { IonContent, useIonModal, IonHeader, IonToolbar, IonTitle, IonButton, IonPage } from '@ionic/react'; + +const ModalContent: React.FC = () => { + return ( + +
Modal Content
+
+ ); +}; + +const Example: React.FC = () => { + const [present] = useIonModal(ModalContent); + return ( + + + + Blank + + + + present()}> + Open + + + + ); +}; + +export default Example; +``` + +### Testing the modal + +```tsx title="src/Example.test.tsx" +import { IonApp } from '@ionic/react'; +import { fireEvent, render, screen, waitFor } from '@testing-library/react'; + +import Example from './Example'; + +test('should present ModalContent when button is clicked', async () => { + render( + + + + ); + // Simulate a click on the button + fireEvent.click(screen.getByText('Open')); + // Wait for the modal to be presented + await waitFor(() => { + // Assert that the modal is present + expect(screen.getByText('Modal Content')).toBeInTheDocument(); + }); +}); +``` diff --git a/docs/react/testing/unit-testing/setup.md b/docs/react/testing/unit-testing/setup.md new file mode 100644 index 00000000000..0e4cf3d1ed1 --- /dev/null +++ b/docs/react/testing/unit-testing/setup.md @@ -0,0 +1,40 @@ +--- +sidebar_label: Setup +title: Ionic React Unit Testing Setup +description: Learn how to set up unit tests for an Ionic React application. +--- + +# Unit Testing Setup + +Ionic requires a few additional steps to set up unit tests. If you are using an Ionic starter project, these steps have already been completed for you. + +### Install React Testing Library + +React Testing Library is a set of utilities that make it easier to test React components. It's used to interact with components and test their behavior. + +```bash +npm install --save-dev @testing-library/react @testing-library/jest-dom @testing-library/user-event +``` + +### Initialize Ionic React + +Ionic React requires the `setupIonicReact` function to be called before any tests are run. Failing to do so will result in mode-based classes and platform behaviors not being applied to your components. + +In `src/setupTest.ts`, add the following code: + +```diff +import '@testing-library/jest-dom/extend-expect'; + ++ import { setupIonicReact } from '@ionic/react'; + ++ setupIonicReact(); + +// Mock matchmedia +window.matchMedia = window.matchMedia || function () { + return { + matches: false, + addListener: function () { }, + removeListener: function () { } + }; +}; +``` diff --git a/docs/techniques/security.md b/docs/techniques/security.md index 9545d43c1b7..8c944469682 100644 --- a/docs/techniques/security.md +++ b/docs/techniques/security.md @@ -83,7 +83,11 @@ Ionic Framework provides an application config option called `sanitizerEnabled` Developers can also choose to eject from the sanitizer in certain scenarios. Ionic Framework provides the `IonicSafeString` class that allows developers to do just that. :::note -In order to bypass the sanitizer and use unsanitized custom HTML in the relevant Ionic components, `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config. See [Enabling Custom HTML Parsing](#enabling-custom-html-parsing-via-innerhtml) for more information. +In order to bypass the sanitizer and use unsanitized custom HTML in the relevant Ionic components, `innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config. + +`IonicSafeString` should not be used if `innerHTMLTemplatesEnabled` is set to `false`. + +See [Enabling Custom HTML Parsing](#enabling-custom-html-parsing-via-innerhtml) for more information. ::: #### Usage diff --git a/package-lock.json b/package-lock.json index d2d878b5e8a..7b62307a783 100644 --- a/package-lock.json +++ b/package-lock.json @@ -208,81 +208,6 @@ "node": ">=6.0.0" } }, - "node_modules/@babel/cli": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.23.0.tgz", - "integrity": "sha512-17E1oSkGk2IwNILM4jtfAvgjt+ohmpfBky8aLerUfYZhiPNg7ca+CRCxZn8QDxwNhV/upsc2VHBCqGFIR+iBfA==", - "peer": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", - "commander": "^4.0.1", - "convert-source-map": "^2.0.0", - "fs-readdir-recursive": "^1.1.0", - "glob": "^7.2.0", - "make-dir": "^2.1.0", - "slash": "^2.0.0" - }, - "bin": { - "babel": "bin/babel.js", - "babel-external-helpers": "bin/babel-external-helpers.js" - }, - "engines": { - "node": ">=6.9.0" - }, - "optionalDependencies": { - "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3", - "chokidar": "^3.4.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/cli/node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", - "peer": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@babel/cli/node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "peer": true - }, - "node_modules/@babel/cli/node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "peer": true, - "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@babel/cli/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "peer": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/@babel/cli/node_modules/slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", - "peer": true, - "engines": { - "node": ">=6" - } - }, "node_modules/@babel/code-frame": { "version": "7.22.5", "license": "MIT", @@ -750,38 +675,6 @@ "@babel/core": "^7.13.0" } }, - "node_modules/@babel/plugin-external-helpers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-external-helpers/-/plugin-external-helpers-7.22.5.tgz", - "integrity": "sha512-ngnNEWxmykPk82mH4ajZT0qTztr3Je6hrMuKAslZVM8G1YZTENJSYwrIGtt6KOtznug3exmAtF4so/nPqJuA4A==", - "peer": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", - "peer": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-proposal-object-rest-spread": { "version": "7.12.1", "license": "MIT", @@ -3129,27 +3022,6 @@ "node": ">=12" } }, - "node_modules/@emotion/is-prop-valid": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz", - "integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==", - "peer": true, - "dependencies": { - "@emotion/memoize": "^0.8.1" - } - }, - "node_modules/@emotion/memoize": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", - "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==", - "peer": true - }, - "node_modules/@emotion/unitless": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", - "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==", - "peer": true - }, "node_modules/@hapi/hoek": { "version": "9.3.0", "license": "BSD-3-Clause" @@ -3366,13 +3238,6 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/@nicolo-ribaudo/chokidar-2": { - "version": "2.1.8-no-fsevents.3", - "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz", - "integrity": "sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==", - "optional": true, - "peer": true - }, "node_modules/@nicolo-ribaudo/semver-v6": { "version": "6.3.3", "license": "ISC", @@ -4031,12 +3896,6 @@ "@types/node": "*" } }, - "node_modules/@types/stylis": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@types/stylis/-/stylis-4.2.1.tgz", - "integrity": "sha512-OSaMrXUKxVigGlKRrET39V2xdhzlztQ9Aqumn1WbCBKHOi9ry7jKSd7rkyj0GzmWaU960Rd+LpOFpLfx5bMQAg==", - "peer": true - }, "node_modules/@types/unist": { "version": "2.0.7", "license": "MIT" @@ -5036,15 +4895,6 @@ "node": ">= 6" } }, - "node_modules/camelize": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz", - "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==", - "peer": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/caniuse-api": { "version": "3.0.0", "license": "MIT", @@ -6110,15 +5960,6 @@ "node": ">=14" } }, - "node_modules/css-color-keywords": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", - "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==", - "peer": true, - "engines": { - "node": ">=4" - } - }, "node_modules/css-declaration-sorter": { "version": "6.4.1", "license": "ISC", @@ -6270,17 +6111,6 @@ "version": "0.1.1", "license": "MIT" }, - "node_modules/css-to-react-native": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", - "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==", - "peer": true, - "dependencies": { - "camelize": "^1.0.0", - "css-color-keywords": "^1.0.0", - "postcss-value-parser": "^4.0.2" - } - }, "node_modules/css-tree": { "version": "1.0.0-alpha.37", "license": "MIT", @@ -7671,12 +7501,6 @@ "version": "1.0.4", "license": "Unlicense" }, - "node_modules/fs-readdir-recursive": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", - "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==", - "peer": true - }, "node_modules/fs.realpath": { "version": "1.0.0", "license": "ISC" @@ -11997,21 +11821,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/rollup": { - "version": "2.79.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", - "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", - "peer": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=10.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, "node_modules/rtl-detect": { "version": "1.0.4", "license": "BSD-3-Clause" @@ -12265,12 +12074,6 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/search-insights": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.9.0.tgz", - "integrity": "sha512-bkWW9nIHOFkLwjQ1xqVaMbjjO5vhP26ERsH9Y3pKr8imthofEFIxlnOabkmGcw6ksRj9jWidcI65vvjJH/nTGg==", - "peer": true - }, "node_modules/section-matter": { "version": "1.0.0", "license": "MIT", @@ -12527,12 +12330,6 @@ "node": ">=8" } }, - "node_modules/shallowequal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", - "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==", - "peer": true - }, "node_modules/shebang-command": { "version": "2.0.0", "license": "MIT", @@ -12877,70 +12674,6 @@ "inline-style-parser": "0.1.1" } }, - "node_modules/styled-components": { - "version": "6.0.9", - "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-6.0.9.tgz", - "integrity": "sha512-dDEXXF66b4iQhI1YHgvkBqfdJPGj2EifyLd298PVs50nz7KDfBKnAmWVnkZtw6+Nb6Izf19BAUyfYy8p434JAg==", - "peer": true, - "dependencies": { - "@babel/cli": "^7.21.0", - "@babel/core": "^7.21.0", - "@babel/helper-module-imports": "^7.18.6", - "@babel/plugin-external-helpers": "^7.18.6", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.20.7", - "@babel/preset-env": "^7.20.2", - "@babel/preset-react": "^7.18.6", - "@babel/preset-typescript": "^7.21.0", - "@babel/traverse": "^7.21.2", - "@emotion/is-prop-valid": "^1.2.1", - "@emotion/unitless": "^0.8.0", - "@types/stylis": "^4.0.2", - "css-to-react-native": "^3.2.0", - "csstype": "^3.1.2", - "postcss": "^8.4.23", - "shallowequal": "^1.1.0", - "stylis": "^4.3.0", - "tslib": "^2.5.0" - }, - "engines": { - "node": ">= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/styled-components" - }, - "peerDependencies": { - "babel-plugin-styled-components": ">= 2", - "react": ">= 16.8.0", - "react-dom": ">= 16.8.0" - }, - "peerDependenciesMeta": { - "babel-plugin-styled-components": { - "optional": true - } - } - }, - "node_modules/styled-components/node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", - "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.", - "peer": true, - "dependencies": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/stylehacks": { "version": "5.1.1", "license": "MIT", @@ -12955,12 +12688,6 @@ "postcss": "^8.2.15" } }, - "node_modules/stylis": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.0.tgz", - "integrity": "sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==", - "peer": true - }, "node_modules/supports-color": { "version": "7.2.0", "license": "MIT", @@ -13459,6 +13186,7 @@ }, "node_modules/typescript": { "version": "4.9.5", + "dev": true, "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", diff --git a/scripts/data/translated-api.json b/scripts/data/translated-api.json index dab75fa6d35..37acff490aa 100644 --- a/scripts/data/translated-api.json +++ b/scripts/data/translated-api.json @@ -28247,7 +28247,7 @@ "mutable": false, "attr": "position", "reflectToAttr": false, - "docs": "The starting position of the toast on the screen. Can be tweaked further\nusing the `positionAnchor` property.", + "docs": "画面上のトーストの開始位置。`positionAnchor` プロパティを使ってさらに微調整できます。", "docsTags": [], "default": "'bottom'", "values": [ @@ -28283,7 +28283,7 @@ "mutable": false, "attr": "position-anchor", "reflectToAttr": false, - "docs": "The element to anchor the toast's position to. Can be set as a direct reference\nor the ID of the element. With `position=\"bottom\"`, the toast will sit above the\nchosen element. With `position=\"top\"`, the toast will sit below the chosen element.\nWith `position=\"middle\"`, the value of `positionAnchor` is ignored.", + "docs": "トーストの位置を固定する要素。直接参照するか、要素のIDを指定します。 `position=\"bottom\"` の場合、トーストは選択した要素の上に表示されます。 `position=\"top\"` の場合、トーストは選択した要素の下に位置します。 `position=\"middle\"` の場合、`positionAnchor`の値は無視されます。", "docsTags": [], "values": [ { @@ -29767,4 +29767,4 @@ "dependencyGraph": {} } ] -} \ No newline at end of file +} diff --git a/scripts/data/translated-cli.json b/scripts/data/translated-cli.json index f9db3c88368..98fe1383cb4 100644 --- a/scripts/data/translated-cli.json +++ b/scripts/data/translated-cli.json @@ -3621,7 +3621,7 @@ "ssh" ], "summary": "Set your active Ionic SSH key", - "description": "This command modifies the SSH configuration file (**~/.ssh/config**) to set an active private key for the **`git.ionicjs.com`** host. Read more about SSH configuration by running the `man ssh_config` command or by visiting online man [pages](https://linux.die.net/man/5/ssh_config).\n\nBefore making changes, `ionic ssh use` will print a diff and ask for permission to write the file.", + "description": "This command modifies the SSH configuration file (**~/.ssh/config**) to set an active private key for the **`git.ionicjs.com`** host. Read more about SSH configuration by running the `man ssh_config` command or by visiting online man [pages](https://linux.die.net/man/5/ssh_config).\n\nBefore making changes, `ionic ssh use` will print a diff and ask for permission to write the file.\n", "footnotes": [], "groups": [], "exampleCommands": [], diff --git a/sidebars.js b/sidebars.js index 7dad0822981..445af171662 100644 --- a/sidebars.js +++ b/sidebars.js @@ -122,7 +122,23 @@ module.exports = { 'react/pwa', 'react/overlays', 'react/storage', - 'react/testing', + { + type: 'category', + label: 'Testing', + items: [ + 'react/testing/introduction', + { + type: 'category', + label: 'Unit Testing', + collapsed: false, + items: [ + 'react/testing/unit-testing/setup', + 'react/testing/unit-testing/examples', + 'react/testing/unit-testing/best-practices', + ], + }, + ], + }, 'react/performance', ], }, diff --git a/src/translate/.detection/cli/build.readme.md b/src/translate/.detection/cli/build.readme.md index 5f6c540c109..7de5f855455 100644 --- a/src/translate/.detection/cli/build.readme.md +++ b/src/translate/.detection/cli/build.readme.md @@ -1,3 +1,3 @@ `ionic build` will perform an Ionic build, which compiles web assets and prepares them for deployment. -`ionic build` uses the Angular CLI. Use `ng build --help` to list all Angular CLI options for building your app. See the `ng build` [docs](https://angular.io/cli/build) for explanations. Options not listed below are considered advanced and can be passed to the `ng` CLI using the `--` separator after the Ionic CLI arguments. See the examples. +`ionic build` uses the Angular CLI. Use `ng build --help` to list all Angular CLI options for building your app. See the `ng build` [docs](https://angular.io/cli/build) for explanations. Options not listed below are considered advanced and can be passed to the `ng` CLI using the `--` separator after the Ionic CLI arguments. See the examples. \ No newline at end of file diff --git a/src/translate/.detection/cli/capacitor-add.readme.md b/src/translate/.detection/cli/capacitor-add.readme.md index 464a4fb5a49..6a1ecf8bc10 100644 --- a/src/translate/.detection/cli/capacitor-add.readme.md +++ b/src/translate/.detection/cli/capacitor-add.readme.md @@ -1,4 +1,3 @@ `ionic capacitor add` will do the following: - - Install the Capacitor platform package -- Copy the native platform template into your project +- Copy the native platform template into your project \ No newline at end of file diff --git a/src/translate/.detection/cli/capacitor-build.readme.md b/src/translate/.detection/cli/capacitor-build.readme.md index ecbb4a9e00a..0ccb955a383 100644 --- a/src/translate/.detection/cli/capacitor-build.readme.md +++ b/src/translate/.detection/cli/capacitor-build.readme.md @@ -1,9 +1,8 @@ `ionic capacitor build` will do the following: - - Perform `ionic build` - Copy web assets into the specified native platform - Open the IDE for your native project (Xcode for iOS, Android Studio for Android) Once the web assets and configuration are copied into your native project, you can build your app using the native IDE. Unfortunately, programmatically building the native project is not yet supported. -To configure your native project, see the common configuration [docs](https://capacitorjs.com/docs/basics/configuring-your-app) as well as low-level configuration for [iOS](https://capacitorjs.com/docs/ios/configuration) and [Android](https://capacitorjs.com/docs/android/configuration). +To configure your native project, see the common configuration [docs](https://capacitorjs.com/docs/basics/configuring-your-app) as well as low-level configuration for [iOS](https://capacitorjs.com/docs/ios/configuration) and [Android](https://capacitorjs.com/docs/android/configuration). \ No newline at end of file diff --git a/src/translate/.detection/cli/capacitor-copy.readme.md b/src/translate/.detection/cli/capacitor-copy.readme.md index ad813a2f858..2e5ddd1f0e7 100644 --- a/src/translate/.detection/cli/capacitor-copy.readme.md +++ b/src/translate/.detection/cli/capacitor-copy.readme.md @@ -1,4 +1,3 @@ `ionic capacitor copy` will do the following: - - Perform an Ionic build, which compiles web assets -- Copy web assets to Capacitor native platform(s) +- Copy web assets to Capacitor native platform(s) \ No newline at end of file diff --git a/src/translate/.detection/cli/capacitor-open.readme.md b/src/translate/.detection/cli/capacitor-open.readme.md index c52c1f44711..6a4f8a5eeba 100644 --- a/src/translate/.detection/cli/capacitor-open.readme.md +++ b/src/translate/.detection/cli/capacitor-open.readme.md @@ -1,3 +1,2 @@ `ionic capacitor open` will do the following: - -- Open the IDE for your native project (Xcode for iOS, Android Studio for Android) +- Open the IDE for your native project (Xcode for iOS, Android Studio for Android) \ No newline at end of file diff --git a/src/translate/.detection/cli/capacitor-run.readme.md b/src/translate/.detection/cli/capacitor-run.readme.md index 56a76e0d464..a17e32b9a99 100644 --- a/src/translate/.detection/cli/capacitor-run.readme.md +++ b/src/translate/.detection/cli/capacitor-run.readme.md @@ -1,5 +1,4 @@ `ionic capacitor run` will do the following: - - Perform `ionic build` (or run the dev server from `ionic serve` with the `--livereload` option) - Run `capacitor run` (or open IDE for your native project with the `--open` option) @@ -7,4 +6,4 @@ When using `--livereload` with hardware devices, remember that livereload needs If you have multiple devices and emulators, you can target a specific one by ID with the `--target` option. You can list targets with `--list`. -For Android and iOS, you can setup Remote Debugging on your device with browser development tools using these [docs](https://ionicframework.com/docs/developer-resources/developer-tips). +For Android and iOS, you can setup Remote Debugging on your device with browser development tools using these [docs](https://ionicframework.com/docs/developer-resources/developer-tips). \ No newline at end of file diff --git a/src/translate/.detection/cli/capacitor-sync.readme.md b/src/translate/.detection/cli/capacitor-sync.readme.md index 403ecdf9af3..4ab54b5269d 100644 --- a/src/translate/.detection/cli/capacitor-sync.readme.md +++ b/src/translate/.detection/cli/capacitor-sync.readme.md @@ -1,6 +1,5 @@ `ionic capacitor sync` will do the following: - - Perform an Ionic build, which compiles web assets - Copy web assets to Capacitor native platform(s) - Update Capacitor native platform(s) and dependencies -- Install any discovered Capacitor or Cordova plugins +- Install any discovered Capacitor or Cordova plugins \ No newline at end of file diff --git a/src/translate/.detection/cli/capacitor-update.readme.md b/src/translate/.detection/cli/capacitor-update.readme.md index 6691448d373..6941a9bbe77 100644 --- a/src/translate/.detection/cli/capacitor-update.readme.md +++ b/src/translate/.detection/cli/capacitor-update.readme.md @@ -1,4 +1,3 @@ `ionic capacitor update` will do the following: - - Update Capacitor native platform(s) and dependencies -- Install any discovered Capacitor or Cordova plugins +- Install any discovered Capacitor or Cordova plugins \ No newline at end of file diff --git a/src/translate/.detection/cli/completion.readme.md b/src/translate/.detection/cli/completion.readme.md index 98969ac91c0..c614f27c143 100644 --- a/src/translate/.detection/cli/completion.readme.md +++ b/src/translate/.detection/cli/completion.readme.md @@ -1,3 +1,3 @@ This command is experimental and only works for Z shell (zsh) and non-Windows platforms. -To enable completions for the Ionic CLI, you can add the completion code that this command prints to your **~/.zshrc** (or any other file loaded with your shell). See the examples. +To enable completions for the Ionic CLI, you can add the completion code that this command prints to your **~/.zshrc** (or any other file loaded with your shell). See the examples. \ No newline at end of file diff --git a/src/translate/.detection/cli/config-get.readme.md b/src/translate/.detection/cli/config-get.readme.md index b993225035b..ecfdc6708ac 100644 --- a/src/translate/.detection/cli/config-get.readme.md +++ b/src/translate/.detection/cli/config-get.readme.md @@ -8,4 +8,4 @@ For multi-app projects, this command is scoped to the current project by default If you are using this command programmatically, you can use the `--json` option. -This command will sanitize config output for known sensitive fields (disabled when using `--json`). +This command will sanitize config output for known sensitive fields (disabled when using `--json`). \ No newline at end of file diff --git a/src/translate/.detection/cli/config-set.readme.md b/src/translate/.detection/cli/config-set.readme.md index 4cfe7872088..fd2916c6e27 100644 --- a/src/translate/.detection/cli/config-set.readme.md +++ b/src/translate/.detection/cli/config-set.readme.md @@ -6,4 +6,4 @@ For multi-app projects, this command is scoped to the current project by default This command will attempt to coerce `value` into a suitable JSON type. If it is JSON-parsable, such as `123`, `true`, `[]`, etc., then it takes the parsed result. Otherwise, the value is interpreted as a string. For stricter input, use `--json`, which will error with non-JSON values. -By default, if `property` exists and is an object or an array, the value is not overwritten. To disable this check and always overwrite the property, use `--force`. +By default, if `property` exists and is an object or an array, the value is not overwritten. To disable this check and always overwrite the property, use `--force`. \ No newline at end of file diff --git a/src/translate/.detection/cli/config-unset.readme.md b/src/translate/.detection/cli/config-unset.readme.md index 7dca73c33a4..9b7c09a8699 100644 --- a/src/translate/.detection/cli/config-unset.readme.md +++ b/src/translate/.detection/cli/config-unset.readme.md @@ -2,4 +2,4 @@ This command deletes configuration values from the project's **./ionic.config.js For nested properties, separate nest levels with dots. For example, the property name `integrations.cordova` will look in the **integrations** object for the **cordova** property. -For multi-app projects, this command is scoped to the current project by default. To operate at the root of the project configuration file instead, use the `--root` option. +For multi-app projects, this command is scoped to the current project by default. To operate at the root of the project configuration file instead, use the `--root` option. \ No newline at end of file diff --git a/src/translate/.detection/cli/cordova-build.readme.md b/src/translate/.detection/cli/cordova-build.readme.md index 5859a7e2658..774bb3c3bab 100644 --- a/src/translate/.detection/cli/cordova-build.readme.md +++ b/src/translate/.detection/cli/cordova-build.readme.md @@ -2,4 +2,4 @@ Like running `cordova build` directly, `ionic cordova build` also builds web ass To pass additional options to the Cordova CLI, use the `--` separator after the Ionic CLI arguments. -The Cordova CLI requires a separator for platform-specific arguments for Android [builds](https://cordova.apache.org/docs/en/latest/guide/platforms/android/index.html#using-flags), so an additional separator is required for the Ionic CLI, but it is not required for iOS [builds](https://cordova.apache.org/docs/en/latest/guide/platforms/ios/index.html#using-flags). See the example commands for usage with separators. To avoid using flags, consider using `--buildConfig` with a **build.json** file. +The Cordova CLI requires a separator for platform-specific arguments for Android [builds](https://cordova.apache.org/docs/en/latest/guide/platforms/android/index.html#using-flags), so an additional separator is required for the Ionic CLI, but it is not required for iOS [builds](https://cordova.apache.org/docs/en/latest/guide/platforms/ios/index.html#using-flags). See the example commands for usage with separators. To avoid using flags, consider using `--buildConfig` with a **build.json** file. \ No newline at end of file diff --git a/src/translate/.detection/cli/cordova-compile.readme.md b/src/translate/.detection/cli/cordova-compile.readme.md index f234fefe548..947b914334f 100644 --- a/src/translate/.detection/cli/cordova-compile.readme.md +++ b/src/translate/.detection/cli/cordova-compile.readme.md @@ -1 +1 @@ -Like running `cordova compile` directly, but provides friendly checks. +Like running `cordova compile` directly, but provides friendly checks. \ No newline at end of file diff --git a/src/translate/.detection/cli/cordova-emulate.readme.md b/src/translate/.detection/cli/cordova-emulate.readme.md index 7595cd2ca30..bd396957a25 100644 --- a/src/translate/.detection/cli/cordova-emulate.readme.md +++ b/src/translate/.detection/cli/cordova-emulate.readme.md @@ -8,4 +8,4 @@ For Android and iOS, you can setup Remote Debugging on your device with browser When using `--livereload` with hardware devices, remember that livereload needs an active connection between device and computer. In some scenarios, you may need to host the dev server on an external address using the `--external` option. See these [docs](https://ionicframework.com/docs/cli/livereload) for more information. -Just like with `ionic cordova build`, you can pass additional options to the Cordova CLI using the `--` separator. To pass additional options to the dev server, consider using `ionic serve` separately and using the `--livereload-url` option. +Just like with `ionic cordova build`, you can pass additional options to the Cordova CLI using the `--` separator. To pass additional options to the dev server, consider using `ionic serve` separately and using the `--livereload-url` option. \ No newline at end of file diff --git a/src/translate/.detection/cli/cordova-platform.readme.md b/src/translate/.detection/cli/cordova-platform.readme.md index 1b289c0ac8f..f65aea27395 100644 --- a/src/translate/.detection/cli/cordova-platform.readme.md +++ b/src/translate/.detection/cli/cordova-platform.readme.md @@ -1 +1 @@ -Like running `cordova platform` directly, but adds default Ionic icons and splash screen resources (during `add`) and provides friendly checks. +Like running `cordova platform` directly, but adds default Ionic icons and splash screen resources (during `add`) and provides friendly checks. \ No newline at end of file diff --git a/src/translate/.detection/cli/cordova-plugin.readme.md b/src/translate/.detection/cli/cordova-plugin.readme.md index 162ba073340..b3ea63900d4 100644 --- a/src/translate/.detection/cli/cordova-plugin.readme.md +++ b/src/translate/.detection/cli/cordova-plugin.readme.md @@ -1 +1 @@ -Like running `cordova plugin` directly, but provides friendly checks. +Like running `cordova plugin` directly, but provides friendly checks. \ No newline at end of file diff --git a/src/translate/.detection/cli/cordova-prepare.readme.md b/src/translate/.detection/cli/cordova-prepare.readme.md index 6ae022dcaa0..90b7d18e711 100644 --- a/src/translate/.detection/cli/cordova-prepare.readme.md +++ b/src/translate/.detection/cli/cordova-prepare.readme.md @@ -6,4 +6,4 @@ - Copy icons and splash screens from **resources/** to into your Cordova platforms. - Copy plugin files into specified platforms. -You may wish to use `ionic cordova prepare` if you run your project with Android Studio or Xcode. +You may wish to use `ionic cordova prepare` if you run your project with Android Studio or Xcode. \ No newline at end of file diff --git a/src/translate/.detection/cli/cordova-requirements.readme.md b/src/translate/.detection/cli/cordova-requirements.readme.md index edf47772b1f..04bdf9cef01 100644 --- a/src/translate/.detection/cli/cordova-requirements.readme.md +++ b/src/translate/.detection/cli/cordova-requirements.readme.md @@ -1 +1 @@ -Like running `cordova requirements` directly, but provides friendly checks. +Like running `cordova requirements` directly, but provides friendly checks. \ No newline at end of file diff --git a/src/translate/.detection/cli/cordova-resources.readme.md b/src/translate/.detection/cli/cordova-resources.readme.md index e93fdd8a890..730573a47c3 100644 --- a/src/translate/.detection/cli/cordova-resources.readme.md +++ b/src/translate/.detection/cli/cordova-resources.readme.md @@ -11,6 +11,5 @@ For best results, the splash screen's artwork should roughly fit within a square This command uses the `cordova-res` [utility](https://github.com/ionic-team/cordova-res) to generate resources locally. Cordova reference documentation: - - Icons: **[https://cordova.apache.org/docs/en/latest/config_ref/images.html](https://cordova.apache.org/docs/en/latest/config_ref/images.html)** -- Splash Screens: **[https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-splashscreen/](https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-splashscreen/)** +- Splash Screens: **[https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-splashscreen/](https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-splashscreen/)** \ No newline at end of file diff --git a/src/translate/.detection/cli/cordova-run.readme.md b/src/translate/.detection/cli/cordova-run.readme.md index 7595cd2ca30..bd396957a25 100644 --- a/src/translate/.detection/cli/cordova-run.readme.md +++ b/src/translate/.detection/cli/cordova-run.readme.md @@ -8,4 +8,4 @@ For Android and iOS, you can setup Remote Debugging on your device with browser When using `--livereload` with hardware devices, remember that livereload needs an active connection between device and computer. In some scenarios, you may need to host the dev server on an external address using the `--external` option. See these [docs](https://ionicframework.com/docs/cli/livereload) for more information. -Just like with `ionic cordova build`, you can pass additional options to the Cordova CLI using the `--` separator. To pass additional options to the dev server, consider using `ionic serve` separately and using the `--livereload-url` option. +Just like with `ionic cordova build`, you can pass additional options to the Cordova CLI using the `--` separator. To pass additional options to the dev server, consider using `ionic serve` separately and using the `--livereload-url` option. \ No newline at end of file diff --git a/src/translate/.detection/cli/generate.readme.md b/src/translate/.detection/cli/generate.readme.md index 042f64a7a4c..30de99a2484 100644 --- a/src/translate/.detection/cli/generate.readme.md +++ b/src/translate/.detection/cli/generate.readme.md @@ -1,8 +1,8 @@ Automatically create framework features with Ionic Generate. This command uses the Angular CLI to generate features such as `pages`, `components`, `directives`, `services`, and more. -- For a full list of available types, use `npx ng g --help` -- For a list of options for a types, use `npx ng g --help` + - For a full list of available types, use `npx ng g --help` + - For a list of options for a types, use `npx ng g --help` You can specify a path to nest your feature within any number of subdirectories. For example, specify a name of `"pages/New Page"` to generate page files at **src/app/pages/new-page/**. -To test a generator before file modifications are made, use the `--dry-run` option. +To test a generator before file modifications are made, use the `--dry-run` option. \ No newline at end of file diff --git a/src/translate/.detection/cli/git-remote.readme.md b/src/translate/.detection/cli/git-remote.readme.md index 58347c24535..b4caf425642 100644 --- a/src/translate/.detection/cli/git-remote.readme.md +++ b/src/translate/.detection/cli/git-remote.readme.md @@ -1,3 +1,3 @@ This command is used by `ionic link` when Appflow is used as the git host. -`ionic git remote` will check the local repository for whether or not the git remote is properly set up. This command operates on the **ionic** remote. For advanced configuration, see **Settings** => **Git** in the app settings of the [Dashboard](https://dashboard.ionicframework.com). +`ionic git remote` will check the local repository for whether or not the git remote is properly set up. This command operates on the **ionic** remote. For advanced configuration, see **Settings** => **Git** in the app settings of the [Dashboard](https://dashboard.ionicframework.com). \ No newline at end of file diff --git a/src/translate/.detection/cli/info.readme.md b/src/translate/.detection/cli/info.readme.md index d633e373984..03f86bc2907 100644 --- a/src/translate/.detection/cli/info.readme.md +++ b/src/translate/.detection/cli/info.readme.md @@ -1 +1 @@ -This command is an easy way to share information about your setup. If applicable, be sure to run `ionic info` within your project directory to display even more information. +This command is an easy way to share information about your setup. If applicable, be sure to run `ionic info` within your project directory to display even more information. \ No newline at end of file diff --git a/src/translate/.detection/cli/init.readme.md b/src/translate/.detection/cli/init.readme.md index 918620be789..98b3118bed5 100644 --- a/src/translate/.detection/cli/init.readme.md +++ b/src/translate/.detection/cli/init.readme.md @@ -2,4 +2,4 @@ This command will initialize an Ionic app within the current directory. Usually, `ionic init` will prompt for a project name and then proceed to determine the type of your project. You can specify the `name` argument and `--type` option to provide these values via command-line. -If the `--multi-app` flag is specified, this command will initialize your project as a multi-app project, allowing for apps within monorepos and unconventional repository structures. See the multi-app [docs](https://ionicframework.com/docs/cli/configuration#multi-app-projects) for details. Once a multi-app project is initialized, you can run `ionic init` again within apps in your project to initialize them. +If the `--multi-app` flag is specified, this command will initialize your project as a multi-app project, allowing for apps within monorepos and unconventional repository structures. See the multi-app [docs](https://ionicframework.com/docs/cli/configuration#multi-app-projects) for details. Once a multi-app project is initialized, you can run `ionic init` again within apps in your project to initialize them. \ No newline at end of file diff --git a/src/translate/.detection/cli/integrations-disable.readme.md b/src/translate/.detection/cli/integrations-disable.readme.md index b4f4a38bdd0..5418badf555 100644 --- a/src/translate/.detection/cli/integrations-disable.readme.md +++ b/src/translate/.detection/cli/integrations-disable.readme.md @@ -1 +1 @@ -Integrations, such as Cordova, can be disabled with this command. +Integrations, such as Cordova, can be disabled with this command. \ No newline at end of file diff --git a/src/translate/.detection/cli/integrations-enable.readme.md b/src/translate/.detection/cli/integrations-enable.readme.md index 76526785eaa..945fcbbb226 100644 --- a/src/translate/.detection/cli/integrations-enable.readme.md +++ b/src/translate/.detection/cli/integrations-enable.readme.md @@ -1,3 +1,3 @@ Integrations, such as Cordova, can be enabled with this command. If the integration has never been added to the project, `ionic integrations enable` will download and add the integration. -Integrations can be re-added with the `--add` option. +Integrations can be re-added with the `--add` option. \ No newline at end of file diff --git a/src/translate/.detection/cli/integrations-list.readme.md b/src/translate/.detection/cli/integrations-list.readme.md index d075d211e95..044dd455e0e 100644 --- a/src/translate/.detection/cli/integrations-list.readme.md +++ b/src/translate/.detection/cli/integrations-list.readme.md @@ -1,4 +1,4 @@ This command will print the status of integrations in Ionic projects. Integrations can be **enabled** (added and enabled), **disabled** (added but disabled), and **not added** (never added to the project). - To enable or add integrations, see `ionic integrations enable --help` -- To disable integrations, see `ionic integrations disable --help` +- To disable integrations, see `ionic integrations disable --help` \ No newline at end of file diff --git a/src/translate/.detection/cli/link.readme.md b/src/translate/.detection/cli/link.readme.md index f5a96a51946..e621a2e948a 100644 --- a/src/translate/.detection/cli/link.readme.md +++ b/src/translate/.detection/cli/link.readme.md @@ -6,4 +6,4 @@ Appflow uses a git-based workflow to manage app updates. During the linking proc Ultimately, this command sets the **id** property in **./ionic.config.json**, which marks this app as linked. -If you are having issues linking, please get in touch with our [Support](https://ion.link/support-request). +If you are having issues linking, please get in touch with our [Support](https://ion.link/support-request). \ No newline at end of file diff --git a/src/translate/.detection/cli/live-update-add.readme.md b/src/translate/.detection/cli/live-update-add.readme.md index d2aebb869cd..bc0316117d7 100644 --- a/src/translate/.detection/cli/live-update-add.readme.md +++ b/src/translate/.detection/cli/live-update-add.readme.md @@ -2,4 +2,4 @@ This command adds the Appflow Live Update plugin (`cordova-plugin-ionic`) for bo For Capacitor projects it runs all the steps necessary to install the plugin, sync with the native projects and add the configuration to the proper iOS and Android configuration files. -For Cordova projects it just takes care of running the proper Cordova CLI command with the submitted parameters. +For Cordova projects it just takes care of running the proper Cordova CLI command with the submitted parameters. \ No newline at end of file diff --git a/src/translate/.detection/cli/live-update-configure.readme.md b/src/translate/.detection/cli/live-update-configure.readme.md index d4bc34cffba..1d8c7504c8f 100644 --- a/src/translate/.detection/cli/live-update-configure.readme.md +++ b/src/translate/.detection/cli/live-update-configure.readme.md @@ -2,4 +2,4 @@ This command overrides configuration for the Appflow Live Update plugin (`cordov For Capacitor projects, if the plugin is already installed, it overrides the configuration variables in the native projects. -For Cordova projects this is not implemented because it is better to reinstall the plugin with the different parameters and let Cordova deal with the changes. +For Cordova projects this is not implemented because it is better to reinstall the plugin with the different parameters and let Cordova deal with the changes. \ No newline at end of file diff --git a/src/translate/.detection/cli/login.readme.md b/src/translate/.detection/cli/login.readme.md index ce63bb58ac0..0fbe95d2ae8 100644 --- a/src/translate/.detection/cli/login.readme.md +++ b/src/translate/.detection/cli/login.readme.md @@ -4,4 +4,4 @@ If the `IONIC_TOKEN` environment variable is set, the CLI will automatically aut If you need to create an Ionic account, use `ionic signup` or the Ionic [Website](https://ionicframework.com/signup). -If you are having issues logging in, please get in touch with our [Support](https://ion.link/support-request). +If you are having issues logging in, please get in touch with our [Support](https://ion.link/support-request). \ No newline at end of file diff --git a/src/translate/.detection/cli/logout.readme.md b/src/translate/.detection/cli/logout.readme.md index 540a69a156c..4122a7422e5 100644 --- a/src/translate/.detection/cli/logout.readme.md +++ b/src/translate/.detection/cli/logout.readme.md @@ -2,4 +2,4 @@ Remove the Ionic user token from the CLI config. Log in again with `ionic login`. -If you need to create an Ionic account, use `ionic signup`. +If you need to create an Ionic account, use `ionic signup`. \ No newline at end of file diff --git a/src/translate/.detection/cli/repair.readme.md b/src/translate/.detection/cli/repair.readme.md index 9b01e9d40d8..dbb18055c3a 100644 --- a/src/translate/.detection/cli/repair.readme.md +++ b/src/translate/.detection/cli/repair.readme.md @@ -1,3 +1,3 @@ This command may be useful when obscure errors or issues are encountered. It removes and recreates dependencies of your project. -For Cordova apps, it removes and recreates the generated native project and the native dependencies of your project. +For Cordova apps, it removes and recreates the generated native project and the native dependencies of your project. \ No newline at end of file diff --git a/src/translate/.detection/cli/serve.readme.md b/src/translate/.detection/cli/serve.readme.md index a9b7bd7d2af..b08bf89fccf 100644 --- a/src/translate/.detection/cli/serve.readme.md +++ b/src/translate/.detection/cli/serve.readme.md @@ -4,4 +4,4 @@ By default, `ionic serve` boots up a development server on `localhost`. To serve `ionic serve` uses the Angular CLI. Use `ng serve --help` to list all Angular CLI options for serving your app. See the `ng serve` [docs](https://angular.io/cli/serve) for explanations. Options not listed below are considered advanced and can be passed to the Angular CLI using the `--` separator after the Ionic CLI arguments. See the examples. -The dev server can use HTTPS via the `--ssl` option **(experimental)**. There are several known issues with HTTPS. See issue [#3305](https://github.com/ionic-team/ionic-cli/issues/3305). +The dev server can use HTTPS via the `--ssl` option **(experimental)**. There are several known issues with HTTPS. See issue [#3305](https://github.com/ionic-team/ionic-cli/issues/3305). \ No newline at end of file diff --git a/src/translate/.detection/cli/signup.readme.md b/src/translate/.detection/cli/signup.readme.md index 82d215181a5..4761dfdf982 100644 --- a/src/translate/.detection/cli/signup.readme.md +++ b/src/translate/.detection/cli/signup.readme.md @@ -1 +1 @@ -If you are having issues signing up, please get in touch with our [Support](https://ion.link/support-request). +If you are having issues signing up, please get in touch with our [Support](https://ion.link/support-request). \ No newline at end of file diff --git a/src/translate/.detection/cli/ssh-setup.readme.md b/src/translate/.detection/cli/ssh-setup.readme.md index b95050beae9..f6ed6f93cb8 100644 --- a/src/translate/.detection/cli/ssh-setup.readme.md +++ b/src/translate/.detection/cli/ssh-setup.readme.md @@ -1,3 +1,3 @@ This command offers a setup wizard for Ionic SSH keys using a series of prompts. For more control, see the commands available for managing SSH keys with the `ionic ssh --help` command. For an entirely manual approach, see **Personal Settings** => **SSH Keys** in the [Dashboard](https://dashboard.ionicframework.com/settings/ssh-keys). -If you are having issues setting up SSH keys, please get in touch with our [Support](https://ion.link/support-request). +If you are having issues setting up SSH keys, please get in touch with our [Support](https://ion.link/support-request). \ No newline at end of file diff --git a/src/translate/.detection/cli/ssh-use.readme.md b/src/translate/.detection/cli/ssh-use.readme.md index 4714fa29928..b9a78d4db3e 100644 --- a/src/translate/.detection/cli/ssh-use.readme.md +++ b/src/translate/.detection/cli/ssh-use.readme.md @@ -1,3 +1,3 @@ This command modifies the SSH configuration file (**~/.ssh/config**) to set an active private key for the **git.ionicjs.com** host. Read more about SSH configuration by running the `man ssh_config` command or by visiting online man [pages](https://linux.die.net/man/5/ssh_config). -Before making changes, `ionic ssh use` will print a diff and ask for permission to write the file. +Before making changes, `ionic ssh use` will print a diff and ask for permission to write the file. \ No newline at end of file diff --git a/src/translate/.detection/cli/ssl-generate.readme.md b/src/translate/.detection/cli/ssl-generate.readme.md index aea3ec98cc5..c49644b96ef 100644 --- a/src/translate/.detection/cli/ssl-generate.readme.md +++ b/src/translate/.detection/cli/ssl-generate.readme.md @@ -2,4 +2,4 @@ Uses OpenSSL to create a self-signed certificate for **localhost** (by default). After the certificate is generated, you will still need to add it to your system or browser as a trusted certificate. -The default directory for `--key-path` and `--cert-path` is `.ionic/ssl/`. +The default directory for `--key-path` and `--cert-path` is `.ionic/ssl/`. \ No newline at end of file diff --git a/src/translate/.detection/cli/start.readme.md b/src/translate/.detection/cli/start.readme.md index 9b3d3b471e4..45b725f705d 100644 --- a/src/translate/.detection/cli/start.readme.md +++ b/src/translate/.detection/cli/start.readme.md @@ -6,4 +6,4 @@ The first argument is your app's `name`. Don't worry--you can always change this The second argument is the `template` from which to generate your app. You can list all templates with the `--list` option. You can also specify a git repository URL for `template`, in which case the existing project will be cloned. -Use the `--type` option to start projects using older versions of Ionic. For example, you can start an Ionic 3 project with `--type=ionic-angular`. Use `--list` to see all project types and templates. +Use the `--type` option to start projects using older versions of Ionic. For example, you can start an Ionic 3 project with `--type=ionic-angular`. Use `--list` to see all project types and templates. \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-abbyy-rtr.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-abbyy-rtr.readme.md index 986eeabbc94..1fbd6aab841 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-abbyy-rtr.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-abbyy-rtr.readme.md @@ -1,2 +1,3 @@ + This plugin allows to use the Text Capture and Data Capture features of ABBYY Real-Time Recognition SDK (RTR SDK) in apps. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-actsheet.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-actsheet.readme.md index 90e1ee9b77e..deb9dde4602 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-actsheet.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-actsheet.readme.md @@ -1,3 +1,4 @@ + The ActionSheet plugin shows a native list of options the user can choose from. Requires Cordova plugin: `cordova-plugin-actionsheet`. For more info, please see the [ActionSheet plugin docs](https://github.com/EddyVerbruggen/cordova-plugin-actionsheet). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-adjust.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-adjust.readme.md index 11db0748e34..420a0d400d4 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-adjust.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-adjust.readme.md @@ -1,3 +1,4 @@ + This is the Ionic Cordova SDK of Adjust™. You can read more about Adjust™ at adjust.com. Requires Cordova plugin: `com.adjust.sdk`. For more info, please see the [Adjust Cordova SDK](https://github.com/adjust/cordova_sdk) diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-admob-free.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-admob-free.readme.md index a21a70fb083..fb2004ca29c 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-admob-free.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-admob-free.readme.md @@ -1,3 +1,4 @@ + A free, no ad-sharing version of Google AdMob plugin for Cordova. Requires Cordova plugin: `cordova-plugin-admob-free`. For more info, please see the [AdMob Free plugin docs](https://github.com/ratson/cordova-plugin-admob-free). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-admob-plus.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-admob-plus.readme.md index 41472b2e411..56e36fe9053 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-admob-plus.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-admob-plus.readme.md @@ -1 +1,2 @@ + AdMob Plus is the successor of cordova-plugin-admob-free, which provides a cleaner API and build with modern tools. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-admob.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-admob.readme.md index 8f50b6279c0..b18059b0829 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-admob.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-admob.readme.md @@ -1,8 +1,8 @@ + Most complete Admob plugin with support for [Tappx](http://www.tappx.com/?h=dec334d63287772de859bdb4e977fce6) ads. Monetize your apps and games with AdMob ads, using latest Google AdMob SDK. With this plugin you can show AdMob ads easily! **Supports:** - - Banner ads (top and bottom) - Interstitial ads - Rewarded ads diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-aes-256.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-aes-256.readme.md index e11ad80b4a3..8bc209c7e54 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-aes-256.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-aes-256.readme.md @@ -1,3 +1,4 @@ + This cordova ionic plugin allows you to perform AES 256 encryption and decryption on the plain text. It's a cross-platform plugin which supports both Android and iOS. The encryption and decryption are performed on the device native layer so that the performance is much faster. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-alipay.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-alipay.readme.md index 0303990f06b..18f742e5108 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-alipay.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-alipay.readme.md @@ -1,3 +1,4 @@ + This plugin facilitates the usage of Alipay 支付宝 in an Ionic apps with the integrated AlipaySDK dated on 20180601. Requires Cordova plugin: `cordova-plugin-gubnoi-alipay`. For more info, please see https://github.com/jing-zhou/cordova-plugin-alipay . diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-all-in-one-sdk.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-all-in-one-sdk.readme.md index 23e8c973bf2..76387367a61 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-all-in-one-sdk.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-all-in-one-sdk.readme.md @@ -1,3 +1,4 @@ + Paytm All-in-One SDK plugin for Cordova/Ionic Applications Paytm All-in-One SDK provides a swift, secure and seamless payment experience to your users by invoking the Paytm app (if installed on your user’s smartphone) to complete payment for your order. Paytm All-in-One SDK enables payment acceptance via Paytm wallet, Paytm Payments Bank, saved Debit/Credit cards, Net Banking, BHIM UPI and EMI as available in your customer’s Paytm account. If Paytm app is not installed on a customer's device, the transaction will be processed via web view within the All-in-One SDK. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-analytics-firebase.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-analytics-firebase.readme.md index e27b0ba6540..822209a4a72 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-analytics-firebase.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-analytics-firebase.readme.md @@ -1 +1,2 @@ + Google Analytics Firebase plugin for Ionic Native apps. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-android-exoplayer.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-android-exoplayer.readme.md index c31c989a3d3..93a3f290203 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-android-exoplayer.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-android-exoplayer.readme.md @@ -1,3 +1,4 @@ + Cordova media player plugin using Google's ExoPlayer framework. https://github.com/google/ExoPlayer diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-android-full-screen.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-android-full-screen.readme.md index 64f0fad3191..3592aee1757 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-android-full-screen.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-android-full-screen.readme.md @@ -1,3 +1,4 @@ + This plugin enables developers to offer users a true full screen experience in their Cordova and PhoneGap apps for Android. Using Android 4.0+, you can use true full screen in "lean mode", the way you see in apps like YouTube, expanding the app right to the edges of the screen, hiding the status and navigation bars until the user next interacts. This is ideally suited to video or cut-scene content. -In Android 4.4+, however, you can now enter true full screen, fully interactive immersive mode. In this mode, your app will remain in true full screen until you choose otherwise; users can swipe down from the top of the screen to temporarily display the system UI. +In Android 4.4+, however, you can now enter true full screen, fully interactive immersive mode. In this mode, your app will remain in true full screen until you choose otherwise; users can swipe down from the top of the screen to temporarily display the system UI. \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-android-notch.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-android-notch.readme.md index a82b309d78c..2eb94af7221 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-android-notch.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-android-notch.readme.md @@ -1,3 +1,4 @@ + This plugin enables developers to get the cutout and android devices inset sizes It is based on the cordova plugin developed by @tobspr: https://github.com/tobspr/cordova-plugin-android-notch This plugin works on all android versions, but we can only detect notches starting from Android 9. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-android-permissions.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-android-permissions.readme.md index 8e414578f93..0c671a0c2d0 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-android-permissions.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-android-permissions.readme.md @@ -1,3 +1,4 @@ + This plugin is designed to support Android new permissions checking mechanism. You can find all permissions here: https://developer.android.com/reference/android/Manifest.permission.html diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-anyline.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-anyline.readme.md index 5f6722050b0..48c289cc3fb 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-anyline.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-anyline.readme.md @@ -1 +1,2 @@ + Anyline provides an easy-to-use SDK for applications to enable Optical Character Recognition (OCR) on mobile devices. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-app-availability.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-app-availability.readme.md index 2813a5d498b..5672e0b2213 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-app-availability.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-app-availability.readme.md @@ -1,3 +1,4 @@ + This plugin allows you to check if an app is installed on the user's device. It requires an URI Scheme (e.g. twitter://) on iOS or a Package Name (e.g com.twitter.android) on Android. Requires Cordova plugin: cordova-plugin-appavailability. For more info, please see the [AppAvailability plugin docs](https://github.com/ohh2ahh/AppAvailability). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-app-center-analytics.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-app-center-analytics.readme.md index 95a88837497..d7ef092bae5 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-app-center-analytics.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-app-center-analytics.readme.md @@ -1,3 +1,4 @@ + App Center Analytics helps you understand user behavior and customer engagement to improve your app. The SDK automatically captures session count and device properties like model, OS version, etc. You can define your own custom events to measure things that matter to you. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-app-center-crashes.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-app-center-crashes.readme.md index ef9f2968a8f..c331a7d05f5 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-app-center-crashes.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-app-center-crashes.readme.md @@ -1,3 +1,4 @@ + App Center Analytics helps you understand user behavior and customer engagement to improve your app. The SDK automatically captures session count and device properties like model, OS version, etc. You can define your own custom events to measure things that matter to you. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-app-center-low-memory.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-app-center-low-memory.readme.md index e84626aea1d..6d2e7862965 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-app-center-low-memory.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-app-center-low-memory.readme.md @@ -1,2 +1,3 @@ + Generates a low memory warning. For more info, please see: https://github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-generate-low-memory diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-app-center-push.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-app-center-push.readme.md index e89f74940ca..c1b58f99edf 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-app-center-push.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-app-center-push.readme.md @@ -1 +1,3 @@ + + For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/push/cordova diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-app-launcher.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-app-launcher.readme.md index aff2e2cb4d6..0db391fddba 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-app-launcher.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-app-launcher.readme.md @@ -1 +1,2 @@ + Simple Cordova plugin to see if other apps are installed and launch them. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-app-minimize.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-app-minimize.readme.md index bb919529254..12d31c41dd7 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-app-minimize.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-app-minimize.readme.md @@ -1 +1,2 @@ + AppMinimize is a plugin to minimize the application on android devices diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-app-preferences.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-app-preferences.readme.md index fbde6778edf..87dd87d5765 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-app-preferences.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-app-preferences.readme.md @@ -1 +1,2 @@ + This plugin allows you to read and write app preferences diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-app-rate.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-app-rate.readme.md index c2d7f1730a0..c0210b3f9e5 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-app-rate.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-app-rate.readme.md @@ -1,3 +1,4 @@ + The AppRate plugin makes it easy to prompt the user to rate your app, either now, later, or never. Requires Cordova plugin: cordova-plugin-apprate. For more info, please see the [AppRate plugin docs](https://github.com/pushandplay/cordova-plugin-apprate). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-app-version.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-app-version.readme.md index 6b4fa2e5c61..08cfe48a452 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-app-version.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-app-version.readme.md @@ -1,3 +1,4 @@ + Reads the version of your app from the target build settings. Requires Cordova plugin: `cordova-plugin-app-version`. For more info, please see the [Cordova App Version docs](https://github.com/whiteoctober/cordova-plugin-app-version). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-apple-pay.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-apple-pay.readme.md index 6213470725d..1e612327b09 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-apple-pay.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-apple-pay.readme.md @@ -1 +1,2 @@ + A dependency free Cordova plugin to provide Apple Pay functionality. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-apple-wallet.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-apple-wallet.readme.md index b3fd1055a9a..79bd464667d 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-apple-wallet.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-apple-wallet.readme.md @@ -1 +1,2 @@ + A Cordova plugin that enables users from Add Payment Cards to their Apple Wallet. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-appodeal.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-appodeal.readme.md index 41c425d19c7..af28dc677bd 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-appodeal.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-appodeal.readme.md @@ -1 +1,2 @@ + Plugin to serve ads through native Appodeal SDKs diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-appsflyer.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-appsflyer.readme.md index 4197b26f800..f0017f9025d 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-appsflyer.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-appsflyer.readme.md @@ -1 +1,2 @@ + Appsflyer Cordova SDK support for Attribution diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-audio-management.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-audio-management.readme.md index 4c69face47f..d1ce36553bc 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-audio-management.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-audio-management.readme.md @@ -1,2 +1,3 @@ + A Cordova plugin to manage volume of audio streams for: ring, music, notification and system. Possible ringer values for those streams are: silent, vibrate and normal. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-autostart.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-autostart.readme.md index b066c65401a..48d67747675 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-autostart.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-autostart.readme.md @@ -1,2 +1,3 @@ + This plugin automatically starts your Android app after every boot or auto-update. You can enable or disable the autostart function in your app. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-background-fetch.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-background-fetch.readme.md index 3a4a3e352cf..62278126195 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-background-fetch.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-background-fetch.readme.md @@ -1,3 +1,4 @@ + iOS Background Fetch Implementation. See: https://developer.apple.com/reference/uikit/uiapplication#1657399 iOS Background Fetch is basically an API which wakes up your app about every 15 minutes (during the user's prime-time hours) and provides your app exactly 30s of background running-time. This plugin will execute your provided callbackFn whenever a background-fetch event occurs. There is no way to increase the rate which a fetch-event occurs and this plugin sets the rate to the most frequent possible value of UIApplicationBackgroundFetchIntervalMinimum -- iOS determines the rate automatically based upon device usage and time-of-day (ie: fetch-rate is about ~15min during prime-time hours; less frequently when the user is presumed to be sleeping, at 3am for example). For more detail, please see https://github.com/transistorsoft/cordova-plugin-background-fetch diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-background-geolocation.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-background-geolocation.readme.md index b1cfb8cd04b..a43e7c719b2 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-background-geolocation.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-background-geolocation.readme.md @@ -1,2 +1,3 @@ + This plugin provides foreground and background geolocation with battery-saving "circular region monitoring" and "stop detection". For more detail, please see https://github.com/mauron85/cordova-plugin-background-geolocation diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-background-mode.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-background-mode.readme.md index ee73844b3c8..90ce8edd2ad 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-background-mode.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-background-mode.readme.md @@ -1,2 +1,3 @@ + Cordova plugin to prevent the app from going to sleep while in background. -Requires Cordova plugin: cordova-plugin-background-mode. For more info about plugin, visit: https://github.com/katzer/cordova-plugin-background-mode +Requires Cordova plugin: cordova-plugin-background-mode. For more info about plugin, visit: https://github.com/katzer/cordova-plugin-background-mode \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-background-upload.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-background-upload.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-background-upload.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-background-upload.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-backlight.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-backlight.readme.md index 9ab2fed769b..bc94608b2c6 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-backlight.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-backlight.readme.md @@ -1 +1,2 @@ + This plugin adds turning on/off the device backlight. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-badge.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-badge.readme.md index 52465e564f0..11775820229 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-badge.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-badge.readme.md @@ -1,3 +1,4 @@ + The essential purpose of badge numbers is to enable an application to inform its users that it has something for them — for example, unread messages — when the application isn’t running in the foreground. Requires Cordova plugin: cordova-plugin-badge. For more info, please see the [Badge plugin docs](https://github.com/katzer/cordova-plugin-badge). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-baidu-push.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-baidu-push.readme.md index 33af83938f9..ebe978c896a 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-baidu-push.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-baidu-push.readme.md @@ -1 +1,2 @@ + This plugin faciliates the use of Baidu Push notifications. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-barcode-scanner.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-barcode-scanner.readme.md index 747418e7857..d40a29ab2a1 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-barcode-scanner.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-barcode-scanner.readme.md @@ -1,3 +1,4 @@ + The Barcode Scanner Plugin opens a camera view and automatically scans a barcode, returning the data back to you. Requires Cordova plugin: `phonegap-plugin-barcodescanner`. For more info, please see the [BarcodeScanner plugin docs](https://github.com/phonegap/phonegap-plugin-barcodescanner). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-base64-to-gallery.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-base64-to-gallery.readme.md index b84c09c835f..9f16d6d8f42 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-base64-to-gallery.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-base64-to-gallery.readme.md @@ -1 +1 @@ -This plugin allows you to save base64 data as a png image into the device +This plugin allows you to save base64 data as a png image into the device \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-base64.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-base64.readme.md index 340db120adf..06a0311c510 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-base64.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-base64.readme.md @@ -1 +1,2 @@ + This Plugin is used to encode base64 of any file, it uses js code for iOS, but in case of android it uses native code to handle android versions lower than v.3 diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-battery-status.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-battery-status.readme.md index 2c657416aef..da71524f3d1 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-battery-status.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-battery-status.readme.md @@ -1 +1,2 @@ + Requires Cordova plugin: cordova-plugin-batterystatus. For more info, please see the [BatteryStatus plugin docs](https://github.com/apache/cordova-plugin-battery-status). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-biocatch.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-biocatch.readme.md index bd325268e71..0725aba40ce 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-biocatch.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-biocatch.readme.md @@ -1 +1,2 @@ + BioCatch SDK Cordova support diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-biometric-wrapper.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-biometric-wrapper.readme.md index b1b5ec0f81c..6be6e7318ae 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-biometric-wrapper.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-biometric-wrapper.readme.md @@ -1,2 +1,3 @@ + This plugin capture biometric(Iris and Fingerprint) and validate the user. May be used in Banking domain diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-ble.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-ble.readme.md index 8d23815cab0..4818853ac89 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-ble.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-ble.readme.md @@ -1,3 +1,4 @@ + This plugin enables communication between a phone and Bluetooth Low Energy (BLE) peripherals. The plugin provides a simple JavaScript API for iOS and Android. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-blinkid.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-blinkid.readme.md index f0f05bc6a1f..52d671c0034 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-blinkid.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-blinkid.readme.md @@ -1,2 +1,3 @@ + Microblink SDK wrapper for barcode and document scanning. See the blinkid-phonegap repository for available recognizers and other settings diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-blinkup.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-blinkup.readme.md index 6f149bce706..b6cae0f21fd 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-blinkup.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-blinkup.readme.md @@ -1 +1,2 @@ + Electric Imp BlinkUp ionic plugin. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-bluetooth-classic-serial-port.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-bluetooth-classic-serial-port.readme.md index c0281f22a59..639b85fee5c 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-bluetooth-classic-serial-port.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-bluetooth-classic-serial-port.readme.md @@ -1 +1 @@ -This plugin is written using the iOS Accessory Framework (MFi) to support Classic Bluetooth on iOS. +This plugin is written using the iOS Accessory Framework (MFi) to support Classic Bluetooth on iOS. \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-bluetooth-le.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-bluetooth-le.readme.md index 3b80e3d0ecd..3ae195d12de 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-bluetooth-le.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-bluetooth-le.readme.md @@ -1,3 +1,4 @@ + This plugin has the most complete implementation for interacting with Bluetooth LE devices on Android, iOS and partially Windows. It's a wrap around [randdusing/cordova-plugin-bluetoothle](https://github.com/randdusing/cordova-plugin-bluetoothle/blob/master/readme.md) cordova plugin for Ionic. It supports peripheral **and** central modes and covers most of the API methods available on Android and iOS. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-bluetooth-serial.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-bluetooth-serial.readme.md index d0939b5fde7..f3579d8e616 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-bluetooth-serial.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-bluetooth-serial.readme.md @@ -1 +1 @@ -This plugin enables serial communication over Bluetooth. It was written for communicating between Android or iOS and an Arduino (not Android to Android or iOS to iOS). +This plugin enables serial communication over Bluetooth. It was written for communicating between Android or iOS and an Arduino (not Android to Android or iOS to iOS). \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-braintree.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-braintree.readme.md index 9921b18062b..29af8d97385 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-braintree.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-braintree.readme.md @@ -1,8 +1,9 @@ + This plugin enables the use of the Braintree Drop-In Payments UI in your Ionic applications on Android and iOS, using the native Drop-In UI for each platform (not the Javascript SDK). -Ionic Native utilizes [a maintained fork](https://github.com/taracque/cordova-plugin-braintree) of the original `cordova-plugin-braintree` + Ionic Native utilizes [a maintained fork](https://github.com/taracque/cordova-plugin-braintree) of the original `cordova-plugin-braintree` -For information on how to use Apple Pay with this plugin, please refer to the [plugin documentation](https://github.com/Taracque/cordova-plugin-braintree#apple-pay-ios-only) + For information on how to use Apple Pay with this plugin, please refer to the [plugin documentation](https://github.com/Taracque/cordova-plugin-braintree#apple-pay-ios-only) **NOTE**: This is not a complete payments solution. All of the Braintree client-side UIs simply generate a payment nonce that must then be processed by your server to complete the payment. See the [Braintree Node server documentation](https://developers.braintreepayments.com/start/hello-server/node) for details and a [sample Express server](https://github.com/braintree/braintree_express_example) that implements the required functionality. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-branch-io.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-branch-io.readme.md index a222a2efbe7..b9836ebd4c6 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-branch-io.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-branch-io.readme.md @@ -1 +1,2 @@ + Branch.io is an attribution service for deeplinking and invitation links diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-brightness.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-brightness.readme.md index d97dd2af981..51b06d0cc15 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-brightness.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-brightness.readme.md @@ -1,3 +1,4 @@ + The Brightness plugin let you control the display brightness of your device. Requires Cordova plugin: `cordova-plugin-brightness`. For more info, please see the [Brightness plugin docs](https://github.com/mgcrea/cordova-plugin-brightness). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-broadcaster.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-broadcaster.readme.md index b925da2342c..71995e79760 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-broadcaster.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-broadcaster.readme.md @@ -1 +1,2 @@ + This plugin adds exchanging events between native code and your app. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-browser-tab.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-browser-tab.readme.md index f03b8b179a9..bf83901883b 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-browser-tab.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-browser-tab.readme.md @@ -1 +1,2 @@ + This plugin provides an interface to in-app browser tabs that exist on some mobile platforms, specifically [Custom Tabs](http://developer.android.com/tools/support-library/features.html#custom-tabs) on Android (including the [Chrome Custom Tabs](https://developer.chrome.com/multidevice/android/customtabs) implementation), and [SFSafariViewController](https://developer.apple.com/library/ios/documentation/SafariServices/Reference/SFSafariViewController_Ref/) on iOS. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-build-info.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-build-info.readme.md index 7b8674b3871..7e5a437d1d3 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-build-info.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-build-info.readme.md @@ -1 +1,2 @@ + This plugin provides build information. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-calendar.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-calendar.readme.md index 515f629e662..5a83eede868 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-calendar.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-calendar.readme.md @@ -1,3 +1,5 @@ + This plugin allows you to add events to the Calendar of the mobile device. Requires Cordova plugin: `cordova-plugin-calendar`. For more info, please see the [Calendar plugin docs](https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin). + diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-call-directory.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-call-directory.readme.md index b0ecb7bb40b..16d031664c6 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-call-directory.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-call-directory.readme.md @@ -1,2 +1,3 @@ + This plugin can add phone numbers to an Callkit call directory extension. Call `reloadExtension` after using `addIdentification` and `removeIdentification` to process the changes in the call directory extension. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-call-log.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-call-log.readme.md index 76f6447e69b..a2b5e1bab30 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-call-log.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-call-log.readme.md @@ -1 +1,2 @@ + This plugin access the call history on a device and that can be filtered diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-call-number.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-call-number.readme.md index 2914b087a64..d68a0a44b0e 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-call-number.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-call-number.readme.md @@ -1,2 +1,3 @@ + Call a number directly from your Cordova/Ionic application. **NOTE**: The iOS Simulator (and maybe Android Simulators) do not provide access to the phone subsystem. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-camera-preview.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-camera-preview.readme.md index 9b06352e407..31cf59dc30b 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-camera-preview.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-camera-preview.readme.md @@ -1,3 +1,4 @@ + Showing camera preview in HTML Requires Cordova plugin: `https://github.com/cordova-plugin-camera-preview/cordova-plugin-camera-preview.git`. For more info, please see the [Cordova Camera Preview docs](https://github.com/cordova-plugin-camera-preview/cordova-plugin-camera-preview). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-camera.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-camera.readme.md index aa5cc82125d..a354d9c7925 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-camera.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-camera.readme.md @@ -1,13 +1,12 @@ + Take a photo or capture video. Requires the Cordova plugin: `cordova-plugin-camera`. For more info, please see the [Cordova Camera Plugin Docs](https://github.com/apache/cordova-plugin-camera). [Warning] Since IOS 10 the camera requires permissions to be placed in your config.xml add - ```xml You can take photos ``` - inside of the This Plugin is no longer supported by Couchbase. Please see our Couchbase Lite Integration diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-crop.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-crop.readme.md index 9faa50aaed7..6c659180b50 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-crop.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-crop.readme.md @@ -1 +1 @@ -Crops images +Crops images \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-custom-uisdk.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-custom-uisdk.readme.md index 9116ddca6eb..5c24399bc42 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-custom-uisdk.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-custom-uisdk.readme.md @@ -1 +1,2 @@ + This plugin is used to access Paytm's native CustomUISDK framework's apis. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-date-picker.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-date-picker.readme.md index d2632a61abf..5eed8b85866 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-date-picker.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-date-picker.readme.md @@ -1 +1,2 @@ + The DatePicker plugin allows the user to fetch date or time using native dialogs. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-db-meter.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-db-meter.readme.md index cabc3d4ff44..08fbb92c20c 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-db-meter.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-db-meter.readme.md @@ -1 +1 @@ -This plugin defines a global DBMeter object, which permits to get the decibel values from the microphone. +This plugin defines a global DBMeter object, which permits to get the decibel values from the microphone. \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-device-accounts.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-device-accounts.readme.md index 8943e5b9ca4..bffae754b58 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-device-accounts.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-device-accounts.readme.md @@ -1 +1,2 @@ + Gets the Google accounts associated with the Android device diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-device-feedback.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-device-feedback.readme.md index f11c48fa910..ad508847c3e 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-device-feedback.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-device-feedback.readme.md @@ -1 +1,3 @@ + + Plugin that lets you provide haptic or acoustic feedback on Android devices. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-device-motion.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-device-motion.readme.md index 4dbbb06d71c..abe72e3b6c0 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-device-motion.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-device-motion.readme.md @@ -1 +1,2 @@ + Requires Cordova plugin: `cordova-plugin-device-motion`. For more info, please see the [Device Motion docs](https://github.com/apache/cordova-plugin-device-motion). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-device-orientation.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-device-orientation.readme.md index e96364431a7..02c713e2138 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-device-orientation.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-device-orientation.readme.md @@ -1 +1,2 @@ + Requires Cordova plugin: `cordova-plugin-device-orientation`. For more info, please see the [Device Orientation docs](https://github.com/apache/cordova-plugin-device-orientation). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-device.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-device.readme.md index 3dbd2dec8e3..c6ef6980695 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-device.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-device.readme.md @@ -1 +1,2 @@ + Access information about the underlying device and platform. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-dfu-update.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-dfu-update.readme.md index ac9d8279b92..893058bc4eb 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-dfu-update.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-dfu-update.readme.md @@ -1 +1,2 @@ + This plugin is a Wrapper to use Nordic Semiconductor's Device Firmware Update (DFU) service to update a Bluetooth LE device. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-diagnostic.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-diagnostic.readme.md index 64c6b6393fe..a90f9cfbe85 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-diagnostic.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-diagnostic.readme.md @@ -1 +1,2 @@ + Checks whether device hardware features are enabled or available to the app, e.g. camera, GPS, wifi diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-dialogs.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-dialogs.readme.md index f988d884a0c..11ac16aafc6 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-dialogs.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-dialogs.readme.md @@ -1,3 +1,4 @@ + This plugin gives you ability to access and customize the device native dialogs. Requires Cordova plugin: `cordova-plugin-dialogs`. For more info, please see the [Dialogs plugin docs](https://github.com/apache/cordova-plugin-dialogs). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-document-picker.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-document-picker.readme.md index 3a08f9c811c..7eac80f6cff 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-document-picker.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-document-picker.readme.md @@ -1,2 +1,4 @@ + + Opens the file picker on iOS for the user to select a file, returns a file URI. Allows the user to upload files from iCloud diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-document-scanner.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-document-scanner.readme.md index 03cd028ccfd..29d32018802 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-document-scanner.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-document-scanner.readme.md @@ -1 +1,2 @@ + This plugin processes images of documents, compensating for perspective. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-document-viewer.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-document-viewer.readme.md index 605e7b14d41..7e39f62d9b0 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-document-viewer.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-document-viewer.readme.md @@ -1 +1,2 @@ -This plugin offers a slim API to view PDF files which are either stored in the apps assets folder (/www/\*) or in any other file system directory available via the cordova file plugin. + +This plugin offers a slim API to view PDF files which are either stored in the apps assets folder (/www/*) or in any other file system directory available via the cordova file plugin. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-downloader.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-downloader.readme.md index dad89444163..f15e01b1143 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-downloader.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-downloader.readme.md @@ -1 +1,3 @@ + This plugin is designed to support downloading files using Android DownloadManager. + diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-email-composer.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-email-composer.readme.md index a305d027409..4176ac2a7b9 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-email-composer.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-email-composer.readme.md @@ -1 +1,4 @@ + + Requires Cordova plugin: cordova-plugin-email-composer. For more info, please see the [Email Composer plugin docs](https://github.com/hypery2k/cordova-email-plugin). + diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-emm-app-config.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-emm-app-config.readme.md index d0554945c4c..81259d50cc1 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-emm-app-config.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-emm-app-config.readme.md @@ -1,3 +1,5 @@ + This plugin provides information on EMM application configuration Requires the Cordova plugin: `cordova-plugin-emm-app-config`. For more info, please see the [Cordova EMM App Config Plugin Docs](https://github.com/oracle/cordova-plugin-emm-app-config). + diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-estimote-beacons.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-estimote-beacons.readme.md index b76b54f6046..40349a8306b 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-estimote-beacons.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-estimote-beacons.readme.md @@ -1 +1,2 @@ + This plugin enables communication between a phone and Estimote Beacons peripherals. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-extended-device-information.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-extended-device-information.readme.md index 043375415ac..16c3ea63d2a 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-extended-device-information.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-extended-device-information.readme.md @@ -1,6 +1,6 @@ -Retrieves additional device information from the Device Hardware -- memory -- cpumhz -- totalstorage -- freestorage +Retrieves additional device information from the Device Hardware + - memory + - cpumhz + - totalstorage + - freestorage diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-fabric.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-fabric.readme.md index b140e97cb32..12d214e6d38 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-fabric.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-fabric.readme.md @@ -1,3 +1,4 @@ + API for interacting with the Answers kit. https://docs.fabric.io/crashlytics/index.html diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-facebook.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-facebook.readme.md index 93e5e887491..df9af63f74b 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-facebook.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-facebook.readme.md @@ -1,10 +1,11 @@ + Use the Facebook Connect plugin to obtain access to the native FB application on iOS and Android. Requires Cordova plugin: `cordova-plugin-facebook-connect`. For more info, please see the [Facebook Connect](https://github.com/cordova-plugin-facebook-connect/cordova-plugin-facebook-connect). #### Installation -To use the FB plugin, you first have to create a new Facebook App inside of the Facebook developer portal at [https://developers.facebook.com/apps](https://developers.facebook.com/apps). + To use the FB plugin, you first have to create a new Facebook App inside of the Facebook developer portal at [https://developers.facebook.com/apps](https://developers.facebook.com/apps). [![fb-getstarted-1](/img/docs/native/Facebook/1.png)](https://developers.facebook.com/apps/) @@ -29,7 +30,6 @@ Click `'Add Platform'`. At this point you'll need to open your project's [`config.xml`](https://cordova.apache.org/docs/en/latest/config_ref/index.html) file, found in the root directory of your project. Take note of the `id` for the next step: - ``` ``` @@ -37,17 +37,17 @@ Take note of the `id` for the next step: You can also edit the `id` to whatever you'd like it to be. #### iOS Install - Under 'Bundle ID', add the `id` from your `config.xml` file: [![fb-getstarted-5](/img/docs/native/Facebook/5.png)](https://developers.facebook.com/apps/) -#### Android Install +#### Android Install Under 'Google Play Package Name', add the `id` from your `config.xml` file: [![fb-getstarted-6](/img/docs/native/Facebook/6.png)](https://developers.facebook.com/apps/) + And that's it! You can now make calls to Facebook using the plugin. ## Events diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-fcm.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-fcm.readme.md index dbbb3b72132..f3790772c17 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-fcm.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-fcm.readme.md @@ -1 +1,2 @@ + Provides basic functionality for Firebase Cloud Messaging diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-file-chooser.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-file-chooser.readme.md index 4bf1bdf418f..b4553ad9baf 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-file-chooser.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-file-chooser.readme.md @@ -1 +1,3 @@ + + Opens the file picker on Android for the user to select a file, returns a file URI. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-file-encryption.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-file-encryption.readme.md index f1b5408277a..4fdfccbf60d 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-file-encryption.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-file-encryption.readme.md @@ -1 +1,2 @@ + Simple file encryption for Cordova. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-file-opener.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-file-opener.readme.md index a719c048fe4..ba26e51b8cd 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-file-opener.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-file-opener.readme.md @@ -1 +1,2 @@ + This plugin will open a file on your device file system with its default application. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-file-path.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-file-path.readme.md index 1f3eeb42d5a..c9445ac1ce7 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-file-path.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-file-path.readme.md @@ -1 +1,3 @@ + + This plugin allows you to resolve the native filesystem path for Android content URIs and is based on code in the aFileChooser library. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-file-picker.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-file-picker.readme.md index 3616dbd3573..b33dc3c0f97 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-file-picker.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-file-picker.readme.md @@ -1 +1,3 @@ + + Opens the file picker on iOS for the user to select a file, returns a file URI. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-file-transfer.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-file-transfer.readme.md index 4770407e60d..c8ba532eae9 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-file-transfer.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-file-transfer.readme.md @@ -1 +1,2 @@ + This plugin allows you to upload and download files. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-file.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-file.readme.md index 28bc40d6e90..1e61b343d6b 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-file.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-file.readme.md @@ -1,9 +1,9 @@ + This plugin implements a File API allowing read/write access to files residing on the device. The File class implements static convenience functions to access files and directories. Example: - ``` import { File } from '@awesome-cordova-plugins/file/ngx'; @@ -16,8 +16,8 @@ this.file.checkDir(this.file.dataDirectory, 'mydir').then(_ => console.log('Dire ``` -This plugin is based on several specs, including : The HTML5 File API http: //www.w3.org/TR/FileAPI/ -The (now-defunct) Directories and System extensions Latest: http: //www.w3.org/TR/2012/WD-file-system-api-20120417/ -Although most of the plugin code was written when an earlier spec was current: http: -//www.w3.org/TR/2011/WD-file-system-api-20110419/ It also implements the FileWriter spec : http: -//dev.w3.org/2009/dap/file-system/file-writer.html + This plugin is based on several specs, including : The HTML5 File API http: //www.w3.org/TR/FileAPI/ + The (now-defunct) Directories and System extensions Latest: http: //www.w3.org/TR/2012/WD-file-system-api-20120417/ + Although most of the plugin code was written when an earlier spec was current: http: + //www.w3.org/TR/2011/WD-file-system-api-20110419/ It also implements the FileWriter spec : http: + //dev.w3.org/2009/dap/file-system/file-writer.html \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-firebase-analytics.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-firebase-analytics.readme.md index ce125266039..f87a05030d7 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-firebase-analytics.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-firebase-analytics.readme.md @@ -1,3 +1,4 @@ + Cordova plugin for Firebase Analytics Go to firebase console and export google-services.json and GoogleService-Info.plist. Put those files into the root of your cordova app folder. @@ -5,9 +6,7 @@ Go to firebase console and export google-services.json and GoogleService-Info.pl NOTE: on iOS in order to collect demographic, age, gender data etc. you should additionally include AdSupport.framework into your project. ## Using capacitor? - -For Android you'll have to add in **android/app/src/main/AndroidManfiest.xml** under `` - +For Android you'll have to add in __android/app/src/main/AndroidManfiest.xml__ under `` ``` @@ -17,4 +17,4 @@ config.xml: -``` +``` \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-firebase-messaging.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-firebase-messaging.readme.md index 6a18f9fcf39..5bdcf74de11 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-firebase-messaging.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-firebase-messaging.readme.md @@ -1 +1,2 @@ + Cordova plugin for Firebase Messaging diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-firebase-vision.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-firebase-vision.readme.md index d1f83c84392..433e365a6a5 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-firebase-vision.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-firebase-vision.readme.md @@ -1 +1,2 @@ + Cordova plugin for Firebase MLKit Vision diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-firebase-x.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-firebase-x.readme.md index aa17963327a..e044eb6dc66 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-firebase-x.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-firebase-x.readme.md @@ -1,2 +1,3 @@ + This plugin brings push notifications, analytics, event tracking, crash reporting and more from Google Firebase to your Cordova project! Android and iOS supported. It is a maintained fork from unmaintained ionic-navite plugin called Firebase. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-firebase.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-firebase.readme.md index 6c21f982616..25001f76e05 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-firebase.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-firebase.readme.md @@ -1 +1,2 @@ + This plugin brings push notifications, analytics, event tracking, crash reporting and more from Google Firebase to your Cordova project! Android and iOS supported (including iOS 10). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-flurry-analytics.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-flurry-analytics.readme.md index e57049202bf..80ef2d51635 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-flurry-analytics.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-flurry-analytics.readme.md @@ -1 +1,2 @@ + This plugin connects to Flurry Analytics SDK diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-foreground-service.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-foreground-service.readme.md index 563b7c87954..6d68d07b0fe 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-foreground-service.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-foreground-service.readme.md @@ -1,8 +1,9 @@ + This plugin allows for android devices to continue running services in the background, using a foreground ongoing notification. This is targeted towards use with plugins such as 'cordova-geolocation' that will not run while the app is in the background on android API 26+. -For android API 28+, the following xml snippet should be inserted into `config.xml`: +For android API 28+, the following xml snippet should be inserted into ```config.xml```: ``` ... @@ -11,4 +12,4 @@ For android API 28+, the following xml snippet should be inserted into `config.x ... -``` +``` \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-ftp.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-ftp.readme.md index 5987065177c..0cd5a4278d8 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-ftp.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-ftp.readme.md @@ -1 +1,2 @@ + This cordova plugin is created to use ftp (client) in web/js. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-full-screen-image.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-full-screen-image.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-full-screen-image.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-full-screen-image.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-gao-de-location.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-gao-de-location.readme.md index 5dda6c71ade..a56ed3a0093 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-gao-de-location.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-gao-de-location.readme.md @@ -1,2 +1,3 @@ + Because the original GPS positioning uses Google Browser positioning, and Google withdraws from China, resulting in GPS Android positioning can not be positioned. Gaode location can directly return address informationGaode location can directly return address information diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-ge-tui-sdk-plugin.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-ge-tui-sdk-plugin.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-ge-tui-sdk-plugin.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-ge-tui-sdk-plugin.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-geofence.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-geofence.readme.md index 2f83489f5fb..6e993e8f8a8 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-geofence.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-geofence.readme.md @@ -1,2 +1,2 @@ Monitors circular geofences around latitude/longitude coordinates, and sends a notification to the user when the boundary of a geofence is crossed. Notifications can be sent when the user enters and/or exits a geofence. -Geofences persist after device reboot. Geofences will be monitored even when the app is not running. +Geofences persist after device reboot. Geofences will be monitored even when the app is not running. \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-geolocation.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-geolocation.readme.md index 0391a010ff3..8d55357a600 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-geolocation.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-geolocation.readme.md @@ -1,11 +1,12 @@ + This plugin provides information about the device's location, such as latitude and longitude. Common sources of location information include Global Positioning System (GPS) and location inferred from network signals such as IP address, RFID, WiFi and Bluetooth MAC addresses, and GSM/CDMA cell IDs. -This API is based on the W3C Geolocation API Specification, and only executes on devices that don't already provide an implementation. + This API is based on the W3C Geolocation API Specification, and only executes on devices that don't already provide an implementation. For iOS you have to add this configuration to your configuration.xml file - ```xml We use your location for full functionality of certain app features. ``` + diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-globalization.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-globalization.readme.md index 840cf8d4fb5..d1a3161e0b4 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-globalization.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-globalization.readme.md @@ -1 +1,2 @@ + This plugin obtains information and performs operations specific to the user's locale, language, and timezone. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-google-analytics.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-google-analytics.readme.md index 8ebef774b81..1c759160579 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-google-analytics.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-google-analytics.readme.md @@ -1,6 +1,6 @@ + This plugin connects to Google's native Universal Analytics SDK Prerequisites: - - A Cordova 3.0+ project for iOS and/or Android - A Mobile App property through the Google Analytics Admin Console -- (Android) Google Play Services SDK installed via [Android SDK Manager](https://developer.android.com/sdk/installing/adding-packages.html) +- (Android) Google Play Services SDK installed via [Android SDK Manager](https://developer.android.com/sdk/installing/adding-packages.html) \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-google-nearby.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-google-nearby.readme.md index 0e715c64736..42ea1211a02 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-google-nearby.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-google-nearby.readme.md @@ -1 +1,2 @@ + This plugin adds support for the Google Nearby Messages API. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-google-play-games-services.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-google-play-games-services.readme.md index a10f89326aa..e40dfc4db5e 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-google-play-games-services.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-google-play-games-services.readme.md @@ -1 +1,2 @@ + A Cordova plugin that let's you interact with Google Play Games Services. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-gyroscope.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-gyroscope.readme.md index 676268db9d5..fb0392b4d72 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-gyroscope.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-gyroscope.readme.md @@ -1 +1 @@ -Read Gyroscope sensor data +Read Gyroscope sensor data \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-hce.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-hce.readme.md index 6f496fc37ad..9cc2bc1f297 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-hce.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-hce.readme.md @@ -1 +1,2 @@ + HCE Cordova Wrapper diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-header-color.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-header-color.readme.md index 271a47a93b3..ad82eb6b43a 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-header-color.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-header-color.readme.md @@ -1 +1,2 @@ + Cordova plugin to change color of header in Android Multitask View diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-health-kit.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-health-kit.readme.md index 466271d3cba..dbd72bc8324 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-health-kit.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-health-kit.readme.md @@ -1,2 +1,3 @@ + The HealthKit plugin allows you to read data from and write data to the iOS 8+ HealthKit framework. Any data saved shows up in the iOS Health app and is available for other iOS apps. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-health.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-health.readme.md index f49780a8921..349af915eac 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-health.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-health.readme.md @@ -1 +1,2 @@ + A plugin that abstracts fitness and health repositories like Apple HealthKit or Google Fit. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-hotspot.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-hotspot.readme.md index 2ba246ebaf0..e49b6cbc6ca 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-hotspot.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-hotspot.readme.md @@ -1,3 +1,4 @@ + A Cordova plugin for managing Hotspot networks on Android. Requires Cordova plugin: `cordova-plugin-hotspot`. For more info, please see the [Hotspot plugin docs](https://github.com/hypery2k/cordova-hotspot-plugin). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-http.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-http.readme.md index 3fcae7e8052..40ad52f5a5d 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-http.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-http.readme.md @@ -1,7 +1,7 @@ + Cordova / Phonegap plugin for communicating with HTTP servers. Supports iOS and Android. Advantages over Javascript requests: - - SSL / TLS Pinning - CORS restrictions do not apply - Handling of HTTP code 401 - read more at [Issue CB-2415](https://issues.apache.org/jira/browse/CB-2415) diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-httpd.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-httpd.readme.md index 14a21342440..4421569a8f0 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-httpd.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-httpd.readme.md @@ -1 +1,2 @@ -Embedded httpd for Cordova apps. Light weight HTTP server. + +Embedded httpd for Cordova apps. Light weight HTTP server. \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-iamport-cordova.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-iamport-cordova.readme.md index 8a8ae830783..d223513c705 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-iamport-cordova.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-iamport-cordova.readme.md @@ -1 +1,2 @@ + Cordova plugin that integrates with and handles multiple payment gateways. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-ibeacon.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-ibeacon.readme.md index accd867793f..ee369f17322 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-ibeacon.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-ibeacon.readme.md @@ -1,3 +1,4 @@ + This plugin provides functions for working with iBeacons. -The plugin's API closely mimics the one exposed through the [CLLocationManager](https://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLLocationManager_Class/index.html) introduced in iOS 7. + The plugin's API closely mimics the one exposed through the [CLLocationManager](https://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLLocationManager_Class/index.html) introduced in iOS 7. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-image-picker.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-image-picker.readme.md index 8f9c76acd94..75f3775bff1 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-image-picker.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-image-picker.readme.md @@ -1,3 +1,4 @@ + Cordova Plugin For Multiple Image Selection Requires Cordova plugin: `cordova-plugin-image-picker`. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-image-resizer.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-image-resizer.readme.md index 88fa3c7bf5c..40b02d55e6b 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-image-resizer.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-image-resizer.readme.md @@ -1 +1,2 @@ + Cordova Plugin For Image Resize diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-imap.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-imap.readme.md index e6e57be76e7..f699597a628 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-imap.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-imap.readme.md @@ -1,3 +1,4 @@ + This plugin will enable an Ionic application to use the IMAP (Internet Message Access Protocol) features. This plugin is in Beta version and it offers support only for Android. The plugin uses Java Mail API. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-in-app-browser.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-in-app-browser.readme.md index 0485062862e..87d0037b909 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-in-app-browser.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-in-app-browser.readme.md @@ -1 +1 @@ -Launches in app Browser +Launches in app Browser \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-in-app-purchase-2.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-in-app-purchase-2.readme.md index b6be39d32c9..5bcd6494c48 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-in-app-purchase-2.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-in-app-purchase-2.readme.md @@ -1,24 +1,25 @@ + In-App Purchase on iOS, Android, Windows, macOS and XBox. ## Features -| | ios | android | win-8 | win-10/uwp | mac | -| -------------------- | --- | ------- | ----- | ---------- | --- | -| consumables | ✅ | ✅ | ✅ | ✅ | ✅ | -| non consumables | ✅ | ✅ | ✅ | ✅ | ✅ | -| subscriptions | ✅ | ✅ | ✅ | ✅ | ✅ | -| restore purchases | ✅ | ✅ | ✅ | ✅ | ✅ | -| receipt validations | ✅ | ✅ | | ✅ | ✅ | -| downloadable content | ✅ | | | | ✅ | -| introductory prices | ✅ | ✅ | | ✅ | ✅ | +| | ios | android | win-8 | win-10/uwp | mac | +|--|--|--|--|--|--| +| consumables | ✅ | ✅ | ✅ | ✅ | ✅ | +| non consumables | ✅ | ✅ | ✅ | ✅ | ✅ | +| subscriptions | ✅ | ✅ | ✅ | ✅ | ✅ | +| restore purchases | ✅ | ✅ | ✅ | ✅ | ✅ | +| receipt validations | ✅ | ✅ | | ✅ | ✅ | +| downloadable content | ✅ | | | | ✅ | +| introductory prices | ✅ | ✅ | | ✅ | ✅ | Supports: -- **iOS** version 7.0 or higher. -- **Android** version 2.2 (API level 8) or higher - - with Google Play client version 3.9.16 or higher -- **Windows** Store/Phone 8.1 or higher -- **Windows 10 Mobile** -- **macOS** version 10 -- **Xbox One** - - (and any platform supporting Microsoft's UWP) + - **iOS** version 7.0 or higher. + - **Android** version 2.2 (API level 8) or higher + - with Google Play client version 3.9.16 or higher + - **Windows** Store/Phone 8.1 or higher + - **Windows 10 Mobile** + - **macOS** version 10 + - **Xbox One** + - (and any platform supporting Microsoft's UWP) diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-in-app-purchase.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-in-app-purchase.readme.md index 143985e329b..5fbffa5c65b 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-in-app-purchase.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-in-app-purchase.readme.md @@ -1 +1,2 @@ + A lightweight Cordova plugin for in app purchases on iOS/Android. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-in-app-review.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-in-app-review.readme.md index 8e174f56973..32b56cbab41 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-in-app-review.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-in-app-review.readme.md @@ -1,3 +1,5 @@ + This plugin does use the iOS class SKStore​Review​Controller to open the inApp review popup available since iOS 10.3 This functionality only works on iOS devices + diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-index-app-content.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-index-app-content.readme.md index c28c9dcb463..365932222f7 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-index-app-content.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-index-app-content.readme.md @@ -1,3 +1,4 @@ + This plugin gives you a Javascript API to interact with Core Spotlight on iOS (=> iOS 9). You can add, update and delete items to the spotlight search index. Spotlight Search will include these items in the result list. You can deep-link the search results with your app. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-insomnia.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-insomnia.readme.md index 680fb4b5caa..77bbacfc378 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-insomnia.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-insomnia.readme.md @@ -1 +1,2 @@ + Prevent the screen of the mobile device from falling asleep. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-intel-security.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-intel-security.readme.md index 685bec69d99..93b6eee3eb3 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-intel-security.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-intel-security.readme.md @@ -1,7 +1,7 @@ + The App Security API enables the use of security properties and capabilities on the platform, using a new set of API defined for application developers. You are not required to be a security expert to make good use of the API. Key elements, such as encryption of data and establishments of capabilities, is abstracted and done by the API implementation, for you. For example: - - Use the API to store (E.g. cache) data locally, using the device non-volatile storage. Data protection/encryption will be done for you by the API implementation - Establish a connection with remote server (E.g. XHR) using a protected channel. SSL/TLS establishment and usage will be done for you by the API implementation diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-intercom.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-intercom.readme.md index 6526cd4d4ff..3cecc84de9e 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-intercom.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-intercom.readme.md @@ -1,2 +1,3 @@ + This is a plugin that allows your Ionic app to use Intercom for iOS and/or Intercom for Android. Follow the offical documentation to setup this plugin correctly: https://developers.intercom.com/docs/cordova-phonegap-configuration diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-ionic-webview.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-ionic-webview.readme.md index 1c68245f996..6fe62b6c53a 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-ionic-webview.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-ionic-webview.readme.md @@ -1,3 +1,4 @@ + Access Web View utilities. Requires the Cordova plugin: `cordova-plugin-ionic-webview` > 2.0. For more info, please see the [Ionic Web View](https://github.com/ionic-team/cordova-plugin-ionic-webview) repository. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-ios-aswebauthenticationsessapi.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-ios-aswebauthenticationsessapi.readme.md index 708074a0ab2..b8ea2b47c9e 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-ios-aswebauthenticationsessapi.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-ios-aswebauthenticationsessapi.readme.md @@ -1 +1,2 @@ + Plugin for iOS 12 ASWebAuthenticationSession API diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-is-debug.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-is-debug.readme.md index 03fc8b67cb1..8a75e4fc94f 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-is-debug.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-is-debug.readme.md @@ -1,2 +1,3 @@ + Detect if the app is running in debug mode or not. Debug mode is when the app is built and installed locally via xcode / eclipse / the cordova cli etc, compared to release mode when the app was downloaded from the app / play store via an end user. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-janalytics.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-janalytics.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-janalytics.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-janalytics.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-jins-meme.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-jins-meme.readme.md index ed15dd96b1c..2895fffa54c 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-jins-meme.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-jins-meme.readme.md @@ -1 +1,2 @@ + Implementation of the JINS MEME SDK diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-jumio.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-jumio.readme.md index be8555b753a..9fde9b57805 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-jumio.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-jumio.readme.md @@ -2,4 +2,4 @@ Check out [example with Angular 9.1 & Capacitor 2.1](https://github.com/zendigit [Platform Customization](https://github.com/Jumio/mobile-cordova#customization) is possible -Original source: [Jumio mobile-cordova](https://github.com/Jumio/mobile-cordova) Plugin for Apache Cordova +Original source: [Jumio mobile-cordova](https://github.com/Jumio/mobile-cordova) Plugin for Apache Cordova \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-keyboard.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-keyboard.readme.md index b86b22652c5..1ccf061fc98 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-keyboard.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-keyboard.readme.md @@ -1,3 +1,4 @@ + Keyboard plugin for Cordova. Requires Cordova plugin: `cordova-plugin-ionic-keyboard`. For more info, please see the [Keyboard plugin docs](https://github.com/ionic-team/cordova-plugin-ionic-keyboard). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-keychain-touch-id.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-keychain-touch-id.readme.md index d2e63dd18d1..cca62d8b43e 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-keychain-touch-id.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-keychain-touch-id.readme.md @@ -1,2 +1,3 @@ + A cordova plugin adding the iOS TouchID / Android fingerprint to your app and allowing you to store a password securely in the device keychain. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-keychain.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-keychain.readme.md index ae817d52f6d..7764ef64d16 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-keychain.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-keychain.readme.md @@ -1,3 +1,4 @@ + Get and set data in the iOS Keychain Requires Cordova plugin: `cordova-plugin-ios-keychain`. For more info, please see the [Keychain plugin docs](https://github.com/ionic-team/cordova-plugin-ios-keychain). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-kommunicate.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-kommunicate.readme.md index 013e0cacbed..c28100fc7ff 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-kommunicate.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-kommunicate.readme.md @@ -1,3 +1,4 @@ + The plugin for the Kommunicate SDK. With the help of this plugin, you can easily add human + bot chat support functionality to you app. Refer to: TODO: insert site link diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-last-cam.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-last-cam.readme.md index a272d33f4e3..125e1108746 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-last-cam.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-last-cam.readme.md @@ -1,2 +1,3 @@ + Last Cam is a Camera Preview plugin that allows you to take capture both Videos and images in a custom html preview of your choice. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-launch-navigator.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-launch-navigator.readme.md index 105b197495b..0306a39d956 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-launch-navigator.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-launch-navigator.readme.md @@ -1 +1,2 @@ + Requires Cordova plugin: uk.co.workingedge.phonegap.plugin.launchnavigator. For more info, please see the [LaunchNavigator plugin docs](https://github.com/dpa99c/phonegap-launch-navigator). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-launch-review.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-launch-review.readme.md index 2f3437ec5c2..942352f7056 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-launch-review.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-launch-review.readme.md @@ -1,4 +1,5 @@ -Assists in leaving user reviews/ratings in the App Stores. + +Assists in leaving user reviews/ratings in the App Stores. - Launches the platform's App Store page for the current app in order for the user to leave a review. - On iOS (10.3 and above) invokes the native in-app rating dialog which allows a user to rate your app without needing to open the App Store. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-line-login.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-line-login.readme.md index fc39816081a..6cc5413db8f 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-line-login.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-line-login.readme.md @@ -1 +1,2 @@ + The function login, logs out, acquires, verifies, and refreshes the access token. The version of LineSDK you are using is as follows. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-local-backup.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-local-backup.readme.md index f6123e51703..2085ded77a8 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-local-backup.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-local-backup.readme.md @@ -1 +1,2 @@ + This plugin to create local backup diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-local-notifications.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-local-notifications.readme.md index 6cfdd379643..82c183d6fee 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-local-notifications.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-local-notifications.readme.md @@ -1 +1,2 @@ + This plugin allows you to display local notifications on the device diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-locataccuracy.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-locataccuracy.readme.md index ed018edb499..99d60417c8f 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-locataccuracy.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-locataccuracy.readme.md @@ -1 +1,2 @@ + This Cordova/Phonegap plugin for Android and iOS to request enabling/changing of Location Services by triggering a native dialog from within the app, avoiding the need for the user to leave your app to change location settings manually. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-lottie-splash-screen.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-lottie-splash-screen.readme.md index e67243449ae..539dbf0c5b4 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-lottie-splash-screen.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-lottie-splash-screen.readme.md @@ -1 +1,2 @@ + Cordova plugin to show bodymovin/Lottie animations as the splash screen with Airbnb's Lottie wrapper diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-luxand.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-luxand.readme.md index bead6de72c2..55292ec8b1b 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-luxand.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-luxand.readme.md @@ -1 +1,2 @@ + This plugin let you integrate Luxand Face SDK into your ionic projects, so you can implement face authentication easily in your application. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-magnetometer.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-magnetometer.readme.md index ca5ec6a2525..9e5778eab23 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-magnetometer.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-magnetometer.readme.md @@ -1 +1,2 @@ + Requires Cordova plugin: `cordova-plugin-magnetometer`. For more info, please see the [Device Orientation docs](https://github.com/sdesalas/cordova-plugin-magnetometer). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-market.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-market.readme.md index 0fa09982e5b..281c8d456ad 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-market.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-market.readme.md @@ -1 +1,2 @@ + Opens an app's page in the market place (Google Play, App Store) diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-media-capture.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-media-capture.readme.md index 69b6b0ebf1b..92cacd40a12 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-media-capture.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-media-capture.readme.md @@ -1,3 +1,4 @@ + This plugin provides access to the device's audio, image, and video capture capabilities. Requires Cordova plugin: `cordova-plugin-media-capture`. For more info, please see the [Media Capture plugin docs](https://github.com/apache/cordova-plugin-media-capture). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-media.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-media.readme.md index f67d2174eea..9d07585f502 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-media.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-media.readme.md @@ -1 +1,2 @@ + This plugin provides the ability to record and play back audio files on a device. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-metrix.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-metrix.readme.md index 63f05dbf100..13edc56092e 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-metrix.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-metrix.readme.md @@ -1,3 +1,4 @@ + This is the Ionic Cordova SDK of Metrix™. You can read more about Metrix™ at metrix.ir. Requires Cordova plugin: `ir.metrix.sdk`. For more info, please see the [Metrix Cordova SDK](https://github.com/metrixorg/MetrixSDK-CordovaPlugin) diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-mixpanel.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-mixpanel.readme.md index f3eb05040cf..75e25a2c230 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-mixpanel.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-mixpanel.readme.md @@ -1 +1,2 @@ + Cordova Plugin that wraps Mixpanel SDK for Android and iOS diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-mlkit-translate.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-mlkit-translate.readme.md index c159f3801cb..b8584c4e0ae 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-mlkit-translate.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-mlkit-translate.readme.md @@ -1 +1,2 @@ + Plugin that implements MLKit Translation and Language Identification features. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-mobile-accessibility.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-mobile-accessibility.readme.md index 0d06c413e79..e9f6b965a20 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-mobile-accessibility.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-mobile-accessibility.readme.md @@ -1,2 +1,3 @@ + This plugin exposes information on the status of various accessibility features of mobile operating systems, including, for example, whether a screen reader is running, invert colors is enabled, and the preferred scaling for text. It also allows an application to send a string to be spoken by the screen reader, or a command to stop the screen reader from speaking. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-mobile-messaging.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-mobile-messaging.readme.md index d71ef31d811..30c9e83dc6d 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-mobile-messaging.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-mobile-messaging.readme.md @@ -1,3 +1,4 @@ + Mobile Messaging SDK is designed and developed to easily enable push notification channel in your mobile application. In almost no time of implementation you get push notification in your application and access to the features of [Infobip IP Messaging Platform](https://portal.infobip.com/push/). This document describes library integration steps for your Cordova project. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-ms-adal.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-ms-adal.readme.md index 0390d514207..72ffec61b13 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-ms-adal.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-ms-adal.readme.md @@ -1,4 +1,5 @@ + Active Directory Authentication Library (ADAL) plugin. Active Directory Authentication Library ([ADAL](https://docs.microsoft.com/en-us/dotnet/api/microsoft.identitymodel.clients.activedirectory?view=azure-dotnet)) plugin provides easy to use authentication functionality for your Apache Cordova apps by taking advantage of -Windows Server Active Directory and Windows Azure Active Directory. Here you can find the source code for the library. +Windows Server Active Directory and Windows Azure Active Directory. Here you can find the source code for the library. \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-multiple-document-picker.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-multiple-document-picker.readme.md index 1a4f27e7fd5..ba01c25cf88 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-multiple-document-picker.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-multiple-document-picker.readme.md @@ -1 +1,2 @@ + This plugin allows users to pick multiple documents/images at once diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-music-controls.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-music-controls.readme.md index 04fe4a3bf33..e5465ae0a91 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-music-controls.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-music-controls.readme.md @@ -1,3 +1,4 @@ + Music controls for Cordova applications. Display a 'media' notification with play/pause, previous, next buttons, allowing the user to control the play. Handle also headset event (plug, unplug, headset button). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-native-audio.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-native-audio.readme.md index 7bbca215ca4..b37886b1b59 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-native-audio.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-native-audio.readme.md @@ -1 +1 @@ -Native Audio Playback +Native Audio Playback \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-native-geocoder.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-native-geocoder.readme.md index 5468f7f9077..3e9b7575290 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-native-geocoder.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-native-geocoder.readme.md @@ -1 +1,2 @@ + Cordova plugin for native forward and reverse geocoding diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-native-keyboard.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-native-keyboard.readme.md index faea3298df2..cd2d3dab18a 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-native-keyboard.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-native-keyboard.readme.md @@ -1 +1,3 @@ + A cross platform WhatsApp / Messenger / Slack -style keyboard even. For your Cordova app. + diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-native-page-transitions.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-native-page-transitions.readme.md index 266ae69275a..edd6e9c39ee 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-native-page-transitions.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-native-page-transitions.readme.md @@ -1 +1,2 @@ + The Native Page Transitions plugin uses native hardware acceleration to animate your transitions between views. You have complete control over the type of transition, the duration, and direction. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-native-ringtones.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-native-ringtones.readme.md index 9a2e0d43722..7bcffb8dee4 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-native-ringtones.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-native-ringtones.readme.md @@ -1,2 +1,3 @@ + The plugin helps get the native ringtones list on Android or IOS devices. And you can also use this plugin to play or stop the native ringtones and custom ringtones(added in the www folder). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-navigatbar.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-navigatbar.readme.md index 4e29c4eeb6a..ad0db3ff5c9 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-navigatbar.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-navigatbar.readme.md @@ -1 +1,2 @@ + The NavigationBar plugin allows you to hide and auto hide the android navigation bar. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-network-interface.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-network-interface.readme.md index 837c7e475a5..ab6d1bf9d08 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-network-interface.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-network-interface.readme.md @@ -1 +1,2 @@ + Network interface information plugin for Cordova/PhoneGap that supports Android, Blackberry 10, Browser, iOS, and Windows Phone 8. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-network.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-network.readme.md index 9a5f7a35d4e..5ad7357168c 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-network.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-network.readme.md @@ -1 +1,2 @@ + Requires Cordova plugin: cordova-plugin-network-information. For more info, please see the [Network plugin docs](https://github.com/apache/cordova-plugin-network-information). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-nfc.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-nfc.readme.md index a81214659db..92837035391 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-nfc.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-nfc.readme.md @@ -1,7 +1,7 @@ + The NFC plugin allows you to read and write NFC tags. You can also beam to, and receive from, other NFC enabled devices. Use to - - read data from NFC tags - write data to NFC tags - send data to other NFC enabled devices diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-ocr.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-ocr.readme.md index 9632b1f0155..4e1c4bcb571 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-ocr.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-ocr.readme.md @@ -1,4 +1,5 @@ + This plugin attempts to identify and extract text from an image. Please note: This plugin depends on the GoogleMobileVision pod which is referencing UIWebview, that has been deprecated by Apple. Don't use this plugin in an app intended for App Store as you will get a review rejection from Apple: `Deprecated API Usage — Apple will stop accepting submissions of apps that use UIWebView APIs` -For more info, please see the following Github issue [Google Mobile Vision relying on deprecated UIWebview](https://github.com/NeutrinosPlatform/cordova-plugin-mobile-ocr/issues/27). +For more info, please see the following Github issue [Google Mobile Vision relying on deprecated UIWebview](https://github.com/NeutrinosPlatform/cordova-plugin-mobile-ocr/issues/27). \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-onesignal.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-onesignal.readme.md index dd7010c8876..5ddc2066105 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-onesignal.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-onesignal.readme.md @@ -1,3 +1,4 @@ + The OneSignal plugin is an client implementation for using the [OneSignal](https://onesignal.com/) Service. OneSignal is a simple implementation for delivering push notifications. @@ -5,13 +6,11 @@ Please view the official [OneSignal Ionic SDK Installation](https://documentatio for more information. #### Icons - If you want to use generated icons with command `ionic cordova resources`: 1. Add a file to your `hooks` directory called `copy_android_notification_icons.js` 2. Configure the hook in your config.xml - ``` @@ -66,4 +65,5 @@ module.exports = function(context) { ``` 3. From the root of your project make the file executable: - `$ chmod +x hooks/copy_android_notification_icons.js` +`$ chmod +x hooks/copy_android_notification_icons.js` + diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-open-native-settings.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-open-native-settings.readme.md index 11e9c0ca52c..0be0100f96d 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-open-native-settings.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-open-native-settings.readme.md @@ -1 +1,2 @@ -Plugin to open native screens of iOS/android settings + +Plugin to open native screens of iOS/android settings \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-openalpr.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-openalpr.readme.md index c59128571c6..077568f6f76 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-openalpr.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-openalpr.readme.md @@ -1 +1,2 @@ + This Cordova plugin adds support for the OpenALPR (Automatic License Plate Recognition) library, which provides support for retrieving the license plate from a picture. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-paypal.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-paypal.readme.md index 4caf38450f4..97823a256c7 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-paypal.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-paypal.readme.md @@ -1 +1,2 @@ + PayPal plugin for Cordova/Ionic Applications diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-paytabs.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-paytabs.readme.md index 4f099e14ed4..e45425cee51 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-paytabs.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-paytabs.readme.md @@ -1 +1,2 @@ + A plugin that allows you to use PayTabs's Native SDKs for Android and iOS. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-pdf-generator.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-pdf-generator.readme.md index 22692f6e35d..0b14edafe4a 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-pdf-generator.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-pdf-generator.readme.md @@ -1 +1,2 @@ + Simple plugin to generate (offline) pdf. The plugin transforms HTML to PDF and also provide the mechanism to share the pdf to other apps like Mail, etc. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-pedometer.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-pedometer.readme.md index 81ece364e1f..c6fcd66be8f 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-pedometer.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-pedometer.readme.md @@ -1,2 +1,3 @@ + Fetch pedestrian-related pedometer data, such as step counts and other information about the distance travelled. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-phonegap-local-notification.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-phonegap-local-notification.readme.md index 1510b50b7b6..dd840c8b485 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-phonegap-local-notification.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-phonegap-local-notification.readme.md @@ -1,2 +1,3 @@ + The Local Notification plugin gives developers the ability to post notifications from their app that show up in the device’s notification area. The API for the local notification plugin follows the W3C Web Notifications specification: https://www.w3.org/TR/notifications/ diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-photo-library.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-photo-library.readme.md index 77e517bcbd9..1f20587b9e3 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-photo-library.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-photo-library.readme.md @@ -1,3 +1,4 @@ + The PhotoLibrary plugin allows access to photos from device by url. So you can use plain img tag to display photos and their thumbnails, and different 3rd party libraries as well. Saving photos and videos to the library is also supported. cdvphotolibrary urls should be trusted by Angular. See plugin homepage to learn how. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-photo-viewer.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-photo-viewer.readme.md index c4ca80fa312..642ad87c3ba 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-photo-viewer.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-photo-viewer.readme.md @@ -1 +1 @@ -This plugin can display your image in full screen with the ability to pan, zoom, and share the image. +This plugin can display your image in full screen with the ability to pan, zoom, and share the image. \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-pin-check.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-pin-check.readme.md index 6596e0e430f..6ea7514c5fa 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-pin-check.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-pin-check.readme.md @@ -1,3 +1,4 @@ + This plugin is for use with Apache Cordova and allows your application to check whether pin/keyguard or passcode is setup on iOS and Android phones. Requires Cordova plugin: cordova-plugin-pincheck. For more info, please see the [PinCheck plugin docs](https://github.com/ohh2ahh/AppAvailability). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-pin-dialog.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-pin-dialog.readme.md index d1bb01fec7e..2c12503cd71 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-pin-dialog.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-pin-dialog.readme.md @@ -1,3 +1,6 @@ + PhoneGap numeric password dialog plugin for Android and iOS. Requires Cordova plugin: `cordova-plugin-pin-dialog`. For more info, please see the [Pin Dialog plugin docs](https://github.com/Paldom/PinDialog). + + diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-pinterest.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-pinterest.readme.md index 9a9cc59bc6c..fa7a099a33f 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-pinterest.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-pinterest.readme.md @@ -1 +1,2 @@ + Cordova plugin for Pinterest diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-pollfish.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-pollfish.readme.md index b1cab91f830..c42c478d81d 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-pollfish.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-pollfish.readme.md @@ -1 +1,2 @@ + Pollfish Ionic Native plugin wrapper diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-power-management.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-power-management.readme.md index 4ed7aff21ca..eaca280cad2 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-power-management.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-power-management.readme.md @@ -1,2 +1,3 @@ + The PowerManagement plugin offers access to the devices power-management functionality. It should be used for applications which keep running for a long time without any user interaction. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-power-optimization.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-power-optimization.readme.md index 1985ca44851..779cd5d6ec2 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-power-optimization.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-power-optimization.readme.md @@ -1,2 +1,3 @@ + Android Custom Roms made sometimes your apps unfunctional due to being killed in the background, notification messages do not appearing or your services being killed by agressive power saving mode. The Power Optimization plugin give you android PowerManager methods with cordova. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-printer.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-printer.readme.md index 5aff311b111..312ac4a9125 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-printer.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-printer.readme.md @@ -1 +1 @@ -Prints documents or HTML rendered content +Prints documents or HTML rendered content \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-pspdfkit-cordova.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-pspdfkit-cordova.readme.md index 909c2ef0dbb..51bb27361c9 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-pspdfkit-cordova.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-pspdfkit-cordova.readme.md @@ -1 +1,2 @@ + The official plugin to use PSPDFKit with Cordova and Ionic. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-purchases.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-purchases.readme.md index dc1a4fbbb4b..7f42a5bcd96 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-purchases.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-purchases.readme.md @@ -1,7 +1,7 @@ + Purchases is a cross platform solution for managing in-app subscriptions. A backend is also provided via [RevenueCat](https://www.revenuecat.com) ## Features - | | RevenueCat | | --- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | | ✅ | Server-side receipt validation | @@ -10,8 +10,8 @@ Purchases is a cross platform solution for managing in-app subscriptions. A back | 📊 | Analytics - automatic calculation of metrics like conversion, mrr, and churn | | 📝 | [Online documentation](https://docs.revenuecat.com/docs) up to date | | 🔀 | [Integrations](https://www.revenuecat.com/integrations) - over a dozen integrations to easily send purchase data where you need it | -| 💯 | Well maintained - [frequent releases](https://github.com/RevenueCat/cordova-plugin-purchases/releases) | -| 📮 | Great support - [Help Center](https://revenuecat.zendesk.com) | +| 💯 | Well maintained - [frequent releases](https://github.com/RevenueCat/cordova-plugin-purchases/releases) | +| 📮 | Great support - [Help Center](https://revenuecat.zendesk.com) | | 🤩 | Awesome [new features](https://trello.com/b/RZRnWRbI/revenuecat-product-roadmap) | ## Getting Started diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-push.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-push.readme.md index a9c3464e985..5ae1db23037 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-push.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-push.readme.md @@ -1,3 +1,4 @@ + Register and receive push notifications. Requires Cordova plugin: `phonegap-plugin-push`. For more info, please see the [Push plugin docs](https://github.com/phonegap/phonegap-plugin-push). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-pushape-push.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-pushape-push.readme.md index e65c6c7edd7..464bba08731 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-pushape-push.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-pushape-push.readme.md @@ -1,3 +1,4 @@ + Register and receive push notifications. This plugin extends functionalities of Push native plugin in order to use it with Pushape service. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-qqsdk.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-qqsdk.readme.md index d9b32939ab5..fcc40802c3d 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-qqsdk.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-qqsdk.readme.md @@ -1,3 +1,4 @@ + This Plugin is a wrapper around the Tencent QQ SDK for Android and iOS. Provides access to QQ ssoLogin, QQ Sharing, QQZone Sharing etc. Requires Cordova plugin: `cordova-plugin-qqsdk`. For more info, please see the [QQSDK plugin docs](https://github.com/iVanPan/Cordova_QQ). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-qr-scanner.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-qr-scanner.readme.md index 55b6fc63435..3dcb9304702 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-qr-scanner.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-qr-scanner.readme.md @@ -1,3 +1,4 @@ + A fast, energy efficient, highly-configurable QR code scanner for Cordova apps. Requires Cordova plugin: `cordova-plugin-qrscanner`. For more info, please see the [QR Scanner plugin docs](https://github.com/bitpay/cordova-plugin-qrscanner). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-regula-document-reader.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-regula-document-reader.readme.md index 505b461b09c..a90b29a29b0 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-regula-document-reader.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-regula-document-reader.readme.md @@ -1 +1,2 @@ + Plugin for reading and validation of identification documents. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-restart.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-restart.readme.md index 2d13f688d77..13214fabab4 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-restart.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-restart.readme.md @@ -1 +1,2 @@ + This plugin to restart android application diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-rollbar.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-rollbar.readme.md index 9f1d179bd5c..1b4e50f1b68 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-rollbar.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-rollbar.readme.md @@ -1 +1,2 @@ + This plugin adds [Rollbar](https://rollbar.com/) App monitoring to your application diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-safari-view-controller.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-safari-view-controller.readme.md index 6153b43d685..c635a5fd046 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-safari-view-controller.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-safari-view-controller.readme.md @@ -1,3 +1,4 @@ + For displaying read-only web content. Requires Cordova plugin: `cordova-plugin-safariviewcontroller`. For more info, please see the [Safari View Controller plugin docs](https://github.com/EddyVerbruggen/cordova-plugin-safariviewcontroller). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-screen-orientation.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-screen-orientation.readme.md index a83e7487c9e..416c63df2e9 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-screen-orientation.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-screen-orientation.readme.md @@ -1,3 +1,4 @@ + Cordova plugin to set/lock the screen orientation in a common way. Requires Cordova plugin: `cordova-plugin-screen-orientation`. For more info, please see the [Screen Orientation plugin docs](https://github.com/apache/cordova-plugin-screen-orientation). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-screenshot.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-screenshot.readme.md index e9b365c009a..15c0b85bf5f 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-screenshot.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-screenshot.readme.md @@ -1 +1 @@ -Captures a screen shot +Captures a screen shot \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-sensors.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-sensors.readme.md index 5af0e96163c..a4c9c37f0b3 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-sensors.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-sensors.readme.md @@ -1 +1,2 @@ + This plugin enables sensors on Android devices diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-serial.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-serial.readme.md index a16c1211a8c..125a3910c49 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-serial.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-serial.readme.md @@ -1 +1,2 @@ + This plugin provides functions for working with Serial connections diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-service-discovery.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-service-discovery.readme.md index b13d7210b0e..aca58cc645a 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-service-discovery.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-service-discovery.readme.md @@ -1 +1,2 @@ + Simple plugin to get any SSDP / UPnP / DLNA service on a local network diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-shake.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-shake.readme.md index 917873665cf..5608715c9fa 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-shake.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-shake.readme.md @@ -1 +1 @@ -Handles shake gesture +Handles shake gesture \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-shop-checkout.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-shop-checkout.readme.md index 630d79ceeb0..8ab0b4dd94f 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-shop-checkout.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-shop-checkout.readme.md @@ -1,2 +1,3 @@ + This is a plugin that allows your Ionic app to use ShopChecout for Android. Follow the offical documentation to setup this plugin correctly: https://developer.shoptopup.com/docs/shoptopup-for-cordovaphonegap diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-shortcuts-android.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-shortcuts-android.readme.md index 40b7e9082ef..d7fe4d72b94 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-shortcuts-android.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-shortcuts-android.readme.md @@ -1,3 +1,4 @@ + Use this plugin to create shortcuts in Android. Use this plugin to handle Intents on your application. For more information on Android App Shortcuts: https://developer.android.com/guide/topics/ui/shortcuts.html For more information on Android Intents: https://developer.android.com/guide/components/intents-filters.html diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-sign-in-with-apple.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-sign-in-with-apple.readme.md index f02092735e3..e8991e9348b 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-sign-in-with-apple.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-sign-in-with-apple.readme.md @@ -1,6 +1,7 @@ + Sign in with Apple makes it easy for users to sign in to your apps and websites using their Apple ID. Instead of filling out forms, verifying email addresses, and choosing new passwords, they can use Sign in with Apple to set up an account and start using your app right away. All accounts are protected with two-factor authentication for superior security, and Apple will not track users’ activity in your app or website. -_Source:_ https://developer.apple.com/sign-in-with-apple/ +*Source:* https://developer.apple.com/sign-in-with-apple/ diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-sim.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-sim.readme.md index 80e74390f46..52c91993c93 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-sim.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-sim.readme.md @@ -1,3 +1,4 @@ + Gets info from the Sim card like the carrier name, mcc, mnc and country code and other system dependent info. Requires Cordova plugin: `cordova-plugin-sim`. For more info, please see the [Cordova Sim docs](https://github.com/pbakondy/cordova-plugin-sim). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-siri-shortcuts.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-siri-shortcuts.readme.md index 00c77e7cdfc..e6270053a4a 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-siri-shortcuts.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-siri-shortcuts.readme.md @@ -1,3 +1,4 @@ + This plugin only works when your app is built with XCode 10. Shortcuts will only appear on iOS-versions >= 12.0 This plugin enables the use of Siri shortcuts in Cordova. Siri Shortcuts enable the user to perform certain actions by adding them to Siri. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-smartlook.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-smartlook.readme.md index 696999e2340..83f1f737e59 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-smartlook.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-smartlook.readme.md @@ -1,2 +1,3 @@ + Official Smartlook SDK plugin. Full documentation can be found here: https://smartlook.github.io/docs/sdk/ionic/ diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-sms-retriever.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-sms-retriever.readme.md index 3af874243f1..eb6aaf6b11c 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-sms-retriever.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-sms-retriever.readme.md @@ -1 +1,2 @@ + This plugin retrives the SMS which arrive without requiring READ permissions. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-sms.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-sms.readme.md index d64c2f4cab6..b0ba3252b25 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-sms.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-sms.readme.md @@ -1 +1,3 @@ + + Requires Cordova plugin: cordova-sms-plugin. For more info, please see the [SMS plugin docs](https://github.com/cordova-sms/cordova-sms-plugin). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-social-sharing.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-social-sharing.readme.md index 3edd7dba0d1..760be2d9030 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-social-sharing.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-social-sharing.readme.md @@ -1,3 +1,4 @@ + Share text, files, images, and links via social networks, sms, and email. For Browser usage check out the Web Share API docs: https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin#5-web-share-api diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-speech-recognition.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-speech-recognition.readme.md index efc07916d88..ccd38016353 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-speech-recognition.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-speech-recognition.readme.md @@ -1 +1,2 @@ + This plugin does speech recognition using cloud services diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-speechkit.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-speechkit.readme.md index 5521af0b3b3..8623152c556 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-speechkit.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-speechkit.readme.md @@ -1 +1,2 @@ + Implementation of Nuance SpeechKit SDK on Ionic diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-spinner-dialog.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-spinner-dialog.readme.md index 97f3a5146a5..66329069921 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-spinner-dialog.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-spinner-dialog.readme.md @@ -1,3 +1,4 @@ + Cordova plugin for showing a native spinner based on Paldom/SpinnerDialog. Requires Cordova plugin: `cordova-plugin-native-spinner`. For more info, please see the [Spinner Dialog plugin docs](https://github.com/greybax/cordova-plugin-native-spinner). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-splash-screen.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-splash-screen.readme.md index 1a5acf29e82..31117f45f87 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-splash-screen.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-splash-screen.readme.md @@ -1 +1 @@ -This plugin displays and hides a splash screen during application launch. The methods below allows showing and hiding the splashscreen after the app has loaded. +This plugin displays and hides a splash screen during application launch. The methods below allows showing and hiding the splashscreen after the app has loaded. \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-spotify-auth.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-spotify-auth.readme.md index cbc01dcad68..bce7a50dba7 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-spotify-auth.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-spotify-auth.readme.md @@ -1,3 +1,3 @@ -Cordova plugin for authenticating with Spotify +Cordova plugin for authenticating with Spotify > https://github.com/Festify/cordova-spotify-oauth diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-sqlite-db-copy.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-sqlite-db-copy.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-sqlite-db-copy.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-sqlite-db-copy.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-sqlite-porter.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-sqlite-porter.readme.md index 1f34ca227ed..92e4d096de7 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-sqlite-porter.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-sqlite-porter.readme.md @@ -1 +1,2 @@ + This Cordova/Phonegap plugin can be used to import/export to/from a SQLite database using either SQL or JSON. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-sqlite.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-sqlite.readme.md index bfb4c960c5d..0d19359e763 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-sqlite.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-sqlite.readme.md @@ -1 +1,2 @@ + Access SQLite databases on the device. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-ssh-connect.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-ssh-connect.readme.md index 4c8d739d81f..62c602df45a 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-ssh-connect.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-ssh-connect.readme.md @@ -1 +1,2 @@ + Cordova plugin to make connections and execute commands through SSH diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-star-prnt.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-star-prnt.readme.md index 167ed6673b8..8866094f12f 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-star-prnt.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-star-prnt.readme.md @@ -1 +1,2 @@ -- Ionic Native wrappers for the starprnt cordova plugin for Star Micronics Bluetooth/LAN printers + +* Ionic Native wrappers for the starprnt cordova plugin for Star Micronics Bluetooth/LAN printers diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-status-bar.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-status-bar.readme.md index 0c999e9b7e3..d2df403f415 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-status-bar.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-status-bar.readme.md @@ -1,3 +1,4 @@ + Manage the appearance of the native status bar. Requires Cordova plugin: `cordova-plugin-statusbar`. For more info, please see the [StatusBar plugin docs](https://github.com/apache/cordova-plugin-statusbar). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-stepcounter.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-stepcounter.readme.md index b6a57d237ac..918f0320b25 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-stepcounter.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-stepcounter.readme.md @@ -1,6 +1,6 @@ + Cordova plugin for using device's stepcounter on Android (API > 19) Use to - - start and stop stepcounter service - read device's stepcounter data diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-streaming-media.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-streaming-media.readme.md index 5a521be5eb5..b093d14b4af 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-streaming-media.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-streaming-media.readme.md @@ -1 +1,2 @@ + This plugin allows you to stream audio and video in a fullscreen, native player on iOS and Android. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-stripe.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-stripe.readme.md index 2e8f0e8c676..32f49f8fb59 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-stripe.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-stripe.readme.md @@ -1 +1,2 @@ + A plugin that allows you to use Stripe's Native SDKs for Android and iOS. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-sum-up.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-sum-up.readme.md index 22c07237113..373fa2e0f42 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-sum-up.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-sum-up.readme.md @@ -1 +1,2 @@ + Plugin to communicate with a SumUp payment terminal diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-system-alert-window-permission.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-system-alert-window-permission.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-system-alert-window-permission.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-system-alert-window-permission.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-taptic-engine.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-taptic-engine.readme.md index 4c4cc795164..6a1864ed364 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-taptic-engine.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-taptic-engine.readme.md @@ -1 +1,2 @@ + An Ionic plugin to use Taptic Engine API on iPhone 7, 7 Plus or newer. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-tealium-adidentifier.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-tealium-adidentifier.readme.md index 8f1ca44e3ad..577ae87896a 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-tealium-adidentifier.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-tealium-adidentifier.readme.md @@ -1,2 +1,3 @@ + This module depends on the [Tealium Cordova Plugin](https://github.com/tealium/cordova-plugin). Without it, this module will not do anything. Makes the IDFA and Google Ad Identifier available in the Tealium data layer. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-tealium-installreferrer.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-tealium-installreferrer.readme.md index 2efbb060915..80ce9a5af77 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-tealium-installreferrer.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-tealium-installreferrer.readme.md @@ -1,2 +1,3 @@ + This module depends on the [Tealium Cordova Plugin](https://github.com/tealium/cordova-plugin). Without it, this module will not do anything. Implements a Broadcast Receiver for the INSTALL_REFERRER intent. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-tealium.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-tealium.readme.md index b53253d0eef..41e946cfc8e 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-tealium.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-tealium.readme.md @@ -1,3 +1,4 @@ + This plugin provides a TypeScript wrapper around the [Tealium](https://www.tealium.com) Cordova plugin for Ionic Native. -For full documentation, see [https://community.tealiumiq.com/t5/Mobile-Libraries/Tealium-for-Cordova/ta-p/17618](https://community.tealiumiq.com/t5/Mobile-Libraries/Tealium-for-Cordova/ta-p/17618) +For full documentation, see [https://community.tealiumiq.com/t5/Mobile-Libraries/Tealium-for-Cordova/ta-p/17618](https://community.tealiumiq.com/t5/Mobile-Libraries/Tealium-for-Cordova/ta-p/17618) \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-text-to-speech-advanced.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-text-to-speech-advanced.readme.md index f98c3983123..56e223f24c3 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-text-to-speech-advanced.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-text-to-speech-advanced.readme.md @@ -1 +1,2 @@ + Text to Speech plugin diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-text-to-speech.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-text-to-speech.readme.md index f98c3983123..56e223f24c3 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-text-to-speech.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-text-to-speech.readme.md @@ -1 +1,2 @@ + Text to Speech plugin diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-theme-detection.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-theme-detection.readme.md index cd2ff3ab709..032d6ec13cc 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-theme-detection.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-theme-detection.readme.md @@ -1 +1,2 @@ + Cordova plugin to detect whether dark mode is enabled or not diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-themeable-browser.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-themeable-browser.readme.md index 40815363667..81e3408cc65 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-themeable-browser.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-themeable-browser.readme.md @@ -1 +1,2 @@ + In-app browser that allows styling. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-three-dee-touch.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-three-dee-touch.readme.md index aea7b49108e..a78596064d6 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-three-dee-touch.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-three-dee-touch.readme.md @@ -1,3 +1,4 @@ + The 3D Touch plugin adds 3D Touch capabilities to your Cordova app. Requires Cordova plugin: `cordova-plugin-3dtouch`. For more info, please see the [3D Touch plugin docs](https://github.com/EddyVerbruggen/cordova-plugin-3dtouch). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-toast.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-toast.readme.md index 9034d3ab1f0..c7b5d6c7fba 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-toast.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-toast.readme.md @@ -1,3 +1,4 @@ + This plugin allows you to show a native Toast (a little text popup) on iOS, Android and WP8. It's great for showing a non intrusive native notification which is guaranteed always in the viewport of the browser. Requires Cordova plugin: `cordova-plugin-x-toast`. For more info, please see the [Toast plugin docs](https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-touch-id.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-touch-id.readme.md index 0bb27885878..02615a1ec9f 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-touch-id.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-touch-id.readme.md @@ -1,3 +1,4 @@ + Scan the fingerprint of a user with the TouchID sensor. Requires Cordova plugin: `cordova-plugin-touch-id`. For more info, please see the [TouchID plugin docs](https://github.com/EddyVerbruggen/cordova-plugin-touch-id). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-twitter-connect.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-twitter-connect.readme.md index 0fd10d23d96..16ead04e0ed 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-twitter-connect.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-twitter-connect.readme.md @@ -1,6 +1,6 @@ + Plugin to use Twitter Single Sign On Uses Twitter's Fabric SDK - ```typescript import { TwitterConnect } from '@awesome-cordova-plugins/twitter-connect/ngx'; @@ -23,4 +23,4 @@ function onSuccess(response) { this.twitter.login().then(onSuccess, onError); this.twitter.logout().then(onLogoutSuccess, onLogoutError); -``` +``` \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-uid.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-uid.readme.md index f1dd7f71fd1..8876a612197 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-uid.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-uid.readme.md @@ -1 +1,2 @@ + Get unique identifiers: UUID, IMEI, IMSI, ICCID and MAC. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-unique-device-id.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-unique-device-id.readme.md index 032854e3607..1db59244ff9 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-unique-device-id.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-unique-device-id.readme.md @@ -1 +1,2 @@ + This plugin produces a unique, cross-install, app-specific device id. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-unvired-cordova-sdk.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-unvired-cordova-sdk.readme.md index 5ec8996425d..0b49755a0de 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-unvired-cordova-sdk.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-unvired-cordova-sdk.readme.md @@ -1,19 +1,19 @@ -## This plugin lets you build apps which connect to Unvired Mobile Platform (UMP). - -## iOS Requirements +This plugin lets you build apps which connect to Unvired Mobile Platform (UMP). +- +iOS Requirements +- Update your Cocoapods repo before you install the plugin. - ``` $ pod repo update ``` - -- Browser Requirements -- After you install the plugin, for Ionic/Angular projects, please add a reference to the following JS files within section of index.html. - +- +Browser Requirements +- +After you install the plugin, for Ionic/Angular projects, please add a reference to the following JS files within section of index.html. ``` -``` +``` \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-uptime.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-uptime.readme.md index 1bf710ddbcc..504b3c9eb24 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-uptime.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-uptime.readme.md @@ -1 +1,2 @@ + This plugin provides the time spent in milliseconds since boot (uptime). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-urbanairship.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-urbanairship.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-urbanairship.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-urbanairship.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-usabilla-cordova-sdk.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-usabilla-cordova-sdk.readme.md index 857e2854746..5cf251b3c8e 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-usabilla-cordova-sdk.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-usabilla-cordova-sdk.readme.md @@ -1,3 +1,4 @@ + Usabilla SDK is designed and developed to collect feedback from your users with great ease and flexibility through your mobile application. This document describes library integration steps for your Cordova project. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-user-agent.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-user-agent.readme.md index c5e46b65ea3..9c299395cf9 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-user-agent.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-user-agent.readme.md @@ -1,3 +1,4 @@ -The UserAgent plugin provides functions to set the HTTP user-agent header. For more info about User-Agents, please [see the HTTP User-Agent docs](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent). + +The UserAgent plugin provides functions to set the HTTP user-agent header. For more info about User-Agents, please [see the HTTP User-Agent docs](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent). Requires Cordova plugin: `cordova-useragent`. For more info, please see the [User-Agent plugin docs](https://github.com/LouisT/cordova-useragent). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-vibes.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-vibes.readme.md index f52e258035a..416be944a54 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-vibes.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-vibes.readme.md @@ -1 +1,2 @@ + This plugin enables integration with the Vibes Push SDK to your Cordova project with Android and iOS supported. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-vibration.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-vibration.readme.md index f82e5deb0ab..dba5defbdd0 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-vibration.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-vibration.readme.md @@ -1 +1 @@ -Vibrates the device +Vibrates the device \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-video-capture-plus.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-video-capture-plus.readme.md index f3e970c9efb..a22e03f3945 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-video-capture-plus.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-video-capture-plus.readme.md @@ -1,5 +1,5 @@ -This plugin offers some useful extras on top of the default Media Capture Plugin capabilities: +This plugin offers some useful extras on top of the default Media Capture Plugin capabilities: - HD recording. - Starting with the front camera. - A custom overlay (currently iOS only). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-video-player.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-video-player.readme.md index e7f3e1b8a0b..1ee9f14d4a0 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-video-player.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-video-player.readme.md @@ -1,3 +1,4 @@ + A Cordova plugin that simply allows you to immediately play a video in fullscreen mode. Requires Cordova plugin: `com.moust.cordova.videoplayer`. For more info, please see the [VideoPlayer plugin docs](https://github.com/moust/cordova-plugin-videoplayer). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-web-intent.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-web-intent.readme.md index e6bce9df776..62d0e5158b6 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-web-intent.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-web-intent.readme.md @@ -1 +1,2 @@ -This Plugin provides a general purpose shim layer for the Android intent mechanism, exposing various ways to handle sending and receiving intents. + +This Plugin provides a general purpose shim layer for the Android intent mechanism, exposing various ways to handle sending and receiving intents. \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-web-server.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-web-server.readme.md index 74a4213c286..562d250d54f 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-web-server.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-web-server.readme.md @@ -1 +1,2 @@ + This plugin allows you to start a local dynamic content web server for android and iOS devices. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-web-socket-server.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-web-socket-server.readme.md index 74f478b025e..732d61641b6 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-web-socket-server.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-web-socket-server.readme.md @@ -1 +1,2 @@ + This plugin allows you to run a single, lightweight, barebone WebSocket Server. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-webengage.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-webengage.readme.md index 981c27c1eb3..a2eb7545759 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-webengage.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-webengage.readme.md @@ -1 +1,2 @@ + Ionic-Native wrapper that wraps Webengage Cordova plugin for Android and iOS diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-wechat.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-wechat.readme.md index b2e43d635c3..639229cba09 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-wechat.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-wechat.readme.md @@ -1 +1,2 @@ + A cordova plugin, a JS version of Wechat SDK diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-wifi-wizard-2.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-wifi-wizard-2.readme.md index ca5fcb58975..e519b6b087f 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-wifi-wizard-2.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-wifi-wizard-2.readme.md @@ -1,3 +1,4 @@ + WifiWizard2 enables Wifi management for both Android and iOS applications within Cordova/Phonegap projects. This project is a fork of the WifiWizard plugin with fixes and updates, as well as patches taken from the Cordova Network Manager plugin. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-wonderpush.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-wonderpush.readme.md index 3fef1483ebd..c85ed196728 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-wonderpush.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-wonderpush.readme.md @@ -1,3 +1,5 @@ + + Send unlimited push notifications to iOS and Android devices. Get started in minutes: [Ionic Quickstart Guide](https://docs.wonderpush.com/docs/ionic-quickstart). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-youtube-video-player.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-youtube-video-player.readme.md index 17fd2049102..65e5f92754a 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-youtube-video-player.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-youtube-video-player.readme.md @@ -1 +1,2 @@ + Plays YouTube videos in Native YouTube App diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-zbar.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-zbar.readme.md index e0a91fda385..33a16ff46c6 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-zbar.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-zbar.readme.md @@ -1,3 +1,4 @@ + The ZBar Scanner Plugin allows you to scan 2d barcodes. Requires Cordova plugin: `cordova-plugin-cszbar`. For more info, please see the [zBar plugin docs](https://github.com/tjwoon/csZBar). diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-zeroconf.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-zeroconf.readme.md index b6d33465570..48620c015e9 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-zeroconf.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-zeroconf.readme.md @@ -1 +1,2 @@ -This plugin allows you to browse and publish Zeroconf/Bonjour/mDNS services. + +This plugin allows you to browse and publish Zeroconf/Bonjour/mDNS services. \ No newline at end of file diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-zip.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-zip.readme.md index 6433e0021a7..8550752032e 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-zip.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-zip.readme.md @@ -1 +1,2 @@ + A Cordova plugin to unzip files in Android and iOS. diff --git a/src/translate/.detection/native/@awesome-cordova-plugins-zoom.readme.md b/src/translate/.detection/native/@awesome-cordova-plugins-zoom.readme.md index 94a52e6dc07..e358d13434b 100644 --- a/src/translate/.detection/native/@awesome-cordova-plugins-zoom.readme.md +++ b/src/translate/.detection/native/@awesome-cordova-plugins-zoom.readme.md @@ -1 +1,2 @@ + A Cordova plugin to use Zoom Video Conferencing services on Cordova applications. diff --git a/src/translate/cli/build.readme.md b/src/translate/cli/build.readme.md index 5f6c540c109..7de5f855455 100644 --- a/src/translate/cli/build.readme.md +++ b/src/translate/cli/build.readme.md @@ -1,3 +1,3 @@ `ionic build` will perform an Ionic build, which compiles web assets and prepares them for deployment. -`ionic build` uses the Angular CLI. Use `ng build --help` to list all Angular CLI options for building your app. See the `ng build` [docs](https://angular.io/cli/build) for explanations. Options not listed below are considered advanced and can be passed to the `ng` CLI using the `--` separator after the Ionic CLI arguments. See the examples. +`ionic build` uses the Angular CLI. Use `ng build --help` to list all Angular CLI options for building your app. See the `ng build` [docs](https://angular.io/cli/build) for explanations. Options not listed below are considered advanced and can be passed to the `ng` CLI using the `--` separator after the Ionic CLI arguments. See the examples. \ No newline at end of file diff --git a/src/translate/cli/capacitor-add.readme.md b/src/translate/cli/capacitor-add.readme.md index 464a4fb5a49..6a1ecf8bc10 100644 --- a/src/translate/cli/capacitor-add.readme.md +++ b/src/translate/cli/capacitor-add.readme.md @@ -1,4 +1,3 @@ `ionic capacitor add` will do the following: - - Install the Capacitor platform package -- Copy the native platform template into your project +- Copy the native platform template into your project \ No newline at end of file diff --git a/src/translate/cli/capacitor-build.readme.md b/src/translate/cli/capacitor-build.readme.md index ecbb4a9e00a..0ccb955a383 100644 --- a/src/translate/cli/capacitor-build.readme.md +++ b/src/translate/cli/capacitor-build.readme.md @@ -1,9 +1,8 @@ `ionic capacitor build` will do the following: - - Perform `ionic build` - Copy web assets into the specified native platform - Open the IDE for your native project (Xcode for iOS, Android Studio for Android) Once the web assets and configuration are copied into your native project, you can build your app using the native IDE. Unfortunately, programmatically building the native project is not yet supported. -To configure your native project, see the common configuration [docs](https://capacitorjs.com/docs/basics/configuring-your-app) as well as low-level configuration for [iOS](https://capacitorjs.com/docs/ios/configuration) and [Android](https://capacitorjs.com/docs/android/configuration). +To configure your native project, see the common configuration [docs](https://capacitorjs.com/docs/basics/configuring-your-app) as well as low-level configuration for [iOS](https://capacitorjs.com/docs/ios/configuration) and [Android](https://capacitorjs.com/docs/android/configuration). \ No newline at end of file diff --git a/src/translate/cli/capacitor-copy.readme.md b/src/translate/cli/capacitor-copy.readme.md index ad813a2f858..2e5ddd1f0e7 100644 --- a/src/translate/cli/capacitor-copy.readme.md +++ b/src/translate/cli/capacitor-copy.readme.md @@ -1,4 +1,3 @@ `ionic capacitor copy` will do the following: - - Perform an Ionic build, which compiles web assets -- Copy web assets to Capacitor native platform(s) +- Copy web assets to Capacitor native platform(s) \ No newline at end of file diff --git a/src/translate/cli/capacitor-open.readme.md b/src/translate/cli/capacitor-open.readme.md index c52c1f44711..6a4f8a5eeba 100644 --- a/src/translate/cli/capacitor-open.readme.md +++ b/src/translate/cli/capacitor-open.readme.md @@ -1,3 +1,2 @@ `ionic capacitor open` will do the following: - -- Open the IDE for your native project (Xcode for iOS, Android Studio for Android) +- Open the IDE for your native project (Xcode for iOS, Android Studio for Android) \ No newline at end of file diff --git a/src/translate/cli/capacitor-run.readme.md b/src/translate/cli/capacitor-run.readme.md index 56a76e0d464..a17e32b9a99 100644 --- a/src/translate/cli/capacitor-run.readme.md +++ b/src/translate/cli/capacitor-run.readme.md @@ -1,5 +1,4 @@ `ionic capacitor run` will do the following: - - Perform `ionic build` (or run the dev server from `ionic serve` with the `--livereload` option) - Run `capacitor run` (or open IDE for your native project with the `--open` option) @@ -7,4 +6,4 @@ When using `--livereload` with hardware devices, remember that livereload needs If you have multiple devices and emulators, you can target a specific one by ID with the `--target` option. You can list targets with `--list`. -For Android and iOS, you can setup Remote Debugging on your device with browser development tools using these [docs](https://ionicframework.com/docs/developer-resources/developer-tips). +For Android and iOS, you can setup Remote Debugging on your device with browser development tools using these [docs](https://ionicframework.com/docs/developer-resources/developer-tips). \ No newline at end of file diff --git a/src/translate/cli/capacitor-sync.readme.md b/src/translate/cli/capacitor-sync.readme.md index 403ecdf9af3..4ab54b5269d 100644 --- a/src/translate/cli/capacitor-sync.readme.md +++ b/src/translate/cli/capacitor-sync.readme.md @@ -1,6 +1,5 @@ `ionic capacitor sync` will do the following: - - Perform an Ionic build, which compiles web assets - Copy web assets to Capacitor native platform(s) - Update Capacitor native platform(s) and dependencies -- Install any discovered Capacitor or Cordova plugins +- Install any discovered Capacitor or Cordova plugins \ No newline at end of file diff --git a/src/translate/cli/capacitor-update.readme.md b/src/translate/cli/capacitor-update.readme.md index 6691448d373..6941a9bbe77 100644 --- a/src/translate/cli/capacitor-update.readme.md +++ b/src/translate/cli/capacitor-update.readme.md @@ -1,4 +1,3 @@ `ionic capacitor update` will do the following: - - Update Capacitor native platform(s) and dependencies -- Install any discovered Capacitor or Cordova plugins +- Install any discovered Capacitor or Cordova plugins \ No newline at end of file diff --git a/src/translate/cli/completion.readme.md b/src/translate/cli/completion.readme.md index 98969ac91c0..c614f27c143 100644 --- a/src/translate/cli/completion.readme.md +++ b/src/translate/cli/completion.readme.md @@ -1,3 +1,3 @@ This command is experimental and only works for Z shell (zsh) and non-Windows platforms. -To enable completions for the Ionic CLI, you can add the completion code that this command prints to your **~/.zshrc** (or any other file loaded with your shell). See the examples. +To enable completions for the Ionic CLI, you can add the completion code that this command prints to your **~/.zshrc** (or any other file loaded with your shell). See the examples. \ No newline at end of file diff --git a/src/translate/cli/config-get.readme.md b/src/translate/cli/config-get.readme.md index b993225035b..ecfdc6708ac 100644 --- a/src/translate/cli/config-get.readme.md +++ b/src/translate/cli/config-get.readme.md @@ -8,4 +8,4 @@ For multi-app projects, this command is scoped to the current project by default If you are using this command programmatically, you can use the `--json` option. -This command will sanitize config output for known sensitive fields (disabled when using `--json`). +This command will sanitize config output for known sensitive fields (disabled when using `--json`). \ No newline at end of file diff --git a/src/translate/cli/config-set.readme.md b/src/translate/cli/config-set.readme.md index 4cfe7872088..fd2916c6e27 100644 --- a/src/translate/cli/config-set.readme.md +++ b/src/translate/cli/config-set.readme.md @@ -6,4 +6,4 @@ For multi-app projects, this command is scoped to the current project by default This command will attempt to coerce `value` into a suitable JSON type. If it is JSON-parsable, such as `123`, `true`, `[]`, etc., then it takes the parsed result. Otherwise, the value is interpreted as a string. For stricter input, use `--json`, which will error with non-JSON values. -By default, if `property` exists and is an object or an array, the value is not overwritten. To disable this check and always overwrite the property, use `--force`. +By default, if `property` exists and is an object or an array, the value is not overwritten. To disable this check and always overwrite the property, use `--force`. \ No newline at end of file diff --git a/src/translate/cli/config-unset.readme.md b/src/translate/cli/config-unset.readme.md index 7dca73c33a4..9b7c09a8699 100644 --- a/src/translate/cli/config-unset.readme.md +++ b/src/translate/cli/config-unset.readme.md @@ -2,4 +2,4 @@ This command deletes configuration values from the project's **./ionic.config.js For nested properties, separate nest levels with dots. For example, the property name `integrations.cordova` will look in the **integrations** object for the **cordova** property. -For multi-app projects, this command is scoped to the current project by default. To operate at the root of the project configuration file instead, use the `--root` option. +For multi-app projects, this command is scoped to the current project by default. To operate at the root of the project configuration file instead, use the `--root` option. \ No newline at end of file diff --git a/src/translate/cli/cordova-build.readme.md b/src/translate/cli/cordova-build.readme.md index 5859a7e2658..774bb3c3bab 100644 --- a/src/translate/cli/cordova-build.readme.md +++ b/src/translate/cli/cordova-build.readme.md @@ -2,4 +2,4 @@ Like running `cordova build` directly, `ionic cordova build` also builds web ass To pass additional options to the Cordova CLI, use the `--` separator after the Ionic CLI arguments. -The Cordova CLI requires a separator for platform-specific arguments for Android [builds](https://cordova.apache.org/docs/en/latest/guide/platforms/android/index.html#using-flags), so an additional separator is required for the Ionic CLI, but it is not required for iOS [builds](https://cordova.apache.org/docs/en/latest/guide/platforms/ios/index.html#using-flags). See the example commands for usage with separators. To avoid using flags, consider using `--buildConfig` with a **build.json** file. +The Cordova CLI requires a separator for platform-specific arguments for Android [builds](https://cordova.apache.org/docs/en/latest/guide/platforms/android/index.html#using-flags), so an additional separator is required for the Ionic CLI, but it is not required for iOS [builds](https://cordova.apache.org/docs/en/latest/guide/platforms/ios/index.html#using-flags). See the example commands for usage with separators. To avoid using flags, consider using `--buildConfig` with a **build.json** file. \ No newline at end of file diff --git a/src/translate/cli/cordova-compile.readme.md b/src/translate/cli/cordova-compile.readme.md index f234fefe548..947b914334f 100644 --- a/src/translate/cli/cordova-compile.readme.md +++ b/src/translate/cli/cordova-compile.readme.md @@ -1 +1 @@ -Like running `cordova compile` directly, but provides friendly checks. +Like running `cordova compile` directly, but provides friendly checks. \ No newline at end of file diff --git a/src/translate/cli/cordova-emulate.readme.md b/src/translate/cli/cordova-emulate.readme.md index 7595cd2ca30..bd396957a25 100644 --- a/src/translate/cli/cordova-emulate.readme.md +++ b/src/translate/cli/cordova-emulate.readme.md @@ -8,4 +8,4 @@ For Android and iOS, you can setup Remote Debugging on your device with browser When using `--livereload` with hardware devices, remember that livereload needs an active connection between device and computer. In some scenarios, you may need to host the dev server on an external address using the `--external` option. See these [docs](https://ionicframework.com/docs/cli/livereload) for more information. -Just like with `ionic cordova build`, you can pass additional options to the Cordova CLI using the `--` separator. To pass additional options to the dev server, consider using `ionic serve` separately and using the `--livereload-url` option. +Just like with `ionic cordova build`, you can pass additional options to the Cordova CLI using the `--` separator. To pass additional options to the dev server, consider using `ionic serve` separately and using the `--livereload-url` option. \ No newline at end of file diff --git a/src/translate/cli/cordova-platform.readme.md b/src/translate/cli/cordova-platform.readme.md index 1b289c0ac8f..f65aea27395 100644 --- a/src/translate/cli/cordova-platform.readme.md +++ b/src/translate/cli/cordova-platform.readme.md @@ -1 +1 @@ -Like running `cordova platform` directly, but adds default Ionic icons and splash screen resources (during `add`) and provides friendly checks. +Like running `cordova platform` directly, but adds default Ionic icons and splash screen resources (during `add`) and provides friendly checks. \ No newline at end of file diff --git a/src/translate/cli/cordova-plugin.readme.md b/src/translate/cli/cordova-plugin.readme.md index 162ba073340..b3ea63900d4 100644 --- a/src/translate/cli/cordova-plugin.readme.md +++ b/src/translate/cli/cordova-plugin.readme.md @@ -1 +1 @@ -Like running `cordova plugin` directly, but provides friendly checks. +Like running `cordova plugin` directly, but provides friendly checks. \ No newline at end of file diff --git a/src/translate/cli/cordova-prepare.readme.md b/src/translate/cli/cordova-prepare.readme.md index 6ae022dcaa0..90b7d18e711 100644 --- a/src/translate/cli/cordova-prepare.readme.md +++ b/src/translate/cli/cordova-prepare.readme.md @@ -6,4 +6,4 @@ - Copy icons and splash screens from **resources/** to into your Cordova platforms. - Copy plugin files into specified platforms. -You may wish to use `ionic cordova prepare` if you run your project with Android Studio or Xcode. +You may wish to use `ionic cordova prepare` if you run your project with Android Studio or Xcode. \ No newline at end of file diff --git a/src/translate/cli/cordova-requirements.readme.md b/src/translate/cli/cordova-requirements.readme.md index edf47772b1f..04bdf9cef01 100644 --- a/src/translate/cli/cordova-requirements.readme.md +++ b/src/translate/cli/cordova-requirements.readme.md @@ -1 +1 @@ -Like running `cordova requirements` directly, but provides friendly checks. +Like running `cordova requirements` directly, but provides friendly checks. \ No newline at end of file diff --git a/src/translate/cli/cordova-resources.readme.md b/src/translate/cli/cordova-resources.readme.md index e93fdd8a890..730573a47c3 100644 --- a/src/translate/cli/cordova-resources.readme.md +++ b/src/translate/cli/cordova-resources.readme.md @@ -11,6 +11,5 @@ For best results, the splash screen's artwork should roughly fit within a square This command uses the `cordova-res` [utility](https://github.com/ionic-team/cordova-res) to generate resources locally. Cordova reference documentation: - - Icons: **[https://cordova.apache.org/docs/en/latest/config_ref/images.html](https://cordova.apache.org/docs/en/latest/config_ref/images.html)** -- Splash Screens: **[https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-splashscreen/](https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-splashscreen/)** +- Splash Screens: **[https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-splashscreen/](https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-splashscreen/)** \ No newline at end of file diff --git a/src/translate/cli/cordova-run.readme.md b/src/translate/cli/cordova-run.readme.md index 7595cd2ca30..bd396957a25 100644 --- a/src/translate/cli/cordova-run.readme.md +++ b/src/translate/cli/cordova-run.readme.md @@ -8,4 +8,4 @@ For Android and iOS, you can setup Remote Debugging on your device with browser When using `--livereload` with hardware devices, remember that livereload needs an active connection between device and computer. In some scenarios, you may need to host the dev server on an external address using the `--external` option. See these [docs](https://ionicframework.com/docs/cli/livereload) for more information. -Just like with `ionic cordova build`, you can pass additional options to the Cordova CLI using the `--` separator. To pass additional options to the dev server, consider using `ionic serve` separately and using the `--livereload-url` option. +Just like with `ionic cordova build`, you can pass additional options to the Cordova CLI using the `--` separator. To pass additional options to the dev server, consider using `ionic serve` separately and using the `--livereload-url` option. \ No newline at end of file diff --git a/src/translate/cli/generate.readme.md b/src/translate/cli/generate.readme.md index 042f64a7a4c..30de99a2484 100644 --- a/src/translate/cli/generate.readme.md +++ b/src/translate/cli/generate.readme.md @@ -1,8 +1,8 @@ Automatically create framework features with Ionic Generate. This command uses the Angular CLI to generate features such as `pages`, `components`, `directives`, `services`, and more. -- For a full list of available types, use `npx ng g --help` -- For a list of options for a types, use `npx ng g --help` + - For a full list of available types, use `npx ng g --help` + - For a list of options for a types, use `npx ng g --help` You can specify a path to nest your feature within any number of subdirectories. For example, specify a name of `"pages/New Page"` to generate page files at **src/app/pages/new-page/**. -To test a generator before file modifications are made, use the `--dry-run` option. +To test a generator before file modifications are made, use the `--dry-run` option. \ No newline at end of file diff --git a/src/translate/cli/git-remote.readme.md b/src/translate/cli/git-remote.readme.md index 58347c24535..b4caf425642 100644 --- a/src/translate/cli/git-remote.readme.md +++ b/src/translate/cli/git-remote.readme.md @@ -1,3 +1,3 @@ This command is used by `ionic link` when Appflow is used as the git host. -`ionic git remote` will check the local repository for whether or not the git remote is properly set up. This command operates on the **ionic** remote. For advanced configuration, see **Settings** => **Git** in the app settings of the [Dashboard](https://dashboard.ionicframework.com). +`ionic git remote` will check the local repository for whether or not the git remote is properly set up. This command operates on the **ionic** remote. For advanced configuration, see **Settings** => **Git** in the app settings of the [Dashboard](https://dashboard.ionicframework.com). \ No newline at end of file diff --git a/src/translate/cli/info.readme.md b/src/translate/cli/info.readme.md index d633e373984..03f86bc2907 100644 --- a/src/translate/cli/info.readme.md +++ b/src/translate/cli/info.readme.md @@ -1 +1 @@ -This command is an easy way to share information about your setup. If applicable, be sure to run `ionic info` within your project directory to display even more information. +This command is an easy way to share information about your setup. If applicable, be sure to run `ionic info` within your project directory to display even more information. \ No newline at end of file diff --git a/src/translate/cli/init.readme.md b/src/translate/cli/init.readme.md index 918620be789..98b3118bed5 100644 --- a/src/translate/cli/init.readme.md +++ b/src/translate/cli/init.readme.md @@ -2,4 +2,4 @@ This command will initialize an Ionic app within the current directory. Usually, `ionic init` will prompt for a project name and then proceed to determine the type of your project. You can specify the `name` argument and `--type` option to provide these values via command-line. -If the `--multi-app` flag is specified, this command will initialize your project as a multi-app project, allowing for apps within monorepos and unconventional repository structures. See the multi-app [docs](https://ionicframework.com/docs/cli/configuration#multi-app-projects) for details. Once a multi-app project is initialized, you can run `ionic init` again within apps in your project to initialize them. +If the `--multi-app` flag is specified, this command will initialize your project as a multi-app project, allowing for apps within monorepos and unconventional repository structures. See the multi-app [docs](https://ionicframework.com/docs/cli/configuration#multi-app-projects) for details. Once a multi-app project is initialized, you can run `ionic init` again within apps in your project to initialize them. \ No newline at end of file diff --git a/src/translate/cli/integrations-disable.readme.md b/src/translate/cli/integrations-disable.readme.md index b4f4a38bdd0..5418badf555 100644 --- a/src/translate/cli/integrations-disable.readme.md +++ b/src/translate/cli/integrations-disable.readme.md @@ -1 +1 @@ -Integrations, such as Cordova, can be disabled with this command. +Integrations, such as Cordova, can be disabled with this command. \ No newline at end of file diff --git a/src/translate/cli/integrations-enable.readme.md b/src/translate/cli/integrations-enable.readme.md index 76526785eaa..945fcbbb226 100644 --- a/src/translate/cli/integrations-enable.readme.md +++ b/src/translate/cli/integrations-enable.readme.md @@ -1,3 +1,3 @@ Integrations, such as Cordova, can be enabled with this command. If the integration has never been added to the project, `ionic integrations enable` will download and add the integration. -Integrations can be re-added with the `--add` option. +Integrations can be re-added with the `--add` option. \ No newline at end of file diff --git a/src/translate/cli/integrations-list.readme.md b/src/translate/cli/integrations-list.readme.md index d075d211e95..044dd455e0e 100644 --- a/src/translate/cli/integrations-list.readme.md +++ b/src/translate/cli/integrations-list.readme.md @@ -1,4 +1,4 @@ This command will print the status of integrations in Ionic projects. Integrations can be **enabled** (added and enabled), **disabled** (added but disabled), and **not added** (never added to the project). - To enable or add integrations, see `ionic integrations enable --help` -- To disable integrations, see `ionic integrations disable --help` +- To disable integrations, see `ionic integrations disable --help` \ No newline at end of file diff --git a/src/translate/cli/link.readme.md b/src/translate/cli/link.readme.md index f5a96a51946..e621a2e948a 100644 --- a/src/translate/cli/link.readme.md +++ b/src/translate/cli/link.readme.md @@ -6,4 +6,4 @@ Appflow uses a git-based workflow to manage app updates. During the linking proc Ultimately, this command sets the **id** property in **./ionic.config.json**, which marks this app as linked. -If you are having issues linking, please get in touch with our [Support](https://ion.link/support-request). +If you are having issues linking, please get in touch with our [Support](https://ion.link/support-request). \ No newline at end of file diff --git a/src/translate/cli/live-update-add.readme.md b/src/translate/cli/live-update-add.readme.md index d2aebb869cd..bc0316117d7 100644 --- a/src/translate/cli/live-update-add.readme.md +++ b/src/translate/cli/live-update-add.readme.md @@ -2,4 +2,4 @@ This command adds the Appflow Live Update plugin (`cordova-plugin-ionic`) for bo For Capacitor projects it runs all the steps necessary to install the plugin, sync with the native projects and add the configuration to the proper iOS and Android configuration files. -For Cordova projects it just takes care of running the proper Cordova CLI command with the submitted parameters. +For Cordova projects it just takes care of running the proper Cordova CLI command with the submitted parameters. \ No newline at end of file diff --git a/src/translate/cli/live-update-configure.readme.md b/src/translate/cli/live-update-configure.readme.md index d4bc34cffba..1d8c7504c8f 100644 --- a/src/translate/cli/live-update-configure.readme.md +++ b/src/translate/cli/live-update-configure.readme.md @@ -2,4 +2,4 @@ This command overrides configuration for the Appflow Live Update plugin (`cordov For Capacitor projects, if the plugin is already installed, it overrides the configuration variables in the native projects. -For Cordova projects this is not implemented because it is better to reinstall the plugin with the different parameters and let Cordova deal with the changes. +For Cordova projects this is not implemented because it is better to reinstall the plugin with the different parameters and let Cordova deal with the changes. \ No newline at end of file diff --git a/src/translate/cli/login.readme.md b/src/translate/cli/login.readme.md index ce63bb58ac0..0fbe95d2ae8 100644 --- a/src/translate/cli/login.readme.md +++ b/src/translate/cli/login.readme.md @@ -4,4 +4,4 @@ If the `IONIC_TOKEN` environment variable is set, the CLI will automatically aut If you need to create an Ionic account, use `ionic signup` or the Ionic [Website](https://ionicframework.com/signup). -If you are having issues logging in, please get in touch with our [Support](https://ion.link/support-request). +If you are having issues logging in, please get in touch with our [Support](https://ion.link/support-request). \ No newline at end of file diff --git a/src/translate/cli/logout.readme.md b/src/translate/cli/logout.readme.md index 540a69a156c..4122a7422e5 100644 --- a/src/translate/cli/logout.readme.md +++ b/src/translate/cli/logout.readme.md @@ -2,4 +2,4 @@ Remove the Ionic user token from the CLI config. Log in again with `ionic login`. -If you need to create an Ionic account, use `ionic signup`. +If you need to create an Ionic account, use `ionic signup`. \ No newline at end of file diff --git a/src/translate/cli/repair.readme.md b/src/translate/cli/repair.readme.md index 9b01e9d40d8..dbb18055c3a 100644 --- a/src/translate/cli/repair.readme.md +++ b/src/translate/cli/repair.readme.md @@ -1,3 +1,3 @@ This command may be useful when obscure errors or issues are encountered. It removes and recreates dependencies of your project. -For Cordova apps, it removes and recreates the generated native project and the native dependencies of your project. +For Cordova apps, it removes and recreates the generated native project and the native dependencies of your project. \ No newline at end of file diff --git a/src/translate/cli/serve.readme.md b/src/translate/cli/serve.readme.md index a9b7bd7d2af..b08bf89fccf 100644 --- a/src/translate/cli/serve.readme.md +++ b/src/translate/cli/serve.readme.md @@ -4,4 +4,4 @@ By default, `ionic serve` boots up a development server on `localhost`. To serve `ionic serve` uses the Angular CLI. Use `ng serve --help` to list all Angular CLI options for serving your app. See the `ng serve` [docs](https://angular.io/cli/serve) for explanations. Options not listed below are considered advanced and can be passed to the Angular CLI using the `--` separator after the Ionic CLI arguments. See the examples. -The dev server can use HTTPS via the `--ssl` option **(experimental)**. There are several known issues with HTTPS. See issue [#3305](https://github.com/ionic-team/ionic-cli/issues/3305). +The dev server can use HTTPS via the `--ssl` option **(experimental)**. There are several known issues with HTTPS. See issue [#3305](https://github.com/ionic-team/ionic-cli/issues/3305). \ No newline at end of file diff --git a/src/translate/cli/signup.readme.md b/src/translate/cli/signup.readme.md index 82d215181a5..4761dfdf982 100644 --- a/src/translate/cli/signup.readme.md +++ b/src/translate/cli/signup.readme.md @@ -1 +1 @@ -If you are having issues signing up, please get in touch with our [Support](https://ion.link/support-request). +If you are having issues signing up, please get in touch with our [Support](https://ion.link/support-request). \ No newline at end of file diff --git a/src/translate/cli/ssh-setup.readme.md b/src/translate/cli/ssh-setup.readme.md index b95050beae9..f6ed6f93cb8 100644 --- a/src/translate/cli/ssh-setup.readme.md +++ b/src/translate/cli/ssh-setup.readme.md @@ -1,3 +1,3 @@ This command offers a setup wizard for Ionic SSH keys using a series of prompts. For more control, see the commands available for managing SSH keys with the `ionic ssh --help` command. For an entirely manual approach, see **Personal Settings** => **SSH Keys** in the [Dashboard](https://dashboard.ionicframework.com/settings/ssh-keys). -If you are having issues setting up SSH keys, please get in touch with our [Support](https://ion.link/support-request). +If you are having issues setting up SSH keys, please get in touch with our [Support](https://ion.link/support-request). \ No newline at end of file diff --git a/src/translate/cli/ssl-generate.readme.md b/src/translate/cli/ssl-generate.readme.md index aea3ec98cc5..c49644b96ef 100644 --- a/src/translate/cli/ssl-generate.readme.md +++ b/src/translate/cli/ssl-generate.readme.md @@ -2,4 +2,4 @@ Uses OpenSSL to create a self-signed certificate for **localhost** (by default). After the certificate is generated, you will still need to add it to your system or browser as a trusted certificate. -The default directory for `--key-path` and `--cert-path` is `.ionic/ssl/`. +The default directory for `--key-path` and `--cert-path` is `.ionic/ssl/`. \ No newline at end of file diff --git a/src/translate/cli/start.readme.md b/src/translate/cli/start.readme.md index 9b3d3b471e4..45b725f705d 100644 --- a/src/translate/cli/start.readme.md +++ b/src/translate/cli/start.readme.md @@ -6,4 +6,4 @@ The first argument is your app's `name`. Don't worry--you can always change this The second argument is the `template` from which to generate your app. You can list all templates with the `--list` option. You can also specify a git repository URL for `template`, in which case the existing project will be cloned. -Use the `--type` option to start projects using older versions of Ionic. For example, you can start an Ionic 3 project with `--type=ionic-angular`. Use `--list` to see all project types and templates. +Use the `--type` option to start projects using older versions of Ionic. For example, you can start an Ionic 3 project with `--type=ionic-angular`. Use `--list` to see all project types and templates. \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-abbyy-rtr.readme.md b/src/translate/native/@awesome-cordova-plugins-abbyy-rtr.readme.md index 986eeabbc94..1fbd6aab841 100644 --- a/src/translate/native/@awesome-cordova-plugins-abbyy-rtr.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-abbyy-rtr.readme.md @@ -1,2 +1,3 @@ + This plugin allows to use the Text Capture and Data Capture features of ABBYY Real-Time Recognition SDK (RTR SDK) in apps. diff --git a/src/translate/native/@awesome-cordova-plugins-actsheet.readme.md b/src/translate/native/@awesome-cordova-plugins-actsheet.readme.md index 90e1ee9b77e..deb9dde4602 100644 --- a/src/translate/native/@awesome-cordova-plugins-actsheet.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-actsheet.readme.md @@ -1,3 +1,4 @@ + The ActionSheet plugin shows a native list of options the user can choose from. Requires Cordova plugin: `cordova-plugin-actionsheet`. For more info, please see the [ActionSheet plugin docs](https://github.com/EddyVerbruggen/cordova-plugin-actionsheet). diff --git a/src/translate/native/@awesome-cordova-plugins-adjust.readme.md b/src/translate/native/@awesome-cordova-plugins-adjust.readme.md index 11db0748e34..420a0d400d4 100644 --- a/src/translate/native/@awesome-cordova-plugins-adjust.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-adjust.readme.md @@ -1,3 +1,4 @@ + This is the Ionic Cordova SDK of Adjust™. You can read more about Adjust™ at adjust.com. Requires Cordova plugin: `com.adjust.sdk`. For more info, please see the [Adjust Cordova SDK](https://github.com/adjust/cordova_sdk) diff --git a/src/translate/native/@awesome-cordova-plugins-admob-free.readme.md b/src/translate/native/@awesome-cordova-plugins-admob-free.readme.md index a21a70fb083..fb2004ca29c 100644 --- a/src/translate/native/@awesome-cordova-plugins-admob-free.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-admob-free.readme.md @@ -1,3 +1,4 @@ + A free, no ad-sharing version of Google AdMob plugin for Cordova. Requires Cordova plugin: `cordova-plugin-admob-free`. For more info, please see the [AdMob Free plugin docs](https://github.com/ratson/cordova-plugin-admob-free). diff --git a/src/translate/native/@awesome-cordova-plugins-admob-plus.readme.md b/src/translate/native/@awesome-cordova-plugins-admob-plus.readme.md index 41472b2e411..56e36fe9053 100644 --- a/src/translate/native/@awesome-cordova-plugins-admob-plus.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-admob-plus.readme.md @@ -1 +1,2 @@ + AdMob Plus is the successor of cordova-plugin-admob-free, which provides a cleaner API and build with modern tools. diff --git a/src/translate/native/@awesome-cordova-plugins-admob.readme.md b/src/translate/native/@awesome-cordova-plugins-admob.readme.md index 8f50b6279c0..b18059b0829 100644 --- a/src/translate/native/@awesome-cordova-plugins-admob.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-admob.readme.md @@ -1,8 +1,8 @@ + Most complete Admob plugin with support for [Tappx](http://www.tappx.com/?h=dec334d63287772de859bdb4e977fce6) ads. Monetize your apps and games with AdMob ads, using latest Google AdMob SDK. With this plugin you can show AdMob ads easily! **Supports:** - - Banner ads (top and bottom) - Interstitial ads - Rewarded ads diff --git a/src/translate/native/@awesome-cordova-plugins-aes-256.readme.md b/src/translate/native/@awesome-cordova-plugins-aes-256.readme.md index e11ad80b4a3..8bc209c7e54 100644 --- a/src/translate/native/@awesome-cordova-plugins-aes-256.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-aes-256.readme.md @@ -1,3 +1,4 @@ + This cordova ionic plugin allows you to perform AES 256 encryption and decryption on the plain text. It's a cross-platform plugin which supports both Android and iOS. The encryption and decryption are performed on the device native layer so that the performance is much faster. diff --git a/src/translate/native/@awesome-cordova-plugins-alipay.readme.md b/src/translate/native/@awesome-cordova-plugins-alipay.readme.md index 0303990f06b..18f742e5108 100644 --- a/src/translate/native/@awesome-cordova-plugins-alipay.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-alipay.readme.md @@ -1,3 +1,4 @@ + This plugin facilitates the usage of Alipay 支付宝 in an Ionic apps with the integrated AlipaySDK dated on 20180601. Requires Cordova plugin: `cordova-plugin-gubnoi-alipay`. For more info, please see https://github.com/jing-zhou/cordova-plugin-alipay . diff --git a/src/translate/native/@awesome-cordova-plugins-all-in-one-sdk.readme.md b/src/translate/native/@awesome-cordova-plugins-all-in-one-sdk.readme.md index 23e8c973bf2..76387367a61 100644 --- a/src/translate/native/@awesome-cordova-plugins-all-in-one-sdk.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-all-in-one-sdk.readme.md @@ -1,3 +1,4 @@ + Paytm All-in-One SDK plugin for Cordova/Ionic Applications Paytm All-in-One SDK provides a swift, secure and seamless payment experience to your users by invoking the Paytm app (if installed on your user’s smartphone) to complete payment for your order. Paytm All-in-One SDK enables payment acceptance via Paytm wallet, Paytm Payments Bank, saved Debit/Credit cards, Net Banking, BHIM UPI and EMI as available in your customer’s Paytm account. If Paytm app is not installed on a customer's device, the transaction will be processed via web view within the All-in-One SDK. diff --git a/src/translate/native/@awesome-cordova-plugins-analytics-firebase.readme.md b/src/translate/native/@awesome-cordova-plugins-analytics-firebase.readme.md index e27b0ba6540..822209a4a72 100644 --- a/src/translate/native/@awesome-cordova-plugins-analytics-firebase.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-analytics-firebase.readme.md @@ -1 +1,2 @@ + Google Analytics Firebase plugin for Ionic Native apps. diff --git a/src/translate/native/@awesome-cordova-plugins-android-exoplayer.readme.md b/src/translate/native/@awesome-cordova-plugins-android-exoplayer.readme.md index c31c989a3d3..93a3f290203 100644 --- a/src/translate/native/@awesome-cordova-plugins-android-exoplayer.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-android-exoplayer.readme.md @@ -1,3 +1,4 @@ + Cordova media player plugin using Google's ExoPlayer framework. https://github.com/google/ExoPlayer diff --git a/src/translate/native/@awesome-cordova-plugins-android-full-screen.readme.md b/src/translate/native/@awesome-cordova-plugins-android-full-screen.readme.md index 64f0fad3191..3592aee1757 100644 --- a/src/translate/native/@awesome-cordova-plugins-android-full-screen.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-android-full-screen.readme.md @@ -1,3 +1,4 @@ + This plugin enables developers to offer users a true full screen experience in their Cordova and PhoneGap apps for Android. Using Android 4.0+, you can use true full screen in "lean mode", the way you see in apps like YouTube, expanding the app right to the edges of the screen, hiding the status and navigation bars until the user next interacts. This is ideally suited to video or cut-scene content. -In Android 4.4+, however, you can now enter true full screen, fully interactive immersive mode. In this mode, your app will remain in true full screen until you choose otherwise; users can swipe down from the top of the screen to temporarily display the system UI. +In Android 4.4+, however, you can now enter true full screen, fully interactive immersive mode. In this mode, your app will remain in true full screen until you choose otherwise; users can swipe down from the top of the screen to temporarily display the system UI. \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-android-notch.readme.md b/src/translate/native/@awesome-cordova-plugins-android-notch.readme.md index a82b309d78c..2eb94af7221 100644 --- a/src/translate/native/@awesome-cordova-plugins-android-notch.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-android-notch.readme.md @@ -1,3 +1,4 @@ + This plugin enables developers to get the cutout and android devices inset sizes It is based on the cordova plugin developed by @tobspr: https://github.com/tobspr/cordova-plugin-android-notch This plugin works on all android versions, but we can only detect notches starting from Android 9. diff --git a/src/translate/native/@awesome-cordova-plugins-android-permissions.readme.md b/src/translate/native/@awesome-cordova-plugins-android-permissions.readme.md index 8e414578f93..0c671a0c2d0 100644 --- a/src/translate/native/@awesome-cordova-plugins-android-permissions.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-android-permissions.readme.md @@ -1,3 +1,4 @@ + This plugin is designed to support Android new permissions checking mechanism. You can find all permissions here: https://developer.android.com/reference/android/Manifest.permission.html diff --git a/src/translate/native/@awesome-cordova-plugins-anyline.readme.md b/src/translate/native/@awesome-cordova-plugins-anyline.readme.md index 5f6722050b0..48c289cc3fb 100644 --- a/src/translate/native/@awesome-cordova-plugins-anyline.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-anyline.readme.md @@ -1 +1,2 @@ + Anyline provides an easy-to-use SDK for applications to enable Optical Character Recognition (OCR) on mobile devices. diff --git a/src/translate/native/@awesome-cordova-plugins-app-availability.readme.md b/src/translate/native/@awesome-cordova-plugins-app-availability.readme.md index 2813a5d498b..5672e0b2213 100644 --- a/src/translate/native/@awesome-cordova-plugins-app-availability.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-app-availability.readme.md @@ -1,3 +1,4 @@ + This plugin allows you to check if an app is installed on the user's device. It requires an URI Scheme (e.g. twitter://) on iOS or a Package Name (e.g com.twitter.android) on Android. Requires Cordova plugin: cordova-plugin-appavailability. For more info, please see the [AppAvailability plugin docs](https://github.com/ohh2ahh/AppAvailability). diff --git a/src/translate/native/@awesome-cordova-plugins-app-center-analytics.readme.md b/src/translate/native/@awesome-cordova-plugins-app-center-analytics.readme.md index 95a88837497..d7ef092bae5 100644 --- a/src/translate/native/@awesome-cordova-plugins-app-center-analytics.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-app-center-analytics.readme.md @@ -1,3 +1,4 @@ + App Center Analytics helps you understand user behavior and customer engagement to improve your app. The SDK automatically captures session count and device properties like model, OS version, etc. You can define your own custom events to measure things that matter to you. diff --git a/src/translate/native/@awesome-cordova-plugins-app-center-crashes.readme.md b/src/translate/native/@awesome-cordova-plugins-app-center-crashes.readme.md index ef9f2968a8f..c331a7d05f5 100644 --- a/src/translate/native/@awesome-cordova-plugins-app-center-crashes.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-app-center-crashes.readme.md @@ -1,3 +1,4 @@ + App Center Analytics helps you understand user behavior and customer engagement to improve your app. The SDK automatically captures session count and device properties like model, OS version, etc. You can define your own custom events to measure things that matter to you. diff --git a/src/translate/native/@awesome-cordova-plugins-app-center-low-memory.readme.md b/src/translate/native/@awesome-cordova-plugins-app-center-low-memory.readme.md index e84626aea1d..6d2e7862965 100644 --- a/src/translate/native/@awesome-cordova-plugins-app-center-low-memory.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-app-center-low-memory.readme.md @@ -1,2 +1,3 @@ + Generates a low memory warning. For more info, please see: https://github.com/Microsoft/appcenter-sdk-cordova/tree/master/cordova-plugin-appcenter-generate-low-memory diff --git a/src/translate/native/@awesome-cordova-plugins-app-center-push.readme.md b/src/translate/native/@awesome-cordova-plugins-app-center-push.readme.md index e89f74940ca..c1b58f99edf 100644 --- a/src/translate/native/@awesome-cordova-plugins-app-center-push.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-app-center-push.readme.md @@ -1 +1,3 @@ + + For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/push/cordova diff --git a/src/translate/native/@awesome-cordova-plugins-app-launcher.readme.md b/src/translate/native/@awesome-cordova-plugins-app-launcher.readme.md index aff2e2cb4d6..0db391fddba 100644 --- a/src/translate/native/@awesome-cordova-plugins-app-launcher.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-app-launcher.readme.md @@ -1 +1,2 @@ + Simple Cordova plugin to see if other apps are installed and launch them. diff --git a/src/translate/native/@awesome-cordova-plugins-app-minimize.readme.md b/src/translate/native/@awesome-cordova-plugins-app-minimize.readme.md index bb919529254..12d31c41dd7 100644 --- a/src/translate/native/@awesome-cordova-plugins-app-minimize.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-app-minimize.readme.md @@ -1 +1,2 @@ + AppMinimize is a plugin to minimize the application on android devices diff --git a/src/translate/native/@awesome-cordova-plugins-app-preferences.readme.md b/src/translate/native/@awesome-cordova-plugins-app-preferences.readme.md index fbde6778edf..87dd87d5765 100644 --- a/src/translate/native/@awesome-cordova-plugins-app-preferences.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-app-preferences.readme.md @@ -1 +1,2 @@ + This plugin allows you to read and write app preferences diff --git a/src/translate/native/@awesome-cordova-plugins-app-rate.readme.md b/src/translate/native/@awesome-cordova-plugins-app-rate.readme.md index c2d7f1730a0..c0210b3f9e5 100644 --- a/src/translate/native/@awesome-cordova-plugins-app-rate.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-app-rate.readme.md @@ -1,3 +1,4 @@ + The AppRate plugin makes it easy to prompt the user to rate your app, either now, later, or never. Requires Cordova plugin: cordova-plugin-apprate. For more info, please see the [AppRate plugin docs](https://github.com/pushandplay/cordova-plugin-apprate). diff --git a/src/translate/native/@awesome-cordova-plugins-app-version.readme.md b/src/translate/native/@awesome-cordova-plugins-app-version.readme.md index 6b4fa2e5c61..08cfe48a452 100644 --- a/src/translate/native/@awesome-cordova-plugins-app-version.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-app-version.readme.md @@ -1,3 +1,4 @@ + Reads the version of your app from the target build settings. Requires Cordova plugin: `cordova-plugin-app-version`. For more info, please see the [Cordova App Version docs](https://github.com/whiteoctober/cordova-plugin-app-version). diff --git a/src/translate/native/@awesome-cordova-plugins-apple-pay.readme.md b/src/translate/native/@awesome-cordova-plugins-apple-pay.readme.md index 6213470725d..1e612327b09 100644 --- a/src/translate/native/@awesome-cordova-plugins-apple-pay.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-apple-pay.readme.md @@ -1 +1,2 @@ + A dependency free Cordova plugin to provide Apple Pay functionality. diff --git a/src/translate/native/@awesome-cordova-plugins-apple-wallet.readme.md b/src/translate/native/@awesome-cordova-plugins-apple-wallet.readme.md index b3fd1055a9a..79bd464667d 100644 --- a/src/translate/native/@awesome-cordova-plugins-apple-wallet.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-apple-wallet.readme.md @@ -1 +1,2 @@ + A Cordova plugin that enables users from Add Payment Cards to their Apple Wallet. diff --git a/src/translate/native/@awesome-cordova-plugins-appodeal.readme.md b/src/translate/native/@awesome-cordova-plugins-appodeal.readme.md index 41c425d19c7..af28dc677bd 100644 --- a/src/translate/native/@awesome-cordova-plugins-appodeal.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-appodeal.readme.md @@ -1 +1,2 @@ + Plugin to serve ads through native Appodeal SDKs diff --git a/src/translate/native/@awesome-cordova-plugins-appsflyer.readme.md b/src/translate/native/@awesome-cordova-plugins-appsflyer.readme.md index 4197b26f800..f0017f9025d 100644 --- a/src/translate/native/@awesome-cordova-plugins-appsflyer.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-appsflyer.readme.md @@ -1 +1,2 @@ + Appsflyer Cordova SDK support for Attribution diff --git a/src/translate/native/@awesome-cordova-plugins-audio-management.readme.md b/src/translate/native/@awesome-cordova-plugins-audio-management.readme.md index 4c69face47f..d1ce36553bc 100644 --- a/src/translate/native/@awesome-cordova-plugins-audio-management.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-audio-management.readme.md @@ -1,2 +1,3 @@ + A Cordova plugin to manage volume of audio streams for: ring, music, notification and system. Possible ringer values for those streams are: silent, vibrate and normal. diff --git a/src/translate/native/@awesome-cordova-plugins-autostart.readme.md b/src/translate/native/@awesome-cordova-plugins-autostart.readme.md index b066c65401a..48d67747675 100644 --- a/src/translate/native/@awesome-cordova-plugins-autostart.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-autostart.readme.md @@ -1,2 +1,3 @@ + This plugin automatically starts your Android app after every boot or auto-update. You can enable or disable the autostart function in your app. diff --git a/src/translate/native/@awesome-cordova-plugins-background-fetch.readme.md b/src/translate/native/@awesome-cordova-plugins-background-fetch.readme.md index 3a4a3e352cf..62278126195 100644 --- a/src/translate/native/@awesome-cordova-plugins-background-fetch.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-background-fetch.readme.md @@ -1,3 +1,4 @@ + iOS Background Fetch Implementation. See: https://developer.apple.com/reference/uikit/uiapplication#1657399 iOS Background Fetch is basically an API which wakes up your app about every 15 minutes (during the user's prime-time hours) and provides your app exactly 30s of background running-time. This plugin will execute your provided callbackFn whenever a background-fetch event occurs. There is no way to increase the rate which a fetch-event occurs and this plugin sets the rate to the most frequent possible value of UIApplicationBackgroundFetchIntervalMinimum -- iOS determines the rate automatically based upon device usage and time-of-day (ie: fetch-rate is about ~15min during prime-time hours; less frequently when the user is presumed to be sleeping, at 3am for example). For more detail, please see https://github.com/transistorsoft/cordova-plugin-background-fetch diff --git a/src/translate/native/@awesome-cordova-plugins-background-geolocation.readme.md b/src/translate/native/@awesome-cordova-plugins-background-geolocation.readme.md index b1cfb8cd04b..a43e7c719b2 100644 --- a/src/translate/native/@awesome-cordova-plugins-background-geolocation.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-background-geolocation.readme.md @@ -1,2 +1,3 @@ + This plugin provides foreground and background geolocation with battery-saving "circular region monitoring" and "stop detection". For more detail, please see https://github.com/mauron85/cordova-plugin-background-geolocation diff --git a/src/translate/native/@awesome-cordova-plugins-background-mode.readme.md b/src/translate/native/@awesome-cordova-plugins-background-mode.readme.md index ee73844b3c8..90ce8edd2ad 100644 --- a/src/translate/native/@awesome-cordova-plugins-background-mode.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-background-mode.readme.md @@ -1,2 +1,3 @@ + Cordova plugin to prevent the app from going to sleep while in background. -Requires Cordova plugin: cordova-plugin-background-mode. For more info about plugin, visit: https://github.com/katzer/cordova-plugin-background-mode +Requires Cordova plugin: cordova-plugin-background-mode. For more info about plugin, visit: https://github.com/katzer/cordova-plugin-background-mode \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-background-upload.readme.md b/src/translate/native/@awesome-cordova-plugins-background-upload.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/native/@awesome-cordova-plugins-background-upload.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-background-upload.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/native/@awesome-cordova-plugins-backlight.readme.md b/src/translate/native/@awesome-cordova-plugins-backlight.readme.md index 9ab2fed769b..bc94608b2c6 100644 --- a/src/translate/native/@awesome-cordova-plugins-backlight.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-backlight.readme.md @@ -1 +1,2 @@ + This plugin adds turning on/off the device backlight. diff --git a/src/translate/native/@awesome-cordova-plugins-badge.readme.md b/src/translate/native/@awesome-cordova-plugins-badge.readme.md index 52465e564f0..11775820229 100644 --- a/src/translate/native/@awesome-cordova-plugins-badge.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-badge.readme.md @@ -1,3 +1,4 @@ + The essential purpose of badge numbers is to enable an application to inform its users that it has something for them — for example, unread messages — when the application isn’t running in the foreground. Requires Cordova plugin: cordova-plugin-badge. For more info, please see the [Badge plugin docs](https://github.com/katzer/cordova-plugin-badge). diff --git a/src/translate/native/@awesome-cordova-plugins-baidu-push.readme.md b/src/translate/native/@awesome-cordova-plugins-baidu-push.readme.md index 33af83938f9..ebe978c896a 100644 --- a/src/translate/native/@awesome-cordova-plugins-baidu-push.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-baidu-push.readme.md @@ -1 +1,2 @@ + This plugin faciliates the use of Baidu Push notifications. diff --git a/src/translate/native/@awesome-cordova-plugins-barcode-scanner.readme.md b/src/translate/native/@awesome-cordova-plugins-barcode-scanner.readme.md index 747418e7857..d40a29ab2a1 100644 --- a/src/translate/native/@awesome-cordova-plugins-barcode-scanner.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-barcode-scanner.readme.md @@ -1,3 +1,4 @@ + The Barcode Scanner Plugin opens a camera view and automatically scans a barcode, returning the data back to you. Requires Cordova plugin: `phonegap-plugin-barcodescanner`. For more info, please see the [BarcodeScanner plugin docs](https://github.com/phonegap/phonegap-plugin-barcodescanner). diff --git a/src/translate/native/@awesome-cordova-plugins-base64-to-gallery.readme.md b/src/translate/native/@awesome-cordova-plugins-base64-to-gallery.readme.md index b84c09c835f..9f16d6d8f42 100644 --- a/src/translate/native/@awesome-cordova-plugins-base64-to-gallery.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-base64-to-gallery.readme.md @@ -1 +1 @@ -This plugin allows you to save base64 data as a png image into the device +This plugin allows you to save base64 data as a png image into the device \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-base64.readme.md b/src/translate/native/@awesome-cordova-plugins-base64.readme.md index 340db120adf..06a0311c510 100644 --- a/src/translate/native/@awesome-cordova-plugins-base64.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-base64.readme.md @@ -1 +1,2 @@ + This Plugin is used to encode base64 of any file, it uses js code for iOS, but in case of android it uses native code to handle android versions lower than v.3 diff --git a/src/translate/native/@awesome-cordova-plugins-battery-status.readme.md b/src/translate/native/@awesome-cordova-plugins-battery-status.readme.md index 2c657416aef..da71524f3d1 100644 --- a/src/translate/native/@awesome-cordova-plugins-battery-status.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-battery-status.readme.md @@ -1 +1,2 @@ + Requires Cordova plugin: cordova-plugin-batterystatus. For more info, please see the [BatteryStatus plugin docs](https://github.com/apache/cordova-plugin-battery-status). diff --git a/src/translate/native/@awesome-cordova-plugins-biocatch.readme.md b/src/translate/native/@awesome-cordova-plugins-biocatch.readme.md index bd325268e71..0725aba40ce 100644 --- a/src/translate/native/@awesome-cordova-plugins-biocatch.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-biocatch.readme.md @@ -1 +1,2 @@ + BioCatch SDK Cordova support diff --git a/src/translate/native/@awesome-cordova-plugins-biometric-wrapper.readme.md b/src/translate/native/@awesome-cordova-plugins-biometric-wrapper.readme.md index b1b5ec0f81c..6be6e7318ae 100644 --- a/src/translate/native/@awesome-cordova-plugins-biometric-wrapper.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-biometric-wrapper.readme.md @@ -1,2 +1,3 @@ + This plugin capture biometric(Iris and Fingerprint) and validate the user. May be used in Banking domain diff --git a/src/translate/native/@awesome-cordova-plugins-ble.readme.md b/src/translate/native/@awesome-cordova-plugins-ble.readme.md index 8d23815cab0..4818853ac89 100644 --- a/src/translate/native/@awesome-cordova-plugins-ble.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-ble.readme.md @@ -1,3 +1,4 @@ + This plugin enables communication between a phone and Bluetooth Low Energy (BLE) peripherals. The plugin provides a simple JavaScript API for iOS and Android. diff --git a/src/translate/native/@awesome-cordova-plugins-blinkid.readme.md b/src/translate/native/@awesome-cordova-plugins-blinkid.readme.md index f0f05bc6a1f..52d671c0034 100644 --- a/src/translate/native/@awesome-cordova-plugins-blinkid.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-blinkid.readme.md @@ -1,2 +1,3 @@ + Microblink SDK wrapper for barcode and document scanning. See the blinkid-phonegap repository for available recognizers and other settings diff --git a/src/translate/native/@awesome-cordova-plugins-blinkup.readme.md b/src/translate/native/@awesome-cordova-plugins-blinkup.readme.md index 6f149bce706..b6cae0f21fd 100644 --- a/src/translate/native/@awesome-cordova-plugins-blinkup.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-blinkup.readme.md @@ -1 +1,2 @@ + Electric Imp BlinkUp ionic plugin. diff --git a/src/translate/native/@awesome-cordova-plugins-bluetooth-classic-serial-port.readme.md b/src/translate/native/@awesome-cordova-plugins-bluetooth-classic-serial-port.readme.md index c0281f22a59..639b85fee5c 100644 --- a/src/translate/native/@awesome-cordova-plugins-bluetooth-classic-serial-port.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-bluetooth-classic-serial-port.readme.md @@ -1 +1 @@ -This plugin is written using the iOS Accessory Framework (MFi) to support Classic Bluetooth on iOS. +This plugin is written using the iOS Accessory Framework (MFi) to support Classic Bluetooth on iOS. \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-bluetooth-le.readme.md b/src/translate/native/@awesome-cordova-plugins-bluetooth-le.readme.md index 3b80e3d0ecd..3ae195d12de 100644 --- a/src/translate/native/@awesome-cordova-plugins-bluetooth-le.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-bluetooth-le.readme.md @@ -1,3 +1,4 @@ + This plugin has the most complete implementation for interacting with Bluetooth LE devices on Android, iOS and partially Windows. It's a wrap around [randdusing/cordova-plugin-bluetoothle](https://github.com/randdusing/cordova-plugin-bluetoothle/blob/master/readme.md) cordova plugin for Ionic. It supports peripheral **and** central modes and covers most of the API methods available on Android and iOS. diff --git a/src/translate/native/@awesome-cordova-plugins-bluetooth-serial.readme.md b/src/translate/native/@awesome-cordova-plugins-bluetooth-serial.readme.md index d0939b5fde7..f3579d8e616 100644 --- a/src/translate/native/@awesome-cordova-plugins-bluetooth-serial.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-bluetooth-serial.readme.md @@ -1 +1 @@ -This plugin enables serial communication over Bluetooth. It was written for communicating between Android or iOS and an Arduino (not Android to Android or iOS to iOS). +This plugin enables serial communication over Bluetooth. It was written for communicating between Android or iOS and an Arduino (not Android to Android or iOS to iOS). \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-braintree.readme.md b/src/translate/native/@awesome-cordova-plugins-braintree.readme.md index 9921b18062b..29af8d97385 100644 --- a/src/translate/native/@awesome-cordova-plugins-braintree.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-braintree.readme.md @@ -1,8 +1,9 @@ + This plugin enables the use of the Braintree Drop-In Payments UI in your Ionic applications on Android and iOS, using the native Drop-In UI for each platform (not the Javascript SDK). -Ionic Native utilizes [a maintained fork](https://github.com/taracque/cordova-plugin-braintree) of the original `cordova-plugin-braintree` + Ionic Native utilizes [a maintained fork](https://github.com/taracque/cordova-plugin-braintree) of the original `cordova-plugin-braintree` -For information on how to use Apple Pay with this plugin, please refer to the [plugin documentation](https://github.com/Taracque/cordova-plugin-braintree#apple-pay-ios-only) + For information on how to use Apple Pay with this plugin, please refer to the [plugin documentation](https://github.com/Taracque/cordova-plugin-braintree#apple-pay-ios-only) **NOTE**: This is not a complete payments solution. All of the Braintree client-side UIs simply generate a payment nonce that must then be processed by your server to complete the payment. See the [Braintree Node server documentation](https://developers.braintreepayments.com/start/hello-server/node) for details and a [sample Express server](https://github.com/braintree/braintree_express_example) that implements the required functionality. diff --git a/src/translate/native/@awesome-cordova-plugins-branch-io.readme.md b/src/translate/native/@awesome-cordova-plugins-branch-io.readme.md index a222a2efbe7..b9836ebd4c6 100644 --- a/src/translate/native/@awesome-cordova-plugins-branch-io.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-branch-io.readme.md @@ -1 +1,2 @@ + Branch.io is an attribution service for deeplinking and invitation links diff --git a/src/translate/native/@awesome-cordova-plugins-brightness.readme.md b/src/translate/native/@awesome-cordova-plugins-brightness.readme.md index d97dd2af981..51b06d0cc15 100644 --- a/src/translate/native/@awesome-cordova-plugins-brightness.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-brightness.readme.md @@ -1,3 +1,4 @@ + The Brightness plugin let you control the display brightness of your device. Requires Cordova plugin: `cordova-plugin-brightness`. For more info, please see the [Brightness plugin docs](https://github.com/mgcrea/cordova-plugin-brightness). diff --git a/src/translate/native/@awesome-cordova-plugins-broadcaster.readme.md b/src/translate/native/@awesome-cordova-plugins-broadcaster.readme.md index b925da2342c..71995e79760 100644 --- a/src/translate/native/@awesome-cordova-plugins-broadcaster.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-broadcaster.readme.md @@ -1 +1,2 @@ + This plugin adds exchanging events between native code and your app. diff --git a/src/translate/native/@awesome-cordova-plugins-browser-tab.readme.md b/src/translate/native/@awesome-cordova-plugins-browser-tab.readme.md index f03b8b179a9..bf83901883b 100644 --- a/src/translate/native/@awesome-cordova-plugins-browser-tab.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-browser-tab.readme.md @@ -1 +1,2 @@ + This plugin provides an interface to in-app browser tabs that exist on some mobile platforms, specifically [Custom Tabs](http://developer.android.com/tools/support-library/features.html#custom-tabs) on Android (including the [Chrome Custom Tabs](https://developer.chrome.com/multidevice/android/customtabs) implementation), and [SFSafariViewController](https://developer.apple.com/library/ios/documentation/SafariServices/Reference/SFSafariViewController_Ref/) on iOS. diff --git a/src/translate/native/@awesome-cordova-plugins-build-info.readme.md b/src/translate/native/@awesome-cordova-plugins-build-info.readme.md index 7b8674b3871..7e5a437d1d3 100644 --- a/src/translate/native/@awesome-cordova-plugins-build-info.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-build-info.readme.md @@ -1 +1,2 @@ + This plugin provides build information. diff --git a/src/translate/native/@awesome-cordova-plugins-calendar.readme.md b/src/translate/native/@awesome-cordova-plugins-calendar.readme.md index 515f629e662..5a83eede868 100644 --- a/src/translate/native/@awesome-cordova-plugins-calendar.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-calendar.readme.md @@ -1,3 +1,5 @@ + This plugin allows you to add events to the Calendar of the mobile device. Requires Cordova plugin: `cordova-plugin-calendar`. For more info, please see the [Calendar plugin docs](https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin). + diff --git a/src/translate/native/@awesome-cordova-plugins-call-directory.readme.md b/src/translate/native/@awesome-cordova-plugins-call-directory.readme.md index b0ecb7bb40b..16d031664c6 100644 --- a/src/translate/native/@awesome-cordova-plugins-call-directory.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-call-directory.readme.md @@ -1,2 +1,3 @@ + This plugin can add phone numbers to an Callkit call directory extension. Call `reloadExtension` after using `addIdentification` and `removeIdentification` to process the changes in the call directory extension. diff --git a/src/translate/native/@awesome-cordova-plugins-call-log.readme.md b/src/translate/native/@awesome-cordova-plugins-call-log.readme.md index 76f6447e69b..a2b5e1bab30 100644 --- a/src/translate/native/@awesome-cordova-plugins-call-log.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-call-log.readme.md @@ -1 +1,2 @@ + This plugin access the call history on a device and that can be filtered diff --git a/src/translate/native/@awesome-cordova-plugins-call-number.readme.md b/src/translate/native/@awesome-cordova-plugins-call-number.readme.md index 2914b087a64..d68a0a44b0e 100644 --- a/src/translate/native/@awesome-cordova-plugins-call-number.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-call-number.readme.md @@ -1,2 +1,3 @@ + Call a number directly from your Cordova/Ionic application. **NOTE**: The iOS Simulator (and maybe Android Simulators) do not provide access to the phone subsystem. diff --git a/src/translate/native/@awesome-cordova-plugins-camera-preview.readme.md b/src/translate/native/@awesome-cordova-plugins-camera-preview.readme.md index 9b06352e407..31cf59dc30b 100644 --- a/src/translate/native/@awesome-cordova-plugins-camera-preview.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-camera-preview.readme.md @@ -1,3 +1,4 @@ + Showing camera preview in HTML Requires Cordova plugin: `https://github.com/cordova-plugin-camera-preview/cordova-plugin-camera-preview.git`. For more info, please see the [Cordova Camera Preview docs](https://github.com/cordova-plugin-camera-preview/cordova-plugin-camera-preview). diff --git a/src/translate/native/@awesome-cordova-plugins-camera.readme.md b/src/translate/native/@awesome-cordova-plugins-camera.readme.md index aa5cc82125d..a354d9c7925 100644 --- a/src/translate/native/@awesome-cordova-plugins-camera.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-camera.readme.md @@ -1,13 +1,12 @@ + Take a photo or capture video. Requires the Cordova plugin: `cordova-plugin-camera`. For more info, please see the [Cordova Camera Plugin Docs](https://github.com/apache/cordova-plugin-camera). [Warning] Since IOS 10 the camera requires permissions to be placed in your config.xml add - ```xml You can take photos ``` - inside of the This Plugin is no longer supported by Couchbase. Please see our Couchbase Lite Integration diff --git a/src/translate/native/@awesome-cordova-plugins-crop.readme.md b/src/translate/native/@awesome-cordova-plugins-crop.readme.md index 9faa50aaed7..6c659180b50 100644 --- a/src/translate/native/@awesome-cordova-plugins-crop.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-crop.readme.md @@ -1 +1 @@ -Crops images +Crops images \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-custom-uisdk.readme.md b/src/translate/native/@awesome-cordova-plugins-custom-uisdk.readme.md index 9116ddca6eb..5c24399bc42 100644 --- a/src/translate/native/@awesome-cordova-plugins-custom-uisdk.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-custom-uisdk.readme.md @@ -1 +1,2 @@ + This plugin is used to access Paytm's native CustomUISDK framework's apis. diff --git a/src/translate/native/@awesome-cordova-plugins-date-picker.readme.md b/src/translate/native/@awesome-cordova-plugins-date-picker.readme.md index d2632a61abf..5eed8b85866 100644 --- a/src/translate/native/@awesome-cordova-plugins-date-picker.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-date-picker.readme.md @@ -1 +1,2 @@ + The DatePicker plugin allows the user to fetch date or time using native dialogs. diff --git a/src/translate/native/@awesome-cordova-plugins-db-meter.readme.md b/src/translate/native/@awesome-cordova-plugins-db-meter.readme.md index cabc3d4ff44..08fbb92c20c 100644 --- a/src/translate/native/@awesome-cordova-plugins-db-meter.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-db-meter.readme.md @@ -1 +1 @@ -This plugin defines a global DBMeter object, which permits to get the decibel values from the microphone. +This plugin defines a global DBMeter object, which permits to get the decibel values from the microphone. \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-device-accounts.readme.md b/src/translate/native/@awesome-cordova-plugins-device-accounts.readme.md index 8943e5b9ca4..bffae754b58 100644 --- a/src/translate/native/@awesome-cordova-plugins-device-accounts.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-device-accounts.readme.md @@ -1 +1,2 @@ + Gets the Google accounts associated with the Android device diff --git a/src/translate/native/@awesome-cordova-plugins-device-feedback.readme.md b/src/translate/native/@awesome-cordova-plugins-device-feedback.readme.md index f11c48fa910..ad508847c3e 100644 --- a/src/translate/native/@awesome-cordova-plugins-device-feedback.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-device-feedback.readme.md @@ -1 +1,3 @@ + + Plugin that lets you provide haptic or acoustic feedback on Android devices. diff --git a/src/translate/native/@awesome-cordova-plugins-device-motion.readme.md b/src/translate/native/@awesome-cordova-plugins-device-motion.readme.md index 4dbbb06d71c..abe72e3b6c0 100644 --- a/src/translate/native/@awesome-cordova-plugins-device-motion.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-device-motion.readme.md @@ -1 +1,2 @@ + Requires Cordova plugin: `cordova-plugin-device-motion`. For more info, please see the [Device Motion docs](https://github.com/apache/cordova-plugin-device-motion). diff --git a/src/translate/native/@awesome-cordova-plugins-device-orientation.readme.md b/src/translate/native/@awesome-cordova-plugins-device-orientation.readme.md index e96364431a7..02c713e2138 100644 --- a/src/translate/native/@awesome-cordova-plugins-device-orientation.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-device-orientation.readme.md @@ -1 +1,2 @@ + Requires Cordova plugin: `cordova-plugin-device-orientation`. For more info, please see the [Device Orientation docs](https://github.com/apache/cordova-plugin-device-orientation). diff --git a/src/translate/native/@awesome-cordova-plugins-device.readme.md b/src/translate/native/@awesome-cordova-plugins-device.readme.md index 3dbd2dec8e3..c6ef6980695 100644 --- a/src/translate/native/@awesome-cordova-plugins-device.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-device.readme.md @@ -1 +1,2 @@ + Access information about the underlying device and platform. diff --git a/src/translate/native/@awesome-cordova-plugins-dfu-update.readme.md b/src/translate/native/@awesome-cordova-plugins-dfu-update.readme.md index ac9d8279b92..893058bc4eb 100644 --- a/src/translate/native/@awesome-cordova-plugins-dfu-update.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-dfu-update.readme.md @@ -1 +1,2 @@ + This plugin is a Wrapper to use Nordic Semiconductor's Device Firmware Update (DFU) service to update a Bluetooth LE device. diff --git a/src/translate/native/@awesome-cordova-plugins-diagnostic.readme.md b/src/translate/native/@awesome-cordova-plugins-diagnostic.readme.md index 64c6b6393fe..a90f9cfbe85 100644 --- a/src/translate/native/@awesome-cordova-plugins-diagnostic.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-diagnostic.readme.md @@ -1 +1,2 @@ + Checks whether device hardware features are enabled or available to the app, e.g. camera, GPS, wifi diff --git a/src/translate/native/@awesome-cordova-plugins-dialogs.readme.md b/src/translate/native/@awesome-cordova-plugins-dialogs.readme.md index f988d884a0c..11ac16aafc6 100644 --- a/src/translate/native/@awesome-cordova-plugins-dialogs.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-dialogs.readme.md @@ -1,3 +1,4 @@ + This plugin gives you ability to access and customize the device native dialogs. Requires Cordova plugin: `cordova-plugin-dialogs`. For more info, please see the [Dialogs plugin docs](https://github.com/apache/cordova-plugin-dialogs). diff --git a/src/translate/native/@awesome-cordova-plugins-document-picker.readme.md b/src/translate/native/@awesome-cordova-plugins-document-picker.readme.md index 3a08f9c811c..7eac80f6cff 100644 --- a/src/translate/native/@awesome-cordova-plugins-document-picker.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-document-picker.readme.md @@ -1,2 +1,4 @@ + + Opens the file picker on iOS for the user to select a file, returns a file URI. Allows the user to upload files from iCloud diff --git a/src/translate/native/@awesome-cordova-plugins-document-scanner.readme.md b/src/translate/native/@awesome-cordova-plugins-document-scanner.readme.md index 03cd028ccfd..29d32018802 100644 --- a/src/translate/native/@awesome-cordova-plugins-document-scanner.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-document-scanner.readme.md @@ -1 +1,2 @@ + This plugin processes images of documents, compensating for perspective. diff --git a/src/translate/native/@awesome-cordova-plugins-document-viewer.readme.md b/src/translate/native/@awesome-cordova-plugins-document-viewer.readme.md index 605e7b14d41..7e39f62d9b0 100644 --- a/src/translate/native/@awesome-cordova-plugins-document-viewer.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-document-viewer.readme.md @@ -1 +1,2 @@ -This plugin offers a slim API to view PDF files which are either stored in the apps assets folder (/www/\*) or in any other file system directory available via the cordova file plugin. + +This plugin offers a slim API to view PDF files which are either stored in the apps assets folder (/www/*) or in any other file system directory available via the cordova file plugin. diff --git a/src/translate/native/@awesome-cordova-plugins-downloader.readme.md b/src/translate/native/@awesome-cordova-plugins-downloader.readme.md index dad89444163..f15e01b1143 100644 --- a/src/translate/native/@awesome-cordova-plugins-downloader.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-downloader.readme.md @@ -1 +1,3 @@ + This plugin is designed to support downloading files using Android DownloadManager. + diff --git a/src/translate/native/@awesome-cordova-plugins-email-composer.readme.md b/src/translate/native/@awesome-cordova-plugins-email-composer.readme.md index a305d027409..4176ac2a7b9 100644 --- a/src/translate/native/@awesome-cordova-plugins-email-composer.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-email-composer.readme.md @@ -1 +1,4 @@ + + Requires Cordova plugin: cordova-plugin-email-composer. For more info, please see the [Email Composer plugin docs](https://github.com/hypery2k/cordova-email-plugin). + diff --git a/src/translate/native/@awesome-cordova-plugins-emm-app-config.readme.md b/src/translate/native/@awesome-cordova-plugins-emm-app-config.readme.md index d0554945c4c..81259d50cc1 100644 --- a/src/translate/native/@awesome-cordova-plugins-emm-app-config.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-emm-app-config.readme.md @@ -1,3 +1,5 @@ + This plugin provides information on EMM application configuration Requires the Cordova plugin: `cordova-plugin-emm-app-config`. For more info, please see the [Cordova EMM App Config Plugin Docs](https://github.com/oracle/cordova-plugin-emm-app-config). + diff --git a/src/translate/native/@awesome-cordova-plugins-estimote-beacons.readme.md b/src/translate/native/@awesome-cordova-plugins-estimote-beacons.readme.md index b76b54f6046..40349a8306b 100644 --- a/src/translate/native/@awesome-cordova-plugins-estimote-beacons.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-estimote-beacons.readme.md @@ -1 +1,2 @@ + This plugin enables communication between a phone and Estimote Beacons peripherals. diff --git a/src/translate/native/@awesome-cordova-plugins-extended-device-information.readme.md b/src/translate/native/@awesome-cordova-plugins-extended-device-information.readme.md index 043375415ac..16c3ea63d2a 100644 --- a/src/translate/native/@awesome-cordova-plugins-extended-device-information.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-extended-device-information.readme.md @@ -1,6 +1,6 @@ -Retrieves additional device information from the Device Hardware -- memory -- cpumhz -- totalstorage -- freestorage +Retrieves additional device information from the Device Hardware + - memory + - cpumhz + - totalstorage + - freestorage diff --git a/src/translate/native/@awesome-cordova-plugins-fabric.readme.md b/src/translate/native/@awesome-cordova-plugins-fabric.readme.md index b140e97cb32..12d214e6d38 100644 --- a/src/translate/native/@awesome-cordova-plugins-fabric.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-fabric.readme.md @@ -1,3 +1,4 @@ + API for interacting with the Answers kit. https://docs.fabric.io/crashlytics/index.html diff --git a/src/translate/native/@awesome-cordova-plugins-facebook.readme.md b/src/translate/native/@awesome-cordova-plugins-facebook.readme.md index 93e5e887491..df9af63f74b 100644 --- a/src/translate/native/@awesome-cordova-plugins-facebook.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-facebook.readme.md @@ -1,10 +1,11 @@ + Use the Facebook Connect plugin to obtain access to the native FB application on iOS and Android. Requires Cordova plugin: `cordova-plugin-facebook-connect`. For more info, please see the [Facebook Connect](https://github.com/cordova-plugin-facebook-connect/cordova-plugin-facebook-connect). #### Installation -To use the FB plugin, you first have to create a new Facebook App inside of the Facebook developer portal at [https://developers.facebook.com/apps](https://developers.facebook.com/apps). + To use the FB plugin, you first have to create a new Facebook App inside of the Facebook developer portal at [https://developers.facebook.com/apps](https://developers.facebook.com/apps). [![fb-getstarted-1](/img/docs/native/Facebook/1.png)](https://developers.facebook.com/apps/) @@ -29,7 +30,6 @@ Click `'Add Platform'`. At this point you'll need to open your project's [`config.xml`](https://cordova.apache.org/docs/en/latest/config_ref/index.html) file, found in the root directory of your project. Take note of the `id` for the next step: - ``` ``` @@ -37,17 +37,17 @@ Take note of the `id` for the next step: You can also edit the `id` to whatever you'd like it to be. #### iOS Install - Under 'Bundle ID', add the `id` from your `config.xml` file: [![fb-getstarted-5](/img/docs/native/Facebook/5.png)](https://developers.facebook.com/apps/) -#### Android Install +#### Android Install Under 'Google Play Package Name', add the `id` from your `config.xml` file: [![fb-getstarted-6](/img/docs/native/Facebook/6.png)](https://developers.facebook.com/apps/) + And that's it! You can now make calls to Facebook using the plugin. ## Events diff --git a/src/translate/native/@awesome-cordova-plugins-fcm.readme.md b/src/translate/native/@awesome-cordova-plugins-fcm.readme.md index dbbb3b72132..f3790772c17 100644 --- a/src/translate/native/@awesome-cordova-plugins-fcm.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-fcm.readme.md @@ -1 +1,2 @@ + Provides basic functionality for Firebase Cloud Messaging diff --git a/src/translate/native/@awesome-cordova-plugins-file-chooser.readme.md b/src/translate/native/@awesome-cordova-plugins-file-chooser.readme.md index 4bf1bdf418f..b4553ad9baf 100644 --- a/src/translate/native/@awesome-cordova-plugins-file-chooser.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-file-chooser.readme.md @@ -1 +1,3 @@ + + Opens the file picker on Android for the user to select a file, returns a file URI. diff --git a/src/translate/native/@awesome-cordova-plugins-file-encryption.readme.md b/src/translate/native/@awesome-cordova-plugins-file-encryption.readme.md index f1b5408277a..4fdfccbf60d 100644 --- a/src/translate/native/@awesome-cordova-plugins-file-encryption.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-file-encryption.readme.md @@ -1 +1,2 @@ + Simple file encryption for Cordova. diff --git a/src/translate/native/@awesome-cordova-plugins-file-opener.readme.md b/src/translate/native/@awesome-cordova-plugins-file-opener.readme.md index a719c048fe4..ba26e51b8cd 100644 --- a/src/translate/native/@awesome-cordova-plugins-file-opener.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-file-opener.readme.md @@ -1 +1,2 @@ + This plugin will open a file on your device file system with its default application. diff --git a/src/translate/native/@awesome-cordova-plugins-file-path.readme.md b/src/translate/native/@awesome-cordova-plugins-file-path.readme.md index 1f3eeb42d5a..c9445ac1ce7 100644 --- a/src/translate/native/@awesome-cordova-plugins-file-path.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-file-path.readme.md @@ -1 +1,3 @@ + + This plugin allows you to resolve the native filesystem path for Android content URIs and is based on code in the aFileChooser library. diff --git a/src/translate/native/@awesome-cordova-plugins-file-picker.readme.md b/src/translate/native/@awesome-cordova-plugins-file-picker.readme.md index 3616dbd3573..b33dc3c0f97 100644 --- a/src/translate/native/@awesome-cordova-plugins-file-picker.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-file-picker.readme.md @@ -1 +1,3 @@ + + Opens the file picker on iOS for the user to select a file, returns a file URI. diff --git a/src/translate/native/@awesome-cordova-plugins-file-transfer.readme.md b/src/translate/native/@awesome-cordova-plugins-file-transfer.readme.md index 4770407e60d..c8ba532eae9 100644 --- a/src/translate/native/@awesome-cordova-plugins-file-transfer.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-file-transfer.readme.md @@ -1 +1,2 @@ + This plugin allows you to upload and download files. diff --git a/src/translate/native/@awesome-cordova-plugins-file.readme.md b/src/translate/native/@awesome-cordova-plugins-file.readme.md index 28bc40d6e90..1e61b343d6b 100644 --- a/src/translate/native/@awesome-cordova-plugins-file.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-file.readme.md @@ -1,9 +1,9 @@ + This plugin implements a File API allowing read/write access to files residing on the device. The File class implements static convenience functions to access files and directories. Example: - ``` import { File } from '@awesome-cordova-plugins/file/ngx'; @@ -16,8 +16,8 @@ this.file.checkDir(this.file.dataDirectory, 'mydir').then(_ => console.log('Dire ``` -This plugin is based on several specs, including : The HTML5 File API http: //www.w3.org/TR/FileAPI/ -The (now-defunct) Directories and System extensions Latest: http: //www.w3.org/TR/2012/WD-file-system-api-20120417/ -Although most of the plugin code was written when an earlier spec was current: http: -//www.w3.org/TR/2011/WD-file-system-api-20110419/ It also implements the FileWriter spec : http: -//dev.w3.org/2009/dap/file-system/file-writer.html + This plugin is based on several specs, including : The HTML5 File API http: //www.w3.org/TR/FileAPI/ + The (now-defunct) Directories and System extensions Latest: http: //www.w3.org/TR/2012/WD-file-system-api-20120417/ + Although most of the plugin code was written when an earlier spec was current: http: + //www.w3.org/TR/2011/WD-file-system-api-20110419/ It also implements the FileWriter spec : http: + //dev.w3.org/2009/dap/file-system/file-writer.html \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-firebase-analytics.readme.md b/src/translate/native/@awesome-cordova-plugins-firebase-analytics.readme.md index ce125266039..f87a05030d7 100644 --- a/src/translate/native/@awesome-cordova-plugins-firebase-analytics.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-firebase-analytics.readme.md @@ -1,3 +1,4 @@ + Cordova plugin for Firebase Analytics Go to firebase console and export google-services.json and GoogleService-Info.plist. Put those files into the root of your cordova app folder. @@ -5,9 +6,7 @@ Go to firebase console and export google-services.json and GoogleService-Info.pl NOTE: on iOS in order to collect demographic, age, gender data etc. you should additionally include AdSupport.framework into your project. ## Using capacitor? - -For Android you'll have to add in **android/app/src/main/AndroidManfiest.xml** under `` - +For Android you'll have to add in __android/app/src/main/AndroidManfiest.xml__ under `` ``` @@ -17,4 +17,4 @@ config.xml: -``` +``` \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-firebase-messaging.readme.md b/src/translate/native/@awesome-cordova-plugins-firebase-messaging.readme.md index 6a18f9fcf39..5bdcf74de11 100644 --- a/src/translate/native/@awesome-cordova-plugins-firebase-messaging.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-firebase-messaging.readme.md @@ -1 +1,2 @@ + Cordova plugin for Firebase Messaging diff --git a/src/translate/native/@awesome-cordova-plugins-firebase-vision.readme.md b/src/translate/native/@awesome-cordova-plugins-firebase-vision.readme.md index d1f83c84392..433e365a6a5 100644 --- a/src/translate/native/@awesome-cordova-plugins-firebase-vision.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-firebase-vision.readme.md @@ -1 +1,2 @@ + Cordova plugin for Firebase MLKit Vision diff --git a/src/translate/native/@awesome-cordova-plugins-firebase-x.readme.md b/src/translate/native/@awesome-cordova-plugins-firebase-x.readme.md index aa17963327a..e044eb6dc66 100644 --- a/src/translate/native/@awesome-cordova-plugins-firebase-x.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-firebase-x.readme.md @@ -1,2 +1,3 @@ + This plugin brings push notifications, analytics, event tracking, crash reporting and more from Google Firebase to your Cordova project! Android and iOS supported. It is a maintained fork from unmaintained ionic-navite plugin called Firebase. diff --git a/src/translate/native/@awesome-cordova-plugins-firebase.readme.md b/src/translate/native/@awesome-cordova-plugins-firebase.readme.md index 6c21f982616..25001f76e05 100644 --- a/src/translate/native/@awesome-cordova-plugins-firebase.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-firebase.readme.md @@ -1 +1,2 @@ + This plugin brings push notifications, analytics, event tracking, crash reporting and more from Google Firebase to your Cordova project! Android and iOS supported (including iOS 10). diff --git a/src/translate/native/@awesome-cordova-plugins-flurry-analytics.readme.md b/src/translate/native/@awesome-cordova-plugins-flurry-analytics.readme.md index e57049202bf..80ef2d51635 100644 --- a/src/translate/native/@awesome-cordova-plugins-flurry-analytics.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-flurry-analytics.readme.md @@ -1 +1,2 @@ + This plugin connects to Flurry Analytics SDK diff --git a/src/translate/native/@awesome-cordova-plugins-foreground-service.readme.md b/src/translate/native/@awesome-cordova-plugins-foreground-service.readme.md index 563b7c87954..6d68d07b0fe 100644 --- a/src/translate/native/@awesome-cordova-plugins-foreground-service.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-foreground-service.readme.md @@ -1,8 +1,9 @@ + This plugin allows for android devices to continue running services in the background, using a foreground ongoing notification. This is targeted towards use with plugins such as 'cordova-geolocation' that will not run while the app is in the background on android API 26+. -For android API 28+, the following xml snippet should be inserted into `config.xml`: +For android API 28+, the following xml snippet should be inserted into ```config.xml```: ``` ... @@ -11,4 +12,4 @@ For android API 28+, the following xml snippet should be inserted into `config.x ... -``` +``` \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-ftp.readme.md b/src/translate/native/@awesome-cordova-plugins-ftp.readme.md index 5987065177c..0cd5a4278d8 100644 --- a/src/translate/native/@awesome-cordova-plugins-ftp.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-ftp.readme.md @@ -1 +1,2 @@ + This cordova plugin is created to use ftp (client) in web/js. diff --git a/src/translate/native/@awesome-cordova-plugins-full-screen-image.readme.md b/src/translate/native/@awesome-cordova-plugins-full-screen-image.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/native/@awesome-cordova-plugins-full-screen-image.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-full-screen-image.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/native/@awesome-cordova-plugins-gao-de-location.readme.md b/src/translate/native/@awesome-cordova-plugins-gao-de-location.readme.md index 5dda6c71ade..a56ed3a0093 100644 --- a/src/translate/native/@awesome-cordova-plugins-gao-de-location.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-gao-de-location.readme.md @@ -1,2 +1,3 @@ + Because the original GPS positioning uses Google Browser positioning, and Google withdraws from China, resulting in GPS Android positioning can not be positioned. Gaode location can directly return address informationGaode location can directly return address information diff --git a/src/translate/native/@awesome-cordova-plugins-ge-tui-sdk-plugin.readme.md b/src/translate/native/@awesome-cordova-plugins-ge-tui-sdk-plugin.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/native/@awesome-cordova-plugins-ge-tui-sdk-plugin.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-ge-tui-sdk-plugin.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/native/@awesome-cordova-plugins-geofence.readme.md b/src/translate/native/@awesome-cordova-plugins-geofence.readme.md index 2f83489f5fb..6e993e8f8a8 100644 --- a/src/translate/native/@awesome-cordova-plugins-geofence.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-geofence.readme.md @@ -1,2 +1,2 @@ Monitors circular geofences around latitude/longitude coordinates, and sends a notification to the user when the boundary of a geofence is crossed. Notifications can be sent when the user enters and/or exits a geofence. -Geofences persist after device reboot. Geofences will be monitored even when the app is not running. +Geofences persist after device reboot. Geofences will be monitored even when the app is not running. \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-geolocation.readme.md b/src/translate/native/@awesome-cordova-plugins-geolocation.readme.md index 0391a010ff3..8d55357a600 100644 --- a/src/translate/native/@awesome-cordova-plugins-geolocation.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-geolocation.readme.md @@ -1,11 +1,12 @@ + This plugin provides information about the device's location, such as latitude and longitude. Common sources of location information include Global Positioning System (GPS) and location inferred from network signals such as IP address, RFID, WiFi and Bluetooth MAC addresses, and GSM/CDMA cell IDs. -This API is based on the W3C Geolocation API Specification, and only executes on devices that don't already provide an implementation. + This API is based on the W3C Geolocation API Specification, and only executes on devices that don't already provide an implementation. For iOS you have to add this configuration to your configuration.xml file - ```xml We use your location for full functionality of certain app features. ``` + diff --git a/src/translate/native/@awesome-cordova-plugins-globalization.readme.md b/src/translate/native/@awesome-cordova-plugins-globalization.readme.md index 840cf8d4fb5..d1a3161e0b4 100644 --- a/src/translate/native/@awesome-cordova-plugins-globalization.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-globalization.readme.md @@ -1 +1,2 @@ + This plugin obtains information and performs operations specific to the user's locale, language, and timezone. diff --git a/src/translate/native/@awesome-cordova-plugins-google-analytics.readme.md b/src/translate/native/@awesome-cordova-plugins-google-analytics.readme.md index 8ebef774b81..1c759160579 100644 --- a/src/translate/native/@awesome-cordova-plugins-google-analytics.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-google-analytics.readme.md @@ -1,6 +1,6 @@ + This plugin connects to Google's native Universal Analytics SDK Prerequisites: - - A Cordova 3.0+ project for iOS and/or Android - A Mobile App property through the Google Analytics Admin Console -- (Android) Google Play Services SDK installed via [Android SDK Manager](https://developer.android.com/sdk/installing/adding-packages.html) +- (Android) Google Play Services SDK installed via [Android SDK Manager](https://developer.android.com/sdk/installing/adding-packages.html) \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-google-nearby.readme.md b/src/translate/native/@awesome-cordova-plugins-google-nearby.readme.md index 0e715c64736..42ea1211a02 100644 --- a/src/translate/native/@awesome-cordova-plugins-google-nearby.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-google-nearby.readme.md @@ -1 +1,2 @@ + This plugin adds support for the Google Nearby Messages API. diff --git a/src/translate/native/@awesome-cordova-plugins-google-play-games-services.readme.md b/src/translate/native/@awesome-cordova-plugins-google-play-games-services.readme.md index a10f89326aa..e40dfc4db5e 100644 --- a/src/translate/native/@awesome-cordova-plugins-google-play-games-services.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-google-play-games-services.readme.md @@ -1 +1,2 @@ + A Cordova plugin that let's you interact with Google Play Games Services. diff --git a/src/translate/native/@awesome-cordova-plugins-gyroscope.readme.md b/src/translate/native/@awesome-cordova-plugins-gyroscope.readme.md index 676268db9d5..fb0392b4d72 100644 --- a/src/translate/native/@awesome-cordova-plugins-gyroscope.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-gyroscope.readme.md @@ -1 +1 @@ -Read Gyroscope sensor data +Read Gyroscope sensor data \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-hce.readme.md b/src/translate/native/@awesome-cordova-plugins-hce.readme.md index 6f496fc37ad..9cc2bc1f297 100644 --- a/src/translate/native/@awesome-cordova-plugins-hce.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-hce.readme.md @@ -1 +1,2 @@ + HCE Cordova Wrapper diff --git a/src/translate/native/@awesome-cordova-plugins-header-color.readme.md b/src/translate/native/@awesome-cordova-plugins-header-color.readme.md index 271a47a93b3..ad82eb6b43a 100644 --- a/src/translate/native/@awesome-cordova-plugins-header-color.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-header-color.readme.md @@ -1 +1,2 @@ + Cordova plugin to change color of header in Android Multitask View diff --git a/src/translate/native/@awesome-cordova-plugins-health-kit.readme.md b/src/translate/native/@awesome-cordova-plugins-health-kit.readme.md index 466271d3cba..dbd72bc8324 100644 --- a/src/translate/native/@awesome-cordova-plugins-health-kit.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-health-kit.readme.md @@ -1,2 +1,3 @@ + The HealthKit plugin allows you to read data from and write data to the iOS 8+ HealthKit framework. Any data saved shows up in the iOS Health app and is available for other iOS apps. diff --git a/src/translate/native/@awesome-cordova-plugins-health.readme.md b/src/translate/native/@awesome-cordova-plugins-health.readme.md index f49780a8921..349af915eac 100644 --- a/src/translate/native/@awesome-cordova-plugins-health.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-health.readme.md @@ -1 +1,2 @@ + A plugin that abstracts fitness and health repositories like Apple HealthKit or Google Fit. diff --git a/src/translate/native/@awesome-cordova-plugins-hotspot.readme.md b/src/translate/native/@awesome-cordova-plugins-hotspot.readme.md index 2ba246ebaf0..e49b6cbc6ca 100644 --- a/src/translate/native/@awesome-cordova-plugins-hotspot.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-hotspot.readme.md @@ -1,3 +1,4 @@ + A Cordova plugin for managing Hotspot networks on Android. Requires Cordova plugin: `cordova-plugin-hotspot`. For more info, please see the [Hotspot plugin docs](https://github.com/hypery2k/cordova-hotspot-plugin). diff --git a/src/translate/native/@awesome-cordova-plugins-http.readme.md b/src/translate/native/@awesome-cordova-plugins-http.readme.md index 3fcae7e8052..40ad52f5a5d 100644 --- a/src/translate/native/@awesome-cordova-plugins-http.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-http.readme.md @@ -1,7 +1,7 @@ + Cordova / Phonegap plugin for communicating with HTTP servers. Supports iOS and Android. Advantages over Javascript requests: - - SSL / TLS Pinning - CORS restrictions do not apply - Handling of HTTP code 401 - read more at [Issue CB-2415](https://issues.apache.org/jira/browse/CB-2415) diff --git a/src/translate/native/@awesome-cordova-plugins-httpd.readme.md b/src/translate/native/@awesome-cordova-plugins-httpd.readme.md index 14a21342440..4421569a8f0 100644 --- a/src/translate/native/@awesome-cordova-plugins-httpd.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-httpd.readme.md @@ -1 +1,2 @@ -Embedded httpd for Cordova apps. Light weight HTTP server. + +Embedded httpd for Cordova apps. Light weight HTTP server. \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-iamport-cordova.readme.md b/src/translate/native/@awesome-cordova-plugins-iamport-cordova.readme.md index 8a8ae830783..d223513c705 100644 --- a/src/translate/native/@awesome-cordova-plugins-iamport-cordova.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-iamport-cordova.readme.md @@ -1 +1,2 @@ + Cordova plugin that integrates with and handles multiple payment gateways. diff --git a/src/translate/native/@awesome-cordova-plugins-ibeacon.readme.md b/src/translate/native/@awesome-cordova-plugins-ibeacon.readme.md index accd867793f..ee369f17322 100644 --- a/src/translate/native/@awesome-cordova-plugins-ibeacon.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-ibeacon.readme.md @@ -1,3 +1,4 @@ + This plugin provides functions for working with iBeacons. -The plugin's API closely mimics the one exposed through the [CLLocationManager](https://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLLocationManager_Class/index.html) introduced in iOS 7. + The plugin's API closely mimics the one exposed through the [CLLocationManager](https://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLLocationManager_Class/index.html) introduced in iOS 7. diff --git a/src/translate/native/@awesome-cordova-plugins-image-picker.readme.md b/src/translate/native/@awesome-cordova-plugins-image-picker.readme.md index 8f9c76acd94..75f3775bff1 100644 --- a/src/translate/native/@awesome-cordova-plugins-image-picker.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-image-picker.readme.md @@ -1,3 +1,4 @@ + Cordova Plugin For Multiple Image Selection Requires Cordova plugin: `cordova-plugin-image-picker`. diff --git a/src/translate/native/@awesome-cordova-plugins-image-resizer.readme.md b/src/translate/native/@awesome-cordova-plugins-image-resizer.readme.md index 88fa3c7bf5c..40b02d55e6b 100644 --- a/src/translate/native/@awesome-cordova-plugins-image-resizer.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-image-resizer.readme.md @@ -1 +1,2 @@ + Cordova Plugin For Image Resize diff --git a/src/translate/native/@awesome-cordova-plugins-imap.readme.md b/src/translate/native/@awesome-cordova-plugins-imap.readme.md index e6e57be76e7..f699597a628 100644 --- a/src/translate/native/@awesome-cordova-plugins-imap.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-imap.readme.md @@ -1,3 +1,4 @@ + This plugin will enable an Ionic application to use the IMAP (Internet Message Access Protocol) features. This plugin is in Beta version and it offers support only for Android. The plugin uses Java Mail API. diff --git a/src/translate/native/@awesome-cordova-plugins-in-app-browser.readme.md b/src/translate/native/@awesome-cordova-plugins-in-app-browser.readme.md index 0485062862e..87d0037b909 100644 --- a/src/translate/native/@awesome-cordova-plugins-in-app-browser.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-in-app-browser.readme.md @@ -1 +1 @@ -Launches in app Browser +Launches in app Browser \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-in-app-purchase-2.readme.md b/src/translate/native/@awesome-cordova-plugins-in-app-purchase-2.readme.md index b6be39d32c9..5bcd6494c48 100644 --- a/src/translate/native/@awesome-cordova-plugins-in-app-purchase-2.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-in-app-purchase-2.readme.md @@ -1,24 +1,25 @@ + In-App Purchase on iOS, Android, Windows, macOS and XBox. ## Features -| | ios | android | win-8 | win-10/uwp | mac | -| -------------------- | --- | ------- | ----- | ---------- | --- | -| consumables | ✅ | ✅ | ✅ | ✅ | ✅ | -| non consumables | ✅ | ✅ | ✅ | ✅ | ✅ | -| subscriptions | ✅ | ✅ | ✅ | ✅ | ✅ | -| restore purchases | ✅ | ✅ | ✅ | ✅ | ✅ | -| receipt validations | ✅ | ✅ | | ✅ | ✅ | -| downloadable content | ✅ | | | | ✅ | -| introductory prices | ✅ | ✅ | | ✅ | ✅ | +| | ios | android | win-8 | win-10/uwp | mac | +|--|--|--|--|--|--| +| consumables | ✅ | ✅ | ✅ | ✅ | ✅ | +| non consumables | ✅ | ✅ | ✅ | ✅ | ✅ | +| subscriptions | ✅ | ✅ | ✅ | ✅ | ✅ | +| restore purchases | ✅ | ✅ | ✅ | ✅ | ✅ | +| receipt validations | ✅ | ✅ | | ✅ | ✅ | +| downloadable content | ✅ | | | | ✅ | +| introductory prices | ✅ | ✅ | | ✅ | ✅ | Supports: -- **iOS** version 7.0 or higher. -- **Android** version 2.2 (API level 8) or higher - - with Google Play client version 3.9.16 or higher -- **Windows** Store/Phone 8.1 or higher -- **Windows 10 Mobile** -- **macOS** version 10 -- **Xbox One** - - (and any platform supporting Microsoft's UWP) + - **iOS** version 7.0 or higher. + - **Android** version 2.2 (API level 8) or higher + - with Google Play client version 3.9.16 or higher + - **Windows** Store/Phone 8.1 or higher + - **Windows 10 Mobile** + - **macOS** version 10 + - **Xbox One** + - (and any platform supporting Microsoft's UWP) diff --git a/src/translate/native/@awesome-cordova-plugins-in-app-purchase.readme.md b/src/translate/native/@awesome-cordova-plugins-in-app-purchase.readme.md index 143985e329b..5fbffa5c65b 100644 --- a/src/translate/native/@awesome-cordova-plugins-in-app-purchase.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-in-app-purchase.readme.md @@ -1 +1,2 @@ + A lightweight Cordova plugin for in app purchases on iOS/Android. diff --git a/src/translate/native/@awesome-cordova-plugins-in-app-review.readme.md b/src/translate/native/@awesome-cordova-plugins-in-app-review.readme.md index 8e174f56973..32b56cbab41 100644 --- a/src/translate/native/@awesome-cordova-plugins-in-app-review.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-in-app-review.readme.md @@ -1,3 +1,5 @@ + This plugin does use the iOS class SKStore​Review​Controller to open the inApp review popup available since iOS 10.3 This functionality only works on iOS devices + diff --git a/src/translate/native/@awesome-cordova-plugins-index-app-content.readme.md b/src/translate/native/@awesome-cordova-plugins-index-app-content.readme.md index c28c9dcb463..365932222f7 100644 --- a/src/translate/native/@awesome-cordova-plugins-index-app-content.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-index-app-content.readme.md @@ -1,3 +1,4 @@ + This plugin gives you a Javascript API to interact with Core Spotlight on iOS (=> iOS 9). You can add, update and delete items to the spotlight search index. Spotlight Search will include these items in the result list. You can deep-link the search results with your app. diff --git a/src/translate/native/@awesome-cordova-plugins-insomnia.readme.md b/src/translate/native/@awesome-cordova-plugins-insomnia.readme.md index 680fb4b5caa..77bbacfc378 100644 --- a/src/translate/native/@awesome-cordova-plugins-insomnia.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-insomnia.readme.md @@ -1 +1,2 @@ + Prevent the screen of the mobile device from falling asleep. diff --git a/src/translate/native/@awesome-cordova-plugins-intel-security.readme.md b/src/translate/native/@awesome-cordova-plugins-intel-security.readme.md index 685bec69d99..93b6eee3eb3 100644 --- a/src/translate/native/@awesome-cordova-plugins-intel-security.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-intel-security.readme.md @@ -1,7 +1,7 @@ + The App Security API enables the use of security properties and capabilities on the platform, using a new set of API defined for application developers. You are not required to be a security expert to make good use of the API. Key elements, such as encryption of data and establishments of capabilities, is abstracted and done by the API implementation, for you. For example: - - Use the API to store (E.g. cache) data locally, using the device non-volatile storage. Data protection/encryption will be done for you by the API implementation - Establish a connection with remote server (E.g. XHR) using a protected channel. SSL/TLS establishment and usage will be done for you by the API implementation diff --git a/src/translate/native/@awesome-cordova-plugins-intercom.readme.md b/src/translate/native/@awesome-cordova-plugins-intercom.readme.md index 6526cd4d4ff..3cecc84de9e 100644 --- a/src/translate/native/@awesome-cordova-plugins-intercom.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-intercom.readme.md @@ -1,2 +1,3 @@ + This is a plugin that allows your Ionic app to use Intercom for iOS and/or Intercom for Android. Follow the offical documentation to setup this plugin correctly: https://developers.intercom.com/docs/cordova-phonegap-configuration diff --git a/src/translate/native/@awesome-cordova-plugins-ionic-webview.readme.md b/src/translate/native/@awesome-cordova-plugins-ionic-webview.readme.md index 1c68245f996..6fe62b6c53a 100644 --- a/src/translate/native/@awesome-cordova-plugins-ionic-webview.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-ionic-webview.readme.md @@ -1,3 +1,4 @@ + Access Web View utilities. Requires the Cordova plugin: `cordova-plugin-ionic-webview` > 2.0. For more info, please see the [Ionic Web View](https://github.com/ionic-team/cordova-plugin-ionic-webview) repository. diff --git a/src/translate/native/@awesome-cordova-plugins-ios-aswebauthenticationsessapi.readme.md b/src/translate/native/@awesome-cordova-plugins-ios-aswebauthenticationsessapi.readme.md index 708074a0ab2..b8ea2b47c9e 100644 --- a/src/translate/native/@awesome-cordova-plugins-ios-aswebauthenticationsessapi.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-ios-aswebauthenticationsessapi.readme.md @@ -1 +1,2 @@ + Plugin for iOS 12 ASWebAuthenticationSession API diff --git a/src/translate/native/@awesome-cordova-plugins-is-debug.readme.md b/src/translate/native/@awesome-cordova-plugins-is-debug.readme.md index 03fc8b67cb1..8a75e4fc94f 100644 --- a/src/translate/native/@awesome-cordova-plugins-is-debug.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-is-debug.readme.md @@ -1,2 +1,3 @@ + Detect if the app is running in debug mode or not. Debug mode is when the app is built and installed locally via xcode / eclipse / the cordova cli etc, compared to release mode when the app was downloaded from the app / play store via an end user. diff --git a/src/translate/native/@awesome-cordova-plugins-janalytics.readme.md b/src/translate/native/@awesome-cordova-plugins-janalytics.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/native/@awesome-cordova-plugins-janalytics.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-janalytics.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/native/@awesome-cordova-plugins-jins-meme.readme.md b/src/translate/native/@awesome-cordova-plugins-jins-meme.readme.md index ed15dd96b1c..2895fffa54c 100644 --- a/src/translate/native/@awesome-cordova-plugins-jins-meme.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-jins-meme.readme.md @@ -1 +1,2 @@ + Implementation of the JINS MEME SDK diff --git a/src/translate/native/@awesome-cordova-plugins-jumio.readme.md b/src/translate/native/@awesome-cordova-plugins-jumio.readme.md index be8555b753a..9fde9b57805 100644 --- a/src/translate/native/@awesome-cordova-plugins-jumio.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-jumio.readme.md @@ -2,4 +2,4 @@ Check out [example with Angular 9.1 & Capacitor 2.1](https://github.com/zendigit [Platform Customization](https://github.com/Jumio/mobile-cordova#customization) is possible -Original source: [Jumio mobile-cordova](https://github.com/Jumio/mobile-cordova) Plugin for Apache Cordova +Original source: [Jumio mobile-cordova](https://github.com/Jumio/mobile-cordova) Plugin for Apache Cordova \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-keyboard.readme.md b/src/translate/native/@awesome-cordova-plugins-keyboard.readme.md index b86b22652c5..1ccf061fc98 100644 --- a/src/translate/native/@awesome-cordova-plugins-keyboard.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-keyboard.readme.md @@ -1,3 +1,4 @@ + Keyboard plugin for Cordova. Requires Cordova plugin: `cordova-plugin-ionic-keyboard`. For more info, please see the [Keyboard plugin docs](https://github.com/ionic-team/cordova-plugin-ionic-keyboard). diff --git a/src/translate/native/@awesome-cordova-plugins-keychain-touch-id.readme.md b/src/translate/native/@awesome-cordova-plugins-keychain-touch-id.readme.md index d2e63dd18d1..cca62d8b43e 100644 --- a/src/translate/native/@awesome-cordova-plugins-keychain-touch-id.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-keychain-touch-id.readme.md @@ -1,2 +1,3 @@ + A cordova plugin adding the iOS TouchID / Android fingerprint to your app and allowing you to store a password securely in the device keychain. diff --git a/src/translate/native/@awesome-cordova-plugins-keychain.readme.md b/src/translate/native/@awesome-cordova-plugins-keychain.readme.md index ae817d52f6d..7764ef64d16 100644 --- a/src/translate/native/@awesome-cordova-plugins-keychain.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-keychain.readme.md @@ -1,3 +1,4 @@ + Get and set data in the iOS Keychain Requires Cordova plugin: `cordova-plugin-ios-keychain`. For more info, please see the [Keychain plugin docs](https://github.com/ionic-team/cordova-plugin-ios-keychain). diff --git a/src/translate/native/@awesome-cordova-plugins-kommunicate.readme.md b/src/translate/native/@awesome-cordova-plugins-kommunicate.readme.md index 013e0cacbed..c28100fc7ff 100644 --- a/src/translate/native/@awesome-cordova-plugins-kommunicate.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-kommunicate.readme.md @@ -1,3 +1,4 @@ + The plugin for the Kommunicate SDK. With the help of this plugin, you can easily add human + bot chat support functionality to you app. Refer to: TODO: insert site link diff --git a/src/translate/native/@awesome-cordova-plugins-last-cam.readme.md b/src/translate/native/@awesome-cordova-plugins-last-cam.readme.md index a272d33f4e3..125e1108746 100644 --- a/src/translate/native/@awesome-cordova-plugins-last-cam.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-last-cam.readme.md @@ -1,2 +1,3 @@ + Last Cam is a Camera Preview plugin that allows you to take capture both Videos and images in a custom html preview of your choice. diff --git a/src/translate/native/@awesome-cordova-plugins-launch-navigator.readme.md b/src/translate/native/@awesome-cordova-plugins-launch-navigator.readme.md index 105b197495b..0306a39d956 100644 --- a/src/translate/native/@awesome-cordova-plugins-launch-navigator.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-launch-navigator.readme.md @@ -1 +1,2 @@ + Requires Cordova plugin: uk.co.workingedge.phonegap.plugin.launchnavigator. For more info, please see the [LaunchNavigator plugin docs](https://github.com/dpa99c/phonegap-launch-navigator). diff --git a/src/translate/native/@awesome-cordova-plugins-launch-review.readme.md b/src/translate/native/@awesome-cordova-plugins-launch-review.readme.md index 2f3437ec5c2..942352f7056 100644 --- a/src/translate/native/@awesome-cordova-plugins-launch-review.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-launch-review.readme.md @@ -1,4 +1,5 @@ -Assists in leaving user reviews/ratings in the App Stores. + +Assists in leaving user reviews/ratings in the App Stores. - Launches the platform's App Store page for the current app in order for the user to leave a review. - On iOS (10.3 and above) invokes the native in-app rating dialog which allows a user to rate your app without needing to open the App Store. diff --git a/src/translate/native/@awesome-cordova-plugins-line-login.readme.md b/src/translate/native/@awesome-cordova-plugins-line-login.readme.md index fc39816081a..6cc5413db8f 100644 --- a/src/translate/native/@awesome-cordova-plugins-line-login.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-line-login.readme.md @@ -1 +1,2 @@ + The function login, logs out, acquires, verifies, and refreshes the access token. The version of LineSDK you are using is as follows. diff --git a/src/translate/native/@awesome-cordova-plugins-local-backup.readme.md b/src/translate/native/@awesome-cordova-plugins-local-backup.readme.md index f6123e51703..2085ded77a8 100644 --- a/src/translate/native/@awesome-cordova-plugins-local-backup.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-local-backup.readme.md @@ -1 +1,2 @@ + This plugin to create local backup diff --git a/src/translate/native/@awesome-cordova-plugins-local-notifications.readme.md b/src/translate/native/@awesome-cordova-plugins-local-notifications.readme.md index 6cfdd379643..82c183d6fee 100644 --- a/src/translate/native/@awesome-cordova-plugins-local-notifications.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-local-notifications.readme.md @@ -1 +1,2 @@ + This plugin allows you to display local notifications on the device diff --git a/src/translate/native/@awesome-cordova-plugins-locataccuracy.readme.md b/src/translate/native/@awesome-cordova-plugins-locataccuracy.readme.md index ed018edb499..99d60417c8f 100644 --- a/src/translate/native/@awesome-cordova-plugins-locataccuracy.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-locataccuracy.readme.md @@ -1 +1,2 @@ + This Cordova/Phonegap plugin for Android and iOS to request enabling/changing of Location Services by triggering a native dialog from within the app, avoiding the need for the user to leave your app to change location settings manually. diff --git a/src/translate/native/@awesome-cordova-plugins-lottie-splash-screen.readme.md b/src/translate/native/@awesome-cordova-plugins-lottie-splash-screen.readme.md index e67243449ae..539dbf0c5b4 100644 --- a/src/translate/native/@awesome-cordova-plugins-lottie-splash-screen.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-lottie-splash-screen.readme.md @@ -1 +1,2 @@ + Cordova plugin to show bodymovin/Lottie animations as the splash screen with Airbnb's Lottie wrapper diff --git a/src/translate/native/@awesome-cordova-plugins-luxand.readme.md b/src/translate/native/@awesome-cordova-plugins-luxand.readme.md index bead6de72c2..55292ec8b1b 100644 --- a/src/translate/native/@awesome-cordova-plugins-luxand.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-luxand.readme.md @@ -1 +1,2 @@ + This plugin let you integrate Luxand Face SDK into your ionic projects, so you can implement face authentication easily in your application. diff --git a/src/translate/native/@awesome-cordova-plugins-magnetometer.readme.md b/src/translate/native/@awesome-cordova-plugins-magnetometer.readme.md index ca5ec6a2525..9e5778eab23 100644 --- a/src/translate/native/@awesome-cordova-plugins-magnetometer.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-magnetometer.readme.md @@ -1 +1,2 @@ + Requires Cordova plugin: `cordova-plugin-magnetometer`. For more info, please see the [Device Orientation docs](https://github.com/sdesalas/cordova-plugin-magnetometer). diff --git a/src/translate/native/@awesome-cordova-plugins-market.readme.md b/src/translate/native/@awesome-cordova-plugins-market.readme.md index 0fa09982e5b..281c8d456ad 100644 --- a/src/translate/native/@awesome-cordova-plugins-market.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-market.readme.md @@ -1 +1,2 @@ + Opens an app's page in the market place (Google Play, App Store) diff --git a/src/translate/native/@awesome-cordova-plugins-media-capture.readme.md b/src/translate/native/@awesome-cordova-plugins-media-capture.readme.md index 69b6b0ebf1b..92cacd40a12 100644 --- a/src/translate/native/@awesome-cordova-plugins-media-capture.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-media-capture.readme.md @@ -1,3 +1,4 @@ + This plugin provides access to the device's audio, image, and video capture capabilities. Requires Cordova plugin: `cordova-plugin-media-capture`. For more info, please see the [Media Capture plugin docs](https://github.com/apache/cordova-plugin-media-capture). diff --git a/src/translate/native/@awesome-cordova-plugins-media.readme.md b/src/translate/native/@awesome-cordova-plugins-media.readme.md index f67d2174eea..9d07585f502 100644 --- a/src/translate/native/@awesome-cordova-plugins-media.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-media.readme.md @@ -1 +1,2 @@ + This plugin provides the ability to record and play back audio files on a device. diff --git a/src/translate/native/@awesome-cordova-plugins-metrix.readme.md b/src/translate/native/@awesome-cordova-plugins-metrix.readme.md index 63f05dbf100..13edc56092e 100644 --- a/src/translate/native/@awesome-cordova-plugins-metrix.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-metrix.readme.md @@ -1,3 +1,4 @@ + This is the Ionic Cordova SDK of Metrix™. You can read more about Metrix™ at metrix.ir. Requires Cordova plugin: `ir.metrix.sdk`. For more info, please see the [Metrix Cordova SDK](https://github.com/metrixorg/MetrixSDK-CordovaPlugin) diff --git a/src/translate/native/@awesome-cordova-plugins-mixpanel.readme.md b/src/translate/native/@awesome-cordova-plugins-mixpanel.readme.md index f3eb05040cf..75e25a2c230 100644 --- a/src/translate/native/@awesome-cordova-plugins-mixpanel.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-mixpanel.readme.md @@ -1 +1,2 @@ + Cordova Plugin that wraps Mixpanel SDK for Android and iOS diff --git a/src/translate/native/@awesome-cordova-plugins-mlkit-translate.readme.md b/src/translate/native/@awesome-cordova-plugins-mlkit-translate.readme.md index c159f3801cb..b8584c4e0ae 100644 --- a/src/translate/native/@awesome-cordova-plugins-mlkit-translate.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-mlkit-translate.readme.md @@ -1 +1,2 @@ + Plugin that implements MLKit Translation and Language Identification features. diff --git a/src/translate/native/@awesome-cordova-plugins-mobile-accessibility.readme.md b/src/translate/native/@awesome-cordova-plugins-mobile-accessibility.readme.md index 0d06c413e79..e9f6b965a20 100644 --- a/src/translate/native/@awesome-cordova-plugins-mobile-accessibility.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-mobile-accessibility.readme.md @@ -1,2 +1,3 @@ + This plugin exposes information on the status of various accessibility features of mobile operating systems, including, for example, whether a screen reader is running, invert colors is enabled, and the preferred scaling for text. It also allows an application to send a string to be spoken by the screen reader, or a command to stop the screen reader from speaking. diff --git a/src/translate/native/@awesome-cordova-plugins-mobile-messaging.readme.md b/src/translate/native/@awesome-cordova-plugins-mobile-messaging.readme.md index d71ef31d811..30c9e83dc6d 100644 --- a/src/translate/native/@awesome-cordova-plugins-mobile-messaging.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-mobile-messaging.readme.md @@ -1,3 +1,4 @@ + Mobile Messaging SDK is designed and developed to easily enable push notification channel in your mobile application. In almost no time of implementation you get push notification in your application and access to the features of [Infobip IP Messaging Platform](https://portal.infobip.com/push/). This document describes library integration steps for your Cordova project. diff --git a/src/translate/native/@awesome-cordova-plugins-ms-adal.readme.md b/src/translate/native/@awesome-cordova-plugins-ms-adal.readme.md index 0390d514207..72ffec61b13 100644 --- a/src/translate/native/@awesome-cordova-plugins-ms-adal.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-ms-adal.readme.md @@ -1,4 +1,5 @@ + Active Directory Authentication Library (ADAL) plugin. Active Directory Authentication Library ([ADAL](https://docs.microsoft.com/en-us/dotnet/api/microsoft.identitymodel.clients.activedirectory?view=azure-dotnet)) plugin provides easy to use authentication functionality for your Apache Cordova apps by taking advantage of -Windows Server Active Directory and Windows Azure Active Directory. Here you can find the source code for the library. +Windows Server Active Directory and Windows Azure Active Directory. Here you can find the source code for the library. \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-multiple-document-picker.readme.md b/src/translate/native/@awesome-cordova-plugins-multiple-document-picker.readme.md index 1a4f27e7fd5..ba01c25cf88 100644 --- a/src/translate/native/@awesome-cordova-plugins-multiple-document-picker.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-multiple-document-picker.readme.md @@ -1 +1,2 @@ + This plugin allows users to pick multiple documents/images at once diff --git a/src/translate/native/@awesome-cordova-plugins-music-controls.readme.md b/src/translate/native/@awesome-cordova-plugins-music-controls.readme.md index 04fe4a3bf33..e5465ae0a91 100644 --- a/src/translate/native/@awesome-cordova-plugins-music-controls.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-music-controls.readme.md @@ -1,3 +1,4 @@ + Music controls for Cordova applications. Display a 'media' notification with play/pause, previous, next buttons, allowing the user to control the play. Handle also headset event (plug, unplug, headset button). diff --git a/src/translate/native/@awesome-cordova-plugins-native-audio.readme.md b/src/translate/native/@awesome-cordova-plugins-native-audio.readme.md index 7bbca215ca4..b37886b1b59 100644 --- a/src/translate/native/@awesome-cordova-plugins-native-audio.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-native-audio.readme.md @@ -1 +1 @@ -Native Audio Playback +Native Audio Playback \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-native-geocoder.readme.md b/src/translate/native/@awesome-cordova-plugins-native-geocoder.readme.md index 5468f7f9077..3e9b7575290 100644 --- a/src/translate/native/@awesome-cordova-plugins-native-geocoder.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-native-geocoder.readme.md @@ -1 +1,2 @@ + Cordova plugin for native forward and reverse geocoding diff --git a/src/translate/native/@awesome-cordova-plugins-native-keyboard.readme.md b/src/translate/native/@awesome-cordova-plugins-native-keyboard.readme.md index faea3298df2..cd2d3dab18a 100644 --- a/src/translate/native/@awesome-cordova-plugins-native-keyboard.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-native-keyboard.readme.md @@ -1 +1,3 @@ + A cross platform WhatsApp / Messenger / Slack -style keyboard even. For your Cordova app. + diff --git a/src/translate/native/@awesome-cordova-plugins-native-page-transitions.readme.md b/src/translate/native/@awesome-cordova-plugins-native-page-transitions.readme.md index 266ae69275a..edd6e9c39ee 100644 --- a/src/translate/native/@awesome-cordova-plugins-native-page-transitions.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-native-page-transitions.readme.md @@ -1 +1,2 @@ + The Native Page Transitions plugin uses native hardware acceleration to animate your transitions between views. You have complete control over the type of transition, the duration, and direction. diff --git a/src/translate/native/@awesome-cordova-plugins-native-ringtones.readme.md b/src/translate/native/@awesome-cordova-plugins-native-ringtones.readme.md index 9a2e0d43722..7bcffb8dee4 100644 --- a/src/translate/native/@awesome-cordova-plugins-native-ringtones.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-native-ringtones.readme.md @@ -1,2 +1,3 @@ + The plugin helps get the native ringtones list on Android or IOS devices. And you can also use this plugin to play or stop the native ringtones and custom ringtones(added in the www folder). diff --git a/src/translate/native/@awesome-cordova-plugins-navigatbar.readme.md b/src/translate/native/@awesome-cordova-plugins-navigatbar.readme.md index 4e29c4eeb6a..ad0db3ff5c9 100644 --- a/src/translate/native/@awesome-cordova-plugins-navigatbar.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-navigatbar.readme.md @@ -1 +1,2 @@ + The NavigationBar plugin allows you to hide and auto hide the android navigation bar. diff --git a/src/translate/native/@awesome-cordova-plugins-network-interface.readme.md b/src/translate/native/@awesome-cordova-plugins-network-interface.readme.md index 837c7e475a5..ab6d1bf9d08 100644 --- a/src/translate/native/@awesome-cordova-plugins-network-interface.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-network-interface.readme.md @@ -1 +1,2 @@ + Network interface information plugin for Cordova/PhoneGap that supports Android, Blackberry 10, Browser, iOS, and Windows Phone 8. diff --git a/src/translate/native/@awesome-cordova-plugins-network.readme.md b/src/translate/native/@awesome-cordova-plugins-network.readme.md index 9a5f7a35d4e..5ad7357168c 100644 --- a/src/translate/native/@awesome-cordova-plugins-network.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-network.readme.md @@ -1 +1,2 @@ + Requires Cordova plugin: cordova-plugin-network-information. For more info, please see the [Network plugin docs](https://github.com/apache/cordova-plugin-network-information). diff --git a/src/translate/native/@awesome-cordova-plugins-nfc.readme.md b/src/translate/native/@awesome-cordova-plugins-nfc.readme.md index a81214659db..92837035391 100644 --- a/src/translate/native/@awesome-cordova-plugins-nfc.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-nfc.readme.md @@ -1,7 +1,7 @@ + The NFC plugin allows you to read and write NFC tags. You can also beam to, and receive from, other NFC enabled devices. Use to - - read data from NFC tags - write data to NFC tags - send data to other NFC enabled devices diff --git a/src/translate/native/@awesome-cordova-plugins-ocr.readme.md b/src/translate/native/@awesome-cordova-plugins-ocr.readme.md index 9632b1f0155..4e1c4bcb571 100644 --- a/src/translate/native/@awesome-cordova-plugins-ocr.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-ocr.readme.md @@ -1,4 +1,5 @@ + This plugin attempts to identify and extract text from an image. Please note: This plugin depends on the GoogleMobileVision pod which is referencing UIWebview, that has been deprecated by Apple. Don't use this plugin in an app intended for App Store as you will get a review rejection from Apple: `Deprecated API Usage — Apple will stop accepting submissions of apps that use UIWebView APIs` -For more info, please see the following Github issue [Google Mobile Vision relying on deprecated UIWebview](https://github.com/NeutrinosPlatform/cordova-plugin-mobile-ocr/issues/27). +For more info, please see the following Github issue [Google Mobile Vision relying on deprecated UIWebview](https://github.com/NeutrinosPlatform/cordova-plugin-mobile-ocr/issues/27). \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-onesignal.readme.md b/src/translate/native/@awesome-cordova-plugins-onesignal.readme.md index dd7010c8876..5ddc2066105 100644 --- a/src/translate/native/@awesome-cordova-plugins-onesignal.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-onesignal.readme.md @@ -1,3 +1,4 @@ + The OneSignal plugin is an client implementation for using the [OneSignal](https://onesignal.com/) Service. OneSignal is a simple implementation for delivering push notifications. @@ -5,13 +6,11 @@ Please view the official [OneSignal Ionic SDK Installation](https://documentatio for more information. #### Icons - If you want to use generated icons with command `ionic cordova resources`: 1. Add a file to your `hooks` directory called `copy_android_notification_icons.js` 2. Configure the hook in your config.xml - ``` @@ -66,4 +65,5 @@ module.exports = function(context) { ``` 3. From the root of your project make the file executable: - `$ chmod +x hooks/copy_android_notification_icons.js` +`$ chmod +x hooks/copy_android_notification_icons.js` + diff --git a/src/translate/native/@awesome-cordova-plugins-open-native-settings.readme.md b/src/translate/native/@awesome-cordova-plugins-open-native-settings.readme.md index 11e9c0ca52c..0be0100f96d 100644 --- a/src/translate/native/@awesome-cordova-plugins-open-native-settings.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-open-native-settings.readme.md @@ -1 +1,2 @@ -Plugin to open native screens of iOS/android settings + +Plugin to open native screens of iOS/android settings \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-openalpr.readme.md b/src/translate/native/@awesome-cordova-plugins-openalpr.readme.md index c59128571c6..077568f6f76 100644 --- a/src/translate/native/@awesome-cordova-plugins-openalpr.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-openalpr.readme.md @@ -1 +1,2 @@ + This Cordova plugin adds support for the OpenALPR (Automatic License Plate Recognition) library, which provides support for retrieving the license plate from a picture. diff --git a/src/translate/native/@awesome-cordova-plugins-paypal.readme.md b/src/translate/native/@awesome-cordova-plugins-paypal.readme.md index 4caf38450f4..97823a256c7 100644 --- a/src/translate/native/@awesome-cordova-plugins-paypal.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-paypal.readme.md @@ -1 +1,2 @@ + PayPal plugin for Cordova/Ionic Applications diff --git a/src/translate/native/@awesome-cordova-plugins-paytabs.readme.md b/src/translate/native/@awesome-cordova-plugins-paytabs.readme.md index 4f099e14ed4..e45425cee51 100644 --- a/src/translate/native/@awesome-cordova-plugins-paytabs.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-paytabs.readme.md @@ -1 +1,2 @@ + A plugin that allows you to use PayTabs's Native SDKs for Android and iOS. diff --git a/src/translate/native/@awesome-cordova-plugins-pdf-generator.readme.md b/src/translate/native/@awesome-cordova-plugins-pdf-generator.readme.md index 22692f6e35d..0b14edafe4a 100644 --- a/src/translate/native/@awesome-cordova-plugins-pdf-generator.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-pdf-generator.readme.md @@ -1 +1,2 @@ + Simple plugin to generate (offline) pdf. The plugin transforms HTML to PDF and also provide the mechanism to share the pdf to other apps like Mail, etc. diff --git a/src/translate/native/@awesome-cordova-plugins-pedometer.readme.md b/src/translate/native/@awesome-cordova-plugins-pedometer.readme.md index 81ece364e1f..c6fcd66be8f 100644 --- a/src/translate/native/@awesome-cordova-plugins-pedometer.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-pedometer.readme.md @@ -1,2 +1,3 @@ + Fetch pedestrian-related pedometer data, such as step counts and other information about the distance travelled. diff --git a/src/translate/native/@awesome-cordova-plugins-phonegap-local-notification.readme.md b/src/translate/native/@awesome-cordova-plugins-phonegap-local-notification.readme.md index 1510b50b7b6..dd840c8b485 100644 --- a/src/translate/native/@awesome-cordova-plugins-phonegap-local-notification.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-phonegap-local-notification.readme.md @@ -1,2 +1,3 @@ + The Local Notification plugin gives developers the ability to post notifications from their app that show up in the device’s notification area. The API for the local notification plugin follows the W3C Web Notifications specification: https://www.w3.org/TR/notifications/ diff --git a/src/translate/native/@awesome-cordova-plugins-photo-library.readme.md b/src/translate/native/@awesome-cordova-plugins-photo-library.readme.md index 77e517bcbd9..1f20587b9e3 100644 --- a/src/translate/native/@awesome-cordova-plugins-photo-library.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-photo-library.readme.md @@ -1,3 +1,4 @@ + The PhotoLibrary plugin allows access to photos from device by url. So you can use plain img tag to display photos and their thumbnails, and different 3rd party libraries as well. Saving photos and videos to the library is also supported. cdvphotolibrary urls should be trusted by Angular. See plugin homepage to learn how. diff --git a/src/translate/native/@awesome-cordova-plugins-photo-viewer.readme.md b/src/translate/native/@awesome-cordova-plugins-photo-viewer.readme.md index c4ca80fa312..642ad87c3ba 100644 --- a/src/translate/native/@awesome-cordova-plugins-photo-viewer.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-photo-viewer.readme.md @@ -1 +1 @@ -This plugin can display your image in full screen with the ability to pan, zoom, and share the image. +This plugin can display your image in full screen with the ability to pan, zoom, and share the image. \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-pin-check.readme.md b/src/translate/native/@awesome-cordova-plugins-pin-check.readme.md index 6596e0e430f..6ea7514c5fa 100644 --- a/src/translate/native/@awesome-cordova-plugins-pin-check.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-pin-check.readme.md @@ -1,3 +1,4 @@ + This plugin is for use with Apache Cordova and allows your application to check whether pin/keyguard or passcode is setup on iOS and Android phones. Requires Cordova plugin: cordova-plugin-pincheck. For more info, please see the [PinCheck plugin docs](https://github.com/ohh2ahh/AppAvailability). diff --git a/src/translate/native/@awesome-cordova-plugins-pin-dialog.readme.md b/src/translate/native/@awesome-cordova-plugins-pin-dialog.readme.md index d1bb01fec7e..2c12503cd71 100644 --- a/src/translate/native/@awesome-cordova-plugins-pin-dialog.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-pin-dialog.readme.md @@ -1,3 +1,6 @@ + PhoneGap numeric password dialog plugin for Android and iOS. Requires Cordova plugin: `cordova-plugin-pin-dialog`. For more info, please see the [Pin Dialog plugin docs](https://github.com/Paldom/PinDialog). + + diff --git a/src/translate/native/@awesome-cordova-plugins-pinterest.readme.md b/src/translate/native/@awesome-cordova-plugins-pinterest.readme.md index 9a9cc59bc6c..fa7a099a33f 100644 --- a/src/translate/native/@awesome-cordova-plugins-pinterest.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-pinterest.readme.md @@ -1 +1,2 @@ + Cordova plugin for Pinterest diff --git a/src/translate/native/@awesome-cordova-plugins-pollfish.readme.md b/src/translate/native/@awesome-cordova-plugins-pollfish.readme.md index b1cab91f830..c42c478d81d 100644 --- a/src/translate/native/@awesome-cordova-plugins-pollfish.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-pollfish.readme.md @@ -1 +1,2 @@ + Pollfish Ionic Native plugin wrapper diff --git a/src/translate/native/@awesome-cordova-plugins-power-management.readme.md b/src/translate/native/@awesome-cordova-plugins-power-management.readme.md index 4ed7aff21ca..eaca280cad2 100644 --- a/src/translate/native/@awesome-cordova-plugins-power-management.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-power-management.readme.md @@ -1,2 +1,3 @@ + The PowerManagement plugin offers access to the devices power-management functionality. It should be used for applications which keep running for a long time without any user interaction. diff --git a/src/translate/native/@awesome-cordova-plugins-power-optimization.readme.md b/src/translate/native/@awesome-cordova-plugins-power-optimization.readme.md index 1985ca44851..779cd5d6ec2 100644 --- a/src/translate/native/@awesome-cordova-plugins-power-optimization.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-power-optimization.readme.md @@ -1,2 +1,3 @@ + Android Custom Roms made sometimes your apps unfunctional due to being killed in the background, notification messages do not appearing or your services being killed by agressive power saving mode. The Power Optimization plugin give you android PowerManager methods with cordova. diff --git a/src/translate/native/@awesome-cordova-plugins-printer.readme.md b/src/translate/native/@awesome-cordova-plugins-printer.readme.md index 5aff311b111..312ac4a9125 100644 --- a/src/translate/native/@awesome-cordova-plugins-printer.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-printer.readme.md @@ -1 +1 @@ -Prints documents or HTML rendered content +Prints documents or HTML rendered content \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-pspdfkit-cordova.readme.md b/src/translate/native/@awesome-cordova-plugins-pspdfkit-cordova.readme.md index 909c2ef0dbb..51bb27361c9 100644 --- a/src/translate/native/@awesome-cordova-plugins-pspdfkit-cordova.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-pspdfkit-cordova.readme.md @@ -1 +1,2 @@ + The official plugin to use PSPDFKit with Cordova and Ionic. diff --git a/src/translate/native/@awesome-cordova-plugins-purchases.readme.md b/src/translate/native/@awesome-cordova-plugins-purchases.readme.md index dc1a4fbbb4b..7f42a5bcd96 100644 --- a/src/translate/native/@awesome-cordova-plugins-purchases.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-purchases.readme.md @@ -1,7 +1,7 @@ + Purchases is a cross platform solution for managing in-app subscriptions. A backend is also provided via [RevenueCat](https://www.revenuecat.com) ## Features - | | RevenueCat | | --- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | | ✅ | Server-side receipt validation | @@ -10,8 +10,8 @@ Purchases is a cross platform solution for managing in-app subscriptions. A back | 📊 | Analytics - automatic calculation of metrics like conversion, mrr, and churn | | 📝 | [Online documentation](https://docs.revenuecat.com/docs) up to date | | 🔀 | [Integrations](https://www.revenuecat.com/integrations) - over a dozen integrations to easily send purchase data where you need it | -| 💯 | Well maintained - [frequent releases](https://github.com/RevenueCat/cordova-plugin-purchases/releases) | -| 📮 | Great support - [Help Center](https://revenuecat.zendesk.com) | +| 💯 | Well maintained - [frequent releases](https://github.com/RevenueCat/cordova-plugin-purchases/releases) | +| 📮 | Great support - [Help Center](https://revenuecat.zendesk.com) | | 🤩 | Awesome [new features](https://trello.com/b/RZRnWRbI/revenuecat-product-roadmap) | ## Getting Started diff --git a/src/translate/native/@awesome-cordova-plugins-push.readme.md b/src/translate/native/@awesome-cordova-plugins-push.readme.md index a9c3464e985..5ae1db23037 100644 --- a/src/translate/native/@awesome-cordova-plugins-push.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-push.readme.md @@ -1,3 +1,4 @@ + Register and receive push notifications. Requires Cordova plugin: `phonegap-plugin-push`. For more info, please see the [Push plugin docs](https://github.com/phonegap/phonegap-plugin-push). diff --git a/src/translate/native/@awesome-cordova-plugins-pushape-push.readme.md b/src/translate/native/@awesome-cordova-plugins-pushape-push.readme.md index e65c6c7edd7..464bba08731 100644 --- a/src/translate/native/@awesome-cordova-plugins-pushape-push.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-pushape-push.readme.md @@ -1,3 +1,4 @@ + Register and receive push notifications. This plugin extends functionalities of Push native plugin in order to use it with Pushape service. diff --git a/src/translate/native/@awesome-cordova-plugins-qqsdk.readme.md b/src/translate/native/@awesome-cordova-plugins-qqsdk.readme.md index d9b32939ab5..fcc40802c3d 100644 --- a/src/translate/native/@awesome-cordova-plugins-qqsdk.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-qqsdk.readme.md @@ -1,3 +1,4 @@ + This Plugin is a wrapper around the Tencent QQ SDK for Android and iOS. Provides access to QQ ssoLogin, QQ Sharing, QQZone Sharing etc. Requires Cordova plugin: `cordova-plugin-qqsdk`. For more info, please see the [QQSDK plugin docs](https://github.com/iVanPan/Cordova_QQ). diff --git a/src/translate/native/@awesome-cordova-plugins-qr-scanner.readme.md b/src/translate/native/@awesome-cordova-plugins-qr-scanner.readme.md index 55b6fc63435..3dcb9304702 100644 --- a/src/translate/native/@awesome-cordova-plugins-qr-scanner.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-qr-scanner.readme.md @@ -1,3 +1,4 @@ + A fast, energy efficient, highly-configurable QR code scanner for Cordova apps. Requires Cordova plugin: `cordova-plugin-qrscanner`. For more info, please see the [QR Scanner plugin docs](https://github.com/bitpay/cordova-plugin-qrscanner). diff --git a/src/translate/native/@awesome-cordova-plugins-regula-document-reader.readme.md b/src/translate/native/@awesome-cordova-plugins-regula-document-reader.readme.md index 505b461b09c..a90b29a29b0 100644 --- a/src/translate/native/@awesome-cordova-plugins-regula-document-reader.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-regula-document-reader.readme.md @@ -1 +1,2 @@ + Plugin for reading and validation of identification documents. diff --git a/src/translate/native/@awesome-cordova-plugins-restart.readme.md b/src/translate/native/@awesome-cordova-plugins-restart.readme.md index 2d13f688d77..13214fabab4 100644 --- a/src/translate/native/@awesome-cordova-plugins-restart.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-restart.readme.md @@ -1 +1,2 @@ + This plugin to restart android application diff --git a/src/translate/native/@awesome-cordova-plugins-rollbar.readme.md b/src/translate/native/@awesome-cordova-plugins-rollbar.readme.md index 9f1d179bd5c..1b4e50f1b68 100644 --- a/src/translate/native/@awesome-cordova-plugins-rollbar.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-rollbar.readme.md @@ -1 +1,2 @@ + This plugin adds [Rollbar](https://rollbar.com/) App monitoring to your application diff --git a/src/translate/native/@awesome-cordova-plugins-safari-view-controller.readme.md b/src/translate/native/@awesome-cordova-plugins-safari-view-controller.readme.md index 6153b43d685..c635a5fd046 100644 --- a/src/translate/native/@awesome-cordova-plugins-safari-view-controller.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-safari-view-controller.readme.md @@ -1,3 +1,4 @@ + For displaying read-only web content. Requires Cordova plugin: `cordova-plugin-safariviewcontroller`. For more info, please see the [Safari View Controller plugin docs](https://github.com/EddyVerbruggen/cordova-plugin-safariviewcontroller). diff --git a/src/translate/native/@awesome-cordova-plugins-screen-orientation.readme.md b/src/translate/native/@awesome-cordova-plugins-screen-orientation.readme.md index a83e7487c9e..416c63df2e9 100644 --- a/src/translate/native/@awesome-cordova-plugins-screen-orientation.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-screen-orientation.readme.md @@ -1,3 +1,4 @@ + Cordova plugin to set/lock the screen orientation in a common way. Requires Cordova plugin: `cordova-plugin-screen-orientation`. For more info, please see the [Screen Orientation plugin docs](https://github.com/apache/cordova-plugin-screen-orientation). diff --git a/src/translate/native/@awesome-cordova-plugins-screenshot.readme.md b/src/translate/native/@awesome-cordova-plugins-screenshot.readme.md index e9b365c009a..15c0b85bf5f 100644 --- a/src/translate/native/@awesome-cordova-plugins-screenshot.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-screenshot.readme.md @@ -1 +1 @@ -Captures a screen shot +Captures a screen shot \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-sensors.readme.md b/src/translate/native/@awesome-cordova-plugins-sensors.readme.md index 5af0e96163c..a4c9c37f0b3 100644 --- a/src/translate/native/@awesome-cordova-plugins-sensors.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-sensors.readme.md @@ -1 +1,2 @@ + This plugin enables sensors on Android devices diff --git a/src/translate/native/@awesome-cordova-plugins-serial.readme.md b/src/translate/native/@awesome-cordova-plugins-serial.readme.md index a16c1211a8c..125a3910c49 100644 --- a/src/translate/native/@awesome-cordova-plugins-serial.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-serial.readme.md @@ -1 +1,2 @@ + This plugin provides functions for working with Serial connections diff --git a/src/translate/native/@awesome-cordova-plugins-service-discovery.readme.md b/src/translate/native/@awesome-cordova-plugins-service-discovery.readme.md index b13d7210b0e..aca58cc645a 100644 --- a/src/translate/native/@awesome-cordova-plugins-service-discovery.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-service-discovery.readme.md @@ -1 +1,2 @@ + Simple plugin to get any SSDP / UPnP / DLNA service on a local network diff --git a/src/translate/native/@awesome-cordova-plugins-shake.readme.md b/src/translate/native/@awesome-cordova-plugins-shake.readme.md index 917873665cf..5608715c9fa 100644 --- a/src/translate/native/@awesome-cordova-plugins-shake.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-shake.readme.md @@ -1 +1 @@ -Handles shake gesture +Handles shake gesture \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-shop-checkout.readme.md b/src/translate/native/@awesome-cordova-plugins-shop-checkout.readme.md index 630d79ceeb0..8ab0b4dd94f 100644 --- a/src/translate/native/@awesome-cordova-plugins-shop-checkout.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-shop-checkout.readme.md @@ -1,2 +1,3 @@ + This is a plugin that allows your Ionic app to use ShopChecout for Android. Follow the offical documentation to setup this plugin correctly: https://developer.shoptopup.com/docs/shoptopup-for-cordovaphonegap diff --git a/src/translate/native/@awesome-cordova-plugins-shortcuts-android.readme.md b/src/translate/native/@awesome-cordova-plugins-shortcuts-android.readme.md index 40b7e9082ef..d7fe4d72b94 100644 --- a/src/translate/native/@awesome-cordova-plugins-shortcuts-android.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-shortcuts-android.readme.md @@ -1,3 +1,4 @@ + Use this plugin to create shortcuts in Android. Use this plugin to handle Intents on your application. For more information on Android App Shortcuts: https://developer.android.com/guide/topics/ui/shortcuts.html For more information on Android Intents: https://developer.android.com/guide/components/intents-filters.html diff --git a/src/translate/native/@awesome-cordova-plugins-sign-in-with-apple.readme.md b/src/translate/native/@awesome-cordova-plugins-sign-in-with-apple.readme.md index f02092735e3..e8991e9348b 100644 --- a/src/translate/native/@awesome-cordova-plugins-sign-in-with-apple.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-sign-in-with-apple.readme.md @@ -1,6 +1,7 @@ + Sign in with Apple makes it easy for users to sign in to your apps and websites using their Apple ID. Instead of filling out forms, verifying email addresses, and choosing new passwords, they can use Sign in with Apple to set up an account and start using your app right away. All accounts are protected with two-factor authentication for superior security, and Apple will not track users’ activity in your app or website. -_Source:_ https://developer.apple.com/sign-in-with-apple/ +*Source:* https://developer.apple.com/sign-in-with-apple/ diff --git a/src/translate/native/@awesome-cordova-plugins-sim.readme.md b/src/translate/native/@awesome-cordova-plugins-sim.readme.md index 80e74390f46..52c91993c93 100644 --- a/src/translate/native/@awesome-cordova-plugins-sim.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-sim.readme.md @@ -1,3 +1,4 @@ + Gets info from the Sim card like the carrier name, mcc, mnc and country code and other system dependent info. Requires Cordova plugin: `cordova-plugin-sim`. For more info, please see the [Cordova Sim docs](https://github.com/pbakondy/cordova-plugin-sim). diff --git a/src/translate/native/@awesome-cordova-plugins-siri-shortcuts.readme.md b/src/translate/native/@awesome-cordova-plugins-siri-shortcuts.readme.md index 00c77e7cdfc..e6270053a4a 100644 --- a/src/translate/native/@awesome-cordova-plugins-siri-shortcuts.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-siri-shortcuts.readme.md @@ -1,3 +1,4 @@ + This plugin only works when your app is built with XCode 10. Shortcuts will only appear on iOS-versions >= 12.0 This plugin enables the use of Siri shortcuts in Cordova. Siri Shortcuts enable the user to perform certain actions by adding them to Siri. diff --git a/src/translate/native/@awesome-cordova-plugins-smartlook.readme.md b/src/translate/native/@awesome-cordova-plugins-smartlook.readme.md index 696999e2340..83f1f737e59 100644 --- a/src/translate/native/@awesome-cordova-plugins-smartlook.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-smartlook.readme.md @@ -1,2 +1,3 @@ + Official Smartlook SDK plugin. Full documentation can be found here: https://smartlook.github.io/docs/sdk/ionic/ diff --git a/src/translate/native/@awesome-cordova-plugins-sms-retriever.readme.md b/src/translate/native/@awesome-cordova-plugins-sms-retriever.readme.md index 3af874243f1..eb6aaf6b11c 100644 --- a/src/translate/native/@awesome-cordova-plugins-sms-retriever.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-sms-retriever.readme.md @@ -1 +1,2 @@ + This plugin retrives the SMS which arrive without requiring READ permissions. diff --git a/src/translate/native/@awesome-cordova-plugins-sms.readme.md b/src/translate/native/@awesome-cordova-plugins-sms.readme.md index d64c2f4cab6..b0ba3252b25 100644 --- a/src/translate/native/@awesome-cordova-plugins-sms.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-sms.readme.md @@ -1 +1,3 @@ + + Requires Cordova plugin: cordova-sms-plugin. For more info, please see the [SMS plugin docs](https://github.com/cordova-sms/cordova-sms-plugin). diff --git a/src/translate/native/@awesome-cordova-plugins-social-sharing.readme.md b/src/translate/native/@awesome-cordova-plugins-social-sharing.readme.md index 3edd7dba0d1..760be2d9030 100644 --- a/src/translate/native/@awesome-cordova-plugins-social-sharing.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-social-sharing.readme.md @@ -1,3 +1,4 @@ + Share text, files, images, and links via social networks, sms, and email. For Browser usage check out the Web Share API docs: https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin#5-web-share-api diff --git a/src/translate/native/@awesome-cordova-plugins-speech-recognition.readme.md b/src/translate/native/@awesome-cordova-plugins-speech-recognition.readme.md index efc07916d88..ccd38016353 100644 --- a/src/translate/native/@awesome-cordova-plugins-speech-recognition.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-speech-recognition.readme.md @@ -1 +1,2 @@ + This plugin does speech recognition using cloud services diff --git a/src/translate/native/@awesome-cordova-plugins-speechkit.readme.md b/src/translate/native/@awesome-cordova-plugins-speechkit.readme.md index 5521af0b3b3..8623152c556 100644 --- a/src/translate/native/@awesome-cordova-plugins-speechkit.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-speechkit.readme.md @@ -1 +1,2 @@ + Implementation of Nuance SpeechKit SDK on Ionic diff --git a/src/translate/native/@awesome-cordova-plugins-spinner-dialog.readme.md b/src/translate/native/@awesome-cordova-plugins-spinner-dialog.readme.md index 97f3a5146a5..66329069921 100644 --- a/src/translate/native/@awesome-cordova-plugins-spinner-dialog.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-spinner-dialog.readme.md @@ -1,3 +1,4 @@ + Cordova plugin for showing a native spinner based on Paldom/SpinnerDialog. Requires Cordova plugin: `cordova-plugin-native-spinner`. For more info, please see the [Spinner Dialog plugin docs](https://github.com/greybax/cordova-plugin-native-spinner). diff --git a/src/translate/native/@awesome-cordova-plugins-splash-screen.readme.md b/src/translate/native/@awesome-cordova-plugins-splash-screen.readme.md index 1a5acf29e82..31117f45f87 100644 --- a/src/translate/native/@awesome-cordova-plugins-splash-screen.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-splash-screen.readme.md @@ -1 +1 @@ -This plugin displays and hides a splash screen during application launch. The methods below allows showing and hiding the splashscreen after the app has loaded. +This plugin displays and hides a splash screen during application launch. The methods below allows showing and hiding the splashscreen after the app has loaded. \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-spotify-auth.readme.md b/src/translate/native/@awesome-cordova-plugins-spotify-auth.readme.md index cbc01dcad68..bce7a50dba7 100644 --- a/src/translate/native/@awesome-cordova-plugins-spotify-auth.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-spotify-auth.readme.md @@ -1,3 +1,3 @@ -Cordova plugin for authenticating with Spotify +Cordova plugin for authenticating with Spotify > https://github.com/Festify/cordova-spotify-oauth diff --git a/src/translate/native/@awesome-cordova-plugins-sqlite-db-copy.readme.md b/src/translate/native/@awesome-cordova-plugins-sqlite-db-copy.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/native/@awesome-cordova-plugins-sqlite-db-copy.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-sqlite-db-copy.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/native/@awesome-cordova-plugins-sqlite-porter.readme.md b/src/translate/native/@awesome-cordova-plugins-sqlite-porter.readme.md index 1f34ca227ed..92e4d096de7 100644 --- a/src/translate/native/@awesome-cordova-plugins-sqlite-porter.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-sqlite-porter.readme.md @@ -1 +1,2 @@ + This Cordova/Phonegap plugin can be used to import/export to/from a SQLite database using either SQL or JSON. diff --git a/src/translate/native/@awesome-cordova-plugins-sqlite.readme.md b/src/translate/native/@awesome-cordova-plugins-sqlite.readme.md index bfb4c960c5d..0d19359e763 100644 --- a/src/translate/native/@awesome-cordova-plugins-sqlite.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-sqlite.readme.md @@ -1 +1,2 @@ + Access SQLite databases on the device. diff --git a/src/translate/native/@awesome-cordova-plugins-ssh-connect.readme.md b/src/translate/native/@awesome-cordova-plugins-ssh-connect.readme.md index 4c8d739d81f..62c602df45a 100644 --- a/src/translate/native/@awesome-cordova-plugins-ssh-connect.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-ssh-connect.readme.md @@ -1 +1,2 @@ + Cordova plugin to make connections and execute commands through SSH diff --git a/src/translate/native/@awesome-cordova-plugins-star-prnt.readme.md b/src/translate/native/@awesome-cordova-plugins-star-prnt.readme.md index 167ed6673b8..8866094f12f 100644 --- a/src/translate/native/@awesome-cordova-plugins-star-prnt.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-star-prnt.readme.md @@ -1 +1,2 @@ -- Ionic Native wrappers for the starprnt cordova plugin for Star Micronics Bluetooth/LAN printers + +* Ionic Native wrappers for the starprnt cordova plugin for Star Micronics Bluetooth/LAN printers diff --git a/src/translate/native/@awesome-cordova-plugins-status-bar.readme.md b/src/translate/native/@awesome-cordova-plugins-status-bar.readme.md index 0c999e9b7e3..d2df403f415 100644 --- a/src/translate/native/@awesome-cordova-plugins-status-bar.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-status-bar.readme.md @@ -1,3 +1,4 @@ + Manage the appearance of the native status bar. Requires Cordova plugin: `cordova-plugin-statusbar`. For more info, please see the [StatusBar plugin docs](https://github.com/apache/cordova-plugin-statusbar). diff --git a/src/translate/native/@awesome-cordova-plugins-stepcounter.readme.md b/src/translate/native/@awesome-cordova-plugins-stepcounter.readme.md index b6a57d237ac..918f0320b25 100644 --- a/src/translate/native/@awesome-cordova-plugins-stepcounter.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-stepcounter.readme.md @@ -1,6 +1,6 @@ + Cordova plugin for using device's stepcounter on Android (API > 19) Use to - - start and stop stepcounter service - read device's stepcounter data diff --git a/src/translate/native/@awesome-cordova-plugins-streaming-media.readme.md b/src/translate/native/@awesome-cordova-plugins-streaming-media.readme.md index 5a521be5eb5..b093d14b4af 100644 --- a/src/translate/native/@awesome-cordova-plugins-streaming-media.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-streaming-media.readme.md @@ -1 +1,2 @@ + This plugin allows you to stream audio and video in a fullscreen, native player on iOS and Android. diff --git a/src/translate/native/@awesome-cordova-plugins-stripe.readme.md b/src/translate/native/@awesome-cordova-plugins-stripe.readme.md index 2e8f0e8c676..32f49f8fb59 100644 --- a/src/translate/native/@awesome-cordova-plugins-stripe.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-stripe.readme.md @@ -1 +1,2 @@ + A plugin that allows you to use Stripe's Native SDKs for Android and iOS. diff --git a/src/translate/native/@awesome-cordova-plugins-sum-up.readme.md b/src/translate/native/@awesome-cordova-plugins-sum-up.readme.md index 22c07237113..373fa2e0f42 100644 --- a/src/translate/native/@awesome-cordova-plugins-sum-up.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-sum-up.readme.md @@ -1 +1,2 @@ + Plugin to communicate with a SumUp payment terminal diff --git a/src/translate/native/@awesome-cordova-plugins-system-alert-window-permission.readme.md b/src/translate/native/@awesome-cordova-plugins-system-alert-window-permission.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/native/@awesome-cordova-plugins-system-alert-window-permission.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-system-alert-window-permission.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/native/@awesome-cordova-plugins-taptic-engine.readme.md b/src/translate/native/@awesome-cordova-plugins-taptic-engine.readme.md index 4c4cc795164..6a1864ed364 100644 --- a/src/translate/native/@awesome-cordova-plugins-taptic-engine.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-taptic-engine.readme.md @@ -1 +1,2 @@ + An Ionic plugin to use Taptic Engine API on iPhone 7, 7 Plus or newer. diff --git a/src/translate/native/@awesome-cordova-plugins-tealium-adidentifier.readme.md b/src/translate/native/@awesome-cordova-plugins-tealium-adidentifier.readme.md index 8f1ca44e3ad..577ae87896a 100644 --- a/src/translate/native/@awesome-cordova-plugins-tealium-adidentifier.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-tealium-adidentifier.readme.md @@ -1,2 +1,3 @@ + This module depends on the [Tealium Cordova Plugin](https://github.com/tealium/cordova-plugin). Without it, this module will not do anything. Makes the IDFA and Google Ad Identifier available in the Tealium data layer. diff --git a/src/translate/native/@awesome-cordova-plugins-tealium-installreferrer.readme.md b/src/translate/native/@awesome-cordova-plugins-tealium-installreferrer.readme.md index 2efbb060915..80ce9a5af77 100644 --- a/src/translate/native/@awesome-cordova-plugins-tealium-installreferrer.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-tealium-installreferrer.readme.md @@ -1,2 +1,3 @@ + This module depends on the [Tealium Cordova Plugin](https://github.com/tealium/cordova-plugin). Without it, this module will not do anything. Implements a Broadcast Receiver for the INSTALL_REFERRER intent. diff --git a/src/translate/native/@awesome-cordova-plugins-tealium.readme.md b/src/translate/native/@awesome-cordova-plugins-tealium.readme.md index b53253d0eef..41e946cfc8e 100644 --- a/src/translate/native/@awesome-cordova-plugins-tealium.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-tealium.readme.md @@ -1,3 +1,4 @@ + This plugin provides a TypeScript wrapper around the [Tealium](https://www.tealium.com) Cordova plugin for Ionic Native. -For full documentation, see [https://community.tealiumiq.com/t5/Mobile-Libraries/Tealium-for-Cordova/ta-p/17618](https://community.tealiumiq.com/t5/Mobile-Libraries/Tealium-for-Cordova/ta-p/17618) +For full documentation, see [https://community.tealiumiq.com/t5/Mobile-Libraries/Tealium-for-Cordova/ta-p/17618](https://community.tealiumiq.com/t5/Mobile-Libraries/Tealium-for-Cordova/ta-p/17618) \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-text-to-speech-advanced.readme.md b/src/translate/native/@awesome-cordova-plugins-text-to-speech-advanced.readme.md index f98c3983123..56e223f24c3 100644 --- a/src/translate/native/@awesome-cordova-plugins-text-to-speech-advanced.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-text-to-speech-advanced.readme.md @@ -1 +1,2 @@ + Text to Speech plugin diff --git a/src/translate/native/@awesome-cordova-plugins-text-to-speech.readme.md b/src/translate/native/@awesome-cordova-plugins-text-to-speech.readme.md index f98c3983123..56e223f24c3 100644 --- a/src/translate/native/@awesome-cordova-plugins-text-to-speech.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-text-to-speech.readme.md @@ -1 +1,2 @@ + Text to Speech plugin diff --git a/src/translate/native/@awesome-cordova-plugins-theme-detection.readme.md b/src/translate/native/@awesome-cordova-plugins-theme-detection.readme.md index cd2ff3ab709..032d6ec13cc 100644 --- a/src/translate/native/@awesome-cordova-plugins-theme-detection.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-theme-detection.readme.md @@ -1 +1,2 @@ + Cordova plugin to detect whether dark mode is enabled or not diff --git a/src/translate/native/@awesome-cordova-plugins-themeable-browser.readme.md b/src/translate/native/@awesome-cordova-plugins-themeable-browser.readme.md index 40815363667..81e3408cc65 100644 --- a/src/translate/native/@awesome-cordova-plugins-themeable-browser.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-themeable-browser.readme.md @@ -1 +1,2 @@ + In-app browser that allows styling. diff --git a/src/translate/native/@awesome-cordova-plugins-three-dee-touch.readme.md b/src/translate/native/@awesome-cordova-plugins-three-dee-touch.readme.md index aea7b49108e..a78596064d6 100644 --- a/src/translate/native/@awesome-cordova-plugins-three-dee-touch.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-three-dee-touch.readme.md @@ -1,3 +1,4 @@ + The 3D Touch plugin adds 3D Touch capabilities to your Cordova app. Requires Cordova plugin: `cordova-plugin-3dtouch`. For more info, please see the [3D Touch plugin docs](https://github.com/EddyVerbruggen/cordova-plugin-3dtouch). diff --git a/src/translate/native/@awesome-cordova-plugins-toast.readme.md b/src/translate/native/@awesome-cordova-plugins-toast.readme.md index 9034d3ab1f0..c7b5d6c7fba 100644 --- a/src/translate/native/@awesome-cordova-plugins-toast.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-toast.readme.md @@ -1,3 +1,4 @@ + This plugin allows you to show a native Toast (a little text popup) on iOS, Android and WP8. It's great for showing a non intrusive native notification which is guaranteed always in the viewport of the browser. Requires Cordova plugin: `cordova-plugin-x-toast`. For more info, please see the [Toast plugin docs](https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin). diff --git a/src/translate/native/@awesome-cordova-plugins-touch-id.readme.md b/src/translate/native/@awesome-cordova-plugins-touch-id.readme.md index 0bb27885878..02615a1ec9f 100644 --- a/src/translate/native/@awesome-cordova-plugins-touch-id.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-touch-id.readme.md @@ -1,3 +1,4 @@ + Scan the fingerprint of a user with the TouchID sensor. Requires Cordova plugin: `cordova-plugin-touch-id`. For more info, please see the [TouchID plugin docs](https://github.com/EddyVerbruggen/cordova-plugin-touch-id). diff --git a/src/translate/native/@awesome-cordova-plugins-twitter-connect.readme.md b/src/translate/native/@awesome-cordova-plugins-twitter-connect.readme.md index 0fd10d23d96..16ead04e0ed 100644 --- a/src/translate/native/@awesome-cordova-plugins-twitter-connect.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-twitter-connect.readme.md @@ -1,6 +1,6 @@ + Plugin to use Twitter Single Sign On Uses Twitter's Fabric SDK - ```typescript import { TwitterConnect } from '@awesome-cordova-plugins/twitter-connect/ngx'; @@ -23,4 +23,4 @@ function onSuccess(response) { this.twitter.login().then(onSuccess, onError); this.twitter.logout().then(onLogoutSuccess, onLogoutError); -``` +``` \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-uid.readme.md b/src/translate/native/@awesome-cordova-plugins-uid.readme.md index f1dd7f71fd1..8876a612197 100644 --- a/src/translate/native/@awesome-cordova-plugins-uid.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-uid.readme.md @@ -1 +1,2 @@ + Get unique identifiers: UUID, IMEI, IMSI, ICCID and MAC. diff --git a/src/translate/native/@awesome-cordova-plugins-unique-device-id.readme.md b/src/translate/native/@awesome-cordova-plugins-unique-device-id.readme.md index 032854e3607..1db59244ff9 100644 --- a/src/translate/native/@awesome-cordova-plugins-unique-device-id.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-unique-device-id.readme.md @@ -1 +1,2 @@ + This plugin produces a unique, cross-install, app-specific device id. diff --git a/src/translate/native/@awesome-cordova-plugins-unvired-cordova-sdk.readme.md b/src/translate/native/@awesome-cordova-plugins-unvired-cordova-sdk.readme.md index 5ec8996425d..0b49755a0de 100644 --- a/src/translate/native/@awesome-cordova-plugins-unvired-cordova-sdk.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-unvired-cordova-sdk.readme.md @@ -1,19 +1,19 @@ -## This plugin lets you build apps which connect to Unvired Mobile Platform (UMP). - -## iOS Requirements +This plugin lets you build apps which connect to Unvired Mobile Platform (UMP). +- +iOS Requirements +- Update your Cocoapods repo before you install the plugin. - ``` $ pod repo update ``` - -- Browser Requirements -- After you install the plugin, for Ionic/Angular projects, please add a reference to the following JS files within section of index.html. - +- +Browser Requirements +- +After you install the plugin, for Ionic/Angular projects, please add a reference to the following JS files within section of index.html. ``` -``` +``` \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-uptime.readme.md b/src/translate/native/@awesome-cordova-plugins-uptime.readme.md index 1bf710ddbcc..504b3c9eb24 100644 --- a/src/translate/native/@awesome-cordova-plugins-uptime.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-uptime.readme.md @@ -1 +1,2 @@ + This plugin provides the time spent in milliseconds since boot (uptime). diff --git a/src/translate/native/@awesome-cordova-plugins-urbanairship.readme.md b/src/translate/native/@awesome-cordova-plugins-urbanairship.readme.md index 9870d666496..7066b964568 100644 --- a/src/translate/native/@awesome-cordova-plugins-urbanairship.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-urbanairship.readme.md @@ -1 +1,2 @@ + This plugin does something diff --git a/src/translate/native/@awesome-cordova-plugins-usabilla-cordova-sdk.readme.md b/src/translate/native/@awesome-cordova-plugins-usabilla-cordova-sdk.readme.md index 857e2854746..5cf251b3c8e 100644 --- a/src/translate/native/@awesome-cordova-plugins-usabilla-cordova-sdk.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-usabilla-cordova-sdk.readme.md @@ -1,3 +1,4 @@ + Usabilla SDK is designed and developed to collect feedback from your users with great ease and flexibility through your mobile application. This document describes library integration steps for your Cordova project. diff --git a/src/translate/native/@awesome-cordova-plugins-user-agent.readme.md b/src/translate/native/@awesome-cordova-plugins-user-agent.readme.md index c5e46b65ea3..9c299395cf9 100644 --- a/src/translate/native/@awesome-cordova-plugins-user-agent.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-user-agent.readme.md @@ -1,3 +1,4 @@ -The UserAgent plugin provides functions to set the HTTP user-agent header. For more info about User-Agents, please [see the HTTP User-Agent docs](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent). + +The UserAgent plugin provides functions to set the HTTP user-agent header. For more info about User-Agents, please [see the HTTP User-Agent docs](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent). Requires Cordova plugin: `cordova-useragent`. For more info, please see the [User-Agent plugin docs](https://github.com/LouisT/cordova-useragent). diff --git a/src/translate/native/@awesome-cordova-plugins-vibes.readme.md b/src/translate/native/@awesome-cordova-plugins-vibes.readme.md index f52e258035a..416be944a54 100644 --- a/src/translate/native/@awesome-cordova-plugins-vibes.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-vibes.readme.md @@ -1 +1,2 @@ + This plugin enables integration with the Vibes Push SDK to your Cordova project with Android and iOS supported. diff --git a/src/translate/native/@awesome-cordova-plugins-vibration.readme.md b/src/translate/native/@awesome-cordova-plugins-vibration.readme.md index f82e5deb0ab..dba5defbdd0 100644 --- a/src/translate/native/@awesome-cordova-plugins-vibration.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-vibration.readme.md @@ -1 +1 @@ -Vibrates the device +Vibrates the device \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-video-capture-plus.readme.md b/src/translate/native/@awesome-cordova-plugins-video-capture-plus.readme.md index f3e970c9efb..a22e03f3945 100644 --- a/src/translate/native/@awesome-cordova-plugins-video-capture-plus.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-video-capture-plus.readme.md @@ -1,5 +1,5 @@ -This plugin offers some useful extras on top of the default Media Capture Plugin capabilities: +This plugin offers some useful extras on top of the default Media Capture Plugin capabilities: - HD recording. - Starting with the front camera. - A custom overlay (currently iOS only). diff --git a/src/translate/native/@awesome-cordova-plugins-video-player.readme.md b/src/translate/native/@awesome-cordova-plugins-video-player.readme.md index e7f3e1b8a0b..1ee9f14d4a0 100644 --- a/src/translate/native/@awesome-cordova-plugins-video-player.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-video-player.readme.md @@ -1,3 +1,4 @@ + A Cordova plugin that simply allows you to immediately play a video in fullscreen mode. Requires Cordova plugin: `com.moust.cordova.videoplayer`. For more info, please see the [VideoPlayer plugin docs](https://github.com/moust/cordova-plugin-videoplayer). diff --git a/src/translate/native/@awesome-cordova-plugins-web-intent.readme.md b/src/translate/native/@awesome-cordova-plugins-web-intent.readme.md index e6bce9df776..62d0e5158b6 100644 --- a/src/translate/native/@awesome-cordova-plugins-web-intent.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-web-intent.readme.md @@ -1 +1,2 @@ -This Plugin provides a general purpose shim layer for the Android intent mechanism, exposing various ways to handle sending and receiving intents. + +This Plugin provides a general purpose shim layer for the Android intent mechanism, exposing various ways to handle sending and receiving intents. \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-web-server.readme.md b/src/translate/native/@awesome-cordova-plugins-web-server.readme.md index 74a4213c286..562d250d54f 100644 --- a/src/translate/native/@awesome-cordova-plugins-web-server.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-web-server.readme.md @@ -1 +1,2 @@ + This plugin allows you to start a local dynamic content web server for android and iOS devices. diff --git a/src/translate/native/@awesome-cordova-plugins-web-socket-server.readme.md b/src/translate/native/@awesome-cordova-plugins-web-socket-server.readme.md index 74f478b025e..732d61641b6 100644 --- a/src/translate/native/@awesome-cordova-plugins-web-socket-server.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-web-socket-server.readme.md @@ -1 +1,2 @@ + This plugin allows you to run a single, lightweight, barebone WebSocket Server. diff --git a/src/translate/native/@awesome-cordova-plugins-webengage.readme.md b/src/translate/native/@awesome-cordova-plugins-webengage.readme.md index 981c27c1eb3..a2eb7545759 100644 --- a/src/translate/native/@awesome-cordova-plugins-webengage.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-webengage.readme.md @@ -1 +1,2 @@ + Ionic-Native wrapper that wraps Webengage Cordova plugin for Android and iOS diff --git a/src/translate/native/@awesome-cordova-plugins-wechat.readme.md b/src/translate/native/@awesome-cordova-plugins-wechat.readme.md index b2e43d635c3..639229cba09 100644 --- a/src/translate/native/@awesome-cordova-plugins-wechat.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-wechat.readme.md @@ -1 +1,2 @@ + A cordova plugin, a JS version of Wechat SDK diff --git a/src/translate/native/@awesome-cordova-plugins-wifi-wizard-2.readme.md b/src/translate/native/@awesome-cordova-plugins-wifi-wizard-2.readme.md index ca5fcb58975..e519b6b087f 100644 --- a/src/translate/native/@awesome-cordova-plugins-wifi-wizard-2.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-wifi-wizard-2.readme.md @@ -1,3 +1,4 @@ + WifiWizard2 enables Wifi management for both Android and iOS applications within Cordova/Phonegap projects. This project is a fork of the WifiWizard plugin with fixes and updates, as well as patches taken from the Cordova Network Manager plugin. diff --git a/src/translate/native/@awesome-cordova-plugins-wonderpush.readme.md b/src/translate/native/@awesome-cordova-plugins-wonderpush.readme.md index 3fef1483ebd..c85ed196728 100644 --- a/src/translate/native/@awesome-cordova-plugins-wonderpush.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-wonderpush.readme.md @@ -1,3 +1,5 @@ + + Send unlimited push notifications to iOS and Android devices. Get started in minutes: [Ionic Quickstart Guide](https://docs.wonderpush.com/docs/ionic-quickstart). diff --git a/src/translate/native/@awesome-cordova-plugins-youtube-video-player.readme.md b/src/translate/native/@awesome-cordova-plugins-youtube-video-player.readme.md index 17fd2049102..65e5f92754a 100644 --- a/src/translate/native/@awesome-cordova-plugins-youtube-video-player.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-youtube-video-player.readme.md @@ -1 +1,2 @@ + Plays YouTube videos in Native YouTube App diff --git a/src/translate/native/@awesome-cordova-plugins-zbar.readme.md b/src/translate/native/@awesome-cordova-plugins-zbar.readme.md index e0a91fda385..33a16ff46c6 100644 --- a/src/translate/native/@awesome-cordova-plugins-zbar.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-zbar.readme.md @@ -1,3 +1,4 @@ + The ZBar Scanner Plugin allows you to scan 2d barcodes. Requires Cordova plugin: `cordova-plugin-cszbar`. For more info, please see the [zBar plugin docs](https://github.com/tjwoon/csZBar). diff --git a/src/translate/native/@awesome-cordova-plugins-zeroconf.readme.md b/src/translate/native/@awesome-cordova-plugins-zeroconf.readme.md index b6d33465570..48620c015e9 100644 --- a/src/translate/native/@awesome-cordova-plugins-zeroconf.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-zeroconf.readme.md @@ -1 +1,2 @@ -This plugin allows you to browse and publish Zeroconf/Bonjour/mDNS services. + +This plugin allows you to browse and publish Zeroconf/Bonjour/mDNS services. \ No newline at end of file diff --git a/src/translate/native/@awesome-cordova-plugins-zip.readme.md b/src/translate/native/@awesome-cordova-plugins-zip.readme.md index 6433e0021a7..8550752032e 100644 --- a/src/translate/native/@awesome-cordova-plugins-zip.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-zip.readme.md @@ -1 +1,2 @@ + A Cordova plugin to unzip files in Android and iOS. diff --git a/src/translate/native/@awesome-cordova-plugins-zoom.readme.md b/src/translate/native/@awesome-cordova-plugins-zoom.readme.md index 94a52e6dc07..e358d13434b 100644 --- a/src/translate/native/@awesome-cordova-plugins-zoom.readme.md +++ b/src/translate/native/@awesome-cordova-plugins-zoom.readme.md @@ -1 +1,2 @@ + A Cordova plugin to use Zoom Video Conferencing services on Cordova applications. diff --git a/static/code/stackblitz/v6/react/package-lock.json b/static/code/stackblitz/v6/react/package-lock.json index 6d8ad9625c3..43a5e826513 100644 --- a/static/code/stackblitz/v6/react/package-lock.json +++ b/static/code/stackblitz/v6/react/package-lock.json @@ -10,7 +10,7 @@ "dependencies": { "@ionic/react": "^6.0.0", "@ionic/react-router": "^6.0.0", - "@types/node": "^18.0.0", + "@types/node": "^20.0.0", "@types/react": "^18.0.9", "@types/react-dom": "^18.0.4", "@types/react-router": "^5.1.11", @@ -3667,9 +3667,12 @@ "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" }, "node_modules/@types/node": { - "version": "18.18.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.4.tgz", - "integrity": "sha512-t3rNFBgJRugIhackit2mVcLfF6IRc0JE4oeizPQL8Zrm8n2WY/0wOdpOPhdtG0V9Q2TlW/axbF1MJ6z+Yj/kKQ==" + "version": "20.8.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.8.tgz", + "integrity": "sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==", + "dependencies": { + "undici-types": "~5.25.1" + } }, "node_modules/@types/parse-json": { "version": "4.0.0", @@ -3702,9 +3705,9 @@ "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" }, "node_modules/@types/react": { - "version": "18.2.25", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.25.tgz", - "integrity": "sha512-24xqse6+VByVLIr+xWaQ9muX1B4bXJKXBbjszbld/UEDslGLY53+ZucF44HCmLbMPejTzGG9XgR+3m2/Wqu1kw==", + "version": "18.2.31", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.31.tgz", + "integrity": "sha512-c2UnPv548q+5DFh03y8lEDeMfDwBn9G3dRwfkrxQMo/dOtRHUUO57k6pHvBIfH/VF4Nh+98mZ5aaSe+2echD5g==", "dependencies": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -3712,9 +3715,9 @@ } }, "node_modules/@types/react-dom": { - "version": "18.2.10", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.10.tgz", - "integrity": "sha512-5VEC5RgXIk1HHdyN1pHlg0cOqnxHzvPGpMMyGAP5qSaDRmyZNDaQ0kkVAkK6NYlDhP6YBID3llaXlmAS/mdgCA==", + "version": "18.2.14", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.14.tgz", + "integrity": "sha512-V835xgdSVmyQmI1KLV2BEIUgqEuinxp9O4G6g3FqO/SqLac049E53aysv0oEFD2kHfejeKU+ZqL2bcFWj9gLAQ==", "dependencies": { "@types/react": "*" } @@ -15382,6 +15385,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/undici-types": { + "version": "5.25.3", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.25.3.tgz", + "integrity": "sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==" + }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", @@ -18890,9 +18898,12 @@ "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" }, "@types/node": { - "version": "18.18.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.4.tgz", - "integrity": "sha512-t3rNFBgJRugIhackit2mVcLfF6IRc0JE4oeizPQL8Zrm8n2WY/0wOdpOPhdtG0V9Q2TlW/axbF1MJ6z+Yj/kKQ==" + "version": "20.8.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.8.tgz", + "integrity": "sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==", + "requires": { + "undici-types": "~5.25.1" + } }, "@types/parse-json": { "version": "4.0.0", @@ -18925,9 +18936,9 @@ "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" }, "@types/react": { - "version": "18.2.25", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.25.tgz", - "integrity": "sha512-24xqse6+VByVLIr+xWaQ9muX1B4bXJKXBbjszbld/UEDslGLY53+ZucF44HCmLbMPejTzGG9XgR+3m2/Wqu1kw==", + "version": "18.2.31", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.31.tgz", + "integrity": "sha512-c2UnPv548q+5DFh03y8lEDeMfDwBn9G3dRwfkrxQMo/dOtRHUUO57k6pHvBIfH/VF4Nh+98mZ5aaSe+2echD5g==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -18935,9 +18946,9 @@ } }, "@types/react-dom": { - "version": "18.2.10", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.10.tgz", - "integrity": "sha512-5VEC5RgXIk1HHdyN1pHlg0cOqnxHzvPGpMMyGAP5qSaDRmyZNDaQ0kkVAkK6NYlDhP6YBID3llaXlmAS/mdgCA==", + "version": "18.2.14", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.14.tgz", + "integrity": "sha512-V835xgdSVmyQmI1KLV2BEIUgqEuinxp9O4G6g3FqO/SqLac049E53aysv0oEFD2kHfejeKU+ZqL2bcFWj9gLAQ==", "requires": { "@types/react": "*" } @@ -27275,6 +27286,11 @@ "which-boxed-primitive": "^1.0.2" } }, + "undici-types": { + "version": "5.25.3", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.25.3.tgz", + "integrity": "sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==" + }, "unicode-canonical-property-names-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", diff --git a/static/code/stackblitz/v6/react/package.json b/static/code/stackblitz/v6/react/package.json index 67ba455d8b4..e7254d8a04c 100644 --- a/static/code/stackblitz/v6/react/package.json +++ b/static/code/stackblitz/v6/react/package.json @@ -5,7 +5,7 @@ "dependencies": { "@ionic/react": "^6.0.0", "@ionic/react-router": "^6.0.0", - "@types/node": "^18.0.0", + "@types/node": "^20.0.0", "@types/react": "^18.0.9", "@types/react-dom": "^18.0.4", "@types/react-router": "^5.1.11", diff --git a/static/code/stackblitz/v6/vue/package-lock.json b/static/code/stackblitz/v6/vue/package-lock.json index e370af6da11..d8fac481e24 100644 --- a/static/code/stackblitz/v6/vue/package-lock.json +++ b/static/code/stackblitz/v6/vue/package-lock.json @@ -21,9 +21,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.22.16", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz", - "integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", + "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", "bin": { "parser": "bin/babel-parser.js" }, @@ -441,76 +441,76 @@ } }, "node_modules/@volar/language-core": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.10.3.tgz", - "integrity": "sha512-7Qgwu9bWUHN+cLrOkCbIVBkL+RVPREhvY07wY89dGxi4mY9mQCsUVRRp64F61lX7Nc27meMnvy0sWlzY0x6oQQ==", + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.10.4.tgz", + "integrity": "sha512-Na69qA6uwVIdA0rHuOc2W3pHtVQQO8hCNim7FOaKNpRJh0oAFnu5r9i7Oopo5C4cnELZkPNjTrbmpcCTiW+CMQ==", "dev": true, "dependencies": { - "@volar/source-map": "1.10.3" + "@volar/source-map": "1.10.4" } }, "node_modules/@volar/source-map": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.10.3.tgz", - "integrity": "sha512-QE9nwK3xsdBQGongHnC9SCR0itx7xUKQFsUDn5HbZY3pHpyXxdY1hSBG0eh9mE+aTKoM4KlqMvrb+19Tv9vS1Q==", + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.10.4.tgz", + "integrity": "sha512-RxZdUEL+pV8p+SMqnhVjzy5zpb1QRZTlcwSk4bdcBO7yOu4rtEWqDGahVCEj4CcXour+0yJUMrMczfSCpP9Uxg==", "dev": true, "dependencies": { "muggle-string": "^0.3.1" } }, "node_modules/@volar/typescript": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.10.3.tgz", - "integrity": "sha512-n0ar6xGYpRoSvgGMetm/JXP0QAXx+NOUvxCaWCfCjiFivQRSLJeydYDijhoGBUl5KSKosqq9In5L3e/m2TqTcQ==", + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.10.4.tgz", + "integrity": "sha512-BCCUEBASBEMCrz7qmNSi2hBEWYsXD0doaktRKpmmhvb6XntM2sAWYu6gbyK/MluLDgluGLFiFRpWgobgzUqolg==", "dev": true, "dependencies": { - "@volar/language-core": "1.10.3" + "@volar/language-core": "1.10.4" } }, "node_modules/@vue/compiler-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", - "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.5.tgz", + "integrity": "sha512-S8Ma+eICI40Y4UotR+iKR729Bma+wERn/xLc+Jz203s5WIW1Sx3qoiONqXGg3Q4vBMa+QHDncULya19ZSJuhog==", "dependencies": { - "@babel/parser": "^7.21.3", - "@vue/shared": "3.3.4", + "@babel/parser": "^7.23.0", + "@vue/shared": "3.3.5", "estree-walker": "^2.0.2", "source-map-js": "^1.0.2" } }, "node_modules/@vue/compiler-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", - "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.5.tgz", + "integrity": "sha512-dxt6QntN9T/NtnV6Pz+/nmcoo3ULnsYCnRpvEyY73wbk1tzzx7dnwngUN1cXkyGNu9c3UE7llhq/5T54lKwyhQ==", "dependencies": { - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-core": "3.3.5", + "@vue/shared": "3.3.5" } }, "node_modules/@vue/compiler-sfc": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", - "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.5.tgz", + "integrity": "sha512-M6ys4iReSbrF4NTcMCnJiBioCpzXjfkfXwkdziknRyps+pG0DkwpDfQT7zQ0q91/rCR/Ejz64b5H6C4HBhX41w==", "dependencies": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-ssr": "3.3.4", - "@vue/reactivity-transform": "3.3.4", - "@vue/shared": "3.3.4", + "@babel/parser": "^7.23.0", + "@vue/compiler-core": "3.3.5", + "@vue/compiler-dom": "3.3.5", + "@vue/compiler-ssr": "3.3.5", + "@vue/reactivity-transform": "3.3.5", + "@vue/shared": "3.3.5", "estree-walker": "^2.0.2", - "magic-string": "^0.30.0", - "postcss": "^8.1.10", + "magic-string": "^0.30.5", + "postcss": "^8.4.31", "source-map-js": "^1.0.2" } }, "node_modules/@vue/compiler-ssr": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", - "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.5.tgz", + "integrity": "sha512-v7p2XuEpOcgjd6c49NqOnq3UTJOv5Uo9tirOyGnEadwxTov2O1J3/TUt4SgAAnwA+9gcUyH5c3lIOFsBe+UIyw==", "dependencies": { - "@vue/compiler-dom": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-dom": "3.3.5", + "@vue/shared": "3.3.5" } }, "node_modules/@vue/devtools-api": { @@ -519,16 +519,16 @@ "integrity": "sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==" }, "node_modules/@vue/language-core": { - "version": "1.8.18", - "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-1.8.18.tgz", - "integrity": "sha512-byTi+mwSL7XnVRtfWE3MJy3HQryoVSQ3lymauXviegn3G1wwwlSOUljzQe3w5PyesOnBEIxYoavfKzMJnExrBA==", + "version": "1.8.20", + "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-1.8.20.tgz", + "integrity": "sha512-vNJaqjCTSrWEr+erSq6Rq0CqDC8MOAwyxirxwK8esOxd+1LmAUJUTG2p7I84Mj1Izy5uHiHQAkRTVR2QxMBY+A==", "dev": true, "dependencies": { - "@volar/language-core": "~1.10.3", - "@volar/source-map": "~1.10.3", + "@volar/language-core": "~1.10.4", + "@volar/source-map": "~1.10.4", "@vue/compiler-dom": "^3.3.0", - "@vue/reactivity": "^3.3.0", "@vue/shared": "^3.3.0", + "computeds": "^0.0.1", "minimatch": "^9.0.3", "muggle-string": "^0.3.1", "vue-template-compiler": "^2.7.14" @@ -543,69 +543,69 @@ } }, "node_modules/@vue/reactivity": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz", - "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.5.tgz", + "integrity": "sha512-P7OBfPjsbV5lDCwZQDtWFqPh3uAP3Q6bRqYVgsYr6ki7jiaiHGSLmeaevUi+Nkev8nhublUpApnWevNiACN3sw==", "dependencies": { - "@vue/shared": "3.3.4" + "@vue/shared": "3.3.5" } }, "node_modules/@vue/reactivity-transform": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", - "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.5.tgz", + "integrity": "sha512-OhpBD1H32pIapRzqy31hWwTFLf9STP+0uk5bVOQWXACTa2Rt/RPhvX4zixbPgMGo6iP+S+tFpZzUdcG8AASn8A==", "dependencies": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4", + "@babel/parser": "^7.23.0", + "@vue/compiler-core": "3.3.5", + "@vue/shared": "3.3.5", "estree-walker": "^2.0.2", - "magic-string": "^0.30.0" + "magic-string": "^0.30.5" } }, "node_modules/@vue/runtime-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", - "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.5.tgz", + "integrity": "sha512-kxAW3fTzwzZQqiHV1SndTtLMlNfJ/bsvcYku6NDuPzTeG6sMOAIXvuz6N5NUox+P7sNCInESbSOrPMMvtWx3vA==", "dependencies": { - "@vue/reactivity": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/reactivity": "3.3.5", + "@vue/shared": "3.3.5" } }, "node_modules/@vue/runtime-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", - "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.5.tgz", + "integrity": "sha512-seYSeHmBNlTrR0eFyQFocEBtzljNlKzC2JfdebfBqoEmikyNYzLWTouv71DignLFXEXZKWNTqCIs4d7dk5Q3Ng==", "dependencies": { - "@vue/runtime-core": "3.3.4", - "@vue/shared": "3.3.4", - "csstype": "^3.1.1" + "@vue/runtime-core": "3.3.5", + "@vue/shared": "3.3.5", + "csstype": "^3.1.2" } }, "node_modules/@vue/server-renderer": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz", - "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.5.tgz", + "integrity": "sha512-7VIZkohYn8GAnNT9chrm0vDpHJ6mWPL+TmUBKtDWcWxYcq33YJP/VHCPQN5TazkxXCtv3c1KfXAMZowX4giLoQ==", "dependencies": { - "@vue/compiler-ssr": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-ssr": "3.3.5", + "@vue/shared": "3.3.5" }, "peerDependencies": { - "vue": "3.3.4" + "vue": "3.3.5" } }, "node_modules/@vue/shared": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", - "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==" + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.5.tgz", + "integrity": "sha512-oNJN1rCtkqm1cIxU1BuZVEVRWIp4DhaxXucEzzZ/iDKHP71ZxhkBPNK+URySiECH6aiOZzC60PS2bd6JFznvNA==" }, "node_modules/@vue/typescript": { - "version": "1.8.18", - "resolved": "https://registry.npmjs.org/@vue/typescript/-/typescript-1.8.18.tgz", - "integrity": "sha512-3M+lu+DUwJW0fNwd/rLE0FenmELxcC6zxgm/YZ25jSTi+uNGj9L5XvXvf20guC69gQvZ+cg49tTxbepfFVuNNQ==", + "version": "1.8.20", + "resolved": "https://registry.npmjs.org/@vue/typescript/-/typescript-1.8.20.tgz", + "integrity": "sha512-F0XX1wK71Fo9ewtzLSCSo5dfOuwKrSi/dR2AlI00iTJ4Bfk0wq1BNTRgnlvfx4kz/vQovaGXqwpIkif14W9KrA==", "dev": true, "dependencies": { - "@volar/typescript": "~1.10.3", - "@vue/language-core": "1.8.18" + "@volar/typescript": "~1.10.4", + "@vue/language-core": "1.8.20" } }, "node_modules/balanced-match": { @@ -623,6 +623,12 @@ "balanced-match": "^1.0.0" } }, + "node_modules/computeds": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/computeds/-/computeds-0.0.1.tgz", + "integrity": "sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==", + "dev": true + }, "node_modules/csstype": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", @@ -720,9 +726,9 @@ } }, "node_modules/magic-string": { - "version": "0.30.3", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.3.tgz", - "integrity": "sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==", + "version": "0.30.5", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz", + "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.15" }, @@ -774,9 +780,9 @@ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, "node_modules/postcss": { - "version": "8.4.30", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.30.tgz", - "integrity": "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==", + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "funding": [ { "type": "opencollective", @@ -848,7 +854,7 @@ "version": "4.9.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true, + "devOptional": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -858,9 +864,9 @@ } }, "node_modules/vite": { - "version": "4.4.11", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.11.tgz", - "integrity": "sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.0.tgz", + "integrity": "sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==", "dev": true, "dependencies": { "esbuild": "^0.18.10", @@ -913,15 +919,23 @@ } }, "node_modules/vue": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz", - "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.5.tgz", + "integrity": "sha512-xYpLEGb25yYU1ul9ZhCcavNZ4YW6PS7YTDdDAd0yc/3w69Tra2BwY4EpKguKddfD56QApXQ17XHq+fJJwEP+UQ==", "dependencies": { - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-sfc": "3.3.4", - "@vue/runtime-dom": "3.3.4", - "@vue/server-renderer": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-dom": "3.3.5", + "@vue/compiler-sfc": "3.3.5", + "@vue/runtime-dom": "3.3.5", + "@vue/server-renderer": "3.3.5", + "@vue/shared": "3.3.5" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, "node_modules/vue-router": { @@ -949,13 +963,13 @@ } }, "node_modules/vue-tsc": { - "version": "1.8.18", - "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.8.18.tgz", - "integrity": "sha512-AwQxBB9SZX308TLL1932P1JByuMsXC2jLfRBGt8SBdm1e3cXkDlFaXUAqibfKnoQ1ZC2zO2NSbeBNdSjOcdvJw==", + "version": "1.8.20", + "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.8.20.tgz", + "integrity": "sha512-bIADlyxJl+1ZWQQHAi47NZoi2iTiw/lBwQLL98wXROcQlUuGVtyroAIiqvto9pJotcyhtU0JbGvsHN6JN0fYfg==", "dev": true, "dependencies": { - "@vue/language-core": "1.8.18", - "@vue/typescript": "1.8.18", + "@vue/language-core": "1.8.20", + "@vue/typescript": "1.8.20", "semver": "^7.5.4" }, "bin": { @@ -974,9 +988,9 @@ }, "dependencies": { "@babel/parser": { - "version": "7.22.16", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz", - "integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==" + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", + "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==" }, "@esbuild/android-arm": { "version": "0.18.20", @@ -1177,76 +1191,76 @@ "requires": {} }, "@volar/language-core": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.10.3.tgz", - "integrity": "sha512-7Qgwu9bWUHN+cLrOkCbIVBkL+RVPREhvY07wY89dGxi4mY9mQCsUVRRp64F61lX7Nc27meMnvy0sWlzY0x6oQQ==", + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.10.4.tgz", + "integrity": "sha512-Na69qA6uwVIdA0rHuOc2W3pHtVQQO8hCNim7FOaKNpRJh0oAFnu5r9i7Oopo5C4cnELZkPNjTrbmpcCTiW+CMQ==", "dev": true, "requires": { - "@volar/source-map": "1.10.3" + "@volar/source-map": "1.10.4" } }, "@volar/source-map": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.10.3.tgz", - "integrity": "sha512-QE9nwK3xsdBQGongHnC9SCR0itx7xUKQFsUDn5HbZY3pHpyXxdY1hSBG0eh9mE+aTKoM4KlqMvrb+19Tv9vS1Q==", + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.10.4.tgz", + "integrity": "sha512-RxZdUEL+pV8p+SMqnhVjzy5zpb1QRZTlcwSk4bdcBO7yOu4rtEWqDGahVCEj4CcXour+0yJUMrMczfSCpP9Uxg==", "dev": true, "requires": { "muggle-string": "^0.3.1" } }, "@volar/typescript": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.10.3.tgz", - "integrity": "sha512-n0ar6xGYpRoSvgGMetm/JXP0QAXx+NOUvxCaWCfCjiFivQRSLJeydYDijhoGBUl5KSKosqq9In5L3e/m2TqTcQ==", + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.10.4.tgz", + "integrity": "sha512-BCCUEBASBEMCrz7qmNSi2hBEWYsXD0doaktRKpmmhvb6XntM2sAWYu6gbyK/MluLDgluGLFiFRpWgobgzUqolg==", "dev": true, "requires": { - "@volar/language-core": "1.10.3" + "@volar/language-core": "1.10.4" } }, "@vue/compiler-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", - "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.5.tgz", + "integrity": "sha512-S8Ma+eICI40Y4UotR+iKR729Bma+wERn/xLc+Jz203s5WIW1Sx3qoiONqXGg3Q4vBMa+QHDncULya19ZSJuhog==", "requires": { - "@babel/parser": "^7.21.3", - "@vue/shared": "3.3.4", + "@babel/parser": "^7.23.0", + "@vue/shared": "3.3.5", "estree-walker": "^2.0.2", "source-map-js": "^1.0.2" } }, "@vue/compiler-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", - "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.5.tgz", + "integrity": "sha512-dxt6QntN9T/NtnV6Pz+/nmcoo3ULnsYCnRpvEyY73wbk1tzzx7dnwngUN1cXkyGNu9c3UE7llhq/5T54lKwyhQ==", "requires": { - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-core": "3.3.5", + "@vue/shared": "3.3.5" } }, "@vue/compiler-sfc": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", - "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.5.tgz", + "integrity": "sha512-M6ys4iReSbrF4NTcMCnJiBioCpzXjfkfXwkdziknRyps+pG0DkwpDfQT7zQ0q91/rCR/Ejz64b5H6C4HBhX41w==", "requires": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-ssr": "3.3.4", - "@vue/reactivity-transform": "3.3.4", - "@vue/shared": "3.3.4", + "@babel/parser": "^7.23.0", + "@vue/compiler-core": "3.3.5", + "@vue/compiler-dom": "3.3.5", + "@vue/compiler-ssr": "3.3.5", + "@vue/reactivity-transform": "3.3.5", + "@vue/shared": "3.3.5", "estree-walker": "^2.0.2", - "magic-string": "^0.30.0", - "postcss": "^8.1.10", + "magic-string": "^0.30.5", + "postcss": "^8.4.31", "source-map-js": "^1.0.2" } }, "@vue/compiler-ssr": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", - "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.5.tgz", + "integrity": "sha512-v7p2XuEpOcgjd6c49NqOnq3UTJOv5Uo9tirOyGnEadwxTov2O1J3/TUt4SgAAnwA+9gcUyH5c3lIOFsBe+UIyw==", "requires": { - "@vue/compiler-dom": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-dom": "3.3.5", + "@vue/shared": "3.3.5" } }, "@vue/devtools-api": { @@ -1255,82 +1269,82 @@ "integrity": "sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==" }, "@vue/language-core": { - "version": "1.8.18", - "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-1.8.18.tgz", - "integrity": "sha512-byTi+mwSL7XnVRtfWE3MJy3HQryoVSQ3lymauXviegn3G1wwwlSOUljzQe3w5PyesOnBEIxYoavfKzMJnExrBA==", + "version": "1.8.20", + "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-1.8.20.tgz", + "integrity": "sha512-vNJaqjCTSrWEr+erSq6Rq0CqDC8MOAwyxirxwK8esOxd+1LmAUJUTG2p7I84Mj1Izy5uHiHQAkRTVR2QxMBY+A==", "dev": true, "requires": { - "@volar/language-core": "~1.10.3", - "@volar/source-map": "~1.10.3", + "@volar/language-core": "~1.10.4", + "@volar/source-map": "~1.10.4", "@vue/compiler-dom": "^3.3.0", - "@vue/reactivity": "^3.3.0", "@vue/shared": "^3.3.0", + "computeds": "^0.0.1", "minimatch": "^9.0.3", "muggle-string": "^0.3.1", "vue-template-compiler": "^2.7.14" } }, "@vue/reactivity": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz", - "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.5.tgz", + "integrity": "sha512-P7OBfPjsbV5lDCwZQDtWFqPh3uAP3Q6bRqYVgsYr6ki7jiaiHGSLmeaevUi+Nkev8nhublUpApnWevNiACN3sw==", "requires": { - "@vue/shared": "3.3.4" + "@vue/shared": "3.3.5" } }, "@vue/reactivity-transform": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", - "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.5.tgz", + "integrity": "sha512-OhpBD1H32pIapRzqy31hWwTFLf9STP+0uk5bVOQWXACTa2Rt/RPhvX4zixbPgMGo6iP+S+tFpZzUdcG8AASn8A==", "requires": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4", + "@babel/parser": "^7.23.0", + "@vue/compiler-core": "3.3.5", + "@vue/shared": "3.3.5", "estree-walker": "^2.0.2", - "magic-string": "^0.30.0" + "magic-string": "^0.30.5" } }, "@vue/runtime-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", - "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.5.tgz", + "integrity": "sha512-kxAW3fTzwzZQqiHV1SndTtLMlNfJ/bsvcYku6NDuPzTeG6sMOAIXvuz6N5NUox+P7sNCInESbSOrPMMvtWx3vA==", "requires": { - "@vue/reactivity": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/reactivity": "3.3.5", + "@vue/shared": "3.3.5" } }, "@vue/runtime-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", - "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.5.tgz", + "integrity": "sha512-seYSeHmBNlTrR0eFyQFocEBtzljNlKzC2JfdebfBqoEmikyNYzLWTouv71DignLFXEXZKWNTqCIs4d7dk5Q3Ng==", "requires": { - "@vue/runtime-core": "3.3.4", - "@vue/shared": "3.3.4", - "csstype": "^3.1.1" + "@vue/runtime-core": "3.3.5", + "@vue/shared": "3.3.5", + "csstype": "^3.1.2" } }, "@vue/server-renderer": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz", - "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.5.tgz", + "integrity": "sha512-7VIZkohYn8GAnNT9chrm0vDpHJ6mWPL+TmUBKtDWcWxYcq33YJP/VHCPQN5TazkxXCtv3c1KfXAMZowX4giLoQ==", "requires": { - "@vue/compiler-ssr": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-ssr": "3.3.5", + "@vue/shared": "3.3.5" } }, "@vue/shared": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", - "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==" + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.5.tgz", + "integrity": "sha512-oNJN1rCtkqm1cIxU1BuZVEVRWIp4DhaxXucEzzZ/iDKHP71ZxhkBPNK+URySiECH6aiOZzC60PS2bd6JFznvNA==" }, "@vue/typescript": { - "version": "1.8.18", - "resolved": "https://registry.npmjs.org/@vue/typescript/-/typescript-1.8.18.tgz", - "integrity": "sha512-3M+lu+DUwJW0fNwd/rLE0FenmELxcC6zxgm/YZ25jSTi+uNGj9L5XvXvf20guC69gQvZ+cg49tTxbepfFVuNNQ==", + "version": "1.8.20", + "resolved": "https://registry.npmjs.org/@vue/typescript/-/typescript-1.8.20.tgz", + "integrity": "sha512-F0XX1wK71Fo9ewtzLSCSo5dfOuwKrSi/dR2AlI00iTJ4Bfk0wq1BNTRgnlvfx4kz/vQovaGXqwpIkif14W9KrA==", "dev": true, "requires": { - "@volar/typescript": "~1.10.3", - "@vue/language-core": "1.8.18" + "@volar/typescript": "~1.10.4", + "@vue/language-core": "1.8.20" } }, "balanced-match": { @@ -1348,6 +1362,12 @@ "balanced-match": "^1.0.0" } }, + "computeds": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/computeds/-/computeds-0.0.1.tgz", + "integrity": "sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==", + "dev": true + }, "csstype": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", @@ -1425,9 +1445,9 @@ } }, "magic-string": { - "version": "0.30.3", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.3.tgz", - "integrity": "sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==", + "version": "0.30.5", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz", + "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", "requires": { "@jridgewell/sourcemap-codec": "^1.4.15" } @@ -1458,9 +1478,9 @@ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, "postcss": { - "version": "8.4.30", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.30.tgz", - "integrity": "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==", + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "requires": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", @@ -1499,12 +1519,12 @@ "version": "4.9.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true + "devOptional": true }, "vite": { - "version": "4.4.11", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.11.tgz", - "integrity": "sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.0.tgz", + "integrity": "sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==", "dev": true, "requires": { "esbuild": "^0.18.10", @@ -1514,15 +1534,15 @@ } }, "vue": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz", - "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.5.tgz", + "integrity": "sha512-xYpLEGb25yYU1ul9ZhCcavNZ4YW6PS7YTDdDAd0yc/3w69Tra2BwY4EpKguKddfD56QApXQ17XHq+fJJwEP+UQ==", "requires": { - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-sfc": "3.3.4", - "@vue/runtime-dom": "3.3.4", - "@vue/server-renderer": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-dom": "3.3.5", + "@vue/compiler-sfc": "3.3.5", + "@vue/runtime-dom": "3.3.5", + "@vue/server-renderer": "3.3.5", + "@vue/shared": "3.3.5" } }, "vue-router": { @@ -1544,13 +1564,13 @@ } }, "vue-tsc": { - "version": "1.8.18", - "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.8.18.tgz", - "integrity": "sha512-AwQxBB9SZX308TLL1932P1JByuMsXC2jLfRBGt8SBdm1e3cXkDlFaXUAqibfKnoQ1ZC2zO2NSbeBNdSjOcdvJw==", + "version": "1.8.20", + "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.8.20.tgz", + "integrity": "sha512-bIADlyxJl+1ZWQQHAi47NZoi2iTiw/lBwQLL98wXROcQlUuGVtyroAIiqvto9pJotcyhtU0JbGvsHN6JN0fYfg==", "dev": true, "requires": { - "@vue/language-core": "1.8.18", - "@vue/typescript": "1.8.18", + "@vue/language-core": "1.8.20", + "@vue/typescript": "1.8.20", "semver": "^7.5.4" } }, diff --git a/static/code/stackblitz/v7/react/package-lock.json b/static/code/stackblitz/v7/react/package-lock.json index f47e02ef91c..28e6ceec829 100644 --- a/static/code/stackblitz/v7/react/package-lock.json +++ b/static/code/stackblitz/v7/react/package-lock.json @@ -10,7 +10,7 @@ "dependencies": { "@ionic/react": "^7.4.0", "@ionic/react-router": "^7.4.0", - "@types/node": "^18.0.0", + "@types/node": "^20.0.0", "@types/react": "^18.0.9", "@types/react-dom": "^18.0.4", "@types/react-router": "^5.1.11", @@ -2257,41 +2257,21 @@ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, "node_modules/@ionic/core": { - "version": "7.4.3", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.4.3.tgz", - "integrity": "sha512-JPQLGojKnI/L0UBVshRv86DOSDj61rJRFYQImU4IcgP/rw5ckxwt3iZ5NtdJl0eEDwu91n68aGJdU+TFJjMJgQ==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.5.1.tgz", + "integrity": "sha512-BnWehjZ3IVGPFLdOZV151VhLsyXzr8d2mIVULqUXil5NHgQf039ScppI0kfrCS+M3zMdqeTmlIK/nq6M+kcQaQ==", "dependencies": { - "@stencil/core": "^4.4.0", - "ionicons": "7.1.0", + "@stencil/core": "^4.5.0", + "ionicons": "^7.2.1", "tslib": "^2.1.0" } }, - "node_modules/@ionic/core/node_modules/ionicons": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.0.tgz", - "integrity": "sha512-iE4GuEdEHARJpp0sWL7WJZCzNCf5VxpNRhAjW0fLnZPnNL5qZOJUcfup2Z2Ty7Jk8Q5hacrHfGEB1lCwOdXqGg==", - "dependencies": { - "@stencil/core": "^2.18.0" - } - }, - "node_modules/@ionic/core/node_modules/ionicons/node_modules/@stencil/core": { - "version": "2.22.3", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz", - "integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng==", - "bin": { - "stencil": "bin/stencil" - }, - "engines": { - "node": ">=12.10.0", - "npm": ">=6.0.0" - } - }, "node_modules/@ionic/react": { - "version": "7.4.3", - "resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.4.3.tgz", - "integrity": "sha512-j33s8CFe3Cu3AQtIlZdI/W4+e5hDzjRcX6uwqRrizcMQS66Sj9Ik9RN5v3jV/9R8MHLElXZof/AhofNEhe7BTw==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.5.1.tgz", + "integrity": "sha512-1Hd0SPC9uYV1QR2VSKcXy945UWqUBTkHlmed/CU3B3pSIT3MNnZct5Nj9Ekat9UgXBC7NRrqv6yhfkzPekvilg==", "dependencies": { - "@ionic/core": "7.4.3", + "@ionic/core": "7.5.1", "ionicons": "^7.0.0", "tslib": "*" }, @@ -3301,9 +3281,9 @@ } }, "node_modules/@stencil/core": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.4.0.tgz", - "integrity": "sha512-YlLyCqGBsMEuZb3XTO/STT0TX9eSwjoVhCJgtjVfQOF+ebIMVlojTh40CmDveWiWbth687cbr6S2heeussV8Sg==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.5.0.tgz", + "integrity": "sha512-XRbHdb9t4SQzCCbF9qsh0dexvnlArEzCDJl19BJzxzazVBM398SeJUKCBh4p91AZIWveN0gHuZSIGMhLWR7qSA==", "bin": { "stencil": "bin/stencil" }, @@ -3724,9 +3704,12 @@ "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" }, "node_modules/@types/node": { - "version": "18.18.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.4.tgz", - "integrity": "sha512-t3rNFBgJRugIhackit2mVcLfF6IRc0JE4oeizPQL8Zrm8n2WY/0wOdpOPhdtG0V9Q2TlW/axbF1MJ6z+Yj/kKQ==" + "version": "20.8.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.8.tgz", + "integrity": "sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==", + "dependencies": { + "undici-types": "~5.25.1" + } }, "node_modules/@types/parse-json": { "version": "4.0.0", @@ -3759,9 +3742,9 @@ "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" }, "node_modules/@types/react": { - "version": "18.2.25", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.25.tgz", - "integrity": "sha512-24xqse6+VByVLIr+xWaQ9muX1B4bXJKXBbjszbld/UEDslGLY53+ZucF44HCmLbMPejTzGG9XgR+3m2/Wqu1kw==", + "version": "18.2.31", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.31.tgz", + "integrity": "sha512-c2UnPv548q+5DFh03y8lEDeMfDwBn9G3dRwfkrxQMo/dOtRHUUO57k6pHvBIfH/VF4Nh+98mZ5aaSe+2echD5g==", "dependencies": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -3769,9 +3752,9 @@ } }, "node_modules/@types/react-dom": { - "version": "18.2.10", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.10.tgz", - "integrity": "sha512-5VEC5RgXIk1HHdyN1pHlg0cOqnxHzvPGpMMyGAP5qSaDRmyZNDaQ0kkVAkK6NYlDhP6YBID3llaXlmAS/mdgCA==", + "version": "18.2.14", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.14.tgz", + "integrity": "sha512-V835xgdSVmyQmI1KLV2BEIUgqEuinxp9O4G6g3FqO/SqLac049E53aysv0oEFD2kHfejeKU+ZqL2bcFWj9gLAQ==", "dependencies": { "@types/react": "*" } @@ -8703,23 +8686,11 @@ } }, "node_modules/ionicons": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.2.tgz", - "integrity": "sha512-zZ4njAqSP39H8RRvZhJvkHsv7cBjYE/VfInH218Osf2UVxJITSOutTTd25MW+tAXKN5fheYzclUXUsF55JHUDg==", + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.2.1.tgz", + "integrity": "sha512-2pvCM7DGVEtbbj48PJzQrCADCQrqjU1nUYX9l9PyEWz3ZfdnLdAouqwPxLdl8tbaF9cE7OZRSlyQD7oLOLnGoQ==", "dependencies": { - "@stencil/core": "^2.18.0" - } - }, - "node_modules/ionicons/node_modules/@stencil/core": { - "version": "2.22.3", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz", - "integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng==", - "bin": { - "stencil": "bin/stencil" - }, - "engines": { - "node": ">=12.10.0", - "npm": ">=6.0.0" + "@stencil/core": "^4.0.3" } }, "node_modules/ipaddr.js": { @@ -15760,6 +15731,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/undici-types": { + "version": "5.25.3", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.25.3.tgz", + "integrity": "sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==" + }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", @@ -18272,38 +18248,21 @@ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, "@ionic/core": { - "version": "7.4.3", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.4.3.tgz", - "integrity": "sha512-JPQLGojKnI/L0UBVshRv86DOSDj61rJRFYQImU4IcgP/rw5ckxwt3iZ5NtdJl0eEDwu91n68aGJdU+TFJjMJgQ==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.5.1.tgz", + "integrity": "sha512-BnWehjZ3IVGPFLdOZV151VhLsyXzr8d2mIVULqUXil5NHgQf039ScppI0kfrCS+M3zMdqeTmlIK/nq6M+kcQaQ==", "requires": { - "@stencil/core": "^4.4.0", - "ionicons": "7.1.0", + "@stencil/core": "^4.5.0", + "ionicons": "^7.2.1", "tslib": "^2.1.0" - }, - "dependencies": { - "ionicons": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.0.tgz", - "integrity": "sha512-iE4GuEdEHARJpp0sWL7WJZCzNCf5VxpNRhAjW0fLnZPnNL5qZOJUcfup2Z2Ty7Jk8Q5hacrHfGEB1lCwOdXqGg==", - "requires": { - "@stencil/core": "^2.18.0" - }, - "dependencies": { - "@stencil/core": { - "version": "2.22.3", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz", - "integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng==" - } - } - } } }, "@ionic/react": { - "version": "7.4.3", - "resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.4.3.tgz", - "integrity": "sha512-j33s8CFe3Cu3AQtIlZdI/W4+e5hDzjRcX6uwqRrizcMQS66Sj9Ik9RN5v3jV/9R8MHLElXZof/AhofNEhe7BTw==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/@ionic/react/-/react-7.5.1.tgz", + "integrity": "sha512-1Hd0SPC9uYV1QR2VSKcXy945UWqUBTkHlmed/CU3B3pSIT3MNnZct5Nj9Ekat9UgXBC7NRrqv6yhfkzPekvilg==", "requires": { - "@ionic/core": "7.4.3", + "@ionic/core": "7.5.1", "ionicons": "^7.0.0", "tslib": "*" } @@ -19038,9 +18997,9 @@ } }, "@stencil/core": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.4.0.tgz", - "integrity": "sha512-YlLyCqGBsMEuZb3XTO/STT0TX9eSwjoVhCJgtjVfQOF+ebIMVlojTh40CmDveWiWbth687cbr6S2heeussV8Sg==" + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.5.0.tgz", + "integrity": "sha512-XRbHdb9t4SQzCCbF9qsh0dexvnlArEzCDJl19BJzxzazVBM398SeJUKCBh4p91AZIWveN0gHuZSIGMhLWR7qSA==" }, "@surma/rollup-plugin-off-main-thread": { "version": "2.2.3", @@ -19350,9 +19309,12 @@ "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" }, "@types/node": { - "version": "18.18.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.4.tgz", - "integrity": "sha512-t3rNFBgJRugIhackit2mVcLfF6IRc0JE4oeizPQL8Zrm8n2WY/0wOdpOPhdtG0V9Q2TlW/axbF1MJ6z+Yj/kKQ==" + "version": "20.8.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.8.tgz", + "integrity": "sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==", + "requires": { + "undici-types": "~5.25.1" + } }, "@types/parse-json": { "version": "4.0.0", @@ -19385,9 +19347,9 @@ "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" }, "@types/react": { - "version": "18.2.25", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.25.tgz", - "integrity": "sha512-24xqse6+VByVLIr+xWaQ9muX1B4bXJKXBbjszbld/UEDslGLY53+ZucF44HCmLbMPejTzGG9XgR+3m2/Wqu1kw==", + "version": "18.2.31", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.31.tgz", + "integrity": "sha512-c2UnPv548q+5DFh03y8lEDeMfDwBn9G3dRwfkrxQMo/dOtRHUUO57k6pHvBIfH/VF4Nh+98mZ5aaSe+2echD5g==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -19395,9 +19357,9 @@ } }, "@types/react-dom": { - "version": "18.2.10", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.10.tgz", - "integrity": "sha512-5VEC5RgXIk1HHdyN1pHlg0cOqnxHzvPGpMMyGAP5qSaDRmyZNDaQ0kkVAkK6NYlDhP6YBID3llaXlmAS/mdgCA==", + "version": "18.2.14", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.14.tgz", + "integrity": "sha512-V835xgdSVmyQmI1KLV2BEIUgqEuinxp9O4G6g3FqO/SqLac049E53aysv0oEFD2kHfejeKU+ZqL2bcFWj9gLAQ==", "requires": { "@types/react": "*" } @@ -23011,18 +22973,11 @@ } }, "ionicons": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.2.tgz", - "integrity": "sha512-zZ4njAqSP39H8RRvZhJvkHsv7cBjYE/VfInH218Osf2UVxJITSOutTTd25MW+tAXKN5fheYzclUXUsF55JHUDg==", + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.2.1.tgz", + "integrity": "sha512-2pvCM7DGVEtbbj48PJzQrCADCQrqjU1nUYX9l9PyEWz3ZfdnLdAouqwPxLdl8tbaF9cE7OZRSlyQD7oLOLnGoQ==", "requires": { - "@stencil/core": "^2.18.0" - }, - "dependencies": { - "@stencil/core": { - "version": "2.22.3", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz", - "integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng==" - } + "@stencil/core": "^4.0.3" } }, "ipaddr.js": { @@ -27966,6 +27921,11 @@ "which-boxed-primitive": "^1.0.2" } }, + "undici-types": { + "version": "5.25.3", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.25.3.tgz", + "integrity": "sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==" + }, "unicode-canonical-property-names-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", diff --git a/static/code/stackblitz/v7/react/package.json b/static/code/stackblitz/v7/react/package.json index e3fd5a7860f..ffaae25b3af 100644 --- a/static/code/stackblitz/v7/react/package.json +++ b/static/code/stackblitz/v7/react/package.json @@ -5,7 +5,7 @@ "dependencies": { "@ionic/react": "^7.4.0", "@ionic/react-router": "^7.4.0", - "@types/node": "^18.0.0", + "@types/node": "^20.0.0", "@types/react": "^18.0.9", "@types/react-dom": "^18.0.4", "@types/react-router": "^5.1.11", diff --git a/static/code/stackblitz/v7/vue/package-lock.json b/static/code/stackblitz/v7/vue/package-lock.json index 5c5ce77012d..dd3066126a5 100644 --- a/static/code/stackblitz/v7/vue/package-lock.json +++ b/static/code/stackblitz/v7/vue/package-lock.json @@ -21,9 +21,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.22.16", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz", - "integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", + "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", "bin": { "parser": "bin/babel-parser.js" }, @@ -384,50 +384,30 @@ } }, "node_modules/@ionic/core": { - "version": "7.4.3", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.4.3.tgz", - "integrity": "sha512-JPQLGojKnI/L0UBVshRv86DOSDj61rJRFYQImU4IcgP/rw5ckxwt3iZ5NtdJl0eEDwu91n68aGJdU+TFJjMJgQ==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.5.1.tgz", + "integrity": "sha512-BnWehjZ3IVGPFLdOZV151VhLsyXzr8d2mIVULqUXil5NHgQf039ScppI0kfrCS+M3zMdqeTmlIK/nq6M+kcQaQ==", "dependencies": { - "@stencil/core": "^4.4.0", - "ionicons": "7.1.0", + "@stencil/core": "^4.5.0", + "ionicons": "^7.2.1", "tslib": "^2.1.0" } }, - "node_modules/@ionic/core/node_modules/ionicons": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.0.tgz", - "integrity": "sha512-iE4GuEdEHARJpp0sWL7WJZCzNCf5VxpNRhAjW0fLnZPnNL5qZOJUcfup2Z2Ty7Jk8Q5hacrHfGEB1lCwOdXqGg==", - "dependencies": { - "@stencil/core": "^2.18.0" - } - }, - "node_modules/@ionic/core/node_modules/ionicons/node_modules/@stencil/core": { - "version": "2.22.3", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz", - "integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng==", - "bin": { - "stencil": "bin/stencil" - }, - "engines": { - "node": ">=12.10.0", - "npm": ">=6.0.0" - } - }, "node_modules/@ionic/vue": { - "version": "7.4.3", - "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.4.3.tgz", - "integrity": "sha512-DV/SExC/e3rcLoowuYb5bwo4N/oP5fWHQo1xLP654I/879hlwPJlCxdWFtaE2OlT3aEix9ssLYeNiWaxuK+9dQ==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.5.1.tgz", + "integrity": "sha512-nA32DFFOJV5vF60xiz6Df/aE7iPEfCZXMAt+pSJYSYQuoMN6qD9eJUM4g37DZIWtRJdzlRBSZQvGEdPR41CyYg==", "dependencies": { - "@ionic/core": "7.4.3", + "@ionic/core": "7.5.1", "ionicons": "^7.0.0" } }, "node_modules/@ionic/vue-router": { - "version": "7.4.3", - "resolved": "https://registry.npmjs.org/@ionic/vue-router/-/vue-router-7.4.3.tgz", - "integrity": "sha512-17oYicB3Cspx49VloCIM/J4Zf/klfkyDXHoZy9MYWc+p87JgG9yHcn8LTKcBgmbvlyde1H1PR5c3+hwO/SxGvA==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/@ionic/vue-router/-/vue-router-7.5.1.tgz", + "integrity": "sha512-gXITuq8FUzOSovPgm0AmM49TBJbirdAsLU7MiTmBFoNbkjIT+DRP3oVkp/AbI/CbgctH3j889VjCmYxqwPvH0A==", "dependencies": { - "@ionic/vue": "7.4.3" + "@ionic/vue": "7.5.1" } }, "node_modules/@jridgewell/sourcemap-codec": { @@ -436,9 +416,9 @@ "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, "node_modules/@stencil/core": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.4.0.tgz", - "integrity": "sha512-YlLyCqGBsMEuZb3XTO/STT0TX9eSwjoVhCJgtjVfQOF+ebIMVlojTh40CmDveWiWbth687cbr6S2heeussV8Sg==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.5.0.tgz", + "integrity": "sha512-XRbHdb9t4SQzCCbF9qsh0dexvnlArEzCDJl19BJzxzazVBM398SeJUKCBh4p91AZIWveN0gHuZSIGMhLWR7qSA==", "bin": { "stencil": "bin/stencil" }, @@ -461,76 +441,76 @@ } }, "node_modules/@volar/language-core": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.10.3.tgz", - "integrity": "sha512-7Qgwu9bWUHN+cLrOkCbIVBkL+RVPREhvY07wY89dGxi4mY9mQCsUVRRp64F61lX7Nc27meMnvy0sWlzY0x6oQQ==", + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.10.4.tgz", + "integrity": "sha512-Na69qA6uwVIdA0rHuOc2W3pHtVQQO8hCNim7FOaKNpRJh0oAFnu5r9i7Oopo5C4cnELZkPNjTrbmpcCTiW+CMQ==", "dev": true, "dependencies": { - "@volar/source-map": "1.10.3" + "@volar/source-map": "1.10.4" } }, "node_modules/@volar/source-map": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.10.3.tgz", - "integrity": "sha512-QE9nwK3xsdBQGongHnC9SCR0itx7xUKQFsUDn5HbZY3pHpyXxdY1hSBG0eh9mE+aTKoM4KlqMvrb+19Tv9vS1Q==", + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.10.4.tgz", + "integrity": "sha512-RxZdUEL+pV8p+SMqnhVjzy5zpb1QRZTlcwSk4bdcBO7yOu4rtEWqDGahVCEj4CcXour+0yJUMrMczfSCpP9Uxg==", "dev": true, "dependencies": { "muggle-string": "^0.3.1" } }, "node_modules/@volar/typescript": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.10.3.tgz", - "integrity": "sha512-n0ar6xGYpRoSvgGMetm/JXP0QAXx+NOUvxCaWCfCjiFivQRSLJeydYDijhoGBUl5KSKosqq9In5L3e/m2TqTcQ==", + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.10.4.tgz", + "integrity": "sha512-BCCUEBASBEMCrz7qmNSi2hBEWYsXD0doaktRKpmmhvb6XntM2sAWYu6gbyK/MluLDgluGLFiFRpWgobgzUqolg==", "dev": true, "dependencies": { - "@volar/language-core": "1.10.3" + "@volar/language-core": "1.10.4" } }, "node_modules/@vue/compiler-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", - "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.5.tgz", + "integrity": "sha512-S8Ma+eICI40Y4UotR+iKR729Bma+wERn/xLc+Jz203s5WIW1Sx3qoiONqXGg3Q4vBMa+QHDncULya19ZSJuhog==", "dependencies": { - "@babel/parser": "^7.21.3", - "@vue/shared": "3.3.4", + "@babel/parser": "^7.23.0", + "@vue/shared": "3.3.5", "estree-walker": "^2.0.2", "source-map-js": "^1.0.2" } }, "node_modules/@vue/compiler-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", - "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.5.tgz", + "integrity": "sha512-dxt6QntN9T/NtnV6Pz+/nmcoo3ULnsYCnRpvEyY73wbk1tzzx7dnwngUN1cXkyGNu9c3UE7llhq/5T54lKwyhQ==", "dependencies": { - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-core": "3.3.5", + "@vue/shared": "3.3.5" } }, "node_modules/@vue/compiler-sfc": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", - "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.5.tgz", + "integrity": "sha512-M6ys4iReSbrF4NTcMCnJiBioCpzXjfkfXwkdziknRyps+pG0DkwpDfQT7zQ0q91/rCR/Ejz64b5H6C4HBhX41w==", "dependencies": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-ssr": "3.3.4", - "@vue/reactivity-transform": "3.3.4", - "@vue/shared": "3.3.4", + "@babel/parser": "^7.23.0", + "@vue/compiler-core": "3.3.5", + "@vue/compiler-dom": "3.3.5", + "@vue/compiler-ssr": "3.3.5", + "@vue/reactivity-transform": "3.3.5", + "@vue/shared": "3.3.5", "estree-walker": "^2.0.2", - "magic-string": "^0.30.0", - "postcss": "^8.1.10", + "magic-string": "^0.30.5", + "postcss": "^8.4.31", "source-map-js": "^1.0.2" } }, "node_modules/@vue/compiler-ssr": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", - "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.5.tgz", + "integrity": "sha512-v7p2XuEpOcgjd6c49NqOnq3UTJOv5Uo9tirOyGnEadwxTov2O1J3/TUt4SgAAnwA+9gcUyH5c3lIOFsBe+UIyw==", "dependencies": { - "@vue/compiler-dom": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-dom": "3.3.5", + "@vue/shared": "3.3.5" } }, "node_modules/@vue/devtools-api": { @@ -539,16 +519,16 @@ "integrity": "sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==" }, "node_modules/@vue/language-core": { - "version": "1.8.18", - "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-1.8.18.tgz", - "integrity": "sha512-byTi+mwSL7XnVRtfWE3MJy3HQryoVSQ3lymauXviegn3G1wwwlSOUljzQe3w5PyesOnBEIxYoavfKzMJnExrBA==", + "version": "1.8.20", + "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-1.8.20.tgz", + "integrity": "sha512-vNJaqjCTSrWEr+erSq6Rq0CqDC8MOAwyxirxwK8esOxd+1LmAUJUTG2p7I84Mj1Izy5uHiHQAkRTVR2QxMBY+A==", "dev": true, "dependencies": { - "@volar/language-core": "~1.10.3", - "@volar/source-map": "~1.10.3", + "@volar/language-core": "~1.10.4", + "@volar/source-map": "~1.10.4", "@vue/compiler-dom": "^3.3.0", - "@vue/reactivity": "^3.3.0", "@vue/shared": "^3.3.0", + "computeds": "^0.0.1", "minimatch": "^9.0.3", "muggle-string": "^0.3.1", "vue-template-compiler": "^2.7.14" @@ -563,69 +543,69 @@ } }, "node_modules/@vue/reactivity": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz", - "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.5.tgz", + "integrity": "sha512-P7OBfPjsbV5lDCwZQDtWFqPh3uAP3Q6bRqYVgsYr6ki7jiaiHGSLmeaevUi+Nkev8nhublUpApnWevNiACN3sw==", "dependencies": { - "@vue/shared": "3.3.4" + "@vue/shared": "3.3.5" } }, "node_modules/@vue/reactivity-transform": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", - "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.5.tgz", + "integrity": "sha512-OhpBD1H32pIapRzqy31hWwTFLf9STP+0uk5bVOQWXACTa2Rt/RPhvX4zixbPgMGo6iP+S+tFpZzUdcG8AASn8A==", "dependencies": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4", + "@babel/parser": "^7.23.0", + "@vue/compiler-core": "3.3.5", + "@vue/shared": "3.3.5", "estree-walker": "^2.0.2", - "magic-string": "^0.30.0" + "magic-string": "^0.30.5" } }, "node_modules/@vue/runtime-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", - "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.5.tgz", + "integrity": "sha512-kxAW3fTzwzZQqiHV1SndTtLMlNfJ/bsvcYku6NDuPzTeG6sMOAIXvuz6N5NUox+P7sNCInESbSOrPMMvtWx3vA==", "dependencies": { - "@vue/reactivity": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/reactivity": "3.3.5", + "@vue/shared": "3.3.5" } }, "node_modules/@vue/runtime-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", - "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.5.tgz", + "integrity": "sha512-seYSeHmBNlTrR0eFyQFocEBtzljNlKzC2JfdebfBqoEmikyNYzLWTouv71DignLFXEXZKWNTqCIs4d7dk5Q3Ng==", "dependencies": { - "@vue/runtime-core": "3.3.4", - "@vue/shared": "3.3.4", - "csstype": "^3.1.1" + "@vue/runtime-core": "3.3.5", + "@vue/shared": "3.3.5", + "csstype": "^3.1.2" } }, "node_modules/@vue/server-renderer": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz", - "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.5.tgz", + "integrity": "sha512-7VIZkohYn8GAnNT9chrm0vDpHJ6mWPL+TmUBKtDWcWxYcq33YJP/VHCPQN5TazkxXCtv3c1KfXAMZowX4giLoQ==", "dependencies": { - "@vue/compiler-ssr": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-ssr": "3.3.5", + "@vue/shared": "3.3.5" }, "peerDependencies": { - "vue": "3.3.4" + "vue": "3.3.5" } }, "node_modules/@vue/shared": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", - "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==" + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.5.tgz", + "integrity": "sha512-oNJN1rCtkqm1cIxU1BuZVEVRWIp4DhaxXucEzzZ/iDKHP71ZxhkBPNK+URySiECH6aiOZzC60PS2bd6JFznvNA==" }, "node_modules/@vue/typescript": { - "version": "1.8.18", - "resolved": "https://registry.npmjs.org/@vue/typescript/-/typescript-1.8.18.tgz", - "integrity": "sha512-3M+lu+DUwJW0fNwd/rLE0FenmELxcC6zxgm/YZ25jSTi+uNGj9L5XvXvf20guC69gQvZ+cg49tTxbepfFVuNNQ==", + "version": "1.8.20", + "resolved": "https://registry.npmjs.org/@vue/typescript/-/typescript-1.8.20.tgz", + "integrity": "sha512-F0XX1wK71Fo9ewtzLSCSo5dfOuwKrSi/dR2AlI00iTJ4Bfk0wq1BNTRgnlvfx4kz/vQovaGXqwpIkif14W9KrA==", "dev": true, "dependencies": { - "@volar/typescript": "~1.10.3", - "@vue/language-core": "1.8.18" + "@volar/typescript": "~1.10.4", + "@vue/language-core": "1.8.20" } }, "node_modules/balanced-match": { @@ -643,6 +623,12 @@ "balanced-match": "^1.0.0" } }, + "node_modules/computeds": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/computeds/-/computeds-0.0.1.tgz", + "integrity": "sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==", + "dev": true + }, "node_modules/csstype": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", @@ -720,23 +706,11 @@ } }, "node_modules/ionicons": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.2.tgz", - "integrity": "sha512-zZ4njAqSP39H8RRvZhJvkHsv7cBjYE/VfInH218Osf2UVxJITSOutTTd25MW+tAXKN5fheYzclUXUsF55JHUDg==", + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.2.1.tgz", + "integrity": "sha512-2pvCM7DGVEtbbj48PJzQrCADCQrqjU1nUYX9l9PyEWz3ZfdnLdAouqwPxLdl8tbaF9cE7OZRSlyQD7oLOLnGoQ==", "dependencies": { - "@stencil/core": "^2.18.0" - } - }, - "node_modules/ionicons/node_modules/@stencil/core": { - "version": "2.22.3", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz", - "integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng==", - "bin": { - "stencil": "bin/stencil" - }, - "engines": { - "node": ">=12.10.0", - "npm": ">=6.0.0" + "@stencil/core": "^4.0.3" } }, "node_modules/lru-cache": { @@ -752,9 +726,9 @@ } }, "node_modules/magic-string": { - "version": "0.30.3", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.3.tgz", - "integrity": "sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==", + "version": "0.30.5", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz", + "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.15" }, @@ -806,9 +780,9 @@ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, "node_modules/postcss": { - "version": "8.4.30", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.30.tgz", - "integrity": "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==", + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "funding": [ { "type": "opencollective", @@ -880,7 +854,7 @@ "version": "4.9.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true, + "devOptional": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -890,9 +864,9 @@ } }, "node_modules/vite": { - "version": "4.4.11", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.11.tgz", - "integrity": "sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.0.tgz", + "integrity": "sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==", "dev": true, "dependencies": { "esbuild": "^0.18.10", @@ -945,15 +919,23 @@ } }, "node_modules/vue": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz", - "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.5.tgz", + "integrity": "sha512-xYpLEGb25yYU1ul9ZhCcavNZ4YW6PS7YTDdDAd0yc/3w69Tra2BwY4EpKguKddfD56QApXQ17XHq+fJJwEP+UQ==", "dependencies": { - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-sfc": "3.3.4", - "@vue/runtime-dom": "3.3.4", - "@vue/server-renderer": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-dom": "3.3.5", + "@vue/compiler-sfc": "3.3.5", + "@vue/runtime-dom": "3.3.5", + "@vue/server-renderer": "3.3.5", + "@vue/shared": "3.3.5" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, "node_modules/vue-router": { @@ -981,13 +963,13 @@ } }, "node_modules/vue-tsc": { - "version": "1.8.18", - "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.8.18.tgz", - "integrity": "sha512-AwQxBB9SZX308TLL1932P1JByuMsXC2jLfRBGt8SBdm1e3cXkDlFaXUAqibfKnoQ1ZC2zO2NSbeBNdSjOcdvJw==", + "version": "1.8.20", + "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.8.20.tgz", + "integrity": "sha512-bIADlyxJl+1ZWQQHAi47NZoi2iTiw/lBwQLL98wXROcQlUuGVtyroAIiqvto9pJotcyhtU0JbGvsHN6JN0fYfg==", "dev": true, "dependencies": { - "@vue/language-core": "1.8.18", - "@vue/typescript": "1.8.18", + "@vue/language-core": "1.8.20", + "@vue/typescript": "1.8.20", "semver": "^7.5.4" }, "bin": { @@ -1006,9 +988,9 @@ }, "dependencies": { "@babel/parser": { - "version": "7.22.16", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz", - "integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==" + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", + "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==" }, "@esbuild/android-arm": { "version": "0.18.20", @@ -1165,47 +1147,30 @@ "optional": true }, "@ionic/core": { - "version": "7.4.3", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.4.3.tgz", - "integrity": "sha512-JPQLGojKnI/L0UBVshRv86DOSDj61rJRFYQImU4IcgP/rw5ckxwt3iZ5NtdJl0eEDwu91n68aGJdU+TFJjMJgQ==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.5.1.tgz", + "integrity": "sha512-BnWehjZ3IVGPFLdOZV151VhLsyXzr8d2mIVULqUXil5NHgQf039ScppI0kfrCS+M3zMdqeTmlIK/nq6M+kcQaQ==", "requires": { - "@stencil/core": "^4.4.0", - "ionicons": "7.1.0", + "@stencil/core": "^4.5.0", + "ionicons": "^7.2.1", "tslib": "^2.1.0" - }, - "dependencies": { - "ionicons": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.0.tgz", - "integrity": "sha512-iE4GuEdEHARJpp0sWL7WJZCzNCf5VxpNRhAjW0fLnZPnNL5qZOJUcfup2Z2Ty7Jk8Q5hacrHfGEB1lCwOdXqGg==", - "requires": { - "@stencil/core": "^2.18.0" - }, - "dependencies": { - "@stencil/core": { - "version": "2.22.3", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz", - "integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng==" - } - } - } } }, "@ionic/vue": { - "version": "7.4.3", - "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.4.3.tgz", - "integrity": "sha512-DV/SExC/e3rcLoowuYb5bwo4N/oP5fWHQo1xLP654I/879hlwPJlCxdWFtaE2OlT3aEix9ssLYeNiWaxuK+9dQ==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/@ionic/vue/-/vue-7.5.1.tgz", + "integrity": "sha512-nA32DFFOJV5vF60xiz6Df/aE7iPEfCZXMAt+pSJYSYQuoMN6qD9eJUM4g37DZIWtRJdzlRBSZQvGEdPR41CyYg==", "requires": { - "@ionic/core": "7.4.3", + "@ionic/core": "7.5.1", "ionicons": "^7.0.0" } }, "@ionic/vue-router": { - "version": "7.4.3", - "resolved": "https://registry.npmjs.org/@ionic/vue-router/-/vue-router-7.4.3.tgz", - "integrity": "sha512-17oYicB3Cspx49VloCIM/J4Zf/klfkyDXHoZy9MYWc+p87JgG9yHcn8LTKcBgmbvlyde1H1PR5c3+hwO/SxGvA==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/@ionic/vue-router/-/vue-router-7.5.1.tgz", + "integrity": "sha512-gXITuq8FUzOSovPgm0AmM49TBJbirdAsLU7MiTmBFoNbkjIT+DRP3oVkp/AbI/CbgctH3j889VjCmYxqwPvH0A==", "requires": { - "@ionic/vue": "7.4.3" + "@ionic/vue": "7.5.1" } }, "@jridgewell/sourcemap-codec": { @@ -1214,9 +1179,9 @@ "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, "@stencil/core": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.4.0.tgz", - "integrity": "sha512-YlLyCqGBsMEuZb3XTO/STT0TX9eSwjoVhCJgtjVfQOF+ebIMVlojTh40CmDveWiWbth687cbr6S2heeussV8Sg==" + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.5.0.tgz", + "integrity": "sha512-XRbHdb9t4SQzCCbF9qsh0dexvnlArEzCDJl19BJzxzazVBM398SeJUKCBh4p91AZIWveN0gHuZSIGMhLWR7qSA==" }, "@vitejs/plugin-vue": { "version": "4.4.0", @@ -1226,76 +1191,76 @@ "requires": {} }, "@volar/language-core": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.10.3.tgz", - "integrity": "sha512-7Qgwu9bWUHN+cLrOkCbIVBkL+RVPREhvY07wY89dGxi4mY9mQCsUVRRp64F61lX7Nc27meMnvy0sWlzY0x6oQQ==", + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.10.4.tgz", + "integrity": "sha512-Na69qA6uwVIdA0rHuOc2W3pHtVQQO8hCNim7FOaKNpRJh0oAFnu5r9i7Oopo5C4cnELZkPNjTrbmpcCTiW+CMQ==", "dev": true, "requires": { - "@volar/source-map": "1.10.3" + "@volar/source-map": "1.10.4" } }, "@volar/source-map": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.10.3.tgz", - "integrity": "sha512-QE9nwK3xsdBQGongHnC9SCR0itx7xUKQFsUDn5HbZY3pHpyXxdY1hSBG0eh9mE+aTKoM4KlqMvrb+19Tv9vS1Q==", + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.10.4.tgz", + "integrity": "sha512-RxZdUEL+pV8p+SMqnhVjzy5zpb1QRZTlcwSk4bdcBO7yOu4rtEWqDGahVCEj4CcXour+0yJUMrMczfSCpP9Uxg==", "dev": true, "requires": { "muggle-string": "^0.3.1" } }, "@volar/typescript": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.10.3.tgz", - "integrity": "sha512-n0ar6xGYpRoSvgGMetm/JXP0QAXx+NOUvxCaWCfCjiFivQRSLJeydYDijhoGBUl5KSKosqq9In5L3e/m2TqTcQ==", + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.10.4.tgz", + "integrity": "sha512-BCCUEBASBEMCrz7qmNSi2hBEWYsXD0doaktRKpmmhvb6XntM2sAWYu6gbyK/MluLDgluGLFiFRpWgobgzUqolg==", "dev": true, "requires": { - "@volar/language-core": "1.10.3" + "@volar/language-core": "1.10.4" } }, "@vue/compiler-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.4.tgz", - "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.5.tgz", + "integrity": "sha512-S8Ma+eICI40Y4UotR+iKR729Bma+wERn/xLc+Jz203s5WIW1Sx3qoiONqXGg3Q4vBMa+QHDncULya19ZSJuhog==", "requires": { - "@babel/parser": "^7.21.3", - "@vue/shared": "3.3.4", + "@babel/parser": "^7.23.0", + "@vue/shared": "3.3.5", "estree-walker": "^2.0.2", "source-map-js": "^1.0.2" } }, "@vue/compiler-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", - "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.5.tgz", + "integrity": "sha512-dxt6QntN9T/NtnV6Pz+/nmcoo3ULnsYCnRpvEyY73wbk1tzzx7dnwngUN1cXkyGNu9c3UE7llhq/5T54lKwyhQ==", "requires": { - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-core": "3.3.5", + "@vue/shared": "3.3.5" } }, "@vue/compiler-sfc": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", - "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.5.tgz", + "integrity": "sha512-M6ys4iReSbrF4NTcMCnJiBioCpzXjfkfXwkdziknRyps+pG0DkwpDfQT7zQ0q91/rCR/Ejz64b5H6C4HBhX41w==", "requires": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-ssr": "3.3.4", - "@vue/reactivity-transform": "3.3.4", - "@vue/shared": "3.3.4", + "@babel/parser": "^7.23.0", + "@vue/compiler-core": "3.3.5", + "@vue/compiler-dom": "3.3.5", + "@vue/compiler-ssr": "3.3.5", + "@vue/reactivity-transform": "3.3.5", + "@vue/shared": "3.3.5", "estree-walker": "^2.0.2", - "magic-string": "^0.30.0", - "postcss": "^8.1.10", + "magic-string": "^0.30.5", + "postcss": "^8.4.31", "source-map-js": "^1.0.2" } }, "@vue/compiler-ssr": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", - "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.5.tgz", + "integrity": "sha512-v7p2XuEpOcgjd6c49NqOnq3UTJOv5Uo9tirOyGnEadwxTov2O1J3/TUt4SgAAnwA+9gcUyH5c3lIOFsBe+UIyw==", "requires": { - "@vue/compiler-dom": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-dom": "3.3.5", + "@vue/shared": "3.3.5" } }, "@vue/devtools-api": { @@ -1304,82 +1269,82 @@ "integrity": "sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==" }, "@vue/language-core": { - "version": "1.8.18", - "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-1.8.18.tgz", - "integrity": "sha512-byTi+mwSL7XnVRtfWE3MJy3HQryoVSQ3lymauXviegn3G1wwwlSOUljzQe3w5PyesOnBEIxYoavfKzMJnExrBA==", + "version": "1.8.20", + "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-1.8.20.tgz", + "integrity": "sha512-vNJaqjCTSrWEr+erSq6Rq0CqDC8MOAwyxirxwK8esOxd+1LmAUJUTG2p7I84Mj1Izy5uHiHQAkRTVR2QxMBY+A==", "dev": true, "requires": { - "@volar/language-core": "~1.10.3", - "@volar/source-map": "~1.10.3", + "@volar/language-core": "~1.10.4", + "@volar/source-map": "~1.10.4", "@vue/compiler-dom": "^3.3.0", - "@vue/reactivity": "^3.3.0", "@vue/shared": "^3.3.0", + "computeds": "^0.0.1", "minimatch": "^9.0.3", "muggle-string": "^0.3.1", "vue-template-compiler": "^2.7.14" } }, "@vue/reactivity": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.4.tgz", - "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.5.tgz", + "integrity": "sha512-P7OBfPjsbV5lDCwZQDtWFqPh3uAP3Q6bRqYVgsYr6ki7jiaiHGSLmeaevUi+Nkev8nhublUpApnWevNiACN3sw==", "requires": { - "@vue/shared": "3.3.4" + "@vue/shared": "3.3.5" } }, "@vue/reactivity-transform": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", - "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.5.tgz", + "integrity": "sha512-OhpBD1H32pIapRzqy31hWwTFLf9STP+0uk5bVOQWXACTa2Rt/RPhvX4zixbPgMGo6iP+S+tFpZzUdcG8AASn8A==", "requires": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4", + "@babel/parser": "^7.23.0", + "@vue/compiler-core": "3.3.5", + "@vue/shared": "3.3.5", "estree-walker": "^2.0.2", - "magic-string": "^0.30.0" + "magic-string": "^0.30.5" } }, "@vue/runtime-core": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz", - "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.5.tgz", + "integrity": "sha512-kxAW3fTzwzZQqiHV1SndTtLMlNfJ/bsvcYku6NDuPzTeG6sMOAIXvuz6N5NUox+P7sNCInESbSOrPMMvtWx3vA==", "requires": { - "@vue/reactivity": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/reactivity": "3.3.5", + "@vue/shared": "3.3.5" } }, "@vue/runtime-dom": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", - "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.5.tgz", + "integrity": "sha512-seYSeHmBNlTrR0eFyQFocEBtzljNlKzC2JfdebfBqoEmikyNYzLWTouv71DignLFXEXZKWNTqCIs4d7dk5Q3Ng==", "requires": { - "@vue/runtime-core": "3.3.4", - "@vue/shared": "3.3.4", - "csstype": "^3.1.1" + "@vue/runtime-core": "3.3.5", + "@vue/shared": "3.3.5", + "csstype": "^3.1.2" } }, "@vue/server-renderer": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz", - "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.5.tgz", + "integrity": "sha512-7VIZkohYn8GAnNT9chrm0vDpHJ6mWPL+TmUBKtDWcWxYcq33YJP/VHCPQN5TazkxXCtv3c1KfXAMZowX4giLoQ==", "requires": { - "@vue/compiler-ssr": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-ssr": "3.3.5", + "@vue/shared": "3.3.5" } }, "@vue/shared": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz", - "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==" + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.5.tgz", + "integrity": "sha512-oNJN1rCtkqm1cIxU1BuZVEVRWIp4DhaxXucEzzZ/iDKHP71ZxhkBPNK+URySiECH6aiOZzC60PS2bd6JFznvNA==" }, "@vue/typescript": { - "version": "1.8.18", - "resolved": "https://registry.npmjs.org/@vue/typescript/-/typescript-1.8.18.tgz", - "integrity": "sha512-3M+lu+DUwJW0fNwd/rLE0FenmELxcC6zxgm/YZ25jSTi+uNGj9L5XvXvf20guC69gQvZ+cg49tTxbepfFVuNNQ==", + "version": "1.8.20", + "resolved": "https://registry.npmjs.org/@vue/typescript/-/typescript-1.8.20.tgz", + "integrity": "sha512-F0XX1wK71Fo9ewtzLSCSo5dfOuwKrSi/dR2AlI00iTJ4Bfk0wq1BNTRgnlvfx4kz/vQovaGXqwpIkif14W9KrA==", "dev": true, "requires": { - "@volar/typescript": "~1.10.3", - "@vue/language-core": "1.8.18" + "@volar/typescript": "~1.10.4", + "@vue/language-core": "1.8.20" } }, "balanced-match": { @@ -1397,6 +1362,12 @@ "balanced-match": "^1.0.0" } }, + "computeds": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/computeds/-/computeds-0.0.1.tgz", + "integrity": "sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==", + "dev": true + }, "csstype": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", @@ -1457,18 +1428,11 @@ "dev": true }, "ionicons": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.1.2.tgz", - "integrity": "sha512-zZ4njAqSP39H8RRvZhJvkHsv7cBjYE/VfInH218Osf2UVxJITSOutTTd25MW+tAXKN5fheYzclUXUsF55JHUDg==", + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/ionicons/-/ionicons-7.2.1.tgz", + "integrity": "sha512-2pvCM7DGVEtbbj48PJzQrCADCQrqjU1nUYX9l9PyEWz3ZfdnLdAouqwPxLdl8tbaF9cE7OZRSlyQD7oLOLnGoQ==", "requires": { - "@stencil/core": "^2.18.0" - }, - "dependencies": { - "@stencil/core": { - "version": "2.22.3", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz", - "integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng==" - } + "@stencil/core": "^4.0.3" } }, "lru-cache": { @@ -1481,9 +1445,9 @@ } }, "magic-string": { - "version": "0.30.3", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.3.tgz", - "integrity": "sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==", + "version": "0.30.5", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz", + "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", "requires": { "@jridgewell/sourcemap-codec": "^1.4.15" } @@ -1514,9 +1478,9 @@ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, "postcss": { - "version": "8.4.30", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.30.tgz", - "integrity": "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==", + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "requires": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", @@ -1555,12 +1519,12 @@ "version": "4.9.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "dev": true + "devOptional": true }, "vite": { - "version": "4.4.11", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.11.tgz", - "integrity": "sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.0.tgz", + "integrity": "sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==", "dev": true, "requires": { "esbuild": "^0.18.10", @@ -1570,15 +1534,15 @@ } }, "vue": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz", - "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==", + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.5.tgz", + "integrity": "sha512-xYpLEGb25yYU1ul9ZhCcavNZ4YW6PS7YTDdDAd0yc/3w69Tra2BwY4EpKguKddfD56QApXQ17XHq+fJJwEP+UQ==", "requires": { - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-sfc": "3.3.4", - "@vue/runtime-dom": "3.3.4", - "@vue/server-renderer": "3.3.4", - "@vue/shared": "3.3.4" + "@vue/compiler-dom": "3.3.5", + "@vue/compiler-sfc": "3.3.5", + "@vue/runtime-dom": "3.3.5", + "@vue/server-renderer": "3.3.5", + "@vue/shared": "3.3.5" } }, "vue-router": { @@ -1600,13 +1564,13 @@ } }, "vue-tsc": { - "version": "1.8.18", - "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.8.18.tgz", - "integrity": "sha512-AwQxBB9SZX308TLL1932P1JByuMsXC2jLfRBGt8SBdm1e3cXkDlFaXUAqibfKnoQ1ZC2zO2NSbeBNdSjOcdvJw==", + "version": "1.8.20", + "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.8.20.tgz", + "integrity": "sha512-bIADlyxJl+1ZWQQHAi47NZoi2iTiw/lBwQLL98wXROcQlUuGVtyroAIiqvto9pJotcyhtU0JbGvsHN6JN0fYfg==", "dev": true, "requires": { - "@vue/language-core": "1.8.18", - "@vue/typescript": "1.8.18", + "@vue/language-core": "1.8.20", + "@vue/typescript": "1.8.20", "semver": "^7.5.4" } }, diff --git a/static/usage/v6/fab/basic/vue.md b/static/usage/v6/fab/basic/vue.md index 822821e7289..dc16daae992 100644 --- a/static/usage/v6/fab/basic/vue.md +++ b/static/usage/v6/fab/basic/vue.md @@ -13,7 +13,7 @@ import { defineComponent } from 'vue'; export default defineComponent({ - components: { IonFab, IonFabButton, IonFabList, IonIcon }, + components: { IonFab, IonFabButton, IonIcon }, setup() { return { add }; }, diff --git a/static/usage/v7/backdrop/basic/angular/example_component_css.md b/static/usage/v7/backdrop/basic/angular/example_component_css.md new file mode 100644 index 00000000000..5889f31812d --- /dev/null +++ b/static/usage/v7/backdrop/basic/angular/example_component_css.md @@ -0,0 +1,6 @@ +```css +ion-backdrop { + background: var(--ion-color-dark); + opacity: 0.3; +} +``` diff --git a/static/usage/v7/backdrop/basic/angular.md b/static/usage/v7/backdrop/basic/angular/example_component_html.md similarity index 100% rename from static/usage/v7/backdrop/basic/angular.md rename to static/usage/v7/backdrop/basic/angular/example_component_html.md diff --git a/static/usage/v7/backdrop/basic/demo.html b/static/usage/v7/backdrop/basic/demo.html index 355a8bb220a..7c2e9534d41 100644 --- a/static/usage/v7/backdrop/basic/demo.html +++ b/static/usage/v7/backdrop/basic/demo.html @@ -8,6 +8,13 @@ + + diff --git a/static/usage/v7/backdrop/basic/index.md b/static/usage/v7/backdrop/basic/index.md index adf0b9d8d5e..491b5eec6e1 100644 --- a/static/usage/v7/backdrop/basic/index.md +++ b/static/usage/v7/backdrop/basic/index.md @@ -1,13 +1,33 @@ import Playground from '@site/src/components/global/Playground'; import javascript from './javascript.md'; -import react from './react.md'; + +import react_main_tsx from './react/main_tsx.md'; +import react_main_css from './react/main_css.md'; + import vue from './vue.md'; -import angular from './angular.md'; + +import angular_example_component_css from './angular/example_component_css.md'; +import angular_example_component_html from './angular/example_component_html.md'; diff --git a/static/usage/v7/backdrop/basic/javascript.md b/static/usage/v7/backdrop/basic/javascript.md index f74060cbcd1..076580a8b63 100644 --- a/static/usage/v7/backdrop/basic/javascript.md +++ b/static/usage/v7/backdrop/basic/javascript.md @@ -1,4 +1,11 @@ ```html + +
diff --git a/static/usage/v7/backdrop/basic/react/main_css.md b/static/usage/v7/backdrop/basic/react/main_css.md new file mode 100644 index 00000000000..5889f31812d --- /dev/null +++ b/static/usage/v7/backdrop/basic/react/main_css.md @@ -0,0 +1,6 @@ +```css +ion-backdrop { + background: var(--ion-color-dark); + opacity: 0.3; +} +``` diff --git a/static/usage/v7/backdrop/basic/react.md b/static/usage/v7/backdrop/basic/react/main_tsx.md similarity index 96% rename from static/usage/v7/backdrop/basic/react.md rename to static/usage/v7/backdrop/basic/react/main_tsx.md index 518119a0dd8..6d8103f0d1c 100644 --- a/static/usage/v7/backdrop/basic/react.md +++ b/static/usage/v7/backdrop/basic/react/main_tsx.md @@ -11,6 +11,8 @@ import { IonButton, } from '@ionic/react'; +import './main.css'; + function Example() { return ( <> diff --git a/static/usage/v7/backdrop/basic/vue.md b/static/usage/v7/backdrop/basic/vue.md index fe78016963e..247b67c098b 100644 --- a/static/usage/v7/backdrop/basic/vue.md +++ b/static/usage/v7/backdrop/basic/vue.md @@ -1,4 +1,11 @@ ```html + +