@speckle/ui-components 2.16.0 → 2.16.1-alpha10

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 (35) hide show
  1. package/dist/AvatarEditor-594c4e0d.js +193 -0
  2. package/dist/AvatarEditor-594c4e0d.js.map +1 -0
  3. package/dist/AvatarEditor-92ea4e16.cjs +2 -0
  4. package/dist/AvatarEditor-92ea4e16.cjs.map +1 -0
  5. package/dist/components/common/loading/Icon.vue.d.ts +24 -0
  6. package/dist/components/form/Switch.vue.d.ts +6 -0
  7. package/dist/components/form/Tags.vue.d.ts +147 -0
  8. package/dist/components/form/TextArea.vue.d.ts +6 -0
  9. package/dist/components/form/TextInput.vue.d.ts +1 -1
  10. package/dist/components/form/file-upload/Zone.vue.d.ts +62 -0
  11. package/dist/components/form/select/Badges.vue.d.ts +64 -0
  12. package/dist/components/form/select/Base.vue.d.ts +375 -333
  13. package/dist/components/form/select/SourceApps.vue.d.ts +13 -0
  14. package/dist/components/form/tags/ContextManager.vue.d.ts +16 -0
  15. package/dist/components/layout/Table.vue.d.ts +68 -0
  16. package/dist/components/user/Avatar.vue.d.ts +59 -0
  17. package/dist/components/user/AvatarEditable.vue.d.ts +67 -0
  18. package/dist/components/user/AvatarEditor.vue.d.ts +26 -0
  19. package/dist/components/user/AvatarGroup.vue.d.ts +44 -0
  20. package/dist/composables/form/fileUpload.d.ts +63 -0
  21. package/dist/composables/form/textInput.d.ts +9 -5
  22. package/dist/composables/user/avatar.d.ts +19 -0
  23. package/dist/helpers/common/error.d.ts +28 -0
  24. package/dist/helpers/common/validation.d.ts +2 -0
  25. package/dist/helpers/form/file.d.ts +41 -0
  26. package/dist/lib.cjs +2 -1
  27. package/dist/lib.cjs.map +1 -0
  28. package/dist/lib.d.ts +14 -2
  29. package/dist/lib.js +2191 -1206
  30. package/dist/lib.js.map +1 -0
  31. package/dist/stories/helpers/avatar.d.ts +1 -0
  32. package/package.json +3 -2
  33. package/tailwind.config.cjs +11 -0
  34. package/tsconfig.json +1 -1
  35. package/vite.config.ts +6 -1
package/dist/lib.d.ts CHANGED
@@ -16,6 +16,8 @@ import { useWrappingContainerHiddenCount } from './composables/layout/resize';
16
16
  import { useFormSelectChildInternals } from './composables/form/select';
17
17
  import FormSelectSourceApps from './components/form/select/SourceApps.vue';
18
18
  import FormSelectBase from './components/form/select/Base.vue';
19
+ import FormSelectBadges from './components/form/select/Badges.vue';
20
+ import FormSwitch from './components/form/Switch.vue';
19
21
  import CommonLoadingBar from './components/common/loading/Bar.vue';
20
22
  import SourceAppBadge from './components/SourceAppBadge.vue';
21
23
  import { onKeyboardShortcut, useFormCheckboxModel } from './composables/form/input';
@@ -28,10 +30,20 @@ import { ThrottleOrDebounce, HorizontalDirection, useWindowResizeHandler, useOnB
28
30
  import LayoutMenu from './components/layout/Menu.vue';
29
31
  import { LayoutMenuItem, LayoutTabItem } from './helpers/layout/components';
30
32
  import LayoutTabs from './components/layout/Tabs.vue';
33
+ import LayoutTable from './components/layout/Table.vue';
31
34
  import InfiniteLoading from './components/InfiniteLoading.vue';
32
35
  import { InfiniteLoaderState } from './helpers/global/components';
33
36
  import LayoutPanel from './components/layout/Panel.vue';
34
37
  import CommonAlert from './components/common/Alert.vue';
35
38
  import { writableAsyncComputed, AsyncWritableComputedOptions, AsyncWritableComputedRef } from './composables/common/async';
36
- export { GlobalToastRenderer, ToastNotificationType, FormButton, CommonTextLink, CommonBadge, TailwindBreakpoints, CommonStepsBullet, CommonStepsNumber, FormCardButton, FormCheckbox, FormTextArea, FormTextInput, ValidationHelpers, useWrappingContainerHiddenCount, useFormSelectChildInternals, FormSelectBase, FormSelectSourceApps, CommonLoadingBar, SourceAppBadge, onKeyboardShortcut, ModifierKeys, getKeyboardShortcutTitle, clientOs, LayoutDialog, LayoutDisclosure, LayoutGridListToggle, GridListToggleValue, ThrottleOrDebounce, HorizontalDirection, useWindowResizeHandler, useOnBeforeWindowUnload, useResponsiveHorizontalDirectionCalculation, LayoutMenu, LayoutTabs, InfiniteLoading, LayoutPanel, CommonAlert, writableAsyncComputed, useFormCheckboxModel };
37
- export type { ToastNotification, BulletStepType, NumberStepType, HorizontalOrVertical, LayoutMenuItem, LayoutTabItem, InfiniteLoaderState, AsyncWritableComputedOptions, AsyncWritableComputedRef };
39
+ import FormTags from './components/form/Tags.vue';
40
+ import UserAvatar from './components/user/Avatar.vue';
41
+ import UserAvatarGroup from './components/user/AvatarGroup.vue';
42
+ import UserAvatarEditable from './components/user/AvatarEditable.vue';
43
+ import FormFileUploadZone from './components/form/file-upload/Zone.vue';
44
+ import { UploadableFileItem, UploadFileItem, BlobUploadStatus, BlobPostResultItem } from './composables/form/fileUpload';
45
+ import { FileTypeSpecifier, UniqueFileTypeSpecifier, prettyFileSize } from './helpers/form/file';
46
+ export * from './helpers/common/error';
47
+ 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 };