@dative-gpi/foundation-shared-components 0.0.8 → 0.0.10
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/{models/FSButtons.ts → aliases/FSButton.ts} +24 -21
- package/aliases/index.ts +1 -0
- package/components/FSAutocompleteField.vue +207 -0
- package/components/FSBadge.vue +38 -0
- package/components/FSBreadcrumbs.vue +49 -55
- package/components/FSButton.vue +116 -101
- package/components/FSCalendar.vue +52 -39
- package/components/FSCalendarTwin.vue +120 -102
- package/components/FSCard.vue +35 -21
- package/components/FSCarousel.vue +63 -0
- package/components/FSCheckbox.vue +111 -103
- package/components/FSChip.vue +140 -0
- package/components/FSClock.vue +149 -15
- package/components/FSCol.vue +104 -98
- package/components/FSColor.vue +61 -64
- package/components/FSColorIcon.vue +67 -0
- package/components/FSContainer.vue +64 -0
- package/components/FSDateField.vue +211 -0
- package/components/FSDateRangeField.vue +225 -0
- package/components/FSDateTimeField.vue +257 -0
- package/components/FSDateTimeRangeField.vue +286 -0
- package/components/FSDialog.vue +103 -0
- package/components/FSDivider.vue +39 -0
- package/components/FSFadeOut.vue +49 -59
- package/components/FSFileButton.vue +245 -0
- package/components/FSHeaderButton.vue +17 -0
- package/components/FSIcon.vue +23 -23
- package/components/FSIconField.vue +232 -0
- package/components/FSImage.vue +142 -0
- package/components/FSLoadTile.vue +93 -0
- package/components/FSNumberField.vue +51 -53
- package/components/FSPasswordField.vue +99 -101
- package/components/FSRadio.vue +107 -109
- package/components/FSRadioGroup.vue +55 -57
- package/components/FSRemoveDialog.vue +123 -0
- package/components/FSRichTextField.vue +26 -33
- package/components/FSRow.vue +110 -104
- package/components/FSSearchField.vue +35 -27
- package/components/FSSelectField.vue +188 -0
- package/components/FSSlideGroup.vue +45 -49
- package/components/FSSlider.vue +31 -33
- package/components/FSSpan.vue +53 -37
- package/components/FSSubmitDialog.vue +165 -0
- package/components/FSSwitch.vue +110 -109
- package/components/FSTab.vue +61 -61
- package/components/FSTabs.vue +53 -55
- package/components/FSTag.vue +88 -84
- package/components/FSTagField.vue +32 -36
- package/components/FSTagGroup.vue +38 -45
- package/components/FSText.vue +74 -64
- package/components/FSTextArea.vue +187 -185
- package/components/FSTextField.vue +18 -20
- package/components/FSTile.vue +90 -0
- package/components/FSToggleSet.vue +282 -0
- package/components/FSTooltip.vue +21 -0
- package/components/FSWindow.vue +26 -16
- package/components/FSWrapGroup.vue +44 -47
- package/components/deviceOrganisations/FSConnectivity.vue +114 -0
- package/components/deviceOrganisations/FSStatus.vue +117 -0
- package/components/deviceOrganisations/FSStatusesCarousel.vue +105 -0
- package/components/deviceOrganisations/FSStatusesRow.vue +66 -0
- package/components/deviceOrganisations/FSWorstAlert.vue +165 -0
- package/components/lists/FSDataIteratorGroup.vue +7 -0
- package/components/lists/FSDataIteratorItem.vue +103 -0
- package/components/lists/FSDataTableUI.vue +982 -0
- package/components/lists/FSFilterButton.vue +177 -0
- package/components/lists/FSHeaderButton.vue +99 -0
- package/components/lists/FSHiddenButton.vue +81 -0
- package/components/tiles/FSDeviceOrganisationTileUI.vue +232 -0
- package/components/tiles/FSGroupTileUI.vue +192 -0
- package/composables/index.ts +1 -1
- package/composables/useBreakpoints.ts +23 -4
- package/composables/useColors.ts +53 -23
- package/composables/useSlots.ts +43 -0
- package/index.ts +6 -0
- package/models/breadcrumbs.ts +8 -0
- package/models/colors.ts +17 -0
- package/models/deviceAlerts.ts +10 -0
- package/models/deviceConnectivities.ts +11 -0
- package/models/deviceStatuses.ts +16 -0
- package/models/index.ts +9 -0
- package/models/modelStatuses.ts +11 -0
- package/models/rules.ts +50 -0
- package/models/tables.ts +33 -0
- package/models/toggleSets.ts +7 -0
- package/package.json +6 -4
- package/plugins/colorPlugin.ts +2 -2
- package/shims-plugin.d.ts +1 -1
- package/styles/components/fs_autocomplete_field.scss +123 -0
- package/styles/components/fs_button.scss +4 -6
- package/styles/components/fs_calendar.scss +24 -1
- package/styles/components/fs_card.scss +2 -5
- package/styles/components/fs_carousel.scss +4 -0
- package/styles/components/fs_chip.scss +33 -0
- package/styles/components/fs_clock.scss +43 -0
- package/styles/components/fs_col.scss +2 -0
- package/styles/components/fs_color_icon.scss +37 -0
- package/styles/components/fs_container.scss +16 -0
- package/styles/components/fs_data_iterator_item.scss +19 -0
- package/styles/components/fs_data_table.scss +97 -0
- package/styles/components/fs_date_field.scss +8 -0
- package/styles/components/fs_dialog.scss +30 -0
- package/styles/components/fs_divider.scss +5 -0
- package/styles/components/fs_fade_out.scss +10 -2
- package/styles/components/fs_filter_button.scss +21 -0
- package/styles/components/fs_header_button.scss +4 -0
- package/styles/components/fs_hidden_button.scss +12 -0
- package/styles/components/fs_icon.scss +19 -3
- package/styles/components/fs_icon_field.scss +12 -0
- package/styles/components/fs_image.scss +7 -0
- package/styles/components/fs_load_tile.scss +49 -0
- package/styles/components/fs_password_field.scss +2 -2
- package/styles/components/fs_row.scss +4 -1
- package/styles/components/fs_select_field.scss +71 -0
- package/styles/components/fs_slide_group.scss +6 -0
- package/styles/components/fs_slider.scss +29 -9
- package/styles/components/fs_span.scss +8 -0
- package/styles/components/fs_submit_dialog.scss +9 -0
- package/styles/components/fs_tabs.scss +4 -0
- package/styles/components/fs_tag_field.scss +0 -11
- package/styles/components/fs_text_field.scss +23 -15
- package/styles/components/fs_tile.scss +33 -0
- package/styles/components/fs_tooltip.scss +5 -0
- package/styles/components/fs_wrap_group.scss +7 -8
- package/styles/components/index.scss +22 -1
- package/styles/globals/breakpoints.scss +7 -0
- package/styles/globals/overrides.scss +20 -7
- package/styles/globals/text_fonts.scss +8 -8
- package/themes/default.ts +1 -11
- package/utils/css.ts +11 -0
- package/utils/icons.ts +75416 -0
- package/utils/index.ts +5 -1
- package/utils/levenshtein.ts +97 -0
- package/utils/sort.ts +9 -0
- package/components/FSDatePicker.vue +0 -226
- package/composables/useDates.ts +0 -39
- package/models/FSTags.ts +0 -8
- package/models/FSTextFields.ts +0 -23
- package/styles/components/fs_date_picker.scss +0 -0
- /package/utils/{FSRichTextField.ts → lexical.ts} +0 -0
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
.fs-autocomplete-field {
|
|
2
|
+
padding: 0px !important;
|
|
3
|
+
width: 100%;
|
|
4
|
+
|
|
5
|
+
& > .v-input__control > .v-field {
|
|
6
|
+
border: 1px solid var(--fs-autocomplete-field-border-color) !important;
|
|
7
|
+
cursor: var(--fs-autocomplete-field-cursor) !important;
|
|
8
|
+
border-radius: 4px !important;
|
|
9
|
+
padding: 0 16px !important;
|
|
10
|
+
gap: 8px;
|
|
11
|
+
|
|
12
|
+
&--error {
|
|
13
|
+
border-color: var(--fs-autocomplete-field-error-border-color) !important;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&:not(.v-field--error):focus-within {
|
|
17
|
+
border-color: var(--fs-autocomplete-field-active-border-color) !important;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
& > .v-field__outline {
|
|
21
|
+
display: none;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
& > .v-field__field > .v-field__input {
|
|
25
|
+
@extend .text-body;
|
|
26
|
+
|
|
27
|
+
padding-inline: 0 !important;
|
|
28
|
+
color: var(--fs-autocomplete-field-color);
|
|
29
|
+
cursor: var(--fs-autocomplete-field-cursor) !important;
|
|
30
|
+
|
|
31
|
+
@include web {
|
|
32
|
+
min-height: 38px !important;
|
|
33
|
+
height: 38px !important;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@include mobile {
|
|
37
|
+
min-height: 34px !important;
|
|
38
|
+
height: 34px !important;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
& > .v-autocomplete__selection {
|
|
42
|
+
@include web {
|
|
43
|
+
margin-top: -16px;
|
|
44
|
+
height: 38px !important;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@include mobile {
|
|
48
|
+
margin-top: -15px;
|
|
49
|
+
height: 34px !important;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
& > input {
|
|
54
|
+
@include web {
|
|
55
|
+
top: 16px;
|
|
56
|
+
margin-top: -16px;
|
|
57
|
+
height: 38px !important;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@include mobile {
|
|
61
|
+
top: 17px;
|
|
62
|
+
margin-top: -17px;
|
|
63
|
+
height: 34px !important;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
& > .v-field__clearable {
|
|
69
|
+
margin-inline: 0px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
& > .v-field__append-inner {
|
|
73
|
+
color: var(--fs-autocomplete-field-color);
|
|
74
|
+
|
|
75
|
+
& > i {
|
|
76
|
+
margin-inline-start: 0px;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.fs-autocomplete-multiple-field {
|
|
83
|
+
& > .v-input__control > .v-field {
|
|
84
|
+
& > .v-field__field > .v-field__input {
|
|
85
|
+
& > .v-autocomplete__selection {
|
|
86
|
+
@include web {
|
|
87
|
+
margin-top: -16px;
|
|
88
|
+
height: 38px !important;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@include mobile {
|
|
92
|
+
margin-top: -15px;
|
|
93
|
+
height: 34px !important;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
& > input {
|
|
98
|
+
@include web {
|
|
99
|
+
margin-top: -16px;
|
|
100
|
+
height: 38px !important;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
@include mobile {
|
|
104
|
+
margin-top: -17px;
|
|
105
|
+
height: 34px !important;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.fs-autocomplete-field-label {
|
|
113
|
+
color: var(--fs-autocomplete-field-color);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.fs-autocomplete-field-messages {
|
|
117
|
+
align-self: stretch;
|
|
118
|
+
color: var(--fs-autocomplete-field-error-color);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.fs-autocomplete-field-description {
|
|
122
|
+
color: var(--fs-autocomplete-field-color);
|
|
123
|
+
}
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
border-color: var(--fs-button-border-color) !important;
|
|
9
9
|
color: var(--fs-button-color) !important;
|
|
10
10
|
|
|
11
|
-
&.fs-button
|
|
12
|
-
|
|
11
|
+
&.fs-button-full-width {
|
|
12
|
+
width: 100%;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
&:not(.fs-button--disabled):hover {
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
@include web {
|
|
27
|
-
min-width:
|
|
28
|
-
height:
|
|
27
|
+
min-width: 40px !important;
|
|
28
|
+
height: 40px !important;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
@include mobile {
|
|
@@ -37,8 +37,6 @@
|
|
|
37
37
|
.fs-button-icon {
|
|
38
38
|
transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
|
|
39
39
|
color: var(--fs-button-color) !important;
|
|
40
|
-
width: 20px !important;
|
|
41
|
-
height: 20px !important;
|
|
42
40
|
|
|
43
41
|
&:not(.fs-button--disabled):hover {
|
|
44
42
|
color: var(--fs-button-hover-color) !important;
|
|
@@ -11,6 +11,29 @@
|
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
+
.fs-calendar-half {
|
|
15
|
+
background-color: var(--fs-calendar-background-color) !important;
|
|
16
|
+
color: var(--fs-calendar-color) !important;
|
|
17
|
+
|
|
18
|
+
& > .v-locale-provider > .v-date-picker-month {
|
|
19
|
+
padding: 0 !important;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.fs-calendar-left {
|
|
24
|
+
padding-right: 8px !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.fs-calendar-right {
|
|
28
|
+
padding-left: 8px !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.fs-calendar-twin {
|
|
32
|
+
border: 1px solid var(--fs-calendar-border-color) !important;
|
|
33
|
+
border-radius: 4px !important;
|
|
34
|
+
padding: 8px !important;
|
|
35
|
+
}
|
|
36
|
+
|
|
14
37
|
.fs-calendar-header {
|
|
15
38
|
justify-content: space-between !important;
|
|
16
39
|
padding: 8px 0 !important;
|
|
@@ -82,7 +105,7 @@
|
|
|
82
105
|
color: var(--fs-calendar-hover-color);
|
|
83
106
|
}
|
|
84
107
|
|
|
85
|
-
& .v-date-picker-month__day--selected ~ .v-date-picker-month__day > button {
|
|
108
|
+
& .v-date-picker-month__day--selected:not(.v-date-picker-month__day--adjacent) ~ .v-date-picker-month__day > button {
|
|
86
109
|
background-color: var(--fs-calendar-background-color);
|
|
87
110
|
border-color: transparent;
|
|
88
111
|
border: none;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
.fs-chip {
|
|
2
|
+
user-select: none;
|
|
3
|
+
transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
|
4
|
+
background-color: var(--fs-chip-background-color) !important;
|
|
5
|
+
border: 1px solid var(--fs-chip-border-color) !important;
|
|
6
|
+
color: var(--fs-chip-color) !important;
|
|
7
|
+
border-radius: 50px !important;
|
|
8
|
+
padding: 2px 20px !important;
|
|
9
|
+
|
|
10
|
+
@include web {
|
|
11
|
+
height: 24px !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@include mobile {
|
|
15
|
+
height: 20px !important;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.fs-chip-editable {
|
|
20
|
+
cursor: pointer !important;
|
|
21
|
+
|
|
22
|
+
&:hover {
|
|
23
|
+
background-color: var(--fs-chip-hover-background-color) !important;
|
|
24
|
+
border-color: var(--fs-chip-hover-border-color) !important;
|
|
25
|
+
color: var(--fs-chip-hover-color) !important;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&:active {
|
|
29
|
+
background-color: var(--fs-chip-active-background-color) !important;
|
|
30
|
+
border-color: var(--fs-chip-active-border-color) !important;
|
|
31
|
+
color: var(--fs-chip-active-color) !important;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
.fs-clock-field {
|
|
2
|
+
padding: 0px !important;
|
|
3
|
+
width: 72px !important;
|
|
4
|
+
|
|
5
|
+
&.v-input {
|
|
6
|
+
flex: 0 0 auto !important;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
& > .v-input__control > .v-field {
|
|
10
|
+
background-color: var(--fs-clock-field-background-color) !important;
|
|
11
|
+
border: 1px solid var(--fs-clock-field-border-color) !important;
|
|
12
|
+
border-radius: 4px !important;
|
|
13
|
+
padding: 0 16px !important;
|
|
14
|
+
|
|
15
|
+
&:not(.v-field--error):focus-within {
|
|
16
|
+
border-color: var(--fs-clock-field-active-border-color) !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
& > .v-field__outline {
|
|
20
|
+
display: none;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
& > .v-field__field > input {
|
|
24
|
+
@extend .text-h3;
|
|
25
|
+
|
|
26
|
+
display: flex;
|
|
27
|
+
padding-inline: 0 !important;
|
|
28
|
+
text-align: center;
|
|
29
|
+
cursor: var(--fs-clock-field-cursor) !important;
|
|
30
|
+
color: var(--fs-clock-field-color);
|
|
31
|
+
|
|
32
|
+
@include web {
|
|
33
|
+
min-height: 38px !important;
|
|
34
|
+
height: 38px !important;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@include mobile {
|
|
38
|
+
min-height: 34px !important;
|
|
39
|
+
height: 34px !important;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
.fs-color-icon {
|
|
2
|
+
background-color: var(--fs-icon-background-color);
|
|
3
|
+
border-radius: 4px;
|
|
4
|
+
|
|
5
|
+
&.fs-icon-s {
|
|
6
|
+
@include web {
|
|
7
|
+
width: 20px;
|
|
8
|
+
height: 20px;
|
|
9
|
+
}
|
|
10
|
+
@include mobile {
|
|
11
|
+
width: 18px;
|
|
12
|
+
height: 18px;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&.fs-icon-m {
|
|
17
|
+
@include web {
|
|
18
|
+
width: 26px;
|
|
19
|
+
height: 26px;
|
|
20
|
+
}
|
|
21
|
+
@include mobile {
|
|
22
|
+
width: 20px;
|
|
23
|
+
height: 20px;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.fs-icon-l {
|
|
28
|
+
@include web {
|
|
29
|
+
width: 40px;
|
|
30
|
+
height: 40px;
|
|
31
|
+
}
|
|
32
|
+
@include mobile {
|
|
33
|
+
width: 36px;
|
|
34
|
+
height: 36px;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.fs-container {
|
|
2
|
+
display: flex;
|
|
3
|
+
padding: var(--fs-container-padding);
|
|
4
|
+
background-color: var(--fs-container-background-color);
|
|
5
|
+
|
|
6
|
+
&-border {
|
|
7
|
+
border-radius: 4px;
|
|
8
|
+
border: 1px solid var(--fs-container-border-color);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&-elevation {
|
|
12
|
+
margin: 4px;
|
|
13
|
+
border-radius: 4px;
|
|
14
|
+
box-shadow: 0px 1px 8px 0px #00000029;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.fs-data-iterator-item {
|
|
2
|
+
position: relative;
|
|
3
|
+
min-height: 36px;
|
|
4
|
+
|
|
5
|
+
& > .fs-col > .fs-row:first-of-type > :last-child {
|
|
6
|
+
padding-right: 22px;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.fs-data-iterator-item-checkbox {
|
|
11
|
+
border-radius: 4px;
|
|
12
|
+
position: absolute;
|
|
13
|
+
align-items: center;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
top: 1px;
|
|
16
|
+
right: 1px;
|
|
17
|
+
width: 32px;
|
|
18
|
+
height: 32px;
|
|
19
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
.fs-data-table {
|
|
2
|
+
th,
|
|
3
|
+
td {
|
|
4
|
+
position: relative;
|
|
5
|
+
background-color: var(--fs-data-table-background-color) !important;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
th {
|
|
9
|
+
box-shadow: none !important;
|
|
10
|
+
|
|
11
|
+
&:hover .fs-header-button {
|
|
12
|
+
opacity: 1;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
th:after {
|
|
17
|
+
content: "";
|
|
18
|
+
position: absolute;
|
|
19
|
+
bottom: 8px;
|
|
20
|
+
right: 0;
|
|
21
|
+
height: calc(100% - 16px);
|
|
22
|
+
border-right: 1px solid var(--fs-data-table-border-color);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
td {
|
|
26
|
+
border-bottom: none !important;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
th:last-of-type:after,
|
|
30
|
+
td:last-of-type:after {
|
|
31
|
+
border-right: none;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
th:before,
|
|
35
|
+
td:not(.fs-data-table-group-header):before {
|
|
36
|
+
content: "";
|
|
37
|
+
position: absolute;
|
|
38
|
+
left: 0;
|
|
39
|
+
bottom: 0;
|
|
40
|
+
width: 100%;
|
|
41
|
+
border-bottom: 1px solid var(--fs-data-table-border-color);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
th:first-of-type:before,
|
|
45
|
+
td:first-of-type:before {
|
|
46
|
+
left: 8px;
|
|
47
|
+
width: calc(100% - 8px);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
th:last-of-type:before,
|
|
51
|
+
td:last-of-type:before {
|
|
52
|
+
right: 8px;
|
|
53
|
+
width: calc(100% - 8px);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.fs-data-table-grouped {
|
|
58
|
+
& th:first-of-type {
|
|
59
|
+
display: none;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
& td:first-of-type {
|
|
63
|
+
display: none;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
& .fs-data-table-group-header {
|
|
67
|
+
padding: 0 !important;
|
|
68
|
+
|
|
69
|
+
&:after {
|
|
70
|
+
content: none !important;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.fs-data-table-iterator {
|
|
76
|
+
width: 100%;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.fs-data-table-footer {
|
|
80
|
+
background-color: var(--fs-data-table-background-color);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.fs-data-table-pagination {
|
|
84
|
+
@include web {
|
|
85
|
+
width: 172px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@include mobile {
|
|
89
|
+
width: 172px;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.fs-data-table-intersection {
|
|
94
|
+
margin-top: -8px;
|
|
95
|
+
height: 10px;
|
|
96
|
+
width: 100%;
|
|
97
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
.v-overlay__scrim:has(.v-overlay__content:has(.fs-dialog-mobile)) {
|
|
2
|
+
display: flex;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.v-overlay__content:has(.fs-dialog-mobile) {
|
|
6
|
+
justify-content: flex-end;
|
|
7
|
+
align-self: flex-end;
|
|
8
|
+
margin-top: 20vh !important;
|
|
9
|
+
max-width: 100% !important;
|
|
10
|
+
width: 100% !important;
|
|
11
|
+
margin: 0px !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.fs-dialog {
|
|
15
|
+
position: relative;
|
|
16
|
+
max-width: 90vw !important;
|
|
17
|
+
max-height: 90vw !important;
|
|
18
|
+
|
|
19
|
+
&.fs-dialog-mobile {
|
|
20
|
+
border-top-left-radius: 4px;
|
|
21
|
+
border-top-right-radius: 4px;
|
|
22
|
+
max-width: 100vw !important;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.fs-dialog-close-button {
|
|
27
|
+
position: absolute;
|
|
28
|
+
top: 6px;
|
|
29
|
+
right: 6px;
|
|
30
|
+
}
|
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
.fs-fade-out {
|
|
2
2
|
@extend .fs-hide-y-scrollbar;
|
|
3
|
+
|
|
4
|
+
flex-direction: column;
|
|
5
|
+
position: relative;
|
|
6
|
+
display: flex;
|
|
3
7
|
}
|
|
4
8
|
|
|
5
9
|
.fs-fade-out-top {
|
|
6
10
|
pointer-events: none;
|
|
7
11
|
position: sticky;
|
|
8
|
-
|
|
12
|
+
display: flex;
|
|
13
|
+
z-index: 10;
|
|
9
14
|
height: var(--fs-fade-out-top-mask-height);
|
|
15
|
+
min-height: var(--fs-fade-out-top-mask-height);
|
|
10
16
|
width: 100%;
|
|
11
17
|
top: 0;
|
|
12
18
|
left: 0;
|
|
@@ -17,8 +23,10 @@
|
|
|
17
23
|
.fs-fade-out-bottom {
|
|
18
24
|
pointer-events: none;
|
|
19
25
|
position: sticky;
|
|
20
|
-
|
|
26
|
+
display: flex;
|
|
27
|
+
z-index: 10;
|
|
21
28
|
height: var(--fs-fade-out-bottom-mask-height);
|
|
29
|
+
min-height: var(--fs-fade-out-bottom-mask-height);
|
|
22
30
|
width: 100%;
|
|
23
31
|
bottom: 0;
|
|
24
32
|
left: 0;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
.fs-filter-button-menu {
|
|
2
|
+
@include web {
|
|
3
|
+
min-width: 200px !important;
|
|
4
|
+
}
|
|
5
|
+
@include mobile {
|
|
6
|
+
min-width: 180px !important;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.fs-filter-button-all {
|
|
11
|
+
width: calc(100% - 16px) !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.fs-filter-button-fade {
|
|
15
|
+
padding-right: 8px;
|
|
16
|
+
max-height: 360px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.fs-filter-button-chip {
|
|
20
|
+
width: 100%;
|
|
21
|
+
}
|
|
@@ -1,11 +1,27 @@
|
|
|
1
1
|
.fs-icon-s {
|
|
2
|
-
|
|
2
|
+
@include web {
|
|
3
|
+
font-size: 16px !important;
|
|
4
|
+
}
|
|
5
|
+
@include mobile {
|
|
6
|
+
font-size: 14px !important;
|
|
7
|
+
}
|
|
3
8
|
}
|
|
4
9
|
|
|
5
10
|
.fs-icon-m {
|
|
6
|
-
|
|
11
|
+
@include web {
|
|
12
|
+
font-size: 20px !important;
|
|
13
|
+
}
|
|
14
|
+
@include mobile {
|
|
15
|
+
font-size: 16px !important;
|
|
16
|
+
}
|
|
7
17
|
}
|
|
8
18
|
|
|
9
19
|
.fs-icon-l {
|
|
10
|
-
|
|
20
|
+
@include web {
|
|
21
|
+
font-size: 24px !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@include mobile {
|
|
25
|
+
font-size: 20px !important;
|
|
26
|
+
}
|
|
11
27
|
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
.fs-load-tile {
|
|
2
|
+
position: relative;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.fs-load-tile .v-skeleton-loader {
|
|
6
|
+
background-color: var(--fs-load-tile-background-color);
|
|
7
|
+
|
|
8
|
+
& .v-skeleton-loader__article {
|
|
9
|
+
gap: 8px;
|
|
10
|
+
|
|
11
|
+
@include web {
|
|
12
|
+
width: 204px;
|
|
13
|
+
height: 100px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@include mobile {
|
|
17
|
+
width: 198px;
|
|
18
|
+
height: 90px;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
& .v-skeleton-loader__heading {
|
|
23
|
+
margin: 0;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
& .v-skeleton-loader__paragraph {
|
|
27
|
+
gap: 8px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
& .v-skeleton-loader__text {
|
|
31
|
+
margin: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
& .v-skeleton-loader__bone {
|
|
35
|
+
border-radius: 4px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
& .v-skeleton-loader__image {
|
|
39
|
+
@include web {
|
|
40
|
+
width: 100px;
|
|
41
|
+
height: 100px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
@include mobile {
|
|
45
|
+
width: 90px;
|
|
46
|
+
height: 90px;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|