@rio-cloud/rio-uikit 0.16.3-beta.1 → 0.16.3-beta.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.
@@ -41,7 +41,6 @@ body {
41
41
  top: 0;
42
42
  width: 100% !important;
43
43
  z-index: @zindex-modal;
44
- backdrop-filter: blur(1px);
45
44
 
46
45
  // When fading in the modal, animate it to slide down
47
46
  &.fade .modal-dialog {
@@ -341,13 +340,12 @@ body {
341
340
  // Fade for backdrop
342
341
  &.fade { opacity: 0 }
343
342
  &.in { opacity: 0.5 }
344
- }
345
343
 
346
- &.backdrop-blured .modal-backdrop {
344
+ // Bluring
347
345
  @supports ((-webkit-backdrop-filter: blur()) or (backdrop-filter: blur())) {
348
346
  opacity: 0.99;
349
- background-color: .hsla(@always-color-black-hsl, 0.3)[@result];
350
- backdrop-filter: blur(5px);
347
+ background-color: .hsla(@always-color-black-hsl, 0.5)[@result];
348
+ backdrop-filter: blur(1px);
351
349
  }
352
350
  }
353
351
 
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "0.16.3-beta.1"
2
+ "version": "0.16.3-beta.2"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rio-cloud/rio-uikit",
3
- "version": "0.16.3-beta.1",
3
+ "version": "0.16.3-beta.2",
4
4
  "description": "The RIO UIKIT component library",
5
5
  "repository": "https://collaboration.msi.audi.com/stash/projects/RIOFRONT/repos/uikit-web/browse",
6
6
  "scripts": {
@@ -41,7 +41,6 @@ body {
41
41
  top: 0;
42
42
  width: 100% !important;
43
43
  z-index: @zindex-modal;
44
- backdrop-filter: blur(1px);
45
44
 
46
45
  // When fading in the modal, animate it to slide down
47
46
  &.fade .modal-dialog {
@@ -341,13 +340,12 @@ body {
341
340
  // Fade for backdrop
342
341
  &.fade { opacity: 0 }
343
342
  &.in { opacity: 0.5 }
344
- }
345
343
 
346
- &.backdrop-blured .modal-backdrop {
344
+ // Bluring
347
345
  @supports ((-webkit-backdrop-filter: blur()) or (backdrop-filter: blur())) {
348
346
  opacity: 0.99;
349
- background-color: .hsla(@always-color-black-hsl, 0.3)[@result];
350
- backdrop-filter: blur(5px);
347
+ background-color: .hsla(@always-color-black-hsl, 0.5)[@result];
348
+ backdrop-filter: blur(1px);
351
349
  }
352
350
  }
353
351
 
package/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "0.16.3-beta.1"
2
+ "version": "0.16.3-beta.2"
3
3
  }
@@ -1,5 +0,0 @@
1
- declare module '@rio-cloud/rio-uikit/lib/es/AspectRatioPlaceholder' {
2
- import React from 'react';
3
- import { AspectRatioPlaceholderProps } from './types';
4
- export default class AspectRatioPlaceholder extends React.Component<AspectRatioPlaceholderProps> {}
5
- }
@@ -1,5 +0,0 @@
1
- declare module '@rio-cloud/rio-uikit/lib/es/AspectRatioPlaceholder' {
2
- import React from 'react';
3
- import { AspectRatioPlaceholderProps } from './types';
4
- export default class AspectRatioPlaceholder extends React.Component<AspectRatioPlaceholderProps> {}
5
- }
@@ -1,165 +0,0 @@
1
- [class*="divider-y"] > :not([hidden]) ~ :not([hidden]) {
2
- border-bottom-width: 0;
3
- border-top-style: solid;
4
- }
5
-
6
- [class*="divider-x"] > :not([hidden]) ~ :not([hidden]) {
7
- border-right-width: 0;
8
- border-left-style: solid;
9
- }
10
-
11
- .divider-y-1 {
12
- &> :not([hidden]) ~ :not([hidden]) {
13
- border-top-width: 1px;
14
- }
15
- }
16
-
17
- .divider-y-2 > :not([hidden]) ~ :not([hidden]) {
18
- border-top-width: 2px;
19
- }
20
-
21
- .divider-y-3 > :not([hidden]) ~ :not([hidden]) {
22
- border-top-width: 3px;
23
- }
24
-
25
- .divider-x-1 {
26
- &> :not([hidden]) ~ :not([hidden]) {
27
- border-left-width: 1px;
28
- }
29
- }
30
-
31
- .divider-x-2 > :not([hidden]) ~ :not([hidden]) {
32
- border-left-width: 2px;
33
- }
34
-
35
- .divider-x-3 > :not([hidden]) ~ :not([hidden]) {
36
- border-left-width: 3px;
37
- }
38
-
39
- // coloring
40
-
41
- .divider-color {
42
- // white
43
- // black
44
- each(@colors-text-map, {
45
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
46
- border-color: @value !important;
47
- }
48
- })
49
-
50
- // primary
51
- // secondary
52
- each(@colors-brand-map, {
53
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
54
- border-color: @value !important;
55
- }
56
- })
57
-
58
- // info
59
- // success
60
- // warning
61
- // danger
62
- each(@colors-status-map, {
63
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
64
- border-color: @value !important;
65
- }
66
- })
67
-
68
- // darkest
69
- // darker
70
- // dark
71
- // gray
72
- // light
73
- // lighter
74
- // lightest
75
- each(@colors-gray-map, {
76
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
77
- border-color: @value !important;
78
- }
79
- })
80
-
81
- // map-marker-asset
82
- // map-marker-poi
83
- // map-marker-geofence
84
- // map-marker-route
85
- each(@colors-map-marker-map, {
86
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
87
- border-color: @value !important;
88
- }
89
- })
90
-
91
- each(@colors-map-marker-night-map, {
92
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
93
- border-color: @value !important;
94
- }
95
- })
96
-
97
- // rating-1
98
- // rating-2
99
- // rating-3
100
- // rating-4
101
- // rating-5
102
- each(@colors-rating-map, {
103
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
104
- border-color: @value !important;
105
- }
106
- })
107
-
108
- // status-available
109
- // status-driving
110
- // status-resting
111
- // status-working
112
- each(@colors-driving-status-map, {
113
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
114
- border-color: @value !important;
115
- }
116
- })
117
-
118
- // highlight-darkest
119
- // highlight-darker
120
- // highlight-dark
121
- // highlight
122
- // highlight-light
123
- // highlight-lighter
124
- // highlight-lightest
125
- // highlight-decent
126
- each(@colors-highlight-map, {
127
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
128
- border-color: @value !important;
129
- }
130
- })
131
-
132
- // coldplay-wine
133
- // coldplay-aubergine
134
- // coldplay-kashmir
135
- // coldplay-fountain
136
- // coldplay-turquoise
137
- // coldplay-bermuda
138
- // coldplay-moos
139
- // coldplay-primrose
140
- // coldplay-khaki
141
- // & when (@buildColdplayColors = true) {
142
- // each(@colors-coldplay-map, {
143
- // &-@{key} > :not([hidden]) ~ :not([hidden]) {
144
- // border-color: @value !important;
145
- // }
146
- // })
147
- // }
148
-
149
- // warmup-crimson
150
- // warmup-victoria
151
- // warmup-cadillac
152
- // warmup-raspberry
153
- // warmup-cerise
154
- // warmup-charm
155
- // warmup-salmon
156
- // warmup-cherokee
157
- // warmup-corn
158
- // & when (@buildWarmupColors = true) {
159
- // each(@colors-warmup-map, {
160
- // &-@{key} > :not([hidden]) ~ :not([hidden]) {
161
- // border-color: @value !important;
162
- // }
163
- // })
164
- // }
165
- }
@@ -1,165 +0,0 @@
1
- [class*="divider-y"] > :not([hidden]) ~ :not([hidden]) {
2
- border-bottom-width: 0;
3
- border-top-style: solid;
4
- }
5
-
6
- [class*="divider-x"] > :not([hidden]) ~ :not([hidden]) {
7
- border-right-width: 0;
8
- border-left-style: solid;
9
- }
10
-
11
- .divider-y-1 {
12
- &> :not([hidden]) ~ :not([hidden]) {
13
- border-top-width: 1px;
14
- }
15
- }
16
-
17
- .divider-y-2 > :not([hidden]) ~ :not([hidden]) {
18
- border-top-width: 2px;
19
- }
20
-
21
- .divider-y-3 > :not([hidden]) ~ :not([hidden]) {
22
- border-top-width: 3px;
23
- }
24
-
25
- .divider-x-1 {
26
- &> :not([hidden]) ~ :not([hidden]) {
27
- border-left-width: 1px;
28
- }
29
- }
30
-
31
- .divider-x-2 > :not([hidden]) ~ :not([hidden]) {
32
- border-left-width: 2px;
33
- }
34
-
35
- .divider-x-3 > :not([hidden]) ~ :not([hidden]) {
36
- border-left-width: 3px;
37
- }
38
-
39
- // coloring
40
-
41
- .divider-color {
42
- // white
43
- // black
44
- each(@colors-text-map, {
45
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
46
- border-color: @value !important;
47
- }
48
- })
49
-
50
- // primary
51
- // secondary
52
- each(@colors-brand-map, {
53
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
54
- border-color: @value !important;
55
- }
56
- })
57
-
58
- // info
59
- // success
60
- // warning
61
- // danger
62
- each(@colors-status-map, {
63
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
64
- border-color: @value !important;
65
- }
66
- })
67
-
68
- // darkest
69
- // darker
70
- // dark
71
- // gray
72
- // light
73
- // lighter
74
- // lightest
75
- each(@colors-gray-map, {
76
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
77
- border-color: @value !important;
78
- }
79
- })
80
-
81
- // map-marker-asset
82
- // map-marker-poi
83
- // map-marker-geofence
84
- // map-marker-route
85
- each(@colors-map-marker-map, {
86
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
87
- border-color: @value !important;
88
- }
89
- })
90
-
91
- each(@colors-map-marker-night-map, {
92
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
93
- border-color: @value !important;
94
- }
95
- })
96
-
97
- // rating-1
98
- // rating-2
99
- // rating-3
100
- // rating-4
101
- // rating-5
102
- each(@colors-rating-map, {
103
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
104
- border-color: @value !important;
105
- }
106
- })
107
-
108
- // status-available
109
- // status-driving
110
- // status-resting
111
- // status-working
112
- each(@colors-driving-status-map, {
113
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
114
- border-color: @value !important;
115
- }
116
- })
117
-
118
- // highlight-darkest
119
- // highlight-darker
120
- // highlight-dark
121
- // highlight
122
- // highlight-light
123
- // highlight-lighter
124
- // highlight-lightest
125
- // highlight-decent
126
- each(@colors-highlight-map, {
127
- &-@{key} > :not([hidden]) ~ :not([hidden]) {
128
- border-color: @value !important;
129
- }
130
- })
131
-
132
- // coldplay-wine
133
- // coldplay-aubergine
134
- // coldplay-kashmir
135
- // coldplay-fountain
136
- // coldplay-turquoise
137
- // coldplay-bermuda
138
- // coldplay-moos
139
- // coldplay-primrose
140
- // coldplay-khaki
141
- // & when (@buildColdplayColors = true) {
142
- // each(@colors-coldplay-map, {
143
- // &-@{key} > :not([hidden]) ~ :not([hidden]) {
144
- // border-color: @value !important;
145
- // }
146
- // })
147
- // }
148
-
149
- // warmup-crimson
150
- // warmup-victoria
151
- // warmup-cadillac
152
- // warmup-raspberry
153
- // warmup-cerise
154
- // warmup-charm
155
- // warmup-salmon
156
- // warmup-cherokee
157
- // warmup-corn
158
- // & when (@buildWarmupColors = true) {
159
- // each(@colors-warmup-map, {
160
- // &-@{key} > :not([hidden]) ~ :not([hidden]) {
161
- // border-color: @value !important;
162
- // }
163
- // })
164
- // }
165
- }