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,

0 commit comments

Comments
 (0)