@aitronos/freddy-plugins 0.1.24 → 0.1.26
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/freddy-plugins.css +1 -0
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +20 -1
- package/dist/index.js +954 -986
- package/dist/index.js.map +1 -0
- package/dist/vite.svg +31 -0
- package/package.json +3 -5
package/dist/index.d.ts
CHANGED
|
@@ -234,7 +234,7 @@ export declare const IconFreddyHubLogo: DefineComponent< {}, {}, {}, {}, {},
|
|
|
234
234
|
|
|
235
235
|
export declare const IconFreddyHubNewLogo: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
236
236
|
|
|
237
|
-
export declare const IconFreddyHubTitle: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {},
|
|
237
|
+
export declare const IconFreddyHubTitle: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLImageElement>;
|
|
238
238
|
|
|
239
239
|
export declare const IconFreddySmall: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
240
240
|
|
|
@@ -364,8 +364,19 @@ export declare const IconZip: DefineComponent< {}, {}, {}, {}, {}, ComponentO
|
|
|
364
364
|
|
|
365
365
|
export declare const IconzipThumbnail: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
366
366
|
|
|
367
|
+
export declare interface IMenuListItem {
|
|
368
|
+
title: string;
|
|
369
|
+
id: number;
|
|
370
|
+
path: string;
|
|
371
|
+
}
|
|
372
|
+
|
|
367
373
|
export declare const interpolateColor: (start: string, end: string, steps: number) => string[];
|
|
368
374
|
|
|
375
|
+
export declare interface ITabList {
|
|
376
|
+
tabList: IMenuListItem[];
|
|
377
|
+
currentTab?: number;
|
|
378
|
+
}
|
|
379
|
+
|
|
369
380
|
export declare const lineChartExternalTooltipWithCircularDots: (context: {
|
|
370
381
|
chart: any;
|
|
371
382
|
tooltip: any;
|
|
@@ -454,6 +465,14 @@ export declare const SnackBar: DefineComponent< {}, {}, {}, {}, {}, Component
|
|
|
454
465
|
|
|
455
466
|
export declare const Spinner: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
456
467
|
|
|
468
|
+
export declare const TabList: DefineComponent<ITabList, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
469
|
+
tabSwitch: (...args: any[]) => void;
|
|
470
|
+
}, string, PublicProps, Readonly<ITabList> & Readonly<{
|
|
471
|
+
onTabSwitch?: ((...args: any[]) => any) | undefined;
|
|
472
|
+
}>, {
|
|
473
|
+
currentTab: number;
|
|
474
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
475
|
+
|
|
457
476
|
declare interface Toast {
|
|
458
477
|
message: string;
|
|
459
478
|
toastType: "success" | "danger" | "info";
|