@sproutsocial/racine 11.0.2-dependencies.0 → 11.0.2
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 +7 -0
- package/__flow__/Avatar/index.test.js +5 -0
- package/__flow__/Badge/index.test.js +5 -0
- package/__flow__/Breadcrumb/index.js +2 -0
- package/__flow__/Button/index.stories.js +67 -51
- package/__flow__/CharacterCounter/index.test.js +8 -0
- package/__flow__/ChartLegend/index.test.js +37 -0
- package/__flow__/Collapsible/index.js +3 -0
- package/__flow__/Drawer/index.js +4 -0
- package/__flow__/EmptyState/index.test.js +3 -1
- package/__flow__/EnumIconNames.js +1 -1
- package/__flow__/Fieldset/index.js +8 -2
- package/__flow__/Icon/index.js +5 -1
- package/__flow__/IconViewBoxes.js +1 -1
- package/__flow__/Link/index.test.js +10 -0
- package/__flow__/Loader/index.test.js +14 -0
- package/__flow__/Menu/__snapshots__/index.test.js.snap +2 -2
- package/__flow__/Menu/index.js +7 -0
- package/__flow__/Message/index.js +7 -0
- package/__flow__/Modal/index.js +5 -0
- package/__flow__/Modal/index.test.js +19 -0
- package/__flow__/Popout/index.js +4 -1
- package/__flow__/SegmentedControl/index.js +2 -0
- package/__flow__/Table/index.js +6 -0
- package/__flow__/Text/index.js +8 -0
- package/__flow__/Text/index.test.js +39 -0
- package/__flow__/themes/dark/theme.js +1 -0
- package/__flow__/themes/light/theme.js +1 -0
- package/commonjs/Breadcrumb/index.js +1 -0
- package/commonjs/Collapsible/index.js +2 -0
- package/commonjs/Drawer/index.js +3 -0
- package/commonjs/Fieldset/index.js +6 -2
- package/commonjs/Icon/index.js +3 -1
- package/commonjs/IconViewBoxes.js +2 -0
- package/commonjs/Menu/index.js +6 -0
- package/commonjs/Message/index.js +13 -0
- package/commonjs/Modal/index.js +4 -0
- package/commonjs/Popout/index.js +5 -2
- package/commonjs/SegmentedControl/index.js +1 -0
- package/commonjs/Table/index.js +5 -0
- package/commonjs/Text/index.js +7 -0
- package/commonjs/include-icons.js +1 -1
- package/commonjs/themes/dark/theme.js +1 -0
- package/commonjs/themes/light/theme.js +1 -0
- package/dist/iconList.js +1 -1
- package/dist/icons.svg +1 -1
- package/dist/themes/dark/dark.scss +1 -0
- package/dist/themes/light/light.scss +1 -0
- package/icons/address-card-outline.svg +3 -0
- 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/magic-wand.svg +3 -0
- package/icons/whatsapp.svg +5 -5
- package/includeIcons.js +1 -1
- package/lib/Breadcrumb/index.js +1 -0
- package/lib/Collapsible/index.js +2 -0
- package/lib/Drawer/index.js +3 -0
- package/lib/Fieldset/index.js +6 -2
- package/lib/Icon/index.js +3 -1
- package/lib/IconViewBoxes.js +2 -0
- package/lib/Menu/index.js +6 -0
- package/lib/Message/index.js +13 -0
- package/lib/Modal/index.js +4 -0
- package/lib/Popout/index.js +5 -2
- package/lib/SegmentedControl/index.js +1 -0
- package/lib/Table/index.js +5 -0
- package/lib/Text/index.js +7 -0
- package/lib/include-icons.js +1 -1
- package/lib/themes/dark/theme.js +1 -0
- package/lib/themes/light/theme.js +1 -0
- package/package.json +15 -20
package/lib/themes/dark/theme.js
CHANGED
|
@@ -170,6 +170,7 @@ var colors = _extends({}, lightTheme.colors, {
|
|
|
170
170
|
danger: red.foreground,
|
|
171
171
|
info: blue.foreground,
|
|
172
172
|
opportunity: purple.foreground,
|
|
173
|
+
applied: COLORS.COLOR_BLUE_400,
|
|
173
174
|
positive_sentiment: COLORS.COLOR_BLUE_700,
|
|
174
175
|
negative_sentiment: COLORS.COLOR_RED_600,
|
|
175
176
|
neutral_sentiment: COLORS.COLOR_NEUTRAL_600
|
|
@@ -168,6 +168,7 @@ var colors = _extends({
|
|
|
168
168
|
danger: red.foreground,
|
|
169
169
|
info: blue.foreground,
|
|
170
170
|
opportunity: purple.foreground,
|
|
171
|
+
applied: COLORS.COLOR_BLUE_700,
|
|
171
172
|
positive_sentiment: COLORS.COLOR_BLUE_700,
|
|
172
173
|
negative_sentiment: COLORS.COLOR_RED_600,
|
|
173
174
|
neutral_sentiment: COLORS.COLOR_NEUTRAL_600
|
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",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [
|
|
6
6
|
"__flow__",
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
"./includeIcons.js"
|
|
22
22
|
],
|
|
23
23
|
"scripts": {
|
|
24
|
-
"preinstall": "node ./bin/buildNpm.js",
|
|
25
24
|
"install-deps": "yarn install",
|
|
26
25
|
"prepublishOnly": "yarn run build",
|
|
27
26
|
"precommit": "lint-staged",
|
|
@@ -63,7 +62,6 @@
|
|
|
63
62
|
]
|
|
64
63
|
},
|
|
65
64
|
"dependencies": {
|
|
66
|
-
"@storybook/addon-controls": "^6.4.19",
|
|
67
65
|
"@styled-system/theme-get": "^5.1.2",
|
|
68
66
|
"classnames": "^2.2.6",
|
|
69
67
|
"lodash.curry": "^4.1.1",
|
|
@@ -77,14 +75,14 @@
|
|
|
77
75
|
"react-popper": "^1.3.3",
|
|
78
76
|
"react-spring": "^8.0.25",
|
|
79
77
|
"react-toastify": "^6.0.5",
|
|
80
|
-
"react-virtualized": "9.
|
|
78
|
+
"react-virtualized": "9.18.5",
|
|
81
79
|
"scroll-into-view-if-needed": "1.1.0",
|
|
82
80
|
"styled-system": "^5.1.5",
|
|
83
81
|
"use-measure": "^0.2.2"
|
|
84
82
|
},
|
|
85
83
|
"devDependencies": {
|
|
86
84
|
"@babel/cli": "^7.5.5",
|
|
87
|
-
"@babel/core": "^7.
|
|
85
|
+
"@babel/core": "^7.4.5",
|
|
88
86
|
"@babel/plugin-proposal-class-properties": "^7.4.4",
|
|
89
87
|
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
|
90
88
|
"@babel/preset-env": "^7.8.0",
|
|
@@ -99,22 +97,20 @@
|
|
|
99
97
|
"@sproutsocial/seeds-networkcolor": "^2.9.0",
|
|
100
98
|
"@sproutsocial/seeds-space": "^0.4.7",
|
|
101
99
|
"@sproutsocial/seeds-typography": "^3.0.1",
|
|
102
|
-
"@storybook/addon-a11y": "^6.
|
|
103
|
-
"@storybook/addon-actions": "^6.
|
|
104
|
-
"@storybook/addon-
|
|
105
|
-
"@storybook/addon-
|
|
106
|
-
"@storybook/addon-
|
|
107
|
-
"@storybook/
|
|
108
|
-
"@storybook/addons": "^6.4.19",
|
|
100
|
+
"@storybook/addon-a11y": "^6.1.11",
|
|
101
|
+
"@storybook/addon-actions": "^6.3.8",
|
|
102
|
+
"@storybook/addon-knobs": "^6.1.11",
|
|
103
|
+
"@storybook/addon-storysource": "^6.1.11",
|
|
104
|
+
"@storybook/addon-viewport": "^6.1.11",
|
|
105
|
+
"@storybook/addons": "^6.1.11",
|
|
109
106
|
"@storybook/react": "^6.4.19",
|
|
110
|
-
"@storybook/theming": "^6.
|
|
107
|
+
"@storybook/theming": "^6.1.11",
|
|
111
108
|
"@testing-library/react": "^11.2.2",
|
|
112
109
|
"@testing-library/user-event": "^13.0.0",
|
|
113
|
-
"axios": "^0.26.1",
|
|
114
110
|
"babel-core": "^7.0.0-bridge",
|
|
115
111
|
"babel-eslint": "10.1.0",
|
|
116
112
|
"babel-jest": "26.1.0",
|
|
117
|
-
"babel-loader": "8.
|
|
113
|
+
"babel-loader": "8.0.6",
|
|
118
114
|
"babel-plugin-inline-import": "^3.0.0",
|
|
119
115
|
"babel-plugin-polished": "^1.1.0",
|
|
120
116
|
"babel-plugin-styled-components": "^1.10.0",
|
|
@@ -142,7 +138,7 @@
|
|
|
142
138
|
"jest": "26.1.0",
|
|
143
139
|
"jest-axe": "3.4.0",
|
|
144
140
|
"jest-dom": "^3.5.0",
|
|
145
|
-
"jest-styled-components": "7.0.
|
|
141
|
+
"jest-styled-components": "7.0.0-beta.1",
|
|
146
142
|
"jscodeshift": "^0.6.4",
|
|
147
143
|
"json-to-scss": "^1.6.2",
|
|
148
144
|
"lint-staged": "^10.2.11",
|
|
@@ -150,15 +146,15 @@
|
|
|
150
146
|
"npm-run-all": "^4.1.2",
|
|
151
147
|
"outdent": "^0.7.0",
|
|
152
148
|
"pify": "^4.0.1",
|
|
153
|
-
"playroom": "^0.
|
|
149
|
+
"playroom": "^0.22.2",
|
|
154
150
|
"prettier": "^2.0.5",
|
|
155
151
|
"prop-types": "^15.6.1",
|
|
156
152
|
"react": "16.12.0",
|
|
157
153
|
"react-dates": "^21.8.0",
|
|
158
154
|
"react-dom": "16.12.0",
|
|
159
155
|
"rimraf": "^2.6.3",
|
|
160
|
-
"storybook-dark-mode": "^1.0.
|
|
161
|
-
"styled-components": "5.
|
|
156
|
+
"storybook-dark-mode": "^1.0.7",
|
|
157
|
+
"styled-components": "5.0.0-rc.2",
|
|
162
158
|
"stylelint": "^13.8.0",
|
|
163
159
|
"stylelint-config-recommended": "^2.2.0",
|
|
164
160
|
"stylelint-config-styled-components": "^0.1.1",
|
|
@@ -183,7 +179,6 @@
|
|
|
183
179
|
"styled-components": "^5.0.0-rc.2"
|
|
184
180
|
},
|
|
185
181
|
"resolutions": {
|
|
186
|
-
"**/eslint-import-resolver-node": "0.3.4",
|
|
187
182
|
"lodash": "^4.17.21",
|
|
188
183
|
"react-popper/create-react-context": "^0.3.0"
|
|
189
184
|
},
|