@sproutsocial/racine 11.1.0 → 11.1.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 +12 -0
- package/__flow__/EnumIconNames.js +1 -1
- package/__flow__/IconViewBoxes.js +1 -1
- package/__flow__/themes/dark/theme.js +1 -0
- package/__flow__/themes/light/literal-colors.js +2 -0
- package/__flow__/themes/light/theme.js +1 -0
- package/__flow__/types/theme.colors.flow.js +27 -0
- package/bin/buildNpm.js +58 -0
- package/commonjs/IconViewBoxes.js +1 -0
- package/commonjs/include-icons.js +1 -1
- package/commonjs/themes/light/literal-colors.js +4 -2
- package/commonjs/types/theme.colors.flow.js +2 -0
- package/dist/iconList.js +1 -1
- package/dist/icons.svg +1 -1
- package/dist/themes/dark/dark.scss +4 -2
- package/dist/themes/light/light.scss +4 -2
- package/icons/power-up-outline.svg +3 -0
- package/includeIcons.js +1 -1
- package/lib/IconViewBoxes.js +1 -0
- package/lib/include-icons.js +1 -1
- package/lib/themes/light/literal-colors.js +4 -2
- package/lib/types/theme.colors.flow.js +2 -1
- package/package.json +4 -2
|
@@ -267,7 +267,8 @@ $dark: (
|
|
|
267
267
|
700: #515e5f,
|
|
268
268
|
800: #364141,
|
|
269
269
|
900: #273333,
|
|
270
|
-
1000: #162020
|
|
270
|
+
1000: #162020,
|
|
271
|
+
1100: #040404
|
|
271
272
|
),
|
|
272
273
|
green: (
|
|
273
274
|
0: #ebf9eb,
|
|
@@ -294,7 +295,8 @@ $dark: (
|
|
|
294
295
|
700: #db3e3e,
|
|
295
296
|
800: #c63434,
|
|
296
297
|
900: #992222,
|
|
297
|
-
1000: #6d1313
|
|
298
|
+
1000: #6d1313,
|
|
299
|
+
1100: #2b1111
|
|
298
300
|
),
|
|
299
301
|
blue: (
|
|
300
302
|
0: #e9f8ff,
|
|
@@ -361,7 +361,8 @@ $light: (
|
|
|
361
361
|
700: #515e5f,
|
|
362
362
|
800: #364141,
|
|
363
363
|
900: #273333,
|
|
364
|
-
1000: #162020
|
|
364
|
+
1000: #162020,
|
|
365
|
+
1100: #040404
|
|
365
366
|
),
|
|
366
367
|
green: (
|
|
367
368
|
0: #ebf9eb,
|
|
@@ -388,7 +389,8 @@ $light: (
|
|
|
388
389
|
700: #db3e3e,
|
|
389
390
|
800: #c63434,
|
|
390
391
|
900: #992222,
|
|
391
|
-
1000: #6d1313
|
|
392
|
+
1000: #6d1313,
|
|
393
|
+
1100: #2b1111
|
|
392
394
|
),
|
|
393
395
|
blue: (
|
|
394
396
|
0: #e9f8ff,
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 16">
|
|
2
|
+
<path d="M11.912 5.4a.745.745 0 00-.662-.4H6.356l1.589-3.972a.75.75 0 00-.075-.7A.784.784 0 007.25 0h-5.5a.75.75 0 00-.743.651l-1 7.5A.752.752 0 00.75 9h4.572l-1.306 6.066a.75.75 0 00.438.846.485.485 0 00.296.088.751.751 0 00.619-.326l6.5-9.5a.75.75 0 00.043-.774zm-5.63 6.284l.701-3.275a.749.749 0 00-.15-.628.745.745 0 00-.583-.281H1.607l.8-6h3.737l-1.59 3.972a.763.763 0 00.074.7.746.746 0 00.622.328h4.578l-3.547 5.184z"/>
|
|
3
|
+
</svg>
|