@gravitee/ui-components 3.24.2-fix-lit2-upgrade-b85f7b1 → 3.24.2-fix-lit2-button-83ed3fa
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/package.json
CHANGED
package/src/atoms/gv-button.js
CHANGED
|
@@ -322,14 +322,6 @@ export class GvButton extends LitElement {
|
|
|
322
322
|
}
|
|
323
323
|
}
|
|
324
324
|
|
|
325
|
-
async performUpdate() {
|
|
326
|
-
super.performUpdate();
|
|
327
|
-
const icon = this.shadowRoot.querySelector('gv-icon');
|
|
328
|
-
if (icon) {
|
|
329
|
-
icon.performUpdate();
|
|
330
|
-
}
|
|
331
|
-
}
|
|
332
|
-
|
|
333
325
|
render() {
|
|
334
326
|
const classes = {
|
|
335
327
|
button: true,
|
package/src/atoms/gv-select.js
CHANGED
|
@@ -239,7 +239,7 @@ export class GvSelect extends withResizeObserver(InputElement(LitElement)) {
|
|
|
239
239
|
|
|
240
240
|
willUpdate(changedProperties) {
|
|
241
241
|
if (changedProperties.has('value')) {
|
|
242
|
-
this.updateState(
|
|
242
|
+
this.updateState(changedProperties.get('value'));
|
|
243
243
|
}
|
|
244
244
|
}
|
|
245
245
|
|