@sproutsocial/racine 11.0.2-beta.0 → 11.0.2-dependencies.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/__flow__/Avatar/index.test.js +0 -5
- package/__flow__/Badge/index.test.js +0 -5
- package/__flow__/Breadcrumb/index.js +0 -2
- package/__flow__/Button/index.stories.js +51 -67
- package/__flow__/CharacterCounter/index.test.js +0 -8
- package/__flow__/ChartLegend/index.test.js +0 -37
- package/__flow__/Collapsible/index.js +0 -3
- package/__flow__/Drawer/index.js +0 -4
- package/__flow__/EmptyState/index.test.js +1 -3
- package/__flow__/EnumIconNames.js +1 -1
- package/__flow__/Fieldset/index.js +2 -8
- package/__flow__/Icon/index.js +1 -5
- package/__flow__/IconViewBoxes.js +1 -1
- package/__flow__/Link/index.test.js +0 -10
- package/__flow__/Loader/index.test.js +0 -14
- package/__flow__/Menu/__snapshots__/index.test.js.snap +2 -2
- package/__flow__/Menu/index.js +0 -7
- package/__flow__/Message/index.js +0 -7
- package/__flow__/Modal/index.js +0 -5
- package/__flow__/Modal/index.test.js +0 -19
- package/__flow__/Popout/index.js +1 -4
- package/__flow__/SegmentedControl/index.js +0 -2
- package/__flow__/Table/index.js +0 -6
- package/__flow__/Text/index.js +0 -8
- package/__flow__/Text/index.test.js +0 -39
- package/commonjs/Breadcrumb/index.js +0 -1
- package/commonjs/Collapsible/index.js +0 -2
- package/commonjs/Drawer/index.js +0 -3
- package/commonjs/Fieldset/index.js +2 -6
- package/commonjs/Icon/index.js +1 -3
- package/commonjs/IconViewBoxes.js +0 -2
- package/commonjs/Menu/index.js +0 -6
- package/commonjs/Message/index.js +0 -13
- package/commonjs/Modal/index.js +0 -4
- package/commonjs/Popout/index.js +2 -5
- package/commonjs/SegmentedControl/index.js +0 -1
- package/commonjs/Table/index.js +0 -5
- package/commonjs/Text/index.js +0 -7
- package/commonjs/include-icons.js +1 -1
- package/dist/iconList.js +1 -1
- package/dist/icons.svg +1 -1
- package/icons/deconstructed-negative-sentiment.svg +1 -1
- package/icons/deconstructed-neutral-sentiment.svg +1 -1
- package/icons/deconstructed-positive-sentiment.svg +1 -1
- package/icons/whatsapp.svg +5 -5
- package/includeIcons.js +1 -1
- package/lib/Breadcrumb/index.js +0 -1
- package/lib/Collapsible/index.js +0 -2
- package/lib/Drawer/index.js +0 -3
- package/lib/Fieldset/index.js +2 -6
- package/lib/Icon/index.js +1 -3
- package/lib/IconViewBoxes.js +0 -2
- package/lib/Menu/index.js +0 -6
- package/lib/Message/index.js +0 -13
- package/lib/Modal/index.js +0 -4
- package/lib/Popout/index.js +2 -5
- package/lib/SegmentedControl/index.js +0 -1
- package/lib/Table/index.js +0 -5
- package/lib/Text/index.js +0 -7
- package/lib/include-icons.js +1 -1
- package/package.json +20 -15
- package/icons/address-card-outline.svg +0 -3
- package/icons/magic-wand.svg +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sproutsocial/racine",
|
|
3
|
-
"version": "11.0.2-
|
|
3
|
+
"version": "11.0.2-dependencies.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [
|
|
6
6
|
"__flow__",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"./includeIcons.js"
|
|
22
22
|
],
|
|
23
23
|
"scripts": {
|
|
24
|
+
"preinstall": "node ./bin/buildNpm.js",
|
|
24
25
|
"install-deps": "yarn install",
|
|
25
26
|
"prepublishOnly": "yarn run build",
|
|
26
27
|
"precommit": "lint-staged",
|
|
@@ -62,6 +63,7 @@
|
|
|
62
63
|
]
|
|
63
64
|
},
|
|
64
65
|
"dependencies": {
|
|
66
|
+
"@storybook/addon-controls": "^6.4.19",
|
|
65
67
|
"@styled-system/theme-get": "^5.1.2",
|
|
66
68
|
"classnames": "^2.2.6",
|
|
67
69
|
"lodash.curry": "^4.1.1",
|
|
@@ -75,14 +77,14 @@
|
|
|
75
77
|
"react-popper": "^1.3.3",
|
|
76
78
|
"react-spring": "^8.0.25",
|
|
77
79
|
"react-toastify": "^6.0.5",
|
|
78
|
-
"react-virtualized": "9.
|
|
80
|
+
"react-virtualized": "9.22.3",
|
|
79
81
|
"scroll-into-view-if-needed": "1.1.0",
|
|
80
82
|
"styled-system": "^5.1.5",
|
|
81
83
|
"use-measure": "^0.2.2"
|
|
82
84
|
},
|
|
83
85
|
"devDependencies": {
|
|
84
86
|
"@babel/cli": "^7.5.5",
|
|
85
|
-
"@babel/core": "^7.
|
|
87
|
+
"@babel/core": "^7.12.9",
|
|
86
88
|
"@babel/plugin-proposal-class-properties": "^7.4.4",
|
|
87
89
|
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
|
88
90
|
"@babel/preset-env": "^7.8.0",
|
|
@@ -97,20 +99,22 @@
|
|
|
97
99
|
"@sproutsocial/seeds-networkcolor": "^2.9.0",
|
|
98
100
|
"@sproutsocial/seeds-space": "^0.4.7",
|
|
99
101
|
"@sproutsocial/seeds-typography": "^3.0.1",
|
|
100
|
-
"@storybook/addon-a11y": "^6.
|
|
101
|
-
"@storybook/addon-actions": "^6.
|
|
102
|
-
"@storybook/addon-
|
|
103
|
-
"@storybook/addon-
|
|
104
|
-
"@storybook/addon-
|
|
105
|
-
"@storybook/
|
|
102
|
+
"@storybook/addon-a11y": "^6.4.19",
|
|
103
|
+
"@storybook/addon-actions": "^6.4.19",
|
|
104
|
+
"@storybook/addon-controls": "^6.4.19",
|
|
105
|
+
"@storybook/addon-knobs": "^6.4.0",
|
|
106
|
+
"@storybook/addon-storysource": "^6.4.19",
|
|
107
|
+
"@storybook/addon-viewport": "^6.4.19",
|
|
108
|
+
"@storybook/addons": "^6.4.19",
|
|
106
109
|
"@storybook/react": "^6.4.19",
|
|
107
|
-
"@storybook/theming": "^6.
|
|
110
|
+
"@storybook/theming": "^6.4.19",
|
|
108
111
|
"@testing-library/react": "^11.2.2",
|
|
109
112
|
"@testing-library/user-event": "^13.0.0",
|
|
113
|
+
"axios": "^0.26.1",
|
|
110
114
|
"babel-core": "^7.0.0-bridge",
|
|
111
115
|
"babel-eslint": "10.1.0",
|
|
112
116
|
"babel-jest": "26.1.0",
|
|
113
|
-
"babel-loader": "8.
|
|
117
|
+
"babel-loader": "8.2.3",
|
|
114
118
|
"babel-plugin-inline-import": "^3.0.0",
|
|
115
119
|
"babel-plugin-polished": "^1.1.0",
|
|
116
120
|
"babel-plugin-styled-components": "^1.10.0",
|
|
@@ -138,7 +142,7 @@
|
|
|
138
142
|
"jest": "26.1.0",
|
|
139
143
|
"jest-axe": "3.4.0",
|
|
140
144
|
"jest-dom": "^3.5.0",
|
|
141
|
-
"jest-styled-components": "7.0.
|
|
145
|
+
"jest-styled-components": "7.0.8",
|
|
142
146
|
"jscodeshift": "^0.6.4",
|
|
143
147
|
"json-to-scss": "^1.6.2",
|
|
144
148
|
"lint-staged": "^10.2.11",
|
|
@@ -146,15 +150,15 @@
|
|
|
146
150
|
"npm-run-all": "^4.1.2",
|
|
147
151
|
"outdent": "^0.7.0",
|
|
148
152
|
"pify": "^4.0.1",
|
|
149
|
-
"playroom": "^0.
|
|
153
|
+
"playroom": "^0.27.9",
|
|
150
154
|
"prettier": "^2.0.5",
|
|
151
155
|
"prop-types": "^15.6.1",
|
|
152
156
|
"react": "16.12.0",
|
|
153
157
|
"react-dates": "^21.8.0",
|
|
154
158
|
"react-dom": "16.12.0",
|
|
155
159
|
"rimraf": "^2.6.3",
|
|
156
|
-
"storybook-dark-mode": "^1.0.
|
|
157
|
-
"styled-components": "5.
|
|
160
|
+
"storybook-dark-mode": "^1.0.9",
|
|
161
|
+
"styled-components": "5.3.3",
|
|
158
162
|
"stylelint": "^13.8.0",
|
|
159
163
|
"stylelint-config-recommended": "^2.2.0",
|
|
160
164
|
"stylelint-config-styled-components": "^0.1.1",
|
|
@@ -179,6 +183,7 @@
|
|
|
179
183
|
"styled-components": "^5.0.0-rc.2"
|
|
180
184
|
},
|
|
181
185
|
"resolutions": {
|
|
186
|
+
"**/eslint-import-resolver-node": "0.3.4",
|
|
182
187
|
"lodash": "^4.17.21",
|
|
183
188
|
"react-popper/create-react-context": "^0.3.0"
|
|
184
189
|
},
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
2
|
-
<path d="M5.778 8.222a1.778 1.778 0 100-3.555 1.778 1.778 0 000 3.555zm7.11-.666h-2.666a.667.667 0 000 1.333h2.667a.667.667 0 000-1.333zM6.668 9.11H4.889a2.222 2.222 0 00-2.222 2.222c0 .245.2.445.444.445h5.333a.444.444 0 00.445-.445A2.222 2.222 0 006.667 9.11zm6.222-3.778h-2.667a.667.667 0 000 1.334h2.667a.667.667 0 000-1.334zM14.222 2H1.778C.796 2 0 2.796 0 3.778v8.889c0 .982.796 1.777 1.778 1.777h12.444c.982 0 1.778-.795 1.778-1.777v-8.89C16 2.797 15.203 2 14.222 2zm.445 10.667c0 .245-.2.444-.445.444H1.778a.445.445 0 01-.445-.444v-8.89c0-.244.2-.444.445-.444h12.444c.245 0 .445.2.445.445v8.889z"/>
|
|
3
|
-
</svg>
|
package/icons/magic-wand.svg
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 16">
|
|
2
|
-
<path d="M7.767.156a.24.24 0 01.45 0l.44 1.178 1.177.44a.241.241 0 010 .452l-1.177.44-.44 1.178a.24.24 0 01-.45 0l-.44-1.177-1.205-.441C6.028 2.19 5.994 2.1 5.994 2s.034-.19.128-.225l1.205-.441.44-1.178zm5.576.283a1.498 1.498 0 012.12 0l1.08 1.081a1.503 1.503 0 010 2.121L4.636 15.561a1.5 1.5 0 01-2.119 0l-1.08-1.08a1.502 1.502 0 010-2.123L13.344.44zm1.061 1.415l-3.28 3.281.727.728 3.278-3.282-.725-.727zM.234 3.663L1.998 3l.662-1.766a.36.36 0 01.674 0L3.996 3l1.764.663a.362.362 0 010 .675l-1.764.663-.662 1.766a.361.361 0 01-.674 0L1.998 5 .234 4.338a.361.361 0 010-.675zm10.99 8.001l1.763-.662.662-1.766c.053-.17.187-.235.337-.235.15 0 .284.066.337.235l.662 1.766 1.764.662a.362.362 0 010 .675l-1.764.663-.662 1.766a.361.361 0 01-.337.234.361.361 0 01-.337-.234l-.662-1.766-1.764-.663c-.168-.053-.234-.187-.234-.337 0-.15.066-.285.234-.338z"/>
|
|
3
|
-
</svg>
|