@transferwise/components 39.9.5 → 39.11.0

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 (51) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/build/es/no-polyfill/actionButton/ActionButton.js +1 -0
  3. package/build/es/no-polyfill/actionButton/ActionButton.spec.js +1 -0
  4. package/build/es/no-polyfill/actionButton/ActionButton.story.js +1 -0
  5. package/build/es/no-polyfill/actionButton/index.js +1 -0
  6. package/build/es/no-polyfill/common/hooks/index.js +1 -1
  7. package/build/es/no-polyfill/common/hooks/useLayout/index.js +1 -0
  8. package/build/es/no-polyfill/common/hooks/useLayout/useLayout.js +1 -0
  9. package/build/es/no-polyfill/common/index.js +1 -1
  10. package/build/es/no-polyfill/drawer/Drawer.js +1 -1
  11. package/build/es/no-polyfill/index.js +2 -2
  12. package/build/es/no-polyfill/modal/Modal.js +1 -1
  13. package/build/es/no-polyfill/modal/Modal.story.js +1 -0
  14. package/build/es/polyfill/actionButton/ActionButton.js +1 -0
  15. package/build/es/polyfill/actionButton/ActionButton.spec.js +1 -0
  16. package/build/es/polyfill/actionButton/ActionButton.story.js +1 -0
  17. package/build/es/polyfill/actionButton/index.js +1 -0
  18. package/build/es/polyfill/common/hooks/index.js +1 -1
  19. package/build/es/polyfill/common/hooks/useLayout/index.js +1 -0
  20. package/build/es/polyfill/common/hooks/useLayout/useLayout.js +1 -0
  21. package/build/es/polyfill/common/index.js +1 -1
  22. package/build/es/polyfill/drawer/Drawer.js +1 -1
  23. package/build/es/polyfill/index.js +2 -2
  24. package/build/es/polyfill/modal/Modal.js +1 -1
  25. package/build/es/polyfill/modal/Modal.story.js +1 -0
  26. package/build/main.css +1 -1
  27. package/build/styles/actionButton/ActionButton.css +1 -0
  28. package/build/styles/common/panel/Panel.css +1 -1
  29. package/build/styles/drawer/Drawer.css +1 -1
  30. package/build/styles/main.css +1 -1
  31. package/build/styles/modal/Modal.css +1 -1
  32. package/build/styles/stepper/Stepper.css +1 -1
  33. package/build/types/actionButton/ActionButton.d.ts +8 -0
  34. package/build/types/actionButton/ActionButton.spec.d.ts +1 -0
  35. package/build/types/actionButton/ActionButton.story.d.ts +5 -0
  36. package/build/types/actionButton/index.d.ts +1 -0
  37. package/build/types/common/hooks/index.d.ts +1 -0
  38. package/build/types/common/hooks/useLayout/index.d.ts +1 -0
  39. package/build/types/common/hooks/useLayout/useLayout.d.ts +8 -0
  40. package/build/types/common/index.d.ts +2 -2
  41. package/build/types/common/propsValues/position.d.ts +1 -0
  42. package/build/types/common/propsValues/scroll.d.ts +2 -0
  43. package/build/types/common/responsivePanel/ResponsivePanel.d.ts +1 -1
  44. package/build/types/drawer/Drawer.d.ts +3 -3
  45. package/build/types/index.d.ts +2 -1
  46. package/build/types/modal/Modal.d.ts +15 -24
  47. package/build/types/modal/Modal.story.d.ts +17 -0
  48. package/build/umd/no-polyfill/main.js +1 -1
  49. package/build/umd/polyfill/main.js +1 -1
  50. package/package.json +3 -3
  51. package/scripts/generate-type-declarations.js +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transferwise/components",
3
- "version": "39.9.5",
3
+ "version": "39.11.0",
4
4
  "description": "Neptune React components",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./build/umd/polyfill/main.js",
@@ -67,7 +67,7 @@
67
67
  "@rollup/plugin-node-resolve": "^7.1.3",
68
68
  "@transferwise/icons": "^2.12.0",
69
69
  "@transferwise/less-config": "^3.0.2",
70
- "@transferwise/neptune-css": "^12.3.4",
70
+ "@transferwise/neptune-css": "^12.3.6",
71
71
  "@transferwise/neptune-tokens": "7.0.0",
72
72
  "@transferwise/test-config": "^5.0.0",
73
73
  "@types/jest": "^26.0.20",
@@ -124,5 +124,5 @@
124
124
  "resolutions": {
125
125
  "@storybook/**/kind-of": "^6.0.3"
126
126
  },
127
- "gitHead": "de312422af46ffd9603ddca2c2f17afff0ff4f3f"
127
+ "gitHead": "f1bd9c299300e1529e79f5adbaaf5f1be78ef3aa"
128
128
  }
@@ -23,7 +23,6 @@ const jsFiles = [
23
23
  { filename: 'FlowNavigation', folder: 'flowNavigation' },
24
24
  { filename: 'Popover', folder: 'popover' },
25
25
  { filename: 'Money', folder: 'money' },
26
- { filename: 'Modal', folder: 'modal' },
27
26
  { filename: 'RadioOption', folder: 'radioOption' },
28
27
  { filename: 'CheckboxOption', folder: 'checkboxOption' },
29
28
  { filename: 'NavigationOption', folder: 'navigationOption' },