@patternfly/react-styles 3.7.3 → 3.7.8
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/CHANGELOG.md +40 -0
- package/css/components/DataToolbar/data-toolbar.css +19 -1
- package/css/components/DataToolbar/data-toolbar.d.ts +4 -2
- package/css/components/DataToolbar/data-toolbar.js +4 -2
- package/css/components/Divider/divider.css +118 -4
- package/css/components/Divider/divider.d.ts +45 -1
- package/css/components/Divider/divider.js +45 -1
- package/css/components/Drawer/drawer.css +322 -70
- package/css/components/Drawer/drawer.d.ts +23 -5
- package/css/components/Drawer/drawer.js +24 -6
- package/css/components/FileUpload/file-upload.css +54 -47
- package/css/components/FileUpload/file-upload.d.ts +4 -4
- package/css/components/FileUpload/file-upload.js +4 -4
- package/css/components/Login/login.css +1 -3
- package/css/components/Nav/nav.css +4 -3
- package/css/components/OverflowMenu/overflow-menu.css +12 -0
- package/css/components/OverflowMenu/overflow-menu.d.ts +2 -0
- package/css/components/OverflowMenu/overflow-menu.js +3 -1
- package/css/components/Page/page.css +4 -14
- package/css/components/Page/page.d.ts +0 -2
- package/css/components/Page/page.js +0 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,46 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [3.7.8](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@3.7.7...@patternfly/react-styles@3.7.8) (2020-03-09)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## [3.7.7](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@3.7.6...@patternfly/react-styles@3.7.7) (2020-03-09)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
## [3.7.6](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@3.7.5...@patternfly/react-styles@3.7.6) (2020-03-03)
|
23
|
+
|
24
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
## [3.7.5](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@3.7.4...@patternfly/react-styles@3.7.5) (2020-02-27)
|
31
|
+
|
32
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
## [3.7.4](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@3.7.3...@patternfly/react-styles@3.7.4) (2020-02-18)
|
39
|
+
|
40
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
41
|
+
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
|
6
46
|
## [3.7.3](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@3.7.2...@patternfly/react-styles@3.7.3) (2020-02-18)
|
7
47
|
|
8
48
|
**Note:** Version bump only for package @patternfly/react-styles
|
@@ -40,6 +40,7 @@
|
|
40
40
|
--pf-c-data-toolbar__item--m-label--spacer: var(--pf-c-data-toolbar__item--spacer);
|
41
41
|
--pf-c-data-toolbar__item--m-label--FontWeight: var(--pf-global--FontWeight--bold);
|
42
42
|
--pf-c-data-toolbar__toggle--m-expanded__c-button--m-plain--Color: var(--pf-global--Color--100);
|
43
|
+
--pf-c-data-toolbar--c-divider--m-vertical--spacer: var(--pf-c-data-toolbar--spacer--base);
|
43
44
|
position: relative;
|
44
45
|
row-gap: var(--pf-c-data-toolbar--RowGap);
|
45
46
|
display: grid;
|
@@ -52,6 +53,17 @@
|
|
52
53
|
--pf-c-data-toolbar__expandable-content--PaddingBottom: var(--pf-c-data-toolbar__expandable-content--lg--PaddingBottom);
|
53
54
|
--pf-c-data-toolbar__expandable-content--PaddingLeft: var(--pf-c-data-toolbar__expandable-content--lg--PaddingLeft); } }
|
54
55
|
|
56
|
+
.pf-c-data-toolbar__content-section > .pf-c-divider,
|
57
|
+
.pf-c-data-toolbar__group > .pf-c-divider {
|
58
|
+
--pf-c-data-toolbar--spacer: var(--pf-c-data-toolbar--c-divider--m-vertical--spacer); }
|
59
|
+
|
60
|
+
.pf-c-data-toolbar__content-section > .pf-c-divider.pf-m-vertical,
|
61
|
+
.pf-c-data-toolbar__group > .pf-c-divider.pf-m-vertical {
|
62
|
+
margin-right: var(--pf-c-data-toolbar--spacer); }
|
63
|
+
.pf-c-data-toolbar__content-section > .pf-c-divider.pf-m-vertical:last-child,
|
64
|
+
.pf-c-data-toolbar__group > .pf-c-divider.pf-m-vertical:last-child {
|
65
|
+
--pf-c-data-toolbar--spacer: 0; }
|
66
|
+
|
55
67
|
.pf-c-data-toolbar__group {
|
56
68
|
--pf-c-data-toolbar--spacer: var(--pf-c-data-toolbar__group--spacer);
|
57
69
|
display: flex;
|
@@ -80,6 +92,10 @@
|
|
80
92
|
.pf-c-data-toolbar__group.pf-m-toggle-group .pf-c-data-toolbar__toggle {
|
81
93
|
display: inline-block;
|
82
94
|
visibility: visible; }
|
95
|
+
.pf-c-data-toolbar__group.pf-m-align-right ~ *,
|
96
|
+
.pf-c-data-toolbar__group.pf-m-align-right ~ .pf-c-data-toolbar__item,
|
97
|
+
.pf-c-data-toolbar__group.pf-m-align-right ~ .pf-c-data-toolbar__group {
|
98
|
+
margin-left: 0; }
|
83
99
|
.pf-c-data-toolbar__group:last-child {
|
84
100
|
--pf-c-data-toolbar--spacer: 0; }
|
85
101
|
|
@@ -107,7 +123,9 @@
|
|
107
123
|
margin-left: auto; }
|
108
124
|
.pf-c-data-toolbar__item.pf-m-pagination .pf-c-pagination {
|
109
125
|
flex-wrap: nowrap; }
|
110
|
-
.pf-c-data-toolbar__item.pf-m-align-right ~
|
126
|
+
.pf-c-data-toolbar__item.pf-m-align-right ~ *,
|
127
|
+
.pf-c-data-toolbar__item.pf-m-align-right ~ .pf-c-data-toolbar__item,
|
128
|
+
.pf-c-data-toolbar__item.pf-m-align-right ~ .pf-c-data-toolbar__group {
|
111
129
|
margin-left: 0; }
|
112
130
|
.pf-c-data-toolbar__item:last-child {
|
113
131
|
--pf-c-data-toolbar--spacer: 0; }
|
@@ -1,20 +1,23 @@
|
|
1
1
|
import './data-toolbar.css';
|
2
2
|
declare const _default: {
|
3
3
|
dataToolbar: string;
|
4
|
+
dataToolbarContentSection: string;
|
5
|
+
divider: string;
|
4
6
|
dataToolbarGroup: string;
|
5
7
|
dataToolbarItem: string;
|
6
8
|
dataToolbarToggle: string;
|
7
9
|
pagination: string;
|
8
10
|
dataToolbarContent: string;
|
9
|
-
dataToolbarContentSection: string;
|
10
11
|
dataToolbarExpandableContent: string;
|
11
12
|
chipGroup: string;
|
12
13
|
button: string;
|
13
14
|
modifiers: {
|
15
|
+
'vertical': string;
|
14
16
|
'buttonGroup': string;
|
15
17
|
'iconButtonGroup': string;
|
16
18
|
'filterGroup': string;
|
17
19
|
'toggleGroup': string;
|
20
|
+
'alignRight': string;
|
18
21
|
'separator': string;
|
19
22
|
'overflowMenu': string;
|
20
23
|
'bulkSelect': string;
|
@@ -22,7 +25,6 @@ declare const _default: {
|
|
22
25
|
'chipGroup': string;
|
23
26
|
'label': string;
|
24
27
|
'pagination': string;
|
25
|
-
'alignRight': string;
|
26
28
|
'expanded': string;
|
27
29
|
'chipContainer': string;
|
28
30
|
'plain': string;
|
@@ -3,20 +3,23 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
require("./data-toolbar.css");
|
4
4
|
exports.default = {
|
5
5
|
dataToolbar: 'pf-c-data-toolbar',
|
6
|
+
dataToolbarContentSection: 'pf-c-data-toolbar__content-section',
|
7
|
+
divider: 'pf-c-divider',
|
6
8
|
dataToolbarGroup: 'pf-c-data-toolbar__group',
|
7
9
|
dataToolbarItem: 'pf-c-data-toolbar__item',
|
8
10
|
dataToolbarToggle: 'pf-c-data-toolbar__toggle',
|
9
11
|
pagination: 'pf-c-pagination',
|
10
12
|
dataToolbarContent: 'pf-c-data-toolbar__content',
|
11
|
-
dataToolbarContentSection: 'pf-c-data-toolbar__content-section',
|
12
13
|
dataToolbarExpandableContent: 'pf-c-data-toolbar__expandable-content',
|
13
14
|
chipGroup: 'pf-c-chip-group',
|
14
15
|
button: 'pf-c-button',
|
15
16
|
modifiers: {
|
17
|
+
'vertical': 'pf-m-vertical',
|
16
18
|
'buttonGroup': 'pf-m-button-group',
|
17
19
|
'iconButtonGroup': 'pf-m-icon-button-group',
|
18
20
|
'filterGroup': 'pf-m-filter-group',
|
19
21
|
'toggleGroup': 'pf-m-toggle-group',
|
22
|
+
'alignRight': 'pf-m-align-right',
|
20
23
|
'separator': 'pf-m-separator',
|
21
24
|
'overflowMenu': 'pf-m-overflow-menu',
|
22
25
|
'bulkSelect': 'pf-m-bulk-select',
|
@@ -24,7 +27,6 @@ exports.default = {
|
|
24
27
|
'chipGroup': 'pf-m-chip-group',
|
25
28
|
'label': 'pf-m-label',
|
26
29
|
'pagination': 'pf-m-pagination',
|
27
|
-
'alignRight': 'pf-m-align-right',
|
28
30
|
'expanded': 'pf-m-expanded',
|
29
31
|
'chipContainer': 'pf-m-chip-container',
|
30
32
|
'plain': 'pf-m-plain',
|
@@ -1,7 +1,121 @@
|
|
1
1
|
.pf-c-divider {
|
2
2
|
--pf-c-divider--Height: var(--pf-global--BorderWidth--sm);
|
3
3
|
--pf-c-divider--BackgroundColor: var(--pf-global--BorderColor--100);
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
--pf-c-divider--after--Height: var(--pf-c-divider--Height);
|
5
|
+
--pf-c-divider--after--BackgroundColor: var(--pf-c-divider--BackgroundColor);
|
6
|
+
--pf-c-divider--after--FlexBasis: 100%;
|
7
|
+
--pf-c-divider--after--Inset: 0%;
|
8
|
+
--pf-c-divider--m-vertical--after--FlexBasis: 100%;
|
9
|
+
--pf-c-divider--m-vertical--after--Width: var(--pf-global--BorderWidth--sm);
|
10
|
+
display: flex;
|
11
|
+
align-items: center;
|
12
|
+
align-self: stretch;
|
13
|
+
justify-content: center;
|
14
|
+
width: 100%;
|
15
|
+
border: 0; }
|
16
|
+
.pf-c-divider::after {
|
17
|
+
flex-basis: calc(var(--pf-c-divider--after--FlexBasis) - calc(var(--pf-c-divider--after--Inset) * 2));
|
18
|
+
align-self: stretch;
|
19
|
+
height: var(--pf-c-divider--after--Height);
|
20
|
+
content: "";
|
21
|
+
background-color: var(--pf-c-divider--after--BackgroundColor);
|
22
|
+
justify-self: center; }
|
23
|
+
.pf-c-divider.pf-m-vertical {
|
24
|
+
display: inline-flex;
|
25
|
+
flex-direction: column;
|
26
|
+
width: auto;
|
27
|
+
height: inherit;
|
28
|
+
min-height: 100%;
|
29
|
+
max-height: 100%; }
|
30
|
+
.pf-c-divider.pf-m-vertical::after {
|
31
|
+
flex-basis: calc(var(--pf-c-divider--m-vertical--after--FlexBasis) - var(--pf-c-divider--after--Inset));
|
32
|
+
width: var(--pf-c-divider--m-vertical--after--Width); }
|
33
|
+
.pf-c-divider.pf-m-inset-none {
|
34
|
+
--pf-c-divider--after--Inset: 0%; }
|
35
|
+
.pf-c-divider.pf-m-inset-sm {
|
36
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--sm); }
|
37
|
+
.pf-c-divider.pf-m-inset-md {
|
38
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--md); }
|
39
|
+
.pf-c-divider.pf-m-inset-lg {
|
40
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--lg); }
|
41
|
+
.pf-c-divider.pf-m-inset-xl {
|
42
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--xl); }
|
43
|
+
.pf-c-divider.pf-m-inset-2xl {
|
44
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--2xl); }
|
45
|
+
.pf-c-divider.pf-m-inset-3xl {
|
46
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--3xl); }
|
47
|
+
@media (min-width: 576px) {
|
48
|
+
.pf-c-divider.pf-m-inset-none-on-sm {
|
49
|
+
--pf-c-divider--after--Inset: 0%; }
|
50
|
+
.pf-c-divider.pf-m-inset-sm-on-sm {
|
51
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--sm); }
|
52
|
+
.pf-c-divider.pf-m-inset-md-on-sm {
|
53
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--md); }
|
54
|
+
.pf-c-divider.pf-m-inset-lg-on-sm {
|
55
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--lg); }
|
56
|
+
.pf-c-divider.pf-m-inset-xl-on-sm {
|
57
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--xl); }
|
58
|
+
.pf-c-divider.pf-m-inset-2xl-on-sm {
|
59
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--2xl); }
|
60
|
+
.pf-c-divider.pf-m-inset-3xl-on-sm {
|
61
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--3xl); } }
|
62
|
+
@media (min-width: 768px) {
|
63
|
+
.pf-c-divider.pf-m-inset-none-on-md {
|
64
|
+
--pf-c-divider--after--Inset: 0%; }
|
65
|
+
.pf-c-divider.pf-m-inset-sm-on-md {
|
66
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--sm); }
|
67
|
+
.pf-c-divider.pf-m-inset-md-on-md {
|
68
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--md); }
|
69
|
+
.pf-c-divider.pf-m-inset-lg-on-md {
|
70
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--lg); }
|
71
|
+
.pf-c-divider.pf-m-inset-xl-on-md {
|
72
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--xl); }
|
73
|
+
.pf-c-divider.pf-m-inset-2xl-on-md {
|
74
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--2xl); }
|
75
|
+
.pf-c-divider.pf-m-inset-3xl-on-md {
|
76
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--3xl); } }
|
77
|
+
@media (min-width: 992px) {
|
78
|
+
.pf-c-divider.pf-m-inset-none-on-lg {
|
79
|
+
--pf-c-divider--after--Inset: 0%; }
|
80
|
+
.pf-c-divider.pf-m-inset-sm-on-lg {
|
81
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--sm); }
|
82
|
+
.pf-c-divider.pf-m-inset-md-on-lg {
|
83
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--md); }
|
84
|
+
.pf-c-divider.pf-m-inset-lg-on-lg {
|
85
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--lg); }
|
86
|
+
.pf-c-divider.pf-m-inset-xl-on-lg {
|
87
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--xl); }
|
88
|
+
.pf-c-divider.pf-m-inset-2xl-on-lg {
|
89
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--2xl); }
|
90
|
+
.pf-c-divider.pf-m-inset-3xl-on-lg {
|
91
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--3xl); } }
|
92
|
+
@media (min-width: 1200px) {
|
93
|
+
.pf-c-divider.pf-m-inset-none-on-xl {
|
94
|
+
--pf-c-divider--after--Inset: 0%; }
|
95
|
+
.pf-c-divider.pf-m-inset-sm-on-xl {
|
96
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--sm); }
|
97
|
+
.pf-c-divider.pf-m-inset-md-on-xl {
|
98
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--md); }
|
99
|
+
.pf-c-divider.pf-m-inset-lg-on-xl {
|
100
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--lg); }
|
101
|
+
.pf-c-divider.pf-m-inset-xl-on-xl {
|
102
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--xl); }
|
103
|
+
.pf-c-divider.pf-m-inset-2xl-on-xl {
|
104
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--2xl); }
|
105
|
+
.pf-c-divider.pf-m-inset-3xl-on-xl {
|
106
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--3xl); } }
|
107
|
+
@media (min-width: 1450px) {
|
108
|
+
.pf-c-divider.pf-m-inset-none-on-2xl {
|
109
|
+
--pf-c-divider--after--Inset: 0%; }
|
110
|
+
.pf-c-divider.pf-m-inset-sm-on-2xl {
|
111
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--sm); }
|
112
|
+
.pf-c-divider.pf-m-inset-md-on-2xl {
|
113
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--md); }
|
114
|
+
.pf-c-divider.pf-m-inset-lg-on-2xl {
|
115
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--lg); }
|
116
|
+
.pf-c-divider.pf-m-inset-xl-on-2xl {
|
117
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--xl); }
|
118
|
+
.pf-c-divider.pf-m-inset-2xl-on-2xl {
|
119
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--2xl); }
|
120
|
+
.pf-c-divider.pf-m-inset-3xl-on-2xl {
|
121
|
+
--pf-c-divider--after--Inset: var(--pf-global--spacer--3xl); } }
|
@@ -1,6 +1,50 @@
|
|
1
1
|
import './divider.css';
|
2
2
|
declare const _default: {
|
3
3
|
divider: string;
|
4
|
-
modifiers: {
|
4
|
+
modifiers: {
|
5
|
+
'vertical': string;
|
6
|
+
'insetNone': string;
|
7
|
+
'insetSm': string;
|
8
|
+
'insetMd': string;
|
9
|
+
'insetLg': string;
|
10
|
+
'insetXl': string;
|
11
|
+
'inset_2xl': string;
|
12
|
+
'inset_3xl': string;
|
13
|
+
'insetNoneOnSm': string;
|
14
|
+
'insetSmOnSm': string;
|
15
|
+
'insetMdOnSm': string;
|
16
|
+
'insetLgOnSm': string;
|
17
|
+
'insetXlOnSm': string;
|
18
|
+
'inset_2xlOnSm': string;
|
19
|
+
'inset_3xlOnSm': string;
|
20
|
+
'insetNoneOnMd': string;
|
21
|
+
'insetSmOnMd': string;
|
22
|
+
'insetMdOnMd': string;
|
23
|
+
'insetLgOnMd': string;
|
24
|
+
'insetXlOnMd': string;
|
25
|
+
'inset_2xlOnMd': string;
|
26
|
+
'inset_3xlOnMd': string;
|
27
|
+
'insetNoneOnLg': string;
|
28
|
+
'insetSmOnLg': string;
|
29
|
+
'insetMdOnLg': string;
|
30
|
+
'insetLgOnLg': string;
|
31
|
+
'insetXlOnLg': string;
|
32
|
+
'inset_2xlOnLg': string;
|
33
|
+
'inset_3xlOnLg': string;
|
34
|
+
'insetNoneOnXl': string;
|
35
|
+
'insetSmOnXl': string;
|
36
|
+
'insetMdOnXl': string;
|
37
|
+
'insetLgOnXl': string;
|
38
|
+
'insetXlOnXl': string;
|
39
|
+
'inset_2xlOnXl': string;
|
40
|
+
'inset_3xlOnXl': string;
|
41
|
+
'insetNoneOn_2xl': string;
|
42
|
+
'insetSmOn_2xl': string;
|
43
|
+
'insetMdOn_2xl': string;
|
44
|
+
'insetLgOn_2xl': string;
|
45
|
+
'insetXlOn_2xl': string;
|
46
|
+
'inset_2xlOn_2xl': string;
|
47
|
+
'inset_3xlOn_2xl': string;
|
48
|
+
};
|
5
49
|
};
|
6
50
|
export default _default;
|
@@ -3,5 +3,49 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
require("./divider.css");
|
4
4
|
exports.default = {
|
5
5
|
divider: 'pf-c-divider',
|
6
|
-
modifiers: {
|
6
|
+
modifiers: {
|
7
|
+
'vertical': 'pf-m-vertical',
|
8
|
+
'insetNone': 'pf-m-inset-none',
|
9
|
+
'insetSm': 'pf-m-inset-sm',
|
10
|
+
'insetMd': 'pf-m-inset-md',
|
11
|
+
'insetLg': 'pf-m-inset-lg',
|
12
|
+
'insetXl': 'pf-m-inset-xl',
|
13
|
+
'inset_2xl': 'pf-m-inset-2xl',
|
14
|
+
'inset_3xl': 'pf-m-inset-3xl',
|
15
|
+
'insetNoneOnSm': 'pf-m-inset-none-on-sm',
|
16
|
+
'insetSmOnSm': 'pf-m-inset-sm-on-sm',
|
17
|
+
'insetMdOnSm': 'pf-m-inset-md-on-sm',
|
18
|
+
'insetLgOnSm': 'pf-m-inset-lg-on-sm',
|
19
|
+
'insetXlOnSm': 'pf-m-inset-xl-on-sm',
|
20
|
+
'inset_2xlOnSm': 'pf-m-inset-2xl-on-sm',
|
21
|
+
'inset_3xlOnSm': 'pf-m-inset-3xl-on-sm',
|
22
|
+
'insetNoneOnMd': 'pf-m-inset-none-on-md',
|
23
|
+
'insetSmOnMd': 'pf-m-inset-sm-on-md',
|
24
|
+
'insetMdOnMd': 'pf-m-inset-md-on-md',
|
25
|
+
'insetLgOnMd': 'pf-m-inset-lg-on-md',
|
26
|
+
'insetXlOnMd': 'pf-m-inset-xl-on-md',
|
27
|
+
'inset_2xlOnMd': 'pf-m-inset-2xl-on-md',
|
28
|
+
'inset_3xlOnMd': 'pf-m-inset-3xl-on-md',
|
29
|
+
'insetNoneOnLg': 'pf-m-inset-none-on-lg',
|
30
|
+
'insetSmOnLg': 'pf-m-inset-sm-on-lg',
|
31
|
+
'insetMdOnLg': 'pf-m-inset-md-on-lg',
|
32
|
+
'insetLgOnLg': 'pf-m-inset-lg-on-lg',
|
33
|
+
'insetXlOnLg': 'pf-m-inset-xl-on-lg',
|
34
|
+
'inset_2xlOnLg': 'pf-m-inset-2xl-on-lg',
|
35
|
+
'inset_3xlOnLg': 'pf-m-inset-3xl-on-lg',
|
36
|
+
'insetNoneOnXl': 'pf-m-inset-none-on-xl',
|
37
|
+
'insetSmOnXl': 'pf-m-inset-sm-on-xl',
|
38
|
+
'insetMdOnXl': 'pf-m-inset-md-on-xl',
|
39
|
+
'insetLgOnXl': 'pf-m-inset-lg-on-xl',
|
40
|
+
'insetXlOnXl': 'pf-m-inset-xl-on-xl',
|
41
|
+
'inset_2xlOnXl': 'pf-m-inset-2xl-on-xl',
|
42
|
+
'inset_3xlOnXl': 'pf-m-inset-3xl-on-xl',
|
43
|
+
'insetNoneOn_2xl': 'pf-m-inset-none-on-2xl',
|
44
|
+
'insetSmOn_2xl': 'pf-m-inset-sm-on-2xl',
|
45
|
+
'insetMdOn_2xl': 'pf-m-inset-md-on-2xl',
|
46
|
+
'insetLgOn_2xl': 'pf-m-inset-lg-on-2xl',
|
47
|
+
'insetXlOn_2xl': 'pf-m-inset-xl-on-2xl',
|
48
|
+
'inset_2xlOn_2xl': 'pf-m-inset-2xl-on-2xl',
|
49
|
+
'inset_3xlOn_2xl': 'pf-m-inset-3xl-on-2xl'
|
50
|
+
}
|
7
51
|
};
|