@dative-gpi/foundation-shared-components 0.0.13 → 0.0.14
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/components/FSCalendarTwin.vue +2 -0
- package/components/FSClock.vue +7 -15
- package/components/FSCol.vue +2 -2
- package/components/FSSlideGroup.vue +10 -11
- package/components/FSWrapGroup.vue +10 -11
- package/components/fields/FSAutocompleteField.vue +8 -2
- package/components/fields/FSColorField.vue +89 -78
- package/components/fields/FSDateField.vue +1 -1
- package/components/fields/FSDateRangeField.vue +1 -5
- package/components/fields/FSDateTimeField.vue +1 -1
- package/components/fields/FSDateTimeRangeField.vue +23 -15
- package/components/fields/FSIconField.vue +1 -5
- package/components/fields/FSNumberField.vue +17 -3
- package/components/fields/FSRichTextField.vue +10 -8
- package/components/fields/FSTagField.vue +3 -3
- package/components/fields/FSTextArea.vue +2 -2
- package/components/fields/FSTimeField.vue +118 -20
- package/components/fields/FSTimeSlotField.vue +59 -53
- package/components/lists/FSDataTableUI.vue +8 -10
- package/package.json +4 -4
- package/styles/components/fs_autocomplete_field.scss +3 -60
- package/styles/components/fs_color_field.scss +4 -0
- package/styles/components/fs_data_table.scss +7 -2
- package/styles/components/fs_rich_text_field.scss +1 -1
- package/styles/components/fs_select_field.scss +3 -4
- package/styles/components/fs_switch.scss +4 -4
- package/styles/components/fs_text_area.scss +2 -0
- package/styles/components/fs_text_field.scss +1 -0
- package/styles/components/fs_time_field.scss +13 -0
- package/styles/components/fs_timeslot_field.scss +4 -67
- package/styles/globals/overrides.scss +8 -6
- package/styles/main.scss +1 -3
- package/utils/icons.ts +88 -2
- package/pages/FSExternalIdentityButton.vue +0 -64
- package/pages/FSLanguageSetter.vue +0 -140
- package/pages/FSLoginPage.vue +0 -253
- package/styles/pages/fs_language_setter.scss +0 -55
- package/styles/pages/index.scss +0 -1
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
.fs-load-language-setter {
|
|
2
|
-
@include web {
|
|
3
|
-
height: 40px;
|
|
4
|
-
max-width: 360px;
|
|
5
|
-
}
|
|
6
|
-
@include mobile {
|
|
7
|
-
height: 36px;
|
|
8
|
-
max-width: 360px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
& .v-skeleton-loader__image {
|
|
12
|
-
border-radius: 4px;
|
|
13
|
-
height: 100%;
|
|
14
|
-
width: 100%;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.fs-load-language-setter-icon {
|
|
19
|
-
@include mobile {
|
|
20
|
-
width: 72px;
|
|
21
|
-
}
|
|
22
|
-
@include web {
|
|
23
|
-
width: 76px;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.fs-language-setter {
|
|
28
|
-
& > .v-input__control > .v-field {
|
|
29
|
-
padding: 0px 8px 0px 12px !important;
|
|
30
|
-
gap: 0px;
|
|
31
|
-
|
|
32
|
-
& > .v-field__field > .v-field__input {
|
|
33
|
-
padding-top: 0px;
|
|
34
|
-
padding-bottom: 0px;
|
|
35
|
-
|
|
36
|
-
& > .v-select__selection {
|
|
37
|
-
height: 100% !important;
|
|
38
|
-
|
|
39
|
-
& > .fs-row > .v-icon {
|
|
40
|
-
padding-bottom: 2px;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.fs-language-setter-icon {
|
|
48
|
-
@include mobile {
|
|
49
|
-
width: 72px;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
@include web {
|
|
53
|
-
width: 76px;
|
|
54
|
-
}
|
|
55
|
-
}
|
package/styles/pages/index.scss
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import "./fs_language_setter.scss";
|