@speckle/ui-components 2.25.8 → 2.26.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/.cursor/rules/component-library.mdc +147 -0
- package/dist/AvatarEditor-00037f6e.cjs +2 -0
- package/dist/{AvatarEditor-0f54d404.cjs.map → AvatarEditor-00037f6e.cjs.map} +1 -1
- package/dist/{AvatarEditor-9f1741f8.js → AvatarEditor-fc5c4df2.js} +10 -11
- package/dist/{AvatarEditor-9f1741f8.js.map → AvatarEditor-fc5c4df2.js.map} +1 -1
- package/dist/components/common/PromoAlert.vue.d.ts +17 -0
- package/dist/components/form/Checkbox.vue.d.ts +9 -0
- package/dist/components/form/CodeInput.vue.d.ts +18 -6
- package/dist/components/form/DualRange.vue.d.ts +27 -0
- package/dist/components/form/RadioGroup.vue.d.ts +9 -15
- package/dist/components/form/Range.vue.d.ts +21 -0
- package/dist/components/form/TextInput.vue.d.ts +10 -1
- package/dist/components/form/select/Base.vue.d.ts +7 -7
- package/dist/components/form/select/Multi.vue.d.ts +7 -7
- package/dist/components/global/icon/Check.vue.d.ts +2 -0
- package/dist/components/layout/Disclosure.vue.d.ts +25 -3
- package/dist/components/layout/Menu.vue.d.ts +37 -262
- package/dist/components/user/AvatarEditor.vue.d.ts +2 -2
- package/dist/composables/form/textInput.d.ts +15 -1
- package/dist/composables/layout/menu.d.ts +6 -0
- package/dist/helpers/common/components.d.ts +9 -0
- package/dist/helpers/layout/components.d.ts +4 -2
- package/dist/lib.cjs +1 -1
- package/dist/lib.cjs.map +1 -1
- package/dist/lib.d.ts +6 -3
- package/dist/lib.js +3843 -2841
- package/dist/lib.js.map +1 -1
- package/dist/style.css +1 -1
- package/eslint.config.mjs +1 -1
- package/package.json +4 -5
- package/dist/AvatarEditor-0f54d404.cjs +0 -2
package/dist/lib.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { keyboardClick } from './helpers/global/accessibility';
|
|
|
4
4
|
import { default as FormButton } from './components/form/Button.vue';
|
|
5
5
|
import { default as CommonTextLink } from './components/common/text/Link.vue';
|
|
6
6
|
import { default as CommonBadge } from './components/common/Badge.vue';
|
|
7
|
-
import { BulletStepType, NumberStepType, HorizontalOrVertical, PropAnyComponent, AlertColor, AlertAction } from './helpers/common/components';
|
|
7
|
+
import { BulletStepType, NumberStepType, HorizontalOrVertical, PropAnyComponent, AlertColor, AlertAction, FormRadioGroupItem } from './helpers/common/components';
|
|
8
8
|
import { TailwindBreakpoints } from './helpers/tailwind';
|
|
9
9
|
import { default as CommonStepsNumber } from './components/common/steps/Number.vue';
|
|
10
10
|
import { default as CommonStepsBullet } from './components/common/steps/Bullet.vue';
|
|
@@ -60,10 +60,13 @@ import { default as CommonLoadingIcon } from './components/common/loading/Icon.v
|
|
|
60
60
|
import { AvatarUser, AvatarUserWithId } from './composables/user/avatar';
|
|
61
61
|
import { useDebouncedTextInput } from './composables/form/textInput';
|
|
62
62
|
import { default as CommonProgressBar } from './components/common/ProgressBar.vue';
|
|
63
|
+
import { default as CommonPromoAlert } from './components/common/PromoAlert.vue';
|
|
64
|
+
import { default as FormRange } from './components/form/Range.vue';
|
|
65
|
+
import { default as FormDualRange } from './components/form/DualRange.vue';
|
|
63
66
|
import * as ValidationHelpers from './helpers/common/validation';
|
|
64
67
|
export * from './helpers/common/error';
|
|
65
68
|
export { vKeyboardClickable } from './directives/accessibility';
|
|
66
69
|
export { useAvatarSizeClasses } from './composables/user/avatar';
|
|
67
70
|
export type { UserAvatarSize } from './composables/user/avatar';
|
|
68
|
-
export { MissingFileExtensionError, ForbiddenFileTypeError, FileTooLargeError, CommonLoadingIcon, UniqueFileTypeSpecifier, prettyFileSize, FormFileUploadZone, UserAvatar, UserAvatarGroup, UserAvatarEditable, GlobalToastRenderer, ToastNotificationType, FormButton, CommonTextLink, CommonBadge, TailwindBreakpoints, CommonStepsBullet, CommonStepsNumber, CommonAnimationInstructional, CommonVimeoEmbed, FormCardButton, FormCheckbox, FormRadio, FormRadioGroup, FormTextArea, FormTextInput, FormSwitch, FormClipboardInput, FormCodeInput, 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, resolveFileExtension, generateFileId };
|
|
69
|
-
export type { LayoutDialogButton, LayoutHeaderButton, ToastNotification, BulletStepType, NumberStepType, HorizontalOrVertical, LayoutMenuItem, LayoutTabItem, InfiniteLoaderState, AsyncWritableComputedOptions, AsyncWritableComputedRef, UploadFileItem, UploadableFileItem, BlobPostResultItem, FileTypeSpecifier, AvatarUser, AvatarUserWithId, LayoutPageTabItem, PropAnyComponent, AlertColor, AlertAction };
|
|
71
|
+
export { CommonPromoAlert, MissingFileExtensionError, ForbiddenFileTypeError, FileTooLargeError, CommonLoadingIcon, UniqueFileTypeSpecifier, prettyFileSize, FormFileUploadZone, UserAvatar, UserAvatarGroup, UserAvatarEditable, GlobalToastRenderer, ToastNotificationType, FormButton, CommonTextLink, CommonBadge, TailwindBreakpoints, CommonStepsBullet, CommonStepsNumber, CommonAnimationInstructional, CommonVimeoEmbed, FormCardButton, FormCheckbox, FormRadio, FormRadioGroup, FormTextArea, FormTextInput, FormSwitch, FormClipboardInput, FormCodeInput, 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, resolveFileExtension, generateFileId, FormRange, FormDualRange };
|
|
72
|
+
export type { FormRadioGroupItem, LayoutDialogButton, LayoutHeaderButton, ToastNotification, BulletStepType, NumberStepType, HorizontalOrVertical, LayoutMenuItem, LayoutTabItem, InfiniteLoaderState, AsyncWritableComputedOptions, AsyncWritableComputedRef, UploadFileItem, UploadableFileItem, BlobPostResultItem, FileTypeSpecifier, AvatarUser, AvatarUserWithId, LayoutPageTabItem, PropAnyComponent, AlertColor, AlertAction };
|