@rio-cloud/rio-uikit 0.16.2-beta.14 → 0.16.2-beta.16

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 (164) hide show
  1. package/.DS_Store +0 -0
  2. package/Map.d.ts +1 -0
  3. package/components/activity/Activity.js +6 -4
  4. package/components/animatedNumber/AnimatedNumber.js +6 -4
  5. package/components/applicationHeader/ApplicationHeader.js +6 -3
  6. package/components/applicationLayout/ApplicationLayout.js +8 -8
  7. package/components/applicationLayout/ApplicationLayoutBody.js +6 -3
  8. package/components/applicationLayout/ApplicationLayoutBodyBanner.js +4 -3
  9. package/components/applicationLayout/ApplicationLayoutBodyNavigation.js +6 -4
  10. package/components/applicationLayout/ApplicationLayoutHeader.js +9 -7
  11. package/components/assetTree/AssetTree.js +6 -3
  12. package/components/assetTree/TypeCounter.js +6 -4
  13. package/components/map/assets/icon_map_settings_bounding_box_active.svg +1 -1
  14. package/components/map/assets/icon_map_settings_bounding_box_inactive.svg +1 -1
  15. package/components/map/assets/icon_map_settings_construction_active.svg +1 -1
  16. package/components/map/assets/icon_map_settings_construction_inactive.svg +1 -1
  17. package/components/map/assets/icon_map_settings_layer_active.svg +1 -1
  18. package/components/map/assets/icon_map_settings_layer_inactive.svg +1 -1
  19. package/components/map/assets/icon_map_settings_maptype_flat_active.svg +1 -1
  20. package/components/map/assets/icon_map_settings_maptype_flat_inactive.svg +1 -1
  21. package/components/map/assets/icon_map_settings_maptype_flat_truck_active.svg +1 -1
  22. package/components/map/assets/icon_map_settings_maptype_flat_truck_inactive.svg +1 -1
  23. package/components/map/assets/icon_map_settings_maptype_night_active.svg +1 -12
  24. package/components/map/assets/icon_map_settings_maptype_night_inactive.svg +1 -12
  25. package/components/map/assets/icon_map_settings_maptype_satelite_active.svg +1 -1
  26. package/components/map/assets/icon_map_settings_maptype_satelite_inactive.svg +1 -1
  27. package/components/map/assets/icon_map_settings_maptype_terrain_active.svg +1 -1
  28. package/components/map/assets/icon_map_settings_maptype_terrain_inactive.svg +1 -1
  29. package/components/map/assets/icon_map_settings_road_restrictions_active.svg +1 -1
  30. package/components/map/assets/icon_map_settings_road_restrictions_inactive.svg +1 -1
  31. package/components/map/assets/icon_map_settings_system_pois_active.svg +1 -1
  32. package/components/map/assets/icon_map_settings_system_pois_inactive.svg +1 -1
  33. package/components/map/assets/icon_map_settings_workshop_pois_active.svg +1 -1
  34. package/components/map/assets/icon_map_settings_workshop_pois_inactive.svg +1 -1
  35. package/components/map/components/Map.js +3 -1
  36. package/components/map/components/features/Route.js +1 -9
  37. package/components/map/components/features/basics/Circle.js +9 -5
  38. package/components/map/components/features/basics/MapLayerGroup.js +6 -5
  39. package/components/map/components/features/basics/Polygon.js +4 -4
  40. package/components/map/components/features/basics/Polyline.js +5 -30
  41. package/components/map/components/features/basics/marker/DomMarker.js +9 -3
  42. package/components/map/components/features/basics/marker/Marker.js +6 -31
  43. package/components/map/components/features/layers/Layer.js +1 -1
  44. package/components/map/components/features/layers/MarkerLayer.js +0 -1
  45. package/components/map/components/features/layers/RoadRestrictionLayer.js +1 -2
  46. package/components/map/components/features/layers/TrafficLayer.js +2 -2
  47. package/components/map/components/features/layers/clustering/ClusterLayer.js +1 -1
  48. package/components/map/components/features/settings/builtinSettings/MapTypeSettings.js +16 -2
  49. package/components/map/icons/MapIcon.js +46 -66
  50. package/components/mapMarker/ClusterMapMarker.js +16 -20
  51. package/components/mapMarker/SingleMapMarker.js +17 -28
  52. package/lib/es/Map.d.ts +1 -0
  53. package/lib/es/components/activity/Activity.js +9 -4
  54. package/lib/es/components/animatedNumber/AnimatedNumber.js +5 -3
  55. package/lib/es/components/applicationHeader/ApplicationHeader.js +5 -2
  56. package/lib/es/components/applicationLayout/ApplicationLayout.js +11 -8
  57. package/lib/es/components/applicationLayout/ApplicationLayoutBody.js +5 -2
  58. package/lib/es/components/applicationLayout/ApplicationLayoutBodyBanner.js +7 -3
  59. package/lib/es/components/applicationLayout/ApplicationLayoutBodyNavigation.js +9 -4
  60. package/lib/es/components/applicationLayout/ApplicationLayoutHeader.js +12 -7
  61. package/lib/es/components/assetTree/AssetTree.js +5 -2
  62. package/lib/es/components/assetTree/TypeCounter.js +9 -4
  63. package/lib/es/components/map/assets/icon_map_settings_bounding_box_active.svg +1 -1
  64. package/lib/es/components/map/assets/icon_map_settings_bounding_box_inactive.svg +1 -1
  65. package/lib/es/components/map/assets/icon_map_settings_construction_active.svg +1 -1
  66. package/lib/es/components/map/assets/icon_map_settings_construction_inactive.svg +1 -1
  67. package/lib/es/components/map/assets/icon_map_settings_layer_active.svg +1 -1
  68. package/lib/es/components/map/assets/icon_map_settings_layer_inactive.svg +1 -1
  69. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_active.svg +1 -1
  70. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_inactive.svg +1 -1
  71. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_truck_active.svg +1 -1
  72. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_truck_inactive.svg +1 -1
  73. package/lib/es/components/map/assets/icon_map_settings_maptype_night_active.svg +1 -12
  74. package/lib/es/components/map/assets/icon_map_settings_maptype_night_inactive.svg +1 -12
  75. package/lib/es/components/map/assets/icon_map_settings_maptype_satelite_active.svg +1 -1
  76. package/lib/es/components/map/assets/icon_map_settings_maptype_satelite_inactive.svg +1 -1
  77. package/lib/es/components/map/assets/icon_map_settings_maptype_terrain_active.svg +1 -1
  78. package/lib/es/components/map/assets/icon_map_settings_maptype_terrain_inactive.svg +1 -1
  79. package/lib/es/components/map/assets/icon_map_settings_road_restrictions_active.svg +1 -1
  80. package/lib/es/components/map/assets/icon_map_settings_road_restrictions_inactive.svg +1 -1
  81. package/lib/es/components/map/assets/icon_map_settings_system_pois_active.svg +1 -1
  82. package/lib/es/components/map/assets/icon_map_settings_system_pois_inactive.svg +1 -1
  83. package/lib/es/components/map/assets/icon_map_settings_workshop_pois_active.svg +1 -1
  84. package/lib/es/components/map/assets/icon_map_settings_workshop_pois_inactive.svg +1 -1
  85. package/lib/es/components/map/components/Map.js +3 -1
  86. package/lib/es/components/map/components/features/Route.js +1 -9
  87. package/lib/es/components/map/components/features/basics/Circle.js +8 -4
  88. package/lib/es/components/map/components/features/basics/MapLayerGroup.js +6 -5
  89. package/lib/es/components/map/components/features/basics/Polygon.js +4 -4
  90. package/lib/es/components/map/components/features/basics/Polyline.js +5 -30
  91. package/lib/es/components/map/components/features/basics/marker/DomMarker.js +8 -3
  92. package/lib/es/components/map/components/features/basics/marker/Marker.js +6 -31
  93. package/lib/es/components/map/components/features/layers/Layer.js +1 -1
  94. package/lib/es/components/map/components/features/layers/MarkerLayer.js +0 -1
  95. package/lib/es/components/map/components/features/layers/RoadRestrictionLayer.js +1 -2
  96. package/lib/es/components/map/components/features/layers/TrafficLayer.js +2 -2
  97. package/lib/es/components/map/components/features/layers/clustering/ClusterLayer.js +1 -1
  98. package/lib/es/components/map/components/features/settings/builtinSettings/MapTypeSettings.js +16 -2
  99. package/lib/es/components/map/icons/MapIcon.js +46 -66
  100. package/lib/es/components/mapMarker/ClusterMapMarker.js +16 -20
  101. package/lib/es/components/mapMarker/SingleMapMarker.js +17 -28
  102. package/lib/es/styles/components/MapMarker.less +224 -14
  103. package/lib/es/styles/components/MapSettings.less +45 -29
  104. package/lib/es/styles/design/border.less +14 -14
  105. package/lib/es/styles/design/colors.less +7 -6
  106. package/lib/es/styles/design/divide.less +165 -0
  107. package/lib/es/styles/design/responsive/_imports.less +1 -0
  108. package/lib/es/styles/design/responsive/gap.less +0 -8
  109. package/lib/es/styles/design/responsive/spacing.less +12 -0
  110. package/lib/es/styles/rio-uikit-core.less +1 -0
  111. package/lib/es/styles/variables/light_colors.less +6 -6
  112. package/lib/es/themes/Volkswagen/components/applicationHeader/VolkswagenApplicationHeader.js +14 -5
  113. package/lib/es/types.ts +6 -4
  114. package/lib/es/version.json +1 -1
  115. package/package.json +1 -1
  116. package/styles/components/MapMarker.less +224 -14
  117. package/styles/components/MapSettings.less +45 -29
  118. package/styles/design/border.less +14 -14
  119. package/styles/design/colors.less +7 -6
  120. package/styles/design/divide.less +165 -0
  121. package/styles/design/responsive/_imports.less +1 -0
  122. package/styles/design/responsive/gap.less +0 -8
  123. package/styles/design/responsive/spacing.less +12 -0
  124. package/styles/rio-uikit-core.less +1 -0
  125. package/styles/variables/light_colors.less +6 -6
  126. package/themes/Volkswagen/components/applicationHeader/VolkswagenApplicationHeader.js +15 -6
  127. package/types.ts +6 -4
  128. package/version.json +1 -1
  129. package/components/.DS_Store +0 -0
  130. package/components/map/.DS_Store +0 -0
  131. package/components/map/components/.DS_Store +0 -0
  132. package/components/map/components/features/layers/TruckLayer.js +0 -20
  133. package/components/map/components/features/layers/baselayers/BaseLayer.js +0 -33
  134. package/components/map/components/features/layers/baselayers/DefaultLayer.js +0 -23
  135. package/hooks/useHereMap.ts +0 -23
  136. package/hooks/useScripts.ts +0 -52
  137. package/lib/.DS_Store +0 -0
  138. package/lib/es/.DS_Store +0 -0
  139. package/lib/es/components/.DS_Store +0 -0
  140. package/lib/es/components/map/components/features/layers/TruckLayer.js +0 -28
  141. package/lib/es/components/map/components/features/layers/baselayers/BaseLayer.js +0 -41
  142. package/lib/es/components/map/components/features/layers/baselayers/DefaultLayer.js +0 -30
  143. package/lib/es/hooks/useHereMap.ts +0 -23
  144. package/lib/es/hooks/useScripts.ts +0 -52
  145. package/lib/es/styles/.DS_Store +0 -0
  146. package/lib/es/styles/mixins/_mixins.less +0 -13
  147. package/lib/es/styles/mixins/alerts.less +0 -13
  148. package/lib/es/styles/shared/colors.json +0 -56
  149. package/lib/es/styles/shared/colors.less +0 -73
  150. package/lib/es/styles/shared/screens.less +0 -7
  151. package/lib/es/styles/shared/text.less +0 -23
  152. package/lib/es/styles/variables.less +0 -186
  153. package/lib/es/themes/.DS_Store +0 -0
  154. package/styles/.DS_Store +0 -0
  155. package/styles/mixins/_mixins.less +0 -13
  156. package/styles/mixins/alerts.less +0 -13
  157. package/styles/shared/colors.json +0 -56
  158. package/styles/shared/colors.less +0 -73
  159. package/styles/shared/screens.less +0 -7
  160. package/styles/shared/text.less +0 -23
  161. package/styles/variables.less +0 -186
  162. package/themes/.DS_Store +0 -0
  163. package/themes/Volkswagen/.DS_Store +0 -0
  164. package/themes/Website/.DS_Store +0 -0
@@ -1,186 +0,0 @@
1
- // RIO cdn
2
- @cdnBase: "cdn.rio.cloud";
3
- @fontBase: "fonts";
4
-
5
- // Grid
6
- @grid-columns: 12;
7
- @grid-gutter-width: 20px;
8
- @grid-gutter-height: 20px;
9
- @grid-float-breakpoint: @screen-sm;
10
-
11
- // Mapping // must match with the UIKIT demo values
12
- @import (less) 'mapping/breakpoint-map.less';
13
- @import (less) 'mapping/color-map.less';
14
- @import (less) 'mapping/cols-map.less';
15
- @import (less) 'mapping/numbers-map.less';
16
- @import (less) 'mapping/positions-map.less';
17
- @import (less) 'mapping/sizes-map.less';
18
- @import (less) 'mapping/spacings-map.less';
19
-
20
- // Screens
21
- @import (less) "shared/screens.less";
22
-
23
- @screen-xs-min: @screen-xs;
24
- @screen-xs-max: (@screen-ls - 0.01);
25
- @screen-ls-min: @screen-ls;
26
- @screen-ls-max: (@screen-sm - 0.01);
27
- @screen-sm-min: @screen-sm;
28
- @screen-sm-max: (@screen-md - 0.01);
29
- @screen-md-min: @screen-md;
30
- @screen-md-max: (@screen-lg - 0.01);
31
- @screen-lg-min: @screen-lg;
32
- @screen-lg-max: (@screen-xl - 0.01);
33
- @screen-xl-min: @screen-xl;
34
- @screen-xl-max: 10000px;
35
-
36
- // Container
37
- @container-ls: @screen-ls - (@grid-gutter-width * 2);
38
- @container-sm: @screen-sm - (@grid-gutter-width * 2);
39
- @container-md: @screen-md - (@grid-gutter-width * 2);
40
- @container-lg: @screen-lg - (@grid-gutter-width * 2);
41
- @container-xl: @screen-xl - (@grid-gutter-width * 2);
42
-
43
- // Container Fluid
44
- // @container-fluid-xs: px;
45
- @container-fluid-sm: 980px;
46
- @container-fluid-md: 1280px;
47
- @container-fluid-lg: 1440px;
48
- @container-fluid-xl: 1680px;
49
- @container-fluid-xxl: 1920px;
50
-
51
- // Padding
52
- @padding-xs-vertical: 1px;
53
- @padding-xs-horizontal: 5px;
54
- @padding-sm-vertical: 5px;
55
- @padding-sm-horizontal: 10px;
56
- @padding-default-vertical: 6px;
57
- @padding-default-horizontal: 12px;
58
- @padding-lg-vertical: 10px;
59
- @padding-lg-horizontal: 16px;
60
-
61
- // Border Radius
62
- @border-radius-xs: 2px;
63
- @border-radius-sm: 3px;
64
- @border-radius-default: 4px;
65
- @border-radius-lg: 6px;
66
- @border-radius-xl: 8px;
67
- @border-radius-round: 1000px;
68
-
69
- // Colors
70
- @import (less) "shared/colors.less";
71
-
72
- // Build Warmup and Coldplay Colors?
73
- @buildColdplayColors: true;
74
- @buildWarmupColors: true;
75
-
76
- // Color - Brand Decent
77
- @brand-primary-decent: #f4fbfc;
78
- @brand-secondary-decent: #fbf5f8;
79
-
80
- // Color - Status Decent
81
- @brand-info-decent: #f5f8fb;
82
- @brand-success-decent: #f6fbf5;
83
- @brand-warning-decent: #fdf5f0;
84
- @brand-danger-decent: #fdf3f3;
85
-
86
- // Button Sizes
87
- @btn-size-xs: 22px;
88
- @btn-size-sm: 30px;
89
- @btn-size-default: 34px;
90
- @btn-size-lg: 45px;
91
-
92
- // Text
93
- @import (less) "shared/text.less";
94
-
95
- // Text - Sizes
96
- @font-size-xs: @font-size-12; // only used in buttons and 10px is too small
97
- @font-size-sm: @font-size-12;
98
- @font-size-default: @font-size-14;
99
- @font-size-lg: @font-size-16;
100
- @font-size-xl: 25px;
101
- @font-size-xxl: 30px;
102
-
103
- // Text - Headlines - Weights
104
- @headings-font-family: @font-family-base;
105
- @headings-font-weight: @font-medium;
106
- @headings-line-height: 1.1;
107
- @headings-color: inherit;
108
-
109
- // Text - Line Heights
110
- @line-height-xs: 1.5;
111
- @line-height-sm: 1.5;
112
- @line-height-default: 1.428571429;
113
- @line-height-lg: 1.4;
114
-
115
- // Text - Font Family
116
- @font-family-base: 'Source Sans Pro', Helvetica, Arial, sans-serif;
117
- @font-family-monospace: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace;
118
- @font-family-ios: 'SF Text', 'Source Sans Pro', Helvetica, Arial, sans-serif;
119
- @font-family-android: 'Roboto', 'Source Sans Pro', Helvetica, Arial, sans-serif;
120
-
121
- @font-source-sans: true;
122
- @font-man: false;
123
- @font-redring: false;
124
- @font-san-francisco: false;
125
- @font-roboto: false;
126
- @font-vw: false;
127
- @font-scania: false;
128
-
129
- // Iconfont
130
- @icon-font-name: "rioglyph";
131
-
132
- // Variables
133
- @text-color: @gray-darkest;
134
- @link-color: @brand-primary;
135
- @link-hover-color: darken(@brand-primary, 10%);
136
-
137
- // Media Queries
138
- @screen-xs-min: @screen-xs;
139
- @screen-sm-min: @screen-sm;
140
- @screen-md-min: @screen-md;
141
- @screen-lg-min: @screen-lg;
142
-
143
- // ApplicationLayout
144
- @ApplicationLayoutBodyPadding: 30px;
145
- @ApplicationLayoutNotResponsiveWidth: 900px;
146
-
147
- @ApplicationLayoutBodyHeight: 100vh; // --vh fallback
148
- @ApplicationLayoutBodyHeightAndViewportFix: ~'calc(var(--vh, 1vh) * 100)';
149
-
150
- @ApplicationLayoutBodyHeightWithoutHeader: ~'calc(100vh - @{ApplicationLayoutHeaderHeight})'; // --vh fallback
151
- @ApplicationLayoutBodyHeightWithoutHeaderAndViewportFix: ~'calc(var(--vh, 1vh) * 100 - @{ApplicationLayoutHeaderHeight})';
152
-
153
- @ApplicationLayoutBodyHeightWithoutFooter: ~'calc(100vh - (var(--ApplicationLayoutBodyBottomBarHeight)))'; // --vh fallback
154
- @ApplicationLayoutBodyHeightWithoutFooterAndViewportFix: ~'calc(var(--vh, 1vh) * 100 - (var(--ApplicationLayoutBodyBottomBarHeight)))';
155
-
156
- @ApplicationLayoutBodyHeightWithoutHeaderWithoutFooter: ~'calc(100vh - (@{ApplicationLayoutHeaderHeight} + var(--ApplicationLayoutBodyBottomBarHeight)))'; // --vh fallback
157
- @ApplicationLayoutBodyHeightWithoutHeaderWithoutFooterAndViewportFix: ~'calc(var(--vh, 1vh) * 100 - (@{ApplicationLayoutHeaderHeight} + var(--ApplicationLayoutBodyBottomBarHeight)))';
158
-
159
- // ApplicationHeader
160
- @ApplicationLayoutHeaderHeight: 50px;
161
- @ApplicationLayoutHeaderHeightWithoutBorder: ~'calc(@{ApplicationLayoutHeaderHeight} - 1px)';
162
-
163
- @brand-icon-home: url('https://cdn.rio.cloud/svg/common/ico_home.svg');
164
- @brand-icon-rio: url('https://cdn.rio.cloud/svg/common/ico_rio_colored.svg');
165
- @brand-icon-size: 50px;
166
-
167
- @ApplicationLayoutHeaderHeighticon-height: @ApplicationLayoutHeaderHeight;
168
- @ApplicationLayoutHeaderHeightpadding-horizontal: @grid-gutter-width;
169
-
170
- // ApplicationLayoutBody
171
- @ApplicationLayoutBodyNavigationHeight: 50px;
172
-
173
- // ApplicationFooter
174
- @footer-height: var(--ApplicationLayoutBodyBottomBarHeight);
175
-
176
- // Z-index
177
- @zindex-tooltip: 1060;
178
- @zindex-modal: 1050;
179
- @zindex-modal-background: 1040;
180
- @zindex-popover: 1010;
181
- @zindex-navbar: 1000;
182
- @zindex-dropdown: 1000;
183
- @zindex-sidebar: 990;
184
- @zindex-tooltip-onboarding: 990;
185
- @zindex-map-marker-hover: 801;
186
- @zindex-map-marker-active: 800;
package/themes/.DS_Store DELETED
Binary file
Binary file
Binary file