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