@sproutsocial/seeds-react-narrative-kit 0.2.0 → 0.4.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/.turbo/turbo-build.log +11 -11
- package/CHANGELOG.md +46 -0
- package/dist/ai-container.css +39 -0
- package/dist/esm/index.js +217 -91
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.mts +232 -14
- package/dist/index.d.ts +232 -14
- package/dist/index.js +224 -93
- package/dist/index.js.map +1 -1
- package/dist/metric-highlight.css +17 -27
- package/dist/narrative-data-callout.css +103 -0
- package/dist/narrative-divider.css +27 -0
- package/dist/narrative-headline.css +7 -0
- package/dist/narrative-ordered-list.css +112 -0
- package/dist/narrative-summary.css +126 -0
- package/dist/pull-quote.css +4 -25
- package/package.json +12 -5
- package/src/AIContainer/AIContainer.stories.tsx +54 -0
- package/src/AIContainer/AIContainer.tsx +35 -0
- package/src/AIContainer/AIContainerTypes.ts +14 -0
- package/src/AIContainer/__tests__/AIContainer.test.tsx +61 -0
- package/src/AIContainer/index.ts +2 -0
- package/src/EyebrowToken/EyebrowToken.tsx +1 -5
- package/src/MetricHighlight/MetricHighlight.stories.tsx +37 -14
- package/src/MetricHighlight/MetricHighlight.tsx +19 -99
- package/src/MetricHighlight/MetricHighlightTypes.ts +6 -9
- package/src/MetricHighlight/__tests__/MetricHighlight.test.tsx +13 -48
- package/src/NarrativeDataCallout/NarrativeDataCallout.stories.tsx +71 -0
- package/src/NarrativeDataCallout/NarrativeDataCallout.tsx +50 -0
- package/src/NarrativeDataCallout/NarrativeDataCalloutTypes.ts +18 -0
- package/src/NarrativeDataCallout/__tests__/NarrativeDataCallout.test.tsx +69 -0
- package/src/NarrativeDataCallout/index.ts +2 -0
- package/src/NarrativeDivider/NarrativeDivider.stories.tsx +33 -0
- package/src/NarrativeDivider/NarrativeDivider.tsx +30 -0
- package/src/NarrativeDivider/NarrativeDividerTypes.ts +4 -0
- package/src/NarrativeDivider/__tests__/NarrativeDivider.test.tsx +35 -0
- package/src/NarrativeDivider/index.ts +2 -0
- package/src/NarrativeHeadline/NarrativeHeadline.tsx +21 -12
- package/src/NarrativeHeadline/NarrativeHeadlineRoll.tsx +4 -1
- package/src/NarrativeHeadline/NarrativeHeadlineTypes.ts +9 -0
- package/src/NarrativeHeadline/__tests__/NarrativeHeadline.test.tsx +2 -7
- package/src/NarrativeHeadline/index.ts +1 -0
- package/src/NarrativeOrderedList/NarrativeOrderedList.stories.tsx +69 -0
- package/src/NarrativeOrderedList/NarrativeOrderedList.tsx +74 -0
- package/src/NarrativeOrderedList/NarrativeOrderedListTypes.ts +39 -0
- package/src/NarrativeOrderedList/__tests__/NarrativeOrderedList.test.tsx +89 -0
- package/src/NarrativeOrderedList/index.ts +6 -0
- package/src/NarrativeSummary/NarrativeSummary.stories.tsx +79 -0
- package/src/NarrativeSummary/NarrativeSummary.tsx +98 -0
- package/src/NarrativeSummary/NarrativeSummaryTypes.ts +59 -0
- package/src/NarrativeSummary/__tests__/NarrativeSummary.test.tsx +99 -0
- package/src/NarrativeSummary/index.ts +5 -0
- package/src/Playground/Playground.stories.tsx +174 -36
- package/src/PullQuote/PullQuote.stories.tsx +4 -1
- package/src/PullQuote/PullQuote.tsx +6 -3
- package/src/PullQuote/PullQuoteTypes.ts +1 -2
- package/src/ai-container.css +39 -0
- package/src/index.ts +25 -0
- package/src/metric-highlight.css +17 -27
- package/src/narrative-data-callout.css +103 -0
- package/src/narrative-divider.css +27 -0
- package/src/narrative-headline.css +7 -0
- package/src/narrative-ordered-list.css +112 -0
- package/src/narrative-summary.css +126 -0
- package/src/pull-quote.css +4 -25
package/dist/index.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ declare const NarrativeContainer: React.ForwardRefExoticComponent<TypeNarrativeC
|
|
|
23
23
|
|
|
24
24
|
/** Heading level the headline text renders as. */
|
|
25
25
|
type TypeNarrativeHeadlineLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
26
|
+
/** Visual size of the headline. Independent of the semantic heading level. */
|
|
27
|
+
type TypeNarrativeHeadlineSize = "default" | "small";
|
|
26
28
|
interface TypeNarrativeHeadlineProps extends React.HTMLAttributes<HTMLHeadingElement> {
|
|
27
29
|
/**
|
|
28
30
|
* The headline text. Wrap part of it in `<NarrativeHeadlineHighlight>` for a
|
|
@@ -36,6 +38,12 @@ interface TypeNarrativeHeadlineProps extends React.HTMLAttributes<HTMLHeadingEle
|
|
|
36
38
|
* @default 2
|
|
37
39
|
*/
|
|
38
40
|
headingLevel?: TypeNarrativeHeadlineLevel;
|
|
41
|
+
/**
|
|
42
|
+
* Visual size. `"default"` is the display size (32px / 40px); `"small"` is the
|
|
43
|
+
* compact size (24px / 32px) used inside denser layouts like NarrativeSummary.
|
|
44
|
+
* @default "default"
|
|
45
|
+
*/
|
|
46
|
+
size?: TypeNarrativeHeadlineSize;
|
|
39
47
|
}
|
|
40
48
|
interface TypeNarrativeHeadlineHighlightProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
41
49
|
/** Text painted with the AI gradient. */
|
|
@@ -132,9 +140,10 @@ interface TypePullQuoteProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
132
140
|
* optional attribution row (author name, avatar, network).
|
|
133
141
|
*
|
|
134
142
|
* Rendered as semantic `<figure>` / `<blockquote>` / `<figcaption>` markup.
|
|
135
|
-
* Styled via `pull-quote.css` (Seeds CSS custom
|
|
136
|
-
* the classes through
|
|
137
|
-
* are done with
|
|
143
|
+
* Styled via `pull-quote.css` and `ai-container.css` (Seeds CSS custom
|
|
144
|
+
* properties); consumers import the classes through
|
|
145
|
+
* `@sproutsocial/racine/css/components`. Surface overrides are done with
|
|
146
|
+
* standard `className` / `style`.
|
|
138
147
|
*/
|
|
139
148
|
declare const PullQuote: React.ForwardRefExoticComponent<TypePullQuoteProps & React.RefAttributes<HTMLElement>>;
|
|
140
149
|
|
|
@@ -155,6 +164,23 @@ interface TypeEyebrowTokenProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
|
155
164
|
*/
|
|
156
165
|
declare const EyebrowToken: React.ForwardRefExoticComponent<TypeEyebrowTokenProps & React.RefAttributes<HTMLSpanElement>>;
|
|
157
166
|
|
|
167
|
+
/** NarrativeDivider takes no extra props — just standard <hr> attributes. */
|
|
168
|
+
type TypeNarrativeDividerProps = React.HTMLAttributes<HTMLHRElement>;
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* NarrativeDivider — a full-width, 1px horizontal rule that separates sections
|
|
172
|
+
* within a narrative brief (e.g. a row of metrics from the headline/summary
|
|
173
|
+
* block below it).
|
|
174
|
+
*
|
|
175
|
+
* Renders a semantic <hr> stripped of its user-agent margins and borders, then
|
|
176
|
+
* draws a single 1px line with the container-border-base token (#dee1e1, which
|
|
177
|
+
* also tracks dark mode). Styled via narrative-divider.css (Seeds CSS custom
|
|
178
|
+
* properties); consumers import the classes through
|
|
179
|
+
* @sproutsocial/racine/css/components. Overrides come via standard className /
|
|
180
|
+
* style.
|
|
181
|
+
*/
|
|
182
|
+
declare const NarrativeDivider: React.ForwardRefExoticComponent<TypeNarrativeDividerProps & React.RefAttributes<HTMLHRElement>>;
|
|
183
|
+
|
|
158
184
|
interface TypeMetricHighlightTrend {
|
|
159
185
|
/**
|
|
160
186
|
* Direction of movement. Selects the arrow glyph and the sentiment color of
|
|
@@ -181,16 +207,13 @@ interface TypeMetricHighlightProps extends React.HTMLAttributes<HTMLDivElement>
|
|
|
181
207
|
/** Optional trend badge — a directional arrow plus an optional value. */
|
|
182
208
|
trend?: TypeMetricHighlightTrend;
|
|
183
209
|
/**
|
|
184
|
-
*
|
|
185
|
-
*
|
|
186
|
-
*
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
/**
|
|
190
|
-
* Render the sparkline.
|
|
191
|
-
* @default true
|
|
210
|
+
* Chart slot. When provided, this node renders in the chart area beside/below
|
|
211
|
+
* the metric — e.g. a `<SparklineChart />` from
|
|
212
|
+
* `@sproutsocial/seeds-react-data-viz/sparkline`. Omit it to render the metric
|
|
213
|
+
* on its own. The injected node controls its own look; the slot only sizes and
|
|
214
|
+
* centers it (pass `className="h-full w-full"` to fill).
|
|
192
215
|
*/
|
|
193
|
-
|
|
216
|
+
sparkline?: React.ReactNode;
|
|
194
217
|
/**
|
|
195
218
|
* Layout direction.
|
|
196
219
|
* - `horizontal` — metric block beside the sparkline.
|
|
@@ -216,7 +239,9 @@ interface TypeMetricHighlightProps extends React.HTMLAttributes<HTMLDivElement>
|
|
|
216
239
|
/**
|
|
217
240
|
* MetricHighlight — a narrative primitive that spotlights a single metric: a
|
|
218
241
|
* label, a large monospace value, an optional trend badge (a directional arrow
|
|
219
|
-
* plus an optional number such as "240%"), and an optional
|
|
242
|
+
* plus an optional number such as "240%"), and an optional chart supplied via
|
|
243
|
+
* the `sparkline` slot (e.g. a `<SparklineChart />` from
|
|
244
|
+
* `@sproutsocial/seeds-react-data-viz/sparkline`).
|
|
220
245
|
*
|
|
221
246
|
* Styled via `metric-highlight.css` (Seeds CSS custom properties); consumers
|
|
222
247
|
* import the classes through `@sproutsocial/racine/css/components`. Layout flexes
|
|
@@ -225,6 +250,199 @@ interface TypeMetricHighlightProps extends React.HTMLAttributes<HTMLDivElement>
|
|
|
225
250
|
*/
|
|
226
251
|
declare const MetricHighlight: React.ForwardRefExoticComponent<TypeMetricHighlightProps & React.RefAttributes<HTMLDivElement>>;
|
|
227
252
|
|
|
253
|
+
/**
|
|
254
|
+
* Column arrangement.
|
|
255
|
+
* - `"three-column"`: lead | Summary | Key themes, three side-by-side columns.
|
|
256
|
+
* - `"two-column"`: a 1/3 | 2/3 split — lead on the left, with Summary and Key
|
|
257
|
+
* themes stacked together in the wider right column.
|
|
258
|
+
*/
|
|
259
|
+
type TypeNarrativeSummaryLayout = "three-column" | "two-column";
|
|
260
|
+
interface TypeNarrativeSummaryProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
261
|
+
/**
|
|
262
|
+
* Kicker shown in an `EyebrowToken` above the headline (e.g. a date). Omit to
|
|
263
|
+
* hide the eyebrow entirely.
|
|
264
|
+
*/
|
|
265
|
+
eyebrow?: React.ReactNode;
|
|
266
|
+
/** Headline text — rendered via `NarrativeHeadline` at `size="small"`. */
|
|
267
|
+
headline: React.ReactNode;
|
|
268
|
+
/**
|
|
269
|
+
* Heading element the headline renders as, for document outline /
|
|
270
|
+
* accessibility.
|
|
271
|
+
* @default 2
|
|
272
|
+
*/
|
|
273
|
+
headingLevel?: TypeNarrativeHeadlineLevel;
|
|
274
|
+
/**
|
|
275
|
+
* Optional action, typically a `<Button>`. Rendered below the headline only
|
|
276
|
+
* when provided. Pass a Button without system props so it renders the Tailwind
|
|
277
|
+
* path (e.g. `<Button appearance="primary">Action</Button>`).
|
|
278
|
+
*
|
|
279
|
+
* Note: in the MVP this will most often be left unset (null) — the AC is
|
|
280
|
+
* poorly defined at this time and needs more definition before the data model
|
|
281
|
+
* will properly support it.
|
|
282
|
+
*/
|
|
283
|
+
action?: React.ReactNode;
|
|
284
|
+
/** Summary body content. The section is omitted when this is empty. */
|
|
285
|
+
summary?: React.ReactNode;
|
|
286
|
+
/**
|
|
287
|
+
* Label above the summary.
|
|
288
|
+
* @default "Summary"
|
|
289
|
+
*/
|
|
290
|
+
summaryLabel?: React.ReactNode;
|
|
291
|
+
/**
|
|
292
|
+
* Key themes, rendered as a bulleted list. The section is omitted when this
|
|
293
|
+
* is empty.
|
|
294
|
+
*/
|
|
295
|
+
keyThemes?: string[];
|
|
296
|
+
/**
|
|
297
|
+
* Label above the key themes.
|
|
298
|
+
* @default "Key themes"
|
|
299
|
+
*/
|
|
300
|
+
keyThemesLabel?: React.ReactNode;
|
|
301
|
+
/**
|
|
302
|
+
* Column arrangement. `"two-column"` is a 1/3 | 2/3 split.
|
|
303
|
+
* @default "three-column"
|
|
304
|
+
*/
|
|
305
|
+
layout?: TypeNarrativeSummaryLayout;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
/**
|
|
309
|
+
* NarrativeSummary — a composed narrative block that pairs a lead column
|
|
310
|
+
* (eyebrow + headline + optional action) with a Summary section and a Key
|
|
311
|
+
* themes list.
|
|
312
|
+
*
|
|
313
|
+
* Renders inner content only — it carries no surface, shadow, or accent of its
|
|
314
|
+
* own. Drop it into a `NarrativeContainer` (see the stories / playground).
|
|
315
|
+
*
|
|
316
|
+
* Layout is CSS Grid driven by container queries, so the columns collapse based
|
|
317
|
+
* on the width the component is actually given, not the viewport:
|
|
318
|
+
* - `"three-column"` → lead | Summary | Key themes.
|
|
319
|
+
* - `"two-column"` → a 1/3 | 2/3 split with Summary and Key themes stacked in
|
|
320
|
+
* the wider column.
|
|
321
|
+
*
|
|
322
|
+
* Styled via `narrative-summary.css` (Seeds CSS custom properties); consumers
|
|
323
|
+
* import the classes through `@sproutsocial/racine/css/components`. Overrides
|
|
324
|
+
* come via standard `className` / `style`.
|
|
325
|
+
*/
|
|
326
|
+
declare const NarrativeSummary: React.ForwardRefExoticComponent<TypeNarrativeSummaryProps & React.RefAttributes<HTMLDivElement>>;
|
|
327
|
+
|
|
328
|
+
/**
|
|
329
|
+
* Item arrangement.
|
|
330
|
+
* - `"vertical"`: items stacked full-width, one per row (the default).
|
|
331
|
+
* - `"horizontal"`: items laid out as a row of equal columns that collapses
|
|
332
|
+
* back to a stack when the container is narrow (container query).
|
|
333
|
+
*/
|
|
334
|
+
type TypeNarrativeOrderedListOrientation = "vertical" | "horizontal";
|
|
335
|
+
interface TypeNarrativeOrderedListItem {
|
|
336
|
+
/** Bold action title for the item. A plain string or any React node. */
|
|
337
|
+
title: React.ReactNode;
|
|
338
|
+
/**
|
|
339
|
+
* Descriptive text below the title. A plain string or any React node. The
|
|
340
|
+
* paragraph is omitted when this is empty.
|
|
341
|
+
*/
|
|
342
|
+
description?: React.ReactNode;
|
|
343
|
+
/**
|
|
344
|
+
* Optional call-to-action rendered below the description, only when provided.
|
|
345
|
+
* Typically a Seeds `<Button>` in an AI appearance (e.g.
|
|
346
|
+
* `appearance="ai-secondary"`). Pass it without system props so it renders the
|
|
347
|
+
* Tailwind path — same as NarrativeSummary's `action` slot.
|
|
348
|
+
*/
|
|
349
|
+
action?: React.ReactNode;
|
|
350
|
+
}
|
|
351
|
+
interface TypeNarrativeOrderedListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
352
|
+
/** The ordered items. Numbered automatically (01, 02, …) in order. */
|
|
353
|
+
items: TypeNarrativeOrderedListItem[];
|
|
354
|
+
/**
|
|
355
|
+
* Item arrangement. `"horizontal"` lays items in a row of equal columns that
|
|
356
|
+
* collapses to a stack when the container is narrow; `"vertical"` is always
|
|
357
|
+
* stacked.
|
|
358
|
+
* @default "vertical"
|
|
359
|
+
*/
|
|
360
|
+
orientation?: TypeNarrativeOrderedListOrientation;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* NarrativeOrderedList — a numbered list of action items. Each item pairs a
|
|
365
|
+
* large ordinal (01, 02, …) with a title, an optional description, and an
|
|
366
|
+
* optional call-to-action slot.
|
|
367
|
+
*
|
|
368
|
+
* Renders inner content only — it carries no surface, shadow, or accent of its
|
|
369
|
+
* own. Drop it into a `NarrativeContainer` (see the stories / playground).
|
|
370
|
+
*
|
|
371
|
+
* Layout is driven by container queries, so it responds to the width the
|
|
372
|
+
* component is actually given, not the viewport:
|
|
373
|
+
* - `"vertical"` (default) → items stacked full-width, one per row.
|
|
374
|
+
* - `"horizontal"` → items laid out as a row of equal columns once there is
|
|
375
|
+
* room, collapsing back to a stack when the container is narrow.
|
|
376
|
+
*
|
|
377
|
+
* Styled via `narrative-ordered-list.css` (Seeds CSS custom properties);
|
|
378
|
+
* consumers import the classes through `@sproutsocial/racine/css/components`.
|
|
379
|
+
* Overrides come via standard `className` / `style`.
|
|
380
|
+
*/
|
|
381
|
+
declare const NarrativeOrderedList: React.ForwardRefExoticComponent<TypeNarrativeOrderedListProps & React.RefAttributes<HTMLDivElement>>;
|
|
382
|
+
|
|
383
|
+
interface TypeNarrativeDataCalloutProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
384
|
+
/**
|
|
385
|
+
* Data-viz component rendered in the left slot (occupies ~1/3 of the width).
|
|
386
|
+
* The kit ships no chart of its own — drop in any data-viz node, e.g. a v2
|
|
387
|
+
* `DonutChart` from `@sproutsocial/seeds-react-data-viz`.
|
|
388
|
+
*/
|
|
389
|
+
visual: React.ReactNode;
|
|
390
|
+
/** Body copy / description occupying the right two-thirds. */
|
|
391
|
+
children: React.ReactNode;
|
|
392
|
+
/**
|
|
393
|
+
* Accessible label for the visual slot region. Omit when the injected visual
|
|
394
|
+
* already carries its own description/label.
|
|
395
|
+
*/
|
|
396
|
+
visualLabel?: string;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
/**
|
|
400
|
+
* NarrativeDataCallout — a horizontally oriented callout that pairs an injected
|
|
401
|
+
* data-viz visual (left, ~1/3 width) with a block of body copy (right, ~2/3).
|
|
402
|
+
*
|
|
403
|
+
* The kit ships no chart of its own; the `visual` slot accepts any node — the
|
|
404
|
+
* stories drop in a v2 `DonutChart` from `@sproutsocial/seeds-react-data-viz`.
|
|
405
|
+
* narrative-kit takes no runtime dependency on data-viz (mirrors MetricHighlight's
|
|
406
|
+
* `sparkline` slot).
|
|
407
|
+
*
|
|
408
|
+
* Renders inner content only — it carries no surface, shadow, or accent of its
|
|
409
|
+
* own. Drop it into a `NarrativeContainer` (see the stories) to reproduce the
|
|
410
|
+
* card look.
|
|
411
|
+
*
|
|
412
|
+
* Layout is a flex row driven by a container query, so it collapses to a stacked
|
|
413
|
+
* column (visual on top, text below) based on the width the component is actually
|
|
414
|
+
* given, not the viewport.
|
|
415
|
+
*
|
|
416
|
+
* Styled via `narrative-data-callout.css` (Seeds CSS custom properties); consumers
|
|
417
|
+
* import the classes through `@sproutsocial/racine/css/components`. Overrides come
|
|
418
|
+
* via standard `className` / `style`.
|
|
419
|
+
*/
|
|
420
|
+
declare const NarrativeDataCallout: React.ForwardRefExoticComponent<TypeNarrativeDataCalloutProps & React.RefAttributes<HTMLDivElement>>;
|
|
421
|
+
|
|
422
|
+
interface TypeAIContainerProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
423
|
+
/** Content rendered inside the container. */
|
|
424
|
+
children?: React.ReactNode;
|
|
425
|
+
/**
|
|
426
|
+
* Visual treatment of the AI gradient surface.
|
|
427
|
+
* - `subtle` — a light 20% gradient tint over the base surface with dark text.
|
|
428
|
+
* - `vivid` — the full-saturation AI gradient with white text (always white).
|
|
429
|
+
* @default "subtle"
|
|
430
|
+
*/
|
|
431
|
+
appearance?: "subtle" | "vivid";
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* AIContainer — a rounded surface primitive with the AI gradient background.
|
|
436
|
+
* Provides the outer shell (border-radius, shadow, overflow, gradient) without
|
|
437
|
+
* any padding. Used by PullQuote and available as a standalone container.
|
|
438
|
+
*
|
|
439
|
+
* - `subtle` — a light 20% gradient tint over the base surface with adaptive text color.
|
|
440
|
+
* - `vivid` — the full-saturation AI gradient with white text (always white).
|
|
441
|
+
*
|
|
442
|
+
* Styled via `ai-container.css` (Seeds CSS custom properties).
|
|
443
|
+
*/
|
|
444
|
+
declare const AIContainer: React.ForwardRefExoticComponent<TypeAIContainerProps & React.RefAttributes<HTMLDivElement>>;
|
|
445
|
+
|
|
228
446
|
/**
|
|
229
447
|
* Shared types for narrative primitives.
|
|
230
448
|
*
|
|
@@ -237,4 +455,4 @@ declare const MetricHighlight: React.ForwardRefExoticComponent<TypeMetricHighlig
|
|
|
237
455
|
*/
|
|
238
456
|
type TypeNarrativeTone = "neutral" | "positive" | "negative" | "opportunity";
|
|
239
457
|
|
|
240
|
-
export { EyebrowToken, MetricHighlight, NarrativeContainer, NarrativeHeadline, NarrativeHeadlineHighlight, NarrativeHeadlineRoll, PullQuote, type TypeEyebrowTokenProps, type TypeMetricHighlightProps, type TypeMetricHighlightTrend, type TypeNarrativeContainerProps, type TypeNarrativeHeadlineHighlightProps, type TypeNarrativeHeadlineLevel, type TypeNarrativeHeadlineProps, type TypeNarrativeHeadlineRollProps, type TypeNarrativeTone, type TypePullQuoteProps };
|
|
458
|
+
export { AIContainer, EyebrowToken, MetricHighlight, NarrativeContainer, NarrativeDataCallout, NarrativeDivider, NarrativeHeadline, NarrativeHeadlineHighlight, NarrativeHeadlineRoll, NarrativeOrderedList, NarrativeSummary, PullQuote, type TypeAIContainerProps, type TypeEyebrowTokenProps, type TypeMetricHighlightProps, type TypeMetricHighlightTrend, type TypeNarrativeContainerProps, type TypeNarrativeDataCalloutProps, type TypeNarrativeDividerProps, type TypeNarrativeHeadlineHighlightProps, type TypeNarrativeHeadlineLevel, type TypeNarrativeHeadlineProps, type TypeNarrativeHeadlineRollProps, type TypeNarrativeOrderedListItem, type TypeNarrativeOrderedListOrientation, type TypeNarrativeOrderedListProps, type TypeNarrativeSummaryLayout, type TypeNarrativeSummaryProps, type TypeNarrativeTone, type TypePullQuoteProps };
|