Skip to content

Commit 658d145

Browse files
committed
minor UI bugfixes
Signed-off-by: Maximilian Inckmann <[email protected]>
1 parent 1d678e1 commit 658d145

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

packages/stencil-library/src/components/pid-actions/pid-actions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class PidActions {
3838
return (
3939
<div
4040
id={containerId}
41-
class={`actions-container sticky right-0 bottom-0 left-0 z-20 mt-auto w-full border-t ${isDarkMode ? 'border-gray-700 bg-gray-800' : 'border-gray-200 bg-white'} p-1`}
41+
class={`actions-container sticky right-0 bottom-0 left-0 z-20 w-full ${isDarkMode ? 'bg-gray-800' : 'bg-white'}`}
4242
role="toolbar"
4343
aria-label="Available actions"
4444
>

packages/stencil-library/src/components/pid-component/pid-component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ export class PidComponent {
711711

712712
{/* Footer Actions - in a separate line below pagination */}
713713
{this.actions.length > 0 && (
714-
<pid-actions slot="footer-actions" actions={this.actions} darkMode={this.darkMode} class="mt-0 flex-shrink-0" aria-label={`Available actions for ${this.value}`} />
714+
<pid-actions slot="footer-actions" actions={this.actions} darkMode={this.darkMode} class="my-0 flex-shrink-0" aria-label={`Available actions for ${this.value}`} />
715715
)}
716716
</pid-collapsible>
717717
)

packages/stencil-library/src/components/pid-data-table/pid-data-table.stories.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -226,12 +226,6 @@ export const WithSubcomponents: Story = createDataTableStory({
226226
loadSubcomponents: true,
227227
});
228228

229-
export const AdaptivePagination: Story = createDataTableStory({
230-
items: createMockItems(50),
231-
itemsPerPage: 10,
232-
adaptivePagination: true,
233-
});
234-
235229
export const DarkMode: Story = createDataTableStory({
236230
items: createMockItems(25),
237231
itemsPerPage: 10,

0 commit comments

Comments
 (0)