Skip to content

Commit

Permalink
Merge pull request #2162 from smeup/fix/kup-htm/css
Browse files Browse the repository at this point in the history
update : min-height kup-htm
  • Loading branch information
lucafoscili authored Nov 4, 2024
2 parents 009f30a + 65c2187 commit 43557b4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions packages/ketchup/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3894,7 +3894,7 @@ export namespace Components {
"toolbarData": KupDataNode[];
/**
* List of elements.
* @default KupTabbarStyling.CONTAINED
* @default KupTabbarStyling.FLAT
*/
"variant": KupTabbarStyling;
}
Expand Down Expand Up @@ -9091,7 +9091,7 @@ declare namespace LocalJSX {
"toolbarData"?: KupDataNode[];
/**
* List of elements.
* @default KupTabbarStyling.CONTAINED
* @default KupTabbarStyling.FLAT
*/
"variant"?: KupTabbarStyling;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/ketchup/src/components/kup-htm/kup-htm.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
float: left;
}
iframe {
height: 100%;
min-height: 600px;
width: 100%;
}
}
Expand Down
18 changes: 9 additions & 9 deletions packages/ketchup/src/components/kup-tab-bar/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

## Properties

| Property | Attribute | Description | Type | Default |
| ------------- | -------------- | --------------------------------------------------------------- | ----------------------------------------------------- | ---------------------------- |
| `customStyle` | `custom-style` | Custom style of the component. | `string` | `''` |
| `data` | -- | List of elements. | `KupTabBarNode[]` | `null` |
| `dense` | `dense` | Defaults at false. When set to true, the component is dense. | `boolean` | `false` |
| `ripple` | `ripple` | When enabled displays Material's ripple effect on item headers. | `boolean` | `false` |
| `toolbar` | `toolbar` | When enabled displays toolbar item inside each single tab. | `boolean` | `true` |
| `toolbarData` | -- | Display DataNode Toolbar. | `KupDataNode[]` | `undefined` |
| `variant` | `variant` | List of elements. | `KupTabbarStyling.CONTAINED \| KupTabbarStyling.FLAT` | `KupTabbarStyling.CONTAINED` |
| Property | Attribute | Description | Type | Default |
| ------------- | -------------- | --------------------------------------------------------------- | ----------------------------------------------------- | ----------------------- |
| `customStyle` | `custom-style` | Custom style of the component. | `string` | `''` |
| `data` | -- | List of elements. | `KupTabBarNode[]` | `null` |
| `dense` | `dense` | Defaults at false. When set to true, the component is dense. | `boolean` | `false` |
| `ripple` | `ripple` | When enabled displays Material's ripple effect on item headers. | `boolean` | `false` |
| `toolbar` | `toolbar` | When enabled displays toolbar item inside each single tab. | `boolean` | `false` |
| `toolbarData` | -- | Display DataNode Toolbar. | `KupDataNode[]` | `undefined` |
| `variant` | `variant` | List of elements. | `KupTabbarStyling.CONTAINED \| KupTabbarStyling.FLAT` | `KupTabbarStyling.FLAT` |


## Events
Expand Down

0 comments on commit 43557b4

Please sign in to comment.