@pantheon-systems/pds-toolkit-react 1.0.0-dev.239 → 1.0.0-dev.240

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.
Files changed (29) hide show
  1. package/_dist/components/SocialLinks/SocialLinks.d.ts +1 -1
  2. package/_dist/components/Tabs/Tabs.d.ts +1 -1
  3. package/_dist/components/buttons/Button/Button.d.ts +1 -1
  4. package/_dist/components/buttons/ButtonLink/ButtonLink.d.ts +1 -1
  5. package/_dist/components/buttons/IconButton/IconButton.d.ts +1 -1
  6. package/_dist/components/buttons/MenuButton/MenuButton.d.ts +1 -1
  7. package/_dist/components/buttons/SegmentedButton/SegmentedButton.d.ts +1 -1
  8. package/_dist/components/buttons/UtilityButton/UtilityButton.d.ts +1 -1
  9. package/_dist/components/cards/PaymentCard/PaymentCard.d.ts +47 -0
  10. package/_dist/components/icons/PaymentIcon/PaymentIcon.d.ts +21 -0
  11. package/_dist/components/icons/PaymentIcon/svgData.d.ts +8 -0
  12. package/_dist/components/inputs/input-utilities.d.ts +2 -1
  13. package/_dist/components/navigation/DashboardNav/DashboardNavItem.d.ts +1 -1
  14. package/_dist/components/navigation/DashboardNav/dashboard-nav-utilities.d.ts +1 -1
  15. package/_dist/components/navigation/TabMenu/TabMenu.d.ts +1 -1
  16. package/_dist/components/navigation/UserMenu/UserMenu.d.ts +1 -1
  17. package/_dist/css/component-css/pds-index.css +3 -3
  18. package/_dist/css/component-css/pds-input-group.css +1 -1
  19. package/_dist/css/component-css/pds-payment-card.css +1 -0
  20. package/_dist/css/component-css/pds-payment-icon.css +1 -0
  21. package/_dist/css/pds-components.css +3 -3
  22. package/_dist/index.css +1 -1
  23. package/_dist/index.d.ts +4 -2
  24. package/_dist/index.js +3735 -3349
  25. package/_dist/index.js.map +1 -1
  26. package/_dist/libs/types/custom-types.d.ts +1 -1
  27. package/package.json +1 -1
  28. /package/_dist/components/{Icon → icons/Icon}/Icon.d.ts +0 -0
  29. /package/_dist/components/{PlatformIcon → icons/PlatformIcon}/PlatformIcon.d.ts +0 -0
@@ -1,5 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
- import { PDSIcon } from '@components/Icon/Icon';
2
+ import { PDSIcon } from '@components/icons/Icon/Icon';
3
3
  export type BadgeColor = 'success' | 'critical' | 'info' | 'warning' | 'neutral' | 'brand' | 'silver' | 'gold' | 'platinum' | 'diamond';
4
4
  export type ButtonDisplayType = 'label-only' | 'icon-start' | 'icon-end';
5
5
  export type ButtonSize = 'sm' | 'md' | 'lg';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pantheon-systems/pds-toolkit-react",
3
3
  "technology": "React",
4
- "version": "1.0.0-dev.239",
4
+ "version": "1.0.0-dev.240",
5
5
  "description": "PDS toolkit built using the React framework",
6
6
  "repository": {
7
7
  "type": "git",
File without changes