Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
<div x-data="documentsPage" class="vbox size-full">

<div x-h-toolbar data-variant="transparent">
<!-- Section caption, unified with the entity/inbox titles (text-2xl semibold); the breadcrumb
below it is the in-folder path navigator (root = Home). -->
<span x-h-toolbar-title class="shrink-0 text-2xl font-semibold tracking-tight" x-text="T('application-core:shell.nav.documents', 'Documents')"></span>
<button x-h-button data-variant="transparent" data-size="icon-sm" :disabled="!hasBack()" @click="goBack()" aria-label="Back"><i role="img" x-h-lucide data-lucide="arrow-left"></i></button>
<button x-h-button data-variant="transparent" data-size="icon-sm" :disabled="!hasForward()" @click="goForward()" aria-label="Forward"><i role="img" x-h-lucide data-lucide="arrow-right"></i></button>
<button x-h-button data-variant="transparent" data-size="icon-sm" @click="refresh()" aria-label="Refresh"><i role="img" x-h-lucide data-lucide="refresh-cw"></i></button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
dashboard Process Inbox redesigned in #6064/#6068). -->
<div x-data="inboxPage" class="vbox size-full">
<div x-h-toolbar data-variant="transparent">
<span x-h-toolbar-title x-text="T('application-core:shell.nav.inbox', 'Inbox')"></span>
<span x-h-toolbar-title class="text-2xl font-semibold tracking-tight" x-text="T('application-core:shell.nav.inbox', 'Inbox')"></span>
<span x-h-badge data-variant="information" x-text="tasks.length"></span>
<div x-h-toolbar-spacer></div>
<span x-show="lastUpdated" x-h-text.muted x-text="'Updated ' + fmtTime(lastUpdated)"></span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@

<div x-h-toolbar data-variant="transparent">
#if($docNumberProp != "")
<!-- Document title: the uppercased document label (normal weight) + the number in bold
(e.g. SALES INVOICE 00001231). The label is a plain span on purpose - the x-h-text.h3
directive injects font-semibold, which the label must NOT have; only the number is bold. -->
<!-- Document title: the document label (semibold, unified caption style) + the number in bold
(heavier than the caption so it stands out), e.g. "Sales Invoice SI-0000001". -->
<div class="hbox items-baseline gap-2 shrink-0">
<span class="text-2xl font-normal tracking-tight" x-text="T('$projectName:${tprefix}.t.${dataName}', '${documentLabel}').toUpperCase()"></span>
<span class="text-2xl font-semibold tracking-tight" x-text="T('$projectName:${tprefix}.t.${dataName}', '${documentLabel}')"></span>
<span class="text-2xl font-bold tracking-tight" x-show="(isEdit || isPreview) && form.${docNumberProp}" x-text="form.${docNumberProp}"></span>
</div>
#else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div x-data="${name}ListPage" class="vbox size-full">

<div x-h-toolbar data-variant="transparent">
<span x-h-toolbar-title class="shrink-0" x-text="T('$projectName:${tprefix}.t.${dataName}', '${name}')"></span>
<span x-h-toolbar-title class="shrink-0 text-2xl font-semibold tracking-tight" x-text="T('$projectName:${tprefix}.t.${dataName}', '${name}')"></span>
<div x-h-toolbar-spacer></div>
<div x-h-input-group data-size="sm">
<input x-h-input.group type="text" :placeholder="T('$projectName:${tprefix}.messages.inputSearch', 'Search ${name}...', { name: T('$projectName:${tprefix}.t.${dataName}', '${name}') })"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<!-- Page caption in the document title style: the uppercased entity label (e.g. CUSTOMER),
text-2xl normal weight - matches the document header look. This caption is intentionally only
on the create/edit form, NOT on the list/master browse views. -->
<span class="text-2xl font-normal tracking-tight shrink-0" x-text="T('$projectName:${tprefix}.t.${dataName}', '${entityLabel}').toUpperCase()"></span>
<span class="text-2xl font-semibold tracking-tight shrink-0" x-text="T('$projectName:${tprefix}.t.${dataName}', '${entityLabel}')"></span>
<div x-h-toolbar-spacer></div>
#if($statusProp != "")
<!-- EntityStatus badge, right-aligned like the document view's pill; shown once the record's
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div x-data="${name}ManageListPage" class="vbox size-full">

