Skip to content

Commit

Permalink
docs: remove percy styles (#2519)
Browse files Browse the repository at this point in the history
* docs: remove percy styles

* docs: minor fix
  • Loading branch information
portikM authored Nov 15, 2024
1 parent 90b4198 commit 2738d11
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 21 deletions.
12 changes: 0 additions & 12 deletions docs/.vitepress/theme/_percy.scss

This file was deleted.

1 change: 0 additions & 1 deletion docs/.vitepress/theme/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// https://github.com/vuejs/vitepress/blob/main/src/client/theme-default/styles/vars.css
@use "./variables";
@use "./overrides";
@use "./percy";

html,
body {
Expand Down
14 changes: 7 additions & 7 deletions docs/components/datetime-picker.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Set the `v-model` to [Single date time picker](#single-date-time-picker-v-model)
:range="false"
/>
<br/>
<div>Emitted value: <pre class="json hide-from-percy">{{ singleDateEmpty }}</pre></div>
<div>Emitted value: <pre class="json">{{ singleDateEmpty }}</pre></div>
</ClientOnly>

```html
Expand All @@ -168,7 +168,7 @@ Setting the `v-model` to [Single date time picker](#single-date-time-picker-v-mo
:range="false"
/>
<br/>
<div>Emitted value: <pre class="json hide-from-percy">{{ singleDateToday }}</pre></div>
<div>Emitted value: <pre class="json">{{ singleDateToday }}</pre></div>
</ClientOnly>

```html
Expand All @@ -195,7 +195,7 @@ Set the `v-model` to [Range date time picker](#range-date-time-picker-v-model).
:range="true"
/>
<br/>
<div>Emitted value: <pre class="json hide-from-percy">{{ dateRangeWeek }}</pre></div>
<div>Emitted value: <pre class="json">{{ dateRangeWeek }}</pre></div>
</ClientOnly>

```html
Expand All @@ -222,7 +222,7 @@ Set the `v-model` to [Range date time picker](#range-date-time-picker-v-model)
:range="true"
/>
<br/>
<div>Emitted value: <pre class="json hide-from-percy">{{ dateRangeWeek }}</pre></div>
<div>Emitted value: <pre class="json">{{ dateRangeWeek }}</pre></div>
</ClientOnly>

```html
Expand Down Expand Up @@ -255,7 +255,7 @@ This instance makes use of the optional `minDate` and `maxDate` parameters.
:time-periods="exampleTimeFrames"
/>
<br/>
<div>Emitted value: <pre class="json hide-from-percy">{{ dateRangeWeek }}</pre></div>
<div>Emitted value: <pre class="json">{{ dateRangeWeek }}</pre></div>
</ClientOnly>

```html
Expand Down Expand Up @@ -314,7 +314,7 @@ Passing in a `timePeriodsKey` causes the instance to default to the "Relative" t
:time-periods="exampleTimeFrames"
/>
<br/>
<div>Emitted value: <pre class="json hide-from-percy">{{ dateRangeWeekRelative }}</pre></div>
<div>Emitted value: <pre class="json">{{ dateRangeWeekRelative }}</pre></div>
</ClientOnly>

```html
Expand Down Expand Up @@ -370,7 +370,7 @@ This utilizes the same time frames as the previous example; however, in this cas
:time-periods="exampleTimeFrames"
/>
<br/>
<div>Emitted value: <pre class="json hide-from-percy">{{ oneHourRelativeOnly }}</pre></div>
<div>Emitted value: <pre class="json">{{ oneHourRelativeOnly }}</pre></div>
</ClientOnly>

```html
Expand Down
2 changes: 1 addition & 1 deletion docs/components/tree-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The value provided to `v-model` should adhere to all the same constraints of the
<div>
<KButton @click="reset">Reset</KButton>
</div>
<div class="value-wrapper"><b>Value:</b> <pre class="json hide-from-percy">{{ JSON.stringify(myList, null, 2) }}</pre></div>
<div class="value-wrapper"><b>Value:</b> <pre class="json">{{ JSON.stringify(myList, null, 2) }}</pre></div>
</div>

```vue
Expand Down

0 comments on commit 2738d11

Please sign in to comment.