@pantheon-systems/pds-toolkit-react 1.0.0-dev.277 → 1.0.0-dev.278
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/FlowSteps/FlowSteps.d.ts +5 -1
- package/_dist/css/component-css/pds-flow-steps.css +1 -1
- package/_dist/css/component-css/pds-index.css +1 -1
- package/_dist/css/pds-components.css +1 -1
- package/_dist/index.css +1 -1
- package/_dist/index.js +1436 -1431
- package/_dist/index.js.map +1 -1
- package/_dist/libs/types/custom-types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -97,7 +97,7 @@ export type SeparatorItemType = {
|
|
|
97
97
|
*/
|
|
98
98
|
isSeparator: boolean;
|
|
99
99
|
};
|
|
100
|
-
export type SitePlanLevel = 'sandbox' | 'basic' | 'performance-small' | 'performance-medium' | 'performance-large' | 'performance-xl' | 'elite';
|
|
100
|
+
export type SitePlanLevel = 'sandbox' | 'basic' | 'performance-small' | 'performance-medium' | 'performance-large' | 'performance-xl' | 'performance-2xl' | 'elite';
|
|
101
101
|
export declare const SitePlanLevelLabel: Record<SitePlanLevel, string>;
|
|
102
102
|
export type SiteStatus = 'active' | 'frozen';
|
|
103
103
|
export type SiteType = 'drupal' | 'wordpress' | 'gatsby' | 'nextjs';
|