@rio-cloud/rio-uikit 0.15.0-beta-45 → 0.15.0-beta-49
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/README.md +12 -8
- package/lib/components/actionBarItem/ActionBarItem.js +9 -0
- package/lib/components/actionBarItem/ActionBarItemList.js +38 -0
- package/lib/components/actionBarItem/ActionBarItemListItem.js +51 -0
- package/lib/components/actionBarItem/ActionBarItemListSeparator.js +37 -0
- package/lib/components/actionBarItem/ActionBarOverlay.js +2 -2
- package/lib/components/animatedNumber/AnimatedNumber.js +81 -0
- package/lib/components/applicationHeader/ApplicationHeader.js +4 -1
- package/lib/components/applicationLayout/ApplicationLayoutBody.js +3 -1
- package/lib/components/assetTree/AssetTree.less +1 -0
- package/lib/components/assetTree/Tree.js +3 -3
- package/lib/components/autosuggest/AutoSuggest.js +5 -3
- package/lib/components/bottomSheet/BottomSheet.js +157 -0
- package/lib/components/button/Button.js +127 -7
- package/lib/components/button/ToggleButton.js +11 -108
- package/lib/components/charts/BarChart.js +4 -3
- package/lib/components/charts/ChartNeedle.js +57 -0
- package/lib/components/charts/PieChart.js +19 -15
- package/lib/components/charts/RadialBarChart.js +4 -1
- package/lib/components/charts/chartHelper.js +3 -3
- package/lib/components/checkbox/Checkbox.js +127 -171
- package/lib/components/checkbox/Checkbox.less +4 -2
- package/lib/components/clearableInput/ClearableInput.js +2 -2
- package/lib/components/clearableInput/ClearableInput.less +1 -0
- package/lib/components/dataTabs/DataTabs.js +78 -120
- package/lib/components/datepicker/DatePicker.less +4 -0
- package/lib/components/datepicker/DateRangePicker.js +3 -3
- package/lib/components/dialog/Dialog.js +2 -2
- package/lib/components/dialog/InfoDialog.js +2 -2
- package/lib/components/dialog/MediaDialog.js +2 -2
- package/lib/components/dialog/SaveDialog.js +2 -2
- package/lib/components/dialog/SimpleDialog.js +2 -2
- package/lib/components/dialog/SplitDialog.js +2 -2
- package/lib/components/driverName/DriverName.js +1 -1
- package/lib/components/dropdown/ButtonDropdown.js +2 -2
- package/lib/components/dropdown/DropdownSubmenu.less +2 -2
- package/lib/components/fade/Fade.js +2 -2
- package/lib/components/filepicker/FilePicker.js +2 -2
- package/lib/components/listMenu/ListMenu.js +2 -2
- package/lib/components/loadMore/LoadMoreButton.js +1 -1
- package/lib/components/map/components/Map.js +2 -2
- package/lib/components/map/components/constants.js +1 -1
- package/lib/components/map/components/features/Route.js +2 -2
- package/lib/components/map/components/features/basics/MapLayerGroup.js +2 -2
- package/lib/components/map/components/features/basics/marker/Marker.js +2 -1
- package/lib/components/map/components/features/basics/marker/TextMarker.js +1 -1
- package/lib/components/map/components/features/layers/MarkerLayer.js +2 -2
- package/lib/components/map/components/features/layers/clustering/SimpleClusterLayer.js +2 -2
- package/lib/components/map/utils/eventHandling.js +5 -4
- package/lib/components/map/utils/hooks.js +1 -1
- package/lib/components/map/utils/validation.js +1 -1
- package/lib/components/numberControl/NumberControl.js +161 -145
- package/lib/components/numberInput/NumberInput.js +147 -229
- package/lib/components/onboarding/OnboardingTip.js +1 -1
- package/lib/components/overlay/OverlayTrigger.js +2 -1
- package/lib/components/radiobutton/RadioButton.js +116 -148
- package/lib/components/radiobutton/RadioButton.less +10 -6
- package/lib/components/resizer/Resizer.less +2 -2
- package/lib/components/selects/BaseDropdownMenu.js +2 -2
- package/lib/components/selects/DropdownHeader.js +2 -6
- package/lib/components/spinner/Spinner.js +1 -1
- package/lib/components/spinner/Spinner.less +2 -2
- package/lib/components/states/MaintenanceState.js +25 -0
- package/lib/components/states/baseStatePropTypes.js +1 -1
- package/lib/components/supportMarker/toggleSupportMarker.js +1 -1
- package/lib/components/table/SortArrows.js +1 -1
- package/lib/components/table/TableCardsSorting.js +7 -7
- package/lib/components/table/TableSettingsDialog.js +2 -2
- package/lib/components/table/TableSettingsListItem.js +1 -1
- package/lib/components/teaser/Teaser.js +1 -1
- package/lib/components/timepicker/TimePicker.js +10 -2
- package/lib/components/tooltip/Tooltip.js +4 -4
- package/lib/es/ActionBarItem.d.ts +6 -0
- package/lib/es/ActionBarItemList.d.ts +5 -0
- package/lib/es/ActionBarItemList.js +15 -0
- package/lib/es/ActionBarItemListItem.d.ts +5 -0
- package/lib/es/ActionBarItemListItem.js +15 -0
- package/lib/es/ActionBarItemListSeparator.d.ts +5 -0
- package/lib/es/ActionBarItemListSeparator.js +15 -0
- package/lib/es/AnimatedNumber.d.ts +5 -0
- package/lib/es/AnimatedNumber.js +15 -0
- package/lib/es/BottomSheet.d.ts +5 -0
- package/lib/es/BottomSheet.js +15 -0
- package/lib/es/ChartNeedle.d.ts +5 -0
- package/lib/es/ChartNeedle.js +15 -0
- package/lib/es/DeviceUtils.d.ts +5 -0
- package/lib/es/MaintenanceState.d.ts +5 -0
- package/lib/es/MaintenanceState.js +15 -0
- package/lib/es/SortDirection.d.ts +6 -0
- package/lib/es/SortDirection.js +13 -0
- package/lib/es/SortUtils.d.ts +6 -0
- package/lib/es/SortUtils.js +19 -0
- package/lib/es/SupportMarker.js +15 -0
- package/lib/es/deviceUtils.js +14 -2
- package/lib/es/routeUtils.js +6 -6
- package/lib/es/useAfterMount.d.ts +4 -0
- package/lib/es/useAfterMount.js +15 -0
- package/lib/es/useClickOutside.d.ts +4 -0
- package/lib/es/useClickOutside.js +15 -0
- package/lib/es/useClipboard.d.ts +4 -0
- package/lib/es/useClipboard.js +15 -0
- package/lib/es/useDebugInfo.d.ts +4 -0
- package/lib/es/useDebugInfo.js +15 -0
- package/lib/es/useEffectOnce.d.ts +4 -0
- package/lib/es/useEffectOnce.js +15 -0
- package/lib/es/useElementSize.d.ts +4 -0
- package/lib/es/useElementSize.js +15 -0
- package/lib/es/useEsc.d.ts +4 -0
- package/lib/es/useEsc.js +15 -0
- package/lib/es/useEvent.d.ts +4 -0
- package/lib/es/useEvent.js +15 -0
- package/lib/es/useInterval.d.ts +4 -0
- package/lib/es/useInterval.js +15 -0
- package/lib/es/useKey.d.ts +4 -0
- package/lib/es/useKey.js +15 -0
- package/lib/es/useLocalStorage.d.ts +4 -0
- package/lib/es/useLocalStorage.js +13 -0
- package/lib/es/useOnMount.js +15 -0
- package/lib/es/useOnScreen.d.ts +4 -0
- package/lib/es/useOnScreen.js +15 -0
- package/lib/es/useOnlineStatus.d.ts +4 -0
- package/lib/es/useOnlineStatus.js +15 -0
- package/lib/es/useRenderCount.d.ts +4 -0
- package/lib/es/useRenderCount.js +15 -0
- package/lib/es/useSessionStorage.d.ts +4 -0
- package/lib/es/useSessionStorage.js +13 -0
- package/lib/es/useStateWithValidation.d.ts +4 -0
- package/lib/es/useStateWithValidation.js +15 -0
- package/lib/es/useTimeout.d.ts +4 -0
- package/lib/es/useTimeout.js +15 -0
- package/lib/es/useWindowResize.d.ts +4 -0
- package/lib/es/useWindowResize.js +15 -0
- package/lib/hooks/useDebugInfo.js +55 -0
- package/lib/hooks/useInterval.js +30 -0
- package/lib/hooks/useOnScreen.js +46 -0
- package/lib/hooks/useOnlineStatus.js +30 -0
- package/lib/hooks/useRenderCount.js +17 -0
- package/lib/hooks/useStateWithValidation.js +33 -0
- package/lib/hooks/useStorage.js +53 -0
- package/lib/hooks/useTimeout.js +9 -6
- package/lib/hooks/useWindowResize.js +9 -3
- package/lib/index.js +280 -264
- package/lib/mapIndex.js +72 -72
- package/lib/style/css/_exports/man-uikit.less +1 -0
- package/lib/style/css/_exports/rio-buyButton.less +5 -0
- package/lib/style/css/_exports/rio-uikit-core.less +2 -2
- package/lib/style/css/_exports/rio-uikit-print-utilities.less +21 -0
- package/lib/style/css/_exports/rio-uikit-responsive-utilities.less +2 -1
- package/lib/style/css/_exports/rio-uikit.less +1 -0
- package/lib/style/css/_exports/rio-website.less +70 -0
- package/lib/style/css/_exports/vw-uikit.less +2 -1
- package/lib/style/css/bootstrap/dropdowns.less +13 -13
- package/lib/style/css/rio-theme/button-groups.less +1 -1
- package/lib/style/css/rio-theme/buttons.less +57 -1
- package/lib/style/css/rio-theme/carousel.less +1 -1
- package/lib/style/css/rio-theme/dropdowns.less +6 -26
- package/lib/style/css/rio-theme/navbar.less +45 -2
- package/lib/style/css/rio-theme/navs.less +19 -0
- package/lib/style/css/rio-theme/pagination.less +1 -1
- package/lib/style/css/utils/_imports.less +82 -0
- package/lib/style/css/utils/animations/translate.less +4 -1
- package/lib/style/css/utils/responsive/border.less +27 -19
- package/lib/style/css/utils/responsive/display.less +2 -0
- package/lib/style/css/utils/responsive/grid.less +6 -0
- package/lib/style/css/utils/responsive/sizing.less +1 -1
- package/lib/style/css/utils/text.less +3 -0
- package/lib/style/fonts/rioglyph/rioglyph.less +74 -14
- package/lib/style/fonts/rioglyph/rioglyph.svg +106 -34
- package/lib/style/fonts/rioglyph/rioglyph.ttf +0 -0
- package/lib/style/fonts/rioglyph/rioglyph.woff +0 -0
- package/lib/types.ts +150 -11
- package/lib/utils/SortUtils.js +54 -0
- package/lib/utils/buttonEffect.js +68 -0
- package/lib/utils/deviceUtils.js +1 -1
- package/lib/utils/logDeprecatedWarnings.js +1 -1
- package/lib/utils/logPropError.js +1 -1
- package/lib/utils/routeUtils.js +7 -6
- package/lib/utils/scrollItemIntoView.js +1 -1
- package/lib/version.json +1 -1
- package/package.json +65 -69
package/lib/mapIndex.js
CHANGED
|
@@ -5,154 +5,154 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
-
Object.defineProperty(exports, "
|
|
8
|
+
Object.defineProperty(exports, "Circle", {
|
|
9
9
|
enumerable: true,
|
|
10
10
|
get: function get() {
|
|
11
|
-
return
|
|
11
|
+
return _Circle2.default;
|
|
12
12
|
}
|
|
13
13
|
});
|
|
14
|
-
Object.defineProperty(exports, "
|
|
14
|
+
Object.defineProperty(exports, "ClusterLayer", {
|
|
15
15
|
enumerable: true,
|
|
16
16
|
get: function get() {
|
|
17
|
-
return
|
|
17
|
+
return _ClusterLayer2.default;
|
|
18
18
|
}
|
|
19
19
|
});
|
|
20
|
-
Object.defineProperty(exports, "
|
|
20
|
+
Object.defineProperty(exports, "ClusterMapMarker", {
|
|
21
21
|
enumerable: true,
|
|
22
22
|
get: function get() {
|
|
23
|
-
return
|
|
23
|
+
return _ClusterMapMarker2.default;
|
|
24
24
|
}
|
|
25
25
|
});
|
|
26
|
-
Object.defineProperty(exports, "
|
|
26
|
+
Object.defineProperty(exports, "ClusterUtils", {
|
|
27
27
|
enumerable: true,
|
|
28
28
|
get: function get() {
|
|
29
|
-
return
|
|
29
|
+
return _clustering.ClusterUtils;
|
|
30
30
|
}
|
|
31
31
|
});
|
|
32
|
-
Object.defineProperty(exports, "
|
|
32
|
+
Object.defineProperty(exports, "ContextMenu", {
|
|
33
33
|
enumerable: true,
|
|
34
34
|
get: function get() {
|
|
35
|
-
return
|
|
35
|
+
return _ContextMenu2.default;
|
|
36
36
|
}
|
|
37
37
|
});
|
|
38
|
-
Object.defineProperty(exports, "
|
|
38
|
+
Object.defineProperty(exports, "ContextMenuItem", {
|
|
39
39
|
enumerable: true,
|
|
40
40
|
get: function get() {
|
|
41
|
-
return
|
|
41
|
+
return _ContextMenuItem2.default;
|
|
42
42
|
}
|
|
43
43
|
});
|
|
44
|
-
Object.defineProperty(exports, "
|
|
44
|
+
Object.defineProperty(exports, "DomMarker", {
|
|
45
45
|
enumerable: true,
|
|
46
46
|
get: function get() {
|
|
47
|
-
return
|
|
47
|
+
return _DomMarker2.default;
|
|
48
48
|
}
|
|
49
49
|
});
|
|
50
|
-
Object.defineProperty(exports, "
|
|
50
|
+
Object.defineProperty(exports, "EventUtils", {
|
|
51
51
|
enumerable: true,
|
|
52
52
|
get: function get() {
|
|
53
|
-
return
|
|
53
|
+
return _eventHandling.EventUtils;
|
|
54
54
|
}
|
|
55
55
|
});
|
|
56
|
-
Object.defineProperty(exports, "
|
|
56
|
+
Object.defineProperty(exports, "IncidentsLayer", {
|
|
57
57
|
enumerable: true,
|
|
58
58
|
get: function get() {
|
|
59
|
-
return
|
|
59
|
+
return _IncidentsLayer2.default;
|
|
60
60
|
}
|
|
61
61
|
});
|
|
62
|
-
Object.defineProperty(exports, "
|
|
62
|
+
Object.defineProperty(exports, "Map", {
|
|
63
63
|
enumerable: true,
|
|
64
64
|
get: function get() {
|
|
65
|
-
return
|
|
65
|
+
return _Map2.default;
|
|
66
66
|
}
|
|
67
67
|
});
|
|
68
|
-
Object.defineProperty(exports, "
|
|
68
|
+
Object.defineProperty(exports, "MapBoundingBoxButton", {
|
|
69
69
|
enumerable: true,
|
|
70
70
|
get: function get() {
|
|
71
|
-
return
|
|
71
|
+
return _MapBoundingBoxButton2.default;
|
|
72
72
|
}
|
|
73
73
|
});
|
|
74
|
-
Object.defineProperty(exports, "
|
|
74
|
+
Object.defineProperty(exports, "MapCenterMarkerButton", {
|
|
75
75
|
enumerable: true,
|
|
76
76
|
get: function get() {
|
|
77
|
-
return
|
|
77
|
+
return _MapCenterMarkerButton2.default;
|
|
78
78
|
}
|
|
79
79
|
});
|
|
80
|
-
Object.defineProperty(exports, "
|
|
80
|
+
Object.defineProperty(exports, "MapClusterSettings", {
|
|
81
81
|
enumerable: true,
|
|
82
82
|
get: function get() {
|
|
83
|
-
return
|
|
83
|
+
return _MapClusterSettings2.default;
|
|
84
84
|
}
|
|
85
85
|
});
|
|
86
|
-
Object.defineProperty(exports, "
|
|
86
|
+
Object.defineProperty(exports, "MapCustomerPoiSettingsItem", {
|
|
87
87
|
enumerable: true,
|
|
88
88
|
get: function get() {
|
|
89
|
-
return
|
|
89
|
+
return _MapCustomerPoiSettingsItem2.default;
|
|
90
90
|
}
|
|
91
91
|
});
|
|
92
|
-
Object.defineProperty(exports, "
|
|
92
|
+
Object.defineProperty(exports, "MapLayerGroup", {
|
|
93
93
|
enumerable: true,
|
|
94
94
|
get: function get() {
|
|
95
|
-
return
|
|
95
|
+
return _MapLayerGroup2.default;
|
|
96
96
|
}
|
|
97
97
|
});
|
|
98
|
-
Object.defineProperty(exports, "
|
|
98
|
+
Object.defineProperty(exports, "MapLayerIncidentsItem", {
|
|
99
99
|
enumerable: true,
|
|
100
100
|
get: function get() {
|
|
101
|
-
return
|
|
101
|
+
return _MapLayerIncidentsItem2.default;
|
|
102
102
|
}
|
|
103
103
|
});
|
|
104
|
-
Object.defineProperty(exports, "
|
|
104
|
+
Object.defineProperty(exports, "MapLayerRoadRestrictionsItem", {
|
|
105
105
|
enumerable: true,
|
|
106
106
|
get: function get() {
|
|
107
|
-
return
|
|
107
|
+
return _MapLayerRoadRestrictionsItem2.default;
|
|
108
108
|
}
|
|
109
109
|
});
|
|
110
|
-
Object.defineProperty(exports, "
|
|
110
|
+
Object.defineProperty(exports, "MapLayerSettings", {
|
|
111
111
|
enumerable: true,
|
|
112
112
|
get: function get() {
|
|
113
|
-
return
|
|
113
|
+
return _MapLayerSettings2.default;
|
|
114
114
|
}
|
|
115
115
|
});
|
|
116
|
-
Object.defineProperty(exports, "
|
|
116
|
+
Object.defineProperty(exports, "MapLayerTrafficItem", {
|
|
117
117
|
enumerable: true,
|
|
118
118
|
get: function get() {
|
|
119
|
-
return
|
|
119
|
+
return _MapLayerTrafficItem2.default;
|
|
120
120
|
}
|
|
121
121
|
});
|
|
122
|
-
Object.defineProperty(exports, "
|
|
122
|
+
Object.defineProperty(exports, "MapLockMarkerButton", {
|
|
123
123
|
enumerable: true,
|
|
124
124
|
get: function get() {
|
|
125
|
-
return
|
|
125
|
+
return _MapLockMarkerButton2.default;
|
|
126
126
|
}
|
|
127
127
|
});
|
|
128
|
-
Object.defineProperty(exports, "
|
|
128
|
+
Object.defineProperty(exports, "MapSettings", {
|
|
129
129
|
enumerable: true,
|
|
130
130
|
get: function get() {
|
|
131
|
-
return
|
|
131
|
+
return _MapSettings2.default;
|
|
132
132
|
}
|
|
133
133
|
});
|
|
134
|
-
Object.defineProperty(exports, "
|
|
134
|
+
Object.defineProperty(exports, "MapSettingsItem", {
|
|
135
135
|
enumerable: true,
|
|
136
136
|
get: function get() {
|
|
137
|
-
return
|
|
137
|
+
return _MapSettingsItem2.default;
|
|
138
138
|
}
|
|
139
139
|
});
|
|
140
|
-
Object.defineProperty(exports, "
|
|
140
|
+
Object.defineProperty(exports, "MapSettingsPanel", {
|
|
141
141
|
enumerable: true,
|
|
142
142
|
get: function get() {
|
|
143
|
-
return
|
|
143
|
+
return _MapSettingsPanel2.default;
|
|
144
144
|
}
|
|
145
145
|
});
|
|
146
|
-
Object.defineProperty(exports, "
|
|
146
|
+
Object.defineProperty(exports, "MapSettingsTile", {
|
|
147
147
|
enumerable: true,
|
|
148
148
|
get: function get() {
|
|
149
|
-
return
|
|
149
|
+
return _MapSettingsTile2.default;
|
|
150
150
|
}
|
|
151
151
|
});
|
|
152
|
-
Object.defineProperty(exports, "
|
|
152
|
+
Object.defineProperty(exports, "MapTypeSettings", {
|
|
153
153
|
enumerable: true,
|
|
154
154
|
get: function get() {
|
|
155
|
-
return
|
|
155
|
+
return _MapTypeSettings2.default;
|
|
156
156
|
}
|
|
157
157
|
});
|
|
158
158
|
Object.defineProperty(exports, "MapWorkshopPoiSettingsItem", {
|
|
@@ -161,70 +161,70 @@ Object.defineProperty(exports, "MapWorkshopPoiSettingsItem", {
|
|
|
161
161
|
return _MapWorkshopPoiSettingsItem2.default;
|
|
162
162
|
}
|
|
163
163
|
});
|
|
164
|
-
Object.defineProperty(exports, "
|
|
164
|
+
Object.defineProperty(exports, "Marker", {
|
|
165
165
|
enumerable: true,
|
|
166
166
|
get: function get() {
|
|
167
|
-
return
|
|
167
|
+
return _Marker2.default;
|
|
168
168
|
}
|
|
169
169
|
});
|
|
170
|
-
Object.defineProperty(exports, "
|
|
170
|
+
Object.defineProperty(exports, "MarkerLayer", {
|
|
171
171
|
enumerable: true,
|
|
172
172
|
get: function get() {
|
|
173
|
-
return
|
|
173
|
+
return _MarkerLayer2.default;
|
|
174
174
|
}
|
|
175
175
|
});
|
|
176
|
-
Object.defineProperty(exports, "
|
|
176
|
+
Object.defineProperty(exports, "Polygon", {
|
|
177
177
|
enumerable: true,
|
|
178
178
|
get: function get() {
|
|
179
|
-
return
|
|
179
|
+
return _Polygon2.default;
|
|
180
180
|
}
|
|
181
181
|
});
|
|
182
|
-
Object.defineProperty(exports, "
|
|
182
|
+
Object.defineProperty(exports, "Polyline", {
|
|
183
183
|
enumerable: true,
|
|
184
184
|
get: function get() {
|
|
185
|
-
return
|
|
185
|
+
return _Polyline2.default;
|
|
186
186
|
}
|
|
187
187
|
});
|
|
188
|
-
Object.defineProperty(exports, "
|
|
188
|
+
Object.defineProperty(exports, "PositionUtils", {
|
|
189
189
|
enumerable: true,
|
|
190
190
|
get: function get() {
|
|
191
|
-
return
|
|
191
|
+
return _positions.PositionUtils;
|
|
192
192
|
}
|
|
193
193
|
});
|
|
194
|
-
Object.defineProperty(exports, "
|
|
194
|
+
Object.defineProperty(exports, "Route", {
|
|
195
195
|
enumerable: true,
|
|
196
196
|
get: function get() {
|
|
197
|
-
return
|
|
197
|
+
return _Route2.default;
|
|
198
198
|
}
|
|
199
199
|
});
|
|
200
|
-
Object.defineProperty(exports, "
|
|
200
|
+
Object.defineProperty(exports, "SimpleClusterLayer", {
|
|
201
201
|
enumerable: true,
|
|
202
202
|
get: function get() {
|
|
203
|
-
return
|
|
203
|
+
return _SimpleClusterLayer2.default;
|
|
204
204
|
}
|
|
205
205
|
});
|
|
206
|
-
Object.defineProperty(exports, "
|
|
206
|
+
Object.defineProperty(exports, "SingleMapMarker", {
|
|
207
207
|
enumerable: true,
|
|
208
208
|
get: function get() {
|
|
209
|
-
return
|
|
209
|
+
return _SingleMapMarker2.default;
|
|
210
210
|
}
|
|
211
211
|
});
|
|
212
|
-
Object.defineProperty(exports, "
|
|
212
|
+
Object.defineProperty(exports, "TextMarker", {
|
|
213
213
|
enumerable: true,
|
|
214
214
|
get: function get() {
|
|
215
|
-
return
|
|
215
|
+
return _TextMarker2.default;
|
|
216
216
|
}
|
|
217
217
|
});
|
|
218
|
-
Object.defineProperty(exports, "
|
|
218
|
+
Object.defineProperty(exports, "TrafficLayer", {
|
|
219
219
|
enumerable: true,
|
|
220
220
|
get: function get() {
|
|
221
|
-
return
|
|
221
|
+
return _TrafficLayer2.default;
|
|
222
222
|
}
|
|
223
223
|
});
|
|
224
|
-
Object.defineProperty(exports, "
|
|
224
|
+
Object.defineProperty(exports, "TruckLayer", {
|
|
225
225
|
enumerable: true,
|
|
226
226
|
get: function get() {
|
|
227
|
-
return
|
|
227
|
+
return _TruckLayer2.default;
|
|
228
228
|
}
|
|
229
229
|
});
|
|
230
230
|
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
@import (less) '../rio-theme/theme.less';
|
|
72
72
|
|
|
73
73
|
// RIO Theme // Utils
|
|
74
|
-
@import (less) '../utils/
|
|
74
|
+
@import (less) '../utils/_imports.less';
|
|
75
75
|
|
|
76
76
|
.import-utilities(
|
|
77
77
|
@default: true;
|
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
@md: false;
|
|
82
82
|
@lg: false;
|
|
83
83
|
@xl: false;
|
|
84
|
+
@print: false;
|
|
84
85
|
);
|
|
85
86
|
|
|
86
87
|
// Bootstrap // Responsive Utilities
|
|
@@ -97,7 +98,6 @@
|
|
|
97
98
|
@import (less) '../../../components/applicationLayout/ApplicationLayout.less';
|
|
98
99
|
@import (less) '../../../components/assetTree/AssetTree.less';
|
|
99
100
|
@import (less) '../../../components/autosuggest/AutoSuggest.less';
|
|
100
|
-
@import (less) '../../../components/button/ToggleButton.less';
|
|
101
101
|
@import (less) '../../../components/checkbox/Checkbox.less';
|
|
102
102
|
@import (less) '../../../components/clearableInput/ClearableInput.less';
|
|
103
103
|
@import (less) '../../../components/counter/Counter.less';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// RIO Theme Imports
|
|
2
|
+
@import (less) '../rio-theme/variables.less';
|
|
3
|
+
@import (less) '../rio-theme/colors.less';
|
|
4
|
+
@import (less) '../rio-theme/screens.less';
|
|
5
|
+
@import (less) '../shared/text.less';
|
|
6
|
+
@import (less) '../rio-theme/mixins/_mixins.less';
|
|
7
|
+
|
|
8
|
+
// RIO Theme // Utils
|
|
9
|
+
@import (less) '../utils/_imports.less';
|
|
10
|
+
|
|
11
|
+
// RIO Theme // Utility Classes
|
|
12
|
+
.import-utilities(
|
|
13
|
+
@default: false;
|
|
14
|
+
@xs: false;
|
|
15
|
+
@ls: false;
|
|
16
|
+
@sm: false;
|
|
17
|
+
@md: false;
|
|
18
|
+
@lg: false;
|
|
19
|
+
@xl: false;
|
|
20
|
+
@print: true;
|
|
21
|
+
);
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@import (less) '../rio-theme/mixins/_mixins.less';
|
|
7
7
|
|
|
8
8
|
// RIO Theme // Utils
|
|
9
|
-
@import (less) '../utils/
|
|
9
|
+
@import (less) '../utils/_imports.less';
|
|
10
10
|
|
|
11
11
|
// RIO Theme // Utility Classes
|
|
12
12
|
.import-utilities(
|
|
@@ -17,4 +17,5 @@
|
|
|
17
17
|
@md: true;
|
|
18
18
|
@lg: true;
|
|
19
19
|
@xl: true;
|
|
20
|
+
@print: false;
|
|
20
21
|
);
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
@md: true;
|
|
11
11
|
@lg: true;
|
|
12
12
|
@xl: true;
|
|
13
|
+
@print: false;
|
|
13
14
|
);
|
|
14
15
|
|
|
15
16
|
// RIO Theme // Fonts
|
|
@@ -630,6 +631,35 @@ html.show-handheld-navigation {
|
|
|
630
631
|
}
|
|
631
632
|
}
|
|
632
633
|
|
|
634
|
+
&.headline-block {
|
|
635
|
+
.section-content-container-row {
|
|
636
|
+
display: flex;
|
|
637
|
+
flex-direction: column;
|
|
638
|
+
|
|
639
|
+
.section-content-container-headline {
|
|
640
|
+
padding: 10px 20px;
|
|
641
|
+
background: @color-black;
|
|
642
|
+
text-transform: uppercase;
|
|
643
|
+
width: fit-content;
|
|
644
|
+
|
|
645
|
+
&:before {
|
|
646
|
+
display: block;
|
|
647
|
+
content: "+";
|
|
648
|
+
width: 20px;
|
|
649
|
+
height: 20px;
|
|
650
|
+
position: absolute;
|
|
651
|
+
top: 0px;
|
|
652
|
+
left: 0px;
|
|
653
|
+
transform: translate(-100%, -100%);
|
|
654
|
+
text-align: center;
|
|
655
|
+
line-height: 20px;
|
|
656
|
+
color: @color-black;
|
|
657
|
+
font-size: 40px;
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
|
|
633
663
|
// Section Wrapper Inner Container
|
|
634
664
|
.section-content-container {
|
|
635
665
|
height: 100%;
|
|
@@ -1495,12 +1525,28 @@ html.show-handheld-navigation {
|
|
|
1495
1525
|
&.col-md-4 {
|
|
1496
1526
|
@media (min-width: @screen-md) { width: 50%; }
|
|
1497
1527
|
}
|
|
1528
|
+
|
|
1529
|
+
&.col-ls-4 {
|
|
1530
|
+
@media (min-width: @screen-ls) { width: 50%; }
|
|
1531
|
+
}
|
|
1498
1532
|
}
|
|
1499
1533
|
}
|
|
1500
1534
|
}
|
|
1501
1535
|
}
|
|
1502
1536
|
}
|
|
1503
1537
|
|
|
1538
|
+
&-double-col-padding {
|
|
1539
|
+
.section-layout > .section-layout-container {
|
|
1540
|
+
padding-left: 0;
|
|
1541
|
+
padding-right: 0;
|
|
1542
|
+
|
|
1543
|
+
[class*="col-"] {
|
|
1544
|
+
padding-left: 20px;
|
|
1545
|
+
padding-right: 20px;
|
|
1546
|
+
}
|
|
1547
|
+
}
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1504
1550
|
&-man {
|
|
1505
1551
|
.section-layout {
|
|
1506
1552
|
.section-layout-container {
|
|
@@ -1863,6 +1909,30 @@ blockquote {
|
|
|
1863
1909
|
}
|
|
1864
1910
|
}
|
|
1865
1911
|
|
|
1912
|
+
// Video Player
|
|
1913
|
+
._video-embed-container {
|
|
1914
|
+
background: @color-black;
|
|
1915
|
+
|
|
1916
|
+
.data-privacy-modal {
|
|
1917
|
+
@media (max-width: @screen-ls) {
|
|
1918
|
+
p {
|
|
1919
|
+
display: none;
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
.btn {
|
|
1923
|
+
height: auto;
|
|
1924
|
+
line-height: 1.25;
|
|
1925
|
+
white-space: pre-wrap;
|
|
1926
|
+
}
|
|
1927
|
+
}
|
|
1928
|
+
}
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
[class*="btn-"]:hover {
|
|
1932
|
+
transform: none !important;
|
|
1933
|
+
box-shadow: none !important;
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1866
1936
|
// cookie disclaimer
|
|
1867
1937
|
#cookieDisclaimer > .position-absolute {
|
|
1868
1938
|
position: fixed !important;
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
@md: true;
|
|
11
11
|
@lg: true;
|
|
12
12
|
@xl: true;
|
|
13
|
+
@print: false;
|
|
13
14
|
);
|
|
14
15
|
|
|
15
16
|
// RIO Theme // Fonts
|
|
@@ -19,7 +20,7 @@
|
|
|
19
20
|
|
|
20
21
|
@logo-height: 42px;
|
|
21
22
|
@logo-width: 204px;
|
|
22
|
-
@navbar-height:
|
|
23
|
+
@navbar-height: 178px;
|
|
23
24
|
|
|
24
25
|
@color-white: #ffffff;
|
|
25
26
|
@color-black: #000000;
|
|
@@ -29,24 +29,24 @@
|
|
|
29
29
|
|
|
30
30
|
// The dropdown menu (ul)
|
|
31
31
|
.dropdown-menu {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
background-clip: padding-box;
|
|
33
|
+
background-color: @dropdown-bg;
|
|
34
|
+
border-radius: @border-radius-base;
|
|
35
|
+
border: 1px solid @dropdown-border;
|
|
36
|
+
box-shadow:0 6px 12px rgba(0,0,0,.175);
|
|
36
37
|
display: none; // none by default, but block on "open" of the menu
|
|
37
38
|
float: left;
|
|
39
|
+
font-size: @font-size-base;
|
|
40
|
+
left: 0;
|
|
41
|
+
list-style: none;
|
|
42
|
+
margin: 2px 0 0; // override default ul
|
|
38
43
|
min-width: 160px;
|
|
39
44
|
padding: 5px 0;
|
|
40
|
-
|
|
41
|
-
list-style: none;
|
|
42
|
-
font-size: @font-size-base;
|
|
45
|
+
position: absolute;
|
|
43
46
|
text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
border-radius: @border-radius-base;
|
|
48
|
-
box-shadow:0 6px 12px rgba(0,0,0,.175);
|
|
49
|
-
background-clip: padding-box;
|
|
47
|
+
top: 100%;
|
|
48
|
+
width: 100%;
|
|
49
|
+
z-index: @zindex-dropdown;
|
|
50
50
|
|
|
51
51
|
// Aligns the dropdown menu to right
|
|
52
52
|
//
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
|
|
52
52
|
.btn {
|
|
53
53
|
position: relative;
|
|
54
|
+
overflow: hidden;
|
|
54
55
|
display: inline-flex;
|
|
55
56
|
align-items: center;
|
|
56
57
|
justify-content: center;
|
|
@@ -79,6 +80,14 @@
|
|
|
79
80
|
padding: 0;
|
|
80
81
|
}
|
|
81
82
|
|
|
83
|
+
&.btn-toggle.active {
|
|
84
|
+
box-shadow: inset 0 1px 5px 1px rgb(90 101 102 / 50%);
|
|
85
|
+
|
|
86
|
+
&.btn-primary {
|
|
87
|
+
box-shadow: inset 0 1px 5px 1px rgb(90 101 102 / 70%);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
82
91
|
&-toolbar {
|
|
83
92
|
display: flex;
|
|
84
93
|
flex-wrap: wrap;
|
|
@@ -397,7 +406,7 @@
|
|
|
397
406
|
&:before {
|
|
398
407
|
.rioglyph;
|
|
399
408
|
content: "\e9c7";
|
|
400
|
-
color: @
|
|
409
|
+
color: @brand-primary;
|
|
401
410
|
animation: spinning 1s linear infinite;
|
|
402
411
|
font-size: 20px;
|
|
403
412
|
}
|
|
@@ -563,3 +572,50 @@
|
|
|
563
572
|
);
|
|
564
573
|
}
|
|
565
574
|
}
|
|
575
|
+
|
|
576
|
+
.btn-default,
|
|
577
|
+
.btn-primary,
|
|
578
|
+
.btn-secondary,
|
|
579
|
+
.btn-success,
|
|
580
|
+
.btn-info,
|
|
581
|
+
.btn-warning,
|
|
582
|
+
.btn-danger {
|
|
583
|
+
&:not(.btn-link):not(.btn-action) {
|
|
584
|
+
transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
|
|
585
|
+
|
|
586
|
+
// Currently deactivated, because some services are already using the beta and we should introduce it globally and inform about it before.
|
|
587
|
+
// &:hover {
|
|
588
|
+
// transform: translateY(-2px);
|
|
589
|
+
// box-shadow: 0px 2px 4px 0px rgb(143 143 143 / 60%);
|
|
590
|
+
// }
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
// .btn-no-hover-effect:hover {
|
|
595
|
+
// transform: none !important;
|
|
596
|
+
// box-shadow: none !important;
|
|
597
|
+
// }
|
|
598
|
+
|
|
599
|
+
.input-group-btn,
|
|
600
|
+
.btn-group-vertical {
|
|
601
|
+
.btn:hover {
|
|
602
|
+
transform: none !important;
|
|
603
|
+
box-shadow: none !important;
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.btn-ripple {
|
|
608
|
+
position: absolute;
|
|
609
|
+
z-index: 1;
|
|
610
|
+
border-radius: 50%;
|
|
611
|
+
transform: scale(0);
|
|
612
|
+
animation: ripple 600ms linear;
|
|
613
|
+
background-color: rgba(255, 255, 255, 0.7);
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
@keyframes ripple {
|
|
617
|
+
to {
|
|
618
|
+
transform: scale(4);
|
|
619
|
+
opacity: 0;
|
|
620
|
+
}
|
|
621
|
+
}
|