-
Notifications
You must be signed in to change notification settings - Fork 273
feat(ui5-busyindicator): initial implementation #416
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
Conversation
Fixes #371 |
packages/main/src/BusyIndicator.js
Outdated
* @defaultvalue false | ||
* @public | ||
*/ | ||
invisible: { type: Boolean, defaultValue: false }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe call this "hide"? I guess it's the reverse of "visible" from openui5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another thought, can they easily use browser API for this? (display: none, etc...)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer to keep the property and rename it to hide because the usage in frameworks will be smoother
@keyframes grow { | ||
0%, 50%, 100% { | ||
-webkit-transform: scale( 1.0); | ||
-moz-transform: scale( 1.0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the old days that was indeed necessarily, but could you check if all the browser prefixed properties are still needed (we do not support opera for sure)
No description provided.