@zendeskgarden/react-typography 9.11.1 → 9.11.2

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.
@@ -21,15 +21,19 @@ import '../styled/StyledList.js';
21
21
  import '../styled/StyledListItem.js';
22
22
  import '../styled/StyledParagraph.js';
23
23
 
24
- const Blockquote = forwardRef((props, ref) => React.createElement(StyledBlockquote, Object.assign({
25
- ref: ref
26
- }, props)));
24
+ const Blockquote = forwardRef((_ref, ref) => {
25
+ let {
26
+ size = 'medium',
27
+ ...props
28
+ } = _ref;
29
+ return React.createElement(StyledBlockquote, Object.assign({
30
+ ref: ref,
31
+ size: size
32
+ }, props));
33
+ });
27
34
  Blockquote.displayName = 'Blockquote';
28
35
  Blockquote.propTypes = {
29
36
  size: PropTypes.oneOf(SIZE)
30
37
  };
31
- Blockquote.defaultProps = {
32
- size: 'medium'
33
- };
34
38
 
35
39
  export { Blockquote };
@@ -23,8 +23,8 @@ import '../styled/StyledParagraph.js';
23
23
 
24
24
  const Code = forwardRef((_ref, ref) => {
25
25
  let {
26
- hue,
27
- size,
26
+ hue = 'grey',
27
+ size = 'inherit',
28
28
  ...other
29
29
  } = _ref;
30
30
  return React.createElement(StyledCode, Object.assign({
@@ -38,9 +38,5 @@ Code.propTypes = {
38
38
  hue: PropTypes.oneOf(HUE),
39
39
  size: PropTypes.oneOf(INHERIT_SIZE)
40
40
  };
41
- Code.defaultProps = {
42
- hue: 'grey',
43
- size: 'inherit'
44
- };
45
41
 
46
42
  export { Code };
@@ -24,7 +24,7 @@ const Ellipsis = forwardRef((_ref, ref) => {
24
24
  let {
25
25
  children,
26
26
  title,
27
- tag,
27
+ tag = 'div',
28
28
  ...other
29
29
  } = _ref;
30
30
  let textContent = undefined;
@@ -44,8 +44,5 @@ Ellipsis.propTypes = {
44
44
  title: PropTypes.string,
45
45
  tag: PropTypes.any
46
46
  };
47
- Ellipsis.defaultProps = {
48
- tag: 'div'
49
- };
50
47
 
51
48
  export { Ellipsis };
@@ -24,7 +24,7 @@ const LG = forwardRef((_ref, ref) => {
24
24
  let {
25
25
  isBold,
26
26
  isMonospace,
27
- tag,
27
+ tag = 'div',
28
28
  ...other
29
29
  } = _ref;
30
30
  return React.createElement(StyledFont, Object.assign({
@@ -41,8 +41,5 @@ LG.propTypes = {
41
41
  isBold: PropTypes.bool,
42
42
  isMonospace: PropTypes.bool
43
43
  };
44
- LG.defaultProps = {
45
- tag: 'div'
46
- };
47
44
 
48
45
  export { LG };
@@ -24,7 +24,7 @@ const MD = forwardRef((_ref, ref) => {
24
24
  let {
25
25
  isBold,
26
26
  isMonospace,
27
- tag,
27
+ tag = 'div',
28
28
  ...other
29
29
  } = _ref;
30
30
  return React.createElement(StyledFont, Object.assign({
@@ -41,8 +41,5 @@ MD.propTypes = {
41
41
  isBold: PropTypes.bool,
42
42
  isMonospace: PropTypes.bool
43
43
  };
44
- MD.defaultProps = {
45
- tag: 'div'
46
- };
47
44
 
48
45
  export { MD };
@@ -21,15 +21,19 @@ import '../styled/StyledList.js';
21
21
  import '../styled/StyledListItem.js';
22
22
  import { StyledParagraph } from '../styled/StyledParagraph.js';
23
23
 
24
- const Paragraph = forwardRef((props, ref) => React.createElement(StyledParagraph, Object.assign({
25
- ref: ref
26
- }, props)));
24
+ const Paragraph = forwardRef((_ref, ref) => {
25
+ let {
26
+ size = 'medium',
27
+ ...props
28
+ } = _ref;
29
+ return React.createElement(StyledParagraph, Object.assign({
30
+ ref: ref,
31
+ size: size
32
+ }, props));
33
+ });
27
34
  Paragraph.displayName = 'Paragraph';
28
35
  Paragraph.propTypes = {
29
36
  size: PropTypes.oneOf(SIZE)
30
37
  };
31
- Paragraph.defaultProps = {
32
- size: 'medium'
33
- };
34
38
 
35
39
  export { Paragraph };
@@ -24,7 +24,7 @@ const SM = forwardRef((_ref, ref) => {
24
24
  let {
25
25
  isBold,
26
26
  isMonospace,
27
- tag,
27
+ tag = 'div',
28
28
  ...other
29
29
  } = _ref;
30
30
  return React.createElement(StyledFont, Object.assign({
@@ -41,8 +41,5 @@ SM.propTypes = {
41
41
  isBold: PropTypes.bool,
42
42
  isMonospace: PropTypes.bool
43
43
  };
44
- SM.defaultProps = {
45
- tag: 'div'
46
- };
47
44
 
48
45
  export { SM };
@@ -23,7 +23,7 @@ import '../styled/StyledParagraph.js';
23
23
  const XL = forwardRef((_ref, ref) => {
24
24
  let {
25
25
  isBold,
26
- tag,
26
+ tag = 'div',
27
27
  ...other
28
28
  } = _ref;
29
29
  return React.createElement(StyledFont, Object.assign({
@@ -38,8 +38,5 @@ XL.propTypes = {
38
38
  tag: PropTypes.any,
39
39
  isBold: PropTypes.bool
40
40
  };
41
- XL.defaultProps = {
42
- tag: 'div'
43
- };
44
41
 
45
42
  export { XL };
@@ -23,7 +23,7 @@ import '../styled/StyledParagraph.js';
23
23
  const XXL = forwardRef((_ref, ref) => {
24
24
  let {
25
25
  isBold,
26
- tag,
26
+ tag = 'div',
27
27
  ...other
28
28
  } = _ref;
29
29
  return React.createElement(StyledFont, Object.assign({
@@ -38,8 +38,5 @@ XXL.propTypes = {
38
38
  tag: PropTypes.any,
39
39
  isBold: PropTypes.bool
40
40
  };
41
- XXL.defaultProps = {
42
- tag: 'div'
43
- };
44
41
 
45
42
  export { XXL };
@@ -23,7 +23,7 @@ import '../styled/StyledParagraph.js';
23
23
  const XXXL = forwardRef((_ref, ref) => {
24
24
  let {
25
25
  isBold,
26
- tag,
26
+ tag = 'div',
27
27
  ...other
28
28
  } = _ref;
29
29
  return React.createElement(StyledFont, Object.assign({
@@ -39,8 +39,5 @@ XXXL.propTypes = {
39
39
  tag: PropTypes.any,
40
40
  isBold: PropTypes.bool
41
41
  };
42
- XXXL.defaultProps = {
43
- tag: 'div'
44
- };
45
42
 
46
43
  export { XXXL };
@@ -25,8 +25,8 @@ import '../../styled/StyledParagraph.js';
25
25
 
26
26
  const OrderedListComponent = React.forwardRef((_ref, ref) => {
27
27
  let {
28
- size,
29
- type,
28
+ size = 'medium',
29
+ type = 'decimal',
30
30
  ...other
31
31
  } = _ref;
32
32
  const value = useMemo(() => ({
@@ -44,10 +44,6 @@ OrderedListComponent.propTypes = {
44
44
  size: PropTypes.oneOf(SIZE),
45
45
  type: PropTypes.oneOf(TYPE_ORDERED_LIST)
46
46
  };
47
- OrderedListComponent.defaultProps = {
48
- size: 'medium',
49
- type: 'decimal'
50
- };
51
47
  const OrderedList = OrderedListComponent;
52
48
  OrderedList.Item = Item;
53
49
 
@@ -25,8 +25,8 @@ import '../../styled/StyledParagraph.js';
25
25
 
26
26
  const UnorderedListComponent = forwardRef((_ref, ref) => {
27
27
  let {
28
- size,
29
- type,
28
+ size = 'medium',
29
+ type = 'disc',
30
30
  ...other
31
31
  } = _ref;
32
32
  const value = useMemo(() => ({
@@ -44,10 +44,6 @@ UnorderedListComponent.propTypes = {
44
44
  size: PropTypes.oneOf(SIZE),
45
45
  type: PropTypes.oneOf(TYPE_UNORDERED_LIST)
46
46
  };
47
- UnorderedListComponent.defaultProps = {
48
- size: 'medium',
49
- type: 'disc'
50
- };
51
47
  const UnorderedList = UnorderedListComponent;
52
48
  UnorderedList.Item = Item;
53
49
 
@@ -27,7 +27,7 @@ const SpanComponent = forwardRef((_ref, ref) => {
27
27
  hue,
28
28
  isBold,
29
29
  isMonospace,
30
- tag,
30
+ tag = 'span',
31
31
  ...other
32
32
  } = _ref;
33
33
  return React.createElement(StyledFont, Object.assign({
@@ -46,9 +46,6 @@ SpanComponent.propTypes = {
46
46
  isMonospace: PropTypes.bool,
47
47
  hue: PropTypes.string
48
48
  };
49
- SpanComponent.defaultProps = {
50
- tag: 'span'
51
- };
52
49
  const Span = SpanComponent;
53
50
  Span.Icon = Icon;
54
51
  Span.StartIcon = StartIcon;
@@ -11,7 +11,7 @@ import { THEME_SIZES } from './StyledFont.js';
11
11
  const COMPONENT_ID = 'typography.blockquote';
12
12
  const StyledBlockquote = styled.blockquote.attrs({
13
13
  'data-garden-id': COMPONENT_ID,
14
- 'data-garden-version': '9.11.1'
14
+ 'data-garden-version': '9.11.2'
15
15
  }).withConfig({
16
16
  displayName: "StyledBlockquote",
17
17
  componentId: "sc-1tt3ye0-0"
@@ -5,7 +5,7 @@
5
5
  * found at http://www.apache.org/licenses/LICENSE-2.0.
6
6
  */
7
7
  import styled, { css } from 'styled-components';
8
- import { componentStyles, DEFAULT_THEME, getColor } from '@zendeskgarden/react-theming';
8
+ import { componentStyles, getColor } from '@zendeskgarden/react-theming';
9
9
  import { StyledFont } from './StyledFont.js';
10
10
 
11
11
  const COMPONENT_ID = 'typography.code';
@@ -48,19 +48,16 @@ const colorStyles = _ref => {
48
48
  const foregroundColor = getColor(fgColorArgs);
49
49
  return css(["background-color:", ";color:", ";a &{color:inherit;}"], backgroundColor, foregroundColor);
50
50
  };
51
- const StyledCode = styled(StyledFont).attrs({
51
+ const StyledCode = styled(StyledFont).attrs(props => ({
52
52
  'data-garden-id': COMPONENT_ID,
53
- 'data-garden-version': '9.11.1',
53
+ 'data-garden-version': '9.11.2',
54
54
  as: 'code',
55
- $isMonospace: true
56
- }).withConfig({
55
+ $isMonospace: true,
56
+ $hue: props.$hue ?? 'grey',
57
+ $size: props.$size ?? 'inherit'
58
+ })).withConfig({
57
59
  displayName: "StyledCode",
58
60
  componentId: "sc-l8yvmf-0"
59
61
  })(["border-radius:", ";padding:1.5px;", ";", ";"], props => props.theme.borderRadii.sm, props => colorStyles(props), componentStyles);
60
- StyledCode.defaultProps = {
61
- theme: DEFAULT_THEME,
62
- $hue: 'grey',
63
- $size: 'inherit'
64
- };
65
62
 
66
63
  export { StyledCode };
@@ -24,7 +24,7 @@ const colorStyles = _ref => {
24
24
  };
25
25
  const StyledCodeBlock = styled.pre.attrs({
26
26
  'data-garden-id': COMPONENT_ID,
27
- 'data-garden-version': '9.11.1'
27
+ 'data-garden-version': '9.11.2'
28
28
  }).withConfig({
29
29
  displayName: "StyledCodeBlock",
30
30
  componentId: "sc-5wky57-0"
@@ -10,7 +10,7 @@ import { focusStyles, componentStyles } from '@zendeskgarden/react-theming';
10
10
  const COMPONENT_ID = 'typography.codeblock_container';
11
11
  const StyledCodeBlockContainer = styled.div.attrs({
12
12
  'data-garden-id': COMPONENT_ID,
13
- 'data-garden-version': '9.11.1'
13
+ 'data-garden-version': '9.11.2'
14
14
  }).withConfig({
15
15
  displayName: "StyledCodeBlockContainer",
16
16
  componentId: "sc-14zgbfw-0"
@@ -86,7 +86,7 @@ const lineNumberStyles = _ref2 => {
86
86
  };
87
87
  const StyledCodeBlockLine = styled(StyledFont).attrs({
88
88
  'data-garden-id': COMPONENT_ID,
89
- 'data-garden-version': '9.11.1',
89
+ 'data-garden-version': '9.11.2',
90
90
  as: 'code',
91
91
  $isMonospace: true
92
92
  }).withConfig({
@@ -171,7 +171,7 @@ const colorStyles = _ref => {
171
171
  };
172
172
  const StyledCodeBlockToken = styled.span.attrs({
173
173
  'data-garden-id': COMPONENT_ID,
174
- 'data-garden-version': '9.11.1'
174
+ 'data-garden-version': '9.11.2'
175
175
  }).withConfig({
176
176
  displayName: "StyledCodeBlockToken",
177
177
  componentId: "sc-1hkshdq-0"
@@ -10,7 +10,7 @@ import { componentStyles } from '@zendeskgarden/react-theming';
10
10
  const COMPONENT_ID = 'typography.ellipsis';
11
11
  const StyledEllipsis = styled.div.attrs({
12
12
  'data-garden-id': COMPONENT_ID,
13
- 'data-garden-version': '9.11.1'
13
+ 'data-garden-version': '9.11.2'
14
14
  }).withConfig({
15
15
  displayName: "StyledEllipsis",
16
16
  componentId: "sc-1u4uqmy-0"
@@ -65,15 +65,13 @@ const fontStyles = _ref => {
65
65
  }
66
66
  return css(["transition:color 0.1s ease-in-out;line-height:", ";color:", ";font-family:", ";font-size:", ";font-weight:", ";direction:", ";"], lineHeight, color, fontFamily, fontSize, fontWeight, direction);
67
67
  };
68
- const StyledFont = styled.div.attrs({
68
+ const StyledFont = styled.div.attrs(props => ({
69
69
  'data-garden-id': COMPONENT_ID,
70
- 'data-garden-version': '9.11.1'
71
- }).withConfig({
70
+ 'data-garden-version': '9.11.2',
71
+ $size: props.$size ?? 'inherit'
72
+ })).withConfig({
72
73
  displayName: "StyledFont",
73
74
  componentId: "sc-1iildbo-0"
74
75
  })(["", ";&[hidden]{display:inline;", ";}", ";"], props => !props.hidden && fontStyles(props), hideVisually(), componentStyles);
75
- StyledFont.defaultProps = {
76
- $size: 'inherit'
77
- };
78
76
 
79
77
  export { StyledFont, THEME_SIZES };
@@ -15,7 +15,7 @@ const sizeStyles = props => {
15
15
  };
16
16
  const StyledIcon = styled(StyledBaseIcon).attrs({
17
17
  'data-garden-id': COMPONENT_ID,
18
- 'data-garden-version': '9.11.1'
18
+ 'data-garden-version': '9.11.2'
19
19
  }).withConfig({
20
20
  displayName: "StyledIcon",
21
21
  componentId: "sc-10rfb5b-0"
@@ -42,7 +42,7 @@ const sizeStyles = _ref => {
42
42
  };
43
43
  const StyledKbd = styled(StyledCode).attrs({
44
44
  'data-garden-id': COMPONENT_ID,
45
- 'data-garden-version': '9.11.1',
45
+ 'data-garden-version': '9.11.2',
46
46
  as: 'kbd'
47
47
  }).withConfig({
48
48
  displayName: "StyledKbd",
@@ -14,7 +14,7 @@ const listStyles = props => {
14
14
  const ORDERED_ID = 'typography.ordered_list';
15
15
  const StyledOrderedList = styled.ol.attrs({
16
16
  'data-garden-id': ORDERED_ID,
17
- 'data-garden-version': '9.11.1'
17
+ 'data-garden-version': '9.11.2'
18
18
  }).withConfig({
19
19
  displayName: "StyledList__StyledOrderedList",
20
20
  componentId: "sc-jdbsfi-0"
@@ -22,7 +22,7 @@ const StyledOrderedList = styled.ol.attrs({
22
22
  const UNORDERED_ID = 'typography.unordered_list';
23
23
  const StyledUnorderedList = styled.ul.attrs({
24
24
  'data-garden-id': UNORDERED_ID,
25
- 'data-garden-version': '9.11.1'
25
+ 'data-garden-version': '9.11.2'
26
26
  }).withConfig({
27
27
  displayName: "StyledList__StyledUnorderedList",
28
28
  componentId: "sc-jdbsfi-1"
@@ -6,7 +6,7 @@
6
6
  */
7
7
  import styled, { css } from 'styled-components';
8
8
  import { math } from 'polished';
9
- import { componentStyles, DEFAULT_THEME, getLineHeight } from '@zendeskgarden/react-theming';
9
+ import { componentStyles, getLineHeight } from '@zendeskgarden/react-theming';
10
10
  import { StyledOrderedList, StyledUnorderedList } from './StyledList.js';
11
11
  import { StyledFont } from './StyledFont.js';
12
12
 
@@ -19,30 +19,24 @@ const listItemStyles = props => {
19
19
  return css(["line-height:", ";", ";"], getLineHeight(props.theme.lineHeights.md, props.theme.fontSizes.md), props.$space !== 'small' && listItemPaddingStyles(props));
20
20
  };
21
21
  const ORDERED_ID = 'typography.ordered_list_item';
22
- const StyledOrderedListItem = styled(StyledFont).attrs({
22
+ const StyledOrderedListItem = styled(StyledFont).attrs(props => ({
23
23
  'data-garden-id': ORDERED_ID,
24
- 'data-garden-version': '9.11.1',
25
- as: 'li'
26
- }).withConfig({
24
+ 'data-garden-version': '9.11.2',
25
+ as: 'li',
26
+ $space: props.$space ?? 'medium'
27
+ })).withConfig({
27
28
  displayName: "StyledListItem__StyledOrderedListItem",
28
29
  componentId: "sc-9rsipg-0"
29
30
  })(["margin-", ":", ";padding-", ":", ";", ";", ";"], props => props.theme.rtl ? 'right' : 'left', props => math(`${props.theme.space.base} * -1px`), props => props.theme.rtl ? 'right' : 'left', props => math(`${props.theme.space.base} * 1px`), listItemStyles, componentStyles);
30
- StyledOrderedListItem.defaultProps = {
31
- $space: 'medium',
32
- theme: DEFAULT_THEME
33
- };
34
31
  const UNORDERED_ID = 'typography.unordered_list_item';
35
- const StyledUnorderedListItem = styled(StyledFont).attrs({
32
+ const StyledUnorderedListItem = styled(StyledFont).attrs(props => ({
36
33
  'data-garden-id': UNORDERED_ID,
37
- 'data-garden-version': '9.11.1',
38
- as: 'li'
39
- }).withConfig({
34
+ 'data-garden-version': '9.11.2',
35
+ as: 'li',
36
+ $space: props.$space ?? 'medium'
37
+ })).withConfig({
40
38
  displayName: "StyledListItem__StyledUnorderedListItem",
41
39
  componentId: "sc-9rsipg-1"
42
40
  })(["", ";", ";"], listItemStyles, componentStyles);
43
- StyledUnorderedListItem.defaultProps = {
44
- $space: 'medium',
45
- theme: DEFAULT_THEME
46
- };
47
41
 
48
42
  export { StyledOrderedListItem, StyledUnorderedListItem };
@@ -11,7 +11,7 @@ import { THEME_SIZES } from './StyledFont.js';
11
11
  const COMPONENT_ID = 'typography.paragraph';
12
12
  const StyledParagraph = styled.p.attrs({
13
13
  'data-garden-id': COMPONENT_ID,
14
- 'data-garden-version': '9.11.1'
14
+ 'data-garden-version': '9.11.2'
15
15
  }).withConfig({
16
16
  displayName: "StyledParagraph",
17
17
  componentId: "sc-zkuftz-0"
package/dist/index.cjs.js CHANGED
@@ -84,21 +84,19 @@ const fontStyles = _ref => {
84
84
  }
85
85
  return styled.css(["transition:color 0.1s ease-in-out;line-height:", ";color:", ";font-family:", ";font-size:", ";font-weight:", ";direction:", ";"], lineHeight, color, fontFamily, fontSize, fontWeight, direction);
86
86
  };
87
- const StyledFont = styled__default.default.div.attrs({
87
+ const StyledFont = styled__default.default.div.attrs(props => ({
88
88
  'data-garden-id': COMPONENT_ID$a,
89
- 'data-garden-version': '9.11.1'
90
- }).withConfig({
89
+ 'data-garden-version': '9.11.2',
90
+ $size: props.$size ?? 'inherit'
91
+ })).withConfig({
91
92
  displayName: "StyledFont",
92
93
  componentId: "sc-1iildbo-0"
93
94
  })(["", ";&[hidden]{display:inline;", ";}", ";"], props => !props.hidden && fontStyles(props), polished.hideVisually(), reactTheming.componentStyles);
94
- StyledFont.defaultProps = {
95
- $size: 'inherit'
96
- };
97
95
 
98
96
  const COMPONENT_ID$9 = 'typography.blockquote';
99
97
  const StyledBlockquote = styled__default.default.blockquote.attrs({
100
98
  'data-garden-id': COMPONENT_ID$9,
101
- 'data-garden-version': '9.11.1'
99
+ 'data-garden-version': '9.11.2'
102
100
  }).withConfig({
103
101
  displayName: "StyledBlockquote",
104
102
  componentId: "sc-1tt3ye0-0"
@@ -147,20 +145,17 @@ const colorStyles$3 = _ref => {
147
145
  const foregroundColor = reactTheming.getColor(fgColorArgs);
148
146
  return styled.css(["background-color:", ";color:", ";a &{color:inherit;}"], backgroundColor, foregroundColor);
149
147
  };
150
- const StyledCode = styled__default.default(StyledFont).attrs({
148
+ const StyledCode = styled__default.default(StyledFont).attrs(props => ({
151
149
  'data-garden-id': COMPONENT_ID$8,
152
- 'data-garden-version': '9.11.1',
150
+ 'data-garden-version': '9.11.2',
153
151
  as: 'code',
154
- $isMonospace: true
155
- }).withConfig({
152
+ $isMonospace: true,
153
+ $hue: props.$hue ?? 'grey',
154
+ $size: props.$size ?? 'inherit'
155
+ })).withConfig({
156
156
  displayName: "StyledCode",
157
157
  componentId: "sc-l8yvmf-0"
158
158
  })(["border-radius:", ";padding:1.5px;", ";", ";"], props => props.theme.borderRadii.sm, props => colorStyles$3(props), reactTheming.componentStyles);
159
- StyledCode.defaultProps = {
160
- theme: reactTheming.DEFAULT_THEME,
161
- $hue: 'grey',
162
- $size: 'inherit'
163
- };
164
159
 
165
160
  const COMPONENT_ID$7 = 'typography.codeblock';
166
161
  const colorStyles$2 = _ref => {
@@ -179,7 +174,7 @@ const colorStyles$2 = _ref => {
179
174
  };
180
175
  const StyledCodeBlock = styled__default.default.pre.attrs({
181
176
  'data-garden-id': COMPONENT_ID$7,
182
- 'data-garden-version': '9.11.1'
177
+ 'data-garden-version': '9.11.2'
183
178
  }).withConfig({
184
179
  displayName: "StyledCodeBlock",
185
180
  componentId: "sc-5wky57-0"
@@ -188,7 +183,7 @@ const StyledCodeBlock = styled__default.default.pre.attrs({
188
183
  const COMPONENT_ID$6 = 'typography.codeblock_container';
189
184
  const StyledCodeBlockContainer = styled__default.default.div.attrs({
190
185
  'data-garden-id': COMPONENT_ID$6,
191
- 'data-garden-version': '9.11.1'
186
+ 'data-garden-version': '9.11.2'
192
187
  }).withConfig({
193
188
  displayName: "StyledCodeBlockContainer",
194
189
  componentId: "sc-14zgbfw-0"
@@ -274,7 +269,7 @@ const lineNumberStyles = _ref2 => {
274
269
  };
275
270
  const StyledCodeBlockLine = styled__default.default(StyledFont).attrs({
276
271
  'data-garden-id': COMPONENT_ID$5,
277
- 'data-garden-version': '9.11.1',
272
+ 'data-garden-version': '9.11.2',
278
273
  as: 'code',
279
274
  $isMonospace: true
280
275
  }).withConfig({
@@ -445,7 +440,7 @@ const colorStyles = _ref => {
445
440
  };
446
441
  const StyledCodeBlockToken = styled__default.default.span.attrs({
447
442
  'data-garden-id': COMPONENT_ID$4,
448
- 'data-garden-version': '9.11.1'
443
+ 'data-garden-version': '9.11.2'
449
444
  }).withConfig({
450
445
  displayName: "StyledCodeBlockToken",
451
446
  componentId: "sc-1hkshdq-0"
@@ -454,7 +449,7 @@ const StyledCodeBlockToken = styled__default.default.span.attrs({
454
449
  const COMPONENT_ID$3 = 'typography.ellipsis';
455
450
  const StyledEllipsis = styled__default.default.div.attrs({
456
451
  'data-garden-id': COMPONENT_ID$3,
457
- 'data-garden-version': '9.11.1'
452
+ 'data-garden-version': '9.11.2'
458
453
  }).withConfig({
459
454
  displayName: "StyledEllipsis",
460
455
  componentId: "sc-1u4uqmy-0"
@@ -468,7 +463,7 @@ const sizeStyles$1 = props => {
468
463
  };
469
464
  const StyledIcon = styled__default.default(reactTheming.StyledBaseIcon).attrs({
470
465
  'data-garden-id': COMPONENT_ID$2,
471
- 'data-garden-version': '9.11.1'
466
+ 'data-garden-version': '9.11.2'
472
467
  }).withConfig({
473
468
  displayName: "StyledIcon",
474
469
  componentId: "sc-10rfb5b-0"
@@ -507,7 +502,7 @@ const sizeStyles = _ref => {
507
502
  };
508
503
  const StyledKbd = styled__default.default(StyledCode).attrs({
509
504
  'data-garden-id': COMPONENT_ID$1,
510
- 'data-garden-version': '9.11.1',
505
+ 'data-garden-version': '9.11.2',
511
506
  as: 'kbd'
512
507
  }).withConfig({
513
508
  displayName: "StyledKbd",
@@ -521,7 +516,7 @@ const listStyles = props => {
521
516
  const ORDERED_ID$1 = 'typography.ordered_list';
522
517
  const StyledOrderedList = styled__default.default.ol.attrs({
523
518
  'data-garden-id': ORDERED_ID$1,
524
- 'data-garden-version': '9.11.1'
519
+ 'data-garden-version': '9.11.2'
525
520
  }).withConfig({
526
521
  displayName: "StyledList__StyledOrderedList",
527
522
  componentId: "sc-jdbsfi-0"
@@ -529,7 +524,7 @@ const StyledOrderedList = styled__default.default.ol.attrs({
529
524
  const UNORDERED_ID$1 = 'typography.unordered_list';
530
525
  const StyledUnorderedList = styled__default.default.ul.attrs({
531
526
  'data-garden-id': UNORDERED_ID$1,
532
- 'data-garden-version': '9.11.1'
527
+ 'data-garden-version': '9.11.2'
533
528
  }).withConfig({
534
529
  displayName: "StyledList__StyledUnorderedList",
535
530
  componentId: "sc-jdbsfi-1"
@@ -544,36 +539,30 @@ const listItemStyles = props => {
544
539
  return styled.css(["line-height:", ";", ";"], reactTheming.getLineHeight(props.theme.lineHeights.md, props.theme.fontSizes.md), props.$space !== 'small' && listItemPaddingStyles(props));
545
540
  };
546
541
  const ORDERED_ID = 'typography.ordered_list_item';
547
- const StyledOrderedListItem = styled__default.default(StyledFont).attrs({
542
+ const StyledOrderedListItem = styled__default.default(StyledFont).attrs(props => ({
548
543
  'data-garden-id': ORDERED_ID,
549
- 'data-garden-version': '9.11.1',
550
- as: 'li'
551
- }).withConfig({
544
+ 'data-garden-version': '9.11.2',
545
+ as: 'li',
546
+ $space: props.$space ?? 'medium'
547
+ })).withConfig({
552
548
  displayName: "StyledListItem__StyledOrderedListItem",
553
549
  componentId: "sc-9rsipg-0"
554
550
  })(["margin-", ":", ";padding-", ":", ";", ";", ";"], props => props.theme.rtl ? 'right' : 'left', props => polished.math(`${props.theme.space.base} * -1px`), props => props.theme.rtl ? 'right' : 'left', props => polished.math(`${props.theme.space.base} * 1px`), listItemStyles, reactTheming.componentStyles);
555
- StyledOrderedListItem.defaultProps = {
556
- $space: 'medium',
557
- theme: reactTheming.DEFAULT_THEME
558
- };
559
551
  const UNORDERED_ID = 'typography.unordered_list_item';
560
- const StyledUnorderedListItem = styled__default.default(StyledFont).attrs({
552
+ const StyledUnorderedListItem = styled__default.default(StyledFont).attrs(props => ({
561
553
  'data-garden-id': UNORDERED_ID,
562
- 'data-garden-version': '9.11.1',
563
- as: 'li'
564
- }).withConfig({
554
+ 'data-garden-version': '9.11.2',
555
+ as: 'li',
556
+ $space: props.$space ?? 'medium'
557
+ })).withConfig({
565
558
  displayName: "StyledListItem__StyledUnorderedListItem",
566
559
  componentId: "sc-9rsipg-1"
567
560
  })(["", ";", ";"], listItemStyles, reactTheming.componentStyles);
568
- StyledUnorderedListItem.defaultProps = {
569
- $space: 'medium',
570
- theme: reactTheming.DEFAULT_THEME
571
- };
572
561
 
573
562
  const COMPONENT_ID = 'typography.paragraph';
574
563
  const StyledParagraph = styled__default.default.p.attrs({
575
564
  'data-garden-id': COMPONENT_ID,
576
- 'data-garden-version': '9.11.1'
565
+ 'data-garden-version': '9.11.2'
577
566
  }).withConfig({
578
567
  displayName: "StyledParagraph",
579
568
  componentId: "sc-zkuftz-0"
@@ -583,7 +572,7 @@ const SM = React.forwardRef((_ref, ref) => {
583
572
  let {
584
573
  isBold,
585
574
  isMonospace,
586
- tag,
575
+ tag = 'div',
587
576
  ...other
588
577
  } = _ref;
589
578
  return React__default.default.createElement(StyledFont, Object.assign({
@@ -600,15 +589,12 @@ SM.propTypes = {
600
589
  isBold: PropTypes__default.default.bool,
601
590
  isMonospace: PropTypes__default.default.bool
602
591
  };
603
- SM.defaultProps = {
604
- tag: 'div'
605
- };
606
592
 
607
593
  const MD = React.forwardRef((_ref, ref) => {
608
594
  let {
609
595
  isBold,
610
596
  isMonospace,
611
- tag,
597
+ tag = 'div',
612
598
  ...other
613
599
  } = _ref;
614
600
  return React__default.default.createElement(StyledFont, Object.assign({
@@ -625,15 +611,12 @@ MD.propTypes = {
625
611
  isBold: PropTypes__default.default.bool,
626
612
  isMonospace: PropTypes__default.default.bool
627
613
  };
628
- MD.defaultProps = {
629
- tag: 'div'
630
- };
631
614
 
632
615
  const LG = React.forwardRef((_ref, ref) => {
633
616
  let {
634
617
  isBold,
635
618
  isMonospace,
636
- tag,
619
+ tag = 'div',
637
620
  ...other
638
621
  } = _ref;
639
622
  return React__default.default.createElement(StyledFont, Object.assign({
@@ -650,14 +633,11 @@ LG.propTypes = {
650
633
  isBold: PropTypes__default.default.bool,
651
634
  isMonospace: PropTypes__default.default.bool
652
635
  };
653
- LG.defaultProps = {
654
- tag: 'div'
655
- };
656
636
 
657
637
  const XL = React.forwardRef((_ref, ref) => {
658
638
  let {
659
639
  isBold,
660
- tag,
640
+ tag = 'div',
661
641
  ...other
662
642
  } = _ref;
663
643
  return React__default.default.createElement(StyledFont, Object.assign({
@@ -672,14 +652,11 @@ XL.propTypes = {
672
652
  tag: PropTypes__default.default.any,
673
653
  isBold: PropTypes__default.default.bool
674
654
  };
675
- XL.defaultProps = {
676
- tag: 'div'
677
- };
678
655
 
679
656
  const XXL = React.forwardRef((_ref, ref) => {
680
657
  let {
681
658
  isBold,
682
- tag,
659
+ tag = 'div',
683
660
  ...other
684
661
  } = _ref;
685
662
  return React__default.default.createElement(StyledFont, Object.assign({
@@ -694,14 +671,11 @@ XXL.propTypes = {
694
671
  tag: PropTypes__default.default.any,
695
672
  isBold: PropTypes__default.default.bool
696
673
  };
697
- XXL.defaultProps = {
698
- tag: 'div'
699
- };
700
674
 
701
675
  const XXXL = React.forwardRef((_ref, ref) => {
702
676
  let {
703
677
  isBold,
704
- tag,
678
+ tag = 'div',
705
679
  ...other
706
680
  } = _ref;
707
681
  return React__default.default.createElement(StyledFont, Object.assign({
@@ -717,25 +691,26 @@ XXXL.propTypes = {
717
691
  tag: PropTypes__default.default.any,
718
692
  isBold: PropTypes__default.default.bool
719
693
  };
720
- XXXL.defaultProps = {
721
- tag: 'div'
722
- };
723
694
 
724
- const Blockquote = React.forwardRef((props, ref) => React__default.default.createElement(StyledBlockquote, Object.assign({
725
- ref: ref
726
- }, props)));
695
+ const Blockquote = React.forwardRef((_ref, ref) => {
696
+ let {
697
+ size = 'medium',
698
+ ...props
699
+ } = _ref;
700
+ return React__default.default.createElement(StyledBlockquote, Object.assign({
701
+ ref: ref,
702
+ size: size
703
+ }, props));
704
+ });
727
705
  Blockquote.displayName = 'Blockquote';
728
706
  Blockquote.propTypes = {
729
707
  size: PropTypes__default.default.oneOf(SIZE)
730
708
  };
731
- Blockquote.defaultProps = {
732
- size: 'medium'
733
- };
734
709
 
735
710
  const Code = React.forwardRef((_ref, ref) => {
736
711
  let {
737
- hue,
738
- size,
712
+ hue = 'grey',
713
+ size = 'inherit',
739
714
  ...other
740
715
  } = _ref;
741
716
  return React__default.default.createElement(StyledCode, Object.assign({
@@ -749,10 +724,6 @@ Code.propTypes = {
749
724
  hue: PropTypes__default.default.oneOf(HUE),
750
725
  size: PropTypes__default.default.oneOf(INHERIT_SIZE)
751
726
  };
752
- Code.defaultProps = {
753
- hue: 'grey',
754
- size: 'inherit'
755
- };
756
727
 
757
728
  const CodeBlock = React__default.default.forwardRef((_ref, ref) => {
758
729
  let {
@@ -840,7 +811,7 @@ const Ellipsis = React.forwardRef((_ref, ref) => {
840
811
  let {
841
812
  children,
842
813
  title,
843
- tag,
814
+ tag = 'div',
844
815
  ...other
845
816
  } = _ref;
846
817
  let textContent = undefined;
@@ -860,9 +831,6 @@ Ellipsis.propTypes = {
860
831
  title: PropTypes__default.default.string,
861
832
  tag: PropTypes__default.default.any
862
833
  };
863
- Ellipsis.defaultProps = {
864
- tag: 'div'
865
- };
866
834
 
867
835
  const Kbd = React.forwardRef((_ref, ref) => {
868
836
  let {
@@ -880,16 +848,20 @@ Kbd.propTypes = {
880
848
  size: PropTypes__default.default.oneOf(INHERIT_SIZE)
881
849
  };
882
850
 
883
- const Paragraph = React.forwardRef((props, ref) => React__default.default.createElement(StyledParagraph, Object.assign({
884
- ref: ref
885
- }, props)));
851
+ const Paragraph = React.forwardRef((_ref, ref) => {
852
+ let {
853
+ size = 'medium',
854
+ ...props
855
+ } = _ref;
856
+ return React__default.default.createElement(StyledParagraph, Object.assign({
857
+ ref: ref,
858
+ size: size
859
+ }, props));
860
+ });
886
861
  Paragraph.displayName = 'Paragraph';
887
862
  Paragraph.propTypes = {
888
863
  size: PropTypes__default.default.oneOf(SIZE)
889
864
  };
890
- Paragraph.defaultProps = {
891
- size: 'medium'
892
- };
893
865
 
894
866
  const OrderedListContext = React.createContext(undefined);
895
867
  const useOrderedListContext = () => {
@@ -914,8 +886,8 @@ const Item$1 = OrderedListItem;
914
886
 
915
887
  const OrderedListComponent = React__default.default.forwardRef((_ref, ref) => {
916
888
  let {
917
- size,
918
- type,
889
+ size = 'medium',
890
+ type = 'decimal',
919
891
  ...other
920
892
  } = _ref;
921
893
  const value = React.useMemo(() => ({
@@ -933,10 +905,6 @@ OrderedListComponent.propTypes = {
933
905
  size: PropTypes__default.default.oneOf(SIZE),
934
906
  type: PropTypes__default.default.oneOf(TYPE_ORDERED_LIST)
935
907
  };
936
- OrderedListComponent.defaultProps = {
937
- size: 'medium',
938
- type: 'decimal'
939
- };
940
908
  const OrderedList = OrderedListComponent;
941
909
  OrderedList.Item = Item$1;
942
910
 
@@ -963,8 +931,8 @@ const Item = UnorderedListItem;
963
931
 
964
932
  const UnorderedListComponent = React.forwardRef((_ref, ref) => {
965
933
  let {
966
- size,
967
- type,
934
+ size = 'medium',
935
+ type = 'disc',
968
936
  ...other
969
937
  } = _ref;
970
938
  const value = React.useMemo(() => ({
@@ -982,10 +950,6 @@ UnorderedListComponent.propTypes = {
982
950
  size: PropTypes__default.default.oneOf(SIZE),
983
951
  type: PropTypes__default.default.oneOf(TYPE_UNORDERED_LIST)
984
952
  };
985
- UnorderedListComponent.defaultProps = {
986
- size: 'medium',
987
- type: 'disc'
988
- };
989
953
  const UnorderedList = UnorderedListComponent;
990
954
  UnorderedList.Item = Item;
991
955
 
@@ -1004,7 +968,7 @@ const SpanComponent = React.forwardRef((_ref, ref) => {
1004
968
  hue,
1005
969
  isBold,
1006
970
  isMonospace,
1007
- tag,
971
+ tag = 'span',
1008
972
  ...other
1009
973
  } = _ref;
1010
974
  return React__default.default.createElement(StyledFont, Object.assign({
@@ -1023,9 +987,6 @@ SpanComponent.propTypes = {
1023
987
  isMonospace: PropTypes__default.default.bool,
1024
988
  hue: PropTypes__default.default.string
1025
989
  };
1026
- SpanComponent.defaultProps = {
1027
- tag: 'span'
1028
- };
1029
990
  const Span = SpanComponent;
1030
991
  Span.Icon = Icon;
1031
992
  Span.StartIcon = StartIcon;
@@ -10,9 +10,9 @@ interface IStyledCodeProps extends Omit<IStyledFontProps, 'size'> {
10
10
  $hue?: ICodeProps['hue'];
11
11
  $size?: ICodeProps['size'];
12
12
  }
13
- export declare const StyledCode: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
13
+ export declare const StyledCode: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
14
14
  ref?: ((instance: HTMLElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLElement> | null | undefined;
15
15
  }, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
16
16
  ref?: ((instance: HTMLElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLElement> | null | undefined;
17
- }>, never>, IStyledCodeProps>> & string;
17
+ }>, IStyledCodeProps>, IStyledCodeProps>> & string;
18
18
  export {};
@@ -16,7 +16,7 @@ export interface IStyledFontProps {
16
16
  $size?: (typeof FONT_SIZE)[number];
17
17
  $hue?: string;
18
18
  }
19
- export declare const StyledFont: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
19
+ export declare const StyledFont: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
20
20
  ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
21
- }>, never>, IStyledFontProps>> & string;
21
+ }>, IStyledFontProps>, IStyledFontProps>> & string;
22
22
  export {};
@@ -8,14 +8,14 @@ import { Size } from '../types';
8
8
  interface IStyledListItemProps {
9
9
  $space?: Size;
10
10
  }
11
- export declare const StyledOrderedListItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
11
+ export declare const StyledOrderedListItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
12
12
  ref?: ((instance: HTMLLIElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLLIElement> | null | undefined;
13
13
  }, Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
14
14
  ref?: ((instance: HTMLLIElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLLIElement> | null | undefined;
15
- }>, never>, IStyledListItemProps>> & string;
16
- export declare const StyledUnorderedListItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
15
+ }>, IStyledListItemProps>, IStyledListItemProps>> & string;
16
+ export declare const StyledUnorderedListItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
17
17
  ref?: ((instance: HTMLLIElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLLIElement> | null | undefined;
18
18
  }, Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
19
19
  ref?: ((instance: HTMLLIElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLLIElement> | null | undefined;
20
- }>, never>, IStyledListItemProps>> & string;
20
+ }>, IStyledListItemProps>, IStyledListItemProps>> & string;
21
21
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zendeskgarden/react-typography",
3
- "version": "9.11.1",
3
+ "version": "9.11.2",
4
4
  "description": "Components relating to typography in the Garden Design System",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Zendesk Garden <garden@zendesk.com>",
@@ -33,7 +33,7 @@
33
33
  "styled-components": "^5.3.1 || ^6.0.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@zendeskgarden/react-theming": "^9.11.1"
36
+ "@zendeskgarden/react-theming": "^9.11.2"
37
37
  },
38
38
  "keywords": [
39
39
  "components",
@@ -45,5 +45,5 @@
45
45
  "access": "public"
46
46
  },
47
47
  "zendeskgarden:src": "src/index.ts",
48
- "gitHead": "c45a8893e0ed1fd9f1cf257b2badf6bbeae90bc0"
48
+ "gitHead": "3adb38d25d0a3fa38ff21c7707950623f22b5db7"
49
49
  }