@transferwise/components 45.1.1 → 45.3.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/build/es/no-polyfill/avatar/Avatar.js +1 -1
- package/build/es/no-polyfill/avatar/Avatar.story.js +1 -1
- package/build/es/no-polyfill/avatar/colors/avatarColorTestCases.json +402 -0
- package/build/es/no-polyfill/avatar/colors/colors.js +10 -0
- package/build/es/no-polyfill/avatar/colors/index.js +1 -0
- package/build/es/no-polyfill/avatarWrapper/AvatarWrapper.js +1 -1
- package/build/es/no-polyfill/index.js +1 -1
- package/build/es/no-polyfill/listItem/ListItem.js +1 -0
- package/build/es/no-polyfill/listItem/ListItem.spec.js +1 -0
- package/build/es/no-polyfill/listItem/ListItem.story.js +1 -0
- package/build/es/no-polyfill/listItem/index.js +1 -0
- package/build/es/polyfill/avatar/Avatar.js +1 -1
- package/build/es/polyfill/avatar/Avatar.story.js +1 -1
- package/build/es/polyfill/avatar/colors/avatarColorTestCases.json +402 -0
- package/build/es/polyfill/avatar/colors/colors.js +10 -0
- package/build/es/polyfill/avatar/colors/index.js +1 -0
- package/build/es/polyfill/avatarWrapper/AvatarWrapper.js +1 -1
- package/build/es/polyfill/index.js +1 -1
- package/build/es/polyfill/listItem/ListItem.js +1 -0
- package/build/es/polyfill/listItem/ListItem.spec.js +1 -0
- package/build/es/polyfill/listItem/ListItem.story.js +1 -0
- package/build/es/polyfill/listItem/index.js +1 -0
- package/build/main.css +1 -1
- package/build/styles/avatar/Avatar.css +1 -1
- package/build/styles/listItem/ListItem.css +1 -0
- package/build/styles/main.css +1 -1
- package/build/types/avatar/Avatar.d.ts +18 -22
- package/build/types/avatar/Avatar.story.d.ts +3 -34
- package/build/types/avatar/colors/colors.d.ts +3 -0
- package/build/types/avatar/colors/index.d.ts +1 -0
- package/build/types/avatar/index.d.ts +2 -2
- package/build/types/avatarWrapper/AvatarWrapper.d.ts +1 -0
- package/build/types/avatarWrapper/AvatarWrapper.story.d.ts +4 -1
- package/build/types/index.d.ts +1 -0
- package/build/types/listItem/ListItem.d.ts +12 -0
- package/build/types/listItem/ListItem.spec.d.ts +1 -0
- package/build/types/listItem/ListItem.story.d.ts +17 -0
- package/build/types/listItem/index.d.ts +1 -0
- package/build/umd/no-polyfill/main.js +1 -1
- package/build/umd/polyfill/main.js +1 -1
- package/package.json +2 -2
- 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": "45.
|
|
3
|
+
"version": "45.3.0",
|
|
4
4
|
"description": "Neptune React components",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./build/umd/polyfill/main.js",
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
"access": "public"
|
|
129
129
|
},
|
|
130
130
|
"scripts": {
|
|
131
|
-
"dev": "npm-run-all --parallel dev:*",
|
|
131
|
+
"dev": "npm-run-all --parallel dev:* sb:dev",
|
|
132
132
|
"dev:watch-less": "gulp watchLess --dest=src",
|
|
133
133
|
"dev:translations": "npx npm-watch",
|
|
134
134
|
"sb:dev": "storybook dev -p 3001",
|
|
@@ -31,7 +31,6 @@ const jsFiles = [
|
|
|
31
31
|
{ filename: 'Upload', folder: 'upload' },
|
|
32
32
|
{ filename: 'DefinitionList', folder: 'definitionList' },
|
|
33
33
|
{ filename: 'DynamicFieldDefinitionList', folder: 'dynamicFieldDefinitionList' },
|
|
34
|
-
{ filename: 'Avatar', folder: 'avatar' },
|
|
35
34
|
{ filename: 'CircularButton', folder: 'circularButton' },
|
|
36
35
|
{ filename: 'Info', folder: 'info' },
|
|
37
36
|
{ filename: 'RadioGroup', folder: 'radioGroup' },
|