-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
30 changed files
with
767 additions
and
509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
docs/pages/webitel-ui/components/on-demand/wt-navigation-menu/Readme.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
::: |
11 changes: 11 additions & 0 deletions
11
docs/pages/webitel-ui/components/on-demand/wt-navigation-menu/component-specs.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
28 changes: 28 additions & 0 deletions
28
...s/webitel-ui/components/on-demand/wt-navigation-menu/examples/example-navigation-menu.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
18
docs/pages/webitel-ui/components/on-demand/wt-start-page/Readme.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
::: |
43 changes: 43 additions & 0 deletions
43
...tel-ui/components/on-demand/wt-start-page/assets/configuration-section-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions
43
...el-ui/components/on-demand/wt-start-page/assets/configuration-section-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 48 additions & 0 deletions
48
.../webitel-ui/components/on-demand/wt-start-page/assets/contacts-section-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 48 additions & 0 deletions
48
...webitel-ui/components/on-demand/wt-start-page/assets/contacts-section-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions
6
...s/webitel-ui/components/on-demand/wt-start-page/assets/start-page-logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions
6
.../webitel-ui/components/on-demand/wt-start-page/assets/start-page-logo-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions
11
docs/pages/webitel-ui/components/on-demand/wt-start-page/component-specs.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.