File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- import { CustomElement } from './custom-element'
1+ import type { CustomElement } from './custom-element'
22
33const attrs = new WeakMap < Record < PropertyKey , unknown > , string [ ] > ( )
44type attrValue = string | number | boolean
Original file line number Diff line number Diff line change 1- import { register } from './register'
2- import { bind } from './bind'
3- import { autoShadowRoot } from './auto-shadow-root'
4- import { defineObservedAttributes , initializeAttrs } from './attr'
5- import { CustomElement } from './custom-element'
1+ import { register } from './register.js '
2+ import { bind } from './bind.js '
3+ import { autoShadowRoot } from './auto-shadow-root.js '
4+ import { defineObservedAttributes , initializeAttrs } from './attr.js '
5+ import type { CustomElement } from './custom-element'
66
77/**
88 * Controller is a decorator to be used over a class that extends HTMLElement.
Original file line number Diff line number Diff line change 1- export { bind , listenForBind } from './bind'
2- export { register } from './register'
3- export { findTarget , findTargets } from './findtarget'
4- export { target , targets } from './target'
5- export { controller } from './controller'
6- export { attr } from './attr'
1+ export { bind , listenForBind } from './bind.js '
2+ export { register } from './register.js '
3+ export { findTarget , findTargets } from './findtarget.js '
4+ export { target , targets } from './target.js '
5+ export { controller } from './controller.js '
6+ export { attr } from './attr.js '
Original file line number Diff line number Diff line change 1- import { CustomElement } from './custom-element'
1+ import type { CustomElement } from './custom-element'
22
33/**
44 * Register the controller as a custom element.
Original file line number Diff line number Diff line change 1- import { findTarget , findTargets } from './findtarget'
1+ import { findTarget , findTargets } from './findtarget.js '
22
33/**
44 * Target is a decorator which - when assigned to a property field on the
You can’t perform that action at this time.
0 commit comments