Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs:(PPDSC-2549) components content updates #456

Merged
merged 6 commits into from
Nov 9, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions site/components/component-api/common-logical-props.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,65 +6,65 @@ export const logicalMarginOverrideProps: OverridesRowsProps[] = [
{
attribute: 'marginInline',
type: 'MQ<string>',
description: `It can take one space token to specify the logical inline start and end margin of the container. This space token can also be used on breakpoints. `,
description: `Can take one space token to specify the logical inline start and end margin of the container. Can be used on breakpoints`,
},
{
attribute: 'marginInlineStart',
type: 'MQ<string>',
description: `It can take one space token to specify the logical inline start margin of the container. This space token can also be used on breakpoints. `,
description: `Can take one space token to specify the logical inline start margin of the container. Can be used on breakpoints`,
},
{
attribute: 'marginInlineEnd',
type: 'MQ<string>',
description: `It can take one space token to specify the logical inline end margin of the container. This space token can also be used on breakpoints. `,
description: `Can take one space token to specify the logical inline end margin of the container. Can be used on breakpoints`,
},
{
attribute: 'marginBlock',
type: 'MQ<string>',
description: `It can take one space token to specify the logical block start and end margin of the container. This space token can also be used on breakpoints. `,
description: `Can take one space token to specify the logical block start and end margin of the container. Can be used on breakpoints`,
},
{
attribute: 'marginBlockStart',
type: 'MQ<string>',
description: `It can take one space token to specify the logical block start margin of the container. This space token can also be used on breakpoints. `,
description: `Can take one space token to specify the logical block start margin of the container. Can be used on breakpoints`,
},
{
attribute: 'marginBlockEnd',
type: 'MQ<string>',
description: `It can take one space token to specify the logical block end margin of the container. This space token can also be used on breakpoints. `,
description: `Can take one space token to specify the logical block end margin of the container. Can be used on breakpoints`,
},
];

export const logicalPaddingOverrideProps: OverridesRowsProps[] = [
{
attribute: 'paddingInline',
type: 'MQ<string>',
description: `It can take one space token to specify the logical inline start and end padding of the container. This space token can also be used on breakpoints. `,
description: `Can take one space token to specify the logical inline start and end padding of the container. Can be used on breakpoints`,
},
{
attribute: 'paddingInlineStart',
type: 'MQ<string>',
description: `It can take one space token to specify the logical inline start padding of the container. This space token can also be used on breakpoints. `,
description: `Can take one space token to specify the logical inline start padding of the container. Can be used on breakpoints`,
},
{
attribute: 'paddingInlineEnd',
type: 'MQ<string>',
description: `It can take one space token to specify the logical inline end padding of the container. This space token can also be used on breakpoints. `,
description: `Can take one space token to specify the logical inline end padding of the container. Can be used on breakpoints`,
},
{
attribute: 'paddingBlock',
type: 'MQ<string>',
description: `It can take one space token to specify the logical block start and end padding of the container. This space token can also be used on breakpoints. `,
description: `Can take one space token to specify the logical block start and end padding of the container. Can be used on breakpoints`,
},
{
attribute: 'paddingBlockStart',
type: 'MQ<string>',
description: `It can take one space token to specify the logical block start padding of the container. This space token can also be used on breakpoints. `,
description: `Can take one space token to specify the logical block start padding of the container. Can be used on breakpoints`,
},
{
attribute: 'paddingBlockEnd',
type: 'MQ<string>',
description: `It can take one space token to specify the logical block end padding of the container. This space token can also be used on breakpoints. `,
description: `It can take Can take one space token to specify the logical block end padding of the container. Can be used on breakpoints`,
},
];

Expand Down
2 changes: 1 addition & 1 deletion site/components/table/column-map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const columnMap: Record<string, ColumnMapObject> = {
Optional: {...small, cellType: 'icon'},
Required: {...small, cellType: 'icon'},
Status: {...small, cellType: 'icon'},
'User Supplied': {...small, cellType: 'checkIcon'},
'User supplied': {...small, cellType: 'checkIcon'},
Command: {...medium, cellType: 'keyboardFlag', noWrap: true},
Component: {...medium, cellType: 'componentLink', noWrap: true},
Value: {...medium, cellType: 'flag'},
Expand Down
Loading