@sumup-oss/design-tokens 8.2.0 → 9.0.0-next.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/README.md +0 -21
- package/dark.css +236 -1
- package/dist/cjs/index.d.ts +0 -1
- package/dist/cjs/index.js +1 -3
- package/dist/cjs/scripts/build.js +5 -4
- package/dist/cjs/themes/shared.js +1 -1
- package/dist/es/index.d.ts +0 -1
- package/dist/es/index.js +0 -1
- package/dist/es/scripts/build.js +5 -4
- package/dist/es/themes/shared.js +1 -1
- package/dynamic.css +377 -1
- package/light.css +236 -1
- package/package.json +6 -10
- package/dist/cjs/utils/theme-prop-type.d.ts +0 -36
- package/dist/cjs/utils/theme-prop-type.js +0 -162
- package/dist/es/utils/theme-prop-type.d.ts +0 -36
- package/dist/es/utils/theme-prop-type.js +0 -156
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright 2020, SumUp Ltd.
|
|
3
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
* you may not use this file except in compliance with the License.
|
|
5
|
-
* You may obtain a copy of the License at
|
|
6
|
-
*
|
|
7
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
*
|
|
9
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
* See the License for the specific language governing permissions and
|
|
13
|
-
* limitations under the License.
|
|
14
|
-
*/
|
|
15
|
-
import PropTypes from 'prop-types';
|
|
16
|
-
/**
|
|
17
|
-
* @deprecated
|
|
18
|
-
*
|
|
19
|
-
* Use the CSS custom properties from `@sumup-oss/design-tokens` instead.
|
|
20
|
-
* Use the [`circuit-ui/prefer-custom-properties`](https://github.com/sumup-oss/circuit-ui/tree/main/packages/eslint-plugin-circuit-ui/prefer-custom-properties)
|
|
21
|
-
* ESLint rule to automatically migrate your code.
|
|
22
|
-
*/
|
|
23
|
-
export declare const themePropType: PropTypes.Requireable<PropTypes.InferProps<{
|
|
24
|
-
spacings: PropTypes.Requireable<unknown>;
|
|
25
|
-
iconSizes: PropTypes.Requireable<unknown>;
|
|
26
|
-
borderRadius: PropTypes.Requireable<unknown>;
|
|
27
|
-
borderWidth: PropTypes.Requireable<unknown>;
|
|
28
|
-
typography: PropTypes.Requireable<unknown>;
|
|
29
|
-
fontStack: PropTypes.Requireable<unknown>;
|
|
30
|
-
fontWeight: PropTypes.Requireable<unknown>;
|
|
31
|
-
breakpoints: PropTypes.Requireable<unknown>;
|
|
32
|
-
mq: PropTypes.Requireable<unknown>;
|
|
33
|
-
grid: PropTypes.Requireable<unknown>;
|
|
34
|
-
transitions: PropTypes.Requireable<unknown>;
|
|
35
|
-
zIndex: PropTypes.Requireable<unknown>;
|
|
36
|
-
}>>;
|
|
@@ -1,162 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* Copyright 2020, SumUp Ltd.
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
* See the License for the specific language governing permissions and
|
|
14
|
-
* limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
|
-
};
|
|
19
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
-
exports.themePropType = void 0;
|
|
21
|
-
const prop_types_1 = __importDefault(require("prop-types"));
|
|
22
|
-
const typePropType = prop_types_1.default.shape({
|
|
23
|
-
fontSize: prop_types_1.default.string,
|
|
24
|
-
lineHeight: prop_types_1.default.string,
|
|
25
|
-
}).isRequired;
|
|
26
|
-
const gridPropType = prop_types_1.default.shape({
|
|
27
|
-
priority: prop_types_1.default.number.isRequired,
|
|
28
|
-
breakpoint: prop_types_1.default.oneOf([
|
|
29
|
-
'default',
|
|
30
|
-
'untilKilo',
|
|
31
|
-
'kilo',
|
|
32
|
-
'mega',
|
|
33
|
-
'giga',
|
|
34
|
-
'tera',
|
|
35
|
-
]).isRequired,
|
|
36
|
-
cols: prop_types_1.default.number.isRequired,
|
|
37
|
-
maxWidth: prop_types_1.default.string.isRequired,
|
|
38
|
-
gutter: prop_types_1.default.string.isRequired,
|
|
39
|
-
}).isRequired;
|
|
40
|
-
/**
|
|
41
|
-
* @deprecated
|
|
42
|
-
*
|
|
43
|
-
* Use the CSS custom properties from `@sumup-oss/design-tokens` instead.
|
|
44
|
-
* Use the [`circuit-ui/prefer-custom-properties`](https://github.com/sumup-oss/circuit-ui/tree/main/packages/eslint-plugin-circuit-ui/prefer-custom-properties)
|
|
45
|
-
* ESLint rule to automatically migrate your code.
|
|
46
|
-
*/
|
|
47
|
-
exports.themePropType = prop_types_1.default.shape({
|
|
48
|
-
spacings: prop_types_1.default.shape({
|
|
49
|
-
bit: prop_types_1.default.string.isRequired,
|
|
50
|
-
byte: prop_types_1.default.string.isRequired,
|
|
51
|
-
kilo: prop_types_1.default.string.isRequired,
|
|
52
|
-
mega: prop_types_1.default.string.isRequired,
|
|
53
|
-
giga: prop_types_1.default.string.isRequired,
|
|
54
|
-
tera: prop_types_1.default.string.isRequired,
|
|
55
|
-
peta: prop_types_1.default.string.isRequired,
|
|
56
|
-
exa: prop_types_1.default.string.isRequired,
|
|
57
|
-
zetta: prop_types_1.default.string.isRequired,
|
|
58
|
-
})
|
|
59
|
-
.isRequired,
|
|
60
|
-
iconSizes: prop_types_1.default.shape({
|
|
61
|
-
kilo: prop_types_1.default.string.isRequired,
|
|
62
|
-
mega: prop_types_1.default.string.isRequired,
|
|
63
|
-
giga: prop_types_1.default.string.isRequired,
|
|
64
|
-
tera: prop_types_1.default.string.isRequired,
|
|
65
|
-
})
|
|
66
|
-
.isRequired,
|
|
67
|
-
borderRadius: prop_types_1.default.shape({
|
|
68
|
-
bit: prop_types_1.default.string.isRequired,
|
|
69
|
-
byte: prop_types_1.default.string.isRequired,
|
|
70
|
-
kilo: prop_types_1.default.string.isRequired,
|
|
71
|
-
mega: prop_types_1.default.string.isRequired,
|
|
72
|
-
circle: prop_types_1.default.string.isRequired,
|
|
73
|
-
pill: prop_types_1.default.string.isRequired,
|
|
74
|
-
})
|
|
75
|
-
.isRequired,
|
|
76
|
-
borderWidth: prop_types_1.default.shape({
|
|
77
|
-
kilo: prop_types_1.default.string.isRequired,
|
|
78
|
-
mega: prop_types_1.default.string.isRequired,
|
|
79
|
-
})
|
|
80
|
-
.isRequired,
|
|
81
|
-
typography: prop_types_1.default.shape({
|
|
82
|
-
headline: prop_types_1.default.shape({
|
|
83
|
-
one: typePropType,
|
|
84
|
-
two: typePropType,
|
|
85
|
-
three: typePropType,
|
|
86
|
-
four: typePropType,
|
|
87
|
-
}).isRequired,
|
|
88
|
-
title: prop_types_1.default.shape({
|
|
89
|
-
one: typePropType,
|
|
90
|
-
two: typePropType,
|
|
91
|
-
three: typePropType,
|
|
92
|
-
four: typePropType,
|
|
93
|
-
}).isRequired,
|
|
94
|
-
subHeadline: typePropType,
|
|
95
|
-
body: prop_types_1.default.shape({
|
|
96
|
-
one: typePropType,
|
|
97
|
-
two: typePropType,
|
|
98
|
-
}).isRequired,
|
|
99
|
-
bodyLarge: typePropType,
|
|
100
|
-
}).isRequired,
|
|
101
|
-
fontStack: prop_types_1.default.shape({
|
|
102
|
-
default: prop_types_1.default.string,
|
|
103
|
-
mono: prop_types_1.default.string,
|
|
104
|
-
}).isRequired,
|
|
105
|
-
fontWeight: prop_types_1.default.shape({
|
|
106
|
-
regular: prop_types_1.default.string.isRequired,
|
|
107
|
-
bold: prop_types_1.default.string.isRequired,
|
|
108
|
-
})
|
|
109
|
-
.isRequired,
|
|
110
|
-
breakpoints: prop_types_1.default.shape({
|
|
111
|
-
untilKilo: prop_types_1.default.string.isRequired,
|
|
112
|
-
kilo: prop_types_1.default.string.isRequired,
|
|
113
|
-
kiloToMega: prop_types_1.default.string.isRequired,
|
|
114
|
-
mega: prop_types_1.default.string.isRequired,
|
|
115
|
-
untilMega: prop_types_1.default.string.isRequired,
|
|
116
|
-
megaToGiga: prop_types_1.default.string.isRequired,
|
|
117
|
-
giga: prop_types_1.default.string.isRequired,
|
|
118
|
-
untilGiga: prop_types_1.default.string.isRequired,
|
|
119
|
-
gigaToTera: prop_types_1.default.string.isRequired,
|
|
120
|
-
tera: prop_types_1.default.string.isRequired,
|
|
121
|
-
untilTera: prop_types_1.default.string.isRequired,
|
|
122
|
-
})
|
|
123
|
-
.isRequired,
|
|
124
|
-
mq: prop_types_1.default.shape({
|
|
125
|
-
untilKilo: prop_types_1.default.string.isRequired,
|
|
126
|
-
kilo: prop_types_1.default.string.isRequired,
|
|
127
|
-
kiloToMega: prop_types_1.default.string.isRequired,
|
|
128
|
-
mega: prop_types_1.default.string.isRequired,
|
|
129
|
-
untilMega: prop_types_1.default.string.isRequired,
|
|
130
|
-
megaToGiga: prop_types_1.default.string.isRequired,
|
|
131
|
-
giga: prop_types_1.default.string.isRequired,
|
|
132
|
-
gigaToTera: prop_types_1.default.string.isRequired,
|
|
133
|
-
tera: prop_types_1.default.string.isRequired,
|
|
134
|
-
untilTera: prop_types_1.default.string.isRequired,
|
|
135
|
-
})
|
|
136
|
-
.isRequired,
|
|
137
|
-
grid: prop_types_1.default.shape({
|
|
138
|
-
default: gridPropType,
|
|
139
|
-
untilKilo: gridPropType,
|
|
140
|
-
kilo: gridPropType,
|
|
141
|
-
mega: gridPropType,
|
|
142
|
-
giga: gridPropType,
|
|
143
|
-
tera: gridPropType,
|
|
144
|
-
}).isRequired,
|
|
145
|
-
transitions: prop_types_1.default.shape({
|
|
146
|
-
default: prop_types_1.default.string.isRequired,
|
|
147
|
-
slow: prop_types_1.default.string.isRequired,
|
|
148
|
-
})
|
|
149
|
-
.isRequired,
|
|
150
|
-
zIndex: prop_types_1.default.shape({
|
|
151
|
-
default: prop_types_1.default.number.isRequired,
|
|
152
|
-
absolute: prop_types_1.default.number.isRequired,
|
|
153
|
-
input: prop_types_1.default.number.isRequired,
|
|
154
|
-
popover: prop_types_1.default.number.isRequired,
|
|
155
|
-
tooltip: prop_types_1.default.number.isRequired,
|
|
156
|
-
header: prop_types_1.default.number.isRequired,
|
|
157
|
-
backdrop: prop_types_1.default.number.isRequired,
|
|
158
|
-
navigation: prop_types_1.default.number.isRequired,
|
|
159
|
-
modal: prop_types_1.default.number.isRequired,
|
|
160
|
-
toast: prop_types_1.default.number.isRequired,
|
|
161
|
-
}).isRequired,
|
|
162
|
-
});
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright 2020, SumUp Ltd.
|
|
3
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
* you may not use this file except in compliance with the License.
|
|
5
|
-
* You may obtain a copy of the License at
|
|
6
|
-
*
|
|
7
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
*
|
|
9
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
* See the License for the specific language governing permissions and
|
|
13
|
-
* limitations under the License.
|
|
14
|
-
*/
|
|
15
|
-
import PropTypes from 'prop-types';
|
|
16
|
-
/**
|
|
17
|
-
* @deprecated
|
|
18
|
-
*
|
|
19
|
-
* Use the CSS custom properties from `@sumup-oss/design-tokens` instead.
|
|
20
|
-
* Use the [`circuit-ui/prefer-custom-properties`](https://github.com/sumup-oss/circuit-ui/tree/main/packages/eslint-plugin-circuit-ui/prefer-custom-properties)
|
|
21
|
-
* ESLint rule to automatically migrate your code.
|
|
22
|
-
*/
|
|
23
|
-
export declare const themePropType: PropTypes.Requireable<PropTypes.InferProps<{
|
|
24
|
-
spacings: PropTypes.Requireable<unknown>;
|
|
25
|
-
iconSizes: PropTypes.Requireable<unknown>;
|
|
26
|
-
borderRadius: PropTypes.Requireable<unknown>;
|
|
27
|
-
borderWidth: PropTypes.Requireable<unknown>;
|
|
28
|
-
typography: PropTypes.Requireable<unknown>;
|
|
29
|
-
fontStack: PropTypes.Requireable<unknown>;
|
|
30
|
-
fontWeight: PropTypes.Requireable<unknown>;
|
|
31
|
-
breakpoints: PropTypes.Requireable<unknown>;
|
|
32
|
-
mq: PropTypes.Requireable<unknown>;
|
|
33
|
-
grid: PropTypes.Requireable<unknown>;
|
|
34
|
-
transitions: PropTypes.Requireable<unknown>;
|
|
35
|
-
zIndex: PropTypes.Requireable<unknown>;
|
|
36
|
-
}>>;
|
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright 2020, SumUp Ltd.
|
|
3
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
* you may not use this file except in compliance with the License.
|
|
5
|
-
* You may obtain a copy of the License at
|
|
6
|
-
*
|
|
7
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
*
|
|
9
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
* See the License for the specific language governing permissions and
|
|
13
|
-
* limitations under the License.
|
|
14
|
-
*/
|
|
15
|
-
import PropTypes from 'prop-types';
|
|
16
|
-
const typePropType = PropTypes.shape({
|
|
17
|
-
fontSize: PropTypes.string,
|
|
18
|
-
lineHeight: PropTypes.string,
|
|
19
|
-
}).isRequired;
|
|
20
|
-
const gridPropType = PropTypes.shape({
|
|
21
|
-
priority: PropTypes.number.isRequired,
|
|
22
|
-
breakpoint: PropTypes.oneOf([
|
|
23
|
-
'default',
|
|
24
|
-
'untilKilo',
|
|
25
|
-
'kilo',
|
|
26
|
-
'mega',
|
|
27
|
-
'giga',
|
|
28
|
-
'tera',
|
|
29
|
-
]).isRequired,
|
|
30
|
-
cols: PropTypes.number.isRequired,
|
|
31
|
-
maxWidth: PropTypes.string.isRequired,
|
|
32
|
-
gutter: PropTypes.string.isRequired,
|
|
33
|
-
}).isRequired;
|
|
34
|
-
/**
|
|
35
|
-
* @deprecated
|
|
36
|
-
*
|
|
37
|
-
* Use the CSS custom properties from `@sumup-oss/design-tokens` instead.
|
|
38
|
-
* Use the [`circuit-ui/prefer-custom-properties`](https://github.com/sumup-oss/circuit-ui/tree/main/packages/eslint-plugin-circuit-ui/prefer-custom-properties)
|
|
39
|
-
* ESLint rule to automatically migrate your code.
|
|
40
|
-
*/
|
|
41
|
-
export const themePropType = PropTypes.shape({
|
|
42
|
-
spacings: PropTypes.shape({
|
|
43
|
-
bit: PropTypes.string.isRequired,
|
|
44
|
-
byte: PropTypes.string.isRequired,
|
|
45
|
-
kilo: PropTypes.string.isRequired,
|
|
46
|
-
mega: PropTypes.string.isRequired,
|
|
47
|
-
giga: PropTypes.string.isRequired,
|
|
48
|
-
tera: PropTypes.string.isRequired,
|
|
49
|
-
peta: PropTypes.string.isRequired,
|
|
50
|
-
exa: PropTypes.string.isRequired,
|
|
51
|
-
zetta: PropTypes.string.isRequired,
|
|
52
|
-
})
|
|
53
|
-
.isRequired,
|
|
54
|
-
iconSizes: PropTypes.shape({
|
|
55
|
-
kilo: PropTypes.string.isRequired,
|
|
56
|
-
mega: PropTypes.string.isRequired,
|
|
57
|
-
giga: PropTypes.string.isRequired,
|
|
58
|
-
tera: PropTypes.string.isRequired,
|
|
59
|
-
})
|
|
60
|
-
.isRequired,
|
|
61
|
-
borderRadius: PropTypes.shape({
|
|
62
|
-
bit: PropTypes.string.isRequired,
|
|
63
|
-
byte: PropTypes.string.isRequired,
|
|
64
|
-
kilo: PropTypes.string.isRequired,
|
|
65
|
-
mega: PropTypes.string.isRequired,
|
|
66
|
-
circle: PropTypes.string.isRequired,
|
|
67
|
-
pill: PropTypes.string.isRequired,
|
|
68
|
-
})
|
|
69
|
-
.isRequired,
|
|
70
|
-
borderWidth: PropTypes.shape({
|
|
71
|
-
kilo: PropTypes.string.isRequired,
|
|
72
|
-
mega: PropTypes.string.isRequired,
|
|
73
|
-
})
|
|
74
|
-
.isRequired,
|
|
75
|
-
typography: PropTypes.shape({
|
|
76
|
-
headline: PropTypes.shape({
|
|
77
|
-
one: typePropType,
|
|
78
|
-
two: typePropType,
|
|
79
|
-
three: typePropType,
|
|
80
|
-
four: typePropType,
|
|
81
|
-
}).isRequired,
|
|
82
|
-
title: PropTypes.shape({
|
|
83
|
-
one: typePropType,
|
|
84
|
-
two: typePropType,
|
|
85
|
-
three: typePropType,
|
|
86
|
-
four: typePropType,
|
|
87
|
-
}).isRequired,
|
|
88
|
-
subHeadline: typePropType,
|
|
89
|
-
body: PropTypes.shape({
|
|
90
|
-
one: typePropType,
|
|
91
|
-
two: typePropType,
|
|
92
|
-
}).isRequired,
|
|
93
|
-
bodyLarge: typePropType,
|
|
94
|
-
}).isRequired,
|
|
95
|
-
fontStack: PropTypes.shape({
|
|
96
|
-
default: PropTypes.string,
|
|
97
|
-
mono: PropTypes.string,
|
|
98
|
-
}).isRequired,
|
|
99
|
-
fontWeight: PropTypes.shape({
|
|
100
|
-
regular: PropTypes.string.isRequired,
|
|
101
|
-
bold: PropTypes.string.isRequired,
|
|
102
|
-
})
|
|
103
|
-
.isRequired,
|
|
104
|
-
breakpoints: PropTypes.shape({
|
|
105
|
-
untilKilo: PropTypes.string.isRequired,
|
|
106
|
-
kilo: PropTypes.string.isRequired,
|
|
107
|
-
kiloToMega: PropTypes.string.isRequired,
|
|
108
|
-
mega: PropTypes.string.isRequired,
|
|
109
|
-
untilMega: PropTypes.string.isRequired,
|
|
110
|
-
megaToGiga: PropTypes.string.isRequired,
|
|
111
|
-
giga: PropTypes.string.isRequired,
|
|
112
|
-
untilGiga: PropTypes.string.isRequired,
|
|
113
|
-
gigaToTera: PropTypes.string.isRequired,
|
|
114
|
-
tera: PropTypes.string.isRequired,
|
|
115
|
-
untilTera: PropTypes.string.isRequired,
|
|
116
|
-
})
|
|
117
|
-
.isRequired,
|
|
118
|
-
mq: PropTypes.shape({
|
|
119
|
-
untilKilo: PropTypes.string.isRequired,
|
|
120
|
-
kilo: PropTypes.string.isRequired,
|
|
121
|
-
kiloToMega: PropTypes.string.isRequired,
|
|
122
|
-
mega: PropTypes.string.isRequired,
|
|
123
|
-
untilMega: PropTypes.string.isRequired,
|
|
124
|
-
megaToGiga: PropTypes.string.isRequired,
|
|
125
|
-
giga: PropTypes.string.isRequired,
|
|
126
|
-
gigaToTera: PropTypes.string.isRequired,
|
|
127
|
-
tera: PropTypes.string.isRequired,
|
|
128
|
-
untilTera: PropTypes.string.isRequired,
|
|
129
|
-
})
|
|
130
|
-
.isRequired,
|
|
131
|
-
grid: PropTypes.shape({
|
|
132
|
-
default: gridPropType,
|
|
133
|
-
untilKilo: gridPropType,
|
|
134
|
-
kilo: gridPropType,
|
|
135
|
-
mega: gridPropType,
|
|
136
|
-
giga: gridPropType,
|
|
137
|
-
tera: gridPropType,
|
|
138
|
-
}).isRequired,
|
|
139
|
-
transitions: PropTypes.shape({
|
|
140
|
-
default: PropTypes.string.isRequired,
|
|
141
|
-
slow: PropTypes.string.isRequired,
|
|
142
|
-
})
|
|
143
|
-
.isRequired,
|
|
144
|
-
zIndex: PropTypes.shape({
|
|
145
|
-
default: PropTypes.number.isRequired,
|
|
146
|
-
absolute: PropTypes.number.isRequired,
|
|
147
|
-
input: PropTypes.number.isRequired,
|
|
148
|
-
popover: PropTypes.number.isRequired,
|
|
149
|
-
tooltip: PropTypes.number.isRequired,
|
|
150
|
-
header: PropTypes.number.isRequired,
|
|
151
|
-
backdrop: PropTypes.number.isRequired,
|
|
152
|
-
navigation: PropTypes.number.isRequired,
|
|
153
|
-
modal: PropTypes.number.isRequired,
|
|
154
|
-
toast: PropTypes.number.isRequired,
|
|
155
|
-
}).isRequired,
|
|
156
|
-
});
|