@westartcom/bread-quasar-fields 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/icons/ChevronDownIcon.vue +20 -0
- package/icons/ChevronUpIcon.vue +20 -0
- package/icons/CloseIcon.vue +20 -0
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg-icon type="fa" :path="iconPath"></svg-icon>
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script lang="ts">
|
|
6
|
+
import SvgIcon from './SvgBaseIcon.vue';
|
|
7
|
+
import { defineComponent } from 'vue';
|
|
8
|
+
import {fasChevronDown} from '@quasar/extras/fontawesome-v6';
|
|
9
|
+
|
|
10
|
+
export default defineComponent({
|
|
11
|
+
components: {
|
|
12
|
+
SvgIcon
|
|
13
|
+
},
|
|
14
|
+
data() {
|
|
15
|
+
return {
|
|
16
|
+
iconPath: fasChevronDown
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
</script>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg-icon type="fa" :path="iconPath"></svg-icon>
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script lang="ts">
|
|
6
|
+
import SvgIcon from './SvgBaseIcon.vue';
|
|
7
|
+
import { defineComponent } from 'vue';
|
|
8
|
+
import {fasChevronUp} from '@quasar/extras/fontawesome-v6';
|
|
9
|
+
|
|
10
|
+
export default defineComponent({
|
|
11
|
+
components: {
|
|
12
|
+
SvgIcon
|
|
13
|
+
},
|
|
14
|
+
data() {
|
|
15
|
+
return {
|
|
16
|
+
iconPath: fasChevronUp
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
</script>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg-icon type="fa" :path="iconPath"></svg-icon>
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script lang="ts">
|
|
6
|
+
import SvgIcon from './SvgBaseIcon.vue';
|
|
7
|
+
import { defineComponent } from 'vue';
|
|
8
|
+
import {fasXmark} from '@quasar/extras/fontawesome-v6';
|
|
9
|
+
|
|
10
|
+
export default defineComponent({
|
|
11
|
+
components: {
|
|
12
|
+
SvgIcon
|
|
13
|
+
},
|
|
14
|
+
data() {
|
|
15
|
+
return {
|
|
16
|
+
iconPath: fasXmark
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
</script>
|