Skip to content

Commit 77235fa

Browse files
committed
Fix demo toggles
1 parent 96acbc3 commit 77235fa

18 files changed

Lines changed: 54 additions & 63 deletions

custom-elements.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209
},
210210
{
211211
"kind": "field",
212-
"name": "isIOS26Plus",
212+
"name": "isApple26Plus",
213213
"type": {
214214
"text": "boolean"
215215
},

dist/pwa-install.bundle.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/pwa-install.bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/pwa-install.es.js

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/pwa-install.es.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-legacy/pwa-install.react-legacy.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-legacy/pwa-install.react-legacy.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/types/index.d.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,12 @@ export declare class PWAInstallElement extends LitElement {
2424
isInstallAvailable: boolean;
2525
isAppleMobilePlatform: boolean;
2626
isAppleDesktopPlatform: boolean;
27-
isIOS26Plus: boolean;
27+
isApple26Plus: boolean;
2828
isAndroidFallback: boolean;
2929
isAndroid: boolean;
3030
isUnderStandaloneMode: boolean;
3131
isRelatedAppsInstalled: boolean;
32-
private _pageReflection;
33-
private _resizeTimer;
3432
private _isRTL;
35-
private _lastWindowWidth;
3633
private _manifest;
3734
private _howToRequested;
3835
private _galleryRequested;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import { WebAppManifest } from 'web-app-manifest';
2-
declare const template: (name: string, description: string, installDescription: string, disableDescription: boolean, disableScreenshots: boolean, disableClose: boolean, icon: string, manifest: WebAppManifest, installAvailable: any, hideDialog: any, howToForApple: any, howToRequested: boolean, toggleGallery: any, galleryRequested: boolean, isRTL?: boolean, isIOS26Plus?: boolean) => import("lit").TemplateResult<1>;
2+
declare const template: (name: string, description: string, installDescription: string, disableDescription: boolean, disableScreenshots: boolean, disableClose: boolean, icon: string, manifest: WebAppManifest, installAvailable: any, hideDialog: any, howToForApple: any, howToRequested: boolean, toggleGallery: any, galleryRequested: boolean, isRTL?: boolean, isApple26Plus?: boolean, isDesktop?: boolean) => import("lit").TemplateResult<1>;
33
export default template;

dist/types/utils.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default class Utils {
55
static isAppleDesktop(): boolean;
66
static isAppleMobileNonSafari(): boolean;
77
static isIPad(): boolean;
8-
static isIOS26Plus(): boolean;
8+
static isApple26Plus(): boolean;
99
static getPageBackgroundColor(): string | null;
1010
static isAndroid(): boolean;
1111
static isAndroidFallback(): boolean;

0 commit comments

Comments
 (0)