@speckle/ui-components 2.14.7 → 2.14.8-alpha2
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 +0 -19
- package/dist/components/InfiniteLoading.vue.d.ts +35 -0
- package/dist/components/layout/Dialog.vue.d.ts +33 -0
- package/dist/components/layout/Disclosure.vue.d.ts +35 -0
- package/dist/components/layout/GridListToggle.vue.d.ts +17 -0
- package/dist/components/layout/Menu.vue.d.ts +25 -0
- package/dist/components/layout/Panel.vue.d.ts +70 -0
- package/dist/components/layout/Tabs.vue.d.ts +14 -0
- package/dist/composables/common/window.d.ts +26 -0
- package/dist/helpers/global/components.d.ts +14 -0
- package/dist/helpers/layout/components.d.ts +13 -0
- package/dist/lib.cjs +1 -1
- package/dist/lib.d.ts +13 -2
- package/dist/lib.js +1381 -848
- package/dist/style.css +1 -1
- package/package.json +3 -2
package/dist/lib.d.ts
CHANGED
|
@@ -20,5 +20,16 @@ import CommonLoadingBar from './components/common/loading/Bar.vue';
|
|
|
20
20
|
import SourceAppBadge from './components/SourceAppBadge.vue';
|
|
21
21
|
import { onKeyboardShortcut } from './composables/form/input';
|
|
22
22
|
import { ModifierKeys, getKeyboardShortcutTitle, clientOs } from './helpers/form/input';
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
import LayoutDialog from './components/layout/Dialog.vue';
|
|
24
|
+
import LayoutDisclosure from './components/layout/Disclosure.vue';
|
|
25
|
+
import LayoutGridListToggle from './components/layout/GridListToggle.vue';
|
|
26
|
+
import { GridListToggleValue } from './helpers/layout/components';
|
|
27
|
+
import { ThrottleOrDebounce, HorizontalDirection, useWindowResizeHandler, useOnBeforeWindowUnload, useResponsiveHorizontalDirectionCalculation } from './composables/common/window';
|
|
28
|
+
import LayoutMenu from './components/layout/Menu.vue';
|
|
29
|
+
import { LayoutMenuItem, LayoutTabItem } from './helpers/layout/components';
|
|
30
|
+
import LayoutTabs from './components/layout/Tabs.vue';
|
|
31
|
+
import InfiniteLoading from './components/InfiniteLoading.vue';
|
|
32
|
+
import { InfiniteLoaderState } from './helpers/global/components';
|
|
33
|
+
import LayoutPanel from './components/layout/Panel.vue';
|
|
34
|
+
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 };
|
|
35
|
+
export type { ToastNotification, BulletStepType, NumberStepType, HorizontalOrVertical, LayoutMenuItem, LayoutTabItem, InfiniteLoaderState };
|