We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A handy feature would be code completion for SAP-icons with a preview. Similar to this extension
The text was updated successfully, but these errors were encountered:
URL for getting icon font names are https://sapui5.hana.ondemand.com/sdk/test-resources/sap/m/demokit/iconExplorer/webapp/model/SAP-icons/tags.json https://sapui5.hana.ondemand.com/sdk/test-resources/sap/m/demokit/iconExplorer/webapp/model/SAP-icons-TNT/tags.json https://sapui5.hana.ondemand.com/sdk/test-resources/sap/m/demokit/iconExplorer/webapp/model/BusinessSuiteInAppSymbols/tags.json
Sorry, something went wrong.
This shows a POC i created.
This array contains the reference between name and 16 bit code that can be adapted to the icon format via
// helper functions function makeChar(code) { return String.fromCharCode(typeof code === 'number' ? code : parseInt(code, 16)); }
Successfully merging a pull request may close this issue.
A handy feature would be code completion for SAP-icons with a preview. Similar to this extension
The text was updated successfully, but these errors were encountered: