Skip to content

Commit 7c3d9f5

Browse files
committed
Updated Components
1 parent 6605402 commit 7c3d9f5

21 files changed

+115
-115
lines changed

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/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
},

src/views/SignIn.vue

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,30 +26,30 @@
2626
<div class="card-body">
2727
<form role="form" class="text-start">
2828
<label>Email</label>
29-
<vsud-input
29+
<soft-input
3030
id="email"
3131
type="email"
3232
placeholder="Email"
3333
name="email"
3434
/>
3535
<label>Password</label>
36-
<vsud-input
36+
<soft-input
3737
id="password"
3838
type="password"
3939
placeholder="Password"
4040
name="password"
4141
/>
42-
<vsud-switch id="rememberMe" name="rememberMe" checked>
42+
<soft-switch id="rememberMe" name="rememberMe" checked>
4343
Remember me
44-
</vsud-switch>
44+
</soft-switch>
4545
<div class="text-center">
46-
<vsud-button
46+
<soft-button
4747
class="my-4 mb-2"
4848
variant="gradient"
4949
color="success"
5050
full-width
5151
>Sign in
52-
</vsud-button>
52+
</soft-button>
5353
</div>
5454
</form>
5555
</div>
@@ -91,9 +91,9 @@
9191
<script>
9292
import Navbar from "@/examples/PageLayout/Navbar.vue";
9393
import AppFooter from "@/examples/PageLayout/Footer.vue";
94-
import VsudInput from "@/components/VsudInput.vue";
95-
import VsudSwitch from "@/components/VsudSwitch.vue";
96-
import VsudButton from "@/components/VsudButton.vue";
94+
import SoftInput from "@/components/SoftInput.vue";
95+
import SoftSwitch from "@/components/SoftSwitch.vue";
96+
import SoftButton from "@/components/SoftButton.vue";
9797
const body = document.getElementsByTagName("body")[0];
9898
import { mapMutations } from "vuex";
9999
@@ -102,9 +102,9 @@ export default {
102102
components: {
103103
Navbar,
104104
AppFooter,
105-
VsudInput,
106-
VsudSwitch,
107-
VsudButton,
105+
SoftInput,
106+
SoftSwitch,
107+
SoftButton,
108108
},
109109
created() {
110110
this.toggleEveryDisplay();

0 commit comments

Comments
 (0)