<div x-h-toolbar data-variant="transparent">
<span x-h-toolbar-title class="shrink-0" x-text="T('$projectName:${tprefix}.t.${dataName}_plural', '${menuLabel}')"></span>
<span x-h-toolbar-title class="shrink-0 text-2xl font-semibold tracking-tight" x-text="T('$projectName:${tprefix}.t.${dataName}_plural', '${menuLabel}')"></span>
<div x-h-toolbar-spacer></div>
<div x-h-input-group data-size="sm">
<input x-h-input.group type="text" :placeholder="T('$projectName:${tprefix}.messages.inputSearch', 'Search ${menuLabel}...', { name: T('$projectName:${tprefix}.t.${dataName}', '${entityLabel}') })"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div x-data="${name}MasterPage" class="vbox size-full">

<div x-h-toolbar data-variant="transparent">
<span x-h-toolbar-title class="shrink-0" x-text="T('$projectName:${tprefix}.t.${dataName}_plural', '${menuLabel}')"></span>
<span x-h-toolbar-title class="shrink-0 text-2xl font-semibold tracking-tight" x-text="T('$projectName:${tprefix}.t.${dataName}_plural', '${menuLabel}')"></span>
<div x-h-toolbar-spacer></div>
<div x-h-input-group data-size="sm">
<input x-h-input.group type="text" :placeholder="T('$projectName:${tprefix}.messages.inputSearch', 'Search ${name}...', { name: T('$projectName:${tprefix}.t.${dataName}', '${name}') })" x-model="searchTerm" @input="page = 1; refreshIcons()" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<div class="vbox size-full">
<!-- Hidden in preview mode (the dashboard tile): no title/badge/toolbar, just the data. -->
<div x-show="!preview" x-h-toolbar data-variant="transparent">
<span x-h-toolbar-title class="shrink-0" x-text="displayName"></span>
<span x-h-toolbar-title class="shrink-0 text-2xl font-semibold tracking-tight" x-text="displayName"></span>
<span x-show="state === 'default'" x-h-badge data-variant="information" x-text="count + ' rows'"></span>
<div x-h-toolbar-spacer></div>
#if($chart)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Generated by Eclipse Dirigible. Report chart view for ${name} (native Harmonia chart). -->
<div x-data="${name}ReportPage" class="vbox size-full">
<div x-h-toolbar data-variant="transparent">
<span x-h-toolbar-title>${name}</span>
<span x-h-toolbar-title class="text-2xl font-semibold tracking-tight">${name}</span>
<div x-h-toolbar-spacer></div>
<button x-h-button data-variant="outline" data-size="sm" @click="load()"><i role="img" x-h-lucide data-lucide="refresh-cw"></i><span x-text="T('$projectName:${tprefix}.defaults.refresh', 'Refresh')"></span></button>
<button x-h-button data-variant="outline" data-size="sm" @click="printChart()"><i role="img" x-h-lucide data-lucide="printer"></i><span x-text="T('$projectName:${tprefix}.defaults.print', 'Print')"></span></button>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- Generated by Eclipse Dirigible. Report table view for ${name}. -->
<div x-data="${name}ReportPage" class="vbox size-full">
<div x-h-toolbar data-variant="transparent">
<span x-h-toolbar-title>${name}</span>
<span x-h-toolbar-title class="text-2xl font-semibold tracking-tight">${name}</span>
<div x-h-toolbar-spacer></div>
<button x-h-button data-variant="outline" data-size="sm" @click="load()"><i role="img" x-h-lucide data-lucide="refresh-cw"></i><span x-text="T('$projectName:${tprefix}.defaults.refresh', 'Refresh')"></span></button>
<button x-h-button data-variant="outline" data-size="sm" @click="exportCsv()"><i role="img" x-h-lucide data-lucide="download"></i><span x-text="T('$projectName:${tprefix}.defaults.export', 'Export')"></span></button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#end
</div>
#elseif($el.controlId == "header")
<h1 x-h-text.h3 class="mb-2 col-span-full">$!el.label</h1>
<h1 x-h-text.h3 class="mb-2 col-span-full text-2xl font-semibold tracking-tight">$!el.label</h1>
#elseif($el.controlId == "paragraph")
<p x-h-text class="col-span-full">$!el.label</p>
#elseif($el.controlId == "line")
Expand Down
Loading