Skip to content

Commit

Permalink
feat(pagination): rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Leotheluck authored and dpellier committed Feb 2, 2024
1 parent f9112fe commit 9929597
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions packages/components/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -773,11 +773,11 @@ export namespace Components {
*/
"color"?: ODS_THEME_COLOR_INTENT;
/**
* Icon if contrasted or not
* Icon is contrasted or not
*/
"contrasted"?: boolean;
/**
* Icon if hoverabled or not
* Icon is hoverabled or not
*/
"hoverable"?: boolean;
/**
Expand Down Expand Up @@ -1764,7 +1764,7 @@ export namespace Components {
*/
interface OsdsTabPanel {
/**
* is the panel is active or nor
* is the panel active or not
* @see OdsTabPanelAttributes.active
*/
"active": boolean;
Expand Down Expand Up @@ -3571,11 +3571,11 @@ declare namespace LocalJSX {
*/
"color"?: ODS_THEME_COLOR_INTENT;
/**
* Icon if contrasted or not
* Icon is contrasted or not
*/
"contrasted"?: boolean;
/**
* Icon if hoverabled or not
* Icon is hoverabled or not
*/
"hoverable"?: boolean;
/**
Expand Down Expand Up @@ -4534,7 +4534,7 @@ declare namespace LocalJSX {
*/
interface OsdsTabPanel {
/**
* is the panel is active or nor
* is the panel active or not
* @see OdsTabPanelAttributes.active
*/
"active"?: boolean;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Canvas } from '@storybook/addon-docs';

<Canvas withSource="none">
<osds-pagination total-items={ 60 }></osds-pagination>
<osds-pagination total-items={ 60 } default-items-per-page={ 25 }></osds-pagination>
</Canvas >

```html
<osds-pagination total-items={ 60 }> </osds-pagination>
<osds-pagination total-items={ 60 } default-items-per-page={ 25 }> </osds-pagination>
```

0 comments on commit 9929597

Please sign in to comment.