@descope/web-components-ui 1.0.261 → 1.0.262
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/index.cjs.js +3 -1
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/1000.js +1 -1
- package/dist/umd/descope-grid-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-grid/GridClass.js +1 -0
- package/src/mixins/createProxy.js +2 -1
package/dist/index.esm.js
CHANGED
@@ -701,6 +701,7 @@ const createProxy = ({
|
|
701
701
|
excludeAttrsSync = [],
|
702
702
|
includeAttrsSync = [],
|
703
703
|
includeForwardProps = [],
|
704
|
+
delegatesFocus = true,
|
704
705
|
}) => {
|
705
706
|
class ProxyClass extends createBaseClass({ componentName, baseSelector: wrappedEleName }) {
|
706
707
|
#dispatchBlur = createDispatchEvent.bind(this, 'blur');
|
@@ -708,7 +709,7 @@ const createProxy = ({
|
|
708
709
|
#dispatchFocus = createDispatchEvent.bind(this, 'focus');
|
709
710
|
|
710
711
|
constructor() {
|
711
|
-
super().attachShadow({ mode: 'open', delegatesFocus
|
712
|
+
super().attachShadow({ mode: 'open', delegatesFocus }).innerHTML = `
|
712
713
|
<style id="create-proxy">${isFunction(style) ? style() : style}</style>
|
713
714
|
<${wrappedEleName}>
|
714
715
|
${slots
|
@@ -7458,6 +7459,7 @@ const GridClass = compose(
|
|
7458
7459
|
GridMixin
|
7459
7460
|
)(
|
7460
7461
|
createProxy({
|
7462
|
+
delegatesFocus: false,
|
7461
7463
|
slots: [''],
|
7462
7464
|
wrappedEleName: 'vaadin-grid',
|
7463
7465
|
style: () => `
|