@pantheon-systems/pds-toolkit-react 2.0.0-alpha.50 → 2.0.0-alpha.52
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/codemods/v1-to-v2/mappings.json +20 -8
- package/dist/components/Dropdown/Dropdown.d.ts +7 -1
- package/dist/components/StatusChecker/StatusChecker.d.ts +2 -1
- package/dist/components/cards/ActionCard/ActionCard.d.ts +2 -2
- package/dist/components/cards/Card/Card.d.ts +2 -2
- package/dist/components/cards/CardSelect/CardSelect.d.ts +6 -1
- package/dist/components/charts/shared/chart-colors.d.ts +1 -1
- package/dist/components/charts/shared/chart-styles.d.ts +8 -0
- package/dist/components/charts/shared/types.d.ts +1 -1
- package/dist/components/icons/Icon/generated-icon-data.d.ts +1 -1
- package/dist/css/component-css/pds-action-card.css +1 -1
- package/dist/css/component-css/pds-card-select.css +1 -1
- package/dist/css/component-css/pds-card.css +1 -1
- package/dist/css/component-css/pds-index.css +3 -3
- package/dist/css/component-css/pds-side-nav-global.css +1 -1
- package/dist/css/design-tokens/variables.dark.css +40 -65
- package/dist/css/design-tokens/variables.light.css +58 -63
- package/dist/css/pds-components.css +3 -3
- package/dist/css/pds-core.css +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +1261 -1205
- package/dist/index.js.map +1 -1
- package/dist/libs/types/layout-types.d.ts +1 -0
- package/package.json +4 -4
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export type GapScale = 'none' | 'xs' | 's' | 'm' | 'l' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl';
|
|
2
2
|
export type PaddingScale = 'none' | 'condensed' | 'standard' | 'spacious';
|
|
3
|
+
export type CardPaddingScale = Exclude<PaddingScale, 'none'>;
|
|
3
4
|
export type VerticalAlignOptions = 'start' | 'center' | 'end';
|
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.
|
|
4
|
+
"version": "2.0.0-alpha.52",
|
|
5
5
|
"description": "PDS toolkit built using the React framework",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public",
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
"prettier-plugin-css-order": "^2.2.0",
|
|
164
164
|
"react": "^18.2.0",
|
|
165
165
|
"react-dom": "^18.2.0",
|
|
166
|
-
"react-router-dom": "^
|
|
166
|
+
"react-router-dom": "^7.0.0",
|
|
167
167
|
"storybook": "^10.4.0",
|
|
168
168
|
"tsc-alias": "^1.8.17",
|
|
169
169
|
"typescript": "^5.4.5",
|
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
"@dnd-kit/utilities": "^3.2.2",
|
|
182
182
|
"@floating-ui/react": "^0.24.3",
|
|
183
183
|
"@floating-ui/react-dom": "~1.3.0",
|
|
184
|
-
"@pantheon-systems/pds-design-tokens": "^2.0.0-alpha.
|
|
184
|
+
"@pantheon-systems/pds-design-tokens": "^2.0.0-alpha.60",
|
|
185
185
|
"@reactuses/core": "^5.0.15",
|
|
186
186
|
"date-fns": "^4.1.0",
|
|
187
187
|
"downshift": "^9.3.2",
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
},
|
|
204
204
|
"overrides": {
|
|
205
205
|
"@babel/plugin-transform-modules-systemjs": "^7.29.4",
|
|
206
|
-
"fast-uri": "^3.1.
|
|
206
|
+
"fast-uri": "^3.1.4",
|
|
207
207
|
"hono": "^4.12.18",
|
|
208
208
|
"ip-address": "^10.1.1"
|
|
209
209
|
},
|