@aitronos/freddy-plugins 0.4.65 → 0.4.67
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/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +588 -576
- package/dist/index.js.map +1 -1
- package/dist/src/components/Descriptions.vue.d.ts +1 -1
- package/dist/src/components/TextAreaInputField.vue.d.ts +4 -4
- package/dist/src/components/TooltipV2.vue.d.ts +4 -5
- package/package.json +2 -2
- package/CHANGELOG.md +0 -697
|
@@ -66,7 +66,6 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
66
66
|
openaiApiKey: string;
|
|
67
67
|
openaiModel: string;
|
|
68
68
|
openaiOrganization: string;
|
|
69
|
-
showTooltip: boolean;
|
|
70
69
|
showAiButton: boolean;
|
|
71
70
|
hintText: string;
|
|
72
71
|
errorMessage: string;
|
|
@@ -79,6 +78,7 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
79
78
|
oldText: string;
|
|
80
79
|
newText: string;
|
|
81
80
|
tagsOnly: boolean;
|
|
81
|
+
showTooltip: boolean;
|
|
82
82
|
stage: DescriptionStage;
|
|
83
83
|
destructive: boolean;
|
|
84
84
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -5,8 +5,8 @@ interface Props {
|
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
readonly?: boolean;
|
|
7
7
|
required?: boolean;
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
tooltipTitle?: string;
|
|
9
|
+
tooltipDescription?: string;
|
|
10
10
|
showAiButton?: boolean;
|
|
11
11
|
showTags?: boolean;
|
|
12
12
|
tags?: string[];
|
|
@@ -248,13 +248,13 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
|
248
248
|
required: boolean;
|
|
249
249
|
disabled: boolean;
|
|
250
250
|
tags: string[];
|
|
251
|
-
tooltipText: string;
|
|
252
251
|
modelValue: string;
|
|
253
252
|
readonly: boolean;
|
|
254
253
|
openaiApiKey: string;
|
|
255
254
|
openaiModel: string;
|
|
256
255
|
openaiOrganization: string;
|
|
257
|
-
|
|
256
|
+
tooltipTitle: string;
|
|
257
|
+
tooltipDescription: string;
|
|
258
258
|
showAiButton: boolean;
|
|
259
259
|
showTags: boolean;
|
|
260
260
|
showAddTagsPlaceholder: boolean;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
interface TooltipV2Props {
|
|
2
|
-
/** The
|
|
3
|
-
|
|
2
|
+
/** The title to display at the top of the tooltip (supports HTML) */
|
|
3
|
+
title?: string;
|
|
4
|
+
/** The description to display below the title (supports HTML) */
|
|
5
|
+
description?: string;
|
|
4
6
|
/** The placement of the tooltip relative to the trigger element */
|
|
5
7
|
placement?: 'top' | 'bottom' | 'left' | 'right';
|
|
6
|
-
/** Whether to render the text as HTML */
|
|
7
|
-
html?: boolean;
|
|
8
8
|
/** Custom CSS class to apply to the tooltip content */
|
|
9
9
|
contentClass?: string;
|
|
10
10
|
/** Delay before showing the tooltip (in milliseconds) */
|
|
@@ -26,7 +26,6 @@ declare function __VLS_template(): {
|
|
|
26
26
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
27
27
|
declare const __VLS_component: import('vue').DefineComponent<TooltipV2Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TooltipV2Props> & Readonly<{}>, {
|
|
28
28
|
delay: number;
|
|
29
|
-
html: boolean;
|
|
30
29
|
placement: "top" | "bottom" | "left" | "right";
|
|
31
30
|
hideDelay: number;
|
|
32
31
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aitronos/freddy-plugins",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.67",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -128,4 +128,4 @@
|
|
|
128
128
|
"vue-tsc": "^2.2.10"
|
|
129
129
|
},
|
|
130
130
|
"packageManager": "yarn@4.7.0"
|
|
131
|
-
}
|
|
131
|
+
}
|