@nexxtmove/ui 1.10.0 → 1.12.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/molecules/PageContainer/PageContainer.vue.d.ts +35 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +302 -253
- package/dist/nuxt.js +2 -0
- package/dist/ui.css +1 -1
- package/package.json +1 -1
- package/src/components/atoms/Loader/Loader.vue +241 -0
- package/src/components/molecules/PageContainer/PageContainer.vue +63 -0
- package/src/components.json +2 -0
- package/src/index.ts +2 -0
- package/tailwind/nexxtmove.tailwind.custom.css +8 -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,35 @@
|
|
|
1
|
+
type ContentWidth = keyof typeof CONTENT_WIDTHS;
|
|
2
|
+
interface NexxtPageContainerProps {
|
|
3
|
+
/** Maximum width of the content area; the content is centered within it. */
|
|
4
|
+
maxWidth?: ContentWidth;
|
|
5
|
+
}
|
|
6
|
+
declare const CONTENT_WIDTHS: {
|
|
7
|
+
readonly xs: "max-w-xs";
|
|
8
|
+
readonly sm: "max-w-sm";
|
|
9
|
+
readonly md: "max-w-md";
|
|
10
|
+
readonly lg: "max-w-lg";
|
|
11
|
+
readonly xl: "max-w-xl";
|
|
12
|
+
readonly '2xl': "max-w-2xl";
|
|
13
|
+
readonly '3xl': "max-w-3xl";
|
|
14
|
+
readonly '4xl': "max-w-4xl";
|
|
15
|
+
readonly '5xl': "max-w-5xl";
|
|
16
|
+
readonly '6xl': "max-w-6xl";
|
|
17
|
+
readonly '7xl': "max-w-7xl";
|
|
18
|
+
readonly '8xl': "max-w-8xl";
|
|
19
|
+
readonly full: "max-w-full-width";
|
|
20
|
+
};
|
|
21
|
+
declare var __VLS_1: {}, __VLS_9: {};
|
|
22
|
+
type __VLS_Slots = {} & {
|
|
23
|
+
default?: (props: typeof __VLS_1) => any;
|
|
24
|
+
} & {
|
|
25
|
+
sidebar?: (props: typeof __VLS_9) => any;
|
|
26
|
+
};
|
|
27
|
+
declare const __VLS_base: import('vue').DefineComponent<NexxtPageContainerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtPageContainerProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
29
|
+
declare const _default: typeof __VLS_export;
|
|
30
|
+
export default _default;
|
|
31
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -29,8 +29,10 @@ 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';
|
|
35
|
+
export { default as NexxtPageContainer } from './components/molecules/PageContainer/PageContainer.vue';
|
|
34
36
|
export { default as NexxtPagination } from './components/molecules/Pagination/Pagination.vue';
|
|
35
37
|
export { default as NexxtPresenceIndicator } from './components/atoms/PresenceIndicator/PresenceIndicator.vue';
|
|
36
38
|
export { default as NexxtProgressBar } from './components/organisms/ProgressBar/ProgressBar.vue';
|