@benev/tact 0.1.0 → 0.2.0-0

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.
Files changed (120) hide show
  1. package/README.md +30 -16
  2. package/package.json +13 -12
  3. package/s/core/bindings/parts/lens-algo.ts +2 -1
  4. package/s/core/core.test.ts +66 -35
  5. package/s/core/testing/testing.ts +11 -10
  6. package/s/deck/deck.ts +1 -14
  7. package/s/deck/index.ts +1 -2
  8. package/s/deck/parts/db.ts +2 -3
  9. package/s/deck/views/bindings/view.ts +95 -0
  10. package/s/deck/views/overlay/view.ts +46 -0
  11. package/s/demo/game/parts/renderer.ts +4 -5
  12. package/s/demo/game/parts/state.ts +1 -2
  13. package/s/demo/main.bundle.ts +1 -4
  14. package/s/demo/ui/theater/styles.css.ts +1 -2
  15. package/s/demo/ui/theater/view.ts +47 -52
  16. package/s/demo/ui/theater/virtual/view.ts +10 -12
  17. package/s/index.html.ts +53 -44
  18. package/s/nubs/index.ts +3 -4
  19. package/s/nubs/lookpad/{component.ts → view.ts} +10 -16
  20. package/s/nubs/stick/{component.ts → view.ts} +27 -34
  21. package/s/nubs/vpad/{component.ts → view.ts} +25 -33
  22. package/s/utils/circular-clamp.ts +1 -2
  23. package/s/utils/gamepads.ts +2 -2
  24. package/x/core/bindings/parts/lens-algo.js +1 -1
  25. package/x/core/bindings/parts/lens-algo.js.map +1 -1
  26. package/x/core/core.test.d.ts +1 -1
  27. package/x/core/core.test.js +58 -36
  28. package/x/core/core.test.js.map +1 -1
  29. package/x/core/devices/standard/stick.d.ts +2 -2
  30. package/x/core/testing/testing.d.ts +13 -6
  31. package/x/core/testing/testing.js +11 -10
  32. package/x/core/testing/testing.js.map +1 -1
  33. package/x/deck/deck.d.ts +0 -7
  34. package/x/deck/deck.js +1 -9
  35. package/x/deck/deck.js.map +1 -1
  36. package/x/deck/index.d.ts +1 -2
  37. package/x/deck/index.js +1 -2
  38. package/x/deck/index.js.map +1 -1
  39. package/x/deck/parts/db.d.ts +3 -3
  40. package/x/deck/parts/db.js.map +1 -1
  41. package/x/deck/parts/overlay-visibility.d.ts +3 -3
  42. package/x/deck/views/bindings/style.css.js.map +1 -0
  43. package/x/deck/views/bindings/view.d.ts +2 -0
  44. package/x/deck/views/bindings/view.js +80 -0
  45. package/x/deck/views/bindings/view.js.map +1 -0
  46. package/x/deck/views/overlay/style.css.js.map +1 -0
  47. package/x/deck/views/overlay/view.d.ts +2 -0
  48. package/x/deck/views/overlay/view.js +40 -0
  49. package/x/deck/views/overlay/view.js.map +1 -0
  50. package/x/demo/game/parts/renderer.js +4 -4
  51. package/x/demo/game/parts/renderer.js.map +1 -1
  52. package/x/demo/game/parts/state.js +1 -1
  53. package/x/demo/game/parts/state.js.map +1 -1
  54. package/x/demo/main.bundle.js +1 -5
  55. package/x/demo/main.bundle.js.map +1 -1
  56. package/x/demo/main.bundle.min.js +235 -237
  57. package/x/demo/main.bundle.min.js.map +4 -4
  58. package/x/demo/ui/theater/styles.css.js +1 -1
  59. package/x/demo/ui/theater/view.d.ts +1 -367
  60. package/x/demo/ui/theater/view.js +27 -32
  61. package/x/demo/ui/theater/view.js.map +1 -1
  62. package/x/demo/ui/theater/virtual/view.d.ts +1 -1
  63. package/x/demo/ui/theater/virtual/view.js +6 -6
  64. package/x/demo/ui/theater/virtual/view.js.map +1 -1
  65. package/x/index.html +41 -125
  66. package/x/index.html.js +50 -39
  67. package/x/index.html.js.map +1 -1
  68. package/x/nubs/index.d.ts +3 -4
  69. package/x/nubs/index.js +3 -4
  70. package/x/nubs/index.js.map +1 -1
  71. package/x/nubs/lookpad/view.d.ts +1 -0
  72. package/x/nubs/lookpad/{component.js → view.js} +11 -14
  73. package/x/nubs/lookpad/view.js.map +1 -0
  74. package/x/nubs/stick/view.d.ts +2 -0
  75. package/x/nubs/stick/{component.js → view.js} +28 -34
  76. package/x/nubs/stick/view.js.map +1 -0
  77. package/x/nubs/vpad/view.d.ts +2 -0
  78. package/x/nubs/vpad/{component.js → view.js} +26 -32
  79. package/x/nubs/vpad/view.js.map +1 -0
  80. package/x/utils/circular-clamp.js +1 -1
  81. package/x/utils/circular-clamp.js.map +1 -1
  82. package/x/utils/gamepads.js +2 -2
  83. package/s/deck/components/components.ts +0 -22
  84. package/s/deck/components/deck-bindings/component.ts +0 -99
  85. package/s/deck/components/deck-overlay/component.ts +0 -51
  86. package/s/deck/components/framework.ts +0 -17
  87. package/s/nubs/components.ts +0 -14
  88. package/s/utils/types.ts +0 -19
  89. package/x/deck/components/components.d.ts +0 -14
  90. package/x/deck/components/components.js +0 -9
  91. package/x/deck/components/components.js.map +0 -1
  92. package/x/deck/components/deck-bindings/component.d.ts +0 -6
  93. package/x/deck/components/deck-bindings/component.js +0 -83
  94. package/x/deck/components/deck-bindings/component.js.map +0 -1
  95. package/x/deck/components/deck-bindings/style.css.js.map +0 -1
  96. package/x/deck/components/deck-overlay/component.d.ts +0 -6
  97. package/x/deck/components/deck-overlay/component.js +0 -44
  98. package/x/deck/components/deck-overlay/component.js.map +0 -1
  99. package/x/deck/components/deck-overlay/style.css.js.map +0 -1
  100. package/x/deck/components/framework.d.ts +0 -7
  101. package/x/deck/components/framework.js +0 -13
  102. package/x/deck/components/framework.js.map +0 -1
  103. package/x/nubs/components.d.ts +0 -9
  104. package/x/nubs/components.js +0 -11
  105. package/x/nubs/components.js.map +0 -1
  106. package/x/nubs/lookpad/component.d.ts +0 -4
  107. package/x/nubs/lookpad/component.js.map +0 -1
  108. package/x/nubs/stick/component.d.ts +0 -368
  109. package/x/nubs/stick/component.js.map +0 -1
  110. package/x/nubs/vpad/component.d.ts +0 -368
  111. package/x/nubs/vpad/component.js.map +0 -1
  112. package/x/utils/types.d.ts +0 -3
  113. package/x/utils/types.js +0 -3
  114. package/x/utils/types.js.map +0 -1
  115. /package/s/deck/{components/deck-bindings → views/bindings}/style.css.ts +0 -0
  116. /package/s/deck/{components/deck-overlay → views/overlay}/style.css.ts +0 -0
  117. /package/x/deck/{components/deck-bindings → views/bindings}/style.css.d.ts +0 -0
  118. /package/x/deck/{components/deck-bindings → views/bindings}/style.css.js +0 -0
  119. /package/x/deck/{components/deck-overlay → views/overlay}/style.css.d.ts +0 -0
  120. /package/x/deck/{components/deck-overlay → views/overlay}/style.css.js +0 -0
@@ -1,368 +0,0 @@
1
- import { StickDevice } from "../../core/devices/standard/stick.js";
2
- declare const NubStick_base: import("@e280/sly").ComponentClass<{
3
- new (): {
4
- readonly device: StickDevice;
5
- "__#private@#private": any;
6
- readonly shadow: ShadowRoot;
7
- createShadow(): ShadowRoot;
8
- render(_use: import("@e280/sly").Use): import("@e280/sly").Content;
9
- updateNow: () => void;
10
- update: import("@e280/stz").DebounceReturn<() => void>;
11
- connectedCallback(): void;
12
- disconnectedCallback(): void;
13
- accessKey: string;
14
- readonly accessKeyLabel: string;
15
- autocapitalize: string;
16
- autocorrect: boolean;
17
- dir: string;
18
- draggable: boolean;
19
- hidden: boolean;
20
- inert: boolean;
21
- innerText: string;
22
- lang: string;
23
- readonly offsetHeight: number;
24
- readonly offsetLeft: number;
25
- readonly offsetParent: Element | null;
26
- readonly offsetTop: number;
27
- readonly offsetWidth: number;
28
- outerText: string;
29
- popover: string | null;
30
- spellcheck: boolean;
31
- title: string;
32
- translate: boolean;
33
- writingSuggestions: string;
34
- attachInternals(): ElementInternals;
35
- click(): void;
36
- hidePopover(): void;
37
- showPopover(): void;
38
- togglePopover(options?: boolean): boolean;
39
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
40
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
41
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
42
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
43
- readonly attributes: NamedNodeMap;
44
- get classList(): DOMTokenList;
45
- set classList(value: string);
46
- className: string;
47
- readonly clientHeight: number;
48
- readonly clientLeft: number;
49
- readonly clientTop: number;
50
- readonly clientWidth: number;
51
- readonly currentCSSZoom: number;
52
- id: string;
53
- innerHTML: string;
54
- readonly localName: string;
55
- readonly namespaceURI: string | null;
56
- onfullscreenchange: ((this: Element, ev: Event) => any) | null;
57
- onfullscreenerror: ((this: Element, ev: Event) => any) | null;
58
- outerHTML: string;
59
- readonly ownerDocument: Document;
60
- get part(): DOMTokenList;
61
- set part(value: string);
62
- readonly prefix: string | null;
63
- readonly scrollHeight: number;
64
- scrollLeft: number;
65
- scrollTop: number;
66
- readonly scrollWidth: number;
67
- readonly shadowRoot: ShadowRoot | null;
68
- slot: string;
69
- readonly tagName: string;
70
- attachShadow(init: ShadowRootInit): ShadowRoot;
71
- checkVisibility(options?: CheckVisibilityOptions): boolean;
72
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
73
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
74
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
75
- closest<E extends Element = Element>(selectors: string): E | null;
76
- computedStyleMap(): StylePropertyMapReadOnly;
77
- getAttribute(qualifiedName: string): string | null;
78
- getAttributeNS(namespace: string | null, localName: string): string | null;
79
- getAttributeNames(): string[];
80
- getAttributeNode(qualifiedName: string): Attr | null;
81
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
82
- getBoundingClientRect(): DOMRect;
83
- getClientRects(): DOMRectList;
84
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
85
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
86
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
87
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
88
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
89
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
90
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
91
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
92
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
93
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
94
- getHTML(options?: GetHTMLOptions): string;
95
- hasAttribute(qualifiedName: string): boolean;
96
- hasAttributeNS(namespace: string | null, localName: string): boolean;
97
- hasAttributes(): boolean;
98
- hasPointerCapture(pointerId: number): boolean;
99
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
100
- insertAdjacentHTML(position: InsertPosition, string: string): void;
101
- insertAdjacentText(where: InsertPosition, data: string): void;
102
- matches(selectors: string): boolean;
103
- releasePointerCapture(pointerId: number): void;
104
- removeAttribute(qualifiedName: string): void;
105
- removeAttributeNS(namespace: string | null, localName: string): void;
106
- removeAttributeNode(attr: Attr): Attr;
107
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
108
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
109
- scroll(options?: ScrollToOptions): void;
110
- scroll(x: number, y: number): void;
111
- scrollBy(options?: ScrollToOptions): void;
112
- scrollBy(x: number, y: number): void;
113
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
114
- scrollTo(options?: ScrollToOptions): void;
115
- scrollTo(x: number, y: number): void;
116
- setAttribute(qualifiedName: string, value: string): void;
117
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
118
- setAttributeNode(attr: Attr): Attr | null;
119
- setAttributeNodeNS(attr: Attr): Attr | null;
120
- setHTMLUnsafe(html: string): void;
121
- setPointerCapture(pointerId: number): void;
122
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
123
- webkitMatchesSelector(selectors: string): boolean;
124
- get textContent(): string;
125
- set textContent(value: string | null);
126
- readonly baseURI: string;
127
- readonly childNodes: NodeListOf<ChildNode>;
128
- readonly firstChild: ChildNode | null;
129
- readonly isConnected: boolean;
130
- readonly lastChild: ChildNode | null;
131
- readonly nextSibling: ChildNode | null;
132
- readonly nodeName: string;
133
- readonly nodeType: number;
134
- nodeValue: string | null;
135
- readonly parentElement: HTMLElement | null;
136
- readonly parentNode: ParentNode | null;
137
- readonly previousSibling: ChildNode | null;
138
- appendChild<T extends Node>(node: T): T;
139
- cloneNode(subtree?: boolean): Node;
140
- compareDocumentPosition(other: Node): number;
141
- contains(other: Node | null): boolean;
142
- getRootNode(options?: GetRootNodeOptions): Node;
143
- hasChildNodes(): boolean;
144
- insertBefore<T extends Node>(node: T, child: Node | null): T;
145
- isDefaultNamespace(namespace: string | null): boolean;
146
- isEqualNode(otherNode: Node | null): boolean;
147
- isSameNode(otherNode: Node | null): boolean;
148
- lookupNamespaceURI(prefix: string | null): string | null;
149
- lookupPrefix(namespace: string | null): string | null;
150
- normalize(): void;
151
- removeChild<T extends Node>(child: T): T;
152
- replaceChild<T extends Node>(node: Node, child: T): T;
153
- readonly ELEMENT_NODE: 1;
154
- readonly ATTRIBUTE_NODE: 2;
155
- readonly TEXT_NODE: 3;
156
- readonly CDATA_SECTION_NODE: 4;
157
- readonly ENTITY_REFERENCE_NODE: 5;
158
- readonly ENTITY_NODE: 6;
159
- readonly PROCESSING_INSTRUCTION_NODE: 7;
160
- readonly COMMENT_NODE: 8;
161
- readonly DOCUMENT_NODE: 9;
162
- readonly DOCUMENT_TYPE_NODE: 10;
163
- readonly DOCUMENT_FRAGMENT_NODE: 11;
164
- readonly NOTATION_NODE: 12;
165
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
166
- readonly DOCUMENT_POSITION_PRECEDING: 2;
167
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
168
- readonly DOCUMENT_POSITION_CONTAINS: 8;
169
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
170
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
171
- dispatchEvent(event: Event): boolean;
172
- ariaActiveDescendantElement: Element | null;
173
- ariaAtomic: string | null;
174
- ariaAutoComplete: string | null;
175
- ariaBrailleLabel: string | null;
176
- ariaBrailleRoleDescription: string | null;
177
- ariaBusy: string | null;
178
- ariaChecked: string | null;
179
- ariaColCount: string | null;
180
- ariaColIndex: string | null;
181
- ariaColIndexText: string | null;
182
- ariaColSpan: string | null;
183
- ariaControlsElements: ReadonlyArray<Element> | null;
184
- ariaCurrent: string | null;
185
- ariaDescribedByElements: ReadonlyArray<Element> | null;
186
- ariaDescription: string | null;
187
- ariaDetailsElements: ReadonlyArray<Element> | null;
188
- ariaDisabled: string | null;
189
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
190
- ariaExpanded: string | null;
191
- ariaFlowToElements: ReadonlyArray<Element> | null;
192
- ariaHasPopup: string | null;
193
- ariaHidden: string | null;
194
- ariaInvalid: string | null;
195
- ariaKeyShortcuts: string | null;
196
- ariaLabel: string | null;
197
- ariaLabelledByElements: ReadonlyArray<Element> | null;
198
- ariaLevel: string | null;
199
- ariaLive: string | null;
200
- ariaModal: string | null;
201
- ariaMultiLine: string | null;
202
- ariaMultiSelectable: string | null;
203
- ariaOrientation: string | null;
204
- ariaOwnsElements: ReadonlyArray<Element> | null;
205
- ariaPlaceholder: string | null;
206
- ariaPosInSet: string | null;
207
- ariaPressed: string | null;
208
- ariaReadOnly: string | null;
209
- ariaRelevant: string | null;
210
- ariaRequired: string | null;
211
- ariaRoleDescription: string | null;
212
- ariaRowCount: string | null;
213
- ariaRowIndex: string | null;
214
- ariaRowIndexText: string | null;
215
- ariaRowSpan: string | null;
216
- ariaSelected: string | null;
217
- ariaSetSize: string | null;
218
- ariaSort: string | null;
219
- ariaValueMax: string | null;
220
- ariaValueMin: string | null;
221
- ariaValueNow: string | null;
222
- ariaValueText: string | null;
223
- role: string | null;
224
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
225
- getAnimations(options?: GetAnimationsOptions): Animation[];
226
- after(...nodes: (Node | string)[]): void;
227
- before(...nodes: (Node | string)[]): void;
228
- remove(): void;
229
- replaceWith(...nodes: (Node | string)[]): void;
230
- readonly nextElementSibling: Element | null;
231
- readonly previousElementSibling: Element | null;
232
- readonly childElementCount: number;
233
- readonly children: HTMLCollection;
234
- readonly firstElementChild: Element | null;
235
- readonly lastElementChild: Element | null;
236
- append(...nodes: (Node | string)[]): void;
237
- prepend(...nodes: (Node | string)[]): void;
238
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
239
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
240
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
241
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
242
- querySelector<E extends Element = Element>(selectors: string): E | null;
243
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
244
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
245
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
246
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
247
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
248
- replaceChildren(...nodes: (Node | string)[]): void;
249
- readonly assignedSlot: HTMLSlotElement | null;
250
- readonly attributeStyleMap: StylePropertyMap;
251
- get style(): CSSStyleDeclaration;
252
- set style(cssText: string);
253
- contentEditable: string;
254
- enterKeyHint: string;
255
- inputMode: string;
256
- readonly isContentEditable: boolean;
257
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
258
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
259
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
260
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
261
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
262
- onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
263
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
264
- onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
265
- onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
266
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
267
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
268
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
269
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
270
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
271
- onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
272
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
273
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
274
- oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
275
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
276
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
277
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
278
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
279
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
280
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
281
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
282
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
283
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
284
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
285
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
286
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
287
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
288
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
289
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
290
- onerror: OnErrorEventHandler;
291
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
292
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
293
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
294
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
295
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
296
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
297
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
298
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
299
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
300
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
301
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
302
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
303
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
304
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
305
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
306
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
307
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
308
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
309
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
310
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
311
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
312
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
313
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
314
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
315
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
316
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
317
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
318
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
319
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
320
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
321
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
322
- onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
323
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
324
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
325
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
326
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
327
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
328
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
329
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
330
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
331
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
332
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
333
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
334
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
335
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
336
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
337
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
338
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
339
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
340
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
341
- ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
342
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
343
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
344
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
345
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
346
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
347
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
348
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
349
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
350
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
351
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
352
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
353
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
354
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
355
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
356
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
357
- autofocus: boolean;
358
- readonly dataset: DOMStringMap;
359
- nonce?: string;
360
- tabIndex: number;
361
- blur(): void;
362
- focus(options?: FocusOptions): void;
363
- };
364
- styles: import("lit").CSSResultGroup | undefined;
365
- }, [StickDevice]>;
366
- export declare class NubStick extends NubStick_base {
367
- }
368
- export {};
@@ -1 +0,0 @@
1
- {"version":3,"file":"component.js","sourceRoot":"","sources":["../../../s/nubs/stick/component.ts"],"names":[],"mappings":"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"}