@aitronos/freddy-plugins 0.2.7 → 0.3.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/CHANGELOG.md +4 -0
- package/dist/freddy-plugins.css +1 -1
- package/dist/index.cjs +35 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +1073 -1021
- package/dist/index.js.map +1 -1
- package/package.json +9 -3
package/dist/index.d.ts
CHANGED
|
@@ -254,6 +254,8 @@ declare type __VLS_WithTemplateSlots_6<T, S> = T & {
|
|
|
254
254
|
|
|
255
255
|
export declare const AdvancedModal: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
256
256
|
|
|
257
|
+
export declare const AnimeSpaceman: DefineComponent<SpacemanLogoProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SpacemanLogoProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, SVGSVGElement>;
|
|
258
|
+
|
|
257
259
|
export declare const Button: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
258
260
|
|
|
259
261
|
/**
|
|
@@ -712,9 +714,9 @@ onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
|
712
714
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
713
715
|
"onTrailing-button-click"?: ((event: MouseEvent) => any) | undefined;
|
|
714
716
|
}>, {
|
|
717
|
+
label: string;
|
|
715
718
|
type: "default" | "leading-dropdown" | "trailing-dropdown" | "leading-text" | "payment" | "trailing-button" | "clear" | "freddy-input";
|
|
716
719
|
placeholder: string;
|
|
717
|
-
label: string;
|
|
718
720
|
size: "sm" | "md" | "lg";
|
|
719
721
|
disabled: boolean;
|
|
720
722
|
destructive: boolean;
|
|
@@ -939,6 +941,13 @@ export declare interface Snack {
|
|
|
939
941
|
|
|
940
942
|
export declare const SnackBar: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
941
943
|
|
|
944
|
+
declare interface SpacemanLogoProps {
|
|
945
|
+
/** Custom CSS class to apply to the component */
|
|
946
|
+
customClass?: string;
|
|
947
|
+
/** Custom inline styles to apply */
|
|
948
|
+
customStyle?: string | Record<string, string>;
|
|
949
|
+
}
|
|
950
|
+
|
|
942
951
|
export declare const Spinner: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
943
952
|
|
|
944
953
|
export declare const Switch: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|