@nexxtmove/ui 1.9.0 → 1.11.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/dist/components/atoms/Loader/Loader.vue.d.ts +7 -0
- package/dist/components/atoms/SelectableOption/SelectableOption.vue.d.ts +24 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +305 -249
- package/dist/nuxt.js +2 -0
- package/dist/ui.css +1 -1
- package/package.json +1 -2
- package/src/components/atoms/Loader/Loader.vue +241 -0
- package/src/components/atoms/SelectableOption/SelectableOption.vue +64 -0
- package/src/components.json +2 -0
- package/src/index.ts +2 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface NexxtLoaderProps {
|
|
2
|
+
/** Read out by screen readers while the loader is visible. */
|
|
3
|
+
label?: string;
|
|
4
|
+
}
|
|
5
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtLoaderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtLoaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
interface NexxtSelectableOptionProps {
|
|
2
|
+
/** Whether this option is currently chosen. */
|
|
3
|
+
selected?: boolean;
|
|
4
|
+
/** Disables the option, so it can no longer be chosen. */
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
/** Corner radius. Tile pickers use `xl`, compact rows of choices use `lg`. */
|
|
7
|
+
rounded?: 'lg' | 'xl' | '3xl';
|
|
8
|
+
/** Shows a check badge in the top-right corner while selected. For cards; compact rows of choices do without. */
|
|
9
|
+
checkmark?: boolean;
|
|
10
|
+
}
|
|
11
|
+
type __VLS_Slots = {
|
|
12
|
+
default(props: {
|
|
13
|
+
selected: boolean;
|
|
14
|
+
}): unknown;
|
|
15
|
+
};
|
|
16
|
+
declare const __VLS_base: import('vue').DefineComponent<NexxtSelectableOptionProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtSelectableOptionProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
21
|
+
new (): {
|
|
22
|
+
$slots: S;
|
|
23
|
+
};
|
|
24
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export { default as NexxtIcon } from './components/atoms/Icon/Icon.vue';
|
|
|
29
29
|
export { default as NexxtInfoBlock } from './components/molecules/InfoBlock/InfoBlock.vue';
|
|
30
30
|
export { default as NexxtInputField } from './components/molecules/InputField/InputField.vue';
|
|
31
31
|
export { default as NexxtInputSelect } from './components/molecules/InputSelect/InputSelect.vue';
|
|
32
|
+
export { default as NexxtLoader } from './components/atoms/Loader/Loader.vue';
|
|
32
33
|
export { default as NexxtModal } from './components/organisms/Modal/Modal.vue';
|
|
33
34
|
export { default as NexxtModalFooter } from './components/molecules/ModalFooter/ModalFooter.vue';
|
|
34
35
|
export { default as NexxtPagination } from './components/molecules/Pagination/Pagination.vue';
|
|
@@ -38,6 +39,7 @@ export { default as NexxtPropertyCard } from './components/molecules/PropertyCar
|
|
|
38
39
|
export { default as NexxtPropertyListing } from './components/atoms/PropertyListing/PropertyListing.vue';
|
|
39
40
|
export { default as NexxtReferenceCard } from './components/organisms/ReferenceCard/ReferenceCard.vue';
|
|
40
41
|
export { default as NexxtSelect } from './components/molecules/Select/Select.vue';
|
|
42
|
+
export { default as NexxtSelectableOption } from './components/atoms/SelectableOption/SelectableOption.vue';
|
|
41
43
|
export { default as NexxtSidebarMenuItem } from './components/molecules/SidebarMenuItem/SidebarMenuItem.vue';
|
|
42
44
|
export { default as NexxtSkeleton } from './components/atoms/Skeleton/Skeleton.vue';
|
|
43
45
|
export { default as NexxtSkeletonPropertyCard } from './components/molecules/SkeletonPropertyCard/SkeletonPropertyCard.vue';
|