@atlaskit/primitives 0.12.0 → 0.12.1
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 +6 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/components/inline.d.ts +1 -1
- package/dist/types-ts4.5/components/inline.d.ts +1 -1
- package/package.json +1 -1
- package/report.api.md +1 -1
- package/tmp/api-report-tmp.d.ts +1 -1
package/CHANGELOG.md
CHANGED
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
|
@@ -5,7 +5,7 @@ export interface InlineProps<T extends ElementType = 'div'> {
|
|
|
5
5
|
/**
|
|
6
6
|
* The DOM element to render as the Inline. Defaults to `div`.
|
|
7
7
|
*/
|
|
8
|
-
as?: 'div' | 'span' | 'ul' | 'ol';
|
|
8
|
+
as?: 'div' | 'span' | 'ul' | 'ol' | 'li';
|
|
9
9
|
/**
|
|
10
10
|
* Used to align children along the main axis.
|
|
11
11
|
*/
|
|
@@ -5,7 +5,7 @@ export interface InlineProps<T extends ElementType = 'div'> {
|
|
|
5
5
|
/**
|
|
6
6
|
* The DOM element to render as the Inline. Defaults to `div`.
|
|
7
7
|
*/
|
|
8
|
-
as?: 'div' | 'span' | 'ul' | 'ol';
|
|
8
|
+
as?: 'div' | 'span' | 'ul' | 'ol' | 'li';
|
|
9
9
|
/**
|
|
10
10
|
* Used to align children along the main axis.
|
|
11
11
|
*/
|
package/package.json
CHANGED
package/report.api.md
CHANGED
|
@@ -454,7 +454,7 @@ export const Inline: MemoExoticComponent<
|
|
|
454
454
|
export interface InlineProps<T extends ElementType = 'div'> {
|
|
455
455
|
alignBlock?: AlignBlock;
|
|
456
456
|
alignInline?: AlignInline;
|
|
457
|
-
as?: 'div' | 'ol' | 'span' | 'ul';
|
|
457
|
+
as?: 'div' | 'li' | 'ol' | 'span' | 'ul';
|
|
458
458
|
children: ReactNode;
|
|
459
459
|
grow?: Grow;
|
|
460
460
|
ref?: React.ComponentPropsWithRef<T>['ref'];
|
package/tmp/api-report-tmp.d.ts
CHANGED
|
@@ -398,7 +398,7 @@ export const Inline: MemoExoticComponent<ForwardRefExoticComponent<Pick<InlinePr
|
|
|
398
398
|
export interface InlineProps<T extends ElementType = 'div'> {
|
|
399
399
|
alignBlock?: AlignBlock;
|
|
400
400
|
alignInline?: AlignInline;
|
|
401
|
-
as?: 'div' | 'ol' | 'span' | 'ul';
|
|
401
|
+
as?: 'div' | 'li' | 'ol' | 'span' | 'ul';
|
|
402
402
|
children: ReactNode;
|
|
403
403
|
grow?: Grow;
|
|
404
404
|
ref?: React.ComponentPropsWithRef<T>['ref'];
|