@aitronos/freddy-plugins 0.1.67 → 0.1.68
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +6 -4
- package/dist/index.js +595 -585
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { App } from 'vue';
|
|
1
2
|
import { ComponentOptionsMixin } from 'vue';
|
|
2
3
|
import { ComponentProvideOptions } from 'vue';
|
|
3
4
|
import { ComputedRef } from 'vue';
|
|
4
5
|
import { DefineComponent } from 'vue';
|
|
5
|
-
import { Directive } from 'vue';
|
|
6
6
|
import { ExtractPropTypes } from 'vue';
|
|
7
7
|
import { PublicProps } from 'vue';
|
|
8
8
|
import { Ref } from 'vue';
|
|
@@ -341,6 +341,11 @@ export declare function formatDateToLocaleString(dateString: Date | string): str
|
|
|
341
341
|
*/
|
|
342
342
|
export declare function formatLastUsedDate(inputDate: Date | string, createdOnDate?: Date | string): string;
|
|
343
343
|
|
|
344
|
+
declare const FreddyPlugin: {
|
|
345
|
+
install(app: App): void;
|
|
346
|
+
};
|
|
347
|
+
export default FreddyPlugin;
|
|
348
|
+
|
|
344
349
|
/**
|
|
345
350
|
* Generates an array of dates for a given month in "day month_name" format.
|
|
346
351
|
* @param monthNumber - The month number (1-12).
|
|
@@ -579,9 +584,6 @@ export declare const IconStreamLineHub: DefineComponent< {}, {}, {}, {}, {},
|
|
|
579
584
|
|
|
580
585
|
export declare const IconStreamLineHubNewLogo: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
581
586
|
|
|
582
|
-
declare const IconStyleDirective: Directive;
|
|
583
|
-
export default IconStyleDirective;
|
|
584
|
-
|
|
585
587
|
export declare const IconSun: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
586
588
|
|
|
587
589
|
export declare const IconSwap: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|