@speckle/ui-components 2.16.1-alpha9 → 2.17.0

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/lib.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import GlobalToastRenderer from './components/global/ToastRenderer.vue';
2
2
  import { ToastNotification, ToastNotificationType } from './helpers/global/toast';
3
+ import { keyboardClick } from './helpers/global/accessibility';
3
4
  import FormButton from './components/form/Button.vue';
4
5
  import CommonTextLink from './components/common/text/Link.vue';
5
6
  import CommonBadge from './components/common/Badge.vue';
@@ -18,11 +19,13 @@ import FormSelectSourceApps from './components/form/select/SourceApps.vue';
18
19
  import FormSelectBase from './components/form/select/Base.vue';
19
20
  import FormSelectBadges from './components/form/select/Badges.vue';
20
21
  import FormSwitch from './components/form/Switch.vue';
22
+ import FormClipboardInput from './components/form/ClipboardInput.vue';
21
23
  import CommonLoadingBar from './components/common/loading/Bar.vue';
22
24
  import SourceAppBadge from './components/SourceAppBadge.vue';
23
25
  import { onKeyboardShortcut, useFormCheckboxModel } from './composables/form/input';
24
26
  import { ModifierKeys, getKeyboardShortcutTitle, clientOs } from './helpers/form/input';
25
27
  import LayoutDialog from './components/layout/Dialog.vue';
28
+ import LayoutDialogSection from './components/layout/DialogSection.vue';
26
29
  import LayoutDisclosure from './components/layout/Disclosure.vue';
27
30
  import LayoutGridListToggle from './components/layout/GridListToggle.vue';
28
31
  import { GridListToggleValue } from './helpers/layout/components';
@@ -45,5 +48,6 @@ import { UploadableFileItem, UploadFileItem, BlobUploadStatus, BlobPostResultIte
45
48
  import { FileTypeSpecifier, UniqueFileTypeSpecifier, prettyFileSize } from './helpers/form/file';
46
49
  export * from './helpers/common/error';
47
50
  import CommonLoadingIcon from './components/common/loading/Icon.vue';
48
- export { CommonLoadingIcon, UniqueFileTypeSpecifier, prettyFileSize, BlobUploadStatus, FormFileUploadZone, UserAvatar, UserAvatarGroup, UserAvatarEditable, GlobalToastRenderer, ToastNotificationType, FormButton, CommonTextLink, CommonBadge, TailwindBreakpoints, CommonStepsBullet, CommonStepsNumber, FormCardButton, FormCheckbox, FormTextArea, FormTextInput, FormSwitch, ValidationHelpers, useWrappingContainerHiddenCount, useFormSelectChildInternals, FormSelectBase, FormSelectBadges, FormSelectSourceApps, CommonLoadingBar, SourceAppBadge, onKeyboardShortcut, ModifierKeys, getKeyboardShortcutTitle, clientOs, LayoutDialog, LayoutDisclosure, LayoutGridListToggle, GridListToggleValue, ThrottleOrDebounce, HorizontalDirection, useWindowResizeHandler, useOnBeforeWindowUnload, useResponsiveHorizontalDirectionCalculation, LayoutMenu, LayoutTabs, LayoutTable, InfiniteLoading, LayoutPanel, CommonAlert, writableAsyncComputed, useFormCheckboxModel, FormTags };
49
- export type { ToastNotification, BulletStepType, NumberStepType, HorizontalOrVertical, LayoutMenuItem, LayoutTabItem, InfiniteLoaderState, AsyncWritableComputedOptions, AsyncWritableComputedRef, UploadFileItem, UploadableFileItem, BlobPostResultItem, FileTypeSpecifier };
51
+ import { AvatarUser, AvatarUserWithId } from './composables/user/avatar';
52
+ export { CommonLoadingIcon, UniqueFileTypeSpecifier, prettyFileSize, BlobUploadStatus, FormFileUploadZone, UserAvatar, UserAvatarGroup, UserAvatarEditable, GlobalToastRenderer, ToastNotificationType, FormButton, CommonTextLink, CommonBadge, TailwindBreakpoints, CommonStepsBullet, CommonStepsNumber, FormCardButton, FormCheckbox, 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, LayoutTable, InfiniteLoading, LayoutPanel, CommonAlert, writableAsyncComputed, useFormCheckboxModel, FormTags, keyboardClick };
53
+ export type { ToastNotification, BulletStepType, NumberStepType, HorizontalOrVertical, LayoutMenuItem, LayoutTabItem, InfiniteLoaderState, AsyncWritableComputedOptions, AsyncWritableComputedRef, UploadFileItem, UploadableFileItem, BlobPostResultItem, FileTypeSpecifier, AvatarUser, AvatarUserWithId };