@dative-gpi/foundation-shared-components 0.0.18 → 0.0.20

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.
Files changed (71) hide show
  1. package/components/FSButton.vue +31 -57
  2. package/components/FSCard.vue +4 -4
  3. package/components/FSCarousel.vue +4 -3
  4. package/components/FSClickable.vue +125 -0
  5. package/components/FSDivider.vue +7 -2
  6. package/components/FSLoader.vue +9 -31
  7. package/components/FSSlideGroup.vue +69 -8
  8. package/components/FSToggleSet.vue +20 -1
  9. package/components/FSWrapGroup.vue +22 -2
  10. package/components/buttons/FSButtonCancel.vue +28 -0
  11. package/components/buttons/FSButtonCancelIcon.vue +28 -0
  12. package/components/buttons/FSButtonCancelLabel.vue +27 -0
  13. package/components/buttons/FSButtonCancelMini.vue +27 -0
  14. package/components/buttons/FSButtonDuplicate.vue +28 -0
  15. package/components/buttons/FSButtonDuplicateIcon.vue +28 -0
  16. package/components/buttons/FSButtonDuplicateLabel.vue +27 -0
  17. package/components/buttons/FSButtonDuplicateMini.vue +27 -0
  18. package/components/buttons/FSButtonEdit.vue +28 -0
  19. package/components/buttons/FSButtonEditIcon.vue +28 -0
  20. package/components/buttons/FSButtonEditLabel.vue +27 -0
  21. package/components/buttons/FSButtonEditMini.vue +27 -0
  22. package/components/buttons/FSButtonFile.vue +84 -0
  23. package/components/buttons/FSButtonFileIcon.vue +84 -0
  24. package/components/buttons/FSButtonFileLabel.vue +83 -0
  25. package/components/buttons/FSButtonFileMini.vue +83 -0
  26. package/components/buttons/FSButtonNext.vue +28 -0
  27. package/components/buttons/FSButtonNextIcon.vue +28 -0
  28. package/components/buttons/FSButtonNextLabel.vue +27 -0
  29. package/components/buttons/FSButtonNextMini.vue +27 -0
  30. package/components/buttons/FSButtonPrevious.vue +28 -0
  31. package/components/buttons/FSButtonPreviousIcon.vue +28 -0
  32. package/components/buttons/FSButtonPreviousLabel.vue +27 -0
  33. package/components/buttons/FSButtonPreviousMini.vue +27 -0
  34. package/components/buttons/FSButtonRedo.vue +28 -0
  35. package/components/buttons/FSButtonRedoIcon.vue +28 -0
  36. package/components/buttons/FSButtonRedoLabel.vue +27 -0
  37. package/components/buttons/FSButtonRedoMini.vue +27 -0
  38. package/components/buttons/FSButtonRemove.vue +28 -0
  39. package/components/buttons/FSButtonRemoveIcon.vue +28 -0
  40. package/components/buttons/FSButtonRemoveLabel.vue +27 -0
  41. package/components/buttons/FSButtonRemoveMini.vue +27 -0
  42. package/components/buttons/FSButtonSave.vue +28 -0
  43. package/components/buttons/FSButtonSaveIcon.vue +28 -0
  44. package/components/buttons/FSButtonSaveLabel.vue +27 -0
  45. package/components/buttons/FSButtonSaveMini.vue +27 -0
  46. package/components/buttons/FSButtonSearch.vue +28 -0
  47. package/components/buttons/FSButtonSearchIcon.vue +28 -0
  48. package/components/buttons/FSButtonSearchLabel.vue +27 -0
  49. package/components/buttons/FSButtonSearchMini.vue +27 -0
  50. package/components/buttons/FSButtonUndo.vue +28 -0
  51. package/components/buttons/FSButtonUndoIcon.vue +28 -0
  52. package/components/buttons/FSButtonUndoLabel.vue +27 -0
  53. package/components/buttons/FSButtonUndoMini.vue +27 -0
  54. package/components/buttons/FSButtonUpdate.vue +28 -0
  55. package/components/buttons/FSButtonUpdateIcon.vue +28 -0
  56. package/components/buttons/FSButtonUpdateLabel.vue +27 -0
  57. package/components/buttons/FSButtonUpdateMini.vue +27 -0
  58. package/components/buttons/FSButtonValidate.vue +28 -0
  59. package/components/buttons/FSButtonValidateIcon.vue +28 -0
  60. package/components/buttons/FSButtonValidateLabel.vue +27 -0
  61. package/components/buttons/FSButtonValidateMini.vue +27 -0
  62. package/components/fields/FSIconField.vue +18 -5
  63. package/components/lists/FSDataTableUI.vue +2 -0
  64. package/package.json +4 -4
  65. package/styles/components/fs_button.scss +0 -28
  66. package/styles/components/fs_clickable.scss +26 -0
  67. package/styles/components/fs_data_table.scss +2 -2
  68. package/styles/components/index.scss +1 -0
  69. package/styles/globals/overrides.scss +3 -2
  70. package/utils/css.ts +16 -2
  71. package/components/FSFileButton.vue +0 -246
@@ -0,0 +1,83 @@
1
+ <template>
2
+ <div>
3
+ <FSButton
4
+ prependIcon="mdi-upload-outline"
5
+ :color="ColorEnum.Light"
6
+ @click="onClick"
7
+ v-bind="$attrs"
8
+ />
9
+ <form>
10
+ <input
11
+ v-show="false"
12
+ type="file"
13
+ ref="input"
14
+ :accept="$props.accept"
15
+ @input="onInput"
16
+ />
17
+ </form>
18
+ </div>
19
+ </template>
20
+
21
+ <script lang="ts">
22
+ import { defineComponent, ref } from "vue";
23
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
24
+
25
+ import FSButton from "../FSButton.vue";
26
+
27
+ export default defineComponent({
28
+ name: "FSButtonFileMini",
29
+ components: {
30
+ FSButton
31
+ },
32
+ props: {
33
+ accept: {
34
+ type: String,
35
+ required: false,
36
+ default: "",
37
+ },
38
+ readFile: {
39
+ type: Boolean,
40
+ required: false,
41
+ default: true,
42
+ }
43
+ },
44
+ emits: ["update:modelValue"],
45
+ setup(props, { emit }) {
46
+ const input = ref(null);
47
+
48
+ const clear = () => {
49
+ input.value!.form && input.value!.form.reset();
50
+ };
51
+
52
+ const onClick = () => {
53
+ input.value!.click();
54
+ }
55
+
56
+ const onInput = () => {
57
+ const file = input.value!.files && input.value!.files[0];
58
+ if (!file) {
59
+ return;
60
+ }
61
+ if (!props.readFile) {
62
+ emit("update:modelValue", file);
63
+ clear();
64
+ }
65
+ else {
66
+ const reader = new FileReader();
67
+ reader.addEventListener("load", (fileEv) => {
68
+ emit("update:modelValue", fileEv.target && fileEv.target.result);
69
+ clear();
70
+ });
71
+ reader.readAsDataURL(file);
72
+ }
73
+ };
74
+
75
+ return {
76
+ ColorEnum,
77
+ input,
78
+ onClick,
79
+ onInput
80
+ };
81
+ }
82
+ });
83
+ </script>
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <FSButton
3
+ appendIcon="mdi-chevron-right"
4
+ :label="$tr('ui.button.next', 'Next')"
5
+ :color="ColorEnum.Primary"
6
+ v-bind="$attrs"
7
+ />
8
+ </template>
9
+
10
+ <script lang="ts">
11
+ import { defineComponent } from "vue";
12
+
13
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
14
+
15
+ import FSButton from "../FSButton.vue";
16
+
17
+ export default defineComponent({
18
+ name: "FSButtonNext",
19
+ components: {
20
+ FSButton
21
+ },
22
+ setup() {
23
+ return {
24
+ ColorEnum
25
+ }
26
+ }
27
+ });
28
+ </script>
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <FSButton
3
+ icon="mdi-chevron-right"
4
+ variant="icon"
5
+ :color="ColorEnum.Primary"
6
+ v-bind="$attrs"
7
+ />
8
+ </template>
9
+
10
+ <script lang="ts">
11
+ import { defineComponent } from "vue";
12
+
13
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
14
+
15
+ import FSButton from "../FSButton.vue";
16
+
17
+ export default defineComponent({
18
+ name: "FSButtonNextIcon",
19
+ components: {
20
+ FSButton
21
+ },
22
+ setup() {
23
+ return {
24
+ ColorEnum
25
+ }
26
+ }
27
+ });
28
+ </script>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <FSButton
3
+ :label="$tr('ui.button.next', 'Next')"
4
+ :color="ColorEnum.Primary"
5
+ v-bind="$attrs"
6
+ />
7
+ </template>
8
+
9
+ <script lang="ts">
10
+ import { defineComponent } from "vue";
11
+
12
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
13
+
14
+ import FSButton from "../FSButton.vue";
15
+
16
+ export default defineComponent({
17
+ name: "FSButtonNextLabel",
18
+ components: {
19
+ FSButton
20
+ },
21
+ setup() {
22
+ return {
23
+ ColorEnum
24
+ }
25
+ }
26
+ });
27
+ </script>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <FSButton
3
+ prependIcon="mdi-chevron-right"
4
+ :color="ColorEnum.Primary"
5
+ v-bind="$attrs"
6
+ />
7
+ </template>
8
+
9
+ <script lang="ts">
10
+ import { defineComponent } from "vue";
11
+
12
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
13
+
14
+ import FSButton from "../FSButton.vue";
15
+
16
+ export default defineComponent({
17
+ name: "FSButtonNextMini",
18
+ components: {
19
+ FSButton
20
+ },
21
+ setup() {
22
+ return {
23
+ ColorEnum
24
+ }
25
+ }
26
+ });
27
+ </script>
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <FSButton
3
+ prependIcon="mdi-chevron-left"
4
+ :label="$tr('ui.button.previous', 'Previous')"
5
+ :color="ColorEnum.Primary"
6
+ v-bind="$attrs"
7
+ />
8
+ </template>
9
+
10
+ <script lang="ts">
11
+ import { defineComponent } from "vue";
12
+
13
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
14
+
15
+ import FSButton from "../FSButton.vue";
16
+
17
+ export default defineComponent({
18
+ name: "FSButtonPrevious",
19
+ components: {
20
+ FSButton
21
+ },
22
+ setup() {
23
+ return {
24
+ ColorEnum
25
+ }
26
+ }
27
+ });
28
+ </script>
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <FSButton
3
+ icon="mdi-chevron-left"
4
+ variant="icon"
5
+ :color="ColorEnum.Primary"
6
+ v-bind="$attrs"
7
+ />
8
+ </template>
9
+
10
+ <script lang="ts">
11
+ import { defineComponent } from "vue";
12
+
13
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
14
+
15
+ import FSButton from "../FSButton.vue";
16
+
17
+ export default defineComponent({
18
+ name: "FSButtonPreviousIcon",
19
+ components: {
20
+ FSButton
21
+ },
22
+ setup() {
23
+ return {
24
+ ColorEnum
25
+ }
26
+ }
27
+ });
28
+ </script>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <FSButton
3
+ :label="$tr('ui.button.previous', 'Previous')"
4
+ :color="ColorEnum.Primary"
5
+ v-bind="$attrs"
6
+ />
7
+ </template>
8
+
9
+ <script lang="ts">
10
+ import { defineComponent } from "vue";
11
+
12
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
13
+
14
+ import FSButton from "../FSButton.vue";
15
+
16
+ export default defineComponent({
17
+ name: "FSButtonPreviousLabel",
18
+ components: {
19
+ FSButton
20
+ },
21
+ setup() {
22
+ return {
23
+ ColorEnum
24
+ }
25
+ }
26
+ });
27
+ </script>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <FSButton
3
+ prependIcon="mdi-chevron-left"
4
+ :color="ColorEnum.Primary"
5
+ v-bind="$attrs"
6
+ />
7
+ </template>
8
+
9
+ <script lang="ts">
10
+ import { defineComponent } from "vue";
11
+
12
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
13
+
14
+ import FSButton from "../FSButton.vue";
15
+
16
+ export default defineComponent({
17
+ name: "FSButtonPreviousMini",
18
+ components: {
19
+ FSButton
20
+ },
21
+ setup() {
22
+ return {
23
+ ColorEnum
24
+ }
25
+ }
26
+ });
27
+ </script>
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <FSButton
3
+ prependIcon="mdi-redo-variant"
4
+ :label="$tr('ui.button.redo', 'Redo')"
5
+ :color="ColorEnum.Light"
6
+ v-bind="$attrs"
7
+ />
8
+ </template>
9
+
10
+ <script lang="ts">
11
+ import { defineComponent } from "vue";
12
+
13
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
14
+
15
+ import FSButton from "../FSButton.vue";
16
+
17
+ export default defineComponent({
18
+ name: "FSButtonRedo",
19
+ components: {
20
+ FSButton
21
+ },
22
+ setup() {
23
+ return {
24
+ ColorEnum
25
+ }
26
+ }
27
+ });
28
+ </script>
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <FSButton
3
+ icon="mdi-redo-variant"
4
+ variant="icon"
5
+ :color="ColorEnum.Light"
6
+ v-bind="$attrs"
7
+ />
8
+ </template>
9
+
10
+ <script lang="ts">
11
+ import { defineComponent } from "vue";
12
+
13
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
14
+
15
+ import FSButton from "../FSButton.vue";
16
+
17
+ export default defineComponent({
18
+ name: "FSButtonRedoIcon",
19
+ components: {
20
+ FSButton
21
+ },
22
+ setup() {
23
+ return {
24
+ ColorEnum
25
+ }
26
+ }
27
+ });
28
+ </script>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <FSButton
3
+ :label="$tr('ui.button.redo', 'Redo')"
4
+ :color="ColorEnum.Light"
5
+ v-bind="$attrs"
6
+ />
7
+ </template>
8
+
9
+ <script lang="ts">
10
+ import { defineComponent } from "vue";
11
+
12
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
13
+
14
+ import FSButton from "../FSButton.vue";
15
+
16
+ export default defineComponent({
17
+ name: "FSButtonRedoLabel",
18
+ components: {
19
+ FSButton
20
+ },
21
+ setup() {
22
+ return {
23
+ ColorEnum
24
+ }
25
+ }
26
+ });
27
+ </script>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <FSButton
3
+ prependIcon="mdi-redo-variant"
4
+ :color="ColorEnum.Light"
5
+ v-bind="$attrs"
6
+ />
7
+ </template>
8
+
9
+ <script lang="ts">
10
+ import { defineComponent } from "vue";
11
+
12
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
13
+
14
+ import FSButton from "../FSButton.vue";
15
+
16
+ export default defineComponent({
17
+ name: "FSButtonRedoMini",
18
+ components: {
19
+ FSButton
20
+ },
21
+ setup() {
22
+ return {
23
+ ColorEnum
24
+ }
25
+ }
26
+ });
27
+ </script>
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <FSButton
3
+ prependIcon="mdi-delete-outline"
4
+ :label="$tr('ui.button.remove', 'Remove')"
5
+ :color="ColorEnum.Error"
6
+ v-bind="$attrs"
7
+ />
8
+ </template>
9
+
10
+ <script lang="ts">
11
+ import { defineComponent } from "vue";
12
+
13
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
14
+
15
+ import FSButton from "../FSButton.vue";
16
+
17
+ export default defineComponent({
18
+ name: "FSButtonRemove",
19
+ components: {
20
+ FSButton
21
+ },
22
+ setup() {
23
+ return {
24
+ ColorEnum
25
+ }
26
+ }
27
+ });
28
+ </script>
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <FSButton
3
+ icon="mdi-delete-outline"
4
+ variant="icon"
5
+ :color="ColorEnum.Error"
6
+ v-bind="$attrs"
7
+ />
8
+ </template>
9
+
10
+ <script lang="ts">
11
+ import { defineComponent } from "vue";
12
+
13
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
14
+
15
+ import FSButton from "../FSButton.vue";
16
+
17
+ export default defineComponent({
18
+ name: "FSButtonRemoveIcon",
19
+ components: {
20
+ FSButton
21
+ },
22
+ setup() {
23
+ return {
24
+ ColorEnum
25
+ }
26
+ }
27
+ });
28
+ </script>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <FSButton
3
+ :label="$tr('ui.button.remove', 'Remove')"
4
+ :color="ColorEnum.Error"
5
+ v-bind="$attrs"
6
+ />
7
+ </template>
8
+
9
+ <script lang="ts">
10
+ import { defineComponent } from "vue";
11
+
12
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
13
+
14
+ import FSButton from "../FSButton.vue";
15
+
16
+ export default defineComponent({
17
+ name: "FSButtonRemoveLabel",
18
+ components: {
19
+ FSButton
20
+ },
21
+ setup() {
22
+ return {
23
+ ColorEnum
24
+ }
25
+ }
26
+ });
27
+ </script>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <FSButton
3
+ prependIcon="mdi-delete-outline"
4
+ :color="ColorEnum.Error"
5
+ v-bind="$attrs"
6
+ />
7
+ </template>
8
+
9
+ <script lang="ts">
10
+ import { defineComponent } from "vue";
11
+
12
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
13
+
14
+ import FSButton from "../FSButton.vue";
15
+
16
+ export default defineComponent({
17
+ name: "FSButtonRemoveMini",
18
+ components: {
19
+ FSButton
20
+ },
21
+ setup() {
22
+ return {
23
+ ColorEnum
24
+ }
25
+ }
26
+ });
27
+ </script>
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <FSButton
3
+ prependIcon="mdi-content-save-outline"
4
+ :label="$tr('ui.button.save', 'Save')"
5
+ :color="ColorEnum.Primary"
6
+ v-bind="$attrs"
7
+ />
8
+ </template>
9
+
10
+ <script lang="ts">
11
+ import { defineComponent } from "vue";
12
+
13
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
14
+
15
+ import FSButton from "../FSButton.vue";
16
+
17
+ export default defineComponent({
18
+ name: "FSButtonSave",
19
+ components: {
20
+ FSButton
21
+ },
22
+ setup() {
23
+ return {
24
+ ColorEnum
25
+ }
26
+ }
27
+ });
28
+ </script>
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <FSButton
3
+ icon="mdi-content-save-outline"
4
+ variant="icon"
5
+ :color="ColorEnum.Primary"
6
+ v-bind="$attrs"
7
+ />
8
+ </template>
9
+
10
+ <script lang="ts">
11
+ import { defineComponent } from "vue";
12
+
13
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
14
+
15
+ import FSButton from "../FSButton.vue";
16
+
17
+ export default defineComponent({
18
+ name: "FSButtonSaveIcon",
19
+ components: {
20
+ FSButton
21
+ },
22
+ setup() {
23
+ return {
24
+ ColorEnum
25
+ }
26
+ }
27
+ });
28
+ </script>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <FSButton
3
+ :label="$tr('ui.button.save', 'Save')"
4
+ :color="ColorEnum.Primary"
5
+ v-bind="$attrs"
6
+ />
7
+ </template>
8
+
9
+ <script lang="ts">
10
+ import { defineComponent } from "vue";
11
+
12
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
13
+
14
+ import FSButton from "../FSButton.vue";
15
+
16
+ export default defineComponent({
17
+ name: "FSButtonSaveLabel",
18
+ components: {
19
+ FSButton
20
+ },
21
+ setup() {
22
+ return {
23
+ ColorEnum
24
+ }
25
+ }
26
+ });
27
+ </script>
@@ -0,0 +1,27 @@
1
+ <template>
2
+ <FSButton
3
+ prependIcon="mdi-content-save-outline"
4
+ :color="ColorEnum.Primary"
5
+ v-bind="$attrs"
6
+ />
7
+ </template>
8
+
9
+ <script lang="ts">
10
+ import { defineComponent } from "vue";
11
+
12
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
13
+
14
+ import FSButton from "../FSButton.vue";
15
+
16
+ export default defineComponent({
17
+ name: "FSButtonSaveMini",
18
+ components: {
19
+ FSButton
20
+ },
21
+ setup() {
22
+ return {
23
+ ColorEnum
24
+ }
25
+ }
26
+ });
27
+ </script>
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <FSButton
3
+ prependIcon="mdi-magnify"
4
+ :label="$tr('ui.button.search', 'Search')"
5
+ :color="ColorEnum.Primary"
6
+ v-bind="$attrs"
7
+ />
8
+ </template>
9
+
10
+ <script lang="ts">
11
+ import { defineComponent } from "vue";
12
+
13
+ import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
14
+
15
+ import FSButton from "../FSButton.vue";
16
+
17
+ export default defineComponent({
18
+ name: "FSButtonSearch",
19
+ components: {
20
+ FSButton
21
+ },
22
+ setup() {
23
+ return {
24
+ ColorEnum
25
+ }
26
+ }
27
+ });
28
+ </script>