@waggylabs/yumekit 0.2.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.
- package/dist/components/y-appbar.d.ts +28 -0
- package/dist/components/y-appbar.js +1707 -0
- package/dist/components/y-avatar.d.ts +5 -0
- package/dist/components/y-avatar.js +108 -0
- package/dist/components/y-badge.d.ts +15 -0
- package/dist/components/y-badge.js +149 -0
- package/dist/components/y-button.d.ts +19 -0
- package/dist/components/y-button.js +557 -0
- package/dist/components/y-card.d.ts +8 -0
- package/dist/components/y-card.js +157 -0
- package/dist/components/y-checkbox.d.ts +20 -0
- package/dist/components/y-checkbox.js +256 -0
- package/dist/components/y-dialog.d.ts +18 -0
- package/dist/components/y-dialog.js +232 -0
- package/dist/components/y-drawer.d.ts +1 -0
- package/dist/components/y-drawer.js +459 -0
- package/dist/components/y-icon.d.ts +19 -0
- package/dist/components/y-icon.js +270 -0
- package/dist/components/y-input.d.ts +15 -0
- package/dist/components/y-input.js +233 -0
- package/dist/components/y-menu.d.ts +26 -0
- package/dist/components/y-menu.js +322 -0
- package/dist/components/y-panel.d.ts +23 -0
- package/dist/components/y-panel.js +366 -0
- package/dist/components/y-panelbar.d.ts +3 -0
- package/dist/components/y-panelbar.js +27 -0
- package/dist/components/y-progress.d.ts +38 -0
- package/dist/components/y-progress.js +328 -0
- package/dist/components/y-radio.d.ts +16 -0
- package/dist/components/y-radio.js +202 -0
- package/dist/components/y-select.d.ts +33 -0
- package/dist/components/y-select.js +524 -0
- package/dist/components/y-slider.d.ts +34 -0
- package/dist/components/y-slider.js +387 -0
- package/dist/components/y-switch.d.ts +24 -0
- package/dist/components/y-switch.js +373 -0
- package/dist/components/y-table.d.ts +25 -0
- package/dist/components/y-table.js +327 -0
- package/dist/components/y-tabs.d.ts +21 -0
- package/dist/components/y-tabs.js +286 -0
- package/dist/components/y-tag.d.ts +7 -0
- package/dist/components/y-tag.js +218 -0
- package/dist/components/y-theme.d.ts +10 -0
- package/dist/components/y-theme.js +115 -0
- package/dist/components/y-toast.d.ts +33 -0
- package/dist/components/y-toast.js +248 -0
- package/dist/components/y-tooltip.d.ts +25 -0
- package/dist/components/y-tooltip.js +228 -0
- package/dist/icons/all.d.ts +1 -0
- package/dist/icons/all.js +208 -0
- package/dist/icons/index.d.ts +19 -0
- package/dist/icons/registry.d.ts +3 -0
- package/dist/icons/registry.js +30 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.iife.d.ts +1 -0
- package/dist/index.js +7137 -0
- package/dist/modules/helpers.d.ts +44 -0
- package/dist/modules/helpers.js +124 -0
- package/dist/react.d.ts +214 -0
- package/dist/styles/blue-dark.css +138 -0
- package/dist/styles/blue-light.css +138 -0
- package/dist/styles/orange-dark.css +138 -0
- package/dist/styles/orange-light.css +138 -0
- package/dist/styles/style.css +8 -0
- package/dist/styles/variables.css +594 -0
- package/dist/yumekit.min.js +1 -0
- package/package.json +55 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export class YumeAppbar extends HTMLElement {
|
|
2
|
+
static get observedAttributes(): string[];
|
|
3
|
+
_onCollapseClick(): void;
|
|
4
|
+
_idCounter: number;
|
|
5
|
+
connectedCallback(): void;
|
|
6
|
+
disconnectedCallback(): void;
|
|
7
|
+
attributeChangedCallback(name: any, oldVal: any, newVal: any): void;
|
|
8
|
+
set orientation(val: string);
|
|
9
|
+
get orientation(): string;
|
|
10
|
+
set collapsed(val: boolean);
|
|
11
|
+
get collapsed(): boolean;
|
|
12
|
+
set items(val: any);
|
|
13
|
+
get items(): any;
|
|
14
|
+
set size(val: string);
|
|
15
|
+
get size(): string;
|
|
16
|
+
set menuDirection(val: string);
|
|
17
|
+
/**
|
|
18
|
+
* Direction menus pop out from nav buttons:
|
|
19
|
+
* "right", "down", or unset (auto: vertical → right, horizontal → down).
|
|
20
|
+
*/
|
|
21
|
+
get menuDirection(): string;
|
|
22
|
+
set sticky(val: string | false);
|
|
23
|
+
get sticky(): string | false;
|
|
24
|
+
toggle(): void;
|
|
25
|
+
_uid(prefix: any): string;
|
|
26
|
+
_isItemActive(item: any): boolean;
|
|
27
|
+
render(): void;
|
|
28
|
+
}
|