@speckle/ui-components 2.23.4 → 2.23.6
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/README.md +1 -1
- package/dist/components/form/TextArea.vue.d.ts +14 -0
- package/dist/components/form/TextInput.vue.d.ts +1 -1
- package/dist/components/form/select/Multi.vue.d.ts +191 -0
- package/dist/components/global/ToastRenderer.vue.d.ts +4 -4
- package/dist/components/global/icon/Plus.vue.d.ts +2 -0
- package/dist/components/layout/Dialog.vue.d.ts +2 -0
- package/dist/components/layout/sidebar/menu/group/Group.vue.d.ts +16 -4
- package/dist/components/user/Avatar.vue.d.ts +10 -0
- package/dist/components/user/AvatarEditable.vue.d.ts +36 -17
- package/dist/components/user/AvatarGroup.vue.d.ts +5 -0
- package/dist/helpers/common/validation.d.ts +1 -0
- package/dist/lib.cjs +1 -1
- package/dist/lib.cjs.map +1 -1
- package/dist/lib.d.ts +2 -1
- package/dist/lib.js +2879 -2229
- package/dist/lib.js.map +1 -1
- package/dist/stories/composables/toast.d.ts +3 -4
- package/eslint.config.mjs +8 -0
- package/package.json +5 -4
- package/tailwind.config.cjs +2 -2
- package/utils/tailwind-configure.cjs +6 -8
- package/utils/tailwind-configure.d.ts +1 -1
- package/utils/tailwind-configure.js +6 -6
- package/dist/lib-utils.d.ts +0 -9
- /package/dist/components/{layout/sidebar/menu/group → global/icon}/ArrowFilled.vue.d.ts +0 -0
- /package/dist/components/{layout/sidebar/menu/group/Plus.vue.d.ts → global/icon/Edit.vue.d.ts} +0 -0
package/dist/lib.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ import { useFormSelectChildInternals } from './composables/form/select';
|
|
|
23
23
|
import FormSelectSourceApps from './components/form/select/SourceApps.vue';
|
|
24
24
|
import FormSelectBase from './components/form/select/Base.vue';
|
|
25
25
|
import FormSelectBadges from './components/form/select/Badges.vue';
|
|
26
|
+
import FormSelectMulti from './components/form/select/Multi.vue';
|
|
26
27
|
import FormSwitch from './components/form/Switch.vue';
|
|
27
28
|
import FormClipboardInput from './components/form/ClipboardInput.vue';
|
|
28
29
|
import CommonLoadingBar from './components/common/loading/Bar.vue';
|
|
@@ -69,5 +70,5 @@ export { vKeyboardClickable } from './directives/accessibility';
|
|
|
69
70
|
export { useAvatarSizeClasses } from './composables/user/avatar';
|
|
70
71
|
export type { UserAvatarSize } from './composables/user/avatar';
|
|
71
72
|
import CommonProgressBar from './components/common/ProgressBar.vue';
|
|
72
|
-
export { CommonLoadingIcon, UniqueFileTypeSpecifier, prettyFileSize, BlobUploadStatus, FormFileUploadZone, UserAvatar, UserAvatarGroup, UserAvatarEditable, GlobalToastRenderer, ToastNotificationType, FormButton, CommonTextLink, CommonBadge, TailwindBreakpoints, CommonStepsBullet, CommonStepsNumber, CommonAnimationInstructional, CommonVimeoEmbed, FormCardButton, FormCheckbox, FormRadio, FormRadioGroup, 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, LayoutTabsHorizontal, LayoutTabsVertical, LayoutTable, LayoutSidebar, LayoutSidebarPromo, LayoutSidebarMenu, LayoutSidebarMenuGroup, LayoutSidebarMenuGroupItem, InfiniteLoading, LayoutPanel, CommonAlert, writableAsyncComputed, useFormCheckboxModel, FormTags, keyboardClick, useDebouncedTextInput, buildManualPromise, CommonProgressBar };
|
|
73
|
+
export { CommonLoadingIcon, UniqueFileTypeSpecifier, prettyFileSize, BlobUploadStatus, FormFileUploadZone, UserAvatar, UserAvatarGroup, UserAvatarEditable, GlobalToastRenderer, ToastNotificationType, FormButton, CommonTextLink, CommonBadge, TailwindBreakpoints, CommonStepsBullet, CommonStepsNumber, CommonAnimationInstructional, CommonVimeoEmbed, FormCardButton, FormCheckbox, FormRadio, FormRadioGroup, FormTextArea, FormTextInput, FormSwitch, FormClipboardInput, ValidationHelpers, useWrappingContainerHiddenCount, useFormSelectChildInternals, FormSelectBase, FormSelectBadges, FormSelectSourceApps, FormSelectMulti, CommonLoadingBar, SourceAppBadge, onKeyboardShortcut, ModifierKeys, getKeyboardShortcutTitle, clientOs, LayoutDialog, LayoutDialogSection, LayoutDisclosure, LayoutGridListToggle, GridListToggleValue, ThrottleOrDebounce, HorizontalDirection, useWindowResizeHandler, useOnBeforeWindowUnload, useResponsiveHorizontalDirectionCalculation, LayoutMenu, LayoutTabsHorizontal, LayoutTabsVertical, LayoutTable, LayoutSidebar, LayoutSidebarPromo, LayoutSidebarMenu, LayoutSidebarMenuGroup, LayoutSidebarMenuGroupItem, InfiniteLoading, LayoutPanel, CommonAlert, writableAsyncComputed, useFormCheckboxModel, FormTags, keyboardClick, useDebouncedTextInput, buildManualPromise, CommonProgressBar };
|
|
73
74
|
export type { LayoutDialogButton, ToastNotification, BulletStepType, NumberStepType, HorizontalOrVertical, LayoutMenuItem, LayoutTabItem, InfiniteLoaderState, AsyncWritableComputedOptions, AsyncWritableComputedRef, UploadFileItem, UploadableFileItem, BlobPostResultItem, FileTypeSpecifier, AvatarUser, AvatarUserWithId, LayoutPageTabItem, PropAnyComponent, AlertColor, AlertAction };
|