@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.
- package/CHANGELOG.md +41 -0
- package/build/es/no-polyfill/actionButton/ActionButton.js +1 -0
- package/build/es/no-polyfill/actionButton/ActionButton.spec.js +1 -0
- package/build/es/no-polyfill/actionButton/ActionButton.story.js +1 -0
- package/build/es/no-polyfill/actionButton/index.js +1 -0
- package/build/es/no-polyfill/common/hooks/index.js +1 -1
- package/build/es/no-polyfill/common/hooks/useLayout/index.js +1 -0
- package/build/es/no-polyfill/common/hooks/useLayout/useLayout.js +1 -0
- package/build/es/no-polyfill/common/index.js +1 -1
- package/build/es/no-polyfill/drawer/Drawer.js +1 -1
- package/build/es/no-polyfill/index.js +2 -2
- package/build/es/no-polyfill/modal/Modal.js +1 -1
- package/build/es/no-polyfill/modal/Modal.story.js +1 -0
- package/build/es/polyfill/actionButton/ActionButton.js +1 -0
- package/build/es/polyfill/actionButton/ActionButton.spec.js +1 -0
- package/build/es/polyfill/actionButton/ActionButton.story.js +1 -0
- package/build/es/polyfill/actionButton/index.js +1 -0
- package/build/es/polyfill/common/hooks/index.js +1 -1
- package/build/es/polyfill/common/hooks/useLayout/index.js +1 -0
- package/build/es/polyfill/common/hooks/useLayout/useLayout.js +1 -0
- package/build/es/polyfill/common/index.js +1 -1
- package/build/es/polyfill/drawer/Drawer.js +1 -1
- package/build/es/polyfill/index.js +2 -2
- package/build/es/polyfill/modal/Modal.js +1 -1
- package/build/es/polyfill/modal/Modal.story.js +1 -0
- package/build/main.css +1 -1
- package/build/styles/actionButton/ActionButton.css +1 -0
- package/build/styles/common/panel/Panel.css +1 -1
- package/build/styles/drawer/Drawer.css +1 -1
- package/build/styles/main.css +1 -1
- package/build/styles/modal/Modal.css +1 -1
- package/build/styles/stepper/Stepper.css +1 -1
- package/build/types/actionButton/ActionButton.d.ts +8 -0
- package/build/types/actionButton/ActionButton.spec.d.ts +1 -0
- package/build/types/actionButton/ActionButton.story.d.ts +5 -0
- package/build/types/actionButton/index.d.ts +1 -0
- package/build/types/common/hooks/index.d.ts +1 -0
- package/build/types/common/hooks/useLayout/index.d.ts +1 -0
- package/build/types/common/hooks/useLayout/useLayout.d.ts +8 -0
- package/build/types/common/index.d.ts +2 -2
- package/build/types/common/propsValues/position.d.ts +1 -0
- package/build/types/common/propsValues/scroll.d.ts +2 -0
- package/build/types/common/responsivePanel/ResponsivePanel.d.ts +1 -1
- package/build/types/drawer/Drawer.d.ts +3 -3
- package/build/types/index.d.ts +2 -1
- package/build/types/modal/Modal.d.ts +15 -24
- package/build/types/modal/Modal.story.d.ts +17 -0
- package/build/umd/no-polyfill/main.js +1 -1
- package/build/umd/polyfill/main.js +1 -1
- package/package.json +3 -3
- 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.
|
|
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.
|
|
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": "
|
|
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' },
|