@elliemae/ds-header 1.60.0 → 2.0.0-alpha.12
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/cjs/Header.js +35 -24
- package/cjs/index.js +0 -7
- package/esm/Header.js +32 -20
- package/esm/index.js +0 -7
- package/package.json +33 -11
- package/types/Header.d.ts +167 -0
- package/types/index.d.ts +1 -0
- package/Header/package.json +0 -10
- package/cjs/Header.js.map +0 -1
- package/cjs/index.js.map +0 -1
- package/esm/Header.js.map +0 -1
- package/esm/index.js.map +0 -1
package/cjs/Header.js
CHANGED
|
@@ -2,38 +2,49 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
require('core-js/modules/esnext.async-iterator.filter.js');
|
|
6
|
+
require('core-js/modules/esnext.iterator.constructor.js');
|
|
7
|
+
require('core-js/modules/esnext.iterator.filter.js');
|
|
8
|
+
require('core-js/modules/esnext.async-iterator.for-each.js');
|
|
9
|
+
require('core-js/modules/esnext.iterator.for-each.js');
|
|
10
|
+
var _defineProperty = require('@babel/runtime/helpers/defineProperty');
|
|
6
11
|
var _objectWithoutProperties = require('@babel/runtime/helpers/objectWithoutProperties');
|
|
7
|
-
|
|
12
|
+
require('react');
|
|
8
13
|
var reactDesc = require('react-desc');
|
|
9
14
|
var styled = require('styled-components');
|
|
10
15
|
var styledSystem = require('styled-system');
|
|
16
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
11
17
|
|
|
12
18
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
13
19
|
|
|
14
|
-
var
|
|
20
|
+
var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty);
|
|
15
21
|
var _objectWithoutProperties__default = /*#__PURE__*/_interopDefaultLegacy(_objectWithoutProperties);
|
|
16
|
-
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
17
22
|
var styled__default = /*#__PURE__*/_interopDefaultLegacy(styled);
|
|
18
23
|
|
|
19
|
-
|
|
20
|
-
|
|
24
|
+
const _excluded = ["color", "fontFamily", "fontSize", "fontWeight", "height", "level", "lineHeight", "text", "width"];
|
|
25
|
+
|
|
26
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
27
|
+
|
|
28
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
29
|
+
const H = /*#__PURE__*/styled__default["default"].h3.withConfig({
|
|
21
30
|
componentId: "sc-hpgkwz-0"
|
|
22
31
|
})(["font-weight:unset;font-size:unset;line-height:unset;margin:0;padding:0;", " ", " ", " ", " ", ""], styledSystem.space, styledSystem.width, styledSystem.height, styledSystem.typography, styledSystem.color);
|
|
23
32
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
const DSHeader = _ref => {
|
|
34
|
+
let {
|
|
35
|
+
color,
|
|
36
|
+
fontFamily,
|
|
37
|
+
fontSize,
|
|
38
|
+
fontWeight,
|
|
39
|
+
height,
|
|
40
|
+
level,
|
|
41
|
+
lineHeight,
|
|
42
|
+
text,
|
|
43
|
+
width
|
|
44
|
+
} = _ref,
|
|
45
|
+
rest = _objectWithoutProperties__default["default"](_ref, _excluded);
|
|
35
46
|
|
|
36
|
-
return /*#__PURE__*/
|
|
47
|
+
return /*#__PURE__*/jsxRuntime.jsx(H, _objectSpread(_objectSpread({
|
|
37
48
|
as: "h".concat(level),
|
|
38
49
|
color: color,
|
|
39
50
|
fontFamily: fontFamily,
|
|
@@ -43,14 +54,16 @@ var DSHeader = function DSHeader(_ref) {
|
|
|
43
54
|
lineHeight: lineHeight,
|
|
44
55
|
width: width,
|
|
45
56
|
"data-testid": "em-ds-header"
|
|
46
|
-
}, rest),
|
|
57
|
+
}, rest), {}, {
|
|
58
|
+
children: text
|
|
59
|
+
}));
|
|
47
60
|
};
|
|
48
61
|
|
|
49
62
|
DSHeader.defaultProps = {
|
|
50
63
|
level: 3,
|
|
51
64
|
lineHeight: 1.2
|
|
52
65
|
};
|
|
53
|
-
|
|
66
|
+
const headerProps = {
|
|
54
67
|
color: reactDesc.PropTypes.string.description('Colors aliases from theme. I.e. `brand.400`'),
|
|
55
68
|
fontFamily: reactDesc.PropTypes.string.description('font-family aliases from theme. I.e. `default`'),
|
|
56
69
|
fontSize: reactDesc.PropTypes.string.description('any valid value format. I.e. `16px`'),
|
|
@@ -75,11 +88,9 @@ var headerProps = {
|
|
|
75
88
|
text: reactDesc.PropTypes.oneOfType([reactDesc.PropTypes.string, reactDesc.PropTypes.element]).description('Header s text').isRequired,
|
|
76
89
|
width: reactDesc.PropTypes.string.description('text width')
|
|
77
90
|
};
|
|
78
|
-
|
|
79
|
-
var HeaderWithSchema = reactDesc.describe(DSHeader);
|
|
91
|
+
const HeaderWithSchema = reactDesc.describe(DSHeader);
|
|
80
92
|
HeaderWithSchema.propTypes = headerProps;
|
|
81
93
|
|
|
82
94
|
exports.DSHeader = DSHeader;
|
|
83
95
|
exports.HeaderWithSchema = HeaderWithSchema;
|
|
84
|
-
exports[
|
|
85
|
-
//# sourceMappingURL=Header.js.map
|
|
96
|
+
exports["default"] = DSHeader;
|
package/cjs/index.js
CHANGED
|
@@ -3,15 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var Header = require('./Header.js');
|
|
6
|
-
require('@babel/runtime/helpers/extends');
|
|
7
|
-
require('@babel/runtime/helpers/objectWithoutProperties');
|
|
8
|
-
require('react');
|
|
9
|
-
require('react-desc');
|
|
10
|
-
require('styled-components');
|
|
11
|
-
require('styled-system');
|
|
12
6
|
|
|
13
7
|
|
|
14
8
|
|
|
15
9
|
exports.DSHeader = Header.DSHeader;
|
|
16
10
|
exports.HeaderWithSchema = Header.HeaderWithSchema;
|
|
17
|
-
//# sourceMappingURL=index.js.map
|
package/esm/Header.js
CHANGED
|
@@ -1,28 +1,40 @@
|
|
|
1
|
-
import
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
2
7
|
import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
|
|
3
|
-
import
|
|
8
|
+
import 'react';
|
|
4
9
|
import { PropTypes, describe } from 'react-desc';
|
|
5
10
|
import styled from 'styled-components';
|
|
6
11
|
import { space, width, height, typography, color } from 'styled-system';
|
|
12
|
+
import { jsx } from 'react/jsx-runtime';
|
|
7
13
|
|
|
8
|
-
|
|
9
|
-
|
|
14
|
+
const _excluded = ["color", "fontFamily", "fontSize", "fontWeight", "height", "level", "lineHeight", "text", "width"];
|
|
15
|
+
|
|
16
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
17
|
+
|
|
18
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
19
|
+
const H = /*#__PURE__*/styled.h3.withConfig({
|
|
10
20
|
componentId: "sc-hpgkwz-0"
|
|
11
21
|
})(["font-weight:unset;font-size:unset;line-height:unset;margin:0;padding:0;", " ", " ", " ", " ", ""], space, width, height, typography, color);
|
|
12
22
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
const DSHeader = _ref => {
|
|
24
|
+
let {
|
|
25
|
+
color,
|
|
26
|
+
fontFamily,
|
|
27
|
+
fontSize,
|
|
28
|
+
fontWeight,
|
|
29
|
+
height,
|
|
30
|
+
level,
|
|
31
|
+
lineHeight,
|
|
32
|
+
text,
|
|
33
|
+
width
|
|
34
|
+
} = _ref,
|
|
23
35
|
rest = _objectWithoutProperties(_ref, _excluded);
|
|
24
36
|
|
|
25
|
-
return /*#__PURE__*/
|
|
37
|
+
return /*#__PURE__*/jsx(H, _objectSpread(_objectSpread({
|
|
26
38
|
as: "h".concat(level),
|
|
27
39
|
color: color,
|
|
28
40
|
fontFamily: fontFamily,
|
|
@@ -32,14 +44,16 @@ var DSHeader = function DSHeader(_ref) {
|
|
|
32
44
|
lineHeight: lineHeight,
|
|
33
45
|
width: width,
|
|
34
46
|
"data-testid": "em-ds-header"
|
|
35
|
-
}, rest),
|
|
47
|
+
}, rest), {}, {
|
|
48
|
+
children: text
|
|
49
|
+
}));
|
|
36
50
|
};
|
|
37
51
|
|
|
38
52
|
DSHeader.defaultProps = {
|
|
39
53
|
level: 3,
|
|
40
54
|
lineHeight: 1.2
|
|
41
55
|
};
|
|
42
|
-
|
|
56
|
+
const headerProps = {
|
|
43
57
|
color: PropTypes.string.description('Colors aliases from theme. I.e. `brand.400`'),
|
|
44
58
|
fontFamily: PropTypes.string.description('font-family aliases from theme. I.e. `default`'),
|
|
45
59
|
fontSize: PropTypes.string.description('any valid value format. I.e. `16px`'),
|
|
@@ -64,9 +78,7 @@ var headerProps = {
|
|
|
64
78
|
text: PropTypes.oneOfType([PropTypes.string, PropTypes.element]).description('Header s text').isRequired,
|
|
65
79
|
width: PropTypes.string.description('text width')
|
|
66
80
|
};
|
|
67
|
-
|
|
68
|
-
var HeaderWithSchema = describe(DSHeader);
|
|
81
|
+
const HeaderWithSchema = describe(DSHeader);
|
|
69
82
|
HeaderWithSchema.propTypes = headerProps;
|
|
70
83
|
|
|
71
84
|
export { DSHeader, HeaderWithSchema, DSHeader as default };
|
|
72
|
-
//# sourceMappingURL=Header.js.map
|
package/esm/index.js
CHANGED
|
@@ -1,8 +1 @@
|
|
|
1
1
|
export { DSHeader, HeaderWithSchema } from './Header.js';
|
|
2
|
-
import '@babel/runtime/helpers/esm/extends';
|
|
3
|
-
import '@babel/runtime/helpers/esm/objectWithoutProperties';
|
|
4
|
-
import 'react';
|
|
5
|
-
import 'react-desc';
|
|
6
|
-
import 'styled-components';
|
|
7
|
-
import 'styled-system';
|
|
8
|
-
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,14 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-header",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-alpha.12",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"description": "
|
|
6
|
-
"module": "esm/index.js",
|
|
7
|
-
"main": "cjs/index.js",
|
|
5
|
+
"description": "ICE MT - Dimsum - Header",
|
|
6
|
+
"module": "./esm/index.js",
|
|
7
|
+
"main": "./cjs/index.js",
|
|
8
|
+
"types": "./types/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./esm/index.js",
|
|
12
|
+
"require": "./cjs/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./Header": {
|
|
15
|
+
"import": "./esm/Header.js",
|
|
16
|
+
"require": "./cjs/Header.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
8
19
|
"sideEffects": [
|
|
9
20
|
"*.css",
|
|
10
21
|
"*.scss"
|
|
11
22
|
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://git.elliemae.io/platform-ui/dimsum.git"
|
|
26
|
+
},
|
|
27
|
+
"engines": {
|
|
28
|
+
"npm": ">=7",
|
|
29
|
+
"node": ">=14"
|
|
30
|
+
},
|
|
31
|
+
"author": "ICE MT",
|
|
12
32
|
"scripts": {
|
|
13
33
|
"dev": "cross-env NODE_ENV=development && node ../../scripts/build/build.js -w",
|
|
14
34
|
"prebuild": "exit 0",
|
|
@@ -16,19 +36,21 @@
|
|
|
16
36
|
"build": "node ../../scripts/build/build.js"
|
|
17
37
|
},
|
|
18
38
|
"dependencies": {
|
|
19
|
-
"react-desc": "
|
|
20
|
-
"styled-system": "~5.1.5"
|
|
39
|
+
"react-desc": "~4.1.3"
|
|
21
40
|
},
|
|
22
41
|
"devDependencies": {
|
|
23
|
-
"styled-components": "~5.3.
|
|
42
|
+
"styled-components": "~5.3.3",
|
|
43
|
+
"styled-system": "~5.1.5"
|
|
24
44
|
},
|
|
25
45
|
"peerDependencies": {
|
|
26
|
-
"react": "^17.0.
|
|
27
|
-
"react-dom": "^17.0.
|
|
28
|
-
"styled-components": "^5.3.
|
|
46
|
+
"react": "^17.0.2",
|
|
47
|
+
"react-dom": "^17.0.2",
|
|
48
|
+
"styled-components": "^5.3.3",
|
|
49
|
+
"styled-system": "^5.1.5"
|
|
29
50
|
},
|
|
30
51
|
"publishConfig": {
|
|
31
52
|
"access": "public",
|
|
32
|
-
"directory": "dist"
|
|
53
|
+
"directory": "dist",
|
|
54
|
+
"generateSubmodules": true
|
|
33
55
|
}
|
|
34
56
|
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
/// <reference path="../../../../shared/typings/react-desc.d.ts" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
declare const DSHeader: {
|
|
4
|
+
({ color, fontFamily, fontSize, fontWeight, height, level, lineHeight, text, width, ...rest }: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
color: any;
|
|
7
|
+
fontFamily: any;
|
|
8
|
+
fontSize: any;
|
|
9
|
+
fontWeight: any;
|
|
10
|
+
height: any;
|
|
11
|
+
level: any;
|
|
12
|
+
lineHeight: any;
|
|
13
|
+
text: any;
|
|
14
|
+
width: any;
|
|
15
|
+
}): JSX.Element;
|
|
16
|
+
defaultProps: {
|
|
17
|
+
level: number;
|
|
18
|
+
lineHeight: number;
|
|
19
|
+
};
|
|
20
|
+
propTypes: {
|
|
21
|
+
color: {
|
|
22
|
+
defaultValue<T = unknown>(arg: T): {
|
|
23
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
24
|
+
};
|
|
25
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
26
|
+
};
|
|
27
|
+
fontFamily: {
|
|
28
|
+
defaultValue<T = unknown>(arg: T): {
|
|
29
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
30
|
+
};
|
|
31
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
32
|
+
};
|
|
33
|
+
fontSize: {
|
|
34
|
+
defaultValue<T = unknown>(arg: T): {
|
|
35
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
36
|
+
};
|
|
37
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
38
|
+
};
|
|
39
|
+
fontWeight: {
|
|
40
|
+
defaultValue<T = unknown>(arg: T): {
|
|
41
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
42
|
+
};
|
|
43
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
44
|
+
};
|
|
45
|
+
height: {
|
|
46
|
+
defaultValue<T = unknown>(arg: T): {
|
|
47
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
48
|
+
};
|
|
49
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
50
|
+
};
|
|
51
|
+
level: {
|
|
52
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
53
|
+
};
|
|
54
|
+
lineHeight: {
|
|
55
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
56
|
+
};
|
|
57
|
+
m: {
|
|
58
|
+
defaultValue<T = unknown>(arg: T): {
|
|
59
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
60
|
+
};
|
|
61
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
62
|
+
};
|
|
63
|
+
mb: {
|
|
64
|
+
defaultValue<T = unknown>(arg: T): {
|
|
65
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
66
|
+
};
|
|
67
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
68
|
+
};
|
|
69
|
+
ml: {
|
|
70
|
+
defaultValue<T = unknown>(arg: T): {
|
|
71
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
72
|
+
};
|
|
73
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
74
|
+
};
|
|
75
|
+
mr: {
|
|
76
|
+
defaultValue<T = unknown>(arg: T): {
|
|
77
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
78
|
+
};
|
|
79
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
80
|
+
};
|
|
81
|
+
mt: {
|
|
82
|
+
defaultValue<T = unknown>(arg: T): {
|
|
83
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
84
|
+
};
|
|
85
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
86
|
+
};
|
|
87
|
+
mx: {
|
|
88
|
+
defaultValue<T = unknown>(arg: T): {
|
|
89
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
90
|
+
};
|
|
91
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
92
|
+
};
|
|
93
|
+
my: {
|
|
94
|
+
defaultValue<T = unknown>(arg: T): {
|
|
95
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
96
|
+
};
|
|
97
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
98
|
+
};
|
|
99
|
+
p: {
|
|
100
|
+
defaultValue<T = unknown>(arg: T): {
|
|
101
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
102
|
+
};
|
|
103
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
104
|
+
};
|
|
105
|
+
pb: {
|
|
106
|
+
defaultValue<T = unknown>(arg: T): {
|
|
107
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
108
|
+
};
|
|
109
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
110
|
+
};
|
|
111
|
+
pl: {
|
|
112
|
+
defaultValue<T = unknown>(arg: T): {
|
|
113
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
114
|
+
};
|
|
115
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
116
|
+
};
|
|
117
|
+
pr: {
|
|
118
|
+
defaultValue<T = unknown>(arg: T): {
|
|
119
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
120
|
+
};
|
|
121
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
122
|
+
};
|
|
123
|
+
pt: {
|
|
124
|
+
defaultValue<T = unknown>(arg: T): {
|
|
125
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
126
|
+
};
|
|
127
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
128
|
+
};
|
|
129
|
+
px: {
|
|
130
|
+
defaultValue<T = unknown>(arg: T): {
|
|
131
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
132
|
+
};
|
|
133
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
134
|
+
};
|
|
135
|
+
py: {
|
|
136
|
+
defaultValue<T = unknown>(arg: T): {
|
|
137
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
138
|
+
};
|
|
139
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
140
|
+
};
|
|
141
|
+
text: import("react-desc").PropTypesDescValidator;
|
|
142
|
+
width: {
|
|
143
|
+
defaultValue<T = unknown>(arg: T): {
|
|
144
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
145
|
+
};
|
|
146
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
declare const HeaderWithSchema: {
|
|
151
|
+
(props?: {
|
|
152
|
+
[x: string]: any;
|
|
153
|
+
color: any;
|
|
154
|
+
fontFamily: any;
|
|
155
|
+
fontSize: any;
|
|
156
|
+
fontWeight: any;
|
|
157
|
+
height: any;
|
|
158
|
+
level: any;
|
|
159
|
+
lineHeight: any;
|
|
160
|
+
text: any;
|
|
161
|
+
width: any;
|
|
162
|
+
} | undefined): JSX.Element;
|
|
163
|
+
propTypes: unknown;
|
|
164
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
165
|
+
};
|
|
166
|
+
export { DSHeader, HeaderWithSchema };
|
|
167
|
+
export default DSHeader;
|
package/types/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Header';
|
package/Header/package.json
DELETED
package/cjs/Header.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Header.js","sources":["../../src/Header.tsx"],"sourcesContent":["/* eslint-disable max-lines */\nimport React from 'react';\nimport { describe, PropTypes } from 'react-desc';\nimport styled from 'styled-components';\nimport {\n space,\n width as wdt,\n height as hgt,\n typography,\n color as clr,\n} from 'styled-system';\n\nconst H = styled.h3`\n font-weight: unset;\n font-size: unset;\n line-height: unset;\n margin: 0;\n padding: 0;\n ${space}\n ${wdt}\n ${hgt}\n ${typography}\n ${clr}\n`;\n\nconst DSHeader = ({\n color,\n fontFamily,\n fontSize,\n fontWeight,\n height,\n level,\n lineHeight,\n text,\n width,\n // using spread for styled-system bug on margin/padding\n ...rest\n}) => (\n <H\n as={`h${level}`}\n color={color}\n fontFamily={fontFamily}\n fontSize={fontSize}\n fontWeight={fontWeight}\n height={height}\n lineHeight={lineHeight}\n width={width}\n data-testid=\"em-ds-header\"\n {...rest}\n >\n {text}\n </H>\n);\n\nDSHeader.defaultProps = {\n level: 3,\n lineHeight: 1.2,\n};\n\nconst headerProps = {\n color: PropTypes.string.description(\n 'Colors aliases from theme. I.e. `brand.400`',\n ),\n fontFamily: PropTypes.string.description(\n 'font-family aliases from theme. I.e. `default`',\n ),\n fontSize: PropTypes.string.description('any valid value format. I.e. `16px`'),\n fontWeight: PropTypes.string.description(\n 'any alias from theme. I.e. `semibold`',\n ),\n height: PropTypes.string.description('any valid value format. I.e. `200px`'),\n level: PropTypes.oneOf([1, 2, 3, 4, 5, 6])\n .description('Depth of header tag. I.e. level `2` renders a h2 tag')\n .defaultValue(2),\n lineHeight: PropTypes.number\n .description('float numbers for line-height. I.e. 1.5')\n .defaultValue(1.2),\n m: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin',\n ),\n mb: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin-bottom',\n ),\n ml: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin-left',\n ),\n mr: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin-right',\n ),\n mt: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin-top',\n ),\n mx: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin x',\n ),\n my: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin y',\n ),\n p: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding',\n ),\n pb: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding-bottom',\n ),\n pl: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding-left',\n ),\n pr: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding-right',\n ),\n pt: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding-top',\n ),\n px: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding x',\n ),\n py: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding y',\n ),\n text: PropTypes.oneOfType([PropTypes.string, PropTypes.element]).description(\n 'Header s text',\n ).isRequired,\n width: PropTypes.string.description('text width'),\n};\n\nDSHeader.propTypes = headerProps;\n\nconst HeaderWithSchema = describe(DSHeader);\nHeaderWithSchema.propTypes = headerProps;\n\nexport { DSHeader, HeaderWithSchema };\nexport default DSHeader;\n"],"names":["H","styled","h3","space","wdt","hgt","typography","clr","DSHeader","color","fontFamily","fontSize","fontWeight","height","level","lineHeight","text","width","rest","React","defaultProps","headerProps","PropTypes","string","description","oneOf","defaultValue","number","m","mb","ml","mr","mt","mx","my","p","pb","pl","pr","pt","px","py","oneOfType","element","isRequired","propTypes","HeaderWithSchema","describe"],"mappings":"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"}
|
package/cjs/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
package/esm/Header.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Header.js","sources":["../../src/Header.tsx"],"sourcesContent":["/* eslint-disable max-lines */\nimport React from 'react';\nimport { describe, PropTypes } from 'react-desc';\nimport styled from 'styled-components';\nimport {\n space,\n width as wdt,\n height as hgt,\n typography,\n color as clr,\n} from 'styled-system';\n\nconst H = styled.h3`\n font-weight: unset;\n font-size: unset;\n line-height: unset;\n margin: 0;\n padding: 0;\n ${space}\n ${wdt}\n ${hgt}\n ${typography}\n ${clr}\n`;\n\nconst DSHeader = ({\n color,\n fontFamily,\n fontSize,\n fontWeight,\n height,\n level,\n lineHeight,\n text,\n width,\n // using spread for styled-system bug on margin/padding\n ...rest\n}) => (\n <H\n as={`h${level}`}\n color={color}\n fontFamily={fontFamily}\n fontSize={fontSize}\n fontWeight={fontWeight}\n height={height}\n lineHeight={lineHeight}\n width={width}\n data-testid=\"em-ds-header\"\n {...rest}\n >\n {text}\n </H>\n);\n\nDSHeader.defaultProps = {\n level: 3,\n lineHeight: 1.2,\n};\n\nconst headerProps = {\n color: PropTypes.string.description(\n 'Colors aliases from theme. I.e. `brand.400`',\n ),\n fontFamily: PropTypes.string.description(\n 'font-family aliases from theme. I.e. `default`',\n ),\n fontSize: PropTypes.string.description('any valid value format. I.e. `16px`'),\n fontWeight: PropTypes.string.description(\n 'any alias from theme. I.e. `semibold`',\n ),\n height: PropTypes.string.description('any valid value format. I.e. `200px`'),\n level: PropTypes.oneOf([1, 2, 3, 4, 5, 6])\n .description('Depth of header tag. I.e. level `2` renders a h2 tag')\n .defaultValue(2),\n lineHeight: PropTypes.number\n .description('float numbers for line-height. I.e. 1.5')\n .defaultValue(1.2),\n m: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin',\n ),\n mb: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin-bottom',\n ),\n ml: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin-left',\n ),\n mr: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin-right',\n ),\n mt: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin-top',\n ),\n mx: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin x',\n ),\n my: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'margin y',\n ),\n p: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding',\n ),\n pb: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding-bottom',\n ),\n pl: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding-left',\n ),\n pr: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding-right',\n ),\n pt: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding-top',\n ),\n px: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding x',\n ),\n py: PropTypes.oneOf(['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl']).description(\n 'padding y',\n ),\n text: PropTypes.oneOfType([PropTypes.string, PropTypes.element]).description(\n 'Header s text',\n ).isRequired,\n width: PropTypes.string.description('text width'),\n};\n\nDSHeader.propTypes = headerProps;\n\nconst HeaderWithSchema = describe(DSHeader);\nHeaderWithSchema.propTypes = headerProps;\n\nexport { DSHeader, HeaderWithSchema };\nexport default DSHeader;\n"],"names":["H","styled","h3","space","wdt","hgt","typography","clr","DSHeader","color","fontFamily","fontSize","fontWeight","height","level","lineHeight","text","width","rest","defaultProps","headerProps","PropTypes","string","description","oneOf","defaultValue","number","m","mb","ml","mr","mt","mx","my","p","pb","pl","pr","pt","px","py","oneOfType","element","isRequired","propTypes","HeaderWithSchema","describe"],"mappings":"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"}
|
package/esm/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|