intelliwaketssveltekitv25 0.2.20 → 0.2.22
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.
|
@@ -110,7 +110,12 @@
|
|
|
110
110
|
class:border-slate-300={!rounded}
|
|
111
111
|
class:dark:border-slate-500={!rounded}>
|
|
112
112
|
<div>
|
|
113
|
-
{
|
|
113
|
+
{#if header}
|
|
114
|
+
{@render header()}
|
|
115
|
+
{#if rounded}
|
|
116
|
+
<hr class="border-2 mt-1" />
|
|
117
|
+
{/if}
|
|
118
|
+
{/if}
|
|
114
119
|
</div>
|
|
115
120
|
|
|
116
121
|
{@render list?.()}
|
|
@@ -142,23 +147,24 @@
|
|
|
142
147
|
class:lg:grid={breakAt === 'lg'}
|
|
143
148
|
class:xl:grid={breakAt === 'xl'}
|
|
144
149
|
class:grid={!!pathAnalyzer?.activePageSlug}
|
|
145
|
-
class:masterDetailDetailWithHeader={showDetailShowHeader}
|
|
150
|
+
class:masterDetailDetailWithHeader={showDetailShowHeader}
|
|
151
|
+
class:bg-white={showRoundedDetailFormatted}
|
|
152
|
+
class:dark:bg-slate-700={showRoundedDetailFormatted}
|
|
153
|
+
class:rounded-lg={showRoundedDetailFormatted}
|
|
154
|
+
class:shadow={showRoundedDetailFormatted}>
|
|
146
155
|
<div>
|
|
147
156
|
{#if !!showDetailShowHeader}
|
|
148
|
-
<
|
|
157
|
+
<h2>
|
|
149
158
|
{#if !!openItem?.faProps || !!detailShowHeaderFAProps}
|
|
150
159
|
<Icon {...(openItem?.faProps ?? detailShowHeaderFAProps)} fw />
|
|
151
160
|
{/if}
|
|
152
161
|
{typeof showDetailShowHeader === 'string' ? showDetailShowHeader : openItem?.title ?? ''}
|
|
153
|
-
</
|
|
162
|
+
</h2>
|
|
163
|
+
<hr class="border-2 mt-1" />
|
|
154
164
|
{/if}
|
|
155
165
|
</div>
|
|
156
166
|
<div
|
|
157
|
-
class='relative grid grid-rows-1 overflow-hidden'
|
|
158
|
-
class:bg-white={showRoundedDetailFormatted}
|
|
159
|
-
class:dark:bg-slate-700={showRoundedDetailFormatted}
|
|
160
|
-
class:rounded-lg={showRoundedDetailFormatted}
|
|
161
|
-
class:shadow={showRoundedDetailFormatted}>
|
|
167
|
+
class='relative grid grid-rows-1 overflow-hidden'>
|
|
162
168
|
{#if detail}
|
|
163
169
|
{@render detail()}
|
|
164
170
|
{/if}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "intelliwaketssveltekitv25",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.22",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"!dist/**/*.spec.*"
|
|
15
15
|
],
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@solidbasisventures/intelliwaketsfoundation": "^5.12.
|
|
17
|
+
"@solidbasisventures/intelliwaketsfoundation": "^5.12.71",
|
|
18
18
|
"@sveltejs/kit": "^2.21.4",
|
|
19
19
|
"svelte": "^5.33.19"
|
|
20
20
|
},
|