@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.
- package/CHANGELOG.md +35 -0
- package/__flow__/Checkbox/index.stories.js +73 -56
- package/__flow__/EnumIconNames.js +1 -1
- package/__flow__/Icon/index.stories.js +41 -36
- package/__flow__/IconViewBoxes.js +1 -1
- package/__flow__/Input/index.js +47 -23
- package/__flow__/Input/index.stories.js +59 -33
- package/__flow__/Input/index.test.js +20 -0
- package/__flow__/Input/styles.js +2 -2
- package/__flow__/Loader/index.stories.js +18 -14
- package/__flow__/Numeral/index.stories.js +109 -50
- package/__flow__/Radio/index.stories.js +41 -26
- package/__flow__/Switch/index.stories.js +26 -18
- package/__flow__/themes/extendedThemes/sproutTheme/dark/theme.js +9 -0
- package/__flow__/themes/extendedThemes/sproutTheme/light/theme.js +9 -0
- package/__flow__/types/theme.flow.js +2 -0
- package/commonjs/IconViewBoxes.js +2 -0
- package/commonjs/Input/index.js +42 -22
- package/commonjs/Input/styles.js +2 -2
- package/commonjs/include-icons.js +1 -1
- package/commonjs/themes/extendedThemes/sproutTheme/dark/theme.js +11 -2
- package/commonjs/themes/extendedThemes/sproutTheme/light/theme.js +11 -2
- package/dist/iconList.js +1 -1
- package/dist/icons.svg +1 -1
- package/dist/themes/extendedThemes/sproutTheme/dark/theme.scss +14 -0
- package/dist/themes/extendedThemes/sproutTheme/light/theme.scss +14 -0
- package/icons/help-alt.svg +3 -0
- package/icons/plug.svg +3 -0
- package/includeIcons.js +1 -1
- package/lib/IconViewBoxes.js +2 -0
- package/lib/Input/index.js +42 -22
- package/lib/Input/styles.js +2 -2
- package/lib/include-icons.js +1 -1
- package/lib/themes/extendedThemes/sproutTheme/dark/theme.js +9 -1
- package/lib/themes/extendedThemes/sproutTheme/light/theme.js +9 -1
- package/lib/types/theme.flow.js +1 -1
- 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