Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
dlohvinov committed Nov 13, 2024
2 parents f43310f + e2d9ffc commit 8ffb6b5
Show file tree
Hide file tree
Showing 30 changed files with 767 additions and 509 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@


## [v24.10.74] - 2024-11-13
### :bug: Bug Fixes
- [`a5ee794`](https://github.com/webitel/webitel-ui-sdk/commit/a5ee79439ddd1f88512b3666a9a66a3c19b26f9f) - conflict and change lib version and rename props in wt-navigation-menu and wt-start-page[WTEL-4710](https://webitel.atlassian.net/browse/WTEL-4710) *(commit by [@Lera24](https://github.com/Lera24))*
- [`bac8466`](https://github.com/webitel/webitel-ui-sdk/commit/bac8466080703da8d395e105e237df0b844dd9c6) - navigation-menu and start-page component after codereview(change docs, style, add new prop)[WTEL-4710](https://webitel.atlassian.net/browse/WTEL-4710) *(commit by [@Lera24](https://github.com/Lera24))*

### :recycle: Refactors
- [`7b48cb6`](https://github.com/webitel/webitel-ui-sdk/commit/7b48cb6ac851deb4786d9618c2e26a62c45a88d1) - navigation menu - change styles,layout,documentation [WTEL-4710](https://webitel.atlassian.net/browse/WTEL-4710) *(commit by [@Lera24](https://github.com/Lera24))*


## [v24.10.73] - 2024-11-12
### :bug: Bug Fixes
- [`5746c8c`](https://github.com/webitel/webitel-ui-sdk/commit/5746c8ca063af834eb36f20afd1ba21ac03da7e2) - caseConverters.js scripts import fix [WTEL-5516](https://webitel.atlassian.net/browse/WTEL-5516) *(commit by [@dlohvinov](https://github.com/dlohvinov))*


## [v24.10.72] - 2024-11-12
### :sparkles: New Features
- [`a1eb8be`](https://github.com/webitel/webitel-ui-sdk/commit/a1eb8bebdff83061e3ef81fe55166108efd8e44b) - FilesExport.js skipFilesWithError config added [WTEL-5173](https://webitel.atlassian.net/browse/WTEL-5173) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
Expand Down Expand Up @@ -161,3 +175,5 @@
[v24.10.69]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.68...v24.10.69
[v24.10.71]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.69...v24.10.71
[v24.10.72]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.71...v24.10.72
[v24.10.73]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.72...v24.10.73
[v24.10.74]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.73...v24.10.74
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<script setup>
import Specs from './component-specs.vue';
import ExampleNavigationMenu from './examples/example-navigation-menu.vue';
</script>

# `wt-navigation-menu.vue`

## Specs

<Specs />

## Example Navigation Menu

<ExampleNavigationMenu />

::: details Code
<<< ./examples/example-navigation-menu.vue
:::
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<script setup>
import Component from '../../../../../../src/components/on-demand/wt-navigation-menu/components/wt-navigation-menu.vue';
</script>

<template>
<component-info :info="Component.docs" />
</template>

<style lang="scss" scoped>
</style>
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<template>
<wt-navigation-menu :icons="['lookups']" :nav="navItems" />
</template>

<script setup>
const navItems = [
{
value: 'lookups',
name: 'lookups',
subNav: [
{
value: 'sources',
name: 'sources',
route: 'lookups/sources',
},
{
value: 'slas',
name: 'slas',
route: 'lookups/slas',
},
],
},
];
</script>

<style lang="scss" scoped>
</style>
18 changes: 18 additions & 0 deletions docs/pages/webitel-ui/components/on-demand/wt-start-page/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<script setup>
import Specs from './component-specs.vue';
import ExampleStartPage from './examples/example-start-page.vue';
</script>

# `wt-start-page.vue`

## Specs

<Specs />

## Example Start Page

<ExampleStartPage />

::: details Code
<<< ./examples/example-start-page.vue
:::
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<script setup>
import Component from '../../../../../../src/components/on-demand/wt-start-page/components/wt-start-page.vue';
</script>

<template>
<component-info :info="Component.docs" />
</template>

<style lang="scss" scoped>
</style>
Loading

0 comments on commit 8ffb6b5

Please sign in to comment.