Skip to content

Commit 07b8d45

Browse files
committed
chore: run linter
1 parent cedfa90 commit 07b8d45

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ This table below provides a quick overview over all available options. To gain m
124124
| **[`dash`](#dash)** | String | "[strict] count spacing" | |
125125
| **[`half`](#half)** | Boolean | | false |
126126
| **[`gap`](#gap)** | Number | any Number that defines the gap between multiple circles in pixel | 0 |
127-
| **[`dot`](#dot)** [![npm](https://img.shields.io/badge/v1.1.0-blue?style=flat-square)](#dot) | String \| Number \| Object | Accepts size, color and other styles as Number, descriptive string `"10% red"` or object `{size : 10, backgroundColor: "red", widht: "2px", borderRadius: "5px" ...}` | 0 |
127+
| **[`dot`](#dot)** | String \| Number \| Object | Accepts size, color and other styles as Number, descriptive string `"10% red"` or object `{size : 10, backgroundColor: "red", widht: "2px", borderRadius: "5px" ...}` | 0 |
128128
| **[`reverse`](#reverse)** [![npm](https://img.shields.io/badge/v1.2.0-blue?style=flat-square)](#reverse) | Boolean | | false |
129129
| **[`data`](#data)** | Array | defines multiple circles, takes as values Objects with almost all props defined above | |
130130

@@ -490,8 +490,6 @@ Defines the gap in pixels from one circle to the previous circle. It will be app
490490

491491
- ### `dot`
492492

493-
[![npm](https://img.shields.io/badge/v1.1.0-blue?style=flat-square)](#dot)
494-
495493
###### Animated: :heavy_check_mark:
496494

497495
The dot property lets you define a point indicator at the end of the progress line. You have a lot of freedom to customize the dot using a Number, descriptive String, or an Object to inject any CSS styles.

src/App.vue

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,11 @@
22
<div id="app">
33
<div class="ep-test-card" :style="{ maxHeight: size.height + 2000 + 'px' }">
44
<div>
5-
<label for="progress">
6-
Progress
7-
</label>
5+
<label for="progress"> Progress </label>
86
<input v-model="progress" max="100" min="-100" type="number" id="progress" />
97
<button @click="updateProgress">Update</button>
108
<button @click="updateTasksDone">Update Tasks</button>
11-
<label for="size">
12-
Size
13-
</label>
9+
<label for="size"> Size </label>
1410
<input v-model="size" type="number" id="size" />
1511
<label for="load">
1612
LOADING
@@ -41,7 +37,7 @@
4137
<input type="checkbox" v-model="circles[2].loading" />
4238
<input type="checkbox" v-model="circles[3].loading" />
4339
</div>-->
44-
<div style="border: 1px solid red; display: inline-block;">
40+
<div style="border: 1px solid red; display: inline-block">
4541
<vue-ellipse-progress
4642
:size="200"
4743
:progress="progress"

0 commit comments

Comments
 (0)