@cloudparker/moldex.js 0.0.60 → 0.0.61
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/views/core/button/components/button-menu/button-menu.svelte +32 -30
- package/dist/views/core/button/components/button-menu/button-menu.svelte.d.ts +21 -19
- package/dist/views/core/button/index.d.ts +5 -2
- package/dist/views/core/button/index.js +1 -11
- package/dist/views/core/navbar/components/navbar/navbar.svelte +11 -9
- package/dist/views/core/navbar/components/navbar/navbar.svelte.d.ts +19 -18
- package/dist/views/core/navbar/index.d.ts +2 -0
- package/dist/views/core/navbar/index.js +1 -0
- package/package.json +1 -1
|
@@ -1,28 +1,6 @@
|
|
|
1
1
|
<script lang="ts" module>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<script lang="ts">
|
|
5
|
-
import '../../../../../tailwind.css';
|
|
6
|
-
|
|
7
|
-
import { ripple } from '../../../../../actions/ripple.js';
|
|
8
|
-
|
|
9
|
-
import {
|
|
10
|
-
Icon,
|
|
11
|
-
mdiCheckCircle,
|
|
12
|
-
mdiCheckCircleOutline,
|
|
13
|
-
mdiChevronDown
|
|
14
|
-
} from '../../../icon';
|
|
15
|
-
import type { Snippet } from 'svelte';
|
|
16
|
-
import type { ListItemType } from '../button-list-item/button-list-item.svelte';
|
|
17
|
-
import ButtonListItem from '../button-list-item/button-list-item.svelte';
|
|
18
|
-
import Button from '../button/button.svelte';
|
|
19
|
-
|
|
20
|
-
class MenuStateEnum {
|
|
21
|
-
static OPENED = 'OPENED';
|
|
22
|
-
static CLOSED = 'CLOSED';
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
type PropsType = {
|
|
2
|
+
export type ButtonMenuProps = {
|
|
3
|
+
innerClassName?: string;
|
|
26
4
|
backgropClassName?: string;
|
|
27
5
|
buttonSnippet?: Snippet;
|
|
28
6
|
checkClassName?: string;
|
|
@@ -54,7 +32,7 @@
|
|
|
54
32
|
menuItemInnerSnippet?: Snippet<[ListItemType, number]>;
|
|
55
33
|
menuItemSnippet?: Snippet<[ListItemType, number]>;
|
|
56
34
|
menus?: string[] | ListItemType[];
|
|
57
|
-
|
|
35
|
+
onMenu?: (ev: MouseEvent, item: string | ListItemType, index?: number) => void;
|
|
58
36
|
rightIconClassName?: string;
|
|
59
37
|
rightIconPath?: string;
|
|
60
38
|
screenOnlyDesc?: string;
|
|
@@ -64,6 +42,28 @@
|
|
|
64
42
|
uncheckIconClassName?: string;
|
|
65
43
|
uncheckIconPath?: string;
|
|
66
44
|
};
|
|
45
|
+
</script>
|
|
46
|
+
|
|
47
|
+
<script lang="ts">
|
|
48
|
+
import '../../../../../tailwind.css';
|
|
49
|
+
|
|
50
|
+
import { ripple } from '../../../../../actions/ripple.js';
|
|
51
|
+
|
|
52
|
+
import {
|
|
53
|
+
Icon,
|
|
54
|
+
mdiCheckCircle,
|
|
55
|
+
mdiCheckCircleOutline,
|
|
56
|
+
mdiChevronDown
|
|
57
|
+
} from '../../../icon';
|
|
58
|
+
import type { Snippet } from 'svelte';
|
|
59
|
+
import type { ListItemType } from '../button-list-item/button-list-item.svelte';
|
|
60
|
+
import ButtonListItem from '../button-list-item/button-list-item.svelte';
|
|
61
|
+
import Button from '../button/button.svelte';
|
|
62
|
+
|
|
63
|
+
class MenuStateEnum {
|
|
64
|
+
static OPENED = 'OPENED';
|
|
65
|
+
static CLOSED = 'CLOSED';
|
|
66
|
+
}
|
|
67
67
|
|
|
68
68
|
let {
|
|
69
69
|
backgropClassName = '',
|
|
@@ -73,6 +73,7 @@
|
|
|
73
73
|
checkIconPath = mdiCheckCircle,
|
|
74
74
|
children,
|
|
75
75
|
className = '',
|
|
76
|
+
innerClassName = '',
|
|
76
77
|
containerClassName = '',
|
|
77
78
|
dividerClassName = '',
|
|
78
79
|
dropdownClassName = '',
|
|
@@ -96,7 +97,7 @@
|
|
|
96
97
|
menuItemInnerSnippet,
|
|
97
98
|
menuItemSnippet,
|
|
98
99
|
menus = [],
|
|
99
|
-
|
|
100
|
+
onMenu = (ev: MouseEvent, item: string | ListItemType, index?: number) => {},
|
|
100
101
|
rightIconClassName = '',
|
|
101
102
|
rightIconPath = '',
|
|
102
103
|
screenOnlyDesc = 'Menu',
|
|
@@ -105,7 +106,7 @@
|
|
|
105
106
|
titleClassName = '',
|
|
106
107
|
uncheckIconClassName = '',
|
|
107
108
|
uncheckIconPath = mdiCheckCircleOutline
|
|
108
|
-
}:
|
|
109
|
+
}: ButtonMenuProps = $props();
|
|
109
110
|
|
|
110
111
|
let expanded = $state(false);
|
|
111
112
|
let dropdownState: MenuStateEnum = $state(MenuStateEnum.CLOSED);
|
|
@@ -141,11 +142,11 @@
|
|
|
141
142
|
|
|
142
143
|
function handlemenuItemClick(ev: MouseEvent, menu: ListItemType, index: number) {
|
|
143
144
|
hendleToggleDropdown(ev);
|
|
144
|
-
if (
|
|
145
|
+
if (onMenu) {
|
|
145
146
|
let item = menus[index];
|
|
146
147
|
|
|
147
148
|
if (item) {
|
|
148
|
-
|
|
149
|
+
onMenu(ev, item, index);
|
|
149
150
|
}
|
|
150
151
|
selectedMenu = menu;
|
|
151
152
|
}
|
|
@@ -160,7 +161,7 @@
|
|
|
160
161
|
onClick={hendleToggleDropdown}
|
|
161
162
|
>
|
|
162
163
|
<span class="sr-only">{screenOnlyDesc}</span>
|
|
163
|
-
<div class="flex items-center flex-nowrap
|
|
164
|
+
<div class="flex items-center flex-nowrap {innerClassName}">
|
|
164
165
|
{#if buttonSnippet}
|
|
165
166
|
{@render buttonSnippet()}
|
|
166
167
|
{:else}
|
|
@@ -186,6 +187,7 @@
|
|
|
186
187
|
</Button>
|
|
187
188
|
{#if dropdownState == MenuStateEnum.OPENED}
|
|
188
189
|
<button
|
|
190
|
+
aria-label="backdrop"
|
|
189
191
|
type="button"
|
|
190
192
|
id="{id}-menu-backdrop"
|
|
191
193
|
class="cursor-auto fixed inset-0 z-10 {backgropClassName}"
|
|
@@ -1,20 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import type { ListItemType } from '../button-list-item/button-list-item.svelte';
|
|
4
|
-
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
5
|
-
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
|
|
6
|
-
$$bindings?: Bindings;
|
|
7
|
-
} & Exports;
|
|
8
|
-
(internal: unknown, props: Props & {
|
|
9
|
-
$$events?: Events;
|
|
10
|
-
$$slots?: Slots;
|
|
11
|
-
}): Exports & {
|
|
12
|
-
$set?: any;
|
|
13
|
-
$on?: any;
|
|
14
|
-
};
|
|
15
|
-
z_$$bindings?: Bindings;
|
|
16
|
-
}
|
|
17
|
-
declare const ButtonMenu: $$__sveltets_2_IsomorphicComponent<{
|
|
1
|
+
export type ButtonMenuProps = {
|
|
2
|
+
innerClassName?: string;
|
|
18
3
|
backgropClassName?: string;
|
|
19
4
|
buttonSnippet?: Snippet;
|
|
20
5
|
checkClassName?: string;
|
|
@@ -46,7 +31,7 @@ declare const ButtonMenu: $$__sveltets_2_IsomorphicComponent<{
|
|
|
46
31
|
menuItemInnerSnippet?: Snippet<[ListItemType, number]>;
|
|
47
32
|
menuItemSnippet?: Snippet<[ListItemType, number]>;
|
|
48
33
|
menus?: string[] | ListItemType[];
|
|
49
|
-
|
|
34
|
+
onMenu?: (ev: MouseEvent, item: string | ListItemType, index?: number) => void;
|
|
50
35
|
rightIconClassName?: string;
|
|
51
36
|
rightIconPath?: string;
|
|
52
37
|
screenOnlyDesc?: string;
|
|
@@ -54,7 +39,24 @@ declare const ButtonMenu: $$__sveltets_2_IsomorphicComponent<{
|
|
|
54
39
|
titleClassName?: string;
|
|
55
40
|
uncheckIconClassName?: string;
|
|
56
41
|
uncheckIconPath?: string;
|
|
57
|
-
}
|
|
42
|
+
};
|
|
43
|
+
import '../../../../../tailwind.css';
|
|
44
|
+
import type { Snippet } from 'svelte';
|
|
45
|
+
import type { ListItemType } from '../button-list-item/button-list-item.svelte';
|
|
46
|
+
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
47
|
+
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
|
|
48
|
+
$$bindings?: Bindings;
|
|
49
|
+
} & Exports;
|
|
50
|
+
(internal: unknown, props: Props & {
|
|
51
|
+
$$events?: Events;
|
|
52
|
+
$$slots?: Slots;
|
|
53
|
+
}): Exports & {
|
|
54
|
+
$set?: any;
|
|
55
|
+
$on?: any;
|
|
56
|
+
};
|
|
57
|
+
z_$$bindings?: Bindings;
|
|
58
|
+
}
|
|
59
|
+
declare const ButtonMenu: $$__sveltets_2_IsomorphicComponent<ButtonMenuProps, {
|
|
58
60
|
[evt: string]: CustomEvent<any>;
|
|
59
61
|
}, {}, {}, "">;
|
|
60
62
|
type ButtonMenu = InstanceType<typeof ButtonMenu>;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
import Button from './components/button/button.svelte';
|
|
2
1
|
import ButtonBack from './components/button-back/button-back.svelte';
|
|
3
|
-
import ButtonClose from './components/button-close/button-close.svelte';
|
|
4
2
|
import ButtonCloseIcon from './components/button-close-icon/button-close-icon.svelte';
|
|
3
|
+
import ButtonClose from './components/button-close/button-close.svelte';
|
|
5
4
|
import ButtonListItem from './components/button-list-item/button-list-item.svelte';
|
|
6
5
|
import ButtonMenu from './components/button-menu/button-menu.svelte';
|
|
7
6
|
import ButtonOk from './components/button-ok/button-ok.svelte';
|
|
7
|
+
import Button from './components/button/button.svelte';
|
|
8
|
+
import type { ListItemType } from './components/button-list-item/button-list-item.svelte';
|
|
9
|
+
import type { ButtonMenuProps } from './components/button-menu/button-menu.svelte';
|
|
10
|
+
export type { ListItemType, ButtonMenuProps };
|
|
8
11
|
export { Button, ButtonBack, ButtonClose, ButtonCloseIcon, ButtonListItem, ButtonMenu, ButtonOk };
|
|
@@ -5,14 +5,4 @@ import ButtonListItem from './components/button-list-item/button-list-item.svelt
|
|
|
5
5
|
import ButtonMenu from './components/button-menu/button-menu.svelte';
|
|
6
6
|
import ButtonOk from './components/button-ok/button-ok.svelte';
|
|
7
7
|
import Button from './components/button/button.svelte';
|
|
8
|
-
|
|
9
|
-
export {
|
|
10
|
-
Button,
|
|
11
|
-
ButtonBack,
|
|
12
|
-
ButtonClose,
|
|
13
|
-
ButtonCloseIcon,
|
|
14
|
-
ButtonListItem,
|
|
15
|
-
ButtonMenu,
|
|
16
|
-
ButtonOk
|
|
17
|
-
};
|
|
18
|
-
|
|
8
|
+
export { Button, ButtonBack, ButtonClose, ButtonCloseIcon, ButtonListItem, ButtonMenu, ButtonOk };
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
<script lang="ts">
|
|
2
|
-
|
|
3
|
-
import Button from '../../../button/components/button/button.svelte';
|
|
4
|
-
import { Icon, mdiMenu } from '../../../icon';
|
|
5
|
-
import type { Snippet } from 'svelte';
|
|
6
|
-
import '../../../../../tailwind.css';
|
|
7
|
-
|
|
8
|
-
type PropsType = {
|
|
1
|
+
<script module lang="ts">
|
|
2
|
+
export type NavbarProps = {
|
|
9
3
|
disabledLogo?: boolean;
|
|
10
4
|
backIconPath?: string;
|
|
11
5
|
backButtonClassName?: string;
|
|
@@ -39,6 +33,14 @@
|
|
|
39
33
|
title?: string;
|
|
40
34
|
titleClassName?: string;
|
|
41
35
|
};
|
|
36
|
+
</script>
|
|
37
|
+
|
|
38
|
+
<script lang="ts">
|
|
39
|
+
import ButtonBack from '../../../button/components/button-back/button-back.svelte';
|
|
40
|
+
import Button from '../../../button/components/button/button.svelte';
|
|
41
|
+
import { Icon, mdiMenu } from '../../../icon';
|
|
42
|
+
import type { Snippet } from 'svelte';
|
|
43
|
+
import '../../../../../tailwind.css';
|
|
42
44
|
|
|
43
45
|
let {
|
|
44
46
|
disabledLogo,
|
|
@@ -73,7 +75,7 @@
|
|
|
73
75
|
subtitleClassName = '',
|
|
74
76
|
title = '',
|
|
75
77
|
titleClassName = ''
|
|
76
|
-
}:
|
|
78
|
+
}: NavbarProps = $props();
|
|
77
79
|
</script>
|
|
78
80
|
|
|
79
81
|
<nav
|
|
@@ -1,19 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
import '../../../../../tailwind.css';
|
|
3
|
-
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
4
|
-
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
|
|
5
|
-
$$bindings?: Bindings;
|
|
6
|
-
} & Exports;
|
|
7
|
-
(internal: unknown, props: Props & {
|
|
8
|
-
$$events?: Events;
|
|
9
|
-
$$slots?: Slots;
|
|
10
|
-
}): Exports & {
|
|
11
|
-
$set?: any;
|
|
12
|
-
$on?: any;
|
|
13
|
-
};
|
|
14
|
-
z_$$bindings?: Bindings;
|
|
15
|
-
}
|
|
16
|
-
declare const Navbar: $$__sveltets_2_IsomorphicComponent<{
|
|
1
|
+
export type NavbarProps = {
|
|
17
2
|
disabledLogo?: boolean;
|
|
18
3
|
backIconPath?: string;
|
|
19
4
|
backButtonClassName?: string;
|
|
@@ -36,7 +21,7 @@ declare const Navbar: $$__sveltets_2_IsomorphicComponent<{
|
|
|
36
21
|
logoImgClassName?: string;
|
|
37
22
|
logoImgSrc?: string;
|
|
38
23
|
moreIconPath?: string;
|
|
39
|
-
morePosition?:
|
|
24
|
+
morePosition?: 'left' | 'right';
|
|
40
25
|
onLogo?: () => void;
|
|
41
26
|
onMore?: () => void;
|
|
42
27
|
onBack?: () => void;
|
|
@@ -46,7 +31,23 @@ declare const Navbar: $$__sveltets_2_IsomorphicComponent<{
|
|
|
46
31
|
subtitleClassName?: string;
|
|
47
32
|
title?: string;
|
|
48
33
|
titleClassName?: string;
|
|
49
|
-
}
|
|
34
|
+
};
|
|
35
|
+
import type { Snippet } from 'svelte';
|
|
36
|
+
import '../../../../../tailwind.css';
|
|
37
|
+
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
38
|
+
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
|
|
39
|
+
$$bindings?: Bindings;
|
|
40
|
+
} & Exports;
|
|
41
|
+
(internal: unknown, props: Props & {
|
|
42
|
+
$$events?: Events;
|
|
43
|
+
$$slots?: Slots;
|
|
44
|
+
}): Exports & {
|
|
45
|
+
$set?: any;
|
|
46
|
+
$on?: any;
|
|
47
|
+
};
|
|
48
|
+
z_$$bindings?: Bindings;
|
|
49
|
+
}
|
|
50
|
+
declare const Navbar: $$__sveltets_2_IsomorphicComponent<NavbarProps, {
|
|
50
51
|
[evt: string]: CustomEvent<any>;
|
|
51
52
|
}, {}, {}, "">;
|
|
52
53
|
type Navbar = InstanceType<typeof Navbar>;
|