@pantheon-systems/pds-toolkit-react 2.0.0-alpha.48 → 2.0.0-alpha.49

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.
@@ -12,6 +12,14 @@ interface StepperLayoutProps {
12
12
  * Additional class names
13
13
  */
14
14
  className?: string;
15
+ /**
16
+ * Width of the form content. `standard` insets the form to a comfortable
17
+ * reading width for traditional form fields; `full` lets the form content
18
+ * span the full stepper container width. Use `full` only for non-form
19
+ * content such as a group of cards or other visual treatment prescribed by
20
+ * design.
21
+ */
22
+ formWidth?: 'standard' | 'full';
15
23
  /**
16
24
  * Wrap the entire experience (stepper, form, and buttons) in a Panel.
17
25
  */
@@ -20,5 +28,5 @@ interface StepperLayoutProps {
20
28
  /**
21
29
  * StepperLayout UI component
22
30
  */
23
- export declare const StepperLayout: ({ children, className, hasPanel, ...props }: StepperLayoutProps) => import("react/jsx-runtime").JSX.Element;
31
+ export declare const StepperLayout: ({ children, className, formWidth, hasPanel, ...props }: StepperLayoutProps) => import("react/jsx-runtime").JSX.Element;
24
32
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pantheon-systems/pds-toolkit-react",
3
3
  "technology": "React",
4
- "version": "2.0.0-alpha.48",
4
+ "version": "2.0.0-alpha.49",
5
5
  "description": "PDS toolkit built using the React framework",
6
6
  "publishConfig": {
7
7
  "access": "public",