Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into dropdown/combobox
Browse files Browse the repository at this point in the history
  • Loading branch information
mlmoravek committed Jan 31, 2025
2 parents 3c53fb8 + 4360304 commit 00e71df
Show file tree
Hide file tree
Showing 94 changed files with 4,356 additions and 1,627 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [0.9.3](https://github.com/oruga-ui/oruga/compare/v0.9.2...v0.9.3) (2024-12-19)


### Bug Fixes

* **autocomplete:** solve input does not get cleared ([#1151](https://github.com/oruga-ui/oruga/issues/1151)) ([f0eccaf](https://github.com/oruga-ui/oruga/commit/f0eccafda6e79f71b21f25ae9b13fc824a494ccd))
* **input:** solve prop `number` declaration issue ([#1150](https://github.com/oruga-ui/oruga/issues/1150)) ([123dc6f](https://github.com/oruga-ui/oruga/commit/123dc6f55f09798a531ec732ea06639a71caa71d))
* **table:** solve `mobileClass` trigger issue ([#1153](https://github.com/oruga-ui/oruga/issues/1153)) ([226f19b](https://github.com/oruga-ui/oruga/commit/226f19b43f5138fc6b56dae2808d5764b5f86b5c))



## [0.9.2](https://github.com/oruga-ui/oruga/compare/v0.9.1...v0.9.2) (2024-12-02)


Expand Down
3,094 changes: 2,513 additions & 581 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "root",
"version": "0.9.2",
"version": "0.9.3",
"homepage": "https://oruga-ui.com",
"description": "UI components for Vue.js and CSS framework agnostic",
"author": "Walter Tommasi <[email protected]>",
Expand Down
6 changes: 5 additions & 1 deletion packages/docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ const getStartedItems = [
text: "Themes",
link: "/documentation/themes",
},
{
text: "Composable",
link: "/documentation/composables",
},
];

export default defineConfig({
Expand Down Expand Up @@ -62,7 +66,7 @@ export default defineConfig({
appearance: false,
themeConfig: {
logo: "/logo.png",
outline: [2, 3],
outline: [2, 4],
search: {
provider: "local",
},
Expand Down
12 changes: 8 additions & 4 deletions packages/docs/.vitepress/theme/styles/vitepress.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ header .VPNavBar button {


.main {
h1, h2, h3 {
h1, h2, h3, h4 {
position: relative;
margin: 0;
line-height: 1.5em;
Expand All @@ -64,8 +64,12 @@ header .VPNavBar button {
h3 {
margin: 3rem 0 0;
letter-spacing: -0.01em;
line-height: 1.5em;
font-size: 1.25em;
font-size: 1.3em;
}
h4 {
margin: 3rem 0 0;
letter-spacing: -0.01em;
font-size: 1.1em;
}

.header-anchor {
Expand All @@ -74,7 +78,7 @@ header .VPNavBar button {
padding-right: 0.23em;
font-weight: 500;
opacity: 0;
transition: color .25s,opacity .25s;
transition: color .25s, opacity .25s;
}

h1:hover .header-anchor, h1 .header-anchor:focus,
Expand Down
4 changes: 2 additions & 2 deletions packages/docs/components/Select.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div class="vp-doc">

> Select an item in a dropdown list. Use with Field to access all functionalities
> Select an item in a list. Use with Field to access all functionalities.
</div>

Expand All @@ -26,7 +26,7 @@

## Select component

> Select an item in a dropdown list. Use with Field to access all functionalities
> Select an item in a list. Use with Field to access all functionalities.
```html
<o-select></o-select>
Expand Down
10 changes: 5 additions & 5 deletions packages/docs/components/Slider.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ sidebarDepth: 2

### Props

| Prop name | Description | Type | Values | Default |
| --------- | ------------------------------------------ | ------- | ------ | ------------------------------------------------------ |
| label | Tick label | string | - | |
| override | Override existing theme classes completely | boolean | - | |
| value | Value of single tick | number | - | <code style='white-space: nowrap; padding: 0;'></code> |
| Prop name | Description | Type | Values | Default |
| --------- | ------------------------------------------ | ---------------- | ------ | ------------------------------------------------------ |
| label | Tick label | number \| string | - | |
| override | Override existing theme classes completely | boolean | - | |
| value | Value of single tick | number | - | <code style='white-space: nowrap; padding: 0;'></code> |

### Slots

Expand Down
1 change: 0 additions & 1 deletion packages/docs/components/Steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ sidebarDepth: 2
| animation | Transition animation name | [string, string, string, string] \| [string, string] | `[next`, `prev]`, `[right`, `left`, `down`, `up]` | <div><small>From <b>config</b>:</small></div><code style='white-space: nowrap; padding: 0;'>steps: {<br>&nbsp;&nbsp;animation: [ "slide-next", "slide-prev", "slide-down", "slide-up",]<br>}</code> |
| ariaNextLabel | Accessibility next button aria label | string | - | <div><small>From <b>config</b>:</small></div><code style='white-space: nowrap; padding: 0;'>steps: {<br>&nbsp;&nbsp;ariaNextLabel: "Next"<br>}</code> |
| ariaPreviousLabel | Accessibility previous button aria label | string | - | <div><small>From <b>config</b>:</small></div><code style='white-space: nowrap; padding: 0;'>steps: {<br>&nbsp;&nbsp;ariaPreviousLabel: "Previous"<br>}</code> |
| destroyOnHide | Destroy stepItem on hide | boolean | - | <code style='white-space: nowrap; padding: 0;'>false</code> |
| hasNavigation | Next and previous buttons below the component. You can use this property if you want to use your own custom navigation items. | boolean | - | <code style='white-space: nowrap; padding: 0;'>true</code> |
| iconNext | Icon to use for navigation button | string | - | <div><small>From <b>config</b>:</small></div><code style='white-space: nowrap; padding: 0;'>steps: {<br>&nbsp;&nbsp;iconNext: "chevron-right"<br>}</code> |
| iconPack | Icon pack to use for the navigation | string | `mdi`, `fa`, `fas and any other custom icon pack` | <div><small>From <b>config</b>:</small></div><code style='white-space: nowrap; padding: 0;'>steps: {<br>&nbsp;&nbsp;iconPack: undefined<br>}</code> |
Expand Down
1 change: 1 addition & 0 deletions packages/docs/components/Table.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ sidebarDepth: 2
| caption | Define a table caption here | |
| preheader | Define preheader content here | |
| check-all | Override check all checkbox | **is-all-checked** `boolean` - if all rows are checked<br/>**is-all-uncheckable** `boolean` - if check all is uncheckable<br/>**check-all** `(): void` - check all function |
| subheading | | |
| detail | Place row detail content here | **row** `T` - row content<br/>**index** `number` - row index |
| empty | Define content if table is empty | |
| footer | Define a custom footer | **column-count** `number` - counts of visible columns<br/>**row-count** `number` - counts of visible rows |
Expand Down
Loading

0 comments on commit 00e71df

Please sign in to comment.