-
Notifications
You must be signed in to change notification settings - Fork 20
[MOO-1836]: fix feedback widget logo issues and make WCAG compliant #490
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
SrirangK
wants to merge
10
commits into
main
Choose a base branch
from
moo/MOO-1836-native-feedback-widget-improvement-11.8
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
09cd551
fix: fix feedback widget logo issues and make WCAG compliant
bde066f
Merge branch 'main' into moo/MOO-1836-native-feedback-widget-improvem…
SrirangK 618d902
fix: snapshot test
2b8886d
Merge branch 'main' into moo/MOO-1836-native-feedback-widget-improvem…
SrirangK 8d98b44
fix: minor improvements
3a2f862
chore: update Mendix version to 11.10.0-rc.5 and remove deprecated bu…
vadymv-mendix b3958af
chore: update Mendix version to 11.10.0 (#498)
vadymv-mendix 536abdf
fix: fix feedback widget logo issues and make WCAG compliant
88ccf14
Merge branch 'main' into moo/MOO-1836-native-feedback-widget-improvem…
SrirangK b253190
fix: update changelog to remove duplicate entries
SrirangK File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
118 changes: 102 additions & 16 deletions
118
packages/pluggableWidgets/feedback-native/src/Feedback.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,24 +1,110 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <?xml version="1.0" encoding="utf-8" ?> | ||
| <widget id="com.mendix.widget.native.feedback.Feedback" supportedPlatform="Native" needsEntityContext="true" offlineCapable="true" pluginWidget="true" xmlns="http://www.mendix.com/widget/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mendix.com/widget/1.0/ ../../../node_modules/mendix/custom_widget.xsd"> | ||
| <name>Feedback</name> | ||
| <description>Allow users to submit feedback directly into the app project.</description> | ||
| <studioProCategory>Add-ons</studioProCategory> | ||
| <studioCategory>Add-ons</studioCategory> | ||
| <properties> | ||
| <property key="sprintrapp" type="string"> | ||
| <caption>App ID</caption> | ||
| <category>General</category> | ||
| <description>The App ID is a hash that uniquely identifies your app project. You can find this ID in Settings > General in the Developer Portal.</description> | ||
| </property> | ||
| <property key="allowScreenshot" type="boolean" defaultValue="true"> | ||
| <caption>Allow screenshots</caption> | ||
| <category>General</category> | ||
| <description>If you are not allowed to send screenshots when submitting feedback for legal reasons, set this to ‘No’.</description> | ||
| </property> | ||
| <property key="logo" type="image" required="false"> | ||
| <caption>Logo</caption> | ||
| <category>General</category> | ||
| <description>For customized branding, add a logo to the widget. The recommended size of the image is 90 by 90 pixels.</description> | ||
| </property> | ||
| <propertyGroup caption="General"> | ||
| <property key="sprintrapp" type="string"> | ||
| <caption>App ID</caption> | ||
| <description>The App ID is a hash that uniquely identifies your app project. You can find this ID in Settings > General in the Developer Portal.</description> | ||
| </property> | ||
| <property key="allowScreenshot" type="boolean" defaultValue="true"> | ||
| <caption>Allow screenshots</caption> | ||
| <description>If you are not allowed to send screenshots when submitting feedback for legal reasons, set this to ‘No’.</description> | ||
| </property> | ||
| <property key="logo" type="image" required="false"> | ||
| <caption>Logo</caption> | ||
| <description>For customized branding, add a logo to the widget. The recommended size of the image is 90 by 90 pixels.</description> | ||
| </property> | ||
| </propertyGroup> | ||
| <propertyGroup caption="Localization"> | ||
| <propertyGroup caption="Dialog Titles"> | ||
| <property key="titleSendFeedback" type="textTemplate" required="false"> | ||
| <caption>Send feedback title</caption> | ||
| <description>Title shown when composing feedback</description> | ||
| <translations> | ||
| <translation lang="en_US">Send Feedback</translation> | ||
| </translations> | ||
| </property> | ||
| <property key="titleSending" type="textTemplate" required="false"> | ||
| <caption>Sending title</caption> | ||
| <description>Title shown while sending feedback</description> | ||
| <translations> | ||
| <translation lang="en_US">Sending...</translation> | ||
| </translations> | ||
| </property> | ||
| <property key="titleResult" type="textTemplate" required="false"> | ||
| <caption>Result title</caption> | ||
| <description>Title shown in result dialogs (success/error)</description> | ||
| <translations> | ||
| <translation lang="en_US">Result</translation> | ||
| </translations> | ||
| </property> | ||
| </propertyGroup> | ||
| <propertyGroup caption="Input Labels"> | ||
| <property key="labelFeedbackInput" type="textTemplate" required="false"> | ||
| <caption>Feedback input label</caption> | ||
| <description>Visible label shown above the feedback text field</description> | ||
| <translations> | ||
| <translation lang="en_US">Type your feedback here</translation> | ||
| </translations> | ||
| </property> | ||
| <property key="labelIncludeScreenshot" type="textTemplate" required="false"> | ||
| <caption>Screenshot label</caption> | ||
| <description>Label for screenshot toggle switch</description> | ||
| <translations> | ||
| <translation lang="en_US">Include Screenshot</translation> | ||
| </translations> | ||
| </property> | ||
| </propertyGroup> | ||
| <propertyGroup caption="Buttons"> | ||
| <property key="buttonCancel" type="textTemplate" required="false"> | ||
| <caption>Cancel button</caption> | ||
| <description>Label for cancel button</description> | ||
| <translations> | ||
| <translation lang="en_US">Cancel</translation> | ||
| </translations> | ||
| </property> | ||
| <property key="buttonSend" type="textTemplate" required="false"> | ||
| <caption>Send button</caption> | ||
| <description>Label for send button</description> | ||
| <translations> | ||
| <translation lang="en_US">Send</translation> | ||
| </translations> | ||
| </property> | ||
| <property key="buttonOk" type="textTemplate" required="false"> | ||
| <caption>OK button</caption> | ||
| <description>Label for OK button in result dialogs</description> | ||
| <translations> | ||
| <translation lang="en_US">OK</translation> | ||
| </translations> | ||
| </property> | ||
| <property key="accessibilityLabelFeedbackButton" type="textTemplate" required="false"> | ||
| <caption>Feedback button accessibility label</caption> | ||
| <description>Label announced by screen readers for the feedback button (not visible on screen)</description> | ||
| <translations> | ||
| <translation lang="en_US">Open feedback form</translation> | ||
| </translations> | ||
| </property> | ||
| </propertyGroup> | ||
| <propertyGroup caption="Messages"> | ||
| <property key="messageSuccess" type="textTemplate" required="false"> | ||
| <caption>Success message</caption> | ||
| <description>Message shown when feedback is sent successfully</description> | ||
| <translations> | ||
| <translation lang="en_US">Feedback successfully sent</translation> | ||
| </translations> | ||
| </property> | ||
| <property key="messageError" type="textTemplate" required="false"> | ||
| <caption>Error message</caption> | ||
| <description>Message shown when feedback fails to send</description> | ||
| <translations> | ||
| <translation lang="en_US">Error sending feedback</translation> | ||
| </translations> | ||
| </property> | ||
| </propertyGroup> | ||
| </propertyGroup> | ||
| </properties> | ||
| </widget> |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.