@speckle/ui-components 2.18.13 → 2.18.15

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.
Files changed (49) hide show
  1. package/dist/components/InfiniteLoading.vue.d.ts +1 -1
  2. package/dist/components/SourceAppBadge.vue.d.ts +1 -1
  3. package/dist/components/common/Alert.vue.d.ts +1 -1
  4. package/dist/components/common/Badge.vue.d.ts +1 -1
  5. package/dist/components/common/VimeoEmbed.vue.d.ts +23 -0
  6. package/dist/components/common/animation/ClickIcon.vue.d.ts +1 -1
  7. package/dist/components/common/animation/Instructional.vue.d.ts +1 -1
  8. package/dist/components/common/animation/MouseIcon.vue.d.ts +1 -1
  9. package/dist/components/common/loading/Bar.vue.d.ts +1 -1
  10. package/dist/components/common/loading/Icon.vue.d.ts +1 -1
  11. package/dist/components/common/steps/Bullet.vue.d.ts +1 -1
  12. package/dist/components/common/steps/Number.vue.d.ts +1 -1
  13. package/dist/components/common/text/Link.vue.d.ts +1 -1
  14. package/dist/components/form/Button.vue.d.ts +1 -1
  15. package/dist/components/form/CardButton.vue.d.ts +1 -1
  16. package/dist/components/form/Checkbox.vue.d.ts +1 -1
  17. package/dist/components/form/ClipboardInput.vue.d.ts +1 -1
  18. package/dist/components/form/Radio.vue.d.ts +1 -1
  19. package/dist/components/form/Switch.vue.d.ts +1 -1
  20. package/dist/components/form/Tags.vue.d.ts +1 -1
  21. package/dist/components/form/TextArea.vue.d.ts +1 -1
  22. package/dist/components/form/TextInput.vue.d.ts +1 -1
  23. package/dist/components/form/file-upload/Zone.vue.d.ts +1 -1
  24. package/dist/components/form/select/Badges.vue.d.ts +5 -1
  25. package/dist/components/form/select/Base.vue.d.ts +6 -0
  26. package/dist/components/form/select/SourceApps.vue.d.ts +13 -1
  27. package/dist/components/form/tags/ContextManager.vue.d.ts +1 -1
  28. package/dist/components/global/ToastRenderer.vue.d.ts +1 -1
  29. package/dist/components/layout/Dialog.vue.d.ts +1 -1
  30. package/dist/components/layout/DialogSection.vue.d.ts +1 -1
  31. package/dist/components/layout/Disclosure.vue.d.ts +1 -1
  32. package/dist/components/layout/GridListToggle.vue.d.ts +1 -1
  33. package/dist/components/layout/Menu.vue.d.ts +3 -1
  34. package/dist/components/layout/PageTabs.vue.d.ts +31 -18
  35. package/dist/components/layout/Panel.vue.d.ts +1 -1
  36. package/dist/components/layout/Tabs.vue.d.ts +1 -1
  37. package/dist/components/user/Avatar.vue.d.ts +1 -1
  38. package/dist/components/user/AvatarEditable.vue.d.ts +1 -1
  39. package/dist/components/user/AvatarEditor.vue.d.ts +1 -1
  40. package/dist/components/user/AvatarGroup.vue.d.ts +1 -1
  41. package/dist/composables/common/async.d.ts +2 -9
  42. package/dist/composables/testing.d.ts +16 -0
  43. package/dist/helpers/layout/components.d.ts +1 -1
  44. package/dist/lib.cjs +1 -1
  45. package/dist/lib.cjs.map +1 -1
  46. package/dist/lib.d.ts +2 -1
  47. package/dist/lib.js +1674 -1598
  48. package/dist/lib.js.map +1 -1
  49. package/package.json +3 -3
package/dist/lib.d.ts CHANGED
@@ -10,6 +10,7 @@ import { TailwindBreakpoints } from './helpers/tailwind';
10
10
  import CommonStepsNumber from './components/common/steps/Number.vue';
11
11
  import CommonStepsBullet from './components/common/steps/Bullet.vue';
12
12
  import CommonAnimationInstructional from './components/common/animation/Instructional.vue';
13
+ import CommonVimeoEmbed from './components/common/VimeoEmbed.vue';
13
14
  import FormCardButton from './components/form/CardButton.vue';
14
15
  import FormCheckbox from './components/form/Checkbox.vue';
15
16
  import FormRadio from './components/form/Radio.vue';
@@ -57,5 +58,5 @@ import type { FileTypeSpecifier } from './helpers/form/file';
57
58
  export * from './helpers/common/error';
58
59
  import CommonLoadingIcon from './components/common/loading/Icon.vue';
59
60
  import type { AvatarUser, AvatarUserWithId } from './composables/user/avatar';
60
- export { CommonLoadingIcon, UniqueFileTypeSpecifier, prettyFileSize, BlobUploadStatus, FormFileUploadZone, UserAvatar, UserAvatarGroup, UserAvatarEditable, GlobalToastRenderer, ToastNotificationType, FormButton, CommonTextLink, CommonBadge, TailwindBreakpoints, CommonStepsBullet, CommonStepsNumber, CommonAnimationInstructional, FormCardButton, FormCheckbox, FormRadio, FormTextArea, FormTextInput, FormSwitch, FormClipboardInput, ValidationHelpers, useWrappingContainerHiddenCount, useFormSelectChildInternals, FormSelectBase, FormSelectBadges, FormSelectSourceApps, CommonLoadingBar, SourceAppBadge, onKeyboardShortcut, ModifierKeys, getKeyboardShortcutTitle, clientOs, LayoutDialog, LayoutDialogSection, LayoutDisclosure, LayoutGridListToggle, GridListToggleValue, ThrottleOrDebounce, HorizontalDirection, useWindowResizeHandler, useOnBeforeWindowUnload, useResponsiveHorizontalDirectionCalculation, LayoutMenu, LayoutTabs, LayoutPageTabs, LayoutTable, InfiniteLoading, LayoutPanel, CommonAlert, writableAsyncComputed, useFormCheckboxModel, FormTags, keyboardClick, buildManualPromise };
61
+ export { CommonLoadingIcon, UniqueFileTypeSpecifier, prettyFileSize, BlobUploadStatus, FormFileUploadZone, UserAvatar, UserAvatarGroup, UserAvatarEditable, GlobalToastRenderer, ToastNotificationType, FormButton, CommonTextLink, CommonBadge, TailwindBreakpoints, CommonStepsBullet, CommonStepsNumber, CommonAnimationInstructional, CommonVimeoEmbed, FormCardButton, FormCheckbox, FormRadio, FormTextArea, FormTextInput, FormSwitch, FormClipboardInput, ValidationHelpers, useWrappingContainerHiddenCount, useFormSelectChildInternals, FormSelectBase, FormSelectBadges, FormSelectSourceApps, CommonLoadingBar, SourceAppBadge, onKeyboardShortcut, ModifierKeys, getKeyboardShortcutTitle, clientOs, LayoutDialog, LayoutDialogSection, LayoutDisclosure, LayoutGridListToggle, GridListToggleValue, ThrottleOrDebounce, HorizontalDirection, useWindowResizeHandler, useOnBeforeWindowUnload, useResponsiveHorizontalDirectionCalculation, LayoutMenu, LayoutTabs, LayoutPageTabs, LayoutTable, InfiniteLoading, LayoutPanel, CommonAlert, writableAsyncComputed, useFormCheckboxModel, FormTags, keyboardClick, buildManualPromise };
61
62
  export type { ToastNotification, BulletStepType, NumberStepType, HorizontalOrVertical, LayoutMenuItem, LayoutTabItem, InfiniteLoaderState, AsyncWritableComputedOptions, AsyncWritableComputedRef, UploadFileItem, UploadableFileItem, BlobPostResultItem, FileTypeSpecifier, AvatarUser, AvatarUserWithId, LayoutPageTabItem };