quasarframework / quasar

Quasar Framework - Build high-performance VueJS user interfaces in record time
https://quasar.dev
MIT License
25.29k stars 3.43k forks source link

fix(ui): make capacitor/cordova config properties type optional #17056

Closed yusufkandemir closed 1 month ago

yusufkandemir commented 1 month ago

What kind of change does this PR introduce?

Does this PR introduce a breaking change?

The PR fulfills these requirements:

Other information:

github-actions[bot] commented 1 month ago

Build Results

JSON API

📜 No changes detected.

Types

📜 Changes detected:

diff --git a/./current-build/types/config.d.ts b/./pr-build/types/config.d.ts
index a828f10..c29792e 100644
--- a/./current-build/types/config.d.ts
+++ b/./pr-build/types/config.d.ts
@@ -1,7 +1,7 @@
 interface NativeMobileWrapperConfiguration {
-  iosStatusBarPadding: boolean;
-  backButton: boolean;
-  backButtonExit: boolean | "*" | string[];
+  iosStatusBarPadding?: boolean;
+  backButton?: boolean;
+  backButtonExit?: boolean | "*" | string[];
 }

 export interface QuasarUIConfiguration {