ts-glitter 13.6.8 → 13.7.0
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/lowcode/Entry.js +1 -1
- package/lowcode/Entry.ts +1 -1
- package/lowcode/jspage/function-page/tool-setting.js +62 -56
- package/lowcode/jspage/function-page/tool-setting.ts +63 -57
- package/lowcode/official_view_component/official/component.js +4 -0
- package/lowcode/official_view_component/official/component.ts +2 -0
- package/lowcode/public-components/headers/sy-02.js +326 -0
- package/lowcode/public-components/headers/sy-02.ts +324 -0
- package/lowcode/public-components/headers/sy-03.js +308 -0
- package/lowcode/public-components/headers/sy-03.ts +307 -0
- package/lowcode/public-components/headers/sy-04.js +3 -3
- package/lowcode/public-components/headers/sy-04.ts +3 -3
- package/package.json +1 -1
|
@@ -129,7 +129,7 @@ export class Sy04 {
|
|
|
129
129
|
${(dd.items ?? []).length ? `<i class="fa-solid ${dd.open ? `fa-angle-up` : `fa-angle-down`}"
|
|
130
130
|
style="color: ${widget.formData.theme_color['title'] ?? '#000'} !important;"></i>` : ``}
|
|
131
131
|
</div>
|
|
132
|
-
${dd.open ? `<ul class="ps-3
|
|
132
|
+
${dd.open ? `<ul class="ps-3 pb-2">${loopItems(dd.items ?? [],false)}</ul>`:``}
|
|
133
133
|
</li>
|
|
134
134
|
`
|
|
135
135
|
}).join('')
|
|
@@ -218,7 +218,7 @@ background: ${widget.formData.theme_color['background'] ?? '#000'};overflow-x: h
|
|
|
218
218
|
<!--固定按鈕顯示區塊-->
|
|
219
219
|
<ul class="navbar-nav flex-row ms-auto">
|
|
220
220
|
<li class="nav-item d-none d-sm-flex align-items-center justify-content-center"
|
|
221
|
-
style="
|
|
221
|
+
style="">
|
|
222
222
|
${gvc.bindView(() => {
|
|
223
223
|
const vm = {
|
|
224
224
|
id: gvc.glitter.getUUID(),
|
|
@@ -294,7 +294,7 @@ background: ${widget.formData.theme_color['background'] ?? '#000'};overflow-x: h
|
|
|
294
294
|
</li>
|
|
295
295
|
<li class="nav-item d-flex align-items-center justify-content-center"
|
|
296
296
|
style="width:40px !important;">
|
|
297
|
-
<a class="nav-link
|
|
297
|
+
<a class="nav-link ">
|
|
298
298
|
<i class="fw-500 fa-regular fa-user "
|
|
299
299
|
style="color: ${widget.formData.theme_color['title'] ?? '#000'};cursor: pointer;font-size:20px;"
|
|
300
300
|
onclick="${gvc.event(() => {
|