p-elements-core 1.2.7-rc.1 → 1.2.7-rc.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "p-elements-core",
3
- "version": "1.2.7-rc.1",
3
+ "version": "1.2.7-rc.2",
4
4
  "description": "P Elements Core V1",
5
5
  "main": "dist/p-elements-core.js",
6
6
  "types": "p-elements-core.d.ts",
@@ -79,7 +79,7 @@ export abstract class CustomElement extends HTMLElement {
79
79
  const staticProjectorMode = (this.constructor as any).projectorMode;
80
80
  this.#projectorMode = staticProjectorMode ? staticProjectorMode : "append";
81
81
  const isFormAssociated = (this.constructor as any).isFormAssociated;
82
- const isDelegateFocus = (this.constructor as any).isDelegateFocus;
82
+ const isDelegateFocus = (this.constructor as any).delegateFocus;
83
83
  this.#delegateFocus = isDelegateFocus;
84
84
  if (isFormAssociated) {
85
85
  this.#internals = this.attachInternals();