Skip to content

Commit 64c6924

Browse files
authored
Merge pull request #6 from creativetimofficial/feature/v3.0.0
Feature/v3.0.0
2 parents 6605402 + 35fa979 commit 64c6924

26 files changed

+135
-131
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [3.0.0] 2022-06-24
4+
5+
- Renamed components name prefix from Vsud to Soft.
6+
37
## [2.0.0] 2022-03-30
48

59
### Bug fixing

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [Vue Soft UI Dashboard](http://demos.creative-tim.com/vue-soft-ui-dashboard/?ref=readme-vsud) [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social&logo=twitter)](https://twitter.com/intent/tweet?url=https://www.creative-tim.com/product/vue-soft-ui-dashboard&text=Check%20Vue%20Soft%20UI%20Dashboard%20made%20by%20@CreativeTim%20#webdesign%20#dashboard%20#softdesign%20#vue%20https://www.creative-tim.com/product/vue-soft-ui-dashboard)
22

3-
![version](https://img.shields.io/badge/version-2.0.0-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/creativetimofficial/vue-soft-ui-dashboard.svg)](https://github.com/creativetimofficial/vue-soft-ui-dashboard/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/creativetimofficial/vue-soft-ui-dashboard.svg)](https://github.com/creativetimofficial/vue-soft-ui-dashboard/issues?q=is%3Aissue+is%3Aclosed)
3+
![version](https://img.shields.io/badge/version-3.0.0-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/creativetimofficial/vue-soft-ui-dashboard.svg)](https://github.com/creativetimofficial/vue-soft-ui-dashboard/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/creativetimofficial/vue-soft-ui-dashboard.svg)](https://github.com/creativetimofficial/vue-soft-ui-dashboard/issues?q=is%3Aissue+is%3Aclosed)
44

55
![Image](https://s3.amazonaws.com/creativetim_bucket/products/591/original/vue-soft-ui-dashboard.jpg)
66

@@ -103,18 +103,18 @@ vue-soft-ui-dashboard
103103
│ │   └── scss
104104
│   ├── components
105105
│ │   ├── Icon
106-
│ │   ├── VsudAlert.vue
107-
│ │   ├── VsudAvatar.vue
108-
│ │   ├── VsudBadge.vue
109-
│ │   ├── VsudButton.vue
110-
│ │   ├── VsudCheckbox.vue
111-
│ │   ├── VsudInput.vue
112-
│ │   ├── VsudPagination.vue
113-
│ │   ├── VsudPaginationItem.vue
114-
│ │   ├── VsudProgress.vue
115-
│ │   ├── VsudRadio.vue
116-
│ │   ├── VsudSwitch.vue
117-
│ │   └── VsudTextarea.vue
106+
│ │   ├── SoftAlert.vue
107+
│ │   ├── SoftAvatar.vue
108+
│ │   ├── SoftBadge.vue
109+
│ │   ├── SoftButton.vue
110+
│ │   ├── SoftCheckbox.vue
111+
│ │   ├── SoftInput.vue
112+
│ │   ├── SoftPagination.vue
113+
│ │   ├── SoftPaginationItem.vue
114+
│ │   ├── SoftProgress.vue
115+
│ │   ├── SoftRadio.vue
116+
│ │   ├── SoftSwitch.vue
117+
│ │   └── SoftTextarea.vue
118118
│   ├── examples
119119
│ │   ├── Cards
120120
│ │   ├── Charts

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-soft-ui-dashboard",
3-
"version": "2.0.0",
3+
"version": "3.0.0",
44
"private": true,
55
"author": "Creative Tim",
66
"license": "SEE LICENSE IN <https://www.creative-tim.com/license>",

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
=========================================================
3-
* Vue Soft UI Dashboard - v2.0.0
3+
* Vue Soft UI Dashboard - v3.0.0
44
=========================================================
55
66
* Product Page: https://creative-tim.com/product/vue-soft-ui-dashboard

src/components/VsudAlert.vue renamed to src/components/SoftAlert.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<script>
2727
export default {
28-
name: "VsudAlert",
28+
name: "SoftAlert",
2929
props: {
3030
color: {
3131
type: String,

src/components/VsudAvatar.vue renamed to src/components/SoftAvatar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<script>
1212
export default {
13-
name: "VsudAvatar",
13+
name: "SoftAvatar",
1414
props: {
1515
img: {
1616
type: String,

src/components/VsudBadge.vue renamed to src/components/SoftBadge.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<script>
1111
export default {
12-
name: "VsudBadge",
12+
name: "SoftBadge",
1313
props: {
1414
size: {
1515
type: String,

src/components/VsudButton.vue renamed to src/components/SoftButton.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<script>
1111
export default {
12-
name: "VsudButton",
12+
name: "SoftButton",
1313
props: {
1414
color: {
1515
type: String,

src/components/VsudCheckbox.vue renamed to src/components/SoftCheckbox.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<script>
1717
export default {
18-
name: "VsudCheckbox",
18+
name: "SoftCheckbox",
1919
props: {
2020
name: {
2121
type: String,

src/components/VsudInput.vue renamed to src/components/SoftInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<script>
2525
export default {
26-
name: "VsudInput",
26+
name: "SoftInput",
2727
props: {
2828
size: {
2929
type: String,

src/components/VsudPagination.vue renamed to src/components/SoftPagination.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<script>
88
export default {
9-
name: "VsudPagination",
9+
name: "SoftPagination",
1010
props: {
1111
color: {
1212
type: String,

src/components/VsudPaginationItem.vue renamed to src/components/SoftPaginationItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<script>
1212
export default {
13-
name: "VsudPaginationItem",
13+
name: "SoftPaginationItem",
1414
props: {
1515
label: {
1616
type: String,

src/components/VsudProgress.vue renamed to src/components/SoftProgress.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<script>
1212
export default {
13-
name: "VsudProgress",
13+
name: "SoftProgress",
1414
props: {
1515
color: {
1616
type: String,

src/components/VsudRadio.vue renamed to src/components/SoftRadio.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<script>
1717
export default {
18-
name: "VsudRadio",
18+
name: "SoftRadio",
1919
props: {
2020
name: {
2121
type: String,

src/components/VsudSwitch.vue renamed to src/components/SoftSwitch.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<script>
1818
export default {
19-
name: "VsudSwitch",
19+
name: "SoftSwitch",
2020
props: {
2121
name: {
2222
type: String,

src/components/VsudTextarea.vue renamed to src/components/SoftTextarea.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<script>
1616
export default {
17-
name: "VsudTextarea",
17+
name: "SoftTextarea",
1818
props: {
1919
id: {
2020
type: String,

src/examples/Cards/MasterCard.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
class="w-20 d-flex align-items-end justify-content-end"
3333
:class="$store.state.isRTL ? 'me-auto' : 'ms-auto'"
3434
>
35-
<vsud-avatar class="w-60 mt-2" :img="img1" alt="logo" />
35+
<soft-avatar class="w-60 mt-2" :img="img1" alt="logo" />
3636
</div>
3737
</div>
3838
</div>
@@ -41,14 +41,14 @@
4141
</template>
4242

4343
<script>
44-
import VsudAvatar from "@/components/VsudAvatar.vue";
44+
import SoftAvatar from "@/components/SoftAvatar.vue";
4545
import img from "@/assets/img/curved-images/curved14.jpg";
4646
import img1 from "@/assets/img/logos/mastercard.png";
4747
4848
export default {
4949
name: "MasterCard",
5050
components: {
51-
VsudAvatar,
51+
SoftAvatar,
5252
},
5353
props: {
5454
card: {

src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
=========================================================
3-
* Vue Soft UI Dashboard - v2.0.0
3+
* Vue Soft UI Dashboard - v3.0.0
44
=========================================================
55
66
* Product Page: https://creative-tim.com/product/vue-soft-ui-dashboard

src/views/Profile.vue

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -207,33 +207,33 @@
207207
</h6>
208208
<ul class="list-group">
209209
<li class="px-0 border-0 list-group-item">
210-
<vsud-switch
210+
<soft-switch
211211
id="flexSwitchCheckDefault"
212212
name="email"
213213
class="ps-0 ms-auto"
214214
label-class="mb-0 text-body ms-3 text-truncate w-80"
215215
checked
216-
>Email me when someone follows me</vsud-switch
216+
>Email me when someone follows me</soft-switch
217217
>
218218
</li>
219219
<li class="px-0 border-0 list-group-item">
220-
<vsud-switch
220+
<soft-switch
221221
id="flexSwitchCheckDefault1"
222222
name="Email"
223223
label-class="mb-0 text-body ms-3 text-truncate w-80"
224224
class="ps-0 ms-auto"
225-
>Email me when someone answers on my post</vsud-switch
225+
>Email me when someone answers on my post</soft-switch
226226
>
227227
</li>
228228

229229
<li class="px-0 border-0 list-group-item">
230-
<vsud-switch
230+
<soft-switch
231231
id="flexSwitchCheckDefault2"
232232
name="Email"
233233
label-class="mb-0 text-body ms-3 text-truncate w-80"
234234
class="ps-0 ms-auto"
235235
checked
236-
>Email me when someone mentions me</vsud-switch
236+
>Email me when someone mentions me</soft-switch
237237
>
238238
</li>
239239
</ul>
@@ -244,31 +244,31 @@
244244
</h6>
245245
<ul class="list-group">
246246
<li class="px-0 border-0 list-group-item">
247-
<vsud-switch
247+
<soft-switch
248248
id="flexSwitchCheckDefault3"
249249
name="Project Launch"
250250
class="ps-0 ms-auto"
251251
label-class="mb-0 text-body ms-3 text-truncate w-80"
252-
>New launches and projects</vsud-switch
252+
>New launches and projects</soft-switch
253253
>
254254
</li>
255255
<li class="px-0 border-0 list-group-item">
256-
<vsud-switch
256+
<soft-switch
257257
id="flexSwitchCheckDefault4"
258258
name="Product Update"
259259
class="ps-0 ms-auto"
260260
label-class="mb-0 text-body ms-3 text-truncate w-80"
261261
checked
262-
>Monthly product updates</vsud-switch
262+
>Monthly product updates</soft-switch
263263
>
264264
</li>
265265
<li class="px-0 pb-0 border-0 list-group-item">
266-
<vsud-switch
266+
<soft-switch
267267
id="flexSwitchCheckDefault5"
268268
name="Newsletter"
269269
class="ps-0 ms-auto"
270270
label-class="mb-0 text-body ms-3 text-truncate w-80"
271-
>Subscribe to newsletter</vsud-switch
271+
>Subscribe to newsletter</soft-switch
272272
>
273273
</li>
274274
</ul>
@@ -315,7 +315,7 @@
315315
<li
316316
class="px-0 mb-2 border-0 list-group-item d-flex align-items-center"
317317
>
318-
<vsud-avatar
318+
<soft-avatar
319319
class="me-3"
320320
:img="sophie"
321321
alt="kal"
@@ -337,7 +337,7 @@
337337
<li
338338
class="px-0 mb-2 border-0 list-group-item d-flex align-items-center"
339339
>
340-
<vsud-avatar
340+
<soft-avatar
341341
class="me-3"
342342
:img="marie"
343343
alt="kal"
@@ -359,7 +359,7 @@
359359
<li
360360
class="px-0 mb-2 border-0 list-group-item d-flex align-items-center"
361361
>
362-
<vsud-avatar
362+
<soft-avatar
363363
class="me-3"
364364
:img="ivana"
365365
alt="kal"
@@ -381,7 +381,7 @@
381381
<li
382382
class="px-0 mb-2 border-0 list-group-item d-flex align-items-center"
383383
>
384-
<vsud-avatar
384+
<soft-avatar
385385
class="me-3"
386386
:img="peterson"
387387
alt="kal"
@@ -403,7 +403,7 @@
403403
<li
404404
class="px-0 border-0 list-group-item d-flex align-items-center"
405405
>
406-
<vsud-avatar
406+
<soft-avatar
407407
class="me-3"
408408
:img="nick"
409409
alt="kal"
@@ -540,9 +540,9 @@
540540
</template>
541541

542542
<script>
543-
import VsudSwitch from "@/components/VsudSwitch.vue";
543+
import SoftSwitch from "@/components/SoftSwitch.vue";
544544
import ProfileInfoCard from "./components/ProfileInfoCard.vue";
545-
import VsudAvatar from "@/components/VsudAvatar.vue";
545+
import SoftAvatar from "@/components/SoftAvatar.vue";
546546
import sophie from "@/assets/img/kal-visuals-square.jpg";
547547
import marie from "@/assets/img/marie.jpg";
548548
import ivana from "@/assets/img/ivana-square.jpg";
@@ -568,9 +568,9 @@ import setTooltip from "@/assets/js/tooltip.js";
568568
export default {
569569
name: "ProfileOverview",
570570
components: {
571-
VsudSwitch,
571+
SoftSwitch,
572572
ProfileInfoCard,
573-
VsudAvatar,
573+
SoftAvatar,
574574
DefaultProjectCard,
575575
PlaceHolderCard,
576576
},

0 commit comments

Comments
 (0)