@sproutsocial/racine 11.7.0 → 11.9.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.
Files changed (37) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/__flow__/Checkbox/index.stories.js +73 -56
  3. package/__flow__/EnumIconNames.js +1 -1
  4. package/__flow__/Icon/index.stories.js +41 -36
  5. package/__flow__/IconViewBoxes.js +1 -1
  6. package/__flow__/Input/index.js +47 -23
  7. package/__flow__/Input/index.stories.js +59 -33
  8. package/__flow__/Input/index.test.js +20 -0
  9. package/__flow__/Input/styles.js +2 -2
  10. package/__flow__/Loader/index.stories.js +18 -14
  11. package/__flow__/Numeral/index.stories.js +109 -50
  12. package/__flow__/Radio/index.stories.js +41 -26
  13. package/__flow__/Switch/index.stories.js +26 -18
  14. package/__flow__/themes/extendedThemes/sproutTheme/dark/theme.js +9 -0
  15. package/__flow__/themes/extendedThemes/sproutTheme/light/theme.js +9 -0
  16. package/__flow__/types/theme.flow.js +2 -0
  17. package/commonjs/IconViewBoxes.js +2 -0
  18. package/commonjs/Input/index.js +42 -22
  19. package/commonjs/Input/styles.js +2 -2
  20. package/commonjs/include-icons.js +1 -1
  21. package/commonjs/themes/extendedThemes/sproutTheme/dark/theme.js +11 -2
  22. package/commonjs/themes/extendedThemes/sproutTheme/light/theme.js +11 -2
  23. package/dist/iconList.js +1 -1
  24. package/dist/icons.svg +1 -1
  25. package/dist/themes/extendedThemes/sproutTheme/dark/theme.scss +14 -0
  26. package/dist/themes/extendedThemes/sproutTheme/light/theme.scss +14 -0
  27. package/icons/help-alt.svg +3 -0
  28. package/icons/plug.svg +3 -0
  29. package/includeIcons.js +1 -1
  30. package/lib/IconViewBoxes.js +2 -0
  31. package/lib/Input/index.js +42 -22
  32. package/lib/Input/styles.js +2 -2
  33. package/lib/include-icons.js +1 -1
  34. package/lib/themes/extendedThemes/sproutTheme/dark/theme.js +9 -1
  35. package/lib/themes/extendedThemes/sproutTheme/light/theme.js +9 -1
  36. package/lib/types/theme.flow.js +1 -1
  37. package/package.json +1 -1
@@ -1,5 +1,12 @@
1
1
  $theme: (
2
2
  __esModule: true,
3
+ analytics: (
4
+ trend: (
5
+ positive: #08c4b2,
6
+ neutral: #f3f4f4,
7
+ negative: #f3f4f4
8
+ )
9
+ ),
3
10
  datePicker: (
4
11
  comparison: (
5
12
  background: (
@@ -478,6 +485,13 @@ $theme: (
478
485
  base: #364141
479
486
  )
480
487
  )
488
+ ),
489
+ analytics: (
490
+ trend: (
491
+ positive: #08c4b2,
492
+ neutral: #f3f4f4,
493
+ negative: #f3f4f4
494
+ )
481
495
  )
482
496
  ),
483
497
  typography: (
@@ -1,5 +1,12 @@
1
1
  $theme: (
2
2
  __esModule: true,
3
+ analytics: (
4
+ trend: (
5
+ positive: #067c7c,
6
+ neutral: #364141,
7
+ negative: #364141
8
+ )
9
+ ),
3
10
  datePicker: (
4
11
  comparison: (
5
12
  background: (
@@ -478,6 +485,13 @@ $theme: (
478
485
  base: #364141
479
486
  )
480
487
  )
488
+ ),
489
+ analytics: (
490
+ trend: (
491
+ positive: #067c7c,
492
+ neutral: #364141,
493
+ negative: #364141
494
+ )
481
495
  )
482
496
  ),
483
497
  typography: (
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 16">
2
+ <path d="M6.013 0C3.52 0 1.903 1.022.635 2.845a.75.75 0 00.162 1.027l1.348 1.022a.75.75 0 001.039-.13c.783-.98 1.363-1.545 2.586-1.545.961 0 2.15.619 2.15 1.551 0 .705-.581 1.067-1.53 1.599-1.107.62-2.572 1.393-2.572 3.325V10c0 .414.335.75.75.75h2.264a.75.75 0 00.75-.75v-.18c0-1.34 3.915-1.396 3.915-5.02 0-2.73-2.831-4.8-5.484-4.8zM5.7 11.67a2.167 2.167 0 00-2.165 2.165C3.535 15.03 4.506 16 5.7 16a2.167 2.167 0 002.165-2.165A2.167 2.167 0 005.7 11.671z"/>
3
+ </svg>
package/icons/plug.svg ADDED
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 16">
2
+ <path d="M3 0a1 1 0 011 1v3H2V1a1 1 0 011-1zm6 0a1 1 0 011 1v3H8V1a1 1 0 011-1zm2 5a.999.999 0 110 2v1c0 2.419-1.719 4.41-4 4.9V16H5v-3.1c-2.282-.49-4-2.481-4-4.9V7a1 1 0 110-2h10z"/>
3
+ </svg>