@pantheon-systems/pds-toolkit-react 1.0.0-alpha.3 → 1.0.0-alpha.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.
- package/_dist/css/component-css/pds-index.css +1 -1
- package/_dist/css/component-css/pds-pantheon-logo.css +1 -1
- package/_dist/css/pds-components.css +1 -1
- package/_dist/css/pds-layouts.css +1 -1
- package/_dist/index.css +1 -1
- package/_dist/index.js +2006 -2000
- package/_dist/index.js.map +1 -1
- package/_dist/libs/types/custom-types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -99,7 +99,7 @@ export type SeparatorItemType = {
|
|
|
99
99
|
};
|
|
100
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
|
-
export type SiteStatus = 'active' | 'frozen';
|
|
102
|
+
export type SiteStatus = 'active' | 'frozen' | 'restricted';
|
|
103
103
|
export type SiteType = 'drupal' | 'wordpress' | 'gatsby' | 'nextjs';
|
|
104
104
|
export declare const SiteTypeLabel: Record<SiteType, string>;
|
|
105
105
|
export declare const SiteTypeIcon: Record<SiteType, PDSIcon>;
|
package/package.json
CHANGED