@aitronos/freddy-plugins 0.4.70 → 0.4.72
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 -1
- package/dist/icons-BnVotbNB.cjs +2 -0
- package/dist/icons-BnVotbNB.cjs.map +1 -0
- package/dist/{icons-CR3CDndF.js → icons-Bnx__jxy.js} +761 -764
- package/dist/icons-Bnx__jxy.js.map +1 -0
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +539 -522
- package/dist/index.js.map +1 -1
- package/dist/src/components/ConfirmationModal.vue.d.ts +11 -27
- package/dist/src/components/DeleteConfirmationModal.vue.d.ts +11 -27
- package/dist/src/components/Descriptions.vue.d.ts +1 -1
- package/dist/src/components/InputField/BaseInput.vue.d.ts +1 -1
- package/dist/src/components/InputField/CardInput.vue.d.ts +1 -1
- package/dist/src/components/InputField/DefaultInput.vue.d.ts +1 -1
- package/dist/src/components/InputField/InputField.vue.d.ts +1 -1
- package/dist/src/components/InputField/PhoneInput.vue.d.ts +1 -1
- package/dist/src/components/TextAreaInputField.vue.d.ts +1 -1
- package/package.json +1 -1
- package/dist/icons-CR3CDndF.js.map +0 -1
- package/dist/icons-Z_e_V0AI.cjs +0 -2
- package/dist/icons-Z_e_V0AI.cjs.map +0 -1
|
@@ -1,28 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
title:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
confirmDeletion: (...args: any[]) => void;
|
|
13
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
14
|
-
title: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
required: true;
|
|
17
|
-
};
|
|
18
|
-
description: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
}>> & Readonly<{
|
|
23
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
24
|
-
onConfirmDeletion?: ((...args: any[]) => any) | undefined;
|
|
25
|
-
}>, {
|
|
26
|
-
description: string;
|
|
27
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1
|
+
interface Props {
|
|
2
|
+
title: string;
|
|
3
|
+
description?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
6
|
+
close: (value: boolean) => any;
|
|
7
|
+
confirmDeletion: (value: boolean) => any;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
9
|
+
onClose?: ((value: boolean) => any) | undefined;
|
|
10
|
+
onConfirmDeletion?: ((value: boolean) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
28
12
|
export default _default;
|
|
@@ -1,28 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
title:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
confirmDeletion: (...args: any[]) => void;
|
|
13
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
14
|
-
title: {
|
|
15
|
-
type: StringConstructor;
|
|
16
|
-
required: true;
|
|
17
|
-
};
|
|
18
|
-
description: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: string;
|
|
21
|
-
};
|
|
22
|
-
}>> & Readonly<{
|
|
23
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
24
|
-
onConfirmDeletion?: ((...args: any[]) => any) | undefined;
|
|
25
|
-
}>, {
|
|
26
|
-
description: string;
|
|
27
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1
|
+
interface Props {
|
|
2
|
+
title: string;
|
|
3
|
+
description?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
6
|
+
close: (value: boolean) => any;
|
|
7
|
+
confirmDeletion: (value: boolean) => any;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
9
|
+
onClose?: ((value: boolean) => any) | undefined;
|
|
10
|
+
onConfirmDeletion?: ((value: boolean) => any) | undefined;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
28
12
|
export default _default;
|
|
@@ -27,11 +27,11 @@ declare const _default: import('vue').DefineComponent<DescriptionsProps, {
|
|
|
27
27
|
label: string;
|
|
28
28
|
type: DescriptionType;
|
|
29
29
|
placeholder: string;
|
|
30
|
-
required: boolean;
|
|
31
30
|
disabled: boolean;
|
|
32
31
|
tags: string[];
|
|
33
32
|
modelValue: string;
|
|
34
33
|
readonly: boolean;
|
|
34
|
+
required: boolean;
|
|
35
35
|
openaiApiKey: string;
|
|
36
36
|
openaiModel: string;
|
|
37
37
|
openaiOrganization: string;
|
|
@@ -29,9 +29,9 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
|
29
29
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
30
30
|
}>, {
|
|
31
31
|
label: string;
|
|
32
|
-
required: boolean;
|
|
33
32
|
size: import('../../interfaces/input-field.interfaces').InputFieldSize;
|
|
34
33
|
disabled: boolean;
|
|
34
|
+
required: boolean;
|
|
35
35
|
state: import('../../interfaces/input-field.interfaces').InputFieldState;
|
|
36
36
|
hintText: string;
|
|
37
37
|
destructive: boolean;
|
|
@@ -59,7 +59,6 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
59
59
|
}>, {
|
|
60
60
|
label: string;
|
|
61
61
|
placeholder: string;
|
|
62
|
-
required: boolean;
|
|
63
62
|
size: import('../../interfaces/input-field.interfaces').InputFieldSize;
|
|
64
63
|
disabled: boolean;
|
|
65
64
|
cardNumber: string;
|
|
@@ -67,6 +66,7 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
67
66
|
maskInput: boolean;
|
|
68
67
|
showCardIcon: boolean;
|
|
69
68
|
readonly: boolean;
|
|
69
|
+
required: boolean;
|
|
70
70
|
state: import('../../interfaces/input-field.interfaces').InputFieldState;
|
|
71
71
|
hintText: string;
|
|
72
72
|
destructive: boolean;
|
|
@@ -23,12 +23,12 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
23
23
|
}>, {
|
|
24
24
|
label: string;
|
|
25
25
|
placeholder: string;
|
|
26
|
-
required: boolean;
|
|
27
26
|
size: import('../../interfaces/input-field.interfaces').InputFieldSize;
|
|
28
27
|
disabled: boolean;
|
|
29
28
|
inputType: string;
|
|
30
29
|
modelValue: string;
|
|
31
30
|
readonly: boolean;
|
|
31
|
+
required: boolean;
|
|
32
32
|
state: import('../../interfaces/input-field.interfaces').InputFieldState;
|
|
33
33
|
hintText: string;
|
|
34
34
|
destructive: boolean;
|
|
@@ -57,7 +57,6 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
57
57
|
label: string;
|
|
58
58
|
type: import('../../interfaces/input-field.interfaces').InputFieldVariant;
|
|
59
59
|
placeholder: string;
|
|
60
|
-
required: boolean;
|
|
61
60
|
size: import('../../interfaces/input-field.interfaces').InputFieldSize;
|
|
62
61
|
disabled: boolean;
|
|
63
62
|
countryCode: string;
|
|
@@ -65,6 +64,7 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
65
64
|
inputType: string;
|
|
66
65
|
modelValue: string;
|
|
67
66
|
readonly: boolean;
|
|
67
|
+
required: boolean;
|
|
68
68
|
state: import('../../interfaces/input-field.interfaces').InputFieldState;
|
|
69
69
|
variant: import('../../interfaces/input-field.interfaces').InputFieldVariant;
|
|
70
70
|
hintText: string;
|
|
@@ -59,12 +59,12 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
59
59
|
}>, {
|
|
60
60
|
label: string;
|
|
61
61
|
placeholder: string;
|
|
62
|
-
required: boolean;
|
|
63
62
|
size: import('../../interfaces/input-field.interfaces').InputFieldSize;
|
|
64
63
|
disabled: boolean;
|
|
65
64
|
countryCode: string;
|
|
66
65
|
phoneNumber: string;
|
|
67
66
|
readonly: boolean;
|
|
67
|
+
required: boolean;
|
|
68
68
|
state: import('../../interfaces/input-field.interfaces').InputFieldState;
|
|
69
69
|
hintText: string;
|
|
70
70
|
destructive: boolean;
|
|
@@ -245,11 +245,11 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
|
245
245
|
}>, {
|
|
246
246
|
label: string;
|
|
247
247
|
placeholder: string;
|
|
248
|
-
required: boolean;
|
|
249
248
|
disabled: boolean;
|
|
250
249
|
tags: string[];
|
|
251
250
|
modelValue: string;
|
|
252
251
|
readonly: boolean;
|
|
252
|
+
required: boolean;
|
|
253
253
|
openaiApiKey: string;
|
|
254
254
|
openaiModel: string;
|
|
255
255
|
openaiOrganization: string;
|