@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,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface SpacemanLogoProps {
|
|
2
|
+
/** Custom CSS class to apply to the component */
|
|
3
|
+
customClass?: string;
|
|
4
|
+
/** Custom inline styles to apply */
|
|
5
|
+
customStyle?: string | Record<string, string>;
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import('vue').DefineComponent<SpacemanLogoProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SpacemanLogoProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, SVGSVGElement>;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as AnimeSpaceman } from './AnimeSpaceman.vue';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { default as ContentplateLogo } from './contentplate-logo.svg';
|
|
2
|
+
export { default as ContentplateLogoSmall } from './contentplate-logo-small.svg';
|
|
3
|
+
export { default as FlowplateLogo } from './flowplate-logo.svg';
|
|
4
|
+
export { default as FreddyLogo } from './freddy-logo.svg';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
isVisible: boolean;
|
|
3
|
+
largeModel: boolean;
|
|
4
|
+
};
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
attrs: Partial<{}>;
|
|
7
|
+
slots: {
|
|
8
|
+
header?(_: {}): any;
|
|
9
|
+
body?(_: {}): any;
|
|
10
|
+
footer?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: any;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AssistantFieldProps } from '../../interfaces';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<AssistantFieldProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3
|
+
assistantFieldClick: (event: MouseEvent) => any;
|
|
4
|
+
}, string, import('vue').PublicProps, Readonly<AssistantFieldProps> & Readonly<{
|
|
5
|
+
onAssistantFieldClick?: ((event: MouseEvent) => any) | undefined;
|
|
6
|
+
}>, {
|
|
7
|
+
name: string;
|
|
8
|
+
date: string;
|
|
9
|
+
assistantId: string;
|
|
10
|
+
isDefault: boolean;
|
|
11
|
+
isSelected: boolean;
|
|
12
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AssistantListProps, AssistantItem } from '../../interfaces';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<AssistantListProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3
|
+
assistantClick: (assistant: AssistantItem, event: MouseEvent) => any;
|
|
4
|
+
}, string, import('vue').PublicProps, Readonly<AssistantListProps> & Readonly<{
|
|
5
|
+
onAssistantClick?: ((assistant: AssistantItem, event: MouseEvent) => any) | undefined;
|
|
6
|
+
}>, {
|
|
7
|
+
assistants: AssistantItem[];
|
|
8
|
+
selectedAssistantId: string | null;
|
|
9
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
assistantImage?: string;
|
|
3
|
+
assistantIcon: string;
|
|
4
|
+
assistantId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
+
edit: (event: MouseEvent) => any;
|
|
8
|
+
playground: (event: MouseEvent) => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
10
|
+
onEdit?: ((event: MouseEvent) => any) | undefined;
|
|
11
|
+
onPlayground?: ((event: MouseEvent) => any) | undefined;
|
|
12
|
+
}>, {
|
|
13
|
+
assistantId: string;
|
|
14
|
+
assistantImage: string;
|
|
15
|
+
assistantIcon: string;
|
|
16
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
17
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
imageUrl: string;
|
|
3
|
+
isSelected?: boolean;
|
|
4
|
+
altText?: string;
|
|
5
|
+
backgroundColor?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
|
+
click: (event: MouseEvent) => any;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
10
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
11
|
+
}>, {
|
|
12
|
+
isSelected: boolean;
|
|
13
|
+
altText: string;
|
|
14
|
+
backgroundColor: string;
|
|
15
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
interface Avatar {
|
|
2
|
+
id: string | number;
|
|
3
|
+
url: string;
|
|
4
|
+
name: string;
|
|
5
|
+
}
|
|
6
|
+
interface Props {
|
|
7
|
+
avatars: Avatar[];
|
|
8
|
+
title?: string;
|
|
9
|
+
showSelectedInfo?: boolean;
|
|
10
|
+
allowDeselect?: boolean;
|
|
11
|
+
multiple?: boolean;
|
|
12
|
+
}
|
|
13
|
+
declare const _default: import('vue').DefineComponent<Props, {
|
|
14
|
+
selectedAvatarId: import('vue').Ref<string | number | null, string | number | null>;
|
|
15
|
+
selectedAvatar: import('vue').ComputedRef<Avatar | null>;
|
|
16
|
+
selectAvatar: (id: string | number) => void;
|
|
17
|
+
clearSelection: () => void;
|
|
18
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
|
+
selectionChange: (selectedId: string | number | null) => any;
|
|
20
|
+
avatarClick: (avatarId: string | number, isSelected: boolean) => any;
|
|
21
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
22
|
+
onSelectionChange?: ((selectedId: string | number | null) => any) | undefined;
|
|
23
|
+
onAvatarClick?: ((avatarId: string | number, isSelected: boolean) => any) | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
title: string;
|
|
26
|
+
showSelectedInfo: boolean;
|
|
27
|
+
allowDeselect: boolean;
|
|
28
|
+
multiple: boolean;
|
|
29
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
30
|
+
export default _default;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
interface Icon {
|
|
2
|
+
id: string | number;
|
|
3
|
+
name?: string;
|
|
4
|
+
iconName?: string;
|
|
5
|
+
component?: any;
|
|
6
|
+
}
|
|
7
|
+
interface Face {
|
|
8
|
+
id: string | number;
|
|
9
|
+
imageUrl: string;
|
|
10
|
+
altText?: string;
|
|
11
|
+
backgroundColor?: string;
|
|
12
|
+
}
|
|
13
|
+
interface Voice {
|
|
14
|
+
id: string | number;
|
|
15
|
+
name: string;
|
|
16
|
+
}
|
|
17
|
+
interface Props {
|
|
18
|
+
title?: string;
|
|
19
|
+
description?: string;
|
|
20
|
+
icons?: Icon[];
|
|
21
|
+
faces?: Face[];
|
|
22
|
+
voices?: Voice[];
|
|
23
|
+
searchPlaceholder?: string;
|
|
24
|
+
cancelButtonText?: string;
|
|
25
|
+
saveButtonText?: string;
|
|
26
|
+
closeButtonAriaLabel?: string;
|
|
27
|
+
searchButtonAriaLabel?: string;
|
|
28
|
+
uploadButtonAriaLabel?: string;
|
|
29
|
+
allowMultipleSelection?: boolean;
|
|
30
|
+
}
|
|
31
|
+
declare const _default: import('vue').DefineComponent<Props, {
|
|
32
|
+
selectedIconId: import('vue').Ref<string | number | null, string | number | null>;
|
|
33
|
+
selectedFaceId: import('vue').Ref<string | number | null, string | number | null>;
|
|
34
|
+
selectedVoiceId: import('vue').Ref<string | number | null, string | number | null>;
|
|
35
|
+
resetSelections: () => void;
|
|
36
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
37
|
+
cancel: () => any;
|
|
38
|
+
close: () => any;
|
|
39
|
+
save: (data: {
|
|
40
|
+
selectedIconId: string | number | null;
|
|
41
|
+
selectedFaceId: string | number | null;
|
|
42
|
+
selectedVoiceId: string | number | null;
|
|
43
|
+
}) => any;
|
|
44
|
+
iconSelect: (icon: Icon) => any;
|
|
45
|
+
faceSelect: (face: Face) => any;
|
|
46
|
+
voiceSelect: (voice: Voice) => any;
|
|
47
|
+
searchInput: (query: string) => any;
|
|
48
|
+
searchClick: () => any;
|
|
49
|
+
uploadClick: () => any;
|
|
50
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
51
|
+
onCancel?: (() => any) | undefined;
|
|
52
|
+
onClose?: (() => any) | undefined;
|
|
53
|
+
onSave?: ((data: {
|
|
54
|
+
selectedIconId: string | number | null;
|
|
55
|
+
selectedFaceId: string | number | null;
|
|
56
|
+
selectedVoiceId: string | number | null;
|
|
57
|
+
}) => any) | undefined;
|
|
58
|
+
onIconSelect?: ((icon: Icon) => any) | undefined;
|
|
59
|
+
onFaceSelect?: ((face: Face) => any) | undefined;
|
|
60
|
+
onVoiceSelect?: ((voice: Voice) => any) | undefined;
|
|
61
|
+
onSearchInput?: ((query: string) => any) | undefined;
|
|
62
|
+
onSearchClick?: (() => any) | undefined;
|
|
63
|
+
onUploadClick?: (() => any) | undefined;
|
|
64
|
+
}>, {
|
|
65
|
+
title: string;
|
|
66
|
+
description: string;
|
|
67
|
+
icons: Icon[];
|
|
68
|
+
voices: Voice[];
|
|
69
|
+
searchPlaceholder: string;
|
|
70
|
+
cancelButtonText: string;
|
|
71
|
+
saveButtonText: string;
|
|
72
|
+
closeButtonAriaLabel: string;
|
|
73
|
+
searchButtonAriaLabel: string;
|
|
74
|
+
uploadButtonAriaLabel: string;
|
|
75
|
+
allowMultipleSelection: boolean;
|
|
76
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
77
|
+
export default _default;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Rule, RuleTab } from '../../interfaces';
|
|
2
|
+
interface Props {
|
|
3
|
+
rules?: Rule[];
|
|
4
|
+
tabs?: RuleTab[];
|
|
5
|
+
initialTab?: string;
|
|
6
|
+
totalPages?: number;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
9
|
+
view: (rule: Rule) => any;
|
|
10
|
+
search: (query: string) => any;
|
|
11
|
+
edit: (rule: Rule) => any;
|
|
12
|
+
createRule: () => any;
|
|
13
|
+
tabChange: (tabId: string) => any;
|
|
14
|
+
pageChange: (page: number) => any;
|
|
15
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
16
|
+
onView?: ((rule: Rule) => any) | undefined;
|
|
17
|
+
onSearch?: ((query: string) => any) | undefined;
|
|
18
|
+
onEdit?: ((rule: Rule) => any) | undefined;
|
|
19
|
+
onCreateRule?: (() => any) | undefined;
|
|
20
|
+
onTabChange?: ((tabId: string) => any) | undefined;
|
|
21
|
+
onPageChange?: ((page: number) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
rules: Rule[];
|
|
24
|
+
tabs: RuleTab[];
|
|
25
|
+
initialTab: string;
|
|
26
|
+
totalPages: number;
|
|
27
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
28
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
title?: string;
|
|
3
|
+
badgeText?: string;
|
|
4
|
+
isSelected?: boolean;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
+
click: (event: MouseEvent) => any;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
9
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
title: string;
|
|
12
|
+
isSelected: boolean;
|
|
13
|
+
badgeText: string;
|
|
14
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
interface VectorFrameData {
|
|
2
|
+
id?: string | number;
|
|
3
|
+
title: string;
|
|
4
|
+
badgeText?: string;
|
|
5
|
+
isSelected?: boolean;
|
|
6
|
+
}
|
|
7
|
+
interface Props {
|
|
8
|
+
title?: string;
|
|
9
|
+
dbCount?: number;
|
|
10
|
+
searchPlaceholder?: string;
|
|
11
|
+
frames?: VectorFrameData[];
|
|
12
|
+
maxDisplayed?: number;
|
|
13
|
+
}
|
|
14
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
|
+
searchInput: (query: string) => any;
|
|
16
|
+
frameClick: (frame: VectorFrameData, index: number) => any;
|
|
17
|
+
addVectorStore: () => any;
|
|
18
|
+
showMore: () => any;
|
|
19
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
20
|
+
onSearchInput?: ((query: string) => any) | undefined;
|
|
21
|
+
onFrameClick?: ((frame: VectorFrameData, index: number) => any) | undefined;
|
|
22
|
+
onAddVectorStore?: (() => any) | undefined;
|
|
23
|
+
onShowMore?: (() => any) | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
title: string;
|
|
26
|
+
searchPlaceholder: string;
|
|
27
|
+
dbCount: number;
|
|
28
|
+
frames: VectorFrameData[];
|
|
29
|
+
maxDisplayed: number;
|
|
30
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
interface Voice {
|
|
2
|
+
id: string | number;
|
|
3
|
+
name: string;
|
|
4
|
+
}
|
|
5
|
+
interface Props {
|
|
6
|
+
voices: Voice[];
|
|
7
|
+
title?: string;
|
|
8
|
+
showSelectedInfo?: boolean;
|
|
9
|
+
allowDeselect?: boolean;
|
|
10
|
+
}
|
|
11
|
+
declare const _default: import('vue').DefineComponent<Props, {
|
|
12
|
+
selectedVoiceId: import('vue').Ref<string | number | null, string | number | null>;
|
|
13
|
+
selectedVoice: import('vue').ComputedRef<Voice | null>;
|
|
14
|
+
selectVoice: (id: string | number) => void;
|
|
15
|
+
clearSelection: () => void;
|
|
16
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
|
+
selectionChange: (selectedId: string | number | null) => any;
|
|
18
|
+
voiceClick: (voiceId: string | number, isSelected: boolean) => any;
|
|
19
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
20
|
+
onSelectionChange?: ((selectedId: string | number | null) => any) | undefined;
|
|
21
|
+
onVoiceClick?: ((voiceId: string | number, isSelected: boolean) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
title: string;
|
|
24
|
+
showSelectedInfo: boolean;
|
|
25
|
+
allowDeselect: boolean;
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
27
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
voiceName: string;
|
|
3
|
+
isSelected?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
handleClick: (event: MouseEvent) => any;
|
|
7
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
8
|
+
onHandleClick?: ((event: MouseEvent) => any) | undefined;
|
|
9
|
+
}>, {
|
|
10
|
+
isSelected: boolean;
|
|
11
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
12
|
+
export default _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { BaseButtonProps } from '../../interfaces/base-button.interfaces';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<BaseButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3
|
+
click: (event: MouseEvent) => any;
|
|
4
|
+
leftIconClick: (event: MouseEvent) => any;
|
|
5
|
+
rightIconClick: (event: MouseEvent) => any;
|
|
6
|
+
}, string, import('vue').PublicProps, Readonly<BaseButtonProps> & Readonly<{
|
|
7
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
8
|
+
onLeftIconClick?: ((event: MouseEvent) => any) | undefined;
|
|
9
|
+
onRightIconClick?: ((event: MouseEvent) => any) | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
label: string;
|
|
12
|
+
size: "s" | "sm" | "md" | "lg" | "xl";
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
loading: boolean;
|
|
15
|
+
hierarchy: "primary" | "secondary" | "tertiary" | "link";
|
|
16
|
+
state: "default" | "hover" | "focused" | "disabled" | "loading";
|
|
17
|
+
errorState: boolean;
|
|
18
|
+
iconOnly: boolean;
|
|
19
|
+
leftIcon: string;
|
|
20
|
+
rightIcon: string;
|
|
21
|
+
loadingText: string;
|
|
22
|
+
tooltip: string;
|
|
23
|
+
tooltipPlacement: "top" | "bottom" | "left" | "right";
|
|
24
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SocialButtonGroupProps, SocialProvider } from '../../interfaces/social-buttons.interfaces';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<SocialButtonGroupProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3
|
+
click: (provider: SocialProvider, event: MouseEvent) => any;
|
|
4
|
+
}, string, import('vue').PublicProps, Readonly<SocialButtonGroupProps> & Readonly<{
|
|
5
|
+
onClick?: ((provider: SocialProvider, event: MouseEvent) => any) | undefined;
|
|
6
|
+
}>, {
|
|
7
|
+
size: import('../../interfaces/social-buttons.interfaces').SocialButtonSize;
|
|
8
|
+
disabled: boolean;
|
|
9
|
+
iconOnly: boolean;
|
|
10
|
+
variant: import('../../interfaces/social-buttons.interfaces').SocialButtonVariant;
|
|
11
|
+
layout: import('../../interfaces/social-buttons.interfaces').SocialButtonLayout;
|
|
12
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
code: string;
|
|
3
|
+
language: string;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLPreElement>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
title: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
description: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
+
close: (...args: any[]) => void;
|
|
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>;
|
|
28
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
isChecked: boolean;
|
|
3
|
+
isDashInput?: boolean;
|
|
4
|
+
blueCheckbox?: boolean;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
ariaLabel?: string;
|
|
7
|
+
};
|
|
8
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
9
|
+
"update:isChecked": (value: boolean) => any;
|
|
10
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
11
|
+
"onUpdate:isChecked"?: ((value: boolean) => any) | undefined;
|
|
12
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
title: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
description: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
+
close: (...args: any[]) => void;
|
|
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>;
|
|
28
|
+
export default _default;
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
type DescriptionStage = 'placeholder' | 'default' | 'focused' | 'disabled' | 'error';
|
|
2
|
+
type DescriptionType = 'default' | 'tags';
|
|
3
|
+
interface Props {
|
|
4
|
+
modelValue?: string;
|
|
5
|
+
label?: string;
|
|
6
|
+
placeholder?: string;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
readonly?: boolean;
|
|
9
|
+
required?: boolean;
|
|
10
|
+
showTooltip?: boolean;
|
|
11
|
+
tooltipText?: string;
|
|
12
|
+
showAiButton?: boolean;
|
|
13
|
+
stage?: DescriptionStage;
|
|
14
|
+
type?: DescriptionType;
|
|
15
|
+
destructive?: boolean;
|
|
16
|
+
tags?: string[];
|
|
17
|
+
hintText?: string;
|
|
18
|
+
errorMessage?: string;
|
|
19
|
+
modalTitle?: string;
|
|
20
|
+
modalDescription?: string;
|
|
21
|
+
openaiApiKey?: string;
|
|
22
|
+
openaiModel?: string;
|
|
23
|
+
openaiOrganization?: string;
|
|
24
|
+
showUnderlines?: boolean;
|
|
25
|
+
dynamicTitle?: string;
|
|
26
|
+
showHint?: boolean;
|
|
27
|
+
diffMode?: boolean;
|
|
28
|
+
oldText?: string;
|
|
29
|
+
newText?: string;
|
|
30
|
+
tagsOnly?: boolean;
|
|
31
|
+
}
|
|
32
|
+
declare const _default: import('vue').DefineComponent<Props, {
|
|
33
|
+
focus: () => void;
|
|
34
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
35
|
+
blur: (event: FocusEvent) => any;
|
|
36
|
+
focus: (event: FocusEvent) => any;
|
|
37
|
+
input: (value: string) => any;
|
|
38
|
+
"update:modelValue": (value: string) => any;
|
|
39
|
+
"ask-ai": (content: string) => any;
|
|
40
|
+
expand: (content: string) => any;
|
|
41
|
+
"remove-tag": (index: number) => any;
|
|
42
|
+
"tooltip-click": () => any;
|
|
43
|
+
"add-tag": (tag: string) => any;
|
|
44
|
+
"tags-click": () => any;
|
|
45
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
46
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
47
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
48
|
+
onInput?: ((value: string) => any) | undefined;
|
|
49
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
50
|
+
"onAsk-ai"?: ((content: string) => any) | undefined;
|
|
51
|
+
onExpand?: ((content: string) => any) | undefined;
|
|
52
|
+
"onRemove-tag"?: ((index: number) => any) | undefined;
|
|
53
|
+
"onTooltip-click"?: (() => any) | undefined;
|
|
54
|
+
"onAdd-tag"?: ((tag: string) => any) | undefined;
|
|
55
|
+
"onTags-click"?: (() => any) | undefined;
|
|
56
|
+
}>, {
|
|
57
|
+
label: string;
|
|
58
|
+
type: DescriptionType;
|
|
59
|
+
placeholder: string;
|
|
60
|
+
required: boolean;
|
|
61
|
+
disabled: boolean;
|
|
62
|
+
tags: string[];
|
|
63
|
+
tooltipText: string;
|
|
64
|
+
modelValue: string;
|
|
65
|
+
readonly: boolean;
|
|
66
|
+
openaiApiKey: string;
|
|
67
|
+
openaiModel: string;
|
|
68
|
+
openaiOrganization: string;
|
|
69
|
+
showTooltip: boolean;
|
|
70
|
+
showAiButton: boolean;
|
|
71
|
+
hintText: string;
|
|
72
|
+
errorMessage: string;
|
|
73
|
+
modalTitle: string;
|
|
74
|
+
modalDescription: string;
|
|
75
|
+
showUnderlines: boolean;
|
|
76
|
+
dynamicTitle: string;
|
|
77
|
+
showHint: boolean;
|
|
78
|
+
diffMode: boolean;
|
|
79
|
+
oldText: string;
|
|
80
|
+
newText: string;
|
|
81
|
+
tagsOnly: boolean;
|
|
82
|
+
stage: DescriptionStage;
|
|
83
|
+
destructive: boolean;
|
|
84
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
85
|
+
export default _default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
interface DiffProps {
|
|
2
|
+
modelValue: string;
|
|
3
|
+
placeholder?: string;
|
|
4
|
+
originalText?: string;
|
|
5
|
+
improvedText?: string;
|
|
6
|
+
showDiff?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import('vue').DefineComponent<DiffProps, {
|
|
9
|
+
focus: () => void | undefined;
|
|
10
|
+
blur: () => void | undefined;
|
|
11
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
|
+
"update:modelValue": (value: string) => any;
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<DiffProps> & Readonly<{
|
|
14
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
15
|
+
}>, {
|
|
16
|
+
placeholder: string;
|
|
17
|
+
showDiff: boolean;
|
|
18
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
19
|
+
textareaRef: HTMLTextAreaElement;
|
|
20
|
+
}, HTMLDivElement>;
|
|
21
|
+
export default _default;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { Component } from 'vue';
|
|
2
|
+
interface Option {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string | number;
|
|
5
|
+
icon?: Component;
|
|
6
|
+
shortcut?: string;
|
|
7
|
+
type?: 'option' | 'toggle';
|
|
8
|
+
checked?: boolean;
|
|
9
|
+
default?: boolean;
|
|
10
|
+
refData?: any;
|
|
11
|
+
}
|
|
12
|
+
interface Props {
|
|
13
|
+
label?: string;
|
|
14
|
+
size?: 's' | 'sm' | 'md' | 'lg' | 'xl';
|
|
15
|
+
iconOnly?: boolean;
|
|
16
|
+
options?: Option[];
|
|
17
|
+
searchable?: boolean;
|
|
18
|
+
searchPlaceholder?: string;
|
|
19
|
+
openUp?: boolean;
|
|
20
|
+
chevronRight?: boolean;
|
|
21
|
+
showIcon?: boolean;
|
|
22
|
+
customIcon?: any;
|
|
23
|
+
optionIconRight?: boolean;
|
|
24
|
+
showShortcut?: boolean;
|
|
25
|
+
background?: string;
|
|
26
|
+
borderRadius?: string;
|
|
27
|
+
activeBackground?: string;
|
|
28
|
+
openBackground?: string;
|
|
29
|
+
variant?: 'primary' | 'secondary' | 'blanc';
|
|
30
|
+
stayOpen?: boolean;
|
|
31
|
+
}
|
|
32
|
+
export type { Option, Props };
|
|
33
|
+
declare function __VLS_template(): {
|
|
34
|
+
attrs: Partial<{}>;
|
|
35
|
+
slots: {
|
|
36
|
+
button?(_: {}): any;
|
|
37
|
+
'no-options'?(_: {}): any;
|
|
38
|
+
};
|
|
39
|
+
refs: {};
|
|
40
|
+
rootEl: HTMLDivElement;
|
|
41
|
+
};
|
|
42
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
43
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
44
|
+
select: (value: Option) => any;
|
|
45
|
+
toggle: (value: Option) => any;
|
|
46
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
47
|
+
onSelect?: ((value: Option) => any) | undefined;
|
|
48
|
+
onToggle?: ((value: Option) => any) | undefined;
|
|
49
|
+
}>, {
|
|
50
|
+
label: string;
|
|
51
|
+
size: "s" | "sm" | "md" | "lg" | "xl";
|
|
52
|
+
searchPlaceholder: string;
|
|
53
|
+
iconOnly: boolean;
|
|
54
|
+
variant: "primary" | "secondary" | "blanc";
|
|
55
|
+
options: Option[];
|
|
56
|
+
searchable: boolean;
|
|
57
|
+
openUp: boolean;
|
|
58
|
+
chevronRight: boolean;
|
|
59
|
+
showIcon: boolean;
|
|
60
|
+
customIcon: any;
|
|
61
|
+
optionIconRight: boolean;
|
|
62
|
+
showShortcut: boolean;
|
|
63
|
+
background: string;
|
|
64
|
+
borderRadius: string;
|
|
65
|
+
activeBackground: string;
|
|
66
|
+
openBackground: string;
|
|
67
|
+
stayOpen: boolean;
|
|
68
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
69
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
70
|
+
export default _default;
|
|
71
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
72
|
+
new (): {
|
|
73
|
+
$slots: S;
|
|
74
|
+
};
|
|
75
|
+
};
|