@dative-gpi/foundation-shared-components 1.1.24-unit-formatter → 1.1.24-unit-formatter-2
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/assets/images/map/open-street-map.png +0 -0
- package/components/FSAccordionPanel.vue +2 -0
- package/components/FSButton.vue +43 -87
- package/components/FSCard.vue +208 -100
- package/components/FSCardPlaceholder.vue +29 -25
- package/components/FSChip.vue +54 -127
- package/components/FSChipGroup.vue +141 -23
- package/components/FSClickable.vue +24 -326
- package/components/FSColor.vue +3 -3
- package/components/FSColorIcon.vue +1 -0
- package/components/FSDialogContent.vue +39 -28
- package/components/FSDialogFormBody.vue +2 -0
- package/components/FSDialogMenu.vue +8 -1
- package/components/FSDialogMultiFormBody.vue +6 -5
- package/components/FSDivider.vue +5 -1
- package/components/FSEditImageUI.vue +21 -30
- package/components/FSGridMosaic.vue +2 -0
- package/components/FSGroupingChip.vue +115 -0
- package/components/FSIconCard.vue +3 -1
- package/components/FSIconCheck.vue +8 -0
- package/components/FSImageCard.vue +4 -4
- package/components/FSInstantPicker.vue +2 -0
- package/components/FSLink.vue +1 -13
- package/components/FSOptionItem.vue +4 -4
- package/components/FSOptionsMenu.vue +6 -6
- package/components/FSPlayButtons.vue +11 -9
- package/components/FSProgressBar.vue +142 -28
- package/components/FSRangePicker.vue +2 -0
- package/components/FSRouterLink.vue +84 -14
- package/components/FSSlideGroup.vue +5 -1
- package/components/FSSnackbar.vue +146 -0
- package/components/FSSubgroupingChip.vue +138 -0
- package/components/FSWindow.vue +2 -0
- package/components/agenda/FSAgendaHorizontalEvent.vue +4 -4
- package/components/agenda/FSAgendaVerticalEvent.vue +4 -4
- package/components/deviceOrganisations/FSStatusRichCard.vue +4 -7
- package/components/fields/FSAutocompleteField.vue +1 -0
- package/components/fields/FSDurationField.vue +184 -0
- package/components/fields/FSEntityFieldUI.vue +12 -0
- package/components/fields/FSRichTextField.vue +2 -0
- package/components/lists/FSDataIteratorItem.vue +2 -0
- package/components/lists/FSDataTableUI.vue +12 -0
- package/components/lists/FSFilterButton.vue +34 -23
- package/components/lists/FSHeaderButton.vue +6 -3
- package/components/lists/FSTileList.vue +23 -6
- package/components/map/FSMap.vue +1 -1
- package/components/map/FSMapMarker.vue +4 -3
- package/components/selects/FSSelectMapLayer.vue +5 -0
- package/components/tiles/FSChartTileUI.vue +2 -0
- package/components/tiles/FSFolderTileUI.vue +2 -2
- package/components/tiles/FSLocationTileUI.vue +2 -0
- package/components/tiles/FSPlaylistTileUI.vue +149 -0
- package/components/tiles/FSServiceAccountOrganisationTileUI.vue +2 -0
- package/components/tiles/FSSubgroupingTileUI.vue +97 -0
- package/components/tiles/FSTile.vue +32 -64
- package/components/tiles/FSUserOrganisationTileUI.vue +2 -0
- package/components/toggleSets/FSToggleSetPosition.vue +5 -0
- package/composables/useMapLayers.ts +12 -0
- package/models/index.ts +2 -1
- package/models/map.ts +2 -1
- package/models/tables.ts +1 -0
- package/models/variants.ts +33 -0
- package/package.json +4 -4
- package/styles/components/fs_button.scss +1 -7
- package/styles/components/fs_card.scss +75 -4
- package/styles/components/fs_chip.scss +0 -29
- package/styles/components/fs_filter_button.scss +6 -1
- package/styles/components/fs_map.scss +7 -1
- package/styles/components/fs_progress_bar.scss +62 -6
- package/styles/components/fs_snackbar.scss +7 -0
- package/styles/components/index.scss +1 -2
- package/styles/globals/overrides.scss +1 -1
- package/styles/components/fs_clickable.scss +0 -69
- package/styles/components/fs_color_icon.scss +0 -3
|
@@ -1,32 +1,3 @@
|
|
|
1
|
-
.fs-chip-container {
|
|
2
|
-
text-decoration: none;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
1
|
.fs-chip {
|
|
6
2
|
user-select: none;
|
|
7
|
-
transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
|
8
|
-
background-color: var(--fs-chip-background-color) !important;
|
|
9
|
-
border: 1px solid var(--fs-chip-border-color) !important;
|
|
10
|
-
height: var(--fs-chip-height) !important;
|
|
11
|
-
color: var(--fs-chip-color) !important;
|
|
12
|
-
border-radius: 50px !important;
|
|
13
|
-
padding: 2px 20px !important;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.fs-chip-clickable {
|
|
17
|
-
cursor: pointer !important;
|
|
18
|
-
|
|
19
|
-
&:active {
|
|
20
|
-
background-color: var(--fs-chip-active-background-color) !important;
|
|
21
|
-
border-color: var(--fs-chip-active-border-color) !important;
|
|
22
|
-
color: var(--fs-chip-active-color) !important;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
@include clickscreen {
|
|
26
|
-
&:hover {
|
|
27
|
-
background-color: var(--fs-chip-hover-background-color) !important;
|
|
28
|
-
border-color: var(--fs-chip-hover-border-color) !important;
|
|
29
|
-
color: var(--fs-chip-hover-color) !important;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
3
|
}
|
|
@@ -27,12 +27,18 @@
|
|
|
27
27
|
transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
.fs-map-overlay-desktop {
|
|
31
31
|
position: absolute;
|
|
32
32
|
top: 0;
|
|
33
33
|
left: 0;
|
|
34
34
|
margin: 12px;
|
|
35
35
|
max-height: calc(100% - 24px);
|
|
36
|
+
display: flex;
|
|
37
|
+
flex-direction: column;
|
|
38
|
+
|
|
39
|
+
.fs-card {
|
|
40
|
+
min-height: 0;
|
|
41
|
+
}
|
|
36
42
|
}
|
|
37
43
|
|
|
38
44
|
.fs-map-layer-button {
|
|
@@ -1,14 +1,70 @@
|
|
|
1
|
-
.fs-progress-bar-
|
|
1
|
+
.fs-progress-bar-wrapper {
|
|
2
2
|
flex: 1;
|
|
3
|
-
|
|
3
|
+
display: flex;
|
|
4
|
+
flex-direction: column;
|
|
5
|
+
gap: 2px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.fs-progress-bar-track {
|
|
9
|
+
position: relative;
|
|
10
|
+
background-color: var(--progress-bar-background);
|
|
4
11
|
height: 8px;
|
|
5
12
|
border-radius: 4px;
|
|
6
13
|
|
|
7
|
-
|
|
8
|
-
|
|
14
|
+
.fs-progress-bar-fill {
|
|
15
|
+
position: absolute;
|
|
9
16
|
height: 100%;
|
|
10
|
-
|
|
11
|
-
width: var(--progress-bar-
|
|
17
|
+
left: var(--progress-bar-fill-left);
|
|
18
|
+
width: var(--progress-bar-fill-width);
|
|
19
|
+
background: linear-gradient(
|
|
20
|
+
to right,
|
|
21
|
+
var(--progress-bar-gradient-start) var(--progress-bar-gradient-start-stop),
|
|
22
|
+
var(--progress-bar-gradient-end) var(--progress-bar-gradient-end-stop)
|
|
23
|
+
);
|
|
12
24
|
border-radius: 4px;
|
|
25
|
+
transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.fs-progress-bar-cursor {
|
|
29
|
+
position: absolute;
|
|
30
|
+
top: 50%;
|
|
31
|
+
left: var(--progress-bar-cursor-position);
|
|
32
|
+
width: 14px;
|
|
33
|
+
height: 14px;
|
|
34
|
+
border-radius: 50%;
|
|
35
|
+
background: linear-gradient(
|
|
36
|
+
to right,
|
|
37
|
+
var(--progress-bar-gradient-start),
|
|
38
|
+
var(--progress-bar-gradient-end)
|
|
39
|
+
);
|
|
40
|
+
transform: translate(-50%, -50%);
|
|
41
|
+
transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
|
42
|
+
|
|
43
|
+
.fs-progress-bar-cursor-label {
|
|
44
|
+
position: absolute;
|
|
45
|
+
top: calc(100% + 4px);
|
|
46
|
+
left: 50%;
|
|
47
|
+
transform: translateX(-50%);
|
|
48
|
+
white-space: nowrap;
|
|
49
|
+
pointer-events: none;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.fs-progress-bar-labels {
|
|
55
|
+
position: relative;
|
|
56
|
+
height: 16px;
|
|
57
|
+
|
|
58
|
+
.fs-progress-bar-label {
|
|
59
|
+
position: absolute;
|
|
60
|
+
transform: translateX(-50%);
|
|
61
|
+
|
|
62
|
+
&.fs-progress-bar-label--start {
|
|
63
|
+
transform: translateX(0);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&.fs-progress-bar-label--end {
|
|
67
|
+
transform: translateX(-100%);
|
|
68
|
+
}
|
|
13
69
|
}
|
|
14
70
|
}
|
|
@@ -12,12 +12,10 @@
|
|
|
12
12
|
@import "fs_card.scss";
|
|
13
13
|
@import "fs_checkbox.scss";
|
|
14
14
|
@import "fs_chip.scss";
|
|
15
|
-
@import "fs_clickable.scss";
|
|
16
15
|
@import "fs_clock.scss";
|
|
17
16
|
@import "fs_col.scss";
|
|
18
17
|
@import "fs_color_field.scss";
|
|
19
18
|
@import "fs_color.scss";
|
|
20
|
-
@import "fs_color_icon.scss";
|
|
21
19
|
@import "fs_data_table.scss";
|
|
22
20
|
@import "fs_dialog_menu.scss";
|
|
23
21
|
@import "fs_dialog.scss";
|
|
@@ -53,6 +51,7 @@
|
|
|
53
51
|
@import "fs_select_field.scss";
|
|
54
52
|
@import "fs_slide_group.scss";
|
|
55
53
|
@import "fs_slider.scss";
|
|
54
|
+
@import "fs_snackbar.scss";
|
|
56
55
|
@import "fs_span.scss";
|
|
57
56
|
@import "fs_status_rich_card.scss";
|
|
58
57
|
@import "fs_switch.scss";
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
.fs-clickable {
|
|
2
|
-
border: var(--fs-clickable-border-size) var(--fs-clickable-border-style) !important;
|
|
3
|
-
border-radius: var(--fs-clickable-border-radius) !important;
|
|
4
|
-
transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
|
5
|
-
cursor: pointer;
|
|
6
|
-
|
|
7
|
-
background-color: var(--fs-clickable-background-color) !important;
|
|
8
|
-
border-color: var(--fs-clickable-border-color) !important;
|
|
9
|
-
color: var(--fs-clickable-color) !important;
|
|
10
|
-
|
|
11
|
-
&.fs-clickable-disabled {
|
|
12
|
-
cursor: default;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
&:not(.fs-clickable-disabled):active:not(:has( .fs-stopclick:hover)) {
|
|
16
|
-
background-color: var(--fs-clickable-active-background-color) !important;
|
|
17
|
-
border-color: var(--fs-clickable-active-border-color) !important;
|
|
18
|
-
color: var(--fs-clickable-active-color) !important;
|
|
19
|
-
|
|
20
|
-
& .fs-card-clickable {
|
|
21
|
-
transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22
|
-
background-color: var(--fs-clickable-active-background-color);
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
@include clickscreen {
|
|
27
|
-
&:not(.fs-clickable-disabled):hover:not(:has( .fs-stopclick:hover)) {
|
|
28
|
-
background-color: var(--fs-clickable-hover-background-color) !important;
|
|
29
|
-
border-color: var(--fs-clickable-hover-border-color) !important;
|
|
30
|
-
color: var(--fs-clickable-hover-color) !important;
|
|
31
|
-
|
|
32
|
-
& .fs-card-clickable {
|
|
33
|
-
transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
|
34
|
-
background-color: var(--fs-clickable-hover-background-color);
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
a:has(.fs-clickable) {
|
|
41
|
-
position: relative !important;
|
|
42
|
-
text-decoration: none;
|
|
43
|
-
padding: 0 !important;
|
|
44
|
-
height: var(--fs-clickable-height);
|
|
45
|
-
width: var(--fs-clickable-width);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
button:has(.fs-clickable) {
|
|
49
|
-
position: relative;
|
|
50
|
-
height: var(--fs-clickable-height);
|
|
51
|
-
width: var(--fs-clickable-width);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.fs-clickable-load {
|
|
55
|
-
cursor: default;
|
|
56
|
-
position: absolute !important;
|
|
57
|
-
height: 100% !important;
|
|
58
|
-
width: 100% !important;
|
|
59
|
-
left: 0;
|
|
60
|
-
top: 0;
|
|
61
|
-
|
|
62
|
-
& > svg {
|
|
63
|
-
height: 24px !important;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
*:has(~ .fs-clickable-load) > * {
|
|
68
|
-
opacity: 0;
|
|
69
|
-
}
|