@rxdrag/website-lib 0.0.101 → 0.0.103
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/package.json +9 -6
- package/src/components/AnimationNumber.astro +201 -34
- package/src/components/Collapse.astro +119 -14
- package/src/components/CollapseIndicator.astro +20 -0
- package/src/components/Dialog.astro +374 -0
- package/src/components/DialogTrigger.astro +26 -0
- package/src/components/Icon.astro +1 -1
- package/src/components/Link.astro +35 -25
- package/src/components/Popover.astro +180 -13
- package/src/components/SiteShell.astro +152 -0
- package/src/components/CollapsePanel.astro +0 -20
- package/src/components/CollapseTrigger.astro +0 -15
- package/src/components/Flip.astro +0 -43
- package/src/components/Modal.astro +0 -14
- package/src/components/ModalCloser.astro +0 -19
- package/src/components/ModalPanel.astro +0 -19
- package/src/components/ModalTrigger.astro +0 -18
- package/src/components/Motion.astro +0 -48
- package/src/components/PopverPanel.astro +0 -20
- package/src/components/SlotContent.astro +0 -4
- package/src/components/Tabs.astro +0 -23
- package/src/components/TabsBody.astro +0 -17
- package/src/components/TabsHeader.astro +0 -17
- package/src/components/TabsPanel.astro +0 -17
- package/src/components/TabsTab.astro +0 -18
- package/src/components/index.ts +0 -34
- package/src/env.d.ts +0 -1
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
---
|
|
2
|
+
import "aos/dist/aos.css";
|
|
3
|
+
import type { PageMeta } from "@rxdrag/rxcms-models";
|
|
4
|
+
import Meta from "./Meta.astro";
|
|
5
|
+
|
|
6
|
+
interface Props {
|
|
7
|
+
lang?: string;
|
|
8
|
+
meta?: PageMeta;
|
|
9
|
+
title?: string;
|
|
10
|
+
aos?: {
|
|
11
|
+
easing?: string;
|
|
12
|
+
duration?: string;
|
|
13
|
+
delay?: string;
|
|
14
|
+
offset?: string;
|
|
15
|
+
once?: boolean;
|
|
16
|
+
disable?: boolean;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
const {
|
|
21
|
+
lang = "en",
|
|
22
|
+
meta,
|
|
23
|
+
title,
|
|
24
|
+
aos = {
|
|
25
|
+
easing: "ease-out-cubic",
|
|
26
|
+
duration: "800",
|
|
27
|
+
delay: "0",
|
|
28
|
+
offset: "50",
|
|
29
|
+
once: true,
|
|
30
|
+
},
|
|
31
|
+
} = Astro.props;
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
<!doctype html>
|
|
35
|
+
<html lang={lang} class="aos-preload">
|
|
36
|
+
<head>
|
|
37
|
+
<meta charset="UTF-8" />
|
|
38
|
+
<meta
|
|
39
|
+
name="viewport"
|
|
40
|
+
content="width=device-width, initial-scale=1.0, maximum-scale=5.0, minimum-scale=0.5, user-scalable=yes"
|
|
41
|
+
/>
|
|
42
|
+
|
|
43
|
+
<meta name="generator" content={Astro.generator} />
|
|
44
|
+
<link rel="sitemap" href="/sitemap-index.xml" />
|
|
45
|
+
<slot name="head" />
|
|
46
|
+
<Meta title={title} content={meta} />
|
|
47
|
+
<style>
|
|
48
|
+
html.aos-preload [data-aos] {
|
|
49
|
+
opacity: 1 !important;
|
|
50
|
+
transform: none !important;
|
|
51
|
+
transition: none !important;
|
|
52
|
+
}
|
|
53
|
+
</style>
|
|
54
|
+
<script>
|
|
55
|
+
const w = window as any;
|
|
56
|
+
const state =
|
|
57
|
+
w.__aos_state__ ||
|
|
58
|
+
(w.__aos_state__ = { inited: false, loading: null, aos: null });
|
|
59
|
+
|
|
60
|
+
const el = document.documentElement;
|
|
61
|
+
const raf = () =>
|
|
62
|
+
new Promise((resolve) =>
|
|
63
|
+
requestAnimationFrame(() => resolve(undefined))
|
|
64
|
+
);
|
|
65
|
+
|
|
66
|
+
const ensureAos = async () => {
|
|
67
|
+
if (state.aos) return state.aos;
|
|
68
|
+
if (!state.loading) {
|
|
69
|
+
state.loading = import("aos").then((m) => {
|
|
70
|
+
state.aos = m.default;
|
|
71
|
+
return state.aos;
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
return state.loading;
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
const bootOrRefresh = async () => {
|
|
78
|
+
if (
|
|
79
|
+
window.matchMedia &&
|
|
80
|
+
window.matchMedia("(prefers-reduced-motion: reduce)").matches
|
|
81
|
+
) {
|
|
82
|
+
el.classList.add("aos-ready");
|
|
83
|
+
el.classList.remove("aos-preload");
|
|
84
|
+
return;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if (!document.querySelector("[data-aos]")) {
|
|
88
|
+
el.classList.add("aos-ready");
|
|
89
|
+
el.classList.remove("aos-preload");
|
|
90
|
+
return;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
el.classList.add("aos-preload");
|
|
94
|
+
el.classList.remove("aos-ready");
|
|
95
|
+
|
|
96
|
+
const AOS = await ensureAos();
|
|
97
|
+
if (!state.inited) {
|
|
98
|
+
state.inited = true;
|
|
99
|
+
AOS.init({
|
|
100
|
+
duration: 800,
|
|
101
|
+
easing: "ease-out-cubic",
|
|
102
|
+
once: true,
|
|
103
|
+
offset: 50,
|
|
104
|
+
});
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
await raf();
|
|
108
|
+
await raf();
|
|
109
|
+
AOS.refresh();
|
|
110
|
+
|
|
111
|
+
el.classList.add("aos-ready");
|
|
112
|
+
el.classList.remove("aos-preload");
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
const boot = () => {
|
|
116
|
+
bootOrRefresh();
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
if (document.readyState === "loading") {
|
|
120
|
+
document.addEventListener("DOMContentLoaded", boot, { once: true });
|
|
121
|
+
} else {
|
|
122
|
+
boot();
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
document.addEventListener("astro:page-load", boot);
|
|
126
|
+
document.addEventListener("astro:after-swap", boot);
|
|
127
|
+
</script>
|
|
128
|
+
</head>
|
|
129
|
+
<body
|
|
130
|
+
class="scroll-smooth"
|
|
131
|
+
data-aos-easing={aos.easing}
|
|
132
|
+
data-aos-duration={aos.duration}
|
|
133
|
+
data-aos-delay={aos.delay}
|
|
134
|
+
data-aos-offset={aos.offset}
|
|
135
|
+
data-aos-once={aos.once}
|
|
136
|
+
>
|
|
137
|
+
<slot />
|
|
138
|
+
</body>
|
|
139
|
+
</html>
|
|
140
|
+
|
|
141
|
+
<style>
|
|
142
|
+
html,
|
|
143
|
+
body {
|
|
144
|
+
margin: 0;
|
|
145
|
+
width: 100%;
|
|
146
|
+
height: 100%;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
html {
|
|
150
|
+
scroll-behavior: smooth;
|
|
151
|
+
}
|
|
152
|
+
</style>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import {
|
|
3
|
-
type IMotionProps,
|
|
4
|
-
defaultPopoverPanelAnimation,
|
|
5
|
-
getCollapsePanelDataAttrs,
|
|
6
|
-
} from "@rxdrag/website-lib-core";
|
|
7
|
-
import Motion from "./Motion.astro";
|
|
8
|
-
|
|
9
|
-
interface Props extends IMotionProps {
|
|
10
|
-
openableKey?: string;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
const dataAttrs = getCollapsePanelDataAttrs();
|
|
14
|
-
|
|
15
|
-
const { whileOpenable = defaultPopoverPanelAnimation, ...props } = Astro.props;
|
|
16
|
-
---
|
|
17
|
-
|
|
18
|
-
<Motion whileOpenable={whileOpenable} {...dataAttrs} {...props}>
|
|
19
|
-
<slot />
|
|
20
|
-
</Motion>
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import {
|
|
3
|
-
getCollapseTriggerDataAttrs,
|
|
4
|
-
type CollapseTriggerProps,
|
|
5
|
-
} from "@rxdrag/website-lib-core";
|
|
6
|
-
import Motion from "./Motion.astro";
|
|
7
|
-
|
|
8
|
-
interface Props extends CollapseTriggerProps {}
|
|
9
|
-
|
|
10
|
-
const dataAttrs = getCollapseTriggerDataAttrs();
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
<Motion {...dataAttrs} {...Astro.props}>
|
|
14
|
-
<slot />
|
|
15
|
-
</Motion>
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import { type HTMLElementsWithChildren } from "@rxdrag/website-lib-core";
|
|
3
|
-
|
|
4
|
-
interface Props {
|
|
5
|
-
flipKey?: string;
|
|
6
|
-
as?: HTMLElementsWithChildren;
|
|
7
|
-
class?: string;
|
|
8
|
-
style?: string | Record<string, string | number>;
|
|
9
|
-
[key: string]: any;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
const { flipKey, as = "div", class: className, style, ...rest } = Astro.props;
|
|
13
|
-
|
|
14
|
-
const Element = as;
|
|
15
|
-
const mergedStyle = {
|
|
16
|
-
...style,
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
// 将 animate 属性序列化为 JSON 字符串
|
|
20
|
-
const flipProps = {
|
|
21
|
-
"data-flip": flipKey || true,
|
|
22
|
-
};
|
|
23
|
-
---
|
|
24
|
-
|
|
25
|
-
<Element class={className} style={mergedStyle} {...flipProps} {...rest}>
|
|
26
|
-
<slot />
|
|
27
|
-
</Element>
|
|
28
|
-
|
|
29
|
-
<style>
|
|
30
|
-
/* 确保动画过程中元素的行为正常 */
|
|
31
|
-
[data-flip] {
|
|
32
|
-
will-change: transform;
|
|
33
|
-
transform-origin: 0 0;
|
|
34
|
-
}
|
|
35
|
-
</style>
|
|
36
|
-
|
|
37
|
-
<script>
|
|
38
|
-
import { flip, pageLoader } from "@rxdrag/website-lib-core";
|
|
39
|
-
// 在页面加载和每次页面转场后都初始化Flip
|
|
40
|
-
pageLoader.onLoaded(() => {
|
|
41
|
-
flip.mount();
|
|
42
|
-
});
|
|
43
|
-
</script>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import { getModalDataAttrs, type IMotionProps } from "@rxdrag/website-lib-core";
|
|
3
|
-
import Motion from "./Motion.astro";
|
|
4
|
-
|
|
5
|
-
interface Props extends IMotionProps {
|
|
6
|
-
openableKey: string;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
const dataAttrs = getModalDataAttrs(Astro.props.openableKey);
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
<Motion {...dataAttrs} {...Astro.props}>
|
|
13
|
-
<slot />
|
|
14
|
-
</Motion>
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import {
|
|
3
|
-
type IMotionProps,
|
|
4
|
-
getModalCloserDataAttrs,
|
|
5
|
-
} from "@rxdrag/website-lib-core";
|
|
6
|
-
import { Motion } from "../..";
|
|
7
|
-
|
|
8
|
-
interface Props extends IMotionProps {
|
|
9
|
-
openableKey?: string;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
const dataAttrs = getModalCloserDataAttrs(Astro.props.openableKey);
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
<Motion {...dataAttrs} {...Astro.props}>
|
|
16
|
-
<slot />
|
|
17
|
-
</Motion>
|
|
18
|
-
|
|
19
|
-
<script></script>
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import {
|
|
3
|
-
getModalPanelDataAttrs,
|
|
4
|
-
type IMotionProps,
|
|
5
|
-
} from "@rxdrag/website-lib-core";
|
|
6
|
-
import Motion from "./Motion.astro";
|
|
7
|
-
|
|
8
|
-
interface Props extends IMotionProps {
|
|
9
|
-
openableKey?: string;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
const dataAttrs = getModalPanelDataAttrs(Astro.props.openableKey);
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
<Motion {...dataAttrs} {...Astro.props}>
|
|
16
|
-
<slot />
|
|
17
|
-
</Motion>
|
|
18
|
-
|
|
19
|
-
<script></script>
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import {
|
|
3
|
-
getModalTriggerDataAttrs,
|
|
4
|
-
type ModalTriggerProps,
|
|
5
|
-
} from "@rxdrag/website-lib-core";
|
|
6
|
-
import Motion from "./Motion.astro";
|
|
7
|
-
|
|
8
|
-
interface Props extends ModalTriggerProps {}
|
|
9
|
-
|
|
10
|
-
const { callToAction, ...rest } = Astro.props;
|
|
11
|
-
const dataAttrs = getModalTriggerDataAttrs(Astro.props.openableKey, callToAction);
|
|
12
|
-
---
|
|
13
|
-
|
|
14
|
-
<Motion {...dataAttrs} {...rest}>
|
|
15
|
-
<slot />
|
|
16
|
-
</Motion>
|
|
17
|
-
|
|
18
|
-
<script></script>
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import {
|
|
3
|
-
getMotionProps,
|
|
4
|
-
type HTMLElementsWithChildren,
|
|
5
|
-
type IMotionProps,
|
|
6
|
-
} from "@rxdrag/website-lib-core";
|
|
7
|
-
|
|
8
|
-
interface Props extends IMotionProps {
|
|
9
|
-
as?: HTMLElementsWithChildren;
|
|
10
|
-
[key: string]: any;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
const { as = "div", ...rest } = Astro.props;
|
|
14
|
-
|
|
15
|
-
const Element = as;
|
|
16
|
-
const { class: className, ...motionProps } = getMotionProps(rest);
|
|
17
|
-
---
|
|
18
|
-
|
|
19
|
-
<Element class={className} {...motionProps}>
|
|
20
|
-
<slot />
|
|
21
|
-
</Element>
|
|
22
|
-
|
|
23
|
-
<script>
|
|
24
|
-
import {
|
|
25
|
-
popover,
|
|
26
|
-
modal,
|
|
27
|
-
pageLoader,
|
|
28
|
-
animate,
|
|
29
|
-
aos,
|
|
30
|
-
tabs,
|
|
31
|
-
collapse,
|
|
32
|
-
} from "@rxdrag/website-lib-core";
|
|
33
|
-
|
|
34
|
-
pageLoader.onLoaded(() => {
|
|
35
|
-
//初始化弹出层
|
|
36
|
-
popover.mount();
|
|
37
|
-
//初始化模态
|
|
38
|
-
modal.mount();
|
|
39
|
-
//初始化动画
|
|
40
|
-
animate.mount();
|
|
41
|
-
//初始化AOS
|
|
42
|
-
aos.mount();
|
|
43
|
-
//初始化标签页
|
|
44
|
-
tabs.mount();
|
|
45
|
-
//初始化折叠
|
|
46
|
-
collapse.mount();
|
|
47
|
-
});
|
|
48
|
-
</script>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import {
|
|
3
|
-
type IMotionProps,
|
|
4
|
-
defaultPopoverPanelAnimation,
|
|
5
|
-
getPopoverPanelDataAttrs,
|
|
6
|
-
} from "@rxdrag/website-lib-core";
|
|
7
|
-
import Motion from "./Motion.astro";
|
|
8
|
-
|
|
9
|
-
interface Props extends IMotionProps {
|
|
10
|
-
openableKey?: string;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
const dataAttrs = getPopoverPanelDataAttrs(Astro.props.openableKey);
|
|
14
|
-
|
|
15
|
-
const { whileOpenable = defaultPopoverPanelAnimation, ...props } = Astro.props;
|
|
16
|
-
---
|
|
17
|
-
|
|
18
|
-
<Motion whileOpenable={whileOpenable} {...dataAttrs} {...props}>
|
|
19
|
-
<slot />
|
|
20
|
-
</Motion>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import Motion from "./Motion.astro";
|
|
3
|
-
import { type IMotionProps } from "@rxdrag/website-lib-core";
|
|
4
|
-
import { DATA_TABS, DATA_TABS_SELECTION } from "@rxdrag/website-lib-core";
|
|
5
|
-
|
|
6
|
-
interface Props extends IMotionProps {
|
|
7
|
-
name?: string;
|
|
8
|
-
class?: string;
|
|
9
|
-
selection?: number;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
const id =
|
|
13
|
-
Astro.props.name || `tabs-${Math.random().toString(36).substring(2, 9)}`;
|
|
14
|
-
const { selection, ...rest } = Astro.props;
|
|
15
|
-
const dataProps = {
|
|
16
|
-
[DATA_TABS]: id,
|
|
17
|
-
[DATA_TABS_SELECTION]: selection || 1,
|
|
18
|
-
};
|
|
19
|
-
---
|
|
20
|
-
|
|
21
|
-
<Motion {...rest} {...dataProps}>
|
|
22
|
-
<slot />
|
|
23
|
-
</Motion>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import Motion from "./Motion.astro";
|
|
3
|
-
import { type IMotionProps } from "@rxdrag/website-lib-core";
|
|
4
|
-
import { DATA_TABS_BODY } from "@rxdrag/website-lib-core";
|
|
5
|
-
|
|
6
|
-
interface Props extends IMotionProps {
|
|
7
|
-
class?: string;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
const dataProps = {
|
|
11
|
-
[DATA_TABS_BODY]: true,
|
|
12
|
-
};
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
<Motion {...Astro.props} {...dataProps}>
|
|
16
|
-
<slot />
|
|
17
|
-
</Motion>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import Motion from "./Motion.astro";
|
|
3
|
-
import { type IMotionProps } from "@rxdrag/website-lib-core";
|
|
4
|
-
import { DATA_TABS_HEADER } from "@rxdrag/website-lib-core";
|
|
5
|
-
|
|
6
|
-
interface Props extends IMotionProps {
|
|
7
|
-
class?: string;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
const dataProps = {
|
|
11
|
-
[DATA_TABS_HEADER]: true,
|
|
12
|
-
};
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
<Motion as="ul" {...Astro.props} {...dataProps}>
|
|
16
|
-
<slot />
|
|
17
|
-
</Motion>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import { DATA_TABS_PANEL } from "@rxdrag/website-lib-core";
|
|
3
|
-
import Motion from "./Motion.astro";
|
|
4
|
-
import { type IMotionProps } from "@rxdrag/website-lib-core";
|
|
5
|
-
|
|
6
|
-
interface Props extends IMotionProps {
|
|
7
|
-
class?: string;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
const dataProps = {
|
|
11
|
-
[DATA_TABS_PANEL]: true,
|
|
12
|
-
};
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
<Motion {...Astro.props} {...dataProps}>
|
|
16
|
-
<slot />
|
|
17
|
-
</Motion>
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
import { DATA_TABS_TAB } from "@rxdrag/website-lib-core";
|
|
3
|
-
import Motion from "./Motion.astro";
|
|
4
|
-
import { type IMotionProps } from "@rxdrag/website-lib-core";
|
|
5
|
-
interface Props extends IMotionProps {
|
|
6
|
-
class?: string;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
const dataProps = {
|
|
10
|
-
[DATA_TABS_TAB]: true,
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
const { class: className, ...props } = Astro.props;
|
|
14
|
-
---
|
|
15
|
-
|
|
16
|
-
<Motion as="li" {...props} {...dataProps} class={className}>
|
|
17
|
-
<slot />
|
|
18
|
-
</Motion>
|
package/src/components/index.ts
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
export { default as AnimationNumber } from "./AnimationNumber.astro";
|
|
2
|
-
export { default as Background } from "./Background.astro";
|
|
3
|
-
export { default as BackgroundGroup } from "./BackgroundGroup.astro";
|
|
4
|
-
export { default as Box } from "./Box.astro";
|
|
5
|
-
export { default as Collapse } from "./Collapse.astro";
|
|
6
|
-
export { default as CollapseTrigger } from "./CollapseTrigger.astro";
|
|
7
|
-
export { default as CollapsePanel } from "./CollapsePanel.astro";
|
|
8
|
-
export { default as Container } from "./Container.astro";
|
|
9
|
-
export { default as Flip } from "./Flip.astro";
|
|
10
|
-
export { default as FooterShell } from "./FooterShell.astro";
|
|
11
|
-
export { default as Grid } from "./Grid.astro";
|
|
12
|
-
export { default as GridCell } from "./GridCell.astro";
|
|
13
|
-
export { default as HeaderShell } from "./HeaderShell.astro";
|
|
14
|
-
export { default as Icon } from "./Icon.astro";
|
|
15
|
-
export { default as Image } from "./Image.astro";
|
|
16
|
-
export { default as Link } from "./Link.astro";
|
|
17
|
-
export { default as Meta } from "./Meta.astro";
|
|
18
|
-
export { default as Modal } from "./Modal.astro";
|
|
19
|
-
export { default as ModalCloser } from "./ModalCloser.astro";
|
|
20
|
-
export { default as ModalPanel } from "./ModalPanel.astro";
|
|
21
|
-
export { default as ModalTrigger } from "./ModalTrigger.astro";
|
|
22
|
-
export { default as Motion } from "./Motion.astro";
|
|
23
|
-
export { default as Popover } from "./Popover.astro";
|
|
24
|
-
export { default as PopoverPanel } from "./PopverPanel.astro";
|
|
25
|
-
export { default as RichTextView } from "./RichTextView.astro";
|
|
26
|
-
export { default as Section } from "./Section.astro";
|
|
27
|
-
export { default as Tabs } from "./Tabs.astro";
|
|
28
|
-
export { default as TabsBody } from "./TabsBody.astro";
|
|
29
|
-
export { default as TabsHeader } from "./TabsHeader.astro";
|
|
30
|
-
export { default as TabsPanel } from "./TabsPanel.astro";
|
|
31
|
-
export { default as TabsTab } from "./TabsTab.astro";
|
|
32
|
-
export { default as SlotContent } from "./SlotContent.astro";
|
|
33
|
-
export { default as Video } from "./Video.astro";
|
|
34
|
-
|
package/src/env.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
// <reference path="../.astro/types.d.ts" />
|