@shopify/ui-extensions 2026.7.0-rc.4 → 2026.7.0-rc.5
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {BaseElementPropsWithChildren, IdProps} from './shared';
|
|
1
|
+
import {BaseElementPropsWithChildren, IdProps, SizeKeyword} from './shared';
|
|
2
2
|
|
|
3
3
|
export interface PageProps extends IdProps {
|
|
4
4
|
/**
|
|
@@ -10,6 +10,15 @@ export interface PageProps extends IdProps {
|
|
|
10
10
|
* A secondary heading displayed below the main heading for additional context.
|
|
11
11
|
*/
|
|
12
12
|
subheading?: string;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* The inline size of the page
|
|
16
|
+
* - `base` corresponds to a set default inline size
|
|
17
|
+
* - `large` full width with whitespace
|
|
18
|
+
*
|
|
19
|
+
* @default 'base'
|
|
20
|
+
*/
|
|
21
|
+
inlineSize?: Extract<SizeKeyword, 'base' | 'large'>;
|
|
13
22
|
}
|
|
14
23
|
|
|
15
24
|
export interface PageElementSlots {
|