@rainlanguage/ui-components 0.0.1-alpha.36 → 0.0.1-alpha.38
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
<script>
|
|
1
|
+
<script>import Markdown from "svelte-markdown";
|
|
2
|
+
export let title;
|
|
2
3
|
export let description = "";
|
|
3
4
|
</script>
|
|
4
5
|
|
|
@@ -7,8 +8,10 @@ export let description = "";
|
|
|
7
8
|
{title}
|
|
8
9
|
</h1>
|
|
9
10
|
{#if description}
|
|
10
|
-
<
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
<div
|
|
12
|
+
class="prose prose-sm lg:prose-base prose-neutral dark:prose-invert text-gray-600 dark:text-gray-400"
|
|
13
|
+
>
|
|
14
|
+
<Markdown source={description} />
|
|
15
|
+
</div>
|
|
13
16
|
{/if}
|
|
14
17
|
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rainlanguage/ui-components",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.38",
|
|
4
4
|
"description": "A component library for building Svelte applications to be used with Raindex.",
|
|
5
5
|
"license": "LicenseRef-DCL-1.0",
|
|
6
6
|
"author": "Rain Open Source Software Ltd",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@fontsource/dm-sans": "5.1.0",
|
|
54
54
|
"@imask/svelte": "7.6.1",
|
|
55
55
|
"@observablehq/plot": "0.6.16",
|
|
56
|
-
"@rainlanguage/orderbook": "0.0.1-alpha.
|
|
56
|
+
"@rainlanguage/orderbook": "0.0.1-alpha.38",
|
|
57
57
|
"@reown/appkit": "1.6.4",
|
|
58
58
|
"@reown/appkit-adapter-wagmi": "1.6.4",
|
|
59
59
|
"@sentry/sveltekit": "7.120.0",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"tailwind-merge": "2.5.4",
|
|
81
81
|
"thememirror": "2.0.1",
|
|
82
82
|
"uuid": "9.0.1",
|
|
83
|
-
"viem": "2.
|
|
83
|
+
"viem": "2.24.3",
|
|
84
84
|
"wagmi": "2.14.7"
|
|
85
85
|
}
|
|
86
86
|
}
|