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

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 (51) hide show
  1. package/components/FSButton.vue +2 -2
  2. package/components/FSDivider.vue +7 -2
  3. package/components/buttons/FSButtonCancel.vue +28 -0
  4. package/components/buttons/FSButtonCancelIcon.vue +28 -0
  5. package/components/buttons/FSButtonCancelLabel.vue +27 -0
  6. package/components/buttons/FSButtonCancelMini.vue +27 -0
  7. package/components/buttons/FSButtonDuplicate.vue +28 -0
  8. package/components/buttons/FSButtonDuplicateIcon.vue +28 -0
  9. package/components/buttons/FSButtonDuplicateLabel.vue +27 -0
  10. package/components/buttons/FSButtonDuplicateMini.vue +27 -0
  11. package/components/buttons/FSButtonEdit.vue +28 -0
  12. package/components/buttons/FSButtonEditIcon.vue +28 -0
  13. package/components/buttons/FSButtonEditLabel.vue +27 -0
  14. package/components/buttons/FSButtonEditMini.vue +27 -0
  15. package/components/buttons/FSButtonNext.vue +28 -0
  16. package/components/buttons/FSButtonNextIcon.vue +28 -0
  17. package/components/buttons/FSButtonNextLabel.vue +27 -0
  18. package/components/buttons/FSButtonNextMini.vue +27 -0
  19. package/components/buttons/FSButtonPrevious.vue +28 -0
  20. package/components/buttons/FSButtonPreviousIcon.vue +28 -0
  21. package/components/buttons/FSButtonPreviousLabel.vue +27 -0
  22. package/components/buttons/FSButtonPreviousMini.vue +27 -0
  23. package/components/buttons/FSButtonRedo.vue +28 -0
  24. package/components/buttons/FSButtonRedoIcon.vue +28 -0
  25. package/components/buttons/FSButtonRedoLabel.vue +27 -0
  26. package/components/buttons/FSButtonRedoMini.vue +27 -0
  27. package/components/buttons/FSButtonRemove.vue +28 -0
  28. package/components/buttons/FSButtonRemoveIcon.vue +28 -0
  29. package/components/buttons/FSButtonRemoveLabel.vue +27 -0
  30. package/components/buttons/FSButtonRemoveMini.vue +27 -0
  31. package/components/buttons/FSButtonSave.vue +28 -0
  32. package/components/buttons/FSButtonSaveIcon.vue +28 -0
  33. package/components/buttons/FSButtonSaveLabel.vue +27 -0
  34. package/components/buttons/FSButtonSaveMini.vue +27 -0
  35. package/components/buttons/FSButtonSearch.vue +28 -0
  36. package/components/buttons/FSButtonSearchIcon.vue +28 -0
  37. package/components/buttons/FSButtonSearchLabel.vue +27 -0
  38. package/components/buttons/FSButtonSearchMini.vue +27 -0
  39. package/components/buttons/FSButtonUndo.vue +28 -0
  40. package/components/buttons/FSButtonUndoIcon.vue +28 -0
  41. package/components/buttons/FSButtonUndoLabel.vue +27 -0
  42. package/components/buttons/FSButtonUndoMini.vue +27 -0
  43. package/components/buttons/FSButtonUpdate.vue +28 -0
  44. package/components/buttons/FSButtonUpdateIcon.vue +28 -0
  45. package/components/buttons/FSButtonUpdateLabel.vue +27 -0
  46. package/components/buttons/FSButtonUpdateMini.vue +27 -0
  47. package/components/buttons/FSButtonValidate.vue +28 -0
  48. package/components/buttons/FSButtonValidateIcon.vue +28 -0
  49. package/components/buttons/FSButtonValidateLabel.vue +27 -0
  50. package/components/buttons/FSButtonValidateMini.vue +27 -0
  51. package/package.json +4 -4
@@ -14,10 +14,10 @@
14
14
  >
15
15
  <slot name="prepend" v-bind="{ color: props.color, colors }">
16
16
  <FSIcon
17
- v-if="props.prependIcon"
17
+ v-if="props.prependIcon || props.icon"
18
18
  size="l"
19
19
  >
20
- {{ props.prependIcon }}
20
+ {{ props.prependIcon ?? props.icon }}
21
21
  </FSIcon>
22
22
  </slot>
23
23
  <slot v-bind="{ color: props.color, colors }">
@@ -15,7 +15,7 @@
15
15
  />
16
16
  <FSText
17
17
  variant="light"
18
- font="text-h4"
18
+ :font="$props.font"
19
19
  >
20
20
  <slot>
21
21
  {{ $props.label }}
@@ -29,7 +29,7 @@
29
29
  </template>
30
30
 
31
31
  <script lang="ts">
32
- import { computed, defineComponent } from "vue";
32
+ import { computed, defineComponent, PropType } from "vue";
33
33
 
34
34
  import { useColors, useSlots } from "@dative-gpi/foundation-shared-components/composables";
35
35
  import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
@@ -52,6 +52,11 @@ export default defineComponent({
52
52
  type: String,
53
53
  required: false,
54
54
  default: null
55
+ },
56
+ font: {
57
+ type: String as PropType<"text-h1" | "text-h2" | "text-h3" | "text-h4" | "text-body" | "text-button" | "text-overline" | "text-underline">,
58
+ required: false,
59
+ default: "text-body"
55
60
  }
56
61
  },
57
62
  setup(props) {
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <FSButton
3
+ prependIcon="mdi-cancel"
4
+ :label="$tr('ui.button.cancel', 'Cancel')"
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: "FSButtonCancel",
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-cancel"
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: "FSButtonCancelIcon",
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.cancel', 'Cancel')"
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: "FSButtonCancelLabel",
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-cancel"
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: "FSButtonCancelMini",
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-copy"
4
+ :label="$tr('ui.button.duplicate', 'Duplicate')"
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: "FSButtonDuplicate",
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-copy"
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: "FSButtonDuplicateIcon",
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.duplicate', 'Duplicate')"
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: "FSButtonDuplicateLabel",
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-copy"
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: "FSButtonDuplicateMini",
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-pencil-outline"
4
+ :label="$tr('ui.button.edit', 'Edit')"
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: "FSButtonEdit",
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-pencil-outline"
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: "FSButtonEditIcon",
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.edit', 'Edit')"
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: "FSButtonEditLabel",
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-pencil-outline"
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: "FSButtonEditMini",
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
+ 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>