manolis-ui 0.0.13 → 0.1.3
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/index.d.ts +8 -1
- package/dist/manolis-ui.js +441 -436
- package/dist/manolis-ui.umd.cjs +4 -4
- package/dist/style.css +33 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,11 @@ declare const __VLS_component_11: DefineComponent<Props_16, {}, {}, {}, {}, Comp
|
|
|
18
18
|
"tab-changed": (...args: any[]) => void;
|
|
19
19
|
}, string, PublicProps, Readonly<Props_16> & Readonly<{
|
|
20
20
|
"onTab-changed"?: ((...args: any[]) => any) | undefined;
|
|
21
|
-
}>, {
|
|
21
|
+
}>, {
|
|
22
|
+
withControlls: boolean;
|
|
23
|
+
rotateTabsAfter: number;
|
|
24
|
+
buttonOnlyMode: boolean;
|
|
25
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
22
26
|
|
|
23
27
|
declare const __VLS_component_2: DefineComponent<Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_2> & Readonly<{}>, {
|
|
24
28
|
position: keyof typeof dropdownPosition;
|
|
@@ -294,6 +298,7 @@ export declare const AdvancedSearch: __VLS_WithTemplateSlots_7<typeof __VLS_comp
|
|
|
294
298
|
|
|
295
299
|
export declare const Avatar: DefineComponent<Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_7> & Readonly<{}>, {
|
|
296
300
|
onlineStatus: "online" | "offline" | "none";
|
|
301
|
+
fullyRounded: boolean;
|
|
297
302
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
298
303
|
|
|
299
304
|
export declare const Badge: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
@@ -409,6 +414,7 @@ declare interface Props_16 {
|
|
|
409
414
|
items: Array<string>;
|
|
410
415
|
withControlls?: boolean;
|
|
411
416
|
rotateTabsAfter?: number;
|
|
417
|
+
buttonOnlyMode?: boolean;
|
|
412
418
|
}
|
|
413
419
|
|
|
414
420
|
declare interface Props_2 {
|
|
@@ -444,6 +450,7 @@ declare interface Props_7 {
|
|
|
444
450
|
image: string;
|
|
445
451
|
onlineStatus?: "online" | "offline" | "none";
|
|
446
452
|
initials?: string;
|
|
453
|
+
fullyRounded?: boolean;
|
|
447
454
|
}
|
|
448
455
|
|
|
449
456
|
declare interface Props_8 {
|