@rio-cloud/rio-uikit 0.16.0-beta-4 → 0.16.0

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.
@@ -14,7 +14,7 @@
14
14
  // Styles
15
15
  @import (less) '../design/buttons.less';
16
16
  @import (less) '../design/labels.less';
17
- @import (less) '../design/visibilty.less';
17
+ @import (less) '../design/visibility.less';
18
18
 
19
19
  // Fonts
20
20
  @font-source-sans: true;
@@ -33,7 +33,6 @@
33
33
  @import (less) '../design/type.less';
34
34
  @import (less) '../design/popovers.less';
35
35
  @import (less) '../design/utilities.less';
36
- @import (less) '../design/visibilty.less';
37
36
  @import (less) '../design/blockquote.less';
38
37
  @import (less) '../design/callouts.less';
39
38
  @import (less) '../design/container.less';
@@ -50,8 +49,10 @@
50
49
  @import (less) '../design/overflow.less';
51
50
  @import (less) '../design/position.less';
52
51
  @import (less) '../design/rounded.less';
52
+ @import (less) '../design/sizing.less';
53
53
  @import (less) '../design/shadows.less';
54
54
  @import (less) '../design/text.less';
55
+ @import (less) '../design/visibility.less';
55
56
  @import (less) '../design/z-index.less';
56
57
 
57
58
  // Theme
@@ -64,6 +65,9 @@
64
65
  // Animations
65
66
  @import (less) '../animations/_imports.less';
66
67
 
68
+ // Filter
69
+ @import (less) '../filter/_imports.less';
70
+
67
71
  // Print
68
72
  @import (less) '../print/print.less';
69
73
 
@@ -2084,7 +2084,7 @@ form[id*="contactForm"] {
2084
2084
  // Safari image fix
2085
2085
  @media not all and (min-resolution:.001dpcm) {
2086
2086
  @supports (-webkit-appearance:none) {
2087
- img[src*="placeholder_transparent"] {
2087
+ img[src*="placeholder_transparent"]:not([style*="background-image"]) {
2088
2088
  opacity: 0;
2089
2089
  }
2090
2090
 
@@ -2097,7 +2097,6 @@ form[id*="contactForm"] {
2097
2097
  }
2098
2098
 
2099
2099
  // section clippig
2100
-
2101
2100
  .section-wrapper {
2102
2101
  &[class*="clip-"]:after {
2103
2102
  content: "";
@@ -221,7 +221,7 @@
221
221
 
222
222
  > .navigationItem {
223
223
  height: 50px;
224
- width: 50px;
224
+ width: auto;
225
225
 
226
226
  > .ActionBarItem {
227
227
  height: 50px;
@@ -266,7 +266,7 @@
266
266
  max-height: ~'calc(100vh - @{navbar-height} - 20px)'; // --vh fallback
267
267
  max-height: ~'calc(var(--vh, 1vh) * 100 - @{navbar-height} - 20px)';
268
268
  max-width: calc(~'100% - 3px');
269
- min-width: 100%;
269
+ width: 100%;
270
270
  overflow-x: hidden;
271
271
  overflow-y: auto;
272
272
 
@@ -219,43 +219,4 @@
219
219
  margin-right: 10px;
220
220
  }
221
221
  }
222
- }
223
-
224
- // Tippy
225
- .tippy-touch {
226
- cursor: pointer !important
227
- }
228
-
229
- .tippy-popper {
230
- -webkit-perspective: 800px;
231
- max-width: 400px;
232
- outline: 0;
233
- perspective: 800px;
234
- pointer-events: none;
235
- transition-timing-function: cubic-bezier(.165, .84, .44, 1);
236
- z-index: 9999;
237
- }
238
-
239
- .tippy-popper.html-template {
240
- max-width: 96%;
241
- max-width: calc(100% - 20px)
242
- }
243
-
244
- .tippy-tooltip {
245
- position: relative;
246
- color: #fff;
247
- border-radius: 4px;
248
- font-size: .95rem;
249
- padding: .4rem .8rem;
250
- text-align: center;
251
- will-change: transform;
252
- -webkit-font-smoothing: antialiased;
253
- -moz-osx-font-smoothing: grayscale;
254
- background-color: #333
255
- }
256
-
257
- .tippy-tooltip [x-arrow] {
258
- position: absolute;
259
- width: 0;
260
- height: 0
261
222
  }
@@ -12,7 +12,6 @@
12
12
  @import (multiple) "position.less";
13
13
  @import (multiple) "sizing.less";
14
14
  @import (multiple) "text.less";
15
- @import (multiple) "visibility.less";
16
15
  }
17
16
 
18
17
  // RIO Theme // Utility Classes
@@ -8,30 +8,30 @@
8
8
  .flex-nowrap@{suffix} { flex-wrap: nowrap !important }
9
9
  .flex-wrap-reverse@{suffix} { flex-wrap: wrap-reverse !important }
10
10
 
11
- .justify-content-start@{suffix} { justify-content: flex-start !important }
12
- .justify-content-end@{suffix} { justify-content: flex-end !important }
13
- .justify-content-center@{suffix} { justify-content: center !important }
14
- .justify-content-between@{suffix} { justify-content: space-between !important }
15
11
  .justify-content-around@{suffix} { justify-content: space-around !important }
12
+ .justify-content-between@{suffix} { justify-content: space-between !important }
13
+ .justify-content-center@{suffix} { justify-content: center !important }
14
+ .justify-content-end@{suffix} { justify-content: flex-end !important }
15
+ .justify-content-start@{suffix} { justify-content: flex-start !important }
16
16
 
17
- .align-items-start@{suffix} { align-items: flex-start !important }
18
- .align-items-end@{suffix} { align-items: flex-end !important }
19
- .align-items-center@{suffix} { align-items: center !important }
20
17
  .align-items-baseline@{suffix} { align-items: baseline !important }
18
+ .align-items-center@{suffix} { align-items: center !important }
19
+ .align-items-end@{suffix} { align-items: flex-end !important }
20
+ .align-items-start@{suffix} { align-items: flex-start !important }
21
21
  .align-items-stretch@{suffix} { align-items: stretch !important }
22
22
 
23
- .align-content-start@{suffix} { align-content: flex-start !important }
24
- .align-content-end@{suffix} { align-content: flex-end !important }
25
- .align-content-center@{suffix} { align-content: center !important }
26
- .align-content-between@{suffix} { align-content: space-between !important }
27
23
  .align-content-around@{suffix} { align-content: space-around !important }
24
+ .align-content-between@{suffix} { align-content: space-between !important }
25
+ .align-content-center@{suffix} { align-content: center !important }
26
+ .align-content-end@{suffix} { align-content: flex-end !important }
27
+ .align-content-start@{suffix} { align-content: flex-start !important }
28
28
  .align-content-stretch@{suffix} { align-content: stretch !important }
29
29
 
30
30
  .align-self-auto@{suffix} { align-self: auto !important }
31
- .align-self-start@{suffix} { align-self: flex-start !important }
32
- .align-self-end@{suffix} { align-self: flex-end !important }
33
- .align-self-center@{suffix} { align-self: center !important }
34
31
  .align-self-baseline@{suffix} { align-self: baseline !important }
32
+ .align-self-center@{suffix} { align-self: center !important }
33
+ .align-self-end@{suffix} { align-self: flex-end !important }
34
+ .align-self-start@{suffix} { align-self: flex-start !important }
35
35
  .align-self-stretch@{suffix} { align-self: stretch !important }
36
36
 
37
37
  /* Flexbox - Helper */
@@ -6,14 +6,15 @@
6
6
  .position-sticky@{suffix} {
7
7
  position: sticky !important;
8
8
 
9
- &.top-module-content {
10
- @media (max-width: @screen-xs-max) {
11
- top: -(@ApplicationLayoutBodyPadding*0.5);
12
- }
13
- @media (min-width: @screen-ls-min) {
14
- top: -(@ApplicationLayoutBodyPadding);
15
- }
16
- }
9
+ // &.top-module-content {
10
+ // @media (max-width: @screen-xs-max) {
11
+ // top: -(@ApplicationLayoutBodyPadding*0.5);
12
+ // }
13
+
14
+ // @media (min-width: @screen-ls-min) {
15
+ // top: -(@ApplicationLayoutBodyPadding);
16
+ // }
17
+ // }
17
18
  }
18
19
 
19
20
  .top-0@{suffix} { top: 0 !important }
@@ -94,22 +94,3 @@ each(@sizes-vw, {
94
94
  .sizing-vh(height; @suffix);
95
95
  .sizing-vh(min-height; @suffix);
96
96
  .sizing-vh(max-height; @suffix);
97
-
98
- // ApplicationLayout viewport height
99
- .ApplicationLayoutHeader@{suffix} {
100
- ~ .ApplicationLayoutBody,
101
- ~ .ApplicationLayoutSidebar {
102
- .sizing-vh(height; @suffix; @navbar-height);
103
- .sizing-vh(min-height; @suffix; @navbar-height);
104
- }
105
-
106
- ~ .ApplicationLayoutBody .module-content {
107
- @media (max-width: @screen-ls) {
108
- .sizing-vh(height; @suffix; @navbar-height + @ApplicationLayoutBodyPadding*0.5);
109
- }
110
-
111
- @media (min-width: @screen-ls) {
112
- .sizing-vh(height; @suffix; @navbar-height + @ApplicationLayoutBodyPadding);
113
- }
114
- }
115
- }
@@ -0,0 +1,18 @@
1
+ // ApplicationLayout viewport height
2
+ .ApplicationLayoutHeader {
3
+ ~ .ApplicationLayoutBody,
4
+ ~ .ApplicationLayoutSidebar {
5
+ .sizing-vh(height; ~''; @navbar-height);
6
+ .sizing-vh(min-height; ~''; @navbar-height);
7
+ }
8
+
9
+ ~ .ApplicationLayoutBody .module-content {
10
+ @media (max-width: @screen-xs) {
11
+ .sizing-vh(height; ~''; @navbar-height + @ApplicationLayoutBodyPadding*0.5);
12
+ }
13
+
14
+ @media (min-width: @screen-xs) {
15
+ .sizing-vh(height; ~''; @navbar-height + @ApplicationLayoutBodyPadding);
16
+ }
17
+ }
18
+ }
@@ -0,0 +1,186 @@
1
+ .show {
2
+ display: block !important;
3
+ opacity: 1;
4
+ }
5
+
6
+ .invisible {
7
+ visibility: hidden;
8
+ }
9
+
10
+ .hidden, .hide {
11
+ display: none !important;
12
+ }
13
+
14
+ html .hidden-empty:empty {
15
+ display: none !important;
16
+ }
17
+
18
+ .hidden-print {
19
+ @media print {
20
+ display: none !important;
21
+ }
22
+ }
23
+
24
+ .visible-print {
25
+ display: none !important;
26
+
27
+ @media print {
28
+ display: block !important;
29
+ }
30
+
31
+ &-inline {
32
+ display: none !important;
33
+
34
+ @media print {
35
+ display: inline !important;
36
+ }
37
+ }
38
+ }
39
+
40
+ // visible only
41
+
42
+ @media (min-width: @screen-ls-min) {
43
+ .visible-xs {
44
+ // "-ls" because UIKIT xs and UIKIT ls are the same
45
+ // but the website.css uses -ls as the mobile breakpoint
46
+ display: none !important;
47
+ }
48
+ }
49
+
50
+ .visible-ls {
51
+ @media (max-width: @screen-xs-max) {
52
+ display: none !important;
53
+ }
54
+
55
+ @media (min-width: @screen-sm-min) {
56
+ display: none !important;
57
+ }
58
+ }
59
+
60
+ .visible-sm {
61
+ @media (max-width: @screen-ls-max) {
62
+ display: none !important;
63
+ }
64
+
65
+ @media (min-width: @screen-md-min) {
66
+ display: none !important;
67
+ }
68
+ }
69
+
70
+ .visible-md {
71
+ @media (max-width: @screen-sm-max) {
72
+ display: none !important;
73
+ }
74
+
75
+ @media (min-width: @screen-lg-min) {
76
+ display: none !important;
77
+ }
78
+ }
79
+
80
+ .visible-lg {
81
+ @media (max-width: @screen-md-max) {
82
+ display: none !important;
83
+ }
84
+
85
+ @media (min-width: @screen-xl-min) {
86
+ display: none !important;
87
+ }
88
+ }
89
+
90
+ .visible-xl {
91
+ @media (max-width: @screen-xl-min) {
92
+ display: none !important;
93
+ }
94
+ }
95
+
96
+ // hidden only
97
+
98
+ .hidden-xs {
99
+ // "-ls" because UIKIT xs and UIKIT ls are the same
100
+ // but the website.css uses -ls as the mobile breakpoint
101
+ @media (max-width: @screen-ls) {
102
+ display: none !important;
103
+ }
104
+ }
105
+
106
+ .hidden-ls {
107
+ @media (min-width: @screen-ls-min) and (max-width: @screen-ls-max) {
108
+ display: none !important;
109
+ }
110
+ }
111
+
112
+ .hidden-sm {
113
+ @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
114
+ display: none !important;
115
+ }
116
+ }
117
+
118
+ .hidden-md {
119
+ @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
120
+ display: none !important;
121
+ }
122
+ }
123
+
124
+ .hidden-lg {
125
+ @media (min-width: @screen-lg-min) and (max-width: @screen-lg-max) {
126
+ display: none !important;
127
+ }
128
+ }
129
+
130
+ .hidden-xl {
131
+ @media (min-width: @screen-xl) {
132
+ display: none !important;
133
+ }
134
+ }
135
+
136
+ // visible from
137
+
138
+ .visible-min-ls {
139
+ @media (max-width: @screen-sm-min) {
140
+ display: none !important;
141
+ }
142
+ }
143
+
144
+ .visible-min-sm {
145
+ @media (max-width: @screen-md-min) {
146
+ display: none !important;
147
+ }
148
+ }
149
+
150
+ .visible-min-md {
151
+ @media (max-width: @screen-lg-min) {
152
+ display: none !important;
153
+ }
154
+ }
155
+
156
+ .visible-min-lg {
157
+ @media (max-width: @screen-xl-min) {
158
+ display: none !important;
159
+ }
160
+ }
161
+
162
+ // hidden from
163
+
164
+ .hidden-min-ls {
165
+ @media (min-width: @screen-ls-min) {
166
+ display: none !important;
167
+ }
168
+ }
169
+
170
+ .hidden-min-sm {
171
+ @media (min-width: @screen-sm-min) {
172
+ display: none !important;
173
+ }
174
+ }
175
+
176
+ .hidden-min-md {
177
+ @media (min-width: @screen-md-min) {
178
+ display: none !important;
179
+ }
180
+ }
181
+
182
+ .hidden-min-lg {
183
+ @media (min-width: @screen-lg-min) {
184
+ display: none !important;
185
+ }
186
+ }
@@ -0,0 +1 @@
1
+ @import (less) "blur.less";
@@ -0,0 +1,17 @@
1
+ .blur {
2
+ &-0 { filter: blur(0) }
3
+ &-1 { filter: blur(1px) }
4
+ &-2 { filter: blur(2px) }
5
+ &-3 { filter: blur(3px) }
6
+ &-4 { filter: blur(4px) }
7
+ &-5 { filter: blur(5px) }
8
+ &-6 { filter: blur(6px) }
9
+ &-7 { filter: blur(7px) }
10
+ &-8 { filter: blur(8px) }
11
+ &-9 { filter: blur(9px) }
12
+ &-10 { filter: blur(10px) }
13
+ &-20 { filter: blur(20px) }
14
+ &-30 { filter: blur(30px) }
15
+ &-40 { filter: blur(40px) }
16
+ &-50 { filter: blur(50px) }
17
+ }
@@ -2,7 +2,7 @@
2
2
 
3
3
  @font-face {
4
4
  font-family: "rioglyph";
5
- src: url("rioglyph.woff?14b6680c6235c42a26bca0913e1eea27") format("woff");
5
+ src: url("rioglyph.woff?e23ee3a7ff7e24c90f6028227ebcb825") format("woff");
6
6
  font-weight: normal;
7
7
  font-style: normal;
8
8
  }
@@ -274,6 +274,11 @@
274
274
  .hover-rioglyph-cog:hover:before {
275
275
  content: "\e96c";
276
276
  }
277
+ @rioglyph-color-swatch: "\f18e";
278
+ .rioglyph-color-swatch:before,
279
+ .hover-rioglyph-color-swatch:hover:before {
280
+ content: "\f18e";
281
+ }
277
282
  @rioglyph-comment: "\e111";
278
283
  .rioglyph-comment:before,
279
284
  .hover-rioglyph-comment:hover:before {
@@ -329,6 +334,11 @@
329
334
  .hover-rioglyph-csv:hover:before {
330
335
  content: "\f155";
331
336
  }
337
+ @rioglyph-currency-euro: "\f18f";
338
+ .rioglyph-currency-euro:before,
339
+ .hover-rioglyph-currency-euro:hover:before {
340
+ content: "\f18f";
341
+ }
332
342
  @rioglyph-damages: "\f12a";
333
343
  .rioglyph-damages:before,
334
344
  .hover-rioglyph-damages:hover:before {
package/lib/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "0.16.0-beta-4"
2
+ "version": "0.16.0"
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rio-cloud/rio-uikit",
3
- "version": "0.16.0-beta-4",
3
+ "version": "0.16.0",
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": {
@@ -44,8 +44,8 @@
44
44
  "@babel/preset-react": "^7.16.7",
45
45
  "@babel/runtime": "^7.16.7",
46
46
  "@svgr/webpack": "^6.2.1",
47
- "@testing-library/react": "^12.1.2",
48
- "@testing-library/user-event": "^13.5.0",
47
+ "@testing-library/react": "12.1.2",
48
+ "@testing-library/user-event": "13.5.0",
49
49
  "@types/jest": "^27.4.1",
50
50
  "@types/lodash": "^4.14.178",
51
51
  "@types/react": "^17.0.39",
@@ -132,10 +132,10 @@
132
132
  "natural-orderby": "2.0.3",
133
133
  "prop-types": "15.8.1",
134
134
  "react-bootstrap": "1.6.4",
135
- "react-content-loader": "6.1.0",
135
+ "react-content-loader": "6.2.0",
136
136
  "react-datetime": "github:rio-cloud/react-datetime#v3.1.0-1-merged",
137
137
  "react-debounce-input": "3.2.5",
138
- "react-dropzone": "12.0.4",
138
+ "react-dropzone": "12.0.5",
139
139
  "react-input-mask": "3.0.0-alpha.2",
140
140
  "react-motion": "0.5.2",
141
141
  "react-notifications": "1.7.3",