pushfeedback 0.1.71 → 0.1.73
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/cjs/canvas-editor_3.cjs.entry.js +33 -36
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/pushfeedback.cjs.js +1 -1
- package/dist/collection/components/feedback-button/feedback-button.js +116 -136
- package/dist/collection/components/feedback-modal/feedback-modal.js +38 -57
- package/dist/components/feedback-button.js +39 -42
- package/dist/components/feedback-modal2.js +18 -20
- package/dist/esm/canvas-editor_3.entry.js +33 -36
- package/dist/esm/loader.js +1 -1
- package/dist/esm/pushfeedback.js +1 -1
- package/dist/pushfeedback/p-13176c77.entry.js +1 -0
- package/dist/pushfeedback/pushfeedback.esm.js +1 -1
- package/dist/types/components/feedback-button/feedback-button.d.ts +16 -17
- package/dist/types/components/feedback-modal/feedback-modal.d.ts +8 -9
- package/dist/types/components.d.ts +28 -32
- package/package.json +1 -1
- package/dist/pushfeedback/p-2c39091c.entry.js +0 -1
|
@@ -20,20 +20,6 @@ export class FeedbackButton {
|
|
|
20
20
|
this.project = '';
|
|
21
21
|
this.rating = undefined;
|
|
22
22
|
this.ratingMode = 'thumbs';
|
|
23
|
-
this.canvasEditorTitle = 'Edit screenshot';
|
|
24
|
-
this.canvasEditorCancelText = 'Cancel';
|
|
25
|
-
this.canvasEditorSaveText = 'Save';
|
|
26
|
-
this.editTextButtonText = 'Edit Text';
|
|
27
|
-
this.sizeLabelText = 'Size:';
|
|
28
|
-
this.borderLabelText = 'Border:';
|
|
29
|
-
this.editTextPromptText = 'Edit text:';
|
|
30
|
-
this.screenshotErrorGeneral = 'Failed to capture screenshot.';
|
|
31
|
-
this.screenshotErrorPermission = 'Permission denied. Please allow screen sharing to take screenshots.';
|
|
32
|
-
this.screenshotErrorNotSupported = 'Screen capture is not supported in this browser.';
|
|
33
|
-
this.screenshotErrorNotFound = 'No screen sources available for capture.';
|
|
34
|
-
this.screenshotErrorCancelled = 'Screenshot capture was cancelled.';
|
|
35
|
-
this.screenshotErrorBrowserNotSupported = 'Your browser does not support screen capture. Please use a browser like Chrome, Firefox, or Safari.';
|
|
36
|
-
this.screenshotErrorUnexpected = 'An unexpected error occurred. Please try again.';
|
|
37
23
|
this.emailPlaceholder = 'Email address (optional)';
|
|
38
24
|
this.errorMessage = 'Please try again later.';
|
|
39
25
|
this.errorMessage403 = 'The request URL does not match the one defined in PushFeedback for this project.';
|
|
@@ -46,12 +32,25 @@ export class FeedbackButton {
|
|
|
46
32
|
this.privacyPolicyText = "I have read and expressly consent to the terms of the <a href='https://pushfeedback.com/privacy'>Privacy Policy</a>.";
|
|
47
33
|
this.ratingPlaceholder = 'Was this page helpful?';
|
|
48
34
|
this.ratingStarsPlaceholder = 'How would you rate this page?';
|
|
35
|
+
this.sendButtonText = 'Send';
|
|
36
|
+
this.successMessage = '';
|
|
49
37
|
this.screenshotAttachedText = 'Screenshot attached';
|
|
50
38
|
this.screenshotButtonText = 'Add a screenshot';
|
|
51
39
|
this.screenshotTakingText = 'Taking screenshot...';
|
|
52
|
-
this.
|
|
53
|
-
this.
|
|
54
|
-
this.
|
|
40
|
+
this.screenshotEditTextButtonText = 'Edit text';
|
|
41
|
+
this.screenshotEditorTitle = 'Edit screenshot';
|
|
42
|
+
this.screenshotEditorCancelText = 'Cancel';
|
|
43
|
+
this.screenshotEditorSaveText = 'Save';
|
|
44
|
+
this.screenshotSizeLabelText = 'Size:';
|
|
45
|
+
this.screenshotBorderLabelText = 'Border:';
|
|
46
|
+
this.screenshotEditTextPromptText = 'Edit text:';
|
|
47
|
+
this.screenshotErrorGeneral = 'Failed to capture screenshot.';
|
|
48
|
+
this.screenshotErrorPermission = 'Permission denied. Please allow screen sharing to take screenshots.';
|
|
49
|
+
this.screenshotErrorNotSupported = 'Screen capture is not supported in this browser.';
|
|
50
|
+
this.screenshotErrorNotFound = 'No screen sources available for capture.';
|
|
51
|
+
this.screenshotErrorCancelled = 'Screenshot capture was cancelled.';
|
|
52
|
+
this.screenshotErrorBrowserNotSupported = 'Your browser does not support screen capture. Please use a browser like Chrome, Firefox, or Safari on desktop.';
|
|
53
|
+
this.screenshotErrorUnexpected = 'An unexpected error occurred. Please try again.';
|
|
55
54
|
}
|
|
56
55
|
componentWillLoad() {
|
|
57
56
|
if (!this.sessionId) {
|
|
@@ -94,13 +93,13 @@ export class FeedbackButton {
|
|
|
94
93
|
'project',
|
|
95
94
|
'rating',
|
|
96
95
|
'ratingMode',
|
|
97
|
-
'
|
|
98
|
-
'
|
|
99
|
-
'
|
|
100
|
-
'
|
|
101
|
-
'
|
|
102
|
-
'
|
|
103
|
-
'
|
|
96
|
+
'screenshotEditorTitle',
|
|
97
|
+
'screenshotEditorCancelText',
|
|
98
|
+
'screenshotEditorSaveText',
|
|
99
|
+
'screenshotEditTextButtonText',
|
|
100
|
+
'screenshotSizeLabelText',
|
|
101
|
+
'screenshotBorderLabelText',
|
|
102
|
+
'screenshotEditTextPromptText',
|
|
104
103
|
'screenshotErrorGeneral',
|
|
105
104
|
'screenshotErrorPermission',
|
|
106
105
|
'screenshotErrorNotSupported',
|
|
@@ -124,7 +123,6 @@ export class FeedbackButton {
|
|
|
124
123
|
'screenshotAttachedText',
|
|
125
124
|
'screenshotButtonText',
|
|
126
125
|
'screenshotTakingText',
|
|
127
|
-
'screenshotTopbarText',
|
|
128
126
|
'sendButtonText',
|
|
129
127
|
'successMessage',
|
|
130
128
|
];
|
|
@@ -554,25 +552,7 @@ export class FeedbackButton {
|
|
|
554
552
|
"reflect": false,
|
|
555
553
|
"defaultValue": "'thumbs'"
|
|
556
554
|
},
|
|
557
|
-
"
|
|
558
|
-
"type": "string",
|
|
559
|
-
"mutable": false,
|
|
560
|
-
"complexType": {
|
|
561
|
-
"original": "string",
|
|
562
|
-
"resolved": "string",
|
|
563
|
-
"references": {}
|
|
564
|
-
},
|
|
565
|
-
"required": false,
|
|
566
|
-
"optional": false,
|
|
567
|
-
"docs": {
|
|
568
|
-
"tags": [],
|
|
569
|
-
"text": ""
|
|
570
|
-
},
|
|
571
|
-
"attribute": "canvas-editor-title",
|
|
572
|
-
"reflect": false,
|
|
573
|
-
"defaultValue": "'Edit screenshot'"
|
|
574
|
-
},
|
|
575
|
-
"canvasEditorCancelText": {
|
|
555
|
+
"emailPlaceholder": {
|
|
576
556
|
"type": "string",
|
|
577
557
|
"mutable": false,
|
|
578
558
|
"complexType": {
|
|
@@ -586,11 +566,11 @@ export class FeedbackButton {
|
|
|
586
566
|
"tags": [],
|
|
587
567
|
"text": ""
|
|
588
568
|
},
|
|
589
|
-
"attribute": "
|
|
569
|
+
"attribute": "email-placeholder",
|
|
590
570
|
"reflect": false,
|
|
591
|
-
"defaultValue": "'
|
|
571
|
+
"defaultValue": "'Email address (optional)'"
|
|
592
572
|
},
|
|
593
|
-
"
|
|
573
|
+
"errorMessage": {
|
|
594
574
|
"type": "string",
|
|
595
575
|
"mutable": false,
|
|
596
576
|
"complexType": {
|
|
@@ -604,11 +584,11 @@ export class FeedbackButton {
|
|
|
604
584
|
"tags": [],
|
|
605
585
|
"text": ""
|
|
606
586
|
},
|
|
607
|
-
"attribute": "
|
|
587
|
+
"attribute": "error-message",
|
|
608
588
|
"reflect": false,
|
|
609
|
-
"defaultValue": "'
|
|
589
|
+
"defaultValue": "'Please try again later.'"
|
|
610
590
|
},
|
|
611
|
-
"
|
|
591
|
+
"errorMessage403": {
|
|
612
592
|
"type": "string",
|
|
613
593
|
"mutable": false,
|
|
614
594
|
"complexType": {
|
|
@@ -622,11 +602,11 @@ export class FeedbackButton {
|
|
|
622
602
|
"tags": [],
|
|
623
603
|
"text": ""
|
|
624
604
|
},
|
|
625
|
-
"attribute": "
|
|
605
|
+
"attribute": "error-message-4-0-3",
|
|
626
606
|
"reflect": false,
|
|
627
|
-
"defaultValue": "'
|
|
607
|
+
"defaultValue": "'The request URL does not match the one defined in PushFeedback for this project.'"
|
|
628
608
|
},
|
|
629
|
-
"
|
|
609
|
+
"errorMessage404": {
|
|
630
610
|
"type": "string",
|
|
631
611
|
"mutable": false,
|
|
632
612
|
"complexType": {
|
|
@@ -640,11 +620,11 @@ export class FeedbackButton {
|
|
|
640
620
|
"tags": [],
|
|
641
621
|
"text": ""
|
|
642
622
|
},
|
|
643
|
-
"attribute": "
|
|
623
|
+
"attribute": "error-message-4-0-4",
|
|
644
624
|
"reflect": false,
|
|
645
|
-
"defaultValue": "'
|
|
625
|
+
"defaultValue": "'We could not find the provided project id in PushFeedback.'"
|
|
646
626
|
},
|
|
647
|
-
"
|
|
627
|
+
"footerText": {
|
|
648
628
|
"type": "string",
|
|
649
629
|
"mutable": false,
|
|
650
630
|
"complexType": {
|
|
@@ -658,11 +638,11 @@ export class FeedbackButton {
|
|
|
658
638
|
"tags": [],
|
|
659
639
|
"text": ""
|
|
660
640
|
},
|
|
661
|
-
"attribute": "
|
|
641
|
+
"attribute": "footer-text",
|
|
662
642
|
"reflect": false,
|
|
663
|
-
"defaultValue": "'
|
|
643
|
+
"defaultValue": "''"
|
|
664
644
|
},
|
|
665
|
-
"
|
|
645
|
+
"messagePlaceholder": {
|
|
666
646
|
"type": "string",
|
|
667
647
|
"mutable": false,
|
|
668
648
|
"complexType": {
|
|
@@ -676,11 +656,11 @@ export class FeedbackButton {
|
|
|
676
656
|
"tags": [],
|
|
677
657
|
"text": ""
|
|
678
658
|
},
|
|
679
|
-
"attribute": "
|
|
659
|
+
"attribute": "message-placeholder",
|
|
680
660
|
"reflect": false,
|
|
681
|
-
"defaultValue": "'
|
|
661
|
+
"defaultValue": "'Comments'"
|
|
682
662
|
},
|
|
683
|
-
"
|
|
663
|
+
"modalTitle": {
|
|
684
664
|
"type": "string",
|
|
685
665
|
"mutable": false,
|
|
686
666
|
"complexType": {
|
|
@@ -694,11 +674,11 @@ export class FeedbackButton {
|
|
|
694
674
|
"tags": [],
|
|
695
675
|
"text": ""
|
|
696
676
|
},
|
|
697
|
-
"attribute": "
|
|
677
|
+
"attribute": "modal-title",
|
|
698
678
|
"reflect": false,
|
|
699
|
-
"defaultValue": "'
|
|
679
|
+
"defaultValue": "'Share your feedback'"
|
|
700
680
|
},
|
|
701
|
-
"
|
|
681
|
+
"modalTitleError": {
|
|
702
682
|
"type": "string",
|
|
703
683
|
"mutable": false,
|
|
704
684
|
"complexType": {
|
|
@@ -712,11 +692,11 @@ export class FeedbackButton {
|
|
|
712
692
|
"tags": [],
|
|
713
693
|
"text": ""
|
|
714
694
|
},
|
|
715
|
-
"attribute": "
|
|
695
|
+
"attribute": "modal-title-error",
|
|
716
696
|
"reflect": false,
|
|
717
|
-
"defaultValue": "'
|
|
697
|
+
"defaultValue": "'Oops!'"
|
|
718
698
|
},
|
|
719
|
-
"
|
|
699
|
+
"modalTitleSuccess": {
|
|
720
700
|
"type": "string",
|
|
721
701
|
"mutable": false,
|
|
722
702
|
"complexType": {
|
|
@@ -730,11 +710,11 @@ export class FeedbackButton {
|
|
|
730
710
|
"tags": [],
|
|
731
711
|
"text": ""
|
|
732
712
|
},
|
|
733
|
-
"attribute": "
|
|
713
|
+
"attribute": "modal-title-success",
|
|
734
714
|
"reflect": false,
|
|
735
|
-
"defaultValue": "'
|
|
715
|
+
"defaultValue": "'Thanks for your feedback!'"
|
|
736
716
|
},
|
|
737
|
-
"
|
|
717
|
+
"privacyPolicyText": {
|
|
738
718
|
"type": "string",
|
|
739
719
|
"mutable": false,
|
|
740
720
|
"complexType": {
|
|
@@ -748,11 +728,11 @@ export class FeedbackButton {
|
|
|
748
728
|
"tags": [],
|
|
749
729
|
"text": ""
|
|
750
730
|
},
|
|
751
|
-
"attribute": "
|
|
731
|
+
"attribute": "privacy-policy-text",
|
|
752
732
|
"reflect": false,
|
|
753
|
-
"defaultValue": "
|
|
733
|
+
"defaultValue": "\"I have read and expressly consent to the terms of the <a href='https://pushfeedback.com/privacy'>Privacy Policy</a>.\""
|
|
754
734
|
},
|
|
755
|
-
"
|
|
735
|
+
"ratingPlaceholder": {
|
|
756
736
|
"type": "string",
|
|
757
737
|
"mutable": false,
|
|
758
738
|
"complexType": {
|
|
@@ -766,11 +746,11 @@ export class FeedbackButton {
|
|
|
766
746
|
"tags": [],
|
|
767
747
|
"text": ""
|
|
768
748
|
},
|
|
769
|
-
"attribute": "
|
|
749
|
+
"attribute": "rating-placeholder",
|
|
770
750
|
"reflect": false,
|
|
771
|
-
"defaultValue": "'
|
|
751
|
+
"defaultValue": "'Was this page helpful?'"
|
|
772
752
|
},
|
|
773
|
-
"
|
|
753
|
+
"ratingStarsPlaceholder": {
|
|
774
754
|
"type": "string",
|
|
775
755
|
"mutable": false,
|
|
776
756
|
"complexType": {
|
|
@@ -784,11 +764,11 @@ export class FeedbackButton {
|
|
|
784
764
|
"tags": [],
|
|
785
765
|
"text": ""
|
|
786
766
|
},
|
|
787
|
-
"attribute": "
|
|
767
|
+
"attribute": "rating-stars-placeholder",
|
|
788
768
|
"reflect": false,
|
|
789
|
-
"defaultValue": "'
|
|
769
|
+
"defaultValue": "'How would you rate this page?'"
|
|
790
770
|
},
|
|
791
|
-
"
|
|
771
|
+
"sendButtonText": {
|
|
792
772
|
"type": "string",
|
|
793
773
|
"mutable": false,
|
|
794
774
|
"complexType": {
|
|
@@ -802,11 +782,11 @@ export class FeedbackButton {
|
|
|
802
782
|
"tags": [],
|
|
803
783
|
"text": ""
|
|
804
784
|
},
|
|
805
|
-
"attribute": "
|
|
785
|
+
"attribute": "send-button-text",
|
|
806
786
|
"reflect": false,
|
|
807
|
-
"defaultValue": "'
|
|
787
|
+
"defaultValue": "'Send'"
|
|
808
788
|
},
|
|
809
|
-
"
|
|
789
|
+
"successMessage": {
|
|
810
790
|
"type": "string",
|
|
811
791
|
"mutable": false,
|
|
812
792
|
"complexType": {
|
|
@@ -820,11 +800,11 @@ export class FeedbackButton {
|
|
|
820
800
|
"tags": [],
|
|
821
801
|
"text": ""
|
|
822
802
|
},
|
|
823
|
-
"attribute": "
|
|
803
|
+
"attribute": "success-message",
|
|
824
804
|
"reflect": false,
|
|
825
|
-
"defaultValue": "'
|
|
805
|
+
"defaultValue": "''"
|
|
826
806
|
},
|
|
827
|
-
"
|
|
807
|
+
"screenshotAttachedText": {
|
|
828
808
|
"type": "string",
|
|
829
809
|
"mutable": false,
|
|
830
810
|
"complexType": {
|
|
@@ -838,11 +818,11 @@ export class FeedbackButton {
|
|
|
838
818
|
"tags": [],
|
|
839
819
|
"text": ""
|
|
840
820
|
},
|
|
841
|
-
"attribute": "
|
|
821
|
+
"attribute": "screenshot-attached-text",
|
|
842
822
|
"reflect": false,
|
|
843
|
-
"defaultValue": "'
|
|
823
|
+
"defaultValue": "'Screenshot attached'"
|
|
844
824
|
},
|
|
845
|
-
"
|
|
825
|
+
"screenshotButtonText": {
|
|
846
826
|
"type": "string",
|
|
847
827
|
"mutable": false,
|
|
848
828
|
"complexType": {
|
|
@@ -856,11 +836,11 @@ export class FeedbackButton {
|
|
|
856
836
|
"tags": [],
|
|
857
837
|
"text": ""
|
|
858
838
|
},
|
|
859
|
-
"attribute": "
|
|
839
|
+
"attribute": "screenshot-button-text",
|
|
860
840
|
"reflect": false,
|
|
861
|
-
"defaultValue": "'
|
|
841
|
+
"defaultValue": "'Add a screenshot'"
|
|
862
842
|
},
|
|
863
|
-
"
|
|
843
|
+
"screenshotTakingText": {
|
|
864
844
|
"type": "string",
|
|
865
845
|
"mutable": false,
|
|
866
846
|
"complexType": {
|
|
@@ -874,11 +854,11 @@ export class FeedbackButton {
|
|
|
874
854
|
"tags": [],
|
|
875
855
|
"text": ""
|
|
876
856
|
},
|
|
877
|
-
"attribute": "
|
|
857
|
+
"attribute": "screenshot-taking-text",
|
|
878
858
|
"reflect": false,
|
|
879
|
-
"defaultValue": "'
|
|
859
|
+
"defaultValue": "'Taking screenshot...'"
|
|
880
860
|
},
|
|
881
|
-
"
|
|
861
|
+
"screenshotEditTextButtonText": {
|
|
882
862
|
"type": "string",
|
|
883
863
|
"mutable": false,
|
|
884
864
|
"complexType": {
|
|
@@ -892,11 +872,11 @@ export class FeedbackButton {
|
|
|
892
872
|
"tags": [],
|
|
893
873
|
"text": ""
|
|
894
874
|
},
|
|
895
|
-
"attribute": "
|
|
875
|
+
"attribute": "screenshot-edit-text-button-text",
|
|
896
876
|
"reflect": false,
|
|
897
|
-
"defaultValue": "''"
|
|
877
|
+
"defaultValue": "'Edit text'"
|
|
898
878
|
},
|
|
899
|
-
"
|
|
879
|
+
"screenshotEditorTitle": {
|
|
900
880
|
"type": "string",
|
|
901
881
|
"mutable": false,
|
|
902
882
|
"complexType": {
|
|
@@ -910,11 +890,11 @@ export class FeedbackButton {
|
|
|
910
890
|
"tags": [],
|
|
911
891
|
"text": ""
|
|
912
892
|
},
|
|
913
|
-
"attribute": "
|
|
893
|
+
"attribute": "screenshot-editor-title",
|
|
914
894
|
"reflect": false,
|
|
915
|
-
"defaultValue": "'
|
|
895
|
+
"defaultValue": "'Edit screenshot'"
|
|
916
896
|
},
|
|
917
|
-
"
|
|
897
|
+
"screenshotEditorCancelText": {
|
|
918
898
|
"type": "string",
|
|
919
899
|
"mutable": false,
|
|
920
900
|
"complexType": {
|
|
@@ -928,11 +908,11 @@ export class FeedbackButton {
|
|
|
928
908
|
"tags": [],
|
|
929
909
|
"text": ""
|
|
930
910
|
},
|
|
931
|
-
"attribute": "
|
|
911
|
+
"attribute": "screenshot-editor-cancel-text",
|
|
932
912
|
"reflect": false,
|
|
933
|
-
"defaultValue": "'
|
|
913
|
+
"defaultValue": "'Cancel'"
|
|
934
914
|
},
|
|
935
|
-
"
|
|
915
|
+
"screenshotEditorSaveText": {
|
|
936
916
|
"type": "string",
|
|
937
917
|
"mutable": false,
|
|
938
918
|
"complexType": {
|
|
@@ -946,11 +926,11 @@ export class FeedbackButton {
|
|
|
946
926
|
"tags": [],
|
|
947
927
|
"text": ""
|
|
948
928
|
},
|
|
949
|
-
"attribute": "
|
|
929
|
+
"attribute": "screenshot-editor-save-text",
|
|
950
930
|
"reflect": false,
|
|
951
|
-
"defaultValue": "'
|
|
931
|
+
"defaultValue": "'Save'"
|
|
952
932
|
},
|
|
953
|
-
"
|
|
933
|
+
"screenshotSizeLabelText": {
|
|
954
934
|
"type": "string",
|
|
955
935
|
"mutable": false,
|
|
956
936
|
"complexType": {
|
|
@@ -964,11 +944,11 @@ export class FeedbackButton {
|
|
|
964
944
|
"tags": [],
|
|
965
945
|
"text": ""
|
|
966
946
|
},
|
|
967
|
-
"attribute": "
|
|
947
|
+
"attribute": "screenshot-size-label-text",
|
|
968
948
|
"reflect": false,
|
|
969
|
-
"defaultValue": "'
|
|
949
|
+
"defaultValue": "'Size:'"
|
|
970
950
|
},
|
|
971
|
-
"
|
|
951
|
+
"screenshotBorderLabelText": {
|
|
972
952
|
"type": "string",
|
|
973
953
|
"mutable": false,
|
|
974
954
|
"complexType": {
|
|
@@ -982,11 +962,11 @@ export class FeedbackButton {
|
|
|
982
962
|
"tags": [],
|
|
983
963
|
"text": ""
|
|
984
964
|
},
|
|
985
|
-
"attribute": "
|
|
965
|
+
"attribute": "screenshot-border-label-text",
|
|
986
966
|
"reflect": false,
|
|
987
|
-
"defaultValue": "
|
|
967
|
+
"defaultValue": "'Border:'"
|
|
988
968
|
},
|
|
989
|
-
"
|
|
969
|
+
"screenshotEditTextPromptText": {
|
|
990
970
|
"type": "string",
|
|
991
971
|
"mutable": false,
|
|
992
972
|
"complexType": {
|
|
@@ -1000,11 +980,11 @@ export class FeedbackButton {
|
|
|
1000
980
|
"tags": [],
|
|
1001
981
|
"text": ""
|
|
1002
982
|
},
|
|
1003
|
-
"attribute": "
|
|
983
|
+
"attribute": "screenshot-edit-text-prompt-text",
|
|
1004
984
|
"reflect": false,
|
|
1005
|
-
"defaultValue": "'
|
|
985
|
+
"defaultValue": "'Edit text:'"
|
|
1006
986
|
},
|
|
1007
|
-
"
|
|
987
|
+
"screenshotErrorGeneral": {
|
|
1008
988
|
"type": "string",
|
|
1009
989
|
"mutable": false,
|
|
1010
990
|
"complexType": {
|
|
@@ -1018,11 +998,11 @@ export class FeedbackButton {
|
|
|
1018
998
|
"tags": [],
|
|
1019
999
|
"text": ""
|
|
1020
1000
|
},
|
|
1021
|
-
"attribute": "
|
|
1001
|
+
"attribute": "screenshot-error-general",
|
|
1022
1002
|
"reflect": false,
|
|
1023
|
-
"defaultValue": "'
|
|
1003
|
+
"defaultValue": "'Failed to capture screenshot.'"
|
|
1024
1004
|
},
|
|
1025
|
-
"
|
|
1005
|
+
"screenshotErrorPermission": {
|
|
1026
1006
|
"type": "string",
|
|
1027
1007
|
"mutable": false,
|
|
1028
1008
|
"complexType": {
|
|
@@ -1036,11 +1016,11 @@ export class FeedbackButton {
|
|
|
1036
1016
|
"tags": [],
|
|
1037
1017
|
"text": ""
|
|
1038
1018
|
},
|
|
1039
|
-
"attribute": "screenshot-
|
|
1019
|
+
"attribute": "screenshot-error-permission",
|
|
1040
1020
|
"reflect": false,
|
|
1041
|
-
"defaultValue": "'
|
|
1021
|
+
"defaultValue": "'Permission denied. Please allow screen sharing to take screenshots.'"
|
|
1042
1022
|
},
|
|
1043
|
-
"
|
|
1023
|
+
"screenshotErrorNotSupported": {
|
|
1044
1024
|
"type": "string",
|
|
1045
1025
|
"mutable": false,
|
|
1046
1026
|
"complexType": {
|
|
@@ -1054,11 +1034,11 @@ export class FeedbackButton {
|
|
|
1054
1034
|
"tags": [],
|
|
1055
1035
|
"text": ""
|
|
1056
1036
|
},
|
|
1057
|
-
"attribute": "screenshot-
|
|
1037
|
+
"attribute": "screenshot-error-not-supported",
|
|
1058
1038
|
"reflect": false,
|
|
1059
|
-
"defaultValue": "'
|
|
1039
|
+
"defaultValue": "'Screen capture is not supported in this browser.'"
|
|
1060
1040
|
},
|
|
1061
|
-
"
|
|
1041
|
+
"screenshotErrorNotFound": {
|
|
1062
1042
|
"type": "string",
|
|
1063
1043
|
"mutable": false,
|
|
1064
1044
|
"complexType": {
|
|
@@ -1072,11 +1052,11 @@ export class FeedbackButton {
|
|
|
1072
1052
|
"tags": [],
|
|
1073
1053
|
"text": ""
|
|
1074
1054
|
},
|
|
1075
|
-
"attribute": "screenshot-
|
|
1055
|
+
"attribute": "screenshot-error-not-found",
|
|
1076
1056
|
"reflect": false,
|
|
1077
|
-
"defaultValue": "'
|
|
1057
|
+
"defaultValue": "'No screen sources available for capture.'"
|
|
1078
1058
|
},
|
|
1079
|
-
"
|
|
1059
|
+
"screenshotErrorCancelled": {
|
|
1080
1060
|
"type": "string",
|
|
1081
1061
|
"mutable": false,
|
|
1082
1062
|
"complexType": {
|
|
@@ -1090,11 +1070,11 @@ export class FeedbackButton {
|
|
|
1090
1070
|
"tags": [],
|
|
1091
1071
|
"text": ""
|
|
1092
1072
|
},
|
|
1093
|
-
"attribute": "screenshot-
|
|
1073
|
+
"attribute": "screenshot-error-cancelled",
|
|
1094
1074
|
"reflect": false,
|
|
1095
|
-
"defaultValue": "'
|
|
1075
|
+
"defaultValue": "'Screenshot capture was cancelled.'"
|
|
1096
1076
|
},
|
|
1097
|
-
"
|
|
1077
|
+
"screenshotErrorBrowserNotSupported": {
|
|
1098
1078
|
"type": "string",
|
|
1099
1079
|
"mutable": false,
|
|
1100
1080
|
"complexType": {
|
|
@@ -1108,11 +1088,11 @@ export class FeedbackButton {
|
|
|
1108
1088
|
"tags": [],
|
|
1109
1089
|
"text": ""
|
|
1110
1090
|
},
|
|
1111
|
-
"attribute": "
|
|
1091
|
+
"attribute": "screenshot-error-browser-not-supported",
|
|
1112
1092
|
"reflect": false,
|
|
1113
|
-
"defaultValue": "'
|
|
1093
|
+
"defaultValue": "'Your browser does not support screen capture. Please use a browser like Chrome, Firefox, or Safari on desktop.'"
|
|
1114
1094
|
},
|
|
1115
|
-
"
|
|
1095
|
+
"screenshotErrorUnexpected": {
|
|
1116
1096
|
"type": "string",
|
|
1117
1097
|
"mutable": false,
|
|
1118
1098
|
"complexType": {
|
|
@@ -1126,9 +1106,9 @@ export class FeedbackButton {
|
|
|
1126
1106
|
"tags": [],
|
|
1127
1107
|
"text": ""
|
|
1128
1108
|
},
|
|
1129
|
-
"attribute": "
|
|
1109
|
+
"attribute": "screenshot-error-unexpected",
|
|
1130
1110
|
"reflect": false,
|
|
1131
|
-
"defaultValue": "''"
|
|
1111
|
+
"defaultValue": "'An unexpected error occurred. Please try again.'"
|
|
1132
1112
|
}
|
|
1133
1113
|
};
|
|
1134
1114
|
}
|