@sproutsocial/racine 11.0.1 → 11.0.2-dependencies.1
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 +0 -5
- package/__flow__/Badge/index.test.js +0 -5
- package/__flow__/Breadcrumb/index.js +2 -0
- package/__flow__/Button/index.stories.js +51 -67
- package/__flow__/CharacterCounter/index.test.js +0 -8
- package/__flow__/ChartLegend/index.test.js +0 -37
- package/__flow__/Collapsible/index.js +3 -0
- package/__flow__/Drawer/index.js +4 -0
- package/__flow__/EmptyState/index.test.js +1 -3
- 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 +0 -10
- package/__flow__/Loader/index.test.js +0 -14
- 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 +0 -19
- 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 +0 -39
- package/__flow__/index.js +1 -0
- package/__flow__/systemProps/background.js +28 -0
- package/__flow__/systemProps/border.js +76 -0
- package/__flow__/systemProps/color.js +25 -0
- package/__flow__/systemProps/custom.js +23 -0
- package/__flow__/systemProps/flexbox.js +42 -0
- package/__flow__/systemProps/grid.js +43 -0
- package/__flow__/systemProps/index.js +17 -0
- package/__flow__/systemProps/layout.js +43 -0
- package/__flow__/systemProps/position.js +29 -0
- package/__flow__/systemProps/shadow.js +18 -0
- package/__flow__/systemProps/space.js +83 -0
- package/__flow__/systemProps/systemProps.js +55 -0
- package/__flow__/systemProps/tests/__snapshots__/background.test.js.snap +96 -0
- package/__flow__/systemProps/tests/__snapshots__/border.test.js.snap +469 -0
- package/__flow__/systemProps/tests/__snapshots__/color.test.js.snap +55 -0
- package/__flow__/systemProps/tests/__snapshots__/custom.test.js.snap +36 -0
- package/__flow__/systemProps/tests/__snapshots__/flexbox.test.js.snap +239 -0
- package/__flow__/systemProps/tests/__snapshots__/grid.test.js.snap +166 -0
- package/__flow__/systemProps/tests/__snapshots__/layout.test.js.snap +218 -0
- package/__flow__/systemProps/tests/__snapshots__/position.test.js.snap +115 -0
- package/__flow__/systemProps/tests/__snapshots__/shadow.test.js.snap +25 -0
- package/__flow__/systemProps/tests/__snapshots__/space.test.js.snap +39 -0
- package/__flow__/systemProps/tests/__snapshots__/typography.test.js.snap +166 -0
- package/__flow__/systemProps/tests/__snapshots__/variant.test.js.snap +17 -0
- package/__flow__/systemProps/tests/background.test.js +90 -0
- package/__flow__/systemProps/tests/border.test.js +299 -0
- package/__flow__/systemProps/tests/color.test.js +49 -0
- package/__flow__/systemProps/tests/custom.test.js +38 -0
- package/__flow__/systemProps/tests/flexbox.test.js +150 -0
- package/__flow__/systemProps/tests/grid.test.js +123 -0
- package/__flow__/systemProps/tests/layout.test.js +135 -0
- package/__flow__/systemProps/tests/position.test.js +78 -0
- package/__flow__/systemProps/tests/shadow.test.js +30 -0
- package/__flow__/systemProps/tests/space.test.js +32 -0
- package/__flow__/systemProps/tests/types.flow.js +55 -0
- package/__flow__/systemProps/tests/typography.test.js +93 -0
- package/__flow__/systemProps/tests/variant.test.js +25 -0
- package/__flow__/systemProps/types.flow.js +20 -0
- package/__flow__/systemProps/typography.js +34 -0
- package/__flow__/systemProps/variant.js +18 -0
- package/__flow__/themes/dark/theme.js +1 -0
- package/__flow__/themes/light/theme.js +1 -0
- package/bin/buildNpm.js +58 -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/index.js +78 -0
- package/commonjs/systemProps/background.js +9 -0
- package/commonjs/systemProps/border.js +9 -0
- package/commonjs/systemProps/color.js +9 -0
- package/commonjs/systemProps/custom.js +12 -0
- package/commonjs/systemProps/flexbox.js +9 -0
- package/commonjs/systemProps/grid.js +9 -0
- package/commonjs/systemProps/index.js +115 -0
- package/commonjs/systemProps/layout.js +9 -0
- package/commonjs/systemProps/position.js +9 -0
- package/commonjs/systemProps/shadow.js +9 -0
- package/commonjs/systemProps/space.js +10 -0
- package/commonjs/systemProps/systemProps.js +33 -0
- package/commonjs/systemProps/tests/types.flow.js +46 -0
- package/commonjs/systemProps/types.flow.js +1 -0
- package/commonjs/systemProps/typography.js +9 -0
- package/commonjs/systemProps/variant.js +12 -0
- 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/index.js +1 -0
- package/lib/systemProps/background.js +2 -0
- package/lib/systemProps/border.js +2 -0
- package/lib/systemProps/color.js +2 -0
- package/lib/systemProps/custom.js +5 -0
- package/lib/systemProps/flexbox.js +2 -0
- package/lib/systemProps/grid.js +2 -0
- package/lib/systemProps/index.js +14 -0
- package/lib/systemProps/layout.js +2 -0
- package/lib/systemProps/position.js +2 -0
- package/lib/systemProps/shadow.js +2 -0
- package/lib/systemProps/space.js +3 -0
- package/lib/systemProps/systemProps.js +14 -0
- package/lib/systemProps/tests/types.flow.js +44 -0
- package/lib/systemProps/types.flow.js +0 -0
- package/lib/systemProps/typography.js +2 -0
- package/lib/systemProps/variant.js +5 -0
- package/lib/themes/dark/theme.js +1 -0
- package/lib/themes/light/theme.js +1 -0
- package/package.json +34 -17
package/commonjs/index.js
CHANGED
|
@@ -1,8 +1,86 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
|
+
var _exportNames = {
|
|
5
|
+
visuallyHidden: true,
|
|
6
|
+
focusRing: true,
|
|
7
|
+
disabled: true,
|
|
8
|
+
useSelect: true,
|
|
9
|
+
useMultiselect: true,
|
|
10
|
+
useTextContent: true,
|
|
11
|
+
theme: true,
|
|
12
|
+
darkTheme: true,
|
|
13
|
+
Icon: true,
|
|
14
|
+
Alert: true,
|
|
15
|
+
Banner: true,
|
|
16
|
+
Badge: true,
|
|
17
|
+
Indicator: true,
|
|
18
|
+
Card: true,
|
|
19
|
+
CharacterCounter: true,
|
|
20
|
+
Checkbox: true,
|
|
21
|
+
Radio: true,
|
|
22
|
+
Textarea: true,
|
|
23
|
+
ToggleHint: true,
|
|
24
|
+
Loader: true,
|
|
25
|
+
Text: true,
|
|
26
|
+
Image: true,
|
|
27
|
+
KeyboardKey: true,
|
|
28
|
+
ChartLegend: true,
|
|
29
|
+
Table: true,
|
|
30
|
+
TableCell: true,
|
|
31
|
+
TableHeaderCell: true,
|
|
32
|
+
TableRowAccordion: true,
|
|
33
|
+
Box: true,
|
|
34
|
+
Label: true,
|
|
35
|
+
Input: true,
|
|
36
|
+
Select: true,
|
|
37
|
+
Button: true,
|
|
38
|
+
Link: true,
|
|
39
|
+
Switch: true,
|
|
40
|
+
Token: true,
|
|
41
|
+
TokenInput: true,
|
|
42
|
+
Tabs: true,
|
|
43
|
+
Modal: true,
|
|
44
|
+
Popout: true,
|
|
45
|
+
ThemeProvider: true,
|
|
46
|
+
Tooltip: true,
|
|
47
|
+
Drawer: true,
|
|
48
|
+
LoaderButton: true,
|
|
49
|
+
Numeral: true,
|
|
50
|
+
Collapsible: true,
|
|
51
|
+
SegmentedControl: true,
|
|
52
|
+
EmptyState: true,
|
|
53
|
+
FormField: true,
|
|
54
|
+
Fieldset: true,
|
|
55
|
+
Message: true,
|
|
56
|
+
Stack: true,
|
|
57
|
+
Avatar: true,
|
|
58
|
+
Breadcrumb: true,
|
|
59
|
+
Skeleton: true,
|
|
60
|
+
ToastContainer: true,
|
|
61
|
+
Menu: true,
|
|
62
|
+
Listbox: true,
|
|
63
|
+
OverflowList: true,
|
|
64
|
+
toast: true,
|
|
65
|
+
MenuButton: true,
|
|
66
|
+
MenuButtonContext: true,
|
|
67
|
+
MenuItemContainer: true,
|
|
68
|
+
ListboxButton: true,
|
|
69
|
+
SingleDatePicker: true,
|
|
70
|
+
DateRangePicker: true,
|
|
71
|
+
VisuallyHidden: true
|
|
72
|
+
};
|
|
4
73
|
exports.VisuallyHidden = exports.DateRangePicker = exports.SingleDatePicker = exports.ListboxButton = exports.MenuItemContainer = exports.MenuButtonContext = exports.MenuButton = exports.toast = exports.OverflowList = exports.Listbox = exports.Menu = exports.ToastContainer = exports.Skeleton = exports.Breadcrumb = exports.Avatar = exports.Stack = exports.Message = exports.Fieldset = exports.FormField = exports.EmptyState = exports.SegmentedControl = exports.Collapsible = exports.Numeral = exports.LoaderButton = exports.Drawer = exports.Tooltip = exports.ThemeProvider = exports.Popout = exports.Modal = exports.Tabs = exports.TokenInput = exports.Token = exports.Switch = exports.Link = exports.Button = exports.Select = exports.Input = exports.Label = exports.Box = exports.TableRowAccordion = exports.TableHeaderCell = exports.TableCell = exports.Table = exports.ChartLegend = exports.KeyboardKey = exports.Image = exports.Text = exports.Loader = exports.ToggleHint = exports.Textarea = exports.Radio = exports.Checkbox = exports.CharacterCounter = exports.Card = exports.Indicator = exports.Badge = exports.Banner = exports.Alert = exports.Icon = exports.darkTheme = exports.theme = exports.useTextContent = exports.useMultiselect = exports.useSelect = exports.disabled = exports.focusRing = exports.visuallyHidden = void 0;
|
|
5
74
|
|
|
75
|
+
var _systemProps = require("./systemProps");
|
|
76
|
+
|
|
77
|
+
Object.keys(_systemProps).forEach(function (key) {
|
|
78
|
+
if (key === "default" || key === "__esModule") return;
|
|
79
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
80
|
+
if (key in exports && exports[key] === _systemProps[key]) return;
|
|
81
|
+
exports[key] = _systemProps[key];
|
|
82
|
+
});
|
|
83
|
+
|
|
6
84
|
var _mixins = require("./utils/mixins");
|
|
7
85
|
|
|
8
86
|
exports.visuallyHidden = _mixins.visuallyHidden;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.customSystemProps = void 0;
|
|
5
|
+
|
|
6
|
+
var _styledSystem = require("styled-system");
|
|
7
|
+
|
|
8
|
+
var customSystemProps = (0, _styledSystem.compose)((0, _styledSystem.system)({
|
|
9
|
+
cursor: true,
|
|
10
|
+
whiteSpace: true
|
|
11
|
+
}));
|
|
12
|
+
exports.customSystemProps = customSystemProps;
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
|
|
5
|
+
var _typesFlow = require("./types.flow.js");
|
|
6
|
+
|
|
7
|
+
Object.keys(_typesFlow).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _typesFlow[key]) return;
|
|
10
|
+
exports[key] = _typesFlow[key];
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
var _background = require("./background");
|
|
14
|
+
|
|
15
|
+
Object.keys(_background).forEach(function (key) {
|
|
16
|
+
if (key === "default" || key === "__esModule") return;
|
|
17
|
+
if (key in exports && exports[key] === _background[key]) return;
|
|
18
|
+
exports[key] = _background[key];
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
var _border = require("./border");
|
|
22
|
+
|
|
23
|
+
Object.keys(_border).forEach(function (key) {
|
|
24
|
+
if (key === "default" || key === "__esModule") return;
|
|
25
|
+
if (key in exports && exports[key] === _border[key]) return;
|
|
26
|
+
exports[key] = _border[key];
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
var _color = require("./color");
|
|
30
|
+
|
|
31
|
+
Object.keys(_color).forEach(function (key) {
|
|
32
|
+
if (key === "default" || key === "__esModule") return;
|
|
33
|
+
if (key in exports && exports[key] === _color[key]) return;
|
|
34
|
+
exports[key] = _color[key];
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
var _custom = require("./custom");
|
|
38
|
+
|
|
39
|
+
Object.keys(_custom).forEach(function (key) {
|
|
40
|
+
if (key === "default" || key === "__esModule") return;
|
|
41
|
+
if (key in exports && exports[key] === _custom[key]) return;
|
|
42
|
+
exports[key] = _custom[key];
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
var _flexbox = require("./flexbox");
|
|
46
|
+
|
|
47
|
+
Object.keys(_flexbox).forEach(function (key) {
|
|
48
|
+
if (key === "default" || key === "__esModule") return;
|
|
49
|
+
if (key in exports && exports[key] === _flexbox[key]) return;
|
|
50
|
+
exports[key] = _flexbox[key];
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
var _grid = require("./grid");
|
|
54
|
+
|
|
55
|
+
Object.keys(_grid).forEach(function (key) {
|
|
56
|
+
if (key === "default" || key === "__esModule") return;
|
|
57
|
+
if (key in exports && exports[key] === _grid[key]) return;
|
|
58
|
+
exports[key] = _grid[key];
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
var _layout = require("./layout");
|
|
62
|
+
|
|
63
|
+
Object.keys(_layout).forEach(function (key) {
|
|
64
|
+
if (key === "default" || key === "__esModule") return;
|
|
65
|
+
if (key in exports && exports[key] === _layout[key]) return;
|
|
66
|
+
exports[key] = _layout[key];
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
var _position = require("./position");
|
|
70
|
+
|
|
71
|
+
Object.keys(_position).forEach(function (key) {
|
|
72
|
+
if (key === "default" || key === "__esModule") return;
|
|
73
|
+
if (key in exports && exports[key] === _position[key]) return;
|
|
74
|
+
exports[key] = _position[key];
|
|
75
|
+
});
|
|
76
|
+
|
|
77
|
+
var _shadow = require("./shadow");
|
|
78
|
+
|
|
79
|
+
Object.keys(_shadow).forEach(function (key) {
|
|
80
|
+
if (key === "default" || key === "__esModule") return;
|
|
81
|
+
if (key in exports && exports[key] === _shadow[key]) return;
|
|
82
|
+
exports[key] = _shadow[key];
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
var _space = require("./space");
|
|
86
|
+
|
|
87
|
+
Object.keys(_space).forEach(function (key) {
|
|
88
|
+
if (key === "default" || key === "__esModule") return;
|
|
89
|
+
if (key in exports && exports[key] === _space[key]) return;
|
|
90
|
+
exports[key] = _space[key];
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
var _systemProps = require("./systemProps");
|
|
94
|
+
|
|
95
|
+
Object.keys(_systemProps).forEach(function (key) {
|
|
96
|
+
if (key === "default" || key === "__esModule") return;
|
|
97
|
+
if (key in exports && exports[key] === _systemProps[key]) return;
|
|
98
|
+
exports[key] = _systemProps[key];
|
|
99
|
+
});
|
|
100
|
+
|
|
101
|
+
var _typography = require("./typography");
|
|
102
|
+
|
|
103
|
+
Object.keys(_typography).forEach(function (key) {
|
|
104
|
+
if (key === "default" || key === "__esModule") return;
|
|
105
|
+
if (key in exports && exports[key] === _typography[key]) return;
|
|
106
|
+
exports[key] = _typography[key];
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
var _variant = require("./variant");
|
|
110
|
+
|
|
111
|
+
Object.keys(_variant).forEach(function (key) {
|
|
112
|
+
if (key === "default" || key === "__esModule") return;
|
|
113
|
+
if (key in exports && exports[key] === _variant[key]) return;
|
|
114
|
+
exports[key] = _variant[key];
|
|
115
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.spaceSystemProps = void 0;
|
|
5
|
+
|
|
6
|
+
var _styledSystem = require("styled-system");
|
|
7
|
+
|
|
8
|
+
/* eslint-disable prettier/prettier */
|
|
9
|
+
var spaceSystemProps = _styledSystem.space;
|
|
10
|
+
exports.spaceSystemProps = spaceSystemProps;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.systemProps = void 0;
|
|
5
|
+
|
|
6
|
+
var _styledSystem = require("styled-system");
|
|
7
|
+
|
|
8
|
+
var _background = require("./background");
|
|
9
|
+
|
|
10
|
+
var _border = require("./border");
|
|
11
|
+
|
|
12
|
+
var _color = require("./color");
|
|
13
|
+
|
|
14
|
+
var _custom = require("./custom");
|
|
15
|
+
|
|
16
|
+
var _flexbox = require("./flexbox");
|
|
17
|
+
|
|
18
|
+
var _grid = require("./grid");
|
|
19
|
+
|
|
20
|
+
var _layout = require("./layout");
|
|
21
|
+
|
|
22
|
+
var _position = require("./position");
|
|
23
|
+
|
|
24
|
+
var _shadow = require("./shadow");
|
|
25
|
+
|
|
26
|
+
var _space = require("./space");
|
|
27
|
+
|
|
28
|
+
var _typography = require("./typography");
|
|
29
|
+
|
|
30
|
+
var _variant = require("./variant");
|
|
31
|
+
|
|
32
|
+
var systemProps = (0, _styledSystem.compose)(_custom.customSystemProps, _variant.variantSystemProps, _background.backgroundSystemProps, _border.borderSystemProps, _color.colorSystemProps, _flexbox.flexboxSystemProps, _grid.gridSystemProps, _layout.layoutSystemProps, _position.positionSystemProps, _shadow.shadowSystemProps, _space.spaceSystemProps, _typography.typographySystemProps);
|
|
33
|
+
exports.systemProps = systemProps;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* All system props should be responsive but accepting a tuple of length 1-5.
|
|
5
|
+
*/
|
|
6
|
+
"a";
|
|
7
|
+
["a"];
|
|
8
|
+
["a", "a"];
|
|
9
|
+
["a", "a", "a"];
|
|
10
|
+
["a", "a", "a", "a"];
|
|
11
|
+
["a", "a", "a", "a", "a"]; // $FlowExpectedError
|
|
12
|
+
|
|
13
|
+
["a", "a", "a", "a", "a", "a"]; // $FlowExpectedError
|
|
14
|
+
|
|
15
|
+
["b"]; // $FlowExpectedError
|
|
16
|
+
|
|
17
|
+
[null];
|
|
18
|
+
/**
|
|
19
|
+
* All system props should accept "base" values: boolean, null, and undefined.
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
"a";
|
|
23
|
+
true;
|
|
24
|
+
false;
|
|
25
|
+
null;
|
|
26
|
+
undefined;
|
|
27
|
+
/**
|
|
28
|
+
* All system props should be responsive and allow "base" values.
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
"a";
|
|
32
|
+
"b";
|
|
33
|
+
true;
|
|
34
|
+
false;
|
|
35
|
+
null;
|
|
36
|
+
undefined;
|
|
37
|
+
["a", null, undefined, false, "b"];
|
|
38
|
+
["a"]; // $FlowExpectedError
|
|
39
|
+
|
|
40
|
+
"c"; // $FlowExpectedError
|
|
41
|
+
|
|
42
|
+
1; // $FlowExpectedError
|
|
43
|
+
|
|
44
|
+
({}); // $FlowExpectedError
|
|
45
|
+
|
|
46
|
+
[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.variantSystemProps = void 0;
|
|
5
|
+
|
|
6
|
+
var _styledSystem = require("styled-system");
|
|
7
|
+
|
|
8
|
+
var variantSystemProps = (0, _styledSystem.compose)((0, _styledSystem.variant)({
|
|
9
|
+
key: "typography",
|
|
10
|
+
prop: "typeScale"
|
|
11
|
+
}));
|
|
12
|
+
exports.variantSystemProps = variantSystemProps;
|
|
@@ -186,6 +186,7 @@ var colors = _extends({}, _theme.default.colors, {
|
|
|
186
186
|
danger: _decorativePalettes.red.foreground,
|
|
187
187
|
info: _decorativePalettes.blue.foreground,
|
|
188
188
|
opportunity: _decorativePalettes.purple.foreground,
|
|
189
|
+
applied: _seedsColor.default.COLOR_BLUE_400,
|
|
189
190
|
positive_sentiment: _seedsColor.default.COLOR_BLUE_700,
|
|
190
191
|
negative_sentiment: _seedsColor.default.COLOR_RED_600,
|
|
191
192
|
neutral_sentiment: _seedsColor.default.COLOR_NEUTRAL_600
|
|
@@ -188,6 +188,7 @@ var colors = _extends({
|
|
|
188
188
|
danger: _decorativePalettes.red.foreground,
|
|
189
189
|
info: _decorativePalettes.blue.foreground,
|
|
190
190
|
opportunity: _decorativePalettes.purple.foreground,
|
|
191
|
+
applied: _seedsColor.default.COLOR_BLUE_700,
|
|
191
192
|
positive_sentiment: _seedsColor.default.COLOR_BLUE_700,
|
|
192
193
|
negative_sentiment: _seedsColor.default.COLOR_RED_600,
|
|
193
194
|
neutral_sentiment: _seedsColor.default.COLOR_NEUTRAL_600
|
package/dist/iconList.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
module.exports = ["active-listener","add-item","add-keyword","add-team-member","add-variable","address-card-solid","adobe-experience-manager","ads","android","apple","approval-indicator-outline","approval-indicator","archive","arrow-down-line","arrow-down","arrow-left-line","arrow-left","arrow-right-line","arrow-right","arrow-up-line","arrow-up","arrows","asset-library-outline","asset-library","assign","atom","audio","back-to-top","bambu-icon-outline","bambu-icon","barcode","basketball","bell-outline","bigcommerce","bitly","bold","book","bot","browser","business","calendar-outline","calendar","camera-outline","camera-story","camera","campaign","canva","carousel","cart-plus-outline","cart-plus","check","chevron-down-filled","chevron-down","chevron-left","chevron-right","chevron-up-down-filled","chevron-up-filled","chevron-up","circle-check-outline","circle-check","circle","circle+","circles","circlex","click-to-view","clicks","clipboard-outline","clipboard","clock","closed-captioning","cloud","code","columns","comment-alt-outline","comment-alt","comment-lines-alt-outline","comment","compact-density","compact-indicator","comparison","competitor","compose","content-suggestions","credit-card","crop","crown","dashboard","deconstructed-negative-sentiment","deconstructed-neutral-sentiment","deconstructed-positive-sentiment","discovery","dislike-outline","dislike","dm-link-outline","dm-link","dotdotdot","download","drafts-outline","drafts","dropbox","duplicate-outline","duplicate","emoji-outline","emoji","empty-image","engagement-per-post","engagements","error","exchange-alt","expanded-indicator","export","extended-circles","external-link-alt","external-link","extreme-negative-sentiment","eye-outline","eye-slash-outline","eye-slash","eye","facebook-audience-network","facebook-branded-content-outline","facebook-branded-content","facebook-groups","facebook","fb-reactions-angry","fb-reactions-haha","fb-reactions-like","fb-reactions-love","fb-reactions-sad","fb-reactions-wow","feedly","feeds","female","file-chart-line","file-edit","file-times-solid","filter","flag-outline","flag","flat-negative-sentiment-outline","flat-negative-sentiment","flat-neutral-sentiment-outline","flat-neutral-sentiment","flat-positive-sentiment-outline","flat-positive-sentiment","folder-open","folder","follow-outline","follow","follower-increase","following","font","full-access","gear","gears","glassdoor","glasses","globe","google-analytics-color","google-business-messages","google-drive","google-my-business","grip","h1","h2","hamburger","hashtag","headset","heart-outline","heart","heartbeat","help","hiking","history","home","hourglass","hubspot","image-caption","image","images","impressions-per-post","impressions","inactive-listener","inbox-action","inbox-views","inbox","indicator","industry","info","instagram","internal-activity-outline","internal-activity","italic","key","keyboard","laptop-phone","large-density","lift","like-outline","like","link","linkedin-audience-network","linkedin","list-ol","listening","lists","location-outline","location","lock","male","marketo","mention","message-preview-outline","message-preview","message","messages-outline","messages","messenger","metric-table","microsoft-dynamics","minus","mobile","monitor","moon","negative-sentiment","neutral-positive-sentiment","neutral-sentiment","new-trend","newspaper","no-access","notepad","notifications-publishing-outline","notifications-publishing","notifications","offline","online","paid-promotion-outline","paid-promotion","paid","paint","palette","paperclip","pause","pencil-outline","pencil","person","phone","pinterest-boards-outline","pinterest-boards","pinterest","play-circle","play","plus","positive-sentiment","power-up","profile-connect","profile-disconnect","publishing-outline","publishing","puzzle-piece","qr-code","queue","recommendation","reddit-alien","reddit","referrals","refresh","rejected","reply-outline","reply","reporting-period","reporting","reports-home","reports","retweet","rss","sales","salesforce","save-assets","saved-messages","saved-reply-outline","saved-reply","search","sent-message-outline","sent-message","share","shopify","show-navigation","slack","small-density","smiley","some-access","sparkles","spike-alert","star-half-alt-solid","star-of-life","star-outline","star","sticky-note-outline","sticky-note","stories","story","suggestions","sun","tag-outline","tag","targeting-outline","targeting","tasks-outline","tasks","team-conversation-outline","team-conversation","team","text-asset","text","tiktok","times","trash-can-outline","trash-can","trend-down","trend-neutral","trend-up","trends","triangle-black","triangle","tripadvisor-circle-outline","tripadvisor-circle","tripadvisor","trophy-outline","tumblr","twitter-audience-network","twitter","unfollow-outline","unfollow","unlink","unlock","upload","user-circle","users","verified","video-camera-story","video-camera","vip","weight","whatsapp","window-maximize","window-minimize","window-regular","window-restore","woocommerce","x","yelp-full-star","yelp-half-star","yelp","youtube","zendesk"];
|
|
1
|
+
module.exports = ["active-listener","add-item","add-keyword","add-team-member","add-variable","address-card-outline","address-card-solid","adobe-experience-manager","ads","android","apple","approval-indicator-outline","approval-indicator","archive","arrow-down-line","arrow-down","arrow-left-line","arrow-left","arrow-right-line","arrow-right","arrow-up-line","arrow-up","arrows","asset-library-outline","asset-library","assign","atom","audio","back-to-top","bambu-icon-outline","bambu-icon","barcode","basketball","bell-outline","bigcommerce","bitly","bold","book","bot","browser","business","calendar-outline","calendar","camera-outline","camera-story","camera","campaign","canva","carousel","cart-plus-outline","cart-plus","check","chevron-down-filled","chevron-down","chevron-left","chevron-right","chevron-up-down-filled","chevron-up-filled","chevron-up","circle-check-outline","circle-check","circle","circle+","circles","circlex","click-to-view","clicks","clipboard-outline","clipboard","clock","closed-captioning","cloud","code","columns","comment-alt-outline","comment-alt","comment-lines-alt-outline","comment","compact-density","compact-indicator","comparison","competitor","compose","content-suggestions","credit-card","crop","crown","dashboard","deconstructed-negative-sentiment","deconstructed-neutral-sentiment","deconstructed-positive-sentiment","discovery","dislike-outline","dislike","dm-link-outline","dm-link","dotdotdot","download","drafts-outline","drafts","dropbox","duplicate-outline","duplicate","emoji-outline","emoji","empty-image","engagement-per-post","engagements","error","exchange-alt","expanded-indicator","export","extended-circles","external-link-alt","external-link","extreme-negative-sentiment","eye-outline","eye-slash-outline","eye-slash","eye","facebook-audience-network","facebook-branded-content-outline","facebook-branded-content","facebook-groups","facebook","fb-reactions-angry","fb-reactions-haha","fb-reactions-like","fb-reactions-love","fb-reactions-sad","fb-reactions-wow","feedly","feeds","female","file-chart-line","file-edit","file-times-solid","filter","flag-outline","flag","flat-negative-sentiment-outline","flat-negative-sentiment","flat-neutral-sentiment-outline","flat-neutral-sentiment","flat-positive-sentiment-outline","flat-positive-sentiment","folder-open","folder","follow-outline","follow","follower-increase","following","font","full-access","gear","gears","glassdoor","glasses","globe","google-analytics-color","google-business-messages","google-drive","google-my-business","grip","h1","h2","hamburger","hashtag","headset","heart-outline","heart","heartbeat","help","hiking","history","home","hourglass","hubspot","image-caption","image","images","impressions-per-post","impressions","inactive-listener","inbox-action","inbox-views","inbox","indicator","industry","info","instagram","internal-activity-outline","internal-activity","italic","key","keyboard","laptop-phone","large-density","lift","like-outline","like","link","linkedin-audience-network","linkedin","list-ol","listening","lists","location-outline","location","lock","magic-wand","male","marketo","mention","message-preview-outline","message-preview","message","messages-outline","messages","messenger","metric-table","microsoft-dynamics","minus","mobile","monitor","moon","negative-sentiment","neutral-positive-sentiment","neutral-sentiment","new-trend","newspaper","no-access","notepad","notifications-publishing-outline","notifications-publishing","notifications","offline","online","paid-promotion-outline","paid-promotion","paid","paint","palette","paperclip","pause","pencil-outline","pencil","person","phone","pinterest-boards-outline","pinterest-boards","pinterest","play-circle","play","plus","positive-sentiment","power-up","profile-connect","profile-disconnect","publishing-outline","publishing","puzzle-piece","qr-code","queue","recommendation","reddit-alien","reddit","referrals","refresh","rejected","reply-outline","reply","reporting-period","reporting","reports-home","reports","retweet","rss","sales","salesforce","save-assets","saved-messages","saved-reply-outline","saved-reply","search","sent-message-outline","sent-message","share","shopify","show-navigation","slack","small-density","smiley","some-access","sparkles","spike-alert","star-half-alt-solid","star-of-life","star-outline","star","sticky-note-outline","sticky-note","stories","story","suggestions","sun","tag-outline","tag","targeting-outline","targeting","tasks-outline","tasks","team-conversation-outline","team-conversation","team","text-asset","text","tiktok","times","trash-can-outline","trash-can","trend-down","trend-neutral","trend-up","trends","triangle-black","triangle","tripadvisor-circle-outline","tripadvisor-circle","tripadvisor","trophy-outline","tumblr","twitter-audience-network","twitter","unfollow-outline","unfollow","unlink","unlock","upload","user-circle","users","verified","video-camera-story","video-camera","vip","weight","whatsapp","window-maximize","window-minimize","window-regular","window-restore","woocommerce","x","yelp-full-star","yelp-half-star","yelp","youtube","zendesk"];
|