diff --git a/packages/hoppscotch-common/src/components.d.ts b/packages/hoppscotch-common/src/components.d.ts index 659b1871d1..063d9fd7f8 100644 --- a/packages/hoppscotch-common/src/components.d.ts +++ b/packages/hoppscotch-common/src/components.d.ts @@ -84,6 +84,7 @@ declare module '@vue/runtime-core' { HoppSmartItem: typeof import('@hoppscotch/ui')['HoppSmartItem'] HoppSmartLink: typeof import('@hoppscotch/ui')['HoppSmartLink'] HoppSmartModal: typeof import('@hoppscotch/ui')['HoppSmartModal'] + HoppSmartPicture: typeof import('@hoppscotch/ui')['HoppSmartPicture'] HoppSmartProgressRing: typeof import('@hoppscotch/ui')['HoppSmartProgressRing'] HoppSmartRadioGroup: typeof import('@hoppscotch/ui')['HoppSmartRadioGroup'] HoppSmartSlideOver: typeof import('@hoppscotch/ui')['HoppSmartSlideOver'] @@ -164,6 +165,7 @@ declare module '@vue/runtime-core' { SmartItem: typeof import('./../../hoppscotch-ui/src/components/smart/Item.vue')['default'] SmartLink: typeof import('./../../hoppscotch-ui/src/components/smart/Link.vue')['default'] SmartModal: typeof import('./../../hoppscotch-ui/src/components/smart/Modal.vue')['default'] + SmartPicture: typeof import('./../../hoppscotch-ui/src/components/smart/Picture.vue')['default'] SmartProgressRing: typeof import('./../../hoppscotch-ui/src/components/smart/ProgressRing.vue')['default'] SmartRadio: typeof import('./../../hoppscotch-ui/src/components/smart/Radio.vue')['default'] SmartRadioGroup: typeof import('./../../hoppscotch-ui/src/components/smart/RadioGroup.vue')['default'] diff --git a/packages/hoppscotch-common/src/components/app/Header.vue b/packages/hoppscotch-common/src/components/app/Header.vue index 3df45f7aa4..ceb683d3fa 100644 --- a/packages/hoppscotch-common/src/components/app/Header.vue +++ b/packages/hoppscotch-common/src/components/app/Header.vue @@ -124,7 +124,7 @@ theme="popover" :on-shown="() => tippyActions.focus()" > - - - -
- - - -
- - - - - - diff --git a/packages/hoppscotch-common/src/components/teams/MemberStack.vue b/packages/hoppscotch-common/src/components/teams/MemberStack.vue index 8b305ba436..cb22f4f7bc 100644 --- a/packages/hoppscotch-common/src/components/teams/MemberStack.vue +++ b/packages/hoppscotch-common/src/components/teams/MemberStack.vue @@ -5,7 +5,7 @@ :key="`member-${index}`" class="inline-flex" > - -
- - - - - diff --git a/packages/hoppscotch-ui/src/components/smart/index.ts b/packages/hoppscotch-ui/src/components/smart/index.ts index d7f291c7c3..ad176f54f1 100644 --- a/packages/hoppscotch-ui/src/components/smart/index.ts +++ b/packages/hoppscotch-ui/src/components/smart/index.ts @@ -18,3 +18,4 @@ export { default as HoppSmartTabs } from "./Tabs.vue" export { default as HoppSmartToggle } from "./Toggle.vue" export { default as HoppSmartWindow } from "./Window.vue" export { default as HoppSmartWindows } from "./Windows.vue" +export { default as HoppSmartPicture } from "./Picture.vue"