@speckle/ui-components 2.17.2 → 2.17.4
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/AvatarEditor-e223a145.cjs +2 -0
- package/dist/AvatarEditor-e223a145.cjs.map +1 -0
- package/dist/{AvatarEditor-8531c565.js → AvatarEditor-fda5ba41.js} +52 -52
- package/dist/AvatarEditor-fda5ba41.js.map +1 -0
- package/dist/components/InfiniteLoading.vue.d.ts +42 -29
- package/dist/components/SourceAppBadge.vue.d.ts +14 -11
- package/dist/components/common/Alert.vue.d.ts +48 -49
- package/dist/components/common/Badge.vue.d.ts +64 -47
- package/dist/components/common/loading/Bar.vue.d.ts +13 -10
- package/dist/components/common/loading/Icon.vue.d.ts +30 -19
- package/dist/components/common/steps/Bullet.vue.d.ts +31 -56
- package/dist/components/common/steps/Number.vue.d.ts +29 -50
- package/dist/components/common/text/Link.vue.d.ts +9 -9
- package/dist/components/form/Button.vue.d.ts +12 -11
- package/dist/components/form/CardButton.vue.d.ts +17 -16
- package/dist/components/form/Checkbox.vue.d.ts +3 -3
- package/dist/components/form/ClipboardInput.vue.d.ts +28 -26
- package/dist/components/form/Tags.vue.d.ts +69 -126
- package/dist/components/form/TextArea.vue.d.ts +71 -119
- package/dist/components/form/TextInput.vue.d.ts +7 -6
- package/dist/components/form/file-upload/Zone.vue.d.ts +60 -37
- package/dist/components/form/select/Badges.vue.d.ts +30 -60
- package/dist/components/form/select/Base.vue.d.ts +31 -244
- package/dist/components/form/select/SourceApps.vue.d.ts +4 -4
- package/dist/components/global/ToastRenderer.vue.d.ts +17 -14
- package/dist/components/layout/Dialog.vue.d.ts +51 -60
- package/dist/components/layout/DialogSection.vue.d.ts +3 -3
- package/dist/components/layout/Disclosure.vue.d.ts +37 -26
- package/dist/components/layout/GridListToggle.vue.d.ts +15 -10
- package/dist/components/layout/Menu.vue.d.ts +24 -19
- package/dist/components/layout/Table.vue.d.ts +8 -16
- package/dist/components/layout/Tabs.vue.d.ts +15 -12
- package/dist/components/user/Avatar.vue.d.ts +42 -46
- package/dist/components/user/AvatarEditable.vue.d.ts +2 -2
- package/dist/components/user/AvatarEditor.vue.d.ts +21 -26
- package/dist/components/user/AvatarGroup.vue.d.ts +39 -38
- package/dist/composables/common/async.d.ts +3 -3
- package/dist/composables/common/steps.d.ts +2 -2
- package/dist/composables/common/window.d.ts +2 -2
- package/dist/composables/form/fileUpload.d.ts +3 -3
- package/dist/composables/form/input.d.ts +1 -1
- package/dist/composables/form/select.d.ts +2 -2
- package/dist/composables/form/textInput.d.ts +3 -3
- package/dist/composables/layout/resize.d.ts +2 -2
- package/dist/composables/user/avatar.d.ts +1 -1
- package/dist/helpers/common/components.d.ts +2 -2
- package/dist/helpers/common/validation.d.ts +1 -1
- package/dist/helpers/form/file.d.ts +1 -1
- package/dist/lib.cjs +1 -1
- package/dist/lib.cjs.map +1 -1
- package/dist/lib.d.ts +12 -8
- package/dist/lib.js +1715 -1721
- package/dist/lib.js.map +1 -1
- package/dist/stories/composables/toast.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +9 -9
- package/tsconfig.json +1 -0
- package/dist/AvatarEditor-0cf61750.cjs +0 -2
- package/dist/AvatarEditor-0cf61750.cjs.map +0 -1
- package/dist/AvatarEditor-8531c565.js.map +0 -1
package/dist/lib.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import GlobalToastRenderer from './components/global/ToastRenderer.vue';
|
|
2
|
-
import {
|
|
2
|
+
import { ToastNotificationType } from './helpers/global/toast';
|
|
3
|
+
import type { ToastNotification } from './helpers/global/toast';
|
|
3
4
|
import { keyboardClick } from './helpers/global/accessibility';
|
|
4
5
|
import FormButton from './components/form/Button.vue';
|
|
5
6
|
import CommonTextLink from './components/common/text/Link.vue';
|
|
6
7
|
import CommonBadge from './components/common/Badge.vue';
|
|
7
|
-
import { BulletStepType, NumberStepType, HorizontalOrVertical } from './helpers/common/components';
|
|
8
|
+
import type { BulletStepType, NumberStepType, HorizontalOrVertical } from './helpers/common/components';
|
|
8
9
|
import { TailwindBreakpoints } from './helpers/tailwind';
|
|
9
10
|
import CommonStepsNumber from './components/common/steps/Number.vue';
|
|
10
11
|
import CommonStepsBullet from './components/common/steps/Bullet.vue';
|
|
@@ -31,23 +32,26 @@ import LayoutGridListToggle from './components/layout/GridListToggle.vue';
|
|
|
31
32
|
import { GridListToggleValue } from './helpers/layout/components';
|
|
32
33
|
import { ThrottleOrDebounce, HorizontalDirection, useWindowResizeHandler, useOnBeforeWindowUnload, useResponsiveHorizontalDirectionCalculation } from './composables/common/window';
|
|
33
34
|
import LayoutMenu from './components/layout/Menu.vue';
|
|
34
|
-
import { LayoutMenuItem, LayoutTabItem } from './helpers/layout/components';
|
|
35
|
+
import type { LayoutMenuItem, LayoutTabItem } from './helpers/layout/components';
|
|
35
36
|
import LayoutTabs from './components/layout/Tabs.vue';
|
|
36
37
|
import LayoutTable from './components/layout/Table.vue';
|
|
37
38
|
import InfiniteLoading from './components/InfiniteLoading.vue';
|
|
38
|
-
import { InfiniteLoaderState } from './helpers/global/components';
|
|
39
|
+
import type { InfiniteLoaderState } from './helpers/global/components';
|
|
39
40
|
import LayoutPanel from './components/layout/Panel.vue';
|
|
40
41
|
import CommonAlert from './components/common/Alert.vue';
|
|
41
|
-
import { writableAsyncComputed
|
|
42
|
+
import { writableAsyncComputed } from './composables/common/async';
|
|
43
|
+
import type { AsyncWritableComputedOptions, AsyncWritableComputedRef } from './composables/common/async';
|
|
42
44
|
import FormTags from './components/form/Tags.vue';
|
|
43
45
|
import UserAvatar from './components/user/Avatar.vue';
|
|
44
46
|
import UserAvatarGroup from './components/user/AvatarGroup.vue';
|
|
45
47
|
import UserAvatarEditable from './components/user/AvatarEditable.vue';
|
|
46
48
|
import FormFileUploadZone from './components/form/file-upload/Zone.vue';
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
+
import { BlobUploadStatus } from './composables/form/fileUpload';
|
|
50
|
+
import type { UploadableFileItem, UploadFileItem, BlobPostResultItem } from './composables/form/fileUpload';
|
|
51
|
+
import { UniqueFileTypeSpecifier, prettyFileSize } from './helpers/form/file';
|
|
52
|
+
import type { FileTypeSpecifier } from './helpers/form/file';
|
|
49
53
|
export * from './helpers/common/error';
|
|
50
54
|
import CommonLoadingIcon from './components/common/loading/Icon.vue';
|
|
51
|
-
import { AvatarUser, AvatarUserWithId } from './composables/user/avatar';
|
|
55
|
+
import type { AvatarUser, AvatarUserWithId } from './composables/user/avatar';
|
|
52
56
|
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
57
|
export type { ToastNotification, BulletStepType, NumberStepType, HorizontalOrVertical, LayoutMenuItem, LayoutTabItem, InfiniteLoaderState, AsyncWritableComputedOptions, AsyncWritableComputedRef, UploadFileItem, UploadableFileItem, BlobPostResultItem, FileTypeSpecifier, AvatarUser, AvatarUserWithId };
|