@entur/typography 1.7.2 → 1.7.4
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 +367 -0
- package/dist/BaseHeading.d.ts +2 -2
- package/dist/CodeText.d.ts +2 -2
- package/dist/EmphasizedText.d.ts +2 -2
- package/dist/Heading1.d.ts +2 -2
- package/dist/Heading2.d.ts +2 -2
- package/dist/Heading3.d.ts +2 -2
- package/dist/Heading4.d.ts +2 -2
- package/dist/Heading5.d.ts +2 -2
- package/dist/Heading6.d.ts +2 -2
- package/dist/Label.d.ts +2 -2
- package/dist/LeadParagraph.d.ts +2 -2
- package/dist/Link.d.ts +2 -2
- package/dist/Paragraph.d.ts +2 -2
- package/dist/PreformattedText.d.ts +2 -2
- package/dist/SmallText.d.ts +2 -2
- package/dist/StrongText.d.ts +2 -2
- package/dist/SubLabel.d.ts +2 -2
- package/dist/SubParagraph.d.ts +2 -2
- package/dist/typography.cjs.development.js +116 -77
- package/dist/typography.cjs.development.js.map +1 -1
- package/dist/typography.cjs.production.min.js.map +1 -1
- package/dist/typography.esm.js +116 -77
- package/dist/typography.esm.js.map +1 -1
- package/package.json +8 -13
package/dist/SubLabel.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { PolymorphicComponentProps } from '@entur/utils';
|
|
3
3
|
export declare type SubLabelOwnProps = {
|
|
4
4
|
/** HTML-elementet eller React-komponenten som rendres
|
|
5
5
|
* @default "span"
|
|
@@ -14,7 +14,7 @@ export declare type SubLabelOwnProps = {
|
|
|
14
14
|
*/
|
|
15
15
|
margin?: 'top' | 'bottom' | 'both' | 'none';
|
|
16
16
|
};
|
|
17
|
-
export declare type SubLabelProps<
|
|
17
|
+
export declare type SubLabelProps<T extends React.ElementType = typeof defaultElement> = PolymorphicComponentProps<T, SubLabelOwnProps>;
|
|
18
18
|
declare const defaultElement = "span";
|
|
19
19
|
export declare const SubLabel: <E extends React.ElementType<any> = "span">({ className, margin, as, ...rest }: SubLabelProps<E>) => JSX.Element;
|
|
20
20
|
export {};
|
package/dist/SubParagraph.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { PolymorphicComponentProps } from '@entur/utils';
|
|
3
3
|
export declare type SubParagraphOwnProps = {
|
|
4
4
|
/** HTML-elementet eller React-komponenten som rendres
|
|
5
5
|
* @default "p"
|
|
@@ -14,7 +14,7 @@ export declare type SubParagraphOwnProps = {
|
|
|
14
14
|
*/
|
|
15
15
|
margin?: 'top' | 'bottom' | 'both' | 'none';
|
|
16
16
|
};
|
|
17
|
-
export declare type SubParagraphProps<
|
|
17
|
+
export declare type SubParagraphProps<T extends React.ElementType = typeof defaultElement> = PolymorphicComponentProps<T, SubParagraphOwnProps>;
|
|
18
18
|
declare const defaultElement = "p";
|
|
19
19
|
export declare const SubParagraph: <E extends React.ElementType<any> = "p">({ className, margin, as, ...rest }: SubParagraphProps<E>) => JSX.Element;
|
|
20
20
|
export {};
|
|
@@ -15,41 +15,49 @@ function _extends() {
|
|
|
15
15
|
_extends = Object.assign || function (target) {
|
|
16
16
|
for (var i = 1; i < arguments.length; i++) {
|
|
17
17
|
var source = arguments[i];
|
|
18
|
+
|
|
18
19
|
for (var key in source) {
|
|
19
20
|
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
20
21
|
target[key] = source[key];
|
|
21
22
|
}
|
|
22
23
|
}
|
|
23
24
|
}
|
|
25
|
+
|
|
24
26
|
return target;
|
|
25
27
|
};
|
|
28
|
+
|
|
26
29
|
return _extends.apply(this, arguments);
|
|
27
30
|
}
|
|
31
|
+
|
|
28
32
|
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
29
33
|
if (source == null) return {};
|
|
30
34
|
var target = {};
|
|
31
35
|
var sourceKeys = Object.keys(source);
|
|
32
36
|
var key, i;
|
|
37
|
+
|
|
33
38
|
for (i = 0; i < sourceKeys.length; i++) {
|
|
34
39
|
key = sourceKeys[i];
|
|
35
40
|
if (excluded.indexOf(key) >= 0) continue;
|
|
36
41
|
target[key] = source[key];
|
|
37
42
|
}
|
|
43
|
+
|
|
38
44
|
return target;
|
|
39
45
|
}
|
|
40
46
|
|
|
41
47
|
var _excluded$l = ["className"],
|
|
42
|
-
|
|
48
|
+
_excluded2 = ["className"];
|
|
43
49
|
var Blockquote = function Blockquote(_ref) {
|
|
44
50
|
var className = _ref.className,
|
|
45
|
-
|
|
51
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$l);
|
|
52
|
+
|
|
46
53
|
return React__default["default"].createElement("blockquote", _extends({
|
|
47
54
|
className: classNames__default["default"]('eds-blockquote', className)
|
|
48
55
|
}, rest));
|
|
49
56
|
};
|
|
50
57
|
var BlockquoteFooter = function BlockquoteFooter(_ref2) {
|
|
51
58
|
var className = _ref2.className,
|
|
52
|
-
|
|
59
|
+
rest = _objectWithoutPropertiesLoose(_ref2, _excluded2);
|
|
60
|
+
|
|
53
61
|
return React__default["default"].createElement("footer", _extends({
|
|
54
62
|
className: classNames__default["default"]('eds-blockquote__footer', className)
|
|
55
63
|
}, rest));
|
|
@@ -59,8 +67,9 @@ var _excluded$k = ["className", "as"];
|
|
|
59
67
|
var defaultElement$h = 'code';
|
|
60
68
|
var CodeText = function CodeText(_ref) {
|
|
61
69
|
var className = _ref.className,
|
|
62
|
-
|
|
63
|
-
|
|
70
|
+
as = _ref.as,
|
|
71
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$k);
|
|
72
|
+
|
|
64
73
|
var Element = as || defaultElement$h;
|
|
65
74
|
return React__default["default"].createElement(Element, _extends({
|
|
66
75
|
className: classNames__default["default"]('eds-code-text', className)
|
|
@@ -71,11 +80,13 @@ var _excluded$j = ["className", "margin", "as"];
|
|
|
71
80
|
var defaultElement$g = 'em';
|
|
72
81
|
var EmphasizedText = function EmphasizedText(_ref) {
|
|
73
82
|
var _classNames;
|
|
83
|
+
|
|
74
84
|
var className = _ref.className,
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
85
|
+
_ref$margin = _ref.margin,
|
|
86
|
+
margin = _ref$margin === void 0 ? 'both' : _ref$margin,
|
|
87
|
+
as = _ref.as,
|
|
88
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$j);
|
|
89
|
+
|
|
79
90
|
var Element = as || defaultElement$g;
|
|
80
91
|
return React__default["default"].createElement(Element, _extends({
|
|
81
92
|
className: classNames__default["default"]('eds-emphasized-text', (_classNames = {}, _classNames["eds-emphasized-text--margin-top"] = margin === 'top', _classNames["eds-emphasized-text--margin-bottom"] = margin === 'bottom', _classNames["eds-emphasized-text--margin-none"] = margin === 'none', _classNames), className)
|
|
@@ -86,11 +97,13 @@ var _excluded$i = ["className", "level", "margin", "as"];
|
|
|
86
97
|
var defaultElement$f = 'h1';
|
|
87
98
|
var BaseHeading = function BaseHeading(_ref) {
|
|
88
99
|
var _classNames;
|
|
100
|
+
|
|
89
101
|
var className = _ref.className,
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
102
|
+
level = _ref.level,
|
|
103
|
+
margin = _ref.margin,
|
|
104
|
+
as = _ref.as,
|
|
105
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$i);
|
|
106
|
+
|
|
94
107
|
var Element = as || defaultElement$f;
|
|
95
108
|
var baseClass = "eds-h" + level;
|
|
96
109
|
return React__default["default"].createElement(Element, _extends({
|
|
@@ -102,10 +115,11 @@ var _excluded$h = ["margin", "children", "as"];
|
|
|
102
115
|
var defaultElement$e = 'h1';
|
|
103
116
|
var Heading1 = function Heading1(_ref) {
|
|
104
117
|
var _ref$margin = _ref.margin,
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
118
|
+
margin = _ref$margin === void 0 ? 'both' : _ref$margin,
|
|
119
|
+
children = _ref.children,
|
|
120
|
+
as = _ref.as,
|
|
121
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$h);
|
|
122
|
+
|
|
109
123
|
var Element = as || defaultElement$e;
|
|
110
124
|
return React__default["default"].createElement(BaseHeading, _extends({
|
|
111
125
|
as: Element,
|
|
@@ -119,10 +133,11 @@ var _excluded$g = ["margin", "children", "as"];
|
|
|
119
133
|
var defaultElement$d = 'h2';
|
|
120
134
|
var Heading2 = function Heading2(_ref) {
|
|
121
135
|
var _ref$margin = _ref.margin,
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
136
|
+
margin = _ref$margin === void 0 ? 'both' : _ref$margin,
|
|
137
|
+
children = _ref.children,
|
|
138
|
+
as = _ref.as,
|
|
139
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$g);
|
|
140
|
+
|
|
126
141
|
var Element = as || defaultElement$d;
|
|
127
142
|
return React__default["default"].createElement(BaseHeading, _extends({
|
|
128
143
|
as: Element,
|
|
@@ -136,10 +151,11 @@ var _excluded$f = ["margin", "children", "as"];
|
|
|
136
151
|
var defaultElement$c = 'h3';
|
|
137
152
|
var Heading3 = function Heading3(_ref) {
|
|
138
153
|
var _ref$margin = _ref.margin,
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
154
|
+
margin = _ref$margin === void 0 ? 'both' : _ref$margin,
|
|
155
|
+
children = _ref.children,
|
|
156
|
+
as = _ref.as,
|
|
157
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$f);
|
|
158
|
+
|
|
143
159
|
var Element = as || defaultElement$c;
|
|
144
160
|
return React__default["default"].createElement(BaseHeading, _extends({
|
|
145
161
|
as: Element,
|
|
@@ -153,10 +169,11 @@ var _excluded$e = ["margin", "children", "as"];
|
|
|
153
169
|
var defaultElement$b = 'h4';
|
|
154
170
|
var Heading4 = function Heading4(_ref) {
|
|
155
171
|
var _ref$margin = _ref.margin,
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
172
|
+
margin = _ref$margin === void 0 ? 'both' : _ref$margin,
|
|
173
|
+
children = _ref.children,
|
|
174
|
+
as = _ref.as,
|
|
175
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$e);
|
|
176
|
+
|
|
160
177
|
var Element = as || defaultElement$b;
|
|
161
178
|
return React__default["default"].createElement(BaseHeading, _extends({
|
|
162
179
|
as: Element,
|
|
@@ -170,10 +187,11 @@ var _excluded$d = ["margin", "children", "as"];
|
|
|
170
187
|
var defaultElement$a = 'h5';
|
|
171
188
|
var Heading5 = function Heading5(_ref) {
|
|
172
189
|
var _ref$margin = _ref.margin,
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
190
|
+
margin = _ref$margin === void 0 ? 'both' : _ref$margin,
|
|
191
|
+
children = _ref.children,
|
|
192
|
+
as = _ref.as,
|
|
193
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$d);
|
|
194
|
+
|
|
177
195
|
var Element = as || defaultElement$a;
|
|
178
196
|
return React__default["default"].createElement(BaseHeading, _extends({
|
|
179
197
|
as: Element,
|
|
@@ -187,10 +205,11 @@ var _excluded$c = ["margin", "children", "as"];
|
|
|
187
205
|
var defaultElement$9 = 'h6';
|
|
188
206
|
var Heading6 = function Heading6(_ref) {
|
|
189
207
|
var _ref$margin = _ref.margin,
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
208
|
+
margin = _ref$margin === void 0 ? 'both' : _ref$margin,
|
|
209
|
+
children = _ref.children,
|
|
210
|
+
as = _ref.as,
|
|
211
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$c);
|
|
212
|
+
|
|
194
213
|
var Element = as || defaultElement$9;
|
|
195
214
|
return React__default["default"].createElement(BaseHeading, _extends({
|
|
196
215
|
as: Element,
|
|
@@ -204,11 +223,13 @@ var _excluded$b = ["className", "margin", "as"];
|
|
|
204
223
|
var defaultElement$8 = 'label';
|
|
205
224
|
var Label = function Label(_ref) {
|
|
206
225
|
var _classNames;
|
|
226
|
+
|
|
207
227
|
var className = _ref.className,
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
228
|
+
_ref$margin = _ref.margin,
|
|
229
|
+
margin = _ref$margin === void 0 ? 'both' : _ref$margin,
|
|
230
|
+
as = _ref.as,
|
|
231
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$b);
|
|
232
|
+
|
|
212
233
|
var Element = as || defaultElement$8;
|
|
213
234
|
return React__default["default"].createElement(Element, _extends({
|
|
214
235
|
className: classNames__default["default"]('eds-label', (_classNames = {}, _classNames["eds-label--margin-top"] = margin === 'top', _classNames["eds-label--margin-bottom"] = margin === 'bottom', _classNames["eds-label--margin-none"] = margin === 'none', _classNames), className)
|
|
@@ -219,11 +240,13 @@ var _excluded$a = ["className", "margin", "as"];
|
|
|
219
240
|
var defaultElement$7 = 'p';
|
|
220
241
|
var LeadParagraph = function LeadParagraph(_ref) {
|
|
221
242
|
var _classNames;
|
|
243
|
+
|
|
222
244
|
var className = _ref.className,
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
245
|
+
_ref$margin = _ref.margin,
|
|
246
|
+
margin = _ref$margin === void 0 ? 'both' : _ref$margin,
|
|
247
|
+
as = _ref.as,
|
|
248
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$a);
|
|
249
|
+
|
|
227
250
|
var Element = as || defaultElement$7;
|
|
228
251
|
return React__default["default"].createElement(Element, _extends({
|
|
229
252
|
className: classNames__default["default"]('eds-lead-paragraph', (_classNames = {}, _classNames["eds-lead-paragraph--margin-top"] = margin === 'top', _classNames["eds-lead-paragraph--margin-bottom"] = margin === 'bottom', _classNames["eds-lead-paragraph--margin-none"] = margin === 'none', _classNames), className)
|
|
@@ -234,11 +257,13 @@ var _excluded$9 = ["className", "margin", "as"];
|
|
|
234
257
|
var defaultElement$6 = 'a';
|
|
235
258
|
var Link = function Link(_ref) {
|
|
236
259
|
var _classNames;
|
|
260
|
+
|
|
237
261
|
var className = _ref.className,
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
262
|
+
_ref$margin = _ref.margin,
|
|
263
|
+
margin = _ref$margin === void 0 ? 'both' : _ref$margin,
|
|
264
|
+
as = _ref.as,
|
|
265
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$9);
|
|
266
|
+
|
|
242
267
|
var Element = as || defaultElement$6;
|
|
243
268
|
return React__default["default"].createElement(Element, _extends({
|
|
244
269
|
className: classNames__default["default"]('eds-link', (_classNames = {}, _classNames["eds-link--margin-top"] = margin === 'top', _classNames["eds-link--margin-bottom"] = margin === 'bottom', _classNames["eds-link--margin-none"] = margin === 'none', _classNames), className)
|
|
@@ -249,11 +274,13 @@ var _excluded$8 = ["className", "margin", "as"];
|
|
|
249
274
|
var defaultElement$5 = 'strong';
|
|
250
275
|
var StrongText = function StrongText(_ref) {
|
|
251
276
|
var _classNames;
|
|
277
|
+
|
|
252
278
|
var className = _ref.className,
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
279
|
+
_ref$margin = _ref.margin,
|
|
280
|
+
margin = _ref$margin === void 0 ? 'both' : _ref$margin,
|
|
281
|
+
as = _ref.as,
|
|
282
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$8);
|
|
283
|
+
|
|
257
284
|
var Element = as || defaultElement$5;
|
|
258
285
|
return React__default["default"].createElement(Element, _extends({
|
|
259
286
|
className: classNames__default["default"]('eds-strong-text', (_classNames = {}, _classNames["eds-strong-text--margin-top"] = margin === 'top', _classNames["eds-strong-text--margin-bottom"] = margin === 'bottom', _classNames["eds-strong-text--margin-none"] = margin === 'none', _classNames), className)
|
|
@@ -263,9 +290,10 @@ var StrongText = function StrongText(_ref) {
|
|
|
263
290
|
var _excluded$7 = ["children", "className", "title"];
|
|
264
291
|
var ListItem = function ListItem(_ref) {
|
|
265
292
|
var children = _ref.children,
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
293
|
+
className = _ref.className,
|
|
294
|
+
title = _ref.title,
|
|
295
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$7);
|
|
296
|
+
|
|
269
297
|
return React__default["default"].createElement("li", _extends({
|
|
270
298
|
className: classNames__default["default"]('eds-list-item', className)
|
|
271
299
|
}, rest), title && React__default["default"].createElement(StrongText, {
|
|
@@ -276,10 +304,12 @@ var ListItem = function ListItem(_ref) {
|
|
|
276
304
|
var _excluded$6 = ["className", "type"];
|
|
277
305
|
var NumberedList = function NumberedList(_ref) {
|
|
278
306
|
var _classNames;
|
|
307
|
+
|
|
279
308
|
var className = _ref.className,
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
309
|
+
_ref$type = _ref.type,
|
|
310
|
+
type = _ref$type === void 0 ? '1' : _ref$type,
|
|
311
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$6);
|
|
312
|
+
|
|
283
313
|
return React__default["default"].createElement("ol", _extends({
|
|
284
314
|
className: classNames__default["default"]('eds-numbered-list', (_classNames = {}, _classNames["eds-numbered-list--type-" + type] = type, _classNames), className),
|
|
285
315
|
type: type
|
|
@@ -290,10 +320,11 @@ var _excluded$5 = ["margin", "className", "as"];
|
|
|
290
320
|
var defaultElement$4 = 'p';
|
|
291
321
|
var Paragraph = function Paragraph(_ref) {
|
|
292
322
|
var _ref$margin = _ref.margin,
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
323
|
+
margin = _ref$margin === void 0 ? 'bottom' : _ref$margin,
|
|
324
|
+
className = _ref.className,
|
|
325
|
+
as = _ref.as,
|
|
326
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$5);
|
|
327
|
+
|
|
297
328
|
var Element = as || defaultElement$4;
|
|
298
329
|
return React__default["default"].createElement(Element, _extends({
|
|
299
330
|
className: classNames__default["default"]('eds-paragraph', {
|
|
@@ -307,8 +338,9 @@ var _excluded$4 = ["className", "as"];
|
|
|
307
338
|
var defaultElement$3 = 'pre';
|
|
308
339
|
var PreformattedText = function PreformattedText(_ref) {
|
|
309
340
|
var className = _ref.className,
|
|
310
|
-
|
|
311
|
-
|
|
341
|
+
as = _ref.as,
|
|
342
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$4);
|
|
343
|
+
|
|
312
344
|
var Element = as || defaultElement$3;
|
|
313
345
|
return React__default["default"].createElement(Element, _extends({
|
|
314
346
|
className: classNames__default["default"]('eds-preformatted-text', className)
|
|
@@ -319,11 +351,13 @@ var _excluded$3 = ["className", "margin", "as"];
|
|
|
319
351
|
var defaultElement$2 = 'span';
|
|
320
352
|
var SmallText = function SmallText(_ref) {
|
|
321
353
|
var _classNames;
|
|
354
|
+
|
|
322
355
|
var className = _ref.className,
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
356
|
+
_ref$margin = _ref.margin,
|
|
357
|
+
margin = _ref$margin === void 0 ? 'both' : _ref$margin,
|
|
358
|
+
as = _ref.as,
|
|
359
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$3);
|
|
360
|
+
|
|
327
361
|
var Element = as || defaultElement$2;
|
|
328
362
|
return React__default["default"].createElement(Element, _extends({
|
|
329
363
|
className: classNames__default["default"]('eds-small-text', (_classNames = {}, _classNames["eds-small-text--margin-top"] = margin === 'top', _classNames["eds-small-text--margin-bottom"] = margin === 'bottom', _classNames["eds-small-text--margin-none"] = margin === 'none', _classNames), className)
|
|
@@ -334,11 +368,13 @@ var _excluded$2 = ["className", "margin", "as"];
|
|
|
334
368
|
var defaultElement$1 = 'span';
|
|
335
369
|
var SubLabel = function SubLabel(_ref) {
|
|
336
370
|
var _classNames;
|
|
371
|
+
|
|
337
372
|
var className = _ref.className,
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
373
|
+
_ref$margin = _ref.margin,
|
|
374
|
+
margin = _ref$margin === void 0 ? 'both' : _ref$margin,
|
|
375
|
+
as = _ref.as,
|
|
376
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$2);
|
|
377
|
+
|
|
342
378
|
var Element = as || defaultElement$1;
|
|
343
379
|
return React__default["default"].createElement(Element, _extends({
|
|
344
380
|
className: classNames__default["default"]('eds-sub-label', (_classNames = {}, _classNames["eds-sub-label--margin-top"] = margin === 'top', _classNames["eds-sub-label--margin-bottom"] = margin === 'bottom', _classNames["eds-sub-label--margin-none"] = margin === 'none', _classNames), className)
|
|
@@ -349,10 +385,12 @@ var _excluded$1 = ["className", "margin", "as"];
|
|
|
349
385
|
var defaultElement = 'p';
|
|
350
386
|
var SubParagraph = function SubParagraph(_ref) {
|
|
351
387
|
var _classNames;
|
|
388
|
+
|
|
352
389
|
var className = _ref.className,
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
390
|
+
margin = _ref.margin,
|
|
391
|
+
as = _ref.as,
|
|
392
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$1);
|
|
393
|
+
|
|
356
394
|
var Element = as || defaultElement;
|
|
357
395
|
return React__default["default"].createElement(Element, _extends({
|
|
358
396
|
className: classNames__default["default"]('eds-sub-paragraph', (_classNames = {}, _classNames["eds-sub-paragraph--margin-top"] = margin === 'top', _classNames["eds-sub-paragraph--margin-bottom"] = margin === 'bottom', _classNames["eds-sub-paragraph--margin-none"] = margin === 'none', _classNames), className)
|
|
@@ -362,7 +400,8 @@ var SubParagraph = function SubParagraph(_ref) {
|
|
|
362
400
|
var _excluded = ["className"];
|
|
363
401
|
var UnorderedList = function UnorderedList(_ref) {
|
|
364
402
|
var className = _ref.className,
|
|
365
|
-
|
|
403
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
404
|
+
|
|
366
405
|
return React__default["default"].createElement("ul", _extends({
|
|
367
406
|
className: classNames__default["default"]('eds-unordered-list', className)
|
|
368
407
|
}, rest));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typography.cjs.development.js","sources":["../src/Blockquote.tsx","../src/CodeText.tsx","../src/EmphasizedText.tsx","../src/BaseHeading.tsx","../src/Heading1.tsx","../src/Heading2.tsx","../src/Heading3.tsx","../src/Heading4.tsx","../src/Heading5.tsx","../src/Heading6.tsx","../src/Label.tsx","../src/LeadParagraph.tsx","../src/Link.tsx","../src/StrongText.tsx","../src/ListItem.tsx","../src/NumberedList.tsx","../src/Paragraph.tsx","../src/PreformattedText.tsx","../src/SmallText.tsx","../src/SubLabel.tsx","../src/SubParagraph.tsx","../src/UnorderedList.tsx","../src/index.tsx"],"sourcesContent":["import React from 'react';\nimport classNames from 'classnames';\n\ntype BlockquoteProps = {\n /** Ekstra klassenavn */\n className?: string;\n} & React.DetailedHTMLProps<\n React.BlockquoteHTMLAttributes<HTMLElement>,\n HTMLElement\n>;\n\nexport const Blockquote: React.FunctionComponent<BlockquoteProps> = ({\n className,\n ...rest\n}) => {\n return (\n <blockquote className={classNames('eds-blockquote', className)} {...rest} />\n );\n};\n\ntype BlockquoteFooterProps = {\n /** Ekstra klassenavn */\n className?: string;\n} & React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;\n\nexport const BlockquoteFooter: React.FunctionComponent<BlockquoteFooterProps> =\n ({ className, ...rest }) => {\n return (\n <footer\n className={classNames('eds-blockquote__footer', className)}\n {...rest}\n />\n );\n };\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type CodeTextOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"code\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n};\n\nexport type CodeTextProps<E extends React.ElementType = typeof defaultElement> =\n PolymorphicPropsWithoutRef<CodeTextOwnProps, E>;\n\nconst defaultElement = 'code';\n\nexport const CodeText = <E extends React.ElementType = typeof defaultElement>({\n className,\n as,\n ...rest\n}: CodeTextProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element className={classNames('eds-code-text', className)} {...rest} />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type EmphasizedTextOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"em\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type EmphasizedTextProps<\n E extends React.ElementType = typeof defaultElement,\n> = PolymorphicPropsWithoutRef<EmphasizedTextOwnProps, E>;\n\nconst defaultElement = 'em';\n\nexport const EmphasizedText = <\n E extends React.ElementType = typeof defaultElement,\n>({\n className,\n margin = 'both',\n as,\n ...rest\n}: EmphasizedTextProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-emphasized-text',\n {\n [`eds-emphasized-text--margin-top`]: margin === 'top',\n [`eds-emphasized-text--margin-bottom`]: margin === 'bottom',\n [`eds-emphasized-text--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\ntype BaseHeadingOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres */\n as: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer */\n margin: 'top' | 'bottom' | 'both' | 'none';\n /** Nivået på overskriften */\n level: 1 | 2 | 3 | 4 | 5 | 6;\n};\nconst defaultElement = 'h1';\n\nexport type BaseHeadingProps<\n T extends React.ElementType = typeof defaultElement,\n> = PolymorphicPropsWithoutRef<BaseHeadingOwnProps, T>;\n\nexport const BaseHeading = <\n E extends React.ElementType = typeof defaultElement,\n>({\n className,\n level,\n margin,\n as,\n ...rest\n}: BaseHeadingProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n const baseClass = `eds-h${level}`;\n return (\n <Element\n className={classNames(\n baseClass,\n {\n [`${baseClass}--margin-top`]: margin === 'top',\n [`${baseClass}--margin-bottom`]: margin === 'bottom',\n [`${baseClass}--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport { BaseHeading } from './BaseHeading';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type Heading1OwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"h1\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nconst defaultElement = 'h1';\n\nexport type Heading1Props<T extends React.ElementType = typeof defaultElement> =\n PolymorphicPropsWithoutRef<Heading1OwnProps, T>;\n\nexport const Heading1 = <E extends React.ElementType = typeof defaultElement>({\n margin = 'both',\n children,\n as,\n ...rest\n}: Heading1Props<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <BaseHeading as={Element} margin={margin} {...rest} level={1}>\n {children}\n </BaseHeading>\n );\n};\n","import React from 'react';\nimport { BaseHeading } from './BaseHeading';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type Heading2OwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"h2\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type Heading2Props<T extends React.ElementType = typeof defaultElement> =\n PolymorphicPropsWithoutRef<Heading2OwnProps, T>;\n\nconst defaultElement = 'h2';\n\nexport const Heading2 = <E extends React.ElementType = typeof defaultElement>({\n margin = 'both',\n children,\n as,\n ...rest\n}: Heading2Props<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <BaseHeading as={Element} margin={margin} {...rest} level={2}>\n {children}\n </BaseHeading>\n );\n};\n","import React from 'react';\nimport { BaseHeading } from './BaseHeading';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type Heading3OwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"h3\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type Heading3Props<T extends React.ElementType = typeof defaultElement> =\n PolymorphicPropsWithoutRef<Heading3OwnProps, T>;\n\nconst defaultElement = 'h3';\n\nexport const Heading3 = <E extends React.ElementType = typeof defaultElement>({\n margin = 'both',\n children,\n as,\n ...rest\n}: Heading3Props<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <BaseHeading as={Element} margin={margin} {...rest} level={3}>\n {children}\n </BaseHeading>\n );\n};\n","import React from 'react';\nimport { BaseHeading } from './BaseHeading';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type Heading4OwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"h4\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type Heading4Props<T extends React.ElementType = typeof defaultElement> =\n PolymorphicPropsWithoutRef<Heading4OwnProps, T>;\n\nconst defaultElement = 'h4';\nexport const Heading4 = <E extends React.ElementType = typeof defaultElement>({\n margin = 'both',\n children,\n as,\n ...rest\n}: Heading4Props<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <BaseHeading as={Element} margin={margin} {...rest} level={4}>\n {children}\n </BaseHeading>\n );\n};\n","import React from 'react';\nimport { BaseHeading } from './BaseHeading';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type Heading5OwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"h5\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type Heading5Props<T extends React.ElementType = typeof defaultElement> =\n PolymorphicPropsWithoutRef<Heading5OwnProps, T>;\n\nconst defaultElement = 'h5';\n\nexport const Heading5 = <E extends React.ElementType = typeof defaultElement>({\n margin = 'both',\n children,\n as,\n ...rest\n}: Heading5Props<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <BaseHeading as={Element} margin={margin} {...rest} level={5}>\n {children}\n </BaseHeading>\n );\n};\n","import React from 'react';\nimport { BaseHeading } from './BaseHeading';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type Heading6OwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"h6\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type Heading6Props<T extends React.ElementType = typeof defaultElement> =\n PolymorphicPropsWithoutRef<Heading6OwnProps, T>;\n\nconst defaultElement = 'h6';\n\nexport const Heading6 = <E extends React.ElementType = typeof defaultElement>({\n margin = 'both',\n children,\n as,\n ...rest\n}: Heading6Props<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <BaseHeading as={Element} margin={margin} {...rest} level={6}>\n {children}\n </BaseHeading>\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type LabelOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"label\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type LabelProps<E extends React.ElementType = typeof defaultElement> =\n PolymorphicPropsWithoutRef<LabelOwnProps, E>;\n\nconst defaultElement = 'label';\n\nexport const Label = <E extends React.ElementType = typeof defaultElement>({\n className,\n margin = 'both',\n as,\n ...rest\n}: LabelProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-label',\n {\n [`eds-label--margin-top`]: margin === 'top',\n [`eds-label--margin-bottom`]: margin === 'bottom',\n [`eds-label--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type LeadParagraphOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"p\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type LeadParagraphProps<\n E extends React.ElementType = typeof defaultElement,\n> = PolymorphicPropsWithoutRef<LeadParagraphOwnProps, E>;\n\nconst defaultElement = 'p';\n\nexport const LeadParagraph = <\n E extends React.ElementType = typeof defaultElement,\n>({\n className,\n margin = 'both',\n as,\n ...rest\n}: LeadParagraphProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-lead-paragraph',\n {\n [`eds-lead-paragraph--margin-top`]: margin === 'top',\n [`eds-lead-paragraph--margin-bottom`]: margin === 'bottom',\n [`eds-lead-paragraph--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type LinkOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"a\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type LinkProps<E extends React.ElementType = typeof defaultElement> =\n PolymorphicPropsWithoutRef<LinkOwnProps, E>;\n\nconst defaultElement = 'a';\n\nexport const Link = <E extends React.ElementType = typeof defaultElement>({\n className,\n margin = 'both',\n as,\n ...rest\n}: LinkProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-link',\n {\n [`eds-link--margin-top`]: margin === 'top',\n [`eds-link--margin-bottom`]: margin === 'bottom',\n [`eds-link--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type StrongTextOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"strong\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type StrongTextProps<\n E extends React.ElementType = typeof defaultElement,\n> = PolymorphicPropsWithoutRef<StrongTextOwnProps, E>;\n\nconst defaultElement = 'strong';\n\nexport const StrongText = <\n E extends React.ElementType = typeof defaultElement,\n>({\n className,\n margin = 'both',\n as,\n ...rest\n}: StrongTextProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-strong-text',\n {\n [`eds-strong-text--margin-top`]: margin === 'top',\n [`eds-strong-text--margin-bottom`]: margin === 'bottom',\n [`eds-strong-text--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { StrongText } from './StrongText';\n\nexport type ListItemProps = {\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Tittel */\n title?: React.ReactNode;\n [key: string]: any;\n};\n\nexport const ListItem: React.FC<ListItemProps> = ({\n children,\n className,\n title,\n ...rest\n}) => (\n <li className={classNames('eds-list-item', className)} {...rest}>\n {title && <StrongText className=\"eds-list-item__title\">{title}</StrongText>}\n {children}\n </li>\n);\n","import React from 'react';\nimport classNames from 'classnames';\n\nexport type NumberedListProps = {\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n} & React.OlHTMLAttributes<HTMLOListElement>;\n\nexport const NumberedList: React.FC<NumberedListProps> = ({\n className,\n type = '1',\n ...rest\n}) => (\n <ol\n className={classNames(\n 'eds-numbered-list',\n { [`eds-numbered-list--type-${type}`]: type },\n className,\n )}\n type={type}\n {...rest}\n />\n);\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type ParagraphOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"p\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"bottom\"\n */\n margin?: 'bottom' | 'none';\n};\n\nexport type ParagraphProps<\n E extends React.ElementType = typeof defaultElement,\n> = PolymorphicPropsWithoutRef<ParagraphOwnProps, E>;\n\nconst defaultElement = 'p';\n\nexport const Paragraph = <E extends React.ElementType = typeof defaultElement>({\n margin = 'bottom',\n className,\n as,\n ...rest\n}: ParagraphProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-paragraph',\n {\n 'eds-paragraph--margin-bottom': margin === 'bottom',\n 'eds-paragraph--margin-none': margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type PreformattedTextOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"pre\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n};\n\nexport type PreformattedTextProps<E extends React.ElementType> =\n PolymorphicPropsWithoutRef<PreformattedTextOwnProps, E>;\n\nconst defaultElement = 'pre';\n\nexport const PreformattedText = <\n E extends React.ElementType = typeof defaultElement,\n>({\n className,\n as,\n ...rest\n}: PreformattedTextProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames('eds-preformatted-text', className)}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type SmallTextOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"span\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type SmallTextProps<\n T extends React.ElementType = typeof defaultElement,\n> = PolymorphicPropsWithoutRef<SmallTextOwnProps, T>;\nconst defaultElement = 'span';\n\nexport const SmallText = <E extends React.ElementType = typeof defaultElement>({\n className,\n margin = 'both',\n as,\n ...rest\n}: SmallTextProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-small-text',\n {\n [`eds-small-text--margin-top`]: margin === 'top',\n [`eds-small-text--margin-bottom`]: margin === 'bottom',\n [`eds-small-text--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type SubLabelOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"span\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type SubLabelProps<E extends React.ElementType = typeof defaultElement> =\n PolymorphicPropsWithoutRef<SubLabelOwnProps, E>;\n\nconst defaultElement = 'span';\n\nexport const SubLabel = <E extends React.ElementType = typeof defaultElement>({\n className,\n margin = 'both',\n as,\n ...rest\n}: SubLabelProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-sub-label',\n {\n [`eds-sub-label--margin-top`]: margin === 'top',\n [`eds-sub-label--margin-bottom`]: margin === 'bottom',\n [`eds-sub-label--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicPropsWithoutRef } from '@entur/utils';\n\nexport type SubParagraphOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"p\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type SubParagraphProps<\n E extends React.ElementType = typeof defaultElement,\n> = PolymorphicPropsWithoutRef<SubParagraphOwnProps, E>;\n\nconst defaultElement = 'p';\n\nexport const SubParagraph = <\n E extends React.ElementType = typeof defaultElement,\n>({\n className,\n margin,\n as,\n ...rest\n}: SubParagraphProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-sub-paragraph',\n {\n [`eds-sub-paragraph--margin-top`]: margin === 'top',\n [`eds-sub-paragraph--margin-bottom`]: margin === 'bottom',\n [`eds-sub-paragraph--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\n\nexport type UnorderedListProps = {\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n} & React.DetailedHTMLProps<\n React.HTMLAttributes<HTMLUListElement>,\n HTMLUListElement\n>;\n\nexport const UnorderedList: React.FC<UnorderedListProps> = ({\n className,\n ...rest\n}) => <ul className={classNames('eds-unordered-list', className)} {...rest} />;\n","import { warnAboutMissingStyles } from '@entur/utils';\nimport './index.scss';\n\nwarnAboutMissingStyles('typography');\n\nexport * from './Blockquote';\nexport * from './CodeText';\nexport * from './EmphasizedText';\nexport * from './Heading1';\nexport * from './Heading2';\nexport * from './Heading3';\nexport * from './Heading4';\nexport * from './Heading5';\nexport * from './Heading6';\nexport * from './Label';\nexport * from './LeadParagraph';\nexport * from './Link';\nexport * from './ListItem';\nexport * from './NumberedList';\nexport * from './Paragraph';\nexport * from './PreformattedText';\nexport * from './SmallText';\nexport * from './StrongText';\nexport * from './SubLabel';\nexport * from './SubParagraph';\nexport * from './UnorderedList';\n"],"names":["Blockquote","className","rest","React","classNames","BlockquoteFooter","defaultElement","CodeText","as","Element","EmphasizedText","margin","BaseHeading","level","baseClass","Heading1","children","Heading2","Heading3","Heading4","Heading5","Heading6","Label","LeadParagraph","Link","StrongText","ListItem","title","NumberedList","type","Paragraph","PreformattedText","SmallText","SubLabel","SubParagraph","UnorderedList","warnAboutMissingStyles"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"typography.cjs.development.js","sources":["../src/Blockquote.tsx","../src/CodeText.tsx","../src/EmphasizedText.tsx","../src/BaseHeading.tsx","../src/Heading1.tsx","../src/Heading2.tsx","../src/Heading3.tsx","../src/Heading4.tsx","../src/Heading5.tsx","../src/Heading6.tsx","../src/Label.tsx","../src/LeadParagraph.tsx","../src/Link.tsx","../src/StrongText.tsx","../src/ListItem.tsx","../src/NumberedList.tsx","../src/Paragraph.tsx","../src/PreformattedText.tsx","../src/SmallText.tsx","../src/SubLabel.tsx","../src/SubParagraph.tsx","../src/UnorderedList.tsx","../src/index.tsx"],"sourcesContent":["import React from 'react';\nimport classNames from 'classnames';\n\ntype BlockquoteProps = {\n /** Ekstra klassenavn */\n className?: string;\n} & React.DetailedHTMLProps<\n React.BlockquoteHTMLAttributes<HTMLElement>,\n HTMLElement\n>;\n\nexport const Blockquote: React.FunctionComponent<BlockquoteProps> = ({\n className,\n ...rest\n}) => {\n return (\n <blockquote className={classNames('eds-blockquote', className)} {...rest} />\n );\n};\n\ntype BlockquoteFooterProps = {\n /** Ekstra klassenavn */\n className?: string;\n} & React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;\n\nexport const BlockquoteFooter: React.FunctionComponent<BlockquoteFooterProps> =\n ({ className, ...rest }) => {\n return (\n <footer\n className={classNames('eds-blockquote__footer', className)}\n {...rest}\n />\n );\n };\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type CodeTextOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"code\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n};\n\nexport type CodeTextProps<T extends React.ElementType = typeof defaultElement> =\n PolymorphicComponentProps<T, CodeTextOwnProps>;\n\nconst defaultElement = 'code';\n\nexport const CodeText = <E extends React.ElementType = typeof defaultElement>({\n className,\n as,\n ...rest\n}: CodeTextProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element className={classNames('eds-code-text', className)} {...rest} />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type EmphasizedTextOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"em\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type EmphasizedTextProps<\n T extends React.ElementType = typeof defaultElement,\n> = PolymorphicComponentProps<T, EmphasizedTextOwnProps>;\n\nconst defaultElement = 'em';\n\nexport const EmphasizedText = <\n E extends React.ElementType = typeof defaultElement,\n>({\n className,\n margin = 'both',\n as,\n ...rest\n}: EmphasizedTextProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-emphasized-text',\n {\n [`eds-emphasized-text--margin-top`]: margin === 'top',\n [`eds-emphasized-text--margin-bottom`]: margin === 'bottom',\n [`eds-emphasized-text--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\ntype BaseHeadingOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres */\n as: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer */\n margin: 'top' | 'bottom' | 'both' | 'none';\n /** Nivået på overskriften */\n level: 1 | 2 | 3 | 4 | 5 | 6;\n};\nconst defaultElement = 'h1';\n\nexport type BaseHeadingProps<\n T extends React.ElementType = typeof defaultElement,\n> = PolymorphicComponentProps<T, BaseHeadingOwnProps>;\n\nexport const BaseHeading = <\n E extends React.ElementType = typeof defaultElement,\n>({\n className,\n level,\n margin,\n as,\n ...rest\n}: BaseHeadingProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n const baseClass = `eds-h${level}`;\n return (\n <Element\n className={classNames(\n baseClass,\n {\n [`${baseClass}--margin-top`]: margin === 'top',\n [`${baseClass}--margin-bottom`]: margin === 'bottom',\n [`${baseClass}--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport { BaseHeading } from './BaseHeading';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type Heading1OwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"h1\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nconst defaultElement = 'h1';\n\nexport type Heading1Props<T extends React.ElementType = typeof defaultElement> =\n PolymorphicComponentProps<T, Heading1OwnProps>;\n\nexport const Heading1 = <E extends React.ElementType = typeof defaultElement>({\n margin = 'both',\n children,\n as,\n ...rest\n}: Heading1Props<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <BaseHeading as={Element} margin={margin} {...rest} level={1}>\n {children}\n </BaseHeading>\n );\n};\n","import React from 'react';\nimport { BaseHeading } from './BaseHeading';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type Heading2OwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"h2\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type Heading2Props<T extends React.ElementType = typeof defaultElement> =\n PolymorphicComponentProps<T, Heading2OwnProps>;\n\nconst defaultElement = 'h2';\n\nexport const Heading2 = <E extends React.ElementType = typeof defaultElement>({\n margin = 'both',\n children,\n as,\n ...rest\n}: Heading2Props<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <BaseHeading as={Element} margin={margin} {...rest} level={2}>\n {children}\n </BaseHeading>\n );\n};\n","import React from 'react';\nimport { BaseHeading } from './BaseHeading';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type Heading3OwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"h3\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type Heading3Props<T extends React.ElementType = typeof defaultElement> =\n PolymorphicComponentProps<T, Heading3OwnProps>;\n\nconst defaultElement = 'h3';\n\nexport const Heading3 = <E extends React.ElementType = typeof defaultElement>({\n margin = 'both',\n children,\n as,\n ...rest\n}: Heading3Props<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <BaseHeading as={Element} margin={margin} {...rest} level={3}>\n {children}\n </BaseHeading>\n );\n};\n","import React from 'react';\nimport { BaseHeading } from './BaseHeading';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type Heading4OwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"h4\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type Heading4Props<T extends React.ElementType = typeof defaultElement> =\n PolymorphicComponentProps<T, Heading4OwnProps>;\n\nconst defaultElement = 'h4';\nexport const Heading4 = <E extends React.ElementType = typeof defaultElement>({\n margin = 'both',\n children,\n as,\n ...rest\n}: Heading4Props<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <BaseHeading as={Element} margin={margin} {...rest} level={4}>\n {children}\n </BaseHeading>\n );\n};\n","import React from 'react';\nimport { BaseHeading } from './BaseHeading';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type Heading5OwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"h5\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type Heading5Props<T extends React.ElementType = typeof defaultElement> =\n PolymorphicComponentProps<T, Heading5OwnProps>;\n\nconst defaultElement = 'h5';\n\nexport const Heading5 = <E extends React.ElementType = typeof defaultElement>({\n margin = 'both',\n children,\n as,\n ...rest\n}: Heading5Props<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <BaseHeading as={Element} margin={margin} {...rest} level={5}>\n {children}\n </BaseHeading>\n );\n};\n","import React from 'react';\nimport { BaseHeading } from './BaseHeading';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type Heading6OwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"h6\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type Heading6Props<T extends React.ElementType = typeof defaultElement> =\n PolymorphicComponentProps<T, Heading6OwnProps>;\n\nconst defaultElement = 'h6';\n\nexport const Heading6 = <E extends React.ElementType = typeof defaultElement>({\n margin = 'both',\n children,\n as,\n ...rest\n}: Heading6Props<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <BaseHeading as={Element} margin={margin} {...rest} level={6}>\n {children}\n </BaseHeading>\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type LabelOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"label\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type LabelProps<T extends React.ElementType = typeof defaultElement> =\n PolymorphicComponentProps<T, LabelOwnProps>;\n\nconst defaultElement = 'label';\n\nexport const Label = <E extends React.ElementType = typeof defaultElement>({\n className,\n margin = 'both',\n as,\n ...rest\n}: LabelProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-label',\n {\n [`eds-label--margin-top`]: margin === 'top',\n [`eds-label--margin-bottom`]: margin === 'bottom',\n [`eds-label--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type LeadParagraphOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"p\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type LeadParagraphProps<\n T extends React.ElementType = typeof defaultElement,\n> = PolymorphicComponentProps<T, LeadParagraphOwnProps>;\n\nconst defaultElement = 'p';\n\nexport const LeadParagraph = <\n E extends React.ElementType = typeof defaultElement,\n>({\n className,\n margin = 'both',\n as,\n ...rest\n}: LeadParagraphProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-lead-paragraph',\n {\n [`eds-lead-paragraph--margin-top`]: margin === 'top',\n [`eds-lead-paragraph--margin-bottom`]: margin === 'bottom',\n [`eds-lead-paragraph--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type LinkOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"a\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type LinkProps<T extends React.ElementType = typeof defaultElement> =\n PolymorphicComponentProps<T, LinkOwnProps>;\n\nconst defaultElement = 'a';\n\nexport const Link = <E extends React.ElementType = typeof defaultElement>({\n className,\n margin = 'both',\n as,\n ...rest\n}: LinkProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-link',\n {\n [`eds-link--margin-top`]: margin === 'top',\n [`eds-link--margin-bottom`]: margin === 'bottom',\n [`eds-link--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type StrongTextOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"strong\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type StrongTextProps<\n T extends React.ElementType = typeof defaultElement,\n> = PolymorphicComponentProps<T, StrongTextOwnProps>;\n\nconst defaultElement = 'strong';\n\nexport const StrongText = <\n E extends React.ElementType = typeof defaultElement,\n>({\n className,\n margin = 'both',\n as,\n ...rest\n}: StrongTextProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-strong-text',\n {\n [`eds-strong-text--margin-top`]: margin === 'top',\n [`eds-strong-text--margin-bottom`]: margin === 'bottom',\n [`eds-strong-text--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { StrongText } from './StrongText';\n\nexport type ListItemProps = {\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Tittel */\n title?: React.ReactNode;\n [key: string]: any;\n};\n\nexport const ListItem: React.FC<ListItemProps> = ({\n children,\n className,\n title,\n ...rest\n}) => (\n <li className={classNames('eds-list-item', className)} {...rest}>\n {title && <StrongText className=\"eds-list-item__title\">{title}</StrongText>}\n {children}\n </li>\n);\n","import React from 'react';\nimport classNames from 'classnames';\n\nexport type NumberedListProps = {\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n} & React.OlHTMLAttributes<HTMLOListElement>;\n\nexport const NumberedList: React.FC<NumberedListProps> = ({\n className,\n type = '1',\n ...rest\n}) => (\n <ol\n className={classNames(\n 'eds-numbered-list',\n { [`eds-numbered-list--type-${type}`]: type },\n className,\n )}\n type={type}\n {...rest}\n />\n);\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type ParagraphOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"p\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"bottom\"\n */\n margin?: 'bottom' | 'none';\n};\n\nexport type ParagraphProps<\n T extends React.ElementType = typeof defaultElement,\n> = PolymorphicComponentProps<T, ParagraphOwnProps>;\n\nconst defaultElement = 'p';\n\nexport const Paragraph = <E extends React.ElementType = typeof defaultElement>({\n margin = 'bottom',\n className,\n as,\n ...rest\n}: ParagraphProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-paragraph',\n {\n 'eds-paragraph--margin-bottom': margin === 'bottom',\n 'eds-paragraph--margin-none': margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type PreformattedTextOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"pre\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n};\n\nexport type PreformattedTextProps<T extends React.ElementType> =\n PolymorphicComponentProps<T, PreformattedTextOwnProps>;\n\nconst defaultElement = 'pre';\n\nexport const PreformattedText = <\n E extends React.ElementType = typeof defaultElement,\n>({\n className,\n as,\n ...rest\n}: PreformattedTextProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames('eds-preformatted-text', className)}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type SmallTextOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"span\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type SmallTextProps<\n T extends React.ElementType = typeof defaultElement,\n> = PolymorphicComponentProps<T, SmallTextOwnProps>;\nconst defaultElement = 'span';\n\nexport const SmallText = <E extends React.ElementType = typeof defaultElement>({\n className,\n margin = 'both',\n as,\n ...rest\n}: SmallTextProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-small-text',\n {\n [`eds-small-text--margin-top`]: margin === 'top',\n [`eds-small-text--margin-bottom`]: margin === 'bottom',\n [`eds-small-text--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type SubLabelOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"span\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type SubLabelProps<T extends React.ElementType = typeof defaultElement> =\n PolymorphicComponentProps<T, SubLabelOwnProps>;\n\nconst defaultElement = 'span';\n\nexport const SubLabel = <E extends React.ElementType = typeof defaultElement>({\n className,\n margin = 'both',\n as,\n ...rest\n}: SubLabelProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-sub-label',\n {\n [`eds-sub-label--margin-top`]: margin === 'top',\n [`eds-sub-label--margin-bottom`]: margin === 'bottom',\n [`eds-sub-label--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\nimport { PolymorphicComponentProps } from '@entur/utils';\n\nexport type SubParagraphOwnProps = {\n /** HTML-elementet eller React-komponenten som rendres\n * @default \"p\"\n */\n as?: string | React.ElementType;\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n /** Hvor du vil ha marginer\n * @default \"both\"\n */\n margin?: 'top' | 'bottom' | 'both' | 'none';\n};\n\nexport type SubParagraphProps<\n T extends React.ElementType = typeof defaultElement,\n> = PolymorphicComponentProps<T, SubParagraphOwnProps>;\n\nconst defaultElement = 'p';\n\nexport const SubParagraph = <\n E extends React.ElementType = typeof defaultElement,\n>({\n className,\n margin,\n as,\n ...rest\n}: SubParagraphProps<E>): JSX.Element => {\n const Element: React.ElementType = as || defaultElement;\n return (\n <Element\n className={classNames(\n 'eds-sub-paragraph',\n {\n [`eds-sub-paragraph--margin-top`]: margin === 'top',\n [`eds-sub-paragraph--margin-bottom`]: margin === 'bottom',\n [`eds-sub-paragraph--margin-none`]: margin === 'none',\n },\n className,\n )}\n {...rest}\n />\n );\n};\n","import React from 'react';\nimport classNames from 'classnames';\n\nexport type UnorderedListProps = {\n /** Ekstra klassenavn */\n className?: string;\n /** Innholdet */\n children: React.ReactNode;\n} & React.DetailedHTMLProps<\n React.HTMLAttributes<HTMLUListElement>,\n HTMLUListElement\n>;\n\nexport const UnorderedList: React.FC<UnorderedListProps> = ({\n className,\n ...rest\n}) => <ul className={classNames('eds-unordered-list', className)} {...rest} />;\n","import { warnAboutMissingStyles } from '@entur/utils';\nimport './index.scss';\n\nwarnAboutMissingStyles('typography');\n\nexport * from './Blockquote';\nexport * from './CodeText';\nexport * from './EmphasizedText';\nexport * from './Heading1';\nexport * from './Heading2';\nexport * from './Heading3';\nexport * from './Heading4';\nexport * from './Heading5';\nexport * from './Heading6';\nexport * from './Label';\nexport * from './LeadParagraph';\nexport * from './Link';\nexport * from './ListItem';\nexport * from './NumberedList';\nexport * from './Paragraph';\nexport * from './PreformattedText';\nexport * from './SmallText';\nexport * from './StrongText';\nexport * from './SubLabel';\nexport * from './SubParagraph';\nexport * from './UnorderedList';\n"],"names":["Blockquote","className","rest","React","classNames","BlockquoteFooter","defaultElement","CodeText","as","Element","EmphasizedText","margin","BaseHeading","level","baseClass","Heading1","children","Heading2","Heading3","Heading4","Heading5","Heading6","Label","LeadParagraph","Link","StrongText","ListItem","title","NumberedList","type","Paragraph","PreformattedText","SmallText","SubLabel","SubParagraph","UnorderedList","warnAboutMissingStyles"],"mappings":"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"}
|