@fuzdev/fuz_ui 0.187.0 → 0.187.1
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/ApiModule.svelte +21 -15
- package/dist/ApiModule.svelte.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/ApiModule.svelte
CHANGED
|
@@ -62,21 +62,27 @@
|
|
|
62
62
|
<h1 class="mt_xl4">{module_name}</h1>
|
|
63
63
|
{/snippet}
|
|
64
64
|
|
|
65
|
-
{#if !module
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
<
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
{
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
65
|
+
{#if !module}
|
|
66
|
+
<!-- no module, maybe a dir? -->
|
|
67
|
+
{#if !directory_modules}
|
|
68
|
+
<section>
|
|
69
|
+
<p>Module not found: {module_path}</p>
|
|
70
|
+
</section>
|
|
71
|
+
{:else}
|
|
72
|
+
<section>
|
|
73
|
+
<p>{directory_modules.length} module{directory_modules.length === 1 ? '' : 's'}</p>
|
|
74
|
+
<ul class="unstyled">
|
|
75
|
+
{#each directory_modules as child_module (child_module.path)}
|
|
76
|
+
<li>
|
|
77
|
+
<h3><ModuleLink module_path={child_module.path} /></h3>
|
|
78
|
+
{#if child_module.module_comment}
|
|
79
|
+
<Mdz content={child_module.module_comment} />
|
|
80
|
+
{/if}
|
|
81
|
+
</li>
|
|
82
|
+
{/each}
|
|
83
|
+
</ul>
|
|
84
|
+
</section>
|
|
85
|
+
{/if}
|
|
80
86
|
{:else}
|
|
81
87
|
{#if module.module_comment}
|
|
82
88
|
<section>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ApiModule.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ApiModule.svelte"],"names":[],"mappings":"AAGA,OAAO,EAAkB,KAAK,OAAO,EAAC,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAmB,KAAK,IAAI,EAAC,MAAM,WAAW,CAAC;AAUrD,KAAK,gBAAgB,GAAI;IACxB;;OAEG;IACH,WAAW,EAAE,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC;IACpC;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;;OAGG;IACH,IAAI,CAAC,EAAE,IAAI,CAAC;CACZ,CAAC;
|
|
1
|
+
{"version":3,"file":"ApiModule.svelte.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/ApiModule.svelte"],"names":[],"mappings":"AAGA,OAAO,EAAkB,KAAK,OAAO,EAAC,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAmB,KAAK,IAAI,EAAC,MAAM,WAAW,CAAC;AAUrD,KAAK,gBAAgB,GAAI;IACxB;;OAEG;IACH,WAAW,EAAE,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC;IACpC;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;;OAGG;IACH,IAAI,CAAC,EAAE,IAAI,CAAC;CACZ,CAAC;AAiIH,QAAA,MAAM,SAAS,sDAAwC,CAAC;AACxD,KAAK,SAAS,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,CAAC;AAC9C,eAAe,SAAS,CAAC"}
|