@speckle/ui-components 2.18.7 → 2.18.8
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/components/layout/PageTabs.vue.d.ts +29 -0
- package/dist/composables/user/avatar.d.ts +1 -1
- package/dist/helpers/layout/components.d.ts +7 -0
- package/dist/lib.cjs +1 -1
- package/dist/lib.cjs.map +1 -1
- package/dist/lib.d.ts +4 -2
- package/dist/lib.js +1541 -1449
- package/dist/lib.js.map +1 -1
- package/package.json +3 -3
package/dist/lib.d.ts
CHANGED
|
@@ -31,11 +31,13 @@ import LayoutDialog from './components/layout/Dialog.vue';
|
|
|
31
31
|
import LayoutDialogSection from './components/layout/DialogSection.vue';
|
|
32
32
|
import LayoutDisclosure from './components/layout/Disclosure.vue';
|
|
33
33
|
import LayoutGridListToggle from './components/layout/GridListToggle.vue';
|
|
34
|
+
import type { LayoutPageTabItem } from './helpers/layout/components';
|
|
34
35
|
import { GridListToggleValue } from './helpers/layout/components';
|
|
35
36
|
import { ThrottleOrDebounce, HorizontalDirection, useWindowResizeHandler, useOnBeforeWindowUnload, useResponsiveHorizontalDirectionCalculation } from './composables/common/window';
|
|
36
37
|
import LayoutMenu from './components/layout/Menu.vue';
|
|
37
38
|
import type { LayoutMenuItem, LayoutTabItem } from './helpers/layout/components';
|
|
38
39
|
import LayoutTabs from './components/layout/Tabs.vue';
|
|
40
|
+
import LayoutPageTabs from './components/layout/PageTabs.vue';
|
|
39
41
|
import LayoutTable from './components/layout/Table.vue';
|
|
40
42
|
import InfiniteLoading from './components/InfiniteLoading.vue';
|
|
41
43
|
import type { InfiniteLoaderState } from './helpers/global/components';
|
|
@@ -55,5 +57,5 @@ import type { FileTypeSpecifier } from './helpers/form/file';
|
|
|
55
57
|
export * from './helpers/common/error';
|
|
56
58
|
import CommonLoadingIcon from './components/common/loading/Icon.vue';
|
|
57
59
|
import type { AvatarUser, AvatarUserWithId } from './composables/user/avatar';
|
|
58
|
-
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, LayoutTable, InfiniteLoading, LayoutPanel, CommonAlert, writableAsyncComputed, useFormCheckboxModel, FormTags, keyboardClick };
|
|
59
|
-
export type { ToastNotification, BulletStepType, NumberStepType, HorizontalOrVertical, LayoutMenuItem, LayoutTabItem, InfiniteLoaderState, AsyncWritableComputedOptions, AsyncWritableComputedRef, UploadFileItem, UploadableFileItem, BlobPostResultItem, FileTypeSpecifier, AvatarUser, AvatarUserWithId };
|
|
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 };
|
|
61
|
+
export type { ToastNotification, BulletStepType, NumberStepType, HorizontalOrVertical, LayoutMenuItem, LayoutTabItem, InfiniteLoaderState, AsyncWritableComputedOptions, AsyncWritableComputedRef, UploadFileItem, UploadableFileItem, BlobPostResultItem, FileTypeSpecifier, AvatarUser, AvatarUserWithId, LayoutPageTabItem };
|