@contentful/f36-typography 4.0.1 → 4.1.0

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 CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [4.1.0](https://github.com/contentful/forma-36/compare/@contentful/f36-typography@4.0.1...@contentful/f36-typography@4.1.0) (2022-01-31)
7
+
8
+
9
+ ### Features
10
+
11
+ * implement props list redesign [BAU-535] ([#1756](https://github.com/contentful/forma-36/issues/1756)) ([21c57e7](https://github.com/contentful/forma-36/commit/21c57e72008b75990d03af4e7500edc1c7f3d26d))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [4.0.1](https://github.com/contentful/forma-36/compare/@contentful/f36-typography@4.0.0...@contentful/f36-typography@4.0.1) (2022-01-11)
7
18
 
8
19
  **Note:** Version bump only for package @contentful/f36-typography
package/dist/main.js CHANGED
File without changes
package/dist/main.js.map CHANGED
File without changes
package/dist/module.js CHANGED
File without changes
File without changes
package/dist/types.d.ts CHANGED
@@ -56,269 +56,7 @@ type ParagraphInternalProps = CommonProps & MarginProps & {
56
56
  isTruncated?: boolean;
57
57
  };
58
58
  export type ParagraphProps = PropsWithHTMLElement<ParagraphInternalProps, 'p'>;
59
- export const Paragraph: React.ForwardRefExoticComponent<{
60
- hidden?: boolean;
61
- color?: string;
62
- translate?: "no" | "yes";
63
- slot?: string;
64
- title?: string;
65
- id?: string;
66
- lang?: string;
67
- role?: string;
68
- tabIndex?: number;
69
- 'aria-activedescendant'?: string;
70
- 'aria-atomic'?: boolean | "true" | "false";
71
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both";
72
- 'aria-busy'?: boolean | "true" | "false";
73
- 'aria-checked'?: boolean | "true" | "false" | "mixed";
74
- 'aria-colcount'?: number;
75
- 'aria-colindex'?: number;
76
- 'aria-colspan'?: number;
77
- 'aria-controls'?: string;
78
- 'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
79
- 'aria-describedby'?: string;
80
- 'aria-details'?: string;
81
- 'aria-disabled'?: boolean | "true" | "false";
82
- 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
83
- 'aria-errormessage'?: string;
84
- 'aria-expanded'?: boolean | "true" | "false";
85
- 'aria-flowto'?: string;
86
- 'aria-grabbed'?: boolean | "true" | "false";
87
- 'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree";
88
- 'aria-hidden'?: boolean | "true" | "false";
89
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
90
- 'aria-keyshortcuts'?: string;
91
- 'aria-label'?: string;
92
- 'aria-labelledby'?: string;
93
- 'aria-level'?: number;
94
- 'aria-live'?: "off" | "assertive" | "polite";
95
- 'aria-modal'?: boolean | "true" | "false";
96
- 'aria-multiline'?: boolean | "true" | "false";
97
- 'aria-multiselectable'?: boolean | "true" | "false";
98
- 'aria-orientation'?: "horizontal" | "vertical";
99
- 'aria-owns'?: string;
100
- 'aria-placeholder'?: string;
101
- 'aria-posinset'?: number;
102
- 'aria-pressed'?: boolean | "true" | "false" | "mixed";
103
- 'aria-readonly'?: boolean | "true" | "false";
104
- 'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
105
- 'aria-required'?: boolean | "true" | "false";
106
- 'aria-roledescription'?: string;
107
- 'aria-rowcount'?: number;
108
- 'aria-rowindex'?: number;
109
- 'aria-rowspan'?: number;
110
- 'aria-selected'?: boolean | "true" | "false";
111
- 'aria-setsize'?: number;
112
- 'aria-sort'?: "none" | "ascending" | "descending" | "other";
113
- 'aria-valuemax'?: number;
114
- 'aria-valuemin'?: number;
115
- 'aria-valuenow'?: number;
116
- 'aria-valuetext'?: string;
117
- dangerouslySetInnerHTML?: {
118
- __html: string;
119
- };
120
- onCopy?: React.ClipboardEventHandler<HTMLParagraphElement>;
121
- onCopyCapture?: React.ClipboardEventHandler<HTMLParagraphElement>;
122
- onCut?: React.ClipboardEventHandler<HTMLParagraphElement>;
123
- onCutCapture?: React.ClipboardEventHandler<HTMLParagraphElement>;
124
- onPaste?: React.ClipboardEventHandler<HTMLParagraphElement>;
125
- onPasteCapture?: React.ClipboardEventHandler<HTMLParagraphElement>;
126
- onCompositionEnd?: React.CompositionEventHandler<HTMLParagraphElement>;
127
- onCompositionEndCapture?: React.CompositionEventHandler<HTMLParagraphElement>;
128
- onCompositionStart?: React.CompositionEventHandler<HTMLParagraphElement>;
129
- onCompositionStartCapture?: React.CompositionEventHandler<HTMLParagraphElement>;
130
- onCompositionUpdate?: React.CompositionEventHandler<HTMLParagraphElement>;
131
- onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLParagraphElement>;
132
- onFocus?: React.FocusEventHandler<HTMLParagraphElement>;
133
- onFocusCapture?: React.FocusEventHandler<HTMLParagraphElement>;
134
- onBlur?: React.FocusEventHandler<HTMLParagraphElement>;
135
- onBlurCapture?: React.FocusEventHandler<HTMLParagraphElement>;
136
- onChange?: React.FormEventHandler<HTMLParagraphElement>;
137
- onChangeCapture?: React.FormEventHandler<HTMLParagraphElement>;
138
- onBeforeInput?: React.FormEventHandler<HTMLParagraphElement>;
139
- onBeforeInputCapture?: React.FormEventHandler<HTMLParagraphElement>;
140
- onInput?: React.FormEventHandler<HTMLParagraphElement>;
141
- onInputCapture?: React.FormEventHandler<HTMLParagraphElement>;
142
- onReset?: React.FormEventHandler<HTMLParagraphElement>;
143
- onResetCapture?: React.FormEventHandler<HTMLParagraphElement>;
144
- onSubmit?: React.FormEventHandler<HTMLParagraphElement>;
145
- onSubmitCapture?: React.FormEventHandler<HTMLParagraphElement>;
146
- onInvalid?: React.FormEventHandler<HTMLParagraphElement>;
147
- onInvalidCapture?: React.FormEventHandler<HTMLParagraphElement>;
148
- onLoad?: React.ReactEventHandler<HTMLParagraphElement>;
149
- onLoadCapture?: React.ReactEventHandler<HTMLParagraphElement>;
150
- onError?: React.ReactEventHandler<HTMLParagraphElement>;
151
- onErrorCapture?: React.ReactEventHandler<HTMLParagraphElement>;
152
- onKeyDown?: React.KeyboardEventHandler<HTMLParagraphElement>;
153
- onKeyDownCapture?: React.KeyboardEventHandler<HTMLParagraphElement>;
154
- onKeyPress?: React.KeyboardEventHandler<HTMLParagraphElement>;
155
- onKeyPressCapture?: React.KeyboardEventHandler<HTMLParagraphElement>;
156
- onKeyUp?: React.KeyboardEventHandler<HTMLParagraphElement>;
157
- onKeyUpCapture?: React.KeyboardEventHandler<HTMLParagraphElement>;
158
- onAbort?: React.ReactEventHandler<HTMLParagraphElement>;
159
- onAbortCapture?: React.ReactEventHandler<HTMLParagraphElement>;
160
- onCanPlay?: React.ReactEventHandler<HTMLParagraphElement>;
161
- onCanPlayCapture?: React.ReactEventHandler<HTMLParagraphElement>;
162
- onCanPlayThrough?: React.ReactEventHandler<HTMLParagraphElement>;
163
- onCanPlayThroughCapture?: React.ReactEventHandler<HTMLParagraphElement>;
164
- onDurationChange?: React.ReactEventHandler<HTMLParagraphElement>;
165
- onDurationChangeCapture?: React.ReactEventHandler<HTMLParagraphElement>;
166
- onEmptied?: React.ReactEventHandler<HTMLParagraphElement>;
167
- onEmptiedCapture?: React.ReactEventHandler<HTMLParagraphElement>;
168
- onEncrypted?: React.ReactEventHandler<HTMLParagraphElement>;
169
- onEncryptedCapture?: React.ReactEventHandler<HTMLParagraphElement>;
170
- onEnded?: React.ReactEventHandler<HTMLParagraphElement>;
171
- onEndedCapture?: React.ReactEventHandler<HTMLParagraphElement>;
172
- onLoadedData?: React.ReactEventHandler<HTMLParagraphElement>;
173
- onLoadedDataCapture?: React.ReactEventHandler<HTMLParagraphElement>;
174
- onLoadedMetadata?: React.ReactEventHandler<HTMLParagraphElement>;
175
- onLoadedMetadataCapture?: React.ReactEventHandler<HTMLParagraphElement>;
176
- onLoadStart?: React.ReactEventHandler<HTMLParagraphElement>;
177
- onLoadStartCapture?: React.ReactEventHandler<HTMLParagraphElement>;
178
- onPause?: React.ReactEventHandler<HTMLParagraphElement>;
179
- onPauseCapture?: React.ReactEventHandler<HTMLParagraphElement>;
180
- onPlay?: React.ReactEventHandler<HTMLParagraphElement>;
181
- onPlayCapture?: React.ReactEventHandler<HTMLParagraphElement>;
182
- onPlaying?: React.ReactEventHandler<HTMLParagraphElement>;
183
- onPlayingCapture?: React.ReactEventHandler<HTMLParagraphElement>;
184
- onProgress?: React.ReactEventHandler<HTMLParagraphElement>;
185
- onProgressCapture?: React.ReactEventHandler<HTMLParagraphElement>;
186
- onRateChange?: React.ReactEventHandler<HTMLParagraphElement>;
187
- onRateChangeCapture?: React.ReactEventHandler<HTMLParagraphElement>;
188
- onSeeked?: React.ReactEventHandler<HTMLParagraphElement>;
189
- onSeekedCapture?: React.ReactEventHandler<HTMLParagraphElement>;
190
- onSeeking?: React.ReactEventHandler<HTMLParagraphElement>;
191
- onSeekingCapture?: React.ReactEventHandler<HTMLParagraphElement>;
192
- onStalled?: React.ReactEventHandler<HTMLParagraphElement>;
193
- onStalledCapture?: React.ReactEventHandler<HTMLParagraphElement>;
194
- onSuspend?: React.ReactEventHandler<HTMLParagraphElement>;
195
- onSuspendCapture?: React.ReactEventHandler<HTMLParagraphElement>;
196
- onTimeUpdate?: React.ReactEventHandler<HTMLParagraphElement>;
197
- onTimeUpdateCapture?: React.ReactEventHandler<HTMLParagraphElement>;
198
- onVolumeChange?: React.ReactEventHandler<HTMLParagraphElement>;
199
- onVolumeChangeCapture?: React.ReactEventHandler<HTMLParagraphElement>;
200
- onWaiting?: React.ReactEventHandler<HTMLParagraphElement>;
201
- onWaitingCapture?: React.ReactEventHandler<HTMLParagraphElement>;
202
- onAuxClick?: React.MouseEventHandler<HTMLParagraphElement>;
203
- onAuxClickCapture?: React.MouseEventHandler<HTMLParagraphElement>;
204
- onClick?: React.MouseEventHandler<HTMLParagraphElement>;
205
- onClickCapture?: React.MouseEventHandler<HTMLParagraphElement>;
206
- onContextMenu?: React.MouseEventHandler<HTMLParagraphElement>;
207
- onContextMenuCapture?: React.MouseEventHandler<HTMLParagraphElement>;
208
- onDoubleClick?: React.MouseEventHandler<HTMLParagraphElement>;
209
- onDoubleClickCapture?: React.MouseEventHandler<HTMLParagraphElement>;
210
- onDrag?: React.DragEventHandler<HTMLParagraphElement>;
211
- onDragCapture?: React.DragEventHandler<HTMLParagraphElement>;
212
- onDragEnd?: React.DragEventHandler<HTMLParagraphElement>;
213
- onDragEndCapture?: React.DragEventHandler<HTMLParagraphElement>;
214
- onDragEnter?: React.DragEventHandler<HTMLParagraphElement>;
215
- onDragEnterCapture?: React.DragEventHandler<HTMLParagraphElement>;
216
- onDragExit?: React.DragEventHandler<HTMLParagraphElement>;
217
- onDragExitCapture?: React.DragEventHandler<HTMLParagraphElement>;
218
- onDragLeave?: React.DragEventHandler<HTMLParagraphElement>;
219
- onDragLeaveCapture?: React.DragEventHandler<HTMLParagraphElement>;
220
- onDragOver?: React.DragEventHandler<HTMLParagraphElement>;
221
- onDragOverCapture?: React.DragEventHandler<HTMLParagraphElement>;
222
- onDragStart?: React.DragEventHandler<HTMLParagraphElement>;
223
- onDragStartCapture?: React.DragEventHandler<HTMLParagraphElement>;
224
- onDrop?: React.DragEventHandler<HTMLParagraphElement>;
225
- onDropCapture?: React.DragEventHandler<HTMLParagraphElement>;
226
- onMouseDown?: React.MouseEventHandler<HTMLParagraphElement>;
227
- onMouseDownCapture?: React.MouseEventHandler<HTMLParagraphElement>;
228
- onMouseEnter?: React.MouseEventHandler<HTMLParagraphElement>;
229
- onMouseLeave?: React.MouseEventHandler<HTMLParagraphElement>;
230
- onMouseMove?: React.MouseEventHandler<HTMLParagraphElement>;
231
- onMouseMoveCapture?: React.MouseEventHandler<HTMLParagraphElement>;
232
- onMouseOut?: React.MouseEventHandler<HTMLParagraphElement>;
233
- onMouseOutCapture?: React.MouseEventHandler<HTMLParagraphElement>;
234
- onMouseOver?: React.MouseEventHandler<HTMLParagraphElement>;
235
- onMouseOverCapture?: React.MouseEventHandler<HTMLParagraphElement>;
236
- onMouseUp?: React.MouseEventHandler<HTMLParagraphElement>;
237
- onMouseUpCapture?: React.MouseEventHandler<HTMLParagraphElement>;
238
- onSelect?: React.ReactEventHandler<HTMLParagraphElement>;
239
- onSelectCapture?: React.ReactEventHandler<HTMLParagraphElement>;
240
- onTouchCancel?: React.TouchEventHandler<HTMLParagraphElement>;
241
- onTouchCancelCapture?: React.TouchEventHandler<HTMLParagraphElement>;
242
- onTouchEnd?: React.TouchEventHandler<HTMLParagraphElement>;
243
- onTouchEndCapture?: React.TouchEventHandler<HTMLParagraphElement>;
244
- onTouchMove?: React.TouchEventHandler<HTMLParagraphElement>;
245
- onTouchMoveCapture?: React.TouchEventHandler<HTMLParagraphElement>;
246
- onTouchStart?: React.TouchEventHandler<HTMLParagraphElement>;
247
- onTouchStartCapture?: React.TouchEventHandler<HTMLParagraphElement>;
248
- onPointerDown?: React.PointerEventHandler<HTMLParagraphElement>;
249
- onPointerDownCapture?: React.PointerEventHandler<HTMLParagraphElement>;
250
- onPointerMove?: React.PointerEventHandler<HTMLParagraphElement>;
251
- onPointerMoveCapture?: React.PointerEventHandler<HTMLParagraphElement>;
252
- onPointerUp?: React.PointerEventHandler<HTMLParagraphElement>;
253
- onPointerUpCapture?: React.PointerEventHandler<HTMLParagraphElement>;
254
- onPointerCancel?: React.PointerEventHandler<HTMLParagraphElement>;
255
- onPointerCancelCapture?: React.PointerEventHandler<HTMLParagraphElement>;
256
- onPointerEnter?: React.PointerEventHandler<HTMLParagraphElement>;
257
- onPointerEnterCapture?: React.PointerEventHandler<HTMLParagraphElement>;
258
- onPointerLeave?: React.PointerEventHandler<HTMLParagraphElement>;
259
- onPointerLeaveCapture?: React.PointerEventHandler<HTMLParagraphElement>;
260
- onPointerOver?: React.PointerEventHandler<HTMLParagraphElement>;
261
- onPointerOverCapture?: React.PointerEventHandler<HTMLParagraphElement>;
262
- onPointerOut?: React.PointerEventHandler<HTMLParagraphElement>;
263
- onPointerOutCapture?: React.PointerEventHandler<HTMLParagraphElement>;
264
- onGotPointerCapture?: React.PointerEventHandler<HTMLParagraphElement>;
265
- onGotPointerCaptureCapture?: React.PointerEventHandler<HTMLParagraphElement>;
266
- onLostPointerCapture?: React.PointerEventHandler<HTMLParagraphElement>;
267
- onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLParagraphElement>;
268
- onScroll?: React.UIEventHandler<HTMLParagraphElement>;
269
- onScrollCapture?: React.UIEventHandler<HTMLParagraphElement>;
270
- onWheel?: React.WheelEventHandler<HTMLParagraphElement>;
271
- onWheelCapture?: React.WheelEventHandler<HTMLParagraphElement>;
272
- onAnimationStart?: React.AnimationEventHandler<HTMLParagraphElement>;
273
- onAnimationStartCapture?: React.AnimationEventHandler<HTMLParagraphElement>;
274
- onAnimationEnd?: React.AnimationEventHandler<HTMLParagraphElement>;
275
- onAnimationEndCapture?: React.AnimationEventHandler<HTMLParagraphElement>;
276
- onAnimationIteration?: React.AnimationEventHandler<HTMLParagraphElement>;
277
- onAnimationIterationCapture?: React.AnimationEventHandler<HTMLParagraphElement>;
278
- onTransitionEnd?: React.TransitionEventHandler<HTMLParagraphElement>;
279
- onTransitionEndCapture?: React.TransitionEventHandler<HTMLParagraphElement>;
280
- key?: React.Key;
281
- defaultChecked?: boolean;
282
- defaultValue?: string | number | readonly string[];
283
- suppressContentEditableWarning?: boolean;
284
- suppressHydrationWarning?: boolean;
285
- accessKey?: string;
286
- contentEditable?: "inherit" | (boolean | "true" | "false");
287
- contextMenu?: string;
288
- dir?: string;
289
- draggable?: boolean | "true" | "false";
290
- placeholder?: string;
291
- spellCheck?: boolean | "true" | "false";
292
- radioGroup?: string;
293
- about?: string;
294
- datatype?: string;
295
- inlist?: any;
296
- prefix?: string;
297
- property?: string;
298
- resource?: string;
299
- typeof?: string;
300
- vocab?: string;
301
- autoCapitalize?: string;
302
- autoCorrect?: string;
303
- autoSave?: string;
304
- itemProp?: string;
305
- itemScope?: boolean;
306
- itemType?: string;
307
- itemID?: string;
308
- itemRef?: string;
309
- results?: number;
310
- security?: string;
311
- unselectable?: "on" | "off";
312
- inputMode?: "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
313
- is?: string;
314
- className?: string;
315
- testId?: string;
316
- style?: React.CSSProperties;
317
- margin?: import("@contentful/f36-core").Spacing;
318
- marginTop?: import("@contentful/f36-core").Spacing;
319
- marginRight?: import("@contentful/f36-core").Spacing;
320
- marginBottom?: import("@contentful/f36-core").Spacing;
321
- marginLeft?: import("@contentful/f36-core").Spacing;
59
+ export const Paragraph: React.ForwardRefExoticComponent<Omit<Omit<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "key" | keyof React.HTMLAttributes<HTMLParagraphElement>>, never>, "children" | "isTruncated" | keyof CommonProps | keyof MarginProps> & CommonProps & MarginProps & {
322
60
  children: React.ReactNode;
323
61
  isTruncated?: boolean;
324
62
  } & React.RefAttributes<HTMLParagraphElement>>;
@@ -1 +1 @@
1
- {"mappings":"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","sources":["packages/components/typography/src/src/Text/Text.tsx","packages/components/typography/src/src/Text/index.ts","packages/components/typography/src/src/Heading/Heading.tsx","packages/components/typography/src/src/Heading/index.ts","packages/components/typography/src/src/Subheading/Subheading.tsx","packages/components/typography/src/src/Subheading/index.ts","packages/components/typography/src/src/Typography.tsx","packages/components/typography/src/src/DisplayText/DisplayText.tsx","packages/components/typography/src/src/DisplayText/index.ts","packages/components/typography/src/src/SectionHeading/SectionHeading.tsx","packages/components/typography/src/src/SectionHeading/index.ts","packages/components/typography/src/src/Paragraph/Paragraph.tsx","packages/components/typography/src/src/Paragraph/index.ts","packages/components/typography/src/src/index.ts","packages/components/typography/src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,"export { Heading } from './Heading';\nexport type { HeadingProps, HeadingElement } from './Heading';\nexport { Subheading } from './Subheading';\nexport type { SubheadingProps } from './Subheading';\nexport { Typography } from './Typography';\nexport type { TypographyProps } from './Typography';\nexport { DisplayText } from './DisplayText';\nexport type { DisplayTextProps } from './DisplayText';\nexport { SectionHeading } from './SectionHeading';\nexport type { SectionHeadingProps } from './SectionHeading';\nexport { Paragraph } from './Paragraph';\nexport type { ParagraphProps } from './Paragraph';\nexport { Text } from './Text';\nexport type { TextProps } from './Text';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
1
+ {"mappings":"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","sources":["packages/components/typography/src/src/Text/Text.tsx","packages/components/typography/src/src/Text/index.ts","packages/components/typography/src/src/Heading/Heading.tsx","packages/components/typography/src/src/Heading/index.ts","packages/components/typography/src/src/Subheading/Subheading.tsx","packages/components/typography/src/src/Subheading/index.ts","packages/components/typography/src/src/Typography.tsx","packages/components/typography/src/src/DisplayText/DisplayText.tsx","packages/components/typography/src/src/DisplayText/index.ts","packages/components/typography/src/src/SectionHeading/SectionHeading.tsx","packages/components/typography/src/src/SectionHeading/index.ts","packages/components/typography/src/src/Paragraph/Paragraph.tsx","packages/components/typography/src/src/Paragraph/index.ts","packages/components/typography/src/src/index.ts","packages/components/typography/src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,"export { Heading } from './Heading';\nexport type { HeadingProps, HeadingElement } from './Heading';\nexport { Subheading } from './Subheading';\nexport type { SubheadingProps } from './Subheading';\nexport { Typography } from './Typography';\nexport type { TypographyProps } from './Typography';\nexport { DisplayText } from './DisplayText';\nexport type { DisplayTextProps } from './DisplayText';\nexport { SectionHeading } from './SectionHeading';\nexport type { SectionHeadingProps } from './SectionHeading';\nexport { Paragraph } from './Paragraph';\nexport type { ParagraphProps } from './Paragraph';\nexport { Text } from './Text';\nexport type { TextProps } from './Text';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentful/f36-typography",
3
- "version": "4.0.1",
3
+ "version": "4.1.0",
4
4
  "description": "Forma 36: typography React Component",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@babel/runtime": "^7.6.2",
24
- "@contentful/f36-core": "^4.0.1",
24
+ "@contentful/f36-core": "^4.1.0",
25
25
  "@contentful/f36-tokens": "^4.0.0",
26
26
  "emotion": "^10.0.17"
27
27
  },
@@ -31,5 +31,5 @@
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "cee6bd9ae0b1ca2ce23d42873d9344a20fe740d0"
34
+ "gitHead": "2ea3b5b814dbe3fb5e0b1b6adf65aff768e6855e"
35
35
  }