@aitronos/freddy-plugins 0.4.57 → 0.4.59
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 +28 -0
- package/README.md +224 -27
- package/dist/freddy-plugins.css +1 -1
- package/dist/{icons-Lnvg2xiB.js → icons-Be1wtE70.js} +2066 -2000
- package/dist/icons-Be1wtE70.js.map +1 -0
- package/dist/icons-CCfXKsmx.cjs +2 -0
- package/dist/icons-CCfXKsmx.cjs.map +1 -0
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +6 -4389
- package/dist/index.js +2252 -2234
- package/dist/index.js.map +1 -1
- package/dist/src/App.vue.d.ts +2 -0
- package/dist/src/animations/AnimeSpaceman.vue.d.ts +8 -0
- package/dist/src/animations/index.d.ts +1 -0
- package/dist/src/assets/logos/index.d.ts +4 -0
- package/dist/src/components/AdvancedModal.vue.d.ts +23 -0
- package/dist/src/components/Assistant/AssistantField.vue.d.ts +13 -0
- package/dist/src/components/Assistant/AssistantList.vue.d.ts +10 -0
- package/dist/src/components/Assistant/AssistantsHeader.vue.d.ts +17 -0
- package/dist/src/components/Assistant/AvatarChoosing.vue.d.ts +16 -0
- package/dist/src/components/Assistant/AvatarList.vue.d.ts +30 -0
- package/dist/src/components/Assistant/ChooseAssistantAvatar.vue.d.ts +77 -0
- package/dist/src/components/Assistant/RulesManagement.vue.d.ts +28 -0
- package/dist/src/components/Assistant/VectorFrame.vue.d.ts +15 -0
- package/dist/src/components/Assistant/VectorSection.vue.d.ts +31 -0
- package/dist/src/components/Assistant/VoiceList.vue.d.ts +27 -0
- package/dist/src/components/Assistant/VoiceSelection.vue.d.ts +12 -0
- package/dist/src/components/Buttons/BaseButton.vue.d.ts +25 -0
- package/dist/src/components/Buttons/SocialButtons.vue.d.ts +13 -0
- package/dist/src/components/Buttons/index.d.ts +2 -0
- package/dist/src/components/CodeBlock.vue.d.ts +6 -0
- package/dist/src/components/ConfirmationModal.vue.d.ts +28 -0
- package/dist/src/components/CustomCheckbox.vue.d.ts +13 -0
- package/dist/src/components/DeleteConfirmationModal.vue.d.ts +28 -0
- package/dist/src/components/Descriptions.vue.d.ts +85 -0
- package/dist/src/components/DiffTextarea.vue.d.ts +21 -0
- package/dist/src/components/Dropdown.vue.d.ts +75 -0
- package/dist/src/components/EditFeaturedExcerptModal.vue.d.ts +161 -0
- package/dist/src/components/EmailCodeVerification.vue.d.ts +20 -0
- package/dist/src/components/InputField/BaseInput.vue.d.ts +46 -0
- package/dist/src/components/InputField/CardInput.vue.d.ts +77 -0
- package/dist/src/components/InputField/DefaultInput.vue.d.ts +39 -0
- package/dist/src/components/InputField/InputField.vue.d.ts +74 -0
- package/dist/src/components/InputField/PhoneInput.vue.d.ts +75 -0
- package/dist/src/components/InputField/index.d.ts +5 -0
- package/dist/src/components/Instructions/InstructionsModal.vue.d.ts +12 -0
- package/dist/src/components/Instructions/InstructiontextArea.vue.d.ts +11 -0
- package/dist/src/components/ModalOverlay.vue.d.ts +26 -0
- package/dist/src/components/ModelDropdown.vue.d.ts +23 -0
- package/dist/src/components/OutputModeModal.vue.d.ts +61 -0
- package/dist/src/components/Pagination.vue.d.ts +42 -0
- package/dist/src/components/SearchInput.vue.d.ts +26 -0
- package/dist/src/components/SendButton.vue.d.ts +7 -0
- package/dist/src/components/SimpleChatInterface.vue.d.ts +48 -0
- package/dist/src/components/SkeletonLoader.vue.d.ts +8 -0
- package/dist/src/components/Slider.vue.d.ts +19 -0
- package/dist/src/components/SnackBar.vue.d.ts +2 -0
- package/dist/src/components/Spinner.vue.d.ts +5 -0
- package/dist/src/components/Switch.vue.d.ts +11 -0
- package/dist/src/components/SwitchSlot.vue.d.ts +22 -0
- package/dist/src/components/TabList.vue.d.ts +9 -0
- package/dist/src/components/Tabs/BaseTabButton.vue.d.ts +12 -0
- package/dist/src/components/Tabs/index.d.ts +5 -0
- package/dist/src/components/TextAreaInputField.vue.d.ts +266 -0
- package/dist/src/components/ToastMessage.vue.d.ts +2 -0
- package/dist/src/components/Tooltip.vue.d.ts +32 -0
- package/dist/src/components/TooltipV2.vue.d.ts +41 -0
- package/dist/src/components/index.d.ts +50 -0
- package/dist/src/composables/index.d.ts +4 -0
- package/dist/src/composables/useErrorHandler.d.ts +46 -0
- package/dist/src/composables/usePerformance.d.ts +54 -0
- package/dist/src/composables/useTheme.d.ts +37 -0
- package/dist/src/config/api.config.d.ts +31 -0
- package/dist/src/config/colors/brands/contentplate.colors.d.ts +3 -0
- package/dist/src/config/colors/brands/flowplate.colors.d.ts +3 -0
- package/dist/src/config/colors/brands/freddy.colors.d.ts +3 -0
- package/dist/src/config/colors/color-system.d.ts +58 -0
- package/dist/src/config/colors/index.d.ts +12 -0
- package/dist/src/config/colors/types/color-system.types.d.ts +62 -0
- package/dist/src/config/colors/types/color.types.d.ts +99 -0
- package/dist/src/config/colors/utils/color.utils.d.ts +86 -0
- package/dist/src/config/environments.d.ts +11 -0
- package/dist/src/config/theme/freddy-default.d.ts +16 -0
- package/dist/src/config/theme/freddy-light.d.ts +14 -0
- package/dist/src/config/theme/global-theme-store.d.ts +128 -0
- package/dist/src/config/theme/themes.d.ts +12 -0
- package/dist/src/directives/frSanitize.d.ts +5 -0
- package/dist/src/directives/index.d.ts +1 -0
- package/dist/src/foundations/components/Logo.vue.d.ts +11 -0
- package/dist/src/foundations/components/index.d.ts +1 -0
- package/dist/src/foundations/index.d.ts +1 -0
- package/dist/src/helpers/BaseImageIcon.vue.d.ts +6 -0
- package/dist/src/helpers/api-response.helper.d.ts +100 -0
- package/dist/src/helpers/colors.helper.d.ts +8 -0
- package/dist/src/helpers/common.helper.d.ts +42 -0
- package/dist/src/helpers/date-format.helper.d.ts +34 -0
- package/dist/src/helpers/date.helper.d.ts +23 -0
- package/dist/src/helpers/fileName-handler.helper.d.ts +6 -0
- package/dist/src/helpers/index.d.ts +9 -0
- package/dist/src/helpers/percentageCalc.helper.d.ts +7 -0
- package/dist/src/helpers/validators.helper.d.ts +11 -0
- package/dist/src/icons/IconAddChatPop.vue.d.ts +2 -0
- package/dist/src/icons/IconAddFileSystem.vue.d.ts +2 -0
- package/dist/src/icons/IconAddPeople.vue.d.ts +2 -0
- package/dist/src/icons/IconAitronos.vue.d.ts +2 -0
- package/dist/src/icons/IconApple.vue.d.ts +2 -0
- package/dist/src/icons/IconApplePay.vue.d.ts +2 -0
- package/dist/src/icons/IconAppsGrid.vue.d.ts +2 -0
- package/dist/src/icons/IconArrowDown.vue.d.ts +2 -0
- package/dist/src/icons/IconArrowLeft.vue.d.ts +2 -0
- package/dist/src/icons/IconArrowUp.vue.d.ts +2 -0
- package/dist/src/icons/IconBadgeCheck.vue.d.ts +2 -0
- package/dist/src/icons/IconBroom.vue.d.ts +2 -0
- package/dist/src/icons/IconBuildings.vue.d.ts +2 -0
- package/dist/src/icons/IconCalendarWithTickInside.vue.d.ts +2 -0
- package/dist/src/icons/IconCallNotAllowed.vue.d.ts +2 -0
- package/dist/src/icons/IconCardPay.vue.d.ts +2 -0
- package/dist/src/icons/IconCaution.vue.d.ts +2 -0
- package/dist/src/icons/IconChangeLog.vue.d.ts +2 -0
- package/dist/src/icons/IconCheckCircleFill.vue.d.ts +2 -0
- package/dist/src/icons/IconCheckInCircle.vue.d.ts +2 -0
- package/dist/src/icons/IconCheckRounded.vue.d.ts +2 -0
- package/dist/src/icons/IconChevronDown.vue.d.ts +2 -0
- package/dist/src/icons/IconChevronLeft.vue.d.ts +2 -0
- package/dist/src/icons/IconChevronRight.vue.d.ts +2 -0
- package/dist/src/icons/IconChevronUp.vue.d.ts +2 -0
- package/dist/src/icons/IconCircledCheck.vue.d.ts +2 -0
- package/dist/src/icons/IconClock.vue.d.ts +2 -0
- package/dist/src/icons/IconClosedEnvelope.vue.d.ts +2 -0
- package/dist/src/icons/IconCloudUpload.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorConfluence.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorFigma.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorFreshDesk.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorGitHub.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorJira.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorLinear.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorNotion.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorSlack.vue.d.ts +2 -0
- package/dist/src/icons/IconConnectorZapier.vue.d.ts +2 -0
- package/dist/src/icons/IconCopy.vue.d.ts +2 -0
- package/dist/src/icons/IconCross.vue.d.ts +2 -0
- package/dist/src/icons/IconCrossCircleFill.vue.d.ts +2 -0
- package/dist/src/icons/IconCrossInCircle.vue.d.ts +2 -0
- package/dist/src/icons/IconCurrentTick.vue.d.ts +2 -0
- package/dist/src/icons/IconDataUpload.vue.d.ts +2 -0
- package/dist/src/icons/IconDelete.vue.d.ts +2 -0
- package/dist/src/icons/IconDeleteFillRed.vue.d.ts +2 -0
- package/dist/src/icons/IconDialingPhone.vue.d.ts +2 -0
- package/dist/src/icons/IconDisabledAlert.vue.d.ts +2 -0
- package/dist/src/icons/IconDocumentation.vue.d.ts +2 -0
- package/dist/src/icons/IconDownload.vue.d.ts +2 -0
- package/dist/src/icons/IconDribbble.vue.d.ts +2 -0
- package/dist/src/icons/IconDropdownArrow.vue.d.ts +2 -0
- package/dist/src/icons/IconEdit.vue.d.ts +2 -0
- package/dist/src/icons/IconEditLinePath.vue.d.ts +72 -0
- package/dist/src/icons/IconEllipse.vue.d.ts +2 -0
- package/dist/src/icons/IconExcelThumbnail.vue.d.ts +2 -0
- package/dist/src/icons/IconEye.vue.d.ts +2 -0
- package/dist/src/icons/IconFacebook.vue.d.ts +2 -0
- package/dist/src/icons/IconFigma.vue.d.ts +2 -0
- package/dist/src/icons/IconFile.vue.d.ts +2 -0
- package/dist/src/icons/IconFileSystem.vue.d.ts +2 -0
- package/dist/src/icons/IconFileUpload.vue.d.ts +2 -0
- package/dist/src/icons/IconFilter.vue.d.ts +2 -0
- package/dist/src/icons/IconFolder.vue.d.ts +2 -0
- package/dist/src/icons/IconFreddyHub.vue.d.ts +2 -0
- package/dist/src/icons/IconFreddyHubLogo.vue.d.ts +2 -0
- package/dist/src/icons/IconFreddyHubNewLogo.vue.d.ts +2 -0
- package/dist/src/icons/IconFreddyHubTitle.vue.d.ts +2 -0
- package/dist/src/icons/IconFreddySmall.vue.d.ts +2 -0
- package/dist/src/icons/IconGlobExpand.vue.d.ts +2 -0
- package/dist/src/icons/IconGlobe.vue.d.ts +2 -0
- package/dist/src/icons/IconGoogle.vue.d.ts +2 -0
- package/dist/src/icons/IconHollowCircle.vue.d.ts +2 -0
- package/dist/src/icons/IconHome.vue.d.ts +2 -0
- package/dist/src/icons/IconInfoRounded.vue.d.ts +2 -0
- package/dist/src/icons/IconInvalidInvoice.vue.d.ts +2 -0
- package/dist/src/icons/IconInvoice.vue.d.ts +2 -0
- package/dist/src/icons/IconInvoiceSwitch.vue.d.ts +2 -0
- package/dist/src/icons/IconLapTableBottom.vue.d.ts +2 -0
- package/dist/src/icons/IconLense.vue.d.ts +2 -0
- package/dist/src/icons/IconLightCross.vue.d.ts +2 -0
- package/dist/src/icons/IconLink04.vue.d.ts +2 -0
- package/dist/src/icons/IconLoadingError.vue.d.ts +2 -0
- package/dist/src/icons/IconLoadingOrg.vue.d.ts +2 -0
- package/dist/src/icons/IconLocationWithCircleIn.vue.d.ts +2 -0
- package/dist/src/icons/IconLock.vue.d.ts +2 -0
- package/dist/src/icons/IconMarketPlace.vue.d.ts +2 -0
- package/dist/src/icons/IconMaximize.vue.d.ts +2 -0
- package/dist/src/icons/IconMicrophone.vue.d.ts +2 -0
- package/dist/src/icons/IconMutedMicrophone.vue.d.ts +2 -0
- package/dist/src/icons/IconNewNotification.vue.d.ts +2 -0
- package/dist/src/icons/IconNewTab.vue.d.ts +2 -0
- package/dist/src/icons/IconNotification.vue.d.ts +2 -0
- package/dist/src/icons/IconOpenBook.vue.d.ts +2 -0
- package/dist/src/icons/IconPaperAirPlane.vue.d.ts +2 -0
- package/dist/src/icons/IconPauseCircle.vue.d.ts +2 -0
- package/dist/src/icons/IconPdfThumbnail.vue.d.ts +2 -0
- package/dist/src/icons/IconPenEdit.vue.d.ts +2 -0
- package/dist/src/icons/IconPencil.vue.d.ts +2 -0
- package/dist/src/icons/IconPeopleHub.vue.d.ts +2 -0
- package/dist/src/icons/IconPersonCircle.vue.d.ts +2 -0
- package/dist/src/icons/IconPits.vue.d.ts +2 -0
- package/dist/src/icons/IconPlay.vue.d.ts +2 -0
- package/dist/src/icons/IconPlus.vue.d.ts +2 -0
- package/dist/src/icons/IconPolygonDown.vue.d.ts +2 -0
- package/dist/src/icons/IconPresentation.vue.d.ts +2 -0
- package/dist/src/icons/IconProgressBase.vue.d.ts +2 -0
- package/dist/src/icons/IconProgressComplete.vue.d.ts +2 -0
- package/dist/src/icons/IconProgressGoing.vue.d.ts +2 -0
- package/dist/src/icons/IconPurpose.vue.d.ts +2 -0
- package/dist/src/icons/IconPurseCircleFill.vue.d.ts +2 -0
- package/dist/src/icons/IconQuestion.vue.d.ts +2 -0
- package/dist/src/icons/IconRadio.vue.d.ts +2 -0
- package/dist/src/icons/IconRadioFill.vue.d.ts +2 -0
- package/dist/src/icons/IconRefresh.vue.d.ts +2 -0
- package/dist/src/icons/IconRevertedTriangle.vue.d.ts +2 -0
- package/dist/src/icons/IconRobotScreen.vue.d.ts +2 -0
- package/dist/src/icons/IconRoundTick.vue.d.ts +2 -0
- package/dist/src/icons/IconSearch.vue.d.ts +2 -0
- package/dist/src/icons/IconSearchOptimised.vue.d.ts +2 -0
- package/dist/src/icons/IconSectionHide.vue.d.ts +2 -0
- package/dist/src/icons/IconSend.vue.d.ts +2 -0
- package/dist/src/icons/IconSettings.vue.d.ts +2 -0
- package/dist/src/icons/IconSettingsBold.vue.d.ts +2 -0
- package/dist/src/icons/IconSize.vue.d.ts +2 -0
- package/dist/src/icons/IconSliderKnobs.vue.d.ts +2 -0
- package/dist/src/icons/IconSortIdle.vue.d.ts +2 -0
- package/dist/src/icons/IconSparkle.vue.d.ts +2 -0
- package/dist/src/icons/IconSpotlio.vue.d.ts +2 -0
- package/dist/src/icons/IconStar.vue.d.ts +2 -0
- package/dist/src/icons/IconStatistics.vue.d.ts +2 -0
- package/dist/src/icons/IconStopChat.vue.d.ts +2 -0
- package/dist/src/icons/IconStreamLineHub.vue.d.ts +2 -0
- package/dist/src/icons/IconStreamLineHubNewLogo.vue.d.ts +2 -0
- package/dist/src/icons/IconSun.vue.d.ts +2 -0
- package/dist/src/icons/IconSwap.vue.d.ts +2 -0
- package/dist/src/icons/IconText.vue.d.ts +2 -0
- package/dist/src/icons/IconTextThumbnail.vue.d.ts +2 -0
- package/dist/src/icons/IconThinDocument.vue.d.ts +2 -0
- package/dist/src/icons/IconThinFile.vue.d.ts +2 -0
- package/dist/src/icons/IconThumbsDown.vue.d.ts +2 -0
- package/dist/src/icons/IconTick.vue.d.ts +2 -0
- package/dist/src/icons/IconUser.vue.d.ts +2 -0
- package/dist/src/icons/IconVerticalDots.vue.d.ts +2 -0
- package/dist/src/icons/IconVideoCamera.vue.d.ts +2 -0
- package/dist/src/icons/IconWarningOctal.vue.d.ts +2 -0
- package/dist/src/icons/IconX.vue.d.ts +2 -0
- package/dist/src/icons/IconZip.vue.d.ts +2 -0
- package/dist/src/icons/index.d.ts +148 -0
- package/dist/src/index.d.ts +23 -0
- package/dist/src/interfaces/assistant.interfaces.d.ts +237 -0
- package/dist/src/interfaces/base-button.interfaces.d.ts +119 -0
- package/dist/src/interfaces/color-comparison.interfaces.d.ts +71 -0
- package/dist/src/interfaces/index.d.ts +19 -0
- package/dist/src/interfaces/input-field.interfaces.d.ts +226 -0
- package/dist/src/interfaces/reference.d.ts +14 -0
- package/dist/src/interfaces/services/ai.interfaces.d.ts +56 -0
- package/dist/src/interfaces/services/api.interfaces.d.ts +46 -0
- package/dist/src/interfaces/services/auth.interfaces.d.ts +99 -0
- package/dist/src/interfaces/services/index.d.ts +7 -0
- package/dist/src/interfaces/skeleton-loader.interfaces.d.ts +1 -0
- package/dist/src/interfaces/slider.interfaces.d.ts +81 -0
- package/dist/src/interfaces/social-buttons.interfaces.d.ts +115 -0
- package/dist/src/interfaces/switch-slot.interfaces.d.ts +55 -0
- package/dist/src/interfaces/tab-button.interfaces.d.ts +23 -0
- package/dist/src/interfaces/tab-list.interfaces.d.ts +15 -0
- package/dist/src/interfaces/theme/index.d.ts +5 -0
- package/dist/src/interfaces/theme/theme.interfaces.d.ts +88 -0
- package/dist/src/interfaces/ui/chat.interfaces.d.ts +66 -0
- package/dist/src/interfaces/ui/editor.interfaces.d.ts +31 -0
- package/dist/src/interfaces/ui/feedback.interfaces.d.ts +39 -0
- package/dist/src/interfaces/ui/form.interfaces.d.ts +51 -0
- package/dist/src/interfaces/ui/index.d.ts +10 -0
- package/dist/src/interfaces/ui/modal.interfaces.d.ts +34 -0
- package/dist/src/interfaces/ui/navigation.interfaces.d.ts +31 -0
- package/dist/src/interfaces/utilities/common.interfaces.d.ts +59 -0
- package/dist/src/interfaces/utilities/index.d.ts +5 -0
- package/dist/src/main.d.ts +1 -0
- package/dist/src/plugin.d.ts +5 -0
- package/dist/src/plugins/icon-style.d.ts +3 -0
- package/dist/src/plugins/index.d.ts +11 -0
- package/dist/src/services/AITextService.d.ts +68 -0
- package/dist/src/services/index.d.ts +15 -0
- package/dist/src/utility/confirmationModal.d.ts +2 -0
- package/dist/src/utility/index.d.ts +3 -0
- package/dist/src/utility/useSnackbar.d.ts +26 -0
- package/dist/src/utility/useToast.d.ts +19 -0
- package/package.json +6 -2
- package/dist/icons-DQveW34E.cjs +0 -2
- package/dist/icons-DQveW34E.cjs.map +0 -1
- package/dist/icons-Lnvg2xiB.js.map +0 -1
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Interfaces for BaseTabButton component
|
|
3
|
+
*/
|
|
4
|
+
export type TabButtonType = 'underline' | 'line' | 'button';
|
|
5
|
+
export type TabButtonSize = 'sm';
|
|
6
|
+
export type VerticalTabType = 'button-primary' | 'button-gray' | 'button-border' | 'line';
|
|
7
|
+
export type VerticalTabSize = 'sm' | 'md';
|
|
8
|
+
export interface IBaseTabButton {
|
|
9
|
+
label: string;
|
|
10
|
+
badge?: number;
|
|
11
|
+
type?: TabButtonType;
|
|
12
|
+
size?: TabButtonSize;
|
|
13
|
+
active?: boolean;
|
|
14
|
+
disabled?: boolean;
|
|
15
|
+
}
|
|
16
|
+
export interface IVerticalTab {
|
|
17
|
+
label: string;
|
|
18
|
+
badge?: number;
|
|
19
|
+
type?: VerticalTabType;
|
|
20
|
+
size?: VerticalTabSize;
|
|
21
|
+
active?: boolean;
|
|
22
|
+
disabled?: boolean;
|
|
23
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Interfaces for TabList component
|
|
3
|
+
*/
|
|
4
|
+
export interface IMenuListItem {
|
|
5
|
+
id: number;
|
|
6
|
+
title: string;
|
|
7
|
+
badge?: number;
|
|
8
|
+
}
|
|
9
|
+
export interface ITabList {
|
|
10
|
+
tabList: IMenuListItem[];
|
|
11
|
+
currentTab?: number;
|
|
12
|
+
activeStateType?: 'bottom-dash' | 'left-dash' | 'background-border';
|
|
13
|
+
orientation?: 'horizontal' | 'vertical';
|
|
14
|
+
fullWidth?: boolean;
|
|
15
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Theme System Interfaces
|
|
3
|
+
* Interfaces for theme configuration, colors, and styling
|
|
4
|
+
*/
|
|
5
|
+
export interface IThemeConfig {
|
|
6
|
+
name: string;
|
|
7
|
+
displayName: string;
|
|
8
|
+
colors: IThemeColors;
|
|
9
|
+
typography?: IThemeTypography;
|
|
10
|
+
spacing?: IThemeSpacing;
|
|
11
|
+
borderRadius?: IThemeBorderRadius;
|
|
12
|
+
shadows?: IThemeShadows;
|
|
13
|
+
}
|
|
14
|
+
export interface IThemeColors {
|
|
15
|
+
primary: string;
|
|
16
|
+
secondary: string;
|
|
17
|
+
accent: string;
|
|
18
|
+
background: string;
|
|
19
|
+
surface: string;
|
|
20
|
+
text: string;
|
|
21
|
+
textSecondary: string;
|
|
22
|
+
border: string;
|
|
23
|
+
success: string;
|
|
24
|
+
warning: string;
|
|
25
|
+
error: string;
|
|
26
|
+
info: string;
|
|
27
|
+
}
|
|
28
|
+
export interface IThemeTypography {
|
|
29
|
+
fontFamily: string;
|
|
30
|
+
fontSize: {
|
|
31
|
+
xs: string;
|
|
32
|
+
sm: string;
|
|
33
|
+
base: string;
|
|
34
|
+
lg: string;
|
|
35
|
+
xl: string;
|
|
36
|
+
'2xl': string;
|
|
37
|
+
'3xl': string;
|
|
38
|
+
};
|
|
39
|
+
fontWeight: {
|
|
40
|
+
light: number;
|
|
41
|
+
normal: number;
|
|
42
|
+
medium: number;
|
|
43
|
+
semibold: number;
|
|
44
|
+
bold: number;
|
|
45
|
+
};
|
|
46
|
+
lineHeight: {
|
|
47
|
+
tight: number;
|
|
48
|
+
normal: number;
|
|
49
|
+
relaxed: number;
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
export interface IThemeSpacing {
|
|
53
|
+
xs: string;
|
|
54
|
+
sm: string;
|
|
55
|
+
md: string;
|
|
56
|
+
lg: string;
|
|
57
|
+
xl: string;
|
|
58
|
+
'2xl': string;
|
|
59
|
+
'3xl': string;
|
|
60
|
+
}
|
|
61
|
+
export interface IThemeBorderRadius {
|
|
62
|
+
none: string;
|
|
63
|
+
sm: string;
|
|
64
|
+
md: string;
|
|
65
|
+
lg: string;
|
|
66
|
+
xl: string;
|
|
67
|
+
full: string;
|
|
68
|
+
}
|
|
69
|
+
export interface IThemeShadows {
|
|
70
|
+
sm: string;
|
|
71
|
+
md: string;
|
|
72
|
+
lg: string;
|
|
73
|
+
xl: string;
|
|
74
|
+
}
|
|
75
|
+
export interface IColorValidationResult {
|
|
76
|
+
isValid: boolean;
|
|
77
|
+
error?: string;
|
|
78
|
+
suggestions?: string[];
|
|
79
|
+
}
|
|
80
|
+
export interface IColorComparison {
|
|
81
|
+
original: string;
|
|
82
|
+
modified: string;
|
|
83
|
+
contrast: number;
|
|
84
|
+
accessibility: {
|
|
85
|
+
aa: boolean;
|
|
86
|
+
aaa: boolean;
|
|
87
|
+
};
|
|
88
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Chat Component Interfaces
|
|
3
|
+
* Interfaces for chat-related components and functionality
|
|
4
|
+
*/
|
|
5
|
+
export interface IChatMessage {
|
|
6
|
+
id: string;
|
|
7
|
+
content: string;
|
|
8
|
+
sender: 'user' | 'assistant';
|
|
9
|
+
timestamp: Date;
|
|
10
|
+
applied?: boolean;
|
|
11
|
+
changes?: {
|
|
12
|
+
title?: string;
|
|
13
|
+
description: string;
|
|
14
|
+
added: number;
|
|
15
|
+
removed: number;
|
|
16
|
+
data?: any;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
export interface IMessage {
|
|
20
|
+
id: string;
|
|
21
|
+
content: string | {
|
|
22
|
+
type: 'text';
|
|
23
|
+
text: string;
|
|
24
|
+
markdown?: boolean;
|
|
25
|
+
} | {
|
|
26
|
+
type: 'code';
|
|
27
|
+
code: string;
|
|
28
|
+
language?: string;
|
|
29
|
+
} | {
|
|
30
|
+
type: 'mixed';
|
|
31
|
+
items: Array<{
|
|
32
|
+
type: 'text';
|
|
33
|
+
text: string;
|
|
34
|
+
markdown?: boolean;
|
|
35
|
+
} | {
|
|
36
|
+
type: 'code';
|
|
37
|
+
code: string;
|
|
38
|
+
language?: string;
|
|
39
|
+
}>;
|
|
40
|
+
};
|
|
41
|
+
sender: 'user' | 'assistant';
|
|
42
|
+
timestamp: Date;
|
|
43
|
+
type: 'text' | 'code' | 'mixed';
|
|
44
|
+
context?: string[];
|
|
45
|
+
}
|
|
46
|
+
export interface IChatInterfaceProps {
|
|
47
|
+
placeholder?: string;
|
|
48
|
+
messages?: IChatMessage[];
|
|
49
|
+
enableAI?: boolean;
|
|
50
|
+
openaiApiKey?: string;
|
|
51
|
+
textBoxContent?: string;
|
|
52
|
+
}
|
|
53
|
+
export interface IChatInterfaceEmits {
|
|
54
|
+
send: [message: string];
|
|
55
|
+
acceptChanges: [message: IChatMessage];
|
|
56
|
+
denyChanges: [message: IChatMessage];
|
|
57
|
+
textReplacement: [data: {
|
|
58
|
+
original?: string;
|
|
59
|
+
improved: string;
|
|
60
|
+
stats?: any;
|
|
61
|
+
}];
|
|
62
|
+
textCompletion: [data: {
|
|
63
|
+
original?: string;
|
|
64
|
+
completion: string;
|
|
65
|
+
}];
|
|
66
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Editor Component Interfaces
|
|
3
|
+
* Interfaces for text editors, diff viewers, and code editors
|
|
4
|
+
*/
|
|
5
|
+
export interface ICodeEditorProps {
|
|
6
|
+
modelValue: string;
|
|
7
|
+
language?: string;
|
|
8
|
+
theme?: 'light' | 'dark';
|
|
9
|
+
readOnly?: boolean;
|
|
10
|
+
lineNumbers?: boolean;
|
|
11
|
+
wordWrap?: boolean;
|
|
12
|
+
}
|
|
13
|
+
export interface ICodeEditorEmits {
|
|
14
|
+
'update:modelValue': [value: string];
|
|
15
|
+
change: [value: string];
|
|
16
|
+
focus: [];
|
|
17
|
+
blur: [];
|
|
18
|
+
}
|
|
19
|
+
export interface IJsonValidationResult {
|
|
20
|
+
isValid: boolean;
|
|
21
|
+
error?: string;
|
|
22
|
+
formatted?: string;
|
|
23
|
+
}
|
|
24
|
+
export interface IJsonDiffChange {
|
|
25
|
+
type: 'added' | 'removed' | 'modified';
|
|
26
|
+
path: string;
|
|
27
|
+
oldValue?: any;
|
|
28
|
+
newValue?: any;
|
|
29
|
+
startLine: number;
|
|
30
|
+
endLine: number;
|
|
31
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Feedback Component Interfaces
|
|
3
|
+
* Interfaces for notifications, toasts, snackbars, and alerts
|
|
4
|
+
*/
|
|
5
|
+
export interface IToastMessage {
|
|
6
|
+
id: string;
|
|
7
|
+
title?: string;
|
|
8
|
+
message: string;
|
|
9
|
+
type: 'success' | 'error' | 'warning' | 'info';
|
|
10
|
+
duration?: number;
|
|
11
|
+
persistent?: boolean;
|
|
12
|
+
actions?: IToastAction[];
|
|
13
|
+
}
|
|
14
|
+
export interface IToastAction {
|
|
15
|
+
label: string;
|
|
16
|
+
action: () => void;
|
|
17
|
+
style?: 'primary' | 'secondary';
|
|
18
|
+
}
|
|
19
|
+
export interface ISnackbarMessage {
|
|
20
|
+
id: string;
|
|
21
|
+
message: string;
|
|
22
|
+
type: 'success' | 'error' | 'warning' | 'info';
|
|
23
|
+
duration?: number;
|
|
24
|
+
action?: {
|
|
25
|
+
label: string;
|
|
26
|
+
handler: () => void;
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
export interface INotificationProps {
|
|
30
|
+
message: string;
|
|
31
|
+
type: 'success' | 'error' | 'warning' | 'info';
|
|
32
|
+
title?: string;
|
|
33
|
+
closable?: boolean;
|
|
34
|
+
persistent?: boolean;
|
|
35
|
+
}
|
|
36
|
+
export interface INotificationEmits {
|
|
37
|
+
close: [];
|
|
38
|
+
action: [actionId: string];
|
|
39
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Form Component Interfaces
|
|
3
|
+
* Interfaces for form inputs, validation, and related components
|
|
4
|
+
*/
|
|
5
|
+
export interface IInputFieldProps {
|
|
6
|
+
modelValue?: string;
|
|
7
|
+
type?: string;
|
|
8
|
+
placeholder?: string;
|
|
9
|
+
label?: string;
|
|
10
|
+
error?: string;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
required?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export interface IInputFieldEmits {
|
|
15
|
+
'update:modelValue': [value: string];
|
|
16
|
+
blur: [];
|
|
17
|
+
focus: [];
|
|
18
|
+
}
|
|
19
|
+
export interface IDropdownOption {
|
|
20
|
+
label: string;
|
|
21
|
+
value: string | number;
|
|
22
|
+
disabled?: boolean;
|
|
23
|
+
}
|
|
24
|
+
export interface IDropdownProps {
|
|
25
|
+
modelValue?: string | number;
|
|
26
|
+
options: IDropdownOption[];
|
|
27
|
+
placeholder?: string;
|
|
28
|
+
disabled?: boolean;
|
|
29
|
+
searchable?: boolean;
|
|
30
|
+
}
|
|
31
|
+
export interface IDropdownEmits {
|
|
32
|
+
'update:modelValue': [value: string | number];
|
|
33
|
+
change: [value: string | number];
|
|
34
|
+
}
|
|
35
|
+
export interface IValidationRule {
|
|
36
|
+
required?: boolean;
|
|
37
|
+
minLength?: number;
|
|
38
|
+
maxLength?: number;
|
|
39
|
+
pattern?: RegExp;
|
|
40
|
+
custom?: (value: any) => boolean | string;
|
|
41
|
+
}
|
|
42
|
+
export interface IFormField {
|
|
43
|
+
name: string;
|
|
44
|
+
label: string;
|
|
45
|
+
type: 'text' | 'email' | 'password' | 'number' | 'select' | 'textarea';
|
|
46
|
+
value?: any;
|
|
47
|
+
placeholder?: string;
|
|
48
|
+
options?: IDropdownOption[];
|
|
49
|
+
rules?: IValidationRule;
|
|
50
|
+
error?: string;
|
|
51
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UI Component Interfaces
|
|
3
|
+
* Exports all user interface related interfaces
|
|
4
|
+
*/
|
|
5
|
+
export * from './modal.interfaces';
|
|
6
|
+
export * from './chat.interfaces';
|
|
7
|
+
export * from './form.interfaces';
|
|
8
|
+
export * from './navigation.interfaces';
|
|
9
|
+
export * from './feedback.interfaces';
|
|
10
|
+
export * from './editor.interfaces';
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Modal Component Interfaces
|
|
3
|
+
* Shared interfaces for all modal components
|
|
4
|
+
*/
|
|
5
|
+
export interface IBaseModalProps {
|
|
6
|
+
isVisible: boolean;
|
|
7
|
+
}
|
|
8
|
+
export interface IBaseModalEmits {
|
|
9
|
+
close: [];
|
|
10
|
+
save: [content: string];
|
|
11
|
+
cancel: [];
|
|
12
|
+
}
|
|
13
|
+
export interface ITextEditorModalProps extends IBaseModalProps {
|
|
14
|
+
title?: string;
|
|
15
|
+
description?: string;
|
|
16
|
+
initialContent?: string;
|
|
17
|
+
openaiApiKey?: string;
|
|
18
|
+
openaiModel?: string;
|
|
19
|
+
openaiOrganization?: string;
|
|
20
|
+
}
|
|
21
|
+
export interface ITextEditorModalEmits extends IBaseModalEmits {
|
|
22
|
+
askAI: [content: string];
|
|
23
|
+
toggleAI: [isActive: boolean];
|
|
24
|
+
}
|
|
25
|
+
export interface IOutputModeModalProps extends IBaseModalProps {
|
|
26
|
+
initialJsonContent?: string;
|
|
27
|
+
openaiApiKey?: string;
|
|
28
|
+
openaiModel?: string;
|
|
29
|
+
openaiOrganization?: string;
|
|
30
|
+
}
|
|
31
|
+
export interface IOutputModeModalEmits extends IBaseModalEmits {
|
|
32
|
+
askAI: [content: string];
|
|
33
|
+
toggleAI: [isActive: boolean];
|
|
34
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Navigation Component Interfaces
|
|
3
|
+
* Interfaces for tabs, pagination, and navigation components
|
|
4
|
+
*/
|
|
5
|
+
export interface ITabItem {
|
|
6
|
+
id: string;
|
|
7
|
+
label: string;
|
|
8
|
+
icon?: string;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
badge?: string | number;
|
|
11
|
+
}
|
|
12
|
+
export interface ITabListProps {
|
|
13
|
+
tabs: ITabItem[];
|
|
14
|
+
activeTab?: string;
|
|
15
|
+
variant?: 'default' | 'pills' | 'underline';
|
|
16
|
+
}
|
|
17
|
+
export interface ITabListEmits {
|
|
18
|
+
'update:activeTab': [tabId: string];
|
|
19
|
+
tabChange: [tab: ITabItem];
|
|
20
|
+
}
|
|
21
|
+
export interface IPaginationProps {
|
|
22
|
+
currentPage: number;
|
|
23
|
+
totalPages: number;
|
|
24
|
+
showFirstLast?: boolean;
|
|
25
|
+
showPrevNext?: boolean;
|
|
26
|
+
maxVisiblePages?: number;
|
|
27
|
+
}
|
|
28
|
+
export interface IPaginationEmits {
|
|
29
|
+
'update:currentPage': [page: number];
|
|
30
|
+
pageChange: [page: number];
|
|
31
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Common Utility Interfaces
|
|
3
|
+
* Shared interfaces used across multiple components and services
|
|
4
|
+
*/
|
|
5
|
+
export interface IReference {
|
|
6
|
+
id: string;
|
|
7
|
+
title: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
url?: string;
|
|
10
|
+
type: 'internal' | 'external' | 'document' | 'api';
|
|
11
|
+
tags?: string[];
|
|
12
|
+
metadata?: Record<string, unknown>;
|
|
13
|
+
}
|
|
14
|
+
export interface ISelectOption {
|
|
15
|
+
label: string;
|
|
16
|
+
value: string | number | boolean;
|
|
17
|
+
disabled?: boolean;
|
|
18
|
+
group?: string;
|
|
19
|
+
}
|
|
20
|
+
export interface IKeyValuePair<T = string> {
|
|
21
|
+
key: string;
|
|
22
|
+
value: T;
|
|
23
|
+
}
|
|
24
|
+
export interface IDateRange {
|
|
25
|
+
start: Date;
|
|
26
|
+
end: Date;
|
|
27
|
+
}
|
|
28
|
+
export interface ICoordinates {
|
|
29
|
+
x: number;
|
|
30
|
+
y: number;
|
|
31
|
+
}
|
|
32
|
+
export interface IDimensions {
|
|
33
|
+
width: number;
|
|
34
|
+
height: number;
|
|
35
|
+
}
|
|
36
|
+
export interface IBoundingBox extends ICoordinates, IDimensions {
|
|
37
|
+
}
|
|
38
|
+
export interface IFileInfo {
|
|
39
|
+
name: string;
|
|
40
|
+
size: number;
|
|
41
|
+
type: string;
|
|
42
|
+
lastModified: number;
|
|
43
|
+
path?: string;
|
|
44
|
+
}
|
|
45
|
+
export interface ISearchParams {
|
|
46
|
+
query: string;
|
|
47
|
+
filters?: Record<string, unknown>;
|
|
48
|
+
sort?: string;
|
|
49
|
+
order?: 'asc' | 'desc';
|
|
50
|
+
limit?: number;
|
|
51
|
+
offset?: number;
|
|
52
|
+
}
|
|
53
|
+
export interface ISearchResult<T> {
|
|
54
|
+
items: T[];
|
|
55
|
+
total: number;
|
|
56
|
+
hasMore: boolean;
|
|
57
|
+
query: string;
|
|
58
|
+
executionTime?: number;
|
|
59
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
export declare const frSanitizePlugin: {
|
|
3
|
+
install(app: App): void;
|
|
4
|
+
};
|
|
5
|
+
export declare const iconStylePlugin: {
|
|
6
|
+
install(app: App): void;
|
|
7
|
+
};
|
|
8
|
+
declare const _default: {
|
|
9
|
+
install(app: App): void;
|
|
10
|
+
};
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { IAITextRequest, IAITextResponse } from '../interfaces';
|
|
2
|
+
export type AITextRequest = IAITextRequest;
|
|
3
|
+
export type AITextResponse = IAITextResponse;
|
|
4
|
+
export interface OpenAIResponse {
|
|
5
|
+
choices: Array<{
|
|
6
|
+
message: {
|
|
7
|
+
content: string;
|
|
8
|
+
role: string;
|
|
9
|
+
};
|
|
10
|
+
}>;
|
|
11
|
+
usage?: {
|
|
12
|
+
prompt_tokens: number;
|
|
13
|
+
completion_tokens: number;
|
|
14
|
+
total_tokens: number;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
declare class AITextService {
|
|
18
|
+
private apiKey;
|
|
19
|
+
private baseUrl;
|
|
20
|
+
constructor(apiKey?: string);
|
|
21
|
+
private getApiKeyFromEnv;
|
|
22
|
+
/**
|
|
23
|
+
* Set the OpenAI API key
|
|
24
|
+
*/
|
|
25
|
+
setApiKey(apiKey: string): void;
|
|
26
|
+
/**
|
|
27
|
+
* Smart system prompt that determines action and provides contextual responses
|
|
28
|
+
*/
|
|
29
|
+
private getSmartSystemPrompt;
|
|
30
|
+
/**
|
|
31
|
+
* Analyze user input to determine the type of request
|
|
32
|
+
*/
|
|
33
|
+
private analyzeRequest;
|
|
34
|
+
/**
|
|
35
|
+
* Create optimized prompt based on request analysis
|
|
36
|
+
*/
|
|
37
|
+
private createPrompt;
|
|
38
|
+
/**
|
|
39
|
+
* Create payload for the newer responses API
|
|
40
|
+
*/
|
|
41
|
+
private createResponsesPayload;
|
|
42
|
+
/**
|
|
43
|
+
* Calculate basic statistics for text changes
|
|
44
|
+
*/
|
|
45
|
+
private calculateStats;
|
|
46
|
+
/**
|
|
47
|
+
* Process the AI response and format it appropriately
|
|
48
|
+
*/
|
|
49
|
+
private processResponse;
|
|
50
|
+
/**
|
|
51
|
+
* Main method to ask AI for text editing or generation
|
|
52
|
+
*/
|
|
53
|
+
askAI(userQuestion: string, textBoxContent?: string): Promise<AITextResponse>;
|
|
54
|
+
/**
|
|
55
|
+
* Check if the service is properly configured
|
|
56
|
+
*/
|
|
57
|
+
isConfigured(): boolean;
|
|
58
|
+
/**
|
|
59
|
+
* Get current API key status (without exposing the key)
|
|
60
|
+
*/
|
|
61
|
+
getStatus(): {
|
|
62
|
+
configured: boolean;
|
|
63
|
+
keyLength?: number;
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
export { AITextService };
|
|
67
|
+
export declare const aiTextService: AITextService;
|
|
68
|
+
export default aiTextService;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Services Index - v0.4.54 Service Cleanup
|
|
3
|
+
*
|
|
4
|
+
* ⚠️ MAJOR CLEANUP: Most services removed due to SSR incompatibility
|
|
5
|
+
* See: docs/releases/v0.4.54-SERVICE-CLEANUP.md
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* AI Text Service - ONLY service exported
|
|
9
|
+
*
|
|
10
|
+
* Used by: SimpleChatInterface.vue
|
|
11
|
+
* SSR Safe: Yes (has typeof window guards)
|
|
12
|
+
* Status: Active and maintained
|
|
13
|
+
*/
|
|
14
|
+
export { aiTextService, AITextService } from './AITextService';
|
|
15
|
+
export type { AITextRequest, AITextResponse } from './AITextService';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
type ToastType = "success" | "danger" | "info";
|
|
2
|
+
export interface Snack {
|
|
3
|
+
title: string;
|
|
4
|
+
message: string;
|
|
5
|
+
toastType: ToastType;
|
|
6
|
+
duration?: number;
|
|
7
|
+
toastContainerSize?: "full" | "half" | "side70";
|
|
8
|
+
}
|
|
9
|
+
export declare const useSnackBar: () => {
|
|
10
|
+
snackQueue: import('vue').Ref<{
|
|
11
|
+
title: string;
|
|
12
|
+
message: string;
|
|
13
|
+
toastType: ToastType;
|
|
14
|
+
duration?: number | undefined;
|
|
15
|
+
toastContainerSize?: "full" | "half" | "side70" | undefined;
|
|
16
|
+
}[], Snack[] | {
|
|
17
|
+
title: string;
|
|
18
|
+
message: string;
|
|
19
|
+
toastType: ToastType;
|
|
20
|
+
duration?: number | undefined;
|
|
21
|
+
toastContainerSize?: "full" | "half" | "side70" | undefined;
|
|
22
|
+
}[]>;
|
|
23
|
+
addSnackBar: (snack: Snack) => void;
|
|
24
|
+
removeSnackBar: (snack: Snack) => void;
|
|
25
|
+
};
|
|
26
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
interface Toast {
|
|
2
|
+
message: string;
|
|
3
|
+
toastType: "success" | "danger" | "info";
|
|
4
|
+
duration?: number;
|
|
5
|
+
}
|
|
6
|
+
export declare const useToast: () => {
|
|
7
|
+
toastQueue: import('vue').Ref<{
|
|
8
|
+
message: string;
|
|
9
|
+
toastType: "success" | "danger" | "info";
|
|
10
|
+
duration?: number | undefined;
|
|
11
|
+
}[], Toast[] | {
|
|
12
|
+
message: string;
|
|
13
|
+
toastType: "success" | "danger" | "info";
|
|
14
|
+
duration?: number | undefined;
|
|
15
|
+
}[]>;
|
|
16
|
+
addToast: (toast: Toast) => void;
|
|
17
|
+
hasToasts: import('vue').ComputedRef<boolean>;
|
|
18
|
+
};
|
|
19
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aitronos/freddy-plugins",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.59",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
|
-
"sideEffects":
|
|
9
|
+
"sideEffects": [
|
|
10
|
+
"**/*.css",
|
|
11
|
+
"**/*.scss",
|
|
12
|
+
"src/index.ts"
|
|
13
|
+
],
|
|
10
14
|
"exports": {
|
|
11
15
|
".": {
|
|
12
16
|
"types": "./dist/index.d.ts",
|