@rio-cloud/rio-uikit 0.16.0-beta-3 → 0.16.1-beta-1
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/lib/components/filepicker/FilePicker.js +1 -1
- package/lib/components/table/TableSettingsColumnButtons.js +7 -6
- package/lib/components/table/TableSettingsColumnDetails.js +58 -103
- package/lib/components/table/TableSettingsDialog.js +26 -32
- package/lib/components/table/TableSettingsDialogFooter.js +15 -13
- package/lib/components/table/TableSettingsListContainer.js +55 -20
- package/lib/components/table/TableSettingsListItem.js +66 -27
- package/lib/components/table/TableViewToggles.js +98 -104
- package/lib/components/table/tableSettingsPropTypes.js +18 -0
- package/lib/style/css/_exports/rio-buyButton.less +1 -1
- package/lib/style/css/_exports/rio-uikit-core.less +5 -1
- package/lib/style/css/_exports/rio-website.less +1 -2
- package/lib/style/css/_exports/vw-uikit.less +1 -1
- package/lib/style/css/components/ApplicationHeader.less +1 -1
- package/lib/style/css/components/AssetTree.less +2 -2
- package/lib/style/css/components/Dialog.less +13 -11
- package/lib/style/css/components/Dropdown.less +0 -1
- package/lib/style/css/components/Select.less +1 -0
- package/lib/style/css/components/TableToolbar.less +1 -1
- package/lib/style/css/components/Tooltip.less +0 -39
- package/lib/style/css/design/list-group.less +7 -2
- package/lib/style/css/design/responsive/_imports.less +0 -1
- package/lib/style/css/design/responsive/flexgrid.less +14 -14
- package/lib/style/css/design/responsive/position.less +9 -8
- package/lib/style/css/design/responsive/sizing.less +0 -19
- package/lib/style/css/design/sizing.less +18 -0
- package/lib/style/css/design/visibility.less +186 -0
- package/lib/style/css/filter/_imports.less +1 -0
- package/lib/style/css/filter/blur.less +17 -0
- package/lib/style/fonts/rioglyph/rioglyph.less +11 -1
- package/lib/style/fonts/rioglyph/rioglyph.svg +120 -102
- package/lib/style/fonts/rioglyph/rioglyph.ttf +0 -0
- package/lib/style/fonts/rioglyph/rioglyph.woff +0 -0
- package/lib/types.ts +10 -6
- package/lib/version.json +1 -1
- package/package.json +8 -6
|
@@ -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
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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?
|
|
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 {
|