@incodetech/web 0.0.0-dev-20260611-09d74a69 → 0.0.0-dev-20260611-dc1ec43b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/flow/styles.css
CHANGED
|
@@ -6830,10 +6830,18 @@
|
|
|
6830
6830
|
padding-block: var(--spacing-16, var(--spacing-16, 16px));
|
|
6831
6831
|
}
|
|
6832
6832
|
|
|
6833
|
+
.IncodeGeolocationPage.IncodeGeolocationPermissionPage .IncodePageInner {
|
|
6834
|
+
max-width: 420px;
|
|
6835
|
+
}
|
|
6836
|
+
|
|
6833
6837
|
.IncodeGeolocationPage.IncodeGeolocationPermissionPage .IncodePageTitleContainer {
|
|
6834
6838
|
margin: var(--spacing-0, var(--spacing-none, 0px));
|
|
6835
6839
|
}
|
|
6836
6840
|
|
|
6841
|
+
.IncodeGeolocationPage.IncodeGeolocationPermissionPage .IncodePageTitle {
|
|
6842
|
+
text-align: left;
|
|
6843
|
+
}
|
|
6844
|
+
|
|
6837
6845
|
.IncodeGeolocationPage.IncodeGeolocationPermissionPage .IncodeGeolocationPermissionSections {
|
|
6838
6846
|
margin-top: var(--spacing-24, var(--spacing-24, 24px));
|
|
6839
6847
|
gap: var(--spacing-24, var(--spacing-24, 24px));
|
|
@@ -330,7 +330,7 @@ var android_settings_light_default = "data:image/svg+xml,%3csvg%20width='24'%20h
|
|
|
330
330
|
var switch_icon_default = "data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20width='40'%20height='40'%20rx='8'%20fill='%23FCFCFD'/%3e%3crect%20x='7'%20y='12'%20width='26'%20height='16'%20rx='8'%20fill='%23006AFF'/%3e%3ccircle%20cx='25'%20cy='20'%20r='6'%20fill='white'/%3e%3c/svg%3e";
|
|
331
331
|
//#endregion
|
|
332
332
|
//#region src/modules/geolocation/permissionDenied/GeolocationPermissionStep.tsx
|
|
333
|
-
var stripHtml = (html) => new DOMParser().parseFromString(html, "text/html").body.textContent || "";
|
|
333
|
+
var stripHtml$1 = (html) => new DOMParser().parseFromString(html, "text/html").body.textContent || "";
|
|
334
334
|
var GeolocationPermissionStep = (props) => {
|
|
335
335
|
const { icon, imgClassName } = props;
|
|
336
336
|
const { t } = useTranslation();
|
|
@@ -339,7 +339,7 @@ var GeolocationPermissionStep = (props) => {
|
|
|
339
339
|
children: [
|
|
340
340
|
/* @__PURE__ */ u("span", {
|
|
341
341
|
class: "IncodeGeolocationSrOnly",
|
|
342
|
-
children: props.i18nKey ? stripHtml(t(props.i18nKey)) : props.ariaLabel
|
|
342
|
+
children: props.i18nKey ? stripHtml$1(t(props.i18nKey)) : props.ariaLabel
|
|
343
343
|
}),
|
|
344
344
|
/* @__PURE__ */ u("div", {
|
|
345
345
|
class: "IncodeGeolocationPermissionStepIcon",
|
|
@@ -366,336 +366,195 @@ var GeolocationPermissionStep = (props) => {
|
|
|
366
366
|
//#region src/modules/geolocation/permissionDenied/GeolocationPermissionDeniedAndroid.tsx
|
|
367
367
|
var PADDED_SETTINGS = "IncodeGeolocationPermissionStepImgPaddedSettings";
|
|
368
368
|
var PADDED_BROWSER$1 = "IncodeGeolocationPermissionStepImgPaddedBrowser";
|
|
369
|
-
var
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
textKey: "geolocationv2.returnAndRefresh",
|
|
478
|
-
icon: android_settings_light_default,
|
|
479
|
-
imgClassName: PADDED_SETTINGS
|
|
480
|
-
}
|
|
481
|
-
]
|
|
482
|
-
}];
|
|
483
|
-
var sectionsByBrowser$1 = {
|
|
484
|
-
chrome: chromeSections$1,
|
|
485
|
-
firefox: firefoxSections,
|
|
486
|
-
opera: operaSections,
|
|
487
|
-
edge: chromeSections$1,
|
|
488
|
-
other: otherSections
|
|
369
|
+
var chromeSteps = [
|
|
370
|
+
{
|
|
371
|
+
textKey: "geolocationv2.openSettingsAndroid",
|
|
372
|
+
icon: android_settings_default,
|
|
373
|
+
imgClassName: PADDED_SETTINGS
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
textKey: "geolocationv2.appsChrome",
|
|
377
|
+
icon: chrome_icon_default,
|
|
378
|
+
imgClassName: PADDED_BROWSER$1
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
textKey: "geolocationv2.permissionsLocation",
|
|
382
|
+
icon: android_settings_default,
|
|
383
|
+
imgClassName: PADDED_SETTINGS
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
textKey: "geolocationv2.allowUsing",
|
|
387
|
+
icon: switch_icon_default
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
textKey: "geolocationv2.returnAndRefresh",
|
|
391
|
+
icon: chrome_icon_default,
|
|
392
|
+
imgClassName: PADDED_BROWSER$1
|
|
393
|
+
}
|
|
394
|
+
];
|
|
395
|
+
var firefoxSteps = [
|
|
396
|
+
{
|
|
397
|
+
textKey: "geolocationv2.openSettingsAndroid",
|
|
398
|
+
icon: android_settings_light_default,
|
|
399
|
+
imgClassName: PADDED_SETTINGS
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
textKey: "geolocationv2.appsFirefox",
|
|
403
|
+
icon: firefox_icon_default,
|
|
404
|
+
imgClassName: PADDED_BROWSER$1
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
textKey: "geolocationv2.permissionsLocation",
|
|
408
|
+
icon: android_settings_light_default,
|
|
409
|
+
imgClassName: PADDED_SETTINGS
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
textKey: "geolocationv2.allowUsing",
|
|
413
|
+
icon: switch_icon_default
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
textKey: "geolocationv2.returnAndRefresh",
|
|
417
|
+
icon: firefox_icon_default,
|
|
418
|
+
imgClassName: PADDED_BROWSER$1
|
|
419
|
+
}
|
|
420
|
+
];
|
|
421
|
+
var operaSteps = [
|
|
422
|
+
{
|
|
423
|
+
textKey: "geolocationv2.openSettingsAndroid",
|
|
424
|
+
icon: android_settings_light_default,
|
|
425
|
+
imgClassName: PADDED_SETTINGS
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
textKey: "geolocationv2.appsOpera",
|
|
429
|
+
icon: opera_icon_default
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
textKey: "geolocationv2.permissionsLocation",
|
|
433
|
+
icon: android_settings_light_default,
|
|
434
|
+
imgClassName: PADDED_SETTINGS
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
textKey: "geolocationv2.allowUsing",
|
|
438
|
+
icon: switch_icon_default
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
textKey: "geolocationv2.returnAndRefresh",
|
|
442
|
+
icon: opera_icon_default
|
|
443
|
+
}
|
|
444
|
+
];
|
|
445
|
+
var otherSteps = [
|
|
446
|
+
{
|
|
447
|
+
textKey: "geolocationv2.openSettingsAndroid",
|
|
448
|
+
icon: android_settings_light_default,
|
|
449
|
+
imgClassName: PADDED_SETTINGS
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
textKey: "geolocationv2.appsBrowser",
|
|
453
|
+
icon: android_settings_light_default,
|
|
454
|
+
imgClassName: PADDED_SETTINGS
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
textKey: "geolocationv2.permissionsLocation",
|
|
458
|
+
icon: android_settings_light_default,
|
|
459
|
+
imgClassName: PADDED_SETTINGS
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
textKey: "geolocationv2.allowUsing",
|
|
463
|
+
icon: switch_icon_default
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
textKey: "geolocationv2.returnAndRefresh",
|
|
467
|
+
icon: android_settings_light_default,
|
|
468
|
+
imgClassName: PADDED_SETTINGS
|
|
469
|
+
}
|
|
470
|
+
];
|
|
471
|
+
var stepsByBrowser = {
|
|
472
|
+
chrome: chromeSteps,
|
|
473
|
+
firefox: firefoxSteps,
|
|
474
|
+
opera: operaSteps,
|
|
475
|
+
edge: chromeSteps,
|
|
476
|
+
other: otherSteps
|
|
489
477
|
};
|
|
490
478
|
var GeolocationPermissionDeniedAndroid = () => {
|
|
491
479
|
return /* @__PURE__ */ u("div", {
|
|
492
480
|
class: "IncodeGeolocationPermissionSections",
|
|
493
|
-
children:
|
|
494
|
-
class: "
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
role: "list",
|
|
502
|
-
children: section.steps.map((step) => /* @__PURE__ */ u(GeolocationPermissionStep, {
|
|
503
|
-
icon: step.icon,
|
|
504
|
-
i18nKey: step.textKey,
|
|
505
|
-
imgClassName: step.imgClassName
|
|
506
|
-
}, step.textKey))
|
|
507
|
-
})]
|
|
508
|
-
}, section.titleKey || "default"))
|
|
481
|
+
children: /* @__PURE__ */ u("ol", {
|
|
482
|
+
class: "IncodeGeolocationPermissionStepsList",
|
|
483
|
+
children: (stepsByBrowser[getBrowser()] ?? otherSteps).map((step) => /* @__PURE__ */ u(GeolocationPermissionStep, {
|
|
484
|
+
icon: step.icon,
|
|
485
|
+
i18nKey: step.textKey,
|
|
486
|
+
imgClassName: step.imgClassName
|
|
487
|
+
}, step.textKey))
|
|
488
|
+
})
|
|
509
489
|
});
|
|
510
490
|
};
|
|
511
491
|
//#endregion
|
|
512
492
|
//#region src/modules/geolocation/permissionDenied/GeolocationPermissionDeniedDesktop.tsx
|
|
513
|
-
var
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
children: ariaLabel
|
|
519
|
-
}),
|
|
520
|
-
/* @__PURE__ */ u("div", {
|
|
521
|
-
class: "IncodeDeniedDesktopStepNumberColumn",
|
|
522
|
-
"aria-hidden": "true",
|
|
523
|
-
children: /* @__PURE__ */ u(NumberedStep, { number })
|
|
524
|
-
}),
|
|
525
|
-
/* @__PURE__ */ u("p", {
|
|
526
|
-
class: "IncodeDeniedStepText",
|
|
527
|
-
"aria-hidden": "true",
|
|
528
|
-
children
|
|
529
|
-
})
|
|
530
|
-
]
|
|
531
|
-
});
|
|
532
|
-
var ChromeSteps = () => /* @__PURE__ */ u(k, { children: [
|
|
533
|
-
/* @__PURE__ */ u(Step, {
|
|
534
|
-
number: 1,
|
|
535
|
-
ariaLabel: "Click the lock icon or tune icon in the address bar",
|
|
536
|
-
children: [
|
|
537
|
-
"Click the ",
|
|
538
|
-
/* @__PURE__ */ u("strong", { children: "lock icon" }),
|
|
539
|
-
" or ",
|
|
540
|
-
/* @__PURE__ */ u("strong", { children: "tune icon" }),
|
|
541
|
-
" in the address bar"
|
|
542
|
-
]
|
|
543
|
-
}),
|
|
544
|
-
/* @__PURE__ */ u(Step, {
|
|
545
|
-
number: 2,
|
|
546
|
-
ariaLabel: "Click Site settings",
|
|
547
|
-
children: ["Click ", /* @__PURE__ */ u("strong", { children: "Site settings" })]
|
|
548
|
-
}),
|
|
549
|
-
/* @__PURE__ */ u(Step, {
|
|
550
|
-
number: 3,
|
|
551
|
-
ariaLabel: "Find Location and change to Allow",
|
|
552
|
-
children: [
|
|
553
|
-
"Find ",
|
|
554
|
-
/* @__PURE__ */ u("strong", { children: "Location" }),
|
|
555
|
-
" and change to ",
|
|
556
|
-
/* @__PURE__ */ u("strong", { children: "Allow" })
|
|
557
|
-
]
|
|
558
|
-
}),
|
|
559
|
-
/* @__PURE__ */ u(Step, {
|
|
560
|
-
number: 4,
|
|
561
|
-
ariaLabel: "Return to this page and refresh",
|
|
562
|
-
children: ["Return to this page and ", /* @__PURE__ */ u("strong", { children: "refresh" })]
|
|
563
|
-
})
|
|
564
|
-
] });
|
|
565
|
-
var FirefoxSteps = () => /* @__PURE__ */ u(k, { children: [
|
|
566
|
-
/* @__PURE__ */ u(Step, {
|
|
567
|
-
number: 1,
|
|
568
|
-
ariaLabel: "Click the lock icon in the address bar",
|
|
569
|
-
children: [
|
|
570
|
-
"Click the ",
|
|
571
|
-
/* @__PURE__ */ u("strong", { children: "lock icon" }),
|
|
572
|
-
" in the address bar"
|
|
573
|
-
]
|
|
574
|
-
}),
|
|
575
|
-
/* @__PURE__ */ u(Step, {
|
|
576
|
-
number: 2,
|
|
577
|
-
ariaLabel: "Click Connection secure, then More information",
|
|
578
|
-
children: [
|
|
579
|
-
"Click ",
|
|
580
|
-
/* @__PURE__ */ u("strong", { children: "Connection secure" }),
|
|
581
|
-
", then",
|
|
582
|
-
" ",
|
|
583
|
-
/* @__PURE__ */ u("strong", { children: "More information" })
|
|
584
|
-
]
|
|
585
|
-
}),
|
|
586
|
-
/* @__PURE__ */ u(Step, {
|
|
587
|
-
number: 3,
|
|
588
|
-
ariaLabel: "Go to Permissions tab, find Access Your Location",
|
|
589
|
-
children: [
|
|
590
|
-
"Go to ",
|
|
591
|
-
/* @__PURE__ */ u("strong", { children: "Permissions" }),
|
|
592
|
-
" tab, find",
|
|
593
|
-
" ",
|
|
594
|
-
/* @__PURE__ */ u("strong", { children: "Access Your Location" })
|
|
595
|
-
]
|
|
596
|
-
}),
|
|
597
|
-
/* @__PURE__ */ u(Step, {
|
|
598
|
-
number: 4,
|
|
599
|
-
ariaLabel: "Uncheck Use Default and select Allow",
|
|
600
|
-
children: [
|
|
601
|
-
"Uncheck ",
|
|
602
|
-
/* @__PURE__ */ u("strong", { children: "Use Default" }),
|
|
603
|
-
" and select ",
|
|
604
|
-
/* @__PURE__ */ u("strong", { children: "Allow" })
|
|
605
|
-
]
|
|
606
|
-
}),
|
|
607
|
-
/* @__PURE__ */ u(Step, {
|
|
608
|
-
number: 5,
|
|
609
|
-
ariaLabel: "Return to this page and refresh",
|
|
610
|
-
children: ["Return to this page and ", /* @__PURE__ */ u("strong", { children: "refresh" })]
|
|
611
|
-
})
|
|
612
|
-
] });
|
|
613
|
-
var SafariSteps = () => /* @__PURE__ */ u(k, { children: [
|
|
614
|
-
/* @__PURE__ */ u(Step, {
|
|
615
|
-
number: 1,
|
|
616
|
-
ariaLabel: "Open Safari menu, then Settings",
|
|
617
|
-
children: [
|
|
618
|
-
"Open ",
|
|
619
|
-
/* @__PURE__ */ u("strong", { children: "Safari" }),
|
|
620
|
-
" menu, then ",
|
|
621
|
-
/* @__PURE__ */ u("strong", { children: "Settings" })
|
|
622
|
-
]
|
|
623
|
-
}),
|
|
624
|
-
/* @__PURE__ */ u(Step, {
|
|
625
|
-
number: 2,
|
|
626
|
-
ariaLabel: "Go to the Websites tab",
|
|
627
|
-
children: [
|
|
628
|
-
"Go to the ",
|
|
629
|
-
/* @__PURE__ */ u("strong", { children: "Websites" }),
|
|
630
|
-
" tab"
|
|
631
|
-
]
|
|
632
|
-
}),
|
|
633
|
-
/* @__PURE__ */ u(Step, {
|
|
634
|
-
number: 3,
|
|
635
|
-
ariaLabel: "Click Location in the sidebar",
|
|
636
|
-
children: [
|
|
637
|
-
"Click ",
|
|
638
|
-
/* @__PURE__ */ u("strong", { children: "Location" }),
|
|
639
|
-
" in the sidebar"
|
|
640
|
-
]
|
|
641
|
-
}),
|
|
642
|
-
/* @__PURE__ */ u(Step, {
|
|
643
|
-
number: 4,
|
|
644
|
-
ariaLabel: "Set this website to Allow",
|
|
645
|
-
children: ["Set this website to ", /* @__PURE__ */ u("strong", { children: "Allow" })]
|
|
646
|
-
}),
|
|
647
|
-
/* @__PURE__ */ u(Step, {
|
|
648
|
-
number: 5,
|
|
649
|
-
ariaLabel: "Return to this page and refresh",
|
|
650
|
-
children: ["Return to this page and ", /* @__PURE__ */ u("strong", { children: "refresh" })]
|
|
651
|
-
})
|
|
652
|
-
] });
|
|
653
|
-
var OperaSteps = () => /* @__PURE__ */ u(k, { children: [
|
|
654
|
-
/* @__PURE__ */ u(Step, {
|
|
655
|
-
number: 1,
|
|
656
|
-
ariaLabel: "Click the lock icon in the address bar",
|
|
657
|
-
children: [
|
|
658
|
-
"Click the ",
|
|
659
|
-
/* @__PURE__ */ u("strong", { children: "lock icon" }),
|
|
660
|
-
" in the address bar"
|
|
661
|
-
]
|
|
662
|
-
}),
|
|
663
|
-
/* @__PURE__ */ u(Step, {
|
|
664
|
-
number: 2,
|
|
665
|
-
ariaLabel: "Click Site settings",
|
|
666
|
-
children: ["Click ", /* @__PURE__ */ u("strong", { children: "Site settings" })]
|
|
667
|
-
}),
|
|
668
|
-
/* @__PURE__ */ u(Step, {
|
|
669
|
-
number: 3,
|
|
670
|
-
ariaLabel: "Find Location and change to Allow",
|
|
493
|
+
var stripHtml = (html) => new DOMParser().parseFromString(html, "text/html").body.textContent || "";
|
|
494
|
+
var Step = ({ number, i18nKey }) => {
|
|
495
|
+
const { t } = useTranslation();
|
|
496
|
+
return /* @__PURE__ */ u("li", {
|
|
497
|
+
class: "IncodeDeniedDesktopStep",
|
|
671
498
|
children: [
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
499
|
+
/* @__PURE__ */ u("span", {
|
|
500
|
+
class: "IncodeGeolocationSrOnly",
|
|
501
|
+
children: stripHtml(t(i18nKey))
|
|
502
|
+
}),
|
|
503
|
+
/* @__PURE__ */ u("div", {
|
|
504
|
+
class: "IncodeDeniedDesktopStepNumberColumn",
|
|
505
|
+
"aria-hidden": "true",
|
|
506
|
+
children: /* @__PURE__ */ u(NumberedStep, { number })
|
|
507
|
+
}),
|
|
508
|
+
/* @__PURE__ */ u("p", {
|
|
509
|
+
class: "IncodeDeniedStepText",
|
|
510
|
+
"aria-hidden": "true",
|
|
511
|
+
children: /* @__PURE__ */ u(Trans, {
|
|
512
|
+
i18nKey,
|
|
513
|
+
boldClass: "IncodeGeolocationPermissionStepTextBold"
|
|
514
|
+
})
|
|
515
|
+
})
|
|
676
516
|
]
|
|
677
|
-
})
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
firefox:
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
517
|
+
});
|
|
518
|
+
};
|
|
519
|
+
var stepKeysByBrowser = {
|
|
520
|
+
chrome: [
|
|
521
|
+
"geolocationv2.desktop.chrome.step1",
|
|
522
|
+
"geolocationv2.desktop.chrome.step2",
|
|
523
|
+
"geolocationv2.desktop.chrome.step3",
|
|
524
|
+
"geolocationv2.desktop.chrome.step4"
|
|
525
|
+
],
|
|
526
|
+
firefox: [
|
|
527
|
+
"geolocationv2.desktop.firefox.step1",
|
|
528
|
+
"geolocationv2.desktop.firefox.step2",
|
|
529
|
+
"geolocationv2.desktop.firefox.step3",
|
|
530
|
+
"geolocationv2.desktop.firefox.step4",
|
|
531
|
+
"geolocationv2.desktop.firefox.step5"
|
|
532
|
+
],
|
|
533
|
+
safari: [
|
|
534
|
+
"geolocationv2.desktop.safari.step1",
|
|
535
|
+
"geolocationv2.desktop.safari.step2",
|
|
536
|
+
"geolocationv2.desktop.safari.step3",
|
|
537
|
+
"geolocationv2.desktop.safari.step4",
|
|
538
|
+
"geolocationv2.desktop.safari.step5"
|
|
539
|
+
],
|
|
540
|
+
opera: [
|
|
541
|
+
"geolocationv2.desktop.opera.step1",
|
|
542
|
+
"geolocationv2.desktop.opera.step2",
|
|
543
|
+
"geolocationv2.desktop.opera.step3",
|
|
544
|
+
"geolocationv2.desktop.opera.step4"
|
|
545
|
+
]
|
|
691
546
|
};
|
|
547
|
+
stepKeysByBrowser.edge = stepKeysByBrowser.chrome;
|
|
548
|
+
stepKeysByBrowser.other = stepKeysByBrowser.chrome;
|
|
692
549
|
var GeolocationPermissionDeniedDesktop = () => {
|
|
693
550
|
return /* @__PURE__ */ u("div", {
|
|
694
551
|
class: "IncodeGeolocationPermissionSections",
|
|
695
552
|
children: /* @__PURE__ */ u("ol", {
|
|
696
553
|
class: "IncodeDeniedDesktopContainer",
|
|
697
|
-
|
|
698
|
-
|
|
554
|
+
children: (stepKeysByBrowser[getBrowser()] ?? stepKeysByBrowser.chrome ?? []).map((key, index) => /* @__PURE__ */ u(Step, {
|
|
555
|
+
number: index + 1,
|
|
556
|
+
i18nKey: key
|
|
557
|
+
}, key))
|
|
699
558
|
})
|
|
700
559
|
});
|
|
701
560
|
};
|
|
@@ -43,10 +43,18 @@
|
|
|
43
43
|
padding-block: var(--spacing-16, var(--spacing-16, 16px));
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
+
.IncodeGeolocationPage.IncodeGeolocationPermissionPage .IncodePageInner {
|
|
47
|
+
max-width: 420px;
|
|
48
|
+
}
|
|
49
|
+
|
|
46
50
|
.IncodeGeolocationPage.IncodeGeolocationPermissionPage .IncodePageTitleContainer {
|
|
47
51
|
margin: var(--spacing-0, var(--spacing-none, 0px));
|
|
48
52
|
}
|
|
49
53
|
|
|
54
|
+
.IncodeGeolocationPage.IncodeGeolocationPermissionPage .IncodePageTitle {
|
|
55
|
+
text-align: left;
|
|
56
|
+
}
|
|
57
|
+
|
|
50
58
|
.IncodeGeolocationPage.IncodeGeolocationPermissionPage .IncodeGeolocationPermissionSections {
|
|
51
59
|
margin-top: var(--spacing-24, var(--spacing-24, 24px));
|
|
52
60
|
gap: var(--spacing-24, var(--spacing-24, 24px));
|
package/dist/workflow/styles.css
CHANGED
|
@@ -5979,10 +5979,18 @@
|
|
|
5979
5979
|
padding-block: var(--spacing-16, var(--spacing-16, 16px));
|
|
5980
5980
|
}
|
|
5981
5981
|
|
|
5982
|
+
.IncodeGeolocationPage.IncodeGeolocationPermissionPage .IncodePageInner {
|
|
5983
|
+
max-width: 420px;
|
|
5984
|
+
}
|
|
5985
|
+
|
|
5982
5986
|
.IncodeGeolocationPage.IncodeGeolocationPermissionPage .IncodePageTitleContainer {
|
|
5983
5987
|
margin: var(--spacing-0, var(--spacing-none, 0px));
|
|
5984
5988
|
}
|
|
5985
5989
|
|
|
5990
|
+
.IncodeGeolocationPage.IncodeGeolocationPermissionPage .IncodePageTitle {
|
|
5991
|
+
text-align: left;
|
|
5992
|
+
}
|
|
5993
|
+
|
|
5986
5994
|
.IncodeGeolocationPage.IncodeGeolocationPermissionPage .IncodeGeolocationPermissionSections {
|
|
5987
5995
|
margin-top: var(--spacing-24, var(--spacing-24, 24px));
|
|
5988
5996
|
gap: var(--spacing-24, var(--spacing-24, 24px));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@incodetech/web",
|
|
3
|
-
"version": "0.0.0-dev-20260611-
|
|
3
|
+
"version": "0.0.0-dev-20260611-dc1ec43b",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/IncodeTechnologies/incode-web-sdk.git"
|
|
@@ -255,7 +255,7 @@
|
|
|
255
255
|
"qrcode": "^1.5.4",
|
|
256
256
|
"signature_pad": "^5.1.3",
|
|
257
257
|
"tailwindcss": "^4.1.17",
|
|
258
|
-
"@incodetech/core": "0.0.0-dev-20260611-
|
|
258
|
+
"@incodetech/core": "0.0.0-dev-20260611-dc1ec43b"
|
|
259
259
|
},
|
|
260
260
|
"devDependencies": {
|
|
261
261
|
"@microsoft/api-extractor": "^7.53.3",
|