@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.
- package/dist/components/cards/CardSelect/CardSelect.d.ts +21 -3
- package/dist/components/icons/Icon/generated-icon-data.d.ts +1 -1
- package/dist/css/component-css/pds-card-select.css +2 -1
- package/dist/css/component-css/pds-index.css +4 -3
- package/dist/css/component-css/pds-navbar.css +1 -1
- package/dist/css/component-css/pds-workspace-selector.css +1 -1
- package/dist/css/layout-css/pds-index.css +1 -1
- package/dist/css/layout-css/pds-stepper-layout.css +1 -1
- package/dist/css/pds-components.css +4 -3
- package/dist/css/pds-layouts.css +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +45 -36
- package/dist/index.js.map +1 -1
- package/dist/layouts/StepperLayout/StepperLayout.d.ts +9 -1
- package/package.json +1 -1
|
@@ -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