@capacitor/dialog
Advanced tools
Comparing version 1.0.7 to 4.0.0-beta.0
@@ -6,2 +6,29 @@ # Change Log | ||
# 4.0.0-beta.0 (2022-06-27) | ||
### Bug Fixes | ||
* add es2017 lib to tsconfig ([#180](https://github.com/ionic-team/capacitor-plugins/issues/180)) ([2c3776c](https://github.com/ionic-team/capacitor-plugins/commit/2c3776c38ca025c5ee965dec10ccf1cdb6c02e2f)) | ||
* correct addListeners links ([#655](https://github.com/ionic-team/capacitor-plugins/issues/655)) ([f9871e7](https://github.com/ionic-team/capacitor-plugins/commit/f9871e7bd53478addb21155e148829f550c0e457)) | ||
* inline source code in esm map files ([#760](https://github.com/ionic-team/capacitor-plugins/issues/760)) ([a960489](https://github.com/ionic-team/capacitor-plugins/commit/a960489a19db0182b90d187a50deff9dfbe51038)) | ||
* remove postpublish scripts ([#656](https://github.com/ionic-team/capacitor-plugins/issues/656)) ([ed6ac49](https://github.com/ionic-team/capacitor-plugins/commit/ed6ac499ebf4a47525071ccbfc36c27503e11f60)) | ||
* **dialogs:** put cancel button of confirm/prompt on the left ([#346](https://github.com/ionic-team/capacitor-plugins/issues/346)) ([1ac23db](https://github.com/ionic-team/capacitor-plugins/commit/1ac23db5162fa94742f18f00daf87a62a63f8dca)) | ||
* support deprecated types from Capacitor 2 ([#139](https://github.com/ionic-team/capacitor-plugins/issues/139)) ([2d7127a](https://github.com/ionic-team/capacitor-plugins/commit/2d7127a488e26f0287951921a6db47c49d817336)) | ||
### Features | ||
* set targetSDK default value to 32 ([#970](https://github.com/ionic-team/capacitor-plugins/issues/970)) ([fa70d96](https://github.com/ionic-team/capacitor-plugins/commit/fa70d96f141af751aae53ceb5642c46b204f5958)) | ||
* **dialog:** Make title optional ([#940](https://github.com/ionic-team/capacitor-plugins/issues/940)) ([497f627](https://github.com/ionic-team/capacitor-plugins/commit/497f6275ee6bc71295403e2cdc5a74b9cc31a310)) | ||
* add commonjs output format ([#179](https://github.com/ionic-team/capacitor-plugins/issues/179)) ([8e9e098](https://github.com/ionic-team/capacitor-plugins/commit/8e9e09862064b3f6771d7facbc4008e995d9b463)) | ||
* Dialog plugin ([#44](https://github.com/ionic-team/capacitor-plugins/issues/44)) ([d7f0dd5](https://github.com/ionic-team/capacitor-plugins/commit/d7f0dd547699734aa44528d01662e6f984668121)) | ||
* set targetSDK default value to 31 ([#824](https://github.com/ionic-team/capacitor-plugins/issues/824)) ([3ee10de](https://github.com/ionic-team/capacitor-plugins/commit/3ee10de98067984c1a4e75295d001c5a895c47f4)) | ||
* Upgrade gradle to 7.4 ([#826](https://github.com/ionic-team/capacitor-plugins/issues/826)) ([5db0906](https://github.com/ionic-team/capacitor-plugins/commit/5db0906f6264287c4f8e69dbaecf19d4d387824b)) | ||
* Use java 11 ([#910](https://github.com/ionic-team/capacitor-plugins/issues/910)) ([5acb2a2](https://github.com/ionic-team/capacitor-plugins/commit/5acb2a288a413492b163e4e97da46a085d9e4be0)) | ||
## [1.0.7](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/dialog@1.0.6...@capacitor/dialog@1.0.7) (2022-01-19) | ||
@@ -8,0 +35,0 @@ |
@@ -100,3 +100,3 @@ { | ||
"complexTypes": [], | ||
"type": "string" | ||
"type": "string | undefined" | ||
}, | ||
@@ -183,3 +183,3 @@ { | ||
"complexTypes": [], | ||
"type": "string" | ||
"type": "string | undefined" | ||
}, | ||
@@ -294,3 +294,3 @@ { | ||
"complexTypes": [], | ||
"type": "string" | ||
"type": "string | undefined" | ||
}, | ||
@@ -297,0 +297,0 @@ { |
@@ -7,3 +7,3 @@ export interface AlertOptions { | ||
*/ | ||
title: string; | ||
title?: string; | ||
/** | ||
@@ -29,3 +29,3 @@ * Message to show on the dialog. | ||
*/ | ||
title: string; | ||
title?: string; | ||
/** | ||
@@ -70,3 +70,3 @@ * Message to show on the dialog. | ||
*/ | ||
title: string; | ||
title?: string; | ||
/** | ||
@@ -73,0 +73,0 @@ * Message to show on the dialog. |
{ | ||
"name": "@capacitor/dialog", | ||
"version": "1.0.7", | ||
"version": "4.0.0-beta.0", | ||
"description": "The Dialog API provides methods for triggering native dialog windows for alerts, confirmations, and input prompts", | ||
@@ -32,3 +32,3 @@ "main": "dist/plugin.cjs.js", | ||
"verify": "npm run verify:ios && npm run verify:android && npm run verify:web", | ||
"verify:ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin && cd ..", | ||
"verify:ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin -destination generic/platform=iOS && cd ..", | ||
"verify:android": "cd android && ./gradlew clean build test && cd ..", | ||
@@ -49,6 +49,6 @@ "verify:web": "npm run build", | ||
"devDependencies": { | ||
"@capacitor/android": "^3.0.0", | ||
"@capacitor/core": "^3.0.0", | ||
"@capacitor/android": "next", | ||
"@capacitor/core": "next", | ||
"@capacitor/docgen": "0.0.18", | ||
"@capacitor/ios": "^3.0.0", | ||
"@capacitor/ios": "next", | ||
"@ionic/eslint-config": "^0.3.0", | ||
@@ -66,3 +66,3 @@ "@ionic/prettier-config": "~1.0.1", | ||
"peerDependencies": { | ||
"@capacitor/core": "^3.0.0" | ||
"@capacitor/core": "next" | ||
}, | ||
@@ -85,3 +85,3 @@ "prettier": "@ionic/prettier-config", | ||
}, | ||
"gitHead": "f18ee6482e1ec8e5fb0290d51f598397133af990" | ||
"gitHead": "fd7db8285f72990522da0adc889514c9804b6dae" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
59178
2