@sproutsocial/racine 8.5.0 → 8.6.1-collapsible-fix.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 +18 -0
- package/__flow__/Collapsible/index.js +41 -11
- package/__flow__/Collapsible/index.stories.js +77 -0
- package/__flow__/Collapsible/styles.js +26 -2
- package/__flow__/EnumIconNames.js +1 -1
- package/__flow__/IconViewBoxes.js +1 -1
- package/__flow__/dataviz/dataviz.stories.js +12 -0
- package/__flow__/dataviz/index.js +13 -0
- package/__flow__/themes/dark/dataviz-palette.js +50 -0
- package/__flow__/themes/dark/theme.js +2 -0
- package/__flow__/themes/default/dataviz-palette.js +50 -0
- package/__flow__/themes/default/theme.js +2 -0
- package/commonjs/Collapsible/index.js +29 -11
- package/commonjs/Collapsible/styles.js +4 -1
- package/commonjs/IconViewBoxes.js +3 -0
- package/commonjs/dataviz/index.js +24 -0
- package/commonjs/include-icons.js +1 -1
- package/commonjs/themes/dark/dataviz-palette.js +35 -0
- package/commonjs/themes/dark/theme.js +3 -1
- package/commonjs/themes/default/dataviz-palette.js +35 -0
- package/commonjs/themes/default/theme.js +3 -1
- package/dist/iconList.js +1 -1
- package/dist/icons.svg +1 -1
- package/icons/deconstructed-positive-sentiment.svg +3 -0
- package/icons/flat-positive-sentiment-outline.svg +4 -0
- package/icons/flat-positive-sentiment.svg +3 -0
- package/includeIcons.js +1 -1
- package/lib/Collapsible/index.js +29 -11
- package/lib/Collapsible/styles.js +4 -1
- package/lib/IconViewBoxes.js +3 -0
- package/lib/dataviz/index.js +13 -0
- package/lib/include-icons.js +1 -1
- package/lib/themes/dark/dataviz-palette.js +26 -0
- package/lib/themes/dark/theme.js +2 -1
- package/lib/themes/default/dataviz-palette.js +26 -0
- package/lib/themes/default/theme.js +2 -1
- package/package.json +2 -1
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18">
|
|
2
|
+
<path d="M11.25 7.75a1 1 0 112 0V8h1.5v-.25a2.5 2.5 0 00-5 0V8h1.5v-.25zm-5.5-1a1 1 0 00-1 1V8h-1.5v-.25a2.5 2.5 0 015 0V8h-1.5v-.25a1 1 0 00-1-1zm7.25 3.5c0 1.657-1.5 3.5-4 3.5s-4-1.843-4-3.5h8z"/>
|
|
3
|
+
<path fill="#364141" fill-rule="evenodd" d="M18 9A9 9 0 110 9a9 9 0 0118 0zm-1.5 0a7.5 7.5 0 11-15 0 7.5 7.5 0 0115 0z" clip-rule="evenodd"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18">
|
|
2
|
+
<path fill-rule="evenodd" d="M9 18A9 9 0 109 0a9 9 0 000 18zm2.75-10.25a1 1 0 112 0V8h1.5v-.25a2.5 2.5 0 00-5 0V8h1.5v-.25zm-6.5-1a1 1 0 00-1 1V8h-1.5v-.25a2.5 2.5 0 015 0V8h-1.5v-.25a1 1 0 00-1-1zm7.75 3.5c0 1.657-1.5 3.5-4 3.5s-4-1.843-4-3.5h8z" clip-rule="evenodd"/>
|
|
3
|
+
</svg>
|