Skip to content

Commit 7a75a67

Browse files
committed
Address feedback
1 parent e344a5a commit 7a75a67

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import type {SharedReferenceEntityTemplateSchema} from '../docs-type';
22

3-
const sharedContent: SharedReferenceEntityTemplateSchema = {
3+
const data: SharedReferenceEntityTemplateSchema = {
44
name: 'Button',
55
description:
66
'Use `s-button` when you want to provide users the ability to perform specific actions, submitting forms, or opening dialogs.',
77
category: 'Polaris web components',
88
subCategory: 'Actions',
99
};
1010

11-
export default sharedContent;
11+
export default data;

packages/ui-extensions/src/docs/shared/components/ClipboardItem.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type {SharedReferenceEntityTemplateSchema} from '../docs-type';
22

3-
const sharedContent: SharedReferenceEntityTemplateSchema = {
3+
const data: SharedReferenceEntityTemplateSchema = {
44
name: 'ClipboardItem',
55
description: `
66
This component is used alongside a \`Button\` or \`Link\` component to facilitate writing to the user's clipboard.
@@ -13,4 +13,4 @@ const sharedContent: SharedReferenceEntityTemplateSchema = {
1313
subCategory: 'utilities',
1414
};
1515

16-
export default sharedContent;
16+
export default data;

packages/ui-extensions/src/docs/shared/components/Heading.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type {SharedReferenceEntityTemplateSchema} from '../docs-type';
33
const data: SharedReferenceEntityTemplateSchema = {
44
name: 'Heading',
55
description:
6-
"The `s-heading` component renders hierarchical titles similar to HTML's `h1-h6` elements. Heading levels are automatically determined by parent `s-section` nesting depth starting from h2. Always prefer using the `heading` property on `s-section` and `s-banner` components before constructing custom layout with `s-heading`.",
6+
'The `s-heading` component renders hierarchical titles similar to HTMLs `h1-h6` elements. Heading levels are automatically determined by parent `s-section` nesting depth starting from h2. Always prefer using the `heading` property on `s-section` and `s-banner` components before constructing custom layout with `s-heading`.',
77
category: 'Polaris web components',
88
subCategory: 'Titles and text',
99
};

0 commit comments

Comments
 (0)