-
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.
refactor: wt-page-wrapper colors [WTEL-3946]
- Loading branch information
Showing
5 changed files
with
54 additions
and
40 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
docs/pages/webitel-ui/components/wt-page-wrapper/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,20 @@ | ||
<script setup> | ||
import Docs from './wt-page-wrapper-docs.vue'; | ||
import ExamplePageWrapper from './examples/example-page-wrapper.vue'; | ||
</script> | ||
|
||
# WtPageWrapper | ||
|
||
## Props | ||
::: raw | ||
<Docs /> | ||
::: | ||
|
||
## Example Page Wrapper | ||
::: raw | ||
<ExamplePageWrapper /> | ||
::: | ||
|
||
::: details Code | ||
<<< ./examples/example-page-wrapper.vue | ||
::: |
21 changes: 21 additions & 0 deletions
21
docs/pages/webitel-ui/components/wt-page-wrapper/examples/example-page-wrapper.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,21 @@ | ||
<script setup> | ||
</script> | ||
|
||
<template> | ||
<wt-page-wrapper> | ||
<template #header> | ||
<div style="height: 40px; background: lightblue;" /> | ||
</template> | ||
<template #actions-panel> | ||
<div style="height: 80px; background: lightblue;" /> | ||
</template> | ||
<template #main> | ||
<div style="width: 100%; height: 320px; background: lightblue;" /> | ||
</template> | ||
</wt-page-wrapper> | ||
</template> | ||
|
||
<style lang="scss" scoped> | ||
</style> |
45 changes: 6 additions & 39 deletions
45
docs/pages/webitel-ui/components/wt-page-wrapper/wt-page-wrapper-docs.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
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
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