@redhat-cloud-services/frontend-components 7.0.13 → 7.0.14
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/ConditionalFilter/conditional-filter.css +3 -3
- package/Section/section.css +4 -4
- package/TreeTable/styles.css +8 -6
- package/esm/ConditionalFilter/conditional-filter.css +3 -3
- package/esm/Section/section.css +4 -4
- package/esm/TreeTable/styles.css +8 -6
- package/esm/index.css +15 -13
- package/index.css +15 -13
- package/package.json +1 -2
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
.ins-c-conditional-filter .ins-c-conditional-filter__group .ins-c-conditional-filter__no-label .pf-v6-c-dropdown__toggle-text {
|
|
20
20
|
width: auto;
|
|
21
21
|
}
|
|
22
|
-
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__menu-group {
|
|
23
|
-
padding: 0;
|
|
24
|
-
}
|
|
25
22
|
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__menu-group .pf-v6-c-select__menu-group-title:empty {
|
|
26
23
|
display: none;
|
|
27
24
|
}
|
|
25
|
+
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__menu-group {
|
|
26
|
+
padding: 0;
|
|
27
|
+
}
|
|
28
28
|
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__option-button {
|
|
29
29
|
padding: 0;
|
|
30
30
|
}
|
package/Section/section.css
CHANGED
|
@@ -2,10 +2,6 @@ section.ins-l-content {
|
|
|
2
2
|
padding: var(--pf-t--global--spacer--lg);
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
-
section.ins-l-button-group {
|
|
6
|
-
margin: 24px 0px;
|
|
7
|
-
margin: 1.5rem 0rem;
|
|
8
|
-
}
|
|
9
5
|
section.ins-l-button-group > * {
|
|
10
6
|
display: inline;
|
|
11
7
|
}
|
|
@@ -13,6 +9,10 @@ section.ins-l-button-group * + * {
|
|
|
13
9
|
margin-left: 5px;
|
|
14
10
|
margin-left: 0.3125rem;
|
|
15
11
|
}
|
|
12
|
+
section.ins-l-button-group {
|
|
13
|
+
margin: 24px 0px;
|
|
14
|
+
margin: 1.5rem 0rem;
|
|
15
|
+
}
|
|
16
16
|
|
|
17
17
|
section.ins-l-icon-group * + * {
|
|
18
18
|
margin-left: 10px;
|
package/TreeTable/styles.css
CHANGED
|
@@ -13,8 +13,6 @@
|
|
|
13
13
|
--pf-v6-c-treeview--tr--Visibility: visible;
|
|
14
14
|
width: 100%;
|
|
15
15
|
border-collapse: collapse;
|
|
16
|
-
--background: #fff;
|
|
17
|
-
--background-base: #ddd;
|
|
18
16
|
}
|
|
19
17
|
.pf-v6-c-treeview th,
|
|
20
18
|
.pf-v6-c-treeview td {
|
|
@@ -67,6 +65,10 @@
|
|
|
67
65
|
.pf-v6-c-treeview .pf-v6-c-treeview__action {
|
|
68
66
|
text-align: right;
|
|
69
67
|
}
|
|
68
|
+
.pf-v6-c-treeview {
|
|
69
|
+
--background: #fff;
|
|
70
|
+
--background-base: #ddd;
|
|
71
|
+
}
|
|
70
72
|
.pf-v6-c-treeview tr {
|
|
71
73
|
background: var(--background);
|
|
72
74
|
}
|
|
@@ -168,15 +170,15 @@
|
|
|
168
170
|
}
|
|
169
171
|
|
|
170
172
|
@media (max-width: 2000px) {
|
|
173
|
+
.pf-v6-c-treeview.pf-m-grid,
|
|
174
|
+
.pf-v6-c-treeview.pf-m-grid tr {
|
|
175
|
+
display: grid;
|
|
176
|
+
}
|
|
171
177
|
.pf-v6-c-treeview.pf-m-grid {
|
|
172
178
|
width: 480px;
|
|
173
179
|
background: lightgray;
|
|
174
180
|
padding: 12px;
|
|
175
181
|
}
|
|
176
|
-
.pf-v6-c-treeview.pf-m-grid,
|
|
177
|
-
.pf-v6-c-treeview.pf-m-grid tr {
|
|
178
|
-
display: grid;
|
|
179
|
-
}
|
|
180
182
|
.pf-v6-c-treeview.pf-m-grid thead {
|
|
181
183
|
display: none;
|
|
182
184
|
}
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
.ins-c-conditional-filter .ins-c-conditional-filter__group .ins-c-conditional-filter__no-label .pf-v6-c-dropdown__toggle-text {
|
|
20
20
|
width: auto;
|
|
21
21
|
}
|
|
22
|
-
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__menu-group {
|
|
23
|
-
padding: 0;
|
|
24
|
-
}
|
|
25
22
|
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__menu-group .pf-v6-c-select__menu-group-title:empty {
|
|
26
23
|
display: none;
|
|
27
24
|
}
|
|
25
|
+
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__menu-group {
|
|
26
|
+
padding: 0;
|
|
27
|
+
}
|
|
28
28
|
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__option-button {
|
|
29
29
|
padding: 0;
|
|
30
30
|
}
|
package/esm/Section/section.css
CHANGED
|
@@ -2,10 +2,6 @@ section.ins-l-content {
|
|
|
2
2
|
padding: var(--pf-t--global--spacer--lg);
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
-
section.ins-l-button-group {
|
|
6
|
-
margin: 24px 0px;
|
|
7
|
-
margin: 1.5rem 0rem;
|
|
8
|
-
}
|
|
9
5
|
section.ins-l-button-group > * {
|
|
10
6
|
display: inline;
|
|
11
7
|
}
|
|
@@ -13,6 +9,10 @@ section.ins-l-button-group * + * {
|
|
|
13
9
|
margin-left: 5px;
|
|
14
10
|
margin-left: 0.3125rem;
|
|
15
11
|
}
|
|
12
|
+
section.ins-l-button-group {
|
|
13
|
+
margin: 24px 0px;
|
|
14
|
+
margin: 1.5rem 0rem;
|
|
15
|
+
}
|
|
16
16
|
|
|
17
17
|
section.ins-l-icon-group * + * {
|
|
18
18
|
margin-left: 10px;
|
package/esm/TreeTable/styles.css
CHANGED
|
@@ -13,8 +13,6 @@
|
|
|
13
13
|
--pf-v6-c-treeview--tr--Visibility: visible;
|
|
14
14
|
width: 100%;
|
|
15
15
|
border-collapse: collapse;
|
|
16
|
-
--background: #fff;
|
|
17
|
-
--background-base: #ddd;
|
|
18
16
|
}
|
|
19
17
|
.pf-v6-c-treeview th,
|
|
20
18
|
.pf-v6-c-treeview td {
|
|
@@ -67,6 +65,10 @@
|
|
|
67
65
|
.pf-v6-c-treeview .pf-v6-c-treeview__action {
|
|
68
66
|
text-align: right;
|
|
69
67
|
}
|
|
68
|
+
.pf-v6-c-treeview {
|
|
69
|
+
--background: #fff;
|
|
70
|
+
--background-base: #ddd;
|
|
71
|
+
}
|
|
70
72
|
.pf-v6-c-treeview tr {
|
|
71
73
|
background: var(--background);
|
|
72
74
|
}
|
|
@@ -168,15 +170,15 @@
|
|
|
168
170
|
}
|
|
169
171
|
|
|
170
172
|
@media (max-width: 2000px) {
|
|
173
|
+
.pf-v6-c-treeview.pf-m-grid,
|
|
174
|
+
.pf-v6-c-treeview.pf-m-grid tr {
|
|
175
|
+
display: grid;
|
|
176
|
+
}
|
|
171
177
|
.pf-v6-c-treeview.pf-m-grid {
|
|
172
178
|
width: 480px;
|
|
173
179
|
background: lightgray;
|
|
174
180
|
padding: 12px;
|
|
175
181
|
}
|
|
176
|
-
.pf-v6-c-treeview.pf-m-grid,
|
|
177
|
-
.pf-v6-c-treeview.pf-m-grid tr {
|
|
178
|
-
display: grid;
|
|
179
|
-
}
|
|
180
182
|
.pf-v6-c-treeview.pf-m-grid thead {
|
|
181
183
|
display: none;
|
|
182
184
|
}
|
package/esm/index.css
CHANGED
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
.ins-c-conditional-filter .ins-c-conditional-filter__group .ins-c-conditional-filter__no-label .pf-v6-c-dropdown__toggle-text {
|
|
35
35
|
width: auto;
|
|
36
36
|
}
|
|
37
|
-
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__menu-group {
|
|
38
|
-
padding: 0;
|
|
39
|
-
}
|
|
40
37
|
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__menu-group .pf-v6-c-select__menu-group-title:empty {
|
|
41
38
|
display: none;
|
|
42
39
|
}
|
|
40
|
+
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__menu-group {
|
|
41
|
+
padding: 0;
|
|
42
|
+
}
|
|
43
43
|
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__option-button {
|
|
44
44
|
padding: 0;
|
|
45
45
|
}
|
|
@@ -306,10 +306,6 @@ section.ins-l-content {
|
|
|
306
306
|
padding: var(--pf-t--global--spacer--lg);
|
|
307
307
|
}
|
|
308
308
|
|
|
309
|
-
section.ins-l-button-group {
|
|
310
|
-
margin: 24px 0px;
|
|
311
|
-
margin: 1.5rem 0rem;
|
|
312
|
-
}
|
|
313
309
|
section.ins-l-button-group > * {
|
|
314
310
|
display: inline;
|
|
315
311
|
}
|
|
@@ -317,6 +313,10 @@ section.ins-l-button-group * + * {
|
|
|
317
313
|
margin-left: 5px;
|
|
318
314
|
margin-left: 0.3125rem;
|
|
319
315
|
}
|
|
316
|
+
section.ins-l-button-group {
|
|
317
|
+
margin: 24px 0px;
|
|
318
|
+
margin: 1.5rem 0rem;
|
|
319
|
+
}
|
|
320
320
|
|
|
321
321
|
section.ins-l-icon-group * + * {
|
|
322
322
|
margin-left: 10px;
|
|
@@ -443,8 +443,6 @@ section.ins-l-icon-group__with-major .ins-battery:last-of-type span.label {
|
|
|
443
443
|
--pf-v6-c-treeview--tr--Visibility: visible;
|
|
444
444
|
width: 100%;
|
|
445
445
|
border-collapse: collapse;
|
|
446
|
-
--background: #fff;
|
|
447
|
-
--background-base: #ddd;
|
|
448
446
|
}
|
|
449
447
|
.pf-v6-c-treeview th,
|
|
450
448
|
.pf-v6-c-treeview td {
|
|
@@ -497,6 +495,10 @@ section.ins-l-icon-group__with-major .ins-battery:last-of-type span.label {
|
|
|
497
495
|
.pf-v6-c-treeview .pf-v6-c-treeview__action {
|
|
498
496
|
text-align: right;
|
|
499
497
|
}
|
|
498
|
+
.pf-v6-c-treeview {
|
|
499
|
+
--background: #fff;
|
|
500
|
+
--background-base: #ddd;
|
|
501
|
+
}
|
|
500
502
|
.pf-v6-c-treeview tr {
|
|
501
503
|
background: var(--background);
|
|
502
504
|
}
|
|
@@ -598,15 +600,15 @@ section.ins-l-icon-group__with-major .ins-battery:last-of-type span.label {
|
|
|
598
600
|
}
|
|
599
601
|
|
|
600
602
|
@media (max-width: 2000px) {
|
|
603
|
+
.pf-v6-c-treeview.pf-m-grid,
|
|
604
|
+
.pf-v6-c-treeview.pf-m-grid tr {
|
|
605
|
+
display: grid;
|
|
606
|
+
}
|
|
601
607
|
.pf-v6-c-treeview.pf-m-grid {
|
|
602
608
|
width: 480px;
|
|
603
609
|
background: lightgray;
|
|
604
610
|
padding: 12px;
|
|
605
611
|
}
|
|
606
|
-
.pf-v6-c-treeview.pf-m-grid,
|
|
607
|
-
.pf-v6-c-treeview.pf-m-grid tr {
|
|
608
|
-
display: grid;
|
|
609
|
-
}
|
|
610
612
|
.pf-v6-c-treeview.pf-m-grid thead {
|
|
611
613
|
display: none;
|
|
612
614
|
}
|
package/index.css
CHANGED
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
.ins-c-conditional-filter .ins-c-conditional-filter__group .ins-c-conditional-filter__no-label .pf-v6-c-dropdown__toggle-text {
|
|
35
35
|
width: auto;
|
|
36
36
|
}
|
|
37
|
-
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__menu-group {
|
|
38
|
-
padding: 0;
|
|
39
|
-
}
|
|
40
37
|
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__menu-group .pf-v6-c-select__menu-group-title:empty {
|
|
41
38
|
display: none;
|
|
42
39
|
}
|
|
40
|
+
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__menu-group {
|
|
41
|
+
padding: 0;
|
|
42
|
+
}
|
|
43
43
|
.ins-c-conditional-filter .pf-v6-l-split__item .pf-v6-c-select__option-button {
|
|
44
44
|
padding: 0;
|
|
45
45
|
}
|
|
@@ -306,10 +306,6 @@ section.ins-l-content {
|
|
|
306
306
|
padding: var(--pf-t--global--spacer--lg);
|
|
307
307
|
}
|
|
308
308
|
|
|
309
|
-
section.ins-l-button-group {
|
|
310
|
-
margin: 24px 0px;
|
|
311
|
-
margin: 1.5rem 0rem;
|
|
312
|
-
}
|
|
313
309
|
section.ins-l-button-group > * {
|
|
314
310
|
display: inline;
|
|
315
311
|
}
|
|
@@ -317,6 +313,10 @@ section.ins-l-button-group * + * {
|
|
|
317
313
|
margin-left: 5px;
|
|
318
314
|
margin-left: 0.3125rem;
|
|
319
315
|
}
|
|
316
|
+
section.ins-l-button-group {
|
|
317
|
+
margin: 24px 0px;
|
|
318
|
+
margin: 1.5rem 0rem;
|
|
319
|
+
}
|
|
320
320
|
|
|
321
321
|
section.ins-l-icon-group * + * {
|
|
322
322
|
margin-left: 10px;
|
|
@@ -443,8 +443,6 @@ section.ins-l-icon-group__with-major .ins-battery:last-of-type span.label {
|
|
|
443
443
|
--pf-v6-c-treeview--tr--Visibility: visible;
|
|
444
444
|
width: 100%;
|
|
445
445
|
border-collapse: collapse;
|
|
446
|
-
--background: #fff;
|
|
447
|
-
--background-base: #ddd;
|
|
448
446
|
}
|
|
449
447
|
.pf-v6-c-treeview th,
|
|
450
448
|
.pf-v6-c-treeview td {
|
|
@@ -497,6 +495,10 @@ section.ins-l-icon-group__with-major .ins-battery:last-of-type span.label {
|
|
|
497
495
|
.pf-v6-c-treeview .pf-v6-c-treeview__action {
|
|
498
496
|
text-align: right;
|
|
499
497
|
}
|
|
498
|
+
.pf-v6-c-treeview {
|
|
499
|
+
--background: #fff;
|
|
500
|
+
--background-base: #ddd;
|
|
501
|
+
}
|
|
500
502
|
.pf-v6-c-treeview tr {
|
|
501
503
|
background: var(--background);
|
|
502
504
|
}
|
|
@@ -598,15 +600,15 @@ section.ins-l-icon-group__with-major .ins-battery:last-of-type span.label {
|
|
|
598
600
|
}
|
|
599
601
|
|
|
600
602
|
@media (max-width: 2000px) {
|
|
603
|
+
.pf-v6-c-treeview.pf-m-grid,
|
|
604
|
+
.pf-v6-c-treeview.pf-m-grid tr {
|
|
605
|
+
display: grid;
|
|
606
|
+
}
|
|
601
607
|
.pf-v6-c-treeview.pf-m-grid {
|
|
602
608
|
width: 480px;
|
|
603
609
|
background: lightgray;
|
|
604
610
|
padding: 12px;
|
|
605
611
|
}
|
|
606
|
-
.pf-v6-c-treeview.pf-m-grid,
|
|
607
|
-
.pf-v6-c-treeview.pf-m-grid tr {
|
|
608
|
-
display: grid;
|
|
609
|
-
}
|
|
610
612
|
.pf-v6-c-treeview.pf-m-grid thead {
|
|
611
613
|
display: none;
|
|
612
614
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redhat-cloud-services/frontend-components",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.14",
|
|
4
4
|
"description": "Common components for RedHat Cloud Services project.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "esm/index.js",
|
|
@@ -51,7 +51,6 @@
|
|
|
51
51
|
"@types/react": "^18.3.3",
|
|
52
52
|
"css-loader": "^6.7.1",
|
|
53
53
|
"eslint-plugin-cypress": "^4.2.1",
|
|
54
|
-
"glob": "10.3.3",
|
|
55
54
|
"sass-loader": "^16.0.2",
|
|
56
55
|
"style-loader": "^3.3.1"
|
|
57
56
|
}
|