@spaced-out/ui-design-system 0.0.1-alpha.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 (259) hide show
  1. package/.commitlintrc.json +3 -0
  2. package/.cspell/custom-words.txt +22 -0
  3. package/.editorconfig +9 -0
  4. package/.eslintignore +1 -0
  5. package/.eslintrc.yml +122 -0
  6. package/.flowconfig +45 -0
  7. package/.github/workflows/pages.yml +52 -0
  8. package/.prettierrc +11 -0
  9. package/.storybook/SenseTheme.js +12 -0
  10. package/.storybook/main.js +73 -0
  11. package/.storybook/manager-head.html +41 -0
  12. package/.storybook/manager.js +14 -0
  13. package/.storybook/preview-head.html +130 -0
  14. package/.storybook/preview.js +128 -0
  15. package/.storybook/public/favicon.ico +0 -0
  16. package/.storybook/public/favicon.svg +6 -0
  17. package/.storybook/public/fonts/CentraNo2-Book.woff +0 -0
  18. package/.storybook/public/fonts/CentraNo2-Book.woff2 +0 -0
  19. package/.storybook/public/fonts/CentraNo2-BookItalic.woff +0 -0
  20. package/.storybook/public/fonts/CentraNo2-BookItalic.woff2 +0 -0
  21. package/.storybook/public/fonts/CentraNo2-Medium.woff +0 -0
  22. package/.storybook/public/fonts/CentraNo2-Medium.woff2 +0 -0
  23. package/.vscode/extensions.json +3 -0
  24. package/CHANGELOG.md +73 -0
  25. package/README.md +178 -0
  26. package/babel.config.js +24 -0
  27. package/config.js +58 -0
  28. package/cspell.json +26 -0
  29. package/design-tokens/border/app-border.json +41 -0
  30. package/design-tokens/border/base-border.json +41 -0
  31. package/design-tokens/color/app-color.json +226 -0
  32. package/design-tokens/color/base-color.json +265 -0
  33. package/design-tokens/elevation/app-elevation.json +22 -0
  34. package/design-tokens/elevation/base-elevation.json +19 -0
  35. package/design-tokens/font/base-font.json +98 -0
  36. package/design-tokens/index.js +5 -0
  37. package/design-tokens/motion/app.motion.json +24 -0
  38. package/design-tokens/motion/base-motion.json +40 -0
  39. package/design-tokens/opacity/base-opacity.json +49 -0
  40. package/design-tokens/shadow/base-shadow.json +86 -0
  41. package/design-tokens/size/base-size.json +94 -0
  42. package/design-tokens/space/app-space.json +40 -0
  43. package/design-tokens/space/base-space.json +40 -0
  44. package/flow-typed/npm/lodash_v4.x.x.js +6407 -0
  45. package/git-conventional-commits.json +43 -0
  46. package/gulpfile.js +48 -0
  47. package/jest.config.js +9 -0
  48. package/lib/assets/fontawesome/LICENSE.txt +18 -0
  49. package/lib/assets/fontawesome/css/all.min.css +27184 -0
  50. package/lib/assets/fontawesome/webfonts/fa-brands-400.ttf +0 -0
  51. package/lib/assets/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
  52. package/lib/assets/fontawesome/webfonts/fa-duotone-900.ttf +0 -0
  53. package/lib/assets/fontawesome/webfonts/fa-duotone-900.woff2 +0 -0
  54. package/lib/assets/fontawesome/webfonts/fa-light-300.ttf +0 -0
  55. package/lib/assets/fontawesome/webfonts/fa-light-300.woff2 +0 -0
  56. package/lib/assets/fontawesome/webfonts/fa-regular-400.ttf +0 -0
  57. package/lib/assets/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
  58. package/lib/assets/fontawesome/webfonts/fa-solid-900.ttf +0 -0
  59. package/lib/assets/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
  60. package/lib/assets/fontawesome/webfonts/fa-thin-100.ttf +0 -0
  61. package/lib/assets/fontawesome/webfonts/fa-thin-100.woff2 +0 -0
  62. package/lib/assets/fontawesome/webfonts/fa-v4compatibility.ttf +0 -0
  63. package/lib/assets/fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
  64. package/lib/components/Button/Button.js +120 -0
  65. package/lib/components/Button/Button.js.flow +166 -0
  66. package/lib/components/Button/Button.module.css +226 -0
  67. package/lib/components/Button/index.js +24 -0
  68. package/lib/components/Button/index.js.flow +4 -0
  69. package/lib/components/ButtonDropdown/ButtonDropdown.js +89 -0
  70. package/lib/components/ButtonDropdown/ButtonDropdown.js.flow +119 -0
  71. package/lib/components/ButtonDropdown/ButtonDropdown.module.css +4 -0
  72. package/lib/components/ButtonDropdown/index.js +12 -0
  73. package/lib/components/ButtonDropdown/index.js.flow +4 -0
  74. package/lib/components/Checkbox/Checkbox.js +99 -0
  75. package/lib/components/Checkbox/Checkbox.js.flow +133 -0
  76. package/lib/components/Checkbox/Checkbox.module.css +160 -0
  77. package/lib/components/Checkbox/CheckboxGroup.js +85 -0
  78. package/lib/components/Checkbox/CheckboxGroup.js.flow +105 -0
  79. package/lib/components/Checkbox/CheckboxGroup.module.css +47 -0
  80. package/lib/components/Checkbox/index.js +19 -0
  81. package/lib/components/Checkbox/index.js.flow +3 -0
  82. package/lib/components/CircularLoader/CircularLoader.js +44 -0
  83. package/lib/components/CircularLoader/CircularLoader.js.flow +44 -0
  84. package/lib/components/CircularLoader/CircularLoader.module.css +81 -0
  85. package/lib/components/CircularLoader/index.js +12 -0
  86. package/lib/components/CircularLoader/index.js.flow +3 -0
  87. package/lib/components/CodeBlock.js +26 -0
  88. package/lib/components/CodeBlock.js.flow +19 -0
  89. package/lib/components/Dialog/Dialog.js +148 -0
  90. package/lib/components/Dialog/Dialog.js.flow +165 -0
  91. package/lib/components/Dialog/Dialog.module.css +87 -0
  92. package/lib/components/Dialog/index.js +36 -0
  93. package/lib/components/Dialog/index.js.flow +14 -0
  94. package/lib/components/Dropdown/Dropdown.js +108 -0
  95. package/lib/components/Dropdown/Dropdown.js.flow +129 -0
  96. package/lib/components/Dropdown/Dropdown.module.css +14 -0
  97. package/lib/components/Dropdown/index.js +18 -0
  98. package/lib/components/Dropdown/index.js.flow +4 -0
  99. package/lib/components/Grid/Grid.js +82 -0
  100. package/lib/components/Grid/Grid.js.flow +88 -0
  101. package/lib/components/Grid/Grid.module.css +30 -0
  102. package/lib/components/Grid/index.js +16 -0
  103. package/lib/components/Grid/index.js.flow +3 -0
  104. package/lib/components/Icon/ClickableIcon.js +51 -0
  105. package/lib/components/Icon/ClickableIcon.js.flow +51 -0
  106. package/lib/components/Icon/ClickableIcon.module.css +50 -0
  107. package/lib/components/Icon/FontAwesomeLibrary.js +3 -0
  108. package/lib/components/Icon/FontAwesomeLibrary.js.flow +3 -0
  109. package/lib/components/Icon/Icon.js +38 -0
  110. package/lib/components/Icon/Icon.js.flow +51 -0
  111. package/lib/components/Icon/index.js +25 -0
  112. package/lib/components/Icon/index.js.flow +6 -0
  113. package/lib/components/InContextAlert/InContextAlert.js +121 -0
  114. package/lib/components/InContextAlert/InContextAlert.js.flow +173 -0
  115. package/lib/components/InContextAlert/InContextAlert.module.css +54 -0
  116. package/lib/components/InContextAlert/index.js +18 -0
  117. package/lib/components/InContextAlert/index.js.flow +3 -0
  118. package/lib/components/Input/Input.js +172 -0
  119. package/lib/components/Input/Input.js.flow +246 -0
  120. package/lib/components/Input/Input.module.css +122 -0
  121. package/lib/components/Input/index.js +12 -0
  122. package/lib/components/Input/index.js.flow +4 -0
  123. package/lib/components/LinearLoader/LinearLoader.js +35 -0
  124. package/lib/components/LinearLoader/LinearLoader.js.flow +34 -0
  125. package/lib/components/LinearLoader/LinearLoader.module.css +43 -0
  126. package/lib/components/LinearLoader/index.js +12 -0
  127. package/lib/components/LinearLoader/index.js.flow +3 -0
  128. package/lib/components/Menu/Menu.js +76 -0
  129. package/lib/components/Menu/Menu.js.flow +85 -0
  130. package/lib/components/Menu/Menu.module.css +124 -0
  131. package/lib/components/Menu/index.js +12 -0
  132. package/lib/components/Menu/index.js.flow +4 -0
  133. package/lib/components/Modal/Modal.js +121 -0
  134. package/lib/components/Modal/Modal.js.flow +157 -0
  135. package/lib/components/Modal/Modal.module.css +62 -0
  136. package/lib/components/Modal/index.js +12 -0
  137. package/lib/components/Modal/index.js.flow +3 -0
  138. package/lib/components/Notification/Notification.js +89 -0
  139. package/lib/components/Notification/Notification.js.flow +136 -0
  140. package/lib/components/Notification/Notification.module.css +54 -0
  141. package/lib/components/Notification/index.js +18 -0
  142. package/lib/components/Notification/index.js.flow +3 -0
  143. package/lib/components/Panel/Panel.js +96 -0
  144. package/lib/components/Panel/Panel.js.flow +109 -0
  145. package/lib/components/Panel/Panel.module.css +77 -0
  146. package/lib/components/Panel/index.js +30 -0
  147. package/lib/components/Panel/index.js.flow +10 -0
  148. package/lib/components/RadioButton/RadioButton.js +76 -0
  149. package/lib/components/RadioButton/RadioButton.js.flow +102 -0
  150. package/lib/components/RadioButton/RadioButton.module.css +122 -0
  151. package/lib/components/RadioButton/RadioGroup.js +60 -0
  152. package/lib/components/RadioButton/RadioGroup.js.flow +85 -0
  153. package/lib/components/RadioButton/RadioGroup.module.css +47 -0
  154. package/lib/components/RadioButton/index.js +19 -0
  155. package/lib/components/RadioButton/index.js.flow +3 -0
  156. package/lib/components/SearchInput/SearchInput.js +47 -0
  157. package/lib/components/SearchInput/SearchInput.js.flow +73 -0
  158. package/lib/components/SearchInput/SearchInput.module.css +11 -0
  159. package/lib/components/SearchInput/index.js +12 -0
  160. package/lib/components/SearchInput/index.js.flow +4 -0
  161. package/lib/components/Text/Text.js +195 -0
  162. package/lib/components/Text/Text.js.flow +160 -0
  163. package/lib/components/Text/index.js +103 -0
  164. package/lib/components/Text/index.js.flow +21 -0
  165. package/lib/components/Textarea/Textarea.js +95 -0
  166. package/lib/components/Textarea/Textarea.js.flow +133 -0
  167. package/lib/components/Textarea/Textarea.module.css +110 -0
  168. package/lib/components/Textarea/index.js +12 -0
  169. package/lib/components/Textarea/index.js.flow +4 -0
  170. package/lib/components/Toast/Toast.js +187 -0
  171. package/lib/components/Toast/Toast.js.flow +210 -0
  172. package/lib/components/Toast/Toast.module.css +52 -0
  173. package/lib/components/Toast/ToastContainer.js +129 -0
  174. package/lib/components/Toast/ToastContainer.js.flow +125 -0
  175. package/lib/components/Toast/ToastContainer.module.css +41 -0
  176. package/lib/components/Toast/ToastManager.js +62 -0
  177. package/lib/components/Toast/ToastManager.js.flow +67 -0
  178. package/lib/components/Toast/index.js +56 -0
  179. package/lib/components/Toast/index.js.flow +12 -0
  180. package/lib/components/Toggle/Toggle.js +69 -0
  181. package/lib/components/Toggle/Toggle.js.flow +94 -0
  182. package/lib/components/Toggle/Toggle.module.css +144 -0
  183. package/lib/components/Toggle/index.js +12 -0
  184. package/lib/components/Toggle/index.js.flow +2 -0
  185. package/lib/components/Tooltip/Tooltip.js +81 -0
  186. package/lib/components/Tooltip/Tooltip.js.flow +110 -0
  187. package/lib/components/Tooltip/Tooltip.module.css +16 -0
  188. package/lib/components/Tooltip/index.js +12 -0
  189. package/lib/components/Tooltip/index.js.flow +4 -0
  190. package/lib/components/Truncate/Truncate.js +28 -0
  191. package/lib/components/Truncate/Truncate.js.flow +22 -0
  192. package/lib/components/Truncate/Truncate.module.css +6 -0
  193. package/lib/components/Truncate/index.js +12 -0
  194. package/lib/components/Truncate/index.js.flow +4 -0
  195. package/lib/components/Typeahead/Typeahead.js +124 -0
  196. package/lib/components/Typeahead/Typeahead.js.flow +153 -0
  197. package/lib/components/Typeahead/Typeahead.module.css +10 -0
  198. package/lib/components/Typeahead/index.js +12 -0
  199. package/lib/components/Typeahead/index.js.flow +4 -0
  200. package/lib/hooks/index.js +27 -0
  201. package/lib/hooks/index.js.flow +4 -0
  202. package/lib/hooks/useMountTransition.js +25 -0
  203. package/lib/hooks/useMountTransition.js.flow +27 -0
  204. package/lib/hooks/useToastPortal.js +32 -0
  205. package/lib/hooks/useToastPortal.js.flow +30 -0
  206. package/lib/styles/animation.module.css +9 -0
  207. package/lib/styles/border.module.css +27 -0
  208. package/lib/styles/shadow.module.css +42 -0
  209. package/lib/styles/typography.module.css +227 -0
  210. package/lib/styles/variables/_border.css +21 -0
  211. package/lib/styles/variables/_border.js +29 -0
  212. package/lib/styles/variables/_border.js.flow +23 -0
  213. package/lib/styles/variables/_color.css +131 -0
  214. package/lib/styles/variables/_color.js +139 -0
  215. package/lib/styles/variables/_color.js.flow +133 -0
  216. package/lib/styles/variables/_elevation.css +11 -0
  217. package/lib/styles/variables/_elevation.js +19 -0
  218. package/lib/styles/variables/_elevation.js.flow +13 -0
  219. package/lib/styles/variables/_font.css +51 -0
  220. package/lib/styles/variables/_font.js +59 -0
  221. package/lib/styles/variables/_font.js.flow +53 -0
  222. package/lib/styles/variables/_motion.css +11 -0
  223. package/lib/styles/variables/_motion.js +19 -0
  224. package/lib/styles/variables/_motion.js.flow +13 -0
  225. package/lib/styles/variables/_opacity.css +29 -0
  226. package/lib/styles/variables/_opacity.js +37 -0
  227. package/lib/styles/variables/_opacity.js.flow +31 -0
  228. package/lib/styles/variables/_shadow.css +47 -0
  229. package/lib/styles/variables/_shadow.js +55 -0
  230. package/lib/styles/variables/_shadow.js.flow +49 -0
  231. package/lib/styles/variables/_size.css +59 -0
  232. package/lib/styles/variables/_size.js +67 -0
  233. package/lib/styles/variables/_size.js.flow +61 -0
  234. package/lib/styles/variables/_space.css +23 -0
  235. package/lib/styles/variables/_space.js +31 -0
  236. package/lib/styles/variables/_space.js.flow +25 -0
  237. package/lib/types/common.js +1 -0
  238. package/lib/types/common.js.flow +3 -0
  239. package/lib/types/toast.js +24 -0
  240. package/lib/types/toast.js.flow +41 -0
  241. package/lib/types/typography.js +22 -0
  242. package/lib/types/typography.js.flow +18 -0
  243. package/lib/utils/classify.js +33 -0
  244. package/lib/utils/classify.js.flow +29 -0
  245. package/lib/utils/click-away.js +110 -0
  246. package/lib/utils/click-away.js.flow +134 -0
  247. package/lib/utils/dom.js +202 -0
  248. package/lib/utils/dom.js.flow +238 -0
  249. package/lib/utils/helpers.js +16 -0
  250. package/lib/utils/helpers.js.flow +11 -0
  251. package/lib/utils/makeClassNameComponent.js +58 -0
  252. package/lib/utils/makeClassNameComponent.js.flow +71 -0
  253. package/lib/utils/merge-refs.js +17 -0
  254. package/lib/utils/merge-refs.js.flow +14 -0
  255. package/lint-staged.config.js +5 -0
  256. package/package.json +114 -0
  257. package/postcss.config.js +3 -0
  258. package/pull_request_template.md +48 -0
  259. package/settings.json +3 -0
@@ -0,0 +1,88 @@
1
+ // @flow strict
2
+ import * as React from 'react';
3
+
4
+ import {classify} from '../../utils/classify';
5
+
6
+ import css from './Grid.module.css';
7
+
8
+
9
+ export type RowProps = {
10
+ className?: string,
11
+ children?: React.Node,
12
+ span?: number,
13
+ offset?: number,
14
+ gridType?: 'small' | 'medium' | 'large',
15
+ };
16
+
17
+ const GRID_SYSTEM_MAP = {
18
+ small: 24,
19
+ medium: 12,
20
+ large: 6,
21
+ };
22
+
23
+ export const Row = ({
24
+ className,
25
+ children,
26
+ span = 1,
27
+ gridType = 'medium',
28
+ }: RowProps): React.Node => {
29
+ const GRID_COLUMN_COUNT = GRID_SYSTEM_MAP[gridType];
30
+ let columnSpanCount = 0;
31
+ let lastChildColCount = 0;
32
+ const childrenWithProps = React.Children.map(children, (child) => {
33
+ if (React.isValidElement(child)) {
34
+ const {span = 1, offset = 0} = child.props;
35
+ if (span < 1) {
36
+ console.error(`span can not be less than one`);
37
+ return;
38
+ }
39
+ if (offset < 0) {
40
+ console.error(`offset can not be negative`);
41
+ return;
42
+ }
43
+ lastChildColCount = columnSpanCount;
44
+ columnSpanCount = lastChildColCount + offset + span;
45
+ if (columnSpanCount <= GRID_COLUMN_COUNT) {
46
+ return React.cloneElement(child, {
47
+ gridColumnStart: lastChildColCount + offset + 1,
48
+ gridColumnEnd: `span ${span}`,
49
+ });
50
+ } else {
51
+ console.error(`number of column exceed ${GRID_COLUMN_COUNT}`);
52
+ }
53
+ }
54
+ });
55
+
56
+ return (
57
+ <div
58
+ data-testid="Grid"
59
+ className={classify(css.gridRow, css[`gridRowSpan${span}`], className)}
60
+ style={{gridTemplateColumns: `repeat(${GRID_COLUMN_COUNT}, 1fr)`}}
61
+ >
62
+ {childrenWithProps}
63
+ </div>
64
+ );
65
+ };
66
+
67
+ export type ColProps = {
68
+ className?: string,
69
+ children?: React.Node,
70
+ span?: number,
71
+ offset?: number,
72
+ gridColumnStart?: number,
73
+ gridColumnEnd?: number,
74
+ };
75
+
76
+ export const Col = ({
77
+ className,
78
+ children,
79
+ gridColumnStart,
80
+ gridColumnEnd,
81
+ }: ColProps): React.Node => (
82
+ <div
83
+ className={classify(css.gridColumn, className)}
84
+ style={{gridColumnStart, gridColumnEnd}}
85
+ >
86
+ {children}
87
+ </div>
88
+ );
@@ -0,0 +1,30 @@
1
+ @value (
2
+ spaceNone,
3
+ spaceMedium,
4
+ spaceLarge
5
+ ) from '../../styles/variables/_space.css';
6
+
7
+ @value (
8
+ size960,
9
+ sizeFluid
10
+ ) from '../../styles/variables/_size.css';
11
+
12
+ .gridRow {
13
+ display: grid !important;
14
+ width: sizeFluid;
15
+ min-width: size960;
16
+ height: sizeFluid;
17
+ gap: spaceMedium;
18
+ padding: spaceNone spaceLarge;
19
+ grid-auto-flow: row;
20
+ grid-auto-columns: 1fr;
21
+ grid-column-gap: spaceMedium;
22
+ grid-row-gap: spaceMedium;
23
+ grid-auto-rows: sizeFluid;
24
+ box-sizing: border-box;
25
+ }
26
+
27
+ .gridColumn {
28
+ display: flex;
29
+ align-items: center;
30
+ }
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _Grid = require("./Grid");
7
+ Object.keys(_Grid).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _Grid[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _Grid[key];
14
+ }
15
+ });
16
+ });
@@ -0,0 +1,3 @@
1
+ // @flow strict
2
+
3
+ export * from './Grid';
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CloseIcon = exports.ClickableIcon = void 0;
7
+ var React = _interopRequireWildcard(require("react"));
8
+ var _classify = _interopRequireDefault(require("../../utils/classify"));
9
+ var _Button = require("../Button");
10
+ var _Text = require("../Text");
11
+ var _ = require("./");
12
+ var _ClickableIconModule = _interopRequireDefault(require("./ClickableIcon.module.css"));
13
+ var _jsxRuntime = require("react/jsx-runtime");
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
16
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
17
+
18
+ const ClickableIcon = _ref => {
19
+ let {
20
+ size = 'medium',
21
+ ...props
22
+ } = _ref;
23
+ return /*#__PURE__*/(0, _jsxRuntime.js)(_Button.UnstyledButton, {
24
+ ...props,
25
+ className: (0, _classify.default)(_ClickableIconModule.default.button, {
26
+ [_ClickableIconModule.default.small]: size === 'small',
27
+ [_ClickableIconModule.default.medium]: size === 'medium'
28
+ }),
29
+ children: /*#__PURE__*/(0, _jsxRuntime.js)(_.Icon, {
30
+ size: size,
31
+ ...props
32
+ })
33
+ });
34
+ };
35
+ exports.ClickableIcon = ClickableIcon;
36
+ const CloseIcon = _ref2 => {
37
+ let {
38
+ size = 'medium',
39
+ type = 'regular',
40
+ color = _Text.TEXT_COLORS.primary,
41
+ onClick
42
+ } = _ref2;
43
+ return /*#__PURE__*/(0, _jsxRuntime.js)(ClickableIcon, {
44
+ name: "close",
45
+ size: size,
46
+ type: type,
47
+ color: color,
48
+ onClick: onClick
49
+ });
50
+ };
51
+ exports.CloseIcon = CloseIcon;
@@ -0,0 +1,51 @@
1
+ // @flow strict
2
+
3
+ import * as React from 'react';
4
+
5
+ import type {ColorTypes} from '../../types/typography';
6
+ import classify from '../../utils/classify';
7
+ import {UnstyledButton} from '../Button';
8
+ import {TEXT_COLORS} from '../Text';
9
+
10
+ import type {IconProps, IconSize, IconType} from './';
11
+ import {Icon} from './';
12
+
13
+ import css from './ClickableIcon.module.css';
14
+
15
+
16
+ export const ClickableIcon = ({
17
+ size = 'medium',
18
+ ...props
19
+ }: IconProps): React.Node => (
20
+ <UnstyledButton
21
+ {...props}
22
+ className={classify(css.button, {
23
+ [css.small]: size === 'small',
24
+ [css.medium]: size === 'medium',
25
+ })}
26
+ >
27
+ <Icon size={size} {...props} />
28
+ </UnstyledButton>
29
+ );
30
+
31
+ export type CloseIconProps = {
32
+ size?: IconSize,
33
+ type?: IconType,
34
+ color?: ColorTypes,
35
+ onClick?: ?(SyntheticEvent<HTMLElement>) => mixed,
36
+ };
37
+
38
+ export const CloseIcon = ({
39
+ size = 'medium',
40
+ type = 'regular',
41
+ color = TEXT_COLORS.primary,
42
+ onClick,
43
+ }: CloseIconProps): React.Node => (
44
+ <ClickableIcon
45
+ name="close"
46
+ size={size}
47
+ type={type}
48
+ color={color}
49
+ onClick={onClick}
50
+ />
51
+ );
@@ -0,0 +1,50 @@
1
+ @value (
2
+ colorFocusPrimary
3
+ ) from '../../styles/variables/_color.css';
4
+
5
+ @value (
6
+ size18,
7
+ size24
8
+ ) from '../../styles/variables/_size.css';
9
+
10
+ @value (
11
+ spaceNone
12
+ ) from '../../styles/variables/_space.css';
13
+
14
+ @value (
15
+ borderRadiusXSmall,
16
+ borderWidthNone,
17
+ borderWidthTertiary
18
+ ) from '../../styles/variables/_border.css';
19
+
20
+ button {
21
+ background: none;
22
+ border: none;
23
+ }
24
+
25
+ .button {
26
+ composes: motionEaseInEaseOut from '../../styles/animation.module.css';
27
+ display: flex;
28
+ padding: spaceNone;
29
+ justify-content: center;
30
+ align-items: center;
31
+ outline: none;
32
+ cursor: pointer;
33
+ }
34
+
35
+ .medium {
36
+ height: size24;
37
+ width: size24;
38
+ border-radius: borderRadiusXSmall;
39
+ }
40
+
41
+ .small {
42
+ height: size18;
43
+ width: size18;
44
+ border-radius: borderRadiusXSmall;
45
+ }
46
+
47
+ .button:focus {
48
+ box-shadow: borderWidthNone borderWidthNone borderWidthNone
49
+ borderWidthTertiary colorFocusPrimary;
50
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+
3
+ require("../../assets/fontawesome/css/all.min.css");
@@ -0,0 +1,3 @@
1
+ // @flow strict
2
+
3
+ import '../../assets/fontawesome/css/all.min.css';
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Icon = void 0;
7
+ var React = _interopRequireWildcard(require("react"));
8
+ require("./FontAwesomeLibrary");
9
+ var _typography = require("../../types/typography");
10
+ var _classify = _interopRequireDefault(require("../../utils/classify"));
11
+ var _typographyModule = _interopRequireDefault(require("../../styles/typography.module.css"));
12
+ var _jsxRuntime = require("react/jsx-runtime");
13
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
15
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
16
+
17
+ // get our fontawesome imports
18
+
19
+ const Icon = _ref => {
20
+ let {
21
+ type = 'regular',
22
+ name = '',
23
+ size = 'medium',
24
+ color = _typography.TEXT_COLORS.primary,
25
+ className,
26
+ onClick
27
+ } = _ref;
28
+ return /*#__PURE__*/(0, _jsxRuntime.js)(_jsxRuntime.Fragment, {
29
+ children: !!name && /*#__PURE__*/(0, _jsxRuntime.js)("div", {
30
+ className: (0, _classify.default)(_typographyModule.default.centerAlignFlex, _typographyModule.default[`${size}Icon`], _typographyModule.default[color], className),
31
+ onClick: onClick,
32
+ children: /*#__PURE__*/(0, _jsxRuntime.js)("i", {
33
+ className: (0, _classify.default)(`fa-${type} fa-${name}`)
34
+ })
35
+ })
36
+ });
37
+ };
38
+ exports.Icon = Icon;
@@ -0,0 +1,51 @@
1
+ // @flow strict
2
+
3
+ import * as React from 'react';
4
+
5
+ // get our fontawesome imports
6
+ import './FontAwesomeLibrary';
7
+
8
+ import type {ColorTypes} from '../../types/typography';
9
+ import {TEXT_COLORS} from '../../types/typography';
10
+ import classify from '../../utils/classify';
11
+
12
+ import typographyStyle from '../../styles/typography.module.css';
13
+
14
+
15
+ export type IconType = 'regular' | 'solid';
16
+
17
+ export type IconSize = 'small' | 'medium';
18
+
19
+ export type IconProps = {
20
+ type?: IconType,
21
+ name: string,
22
+ size?: IconSize,
23
+ color?: ColorTypes,
24
+ className?: string,
25
+ onClick?: ?(SyntheticEvent<HTMLElement>) => mixed,
26
+ };
27
+
28
+ export const Icon = ({
29
+ type = 'regular',
30
+ name = '',
31
+ size = 'medium',
32
+ color = TEXT_COLORS.primary,
33
+ className,
34
+ onClick,
35
+ }: IconProps): React.Node => (
36
+ <>
37
+ {!!name && (
38
+ <div
39
+ className={classify(
40
+ typographyStyle.centerAlignFlex,
41
+ typographyStyle[`${size}Icon`],
42
+ typographyStyle[color],
43
+ className,
44
+ )}
45
+ onClick={onClick}
46
+ >
47
+ <i className={classify(`fa-${type} fa-${name}`)} />
48
+ </div>
49
+ )}
50
+ </>
51
+ );
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "ClickableIcon", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _ClickableIcon.ClickableIcon;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "CloseIcon", {
13
+ enumerable: true,
14
+ get: function () {
15
+ return _ClickableIcon.CloseIcon;
16
+ }
17
+ });
18
+ Object.defineProperty(exports, "Icon", {
19
+ enumerable: true,
20
+ get: function () {
21
+ return _Icon.Icon;
22
+ }
23
+ });
24
+ var _ClickableIcon = require("./ClickableIcon.js");
25
+ var _Icon = require("./Icon");
@@ -0,0 +1,6 @@
1
+ // @flow strict
2
+
3
+ export type {CloseIconProps} from './ClickableIcon';
4
+ export {ClickableIcon, CloseIcon} from './ClickableIcon.js';
5
+ export type {IconProps, IconSize, IconType} from './Icon';
6
+ export {Icon} from './Icon';
@@ -0,0 +1,121 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.InContextAlert = exports.ALERT_SEMANTIC = void 0;
7
+ var React = _interopRequireWildcard(require("react"));
8
+ var _typography = require("../../types/typography");
9
+ var _classify = require("../../utils/classify");
10
+ var _Icon = require("../Icon");
11
+ var _Text = require("../Text");
12
+ var _Truncate = require("../Truncate");
13
+ var _InContextAlertModule = _interopRequireDefault(require("./InContextAlert.module.css"));
14
+ var _jsxRuntime = require("react/jsx-runtime");
15
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
17
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
18
+
19
+ const ALERT_SEMANTIC = Object.freeze({
20
+ neutral: 'neutral',
21
+ success: 'success',
22
+ information: 'information',
23
+ warning: 'warning',
24
+ danger: 'danger'
25
+ });
26
+ exports.ALERT_SEMANTIC = ALERT_SEMANTIC;
27
+ const AlertIcon = _ref => {
28
+ let {
29
+ semantic,
30
+ leftIconName
31
+ } = _ref;
32
+ switch (semantic) {
33
+ case ALERT_SEMANTIC.neutral:
34
+ return /*#__PURE__*/(0, _jsxRuntime.js)(_Icon.Icon, {
35
+ color: _typography.TEXT_COLORS.neutral,
36
+ name: leftIconName ? leftIconName : 'face-smile',
37
+ size: "small",
38
+ type: "regular"
39
+ });
40
+ case ALERT_SEMANTIC.success:
41
+ return /*#__PURE__*/(0, _jsxRuntime.js)(_Icon.Icon, {
42
+ name: "circle-check",
43
+ size: "small",
44
+ color: _typography.TEXT_COLORS.success,
45
+ type: "regular"
46
+ });
47
+ case ALERT_SEMANTIC.information:
48
+ return /*#__PURE__*/(0, _jsxRuntime.js)(_Icon.Icon, {
49
+ name: "circle-info",
50
+ size: "small",
51
+ color: _typography.TEXT_COLORS.information,
52
+ type: "regular"
53
+ });
54
+ case ALERT_SEMANTIC.warning:
55
+ return /*#__PURE__*/(0, _jsxRuntime.js)(_Icon.Icon, {
56
+ name: "circle-exclamation",
57
+ size: "small",
58
+ color: _typography.TEXT_COLORS.warning,
59
+ type: "regular"
60
+ });
61
+ case ALERT_SEMANTIC.danger:
62
+ return /*#__PURE__*/(0, _jsxRuntime.js)(_Icon.Icon, {
63
+ name: "shield-exclamation",
64
+ size: "small",
65
+ color: _typography.TEXT_COLORS.danger,
66
+ type: "regular"
67
+ });
68
+ default:
69
+ return /*#__PURE__*/(0, _jsxRuntime.js)(_Icon.Icon, {
70
+ color: _typography.TEXT_COLORS.neutral,
71
+ name: "face-smile",
72
+ size: "small",
73
+ type: "regular"
74
+ });
75
+ }
76
+ };
77
+ const InContextAlert = props => {
78
+ const {
79
+ classNames,
80
+ semantic = ALERT_SEMANTIC.neutral,
81
+ dismissable,
82
+ children,
83
+ selfDismiss = false,
84
+ leftIconName = '',
85
+ onCloseClick
86
+ } = props;
87
+ const [dismissed, setDismissed] = React.useState(false);
88
+ const closeClickHandler = e => {
89
+ onCloseClick && onCloseClick(e);
90
+ selfDismiss && setDismissed(true);
91
+ };
92
+ return /*#__PURE__*/(0, _jsxRuntime.js)(_jsxRuntime.Fragment, {
93
+ children: !dismissed && /*#__PURE__*/(0, _jsxRuntime.jss)("div", {
94
+ className: (0, _classify.classify)(_InContextAlertModule.default.alertContainer, {
95
+ [_InContextAlertModule.default.neutral]: semantic === ALERT_SEMANTIC.neutral,
96
+ [_InContextAlertModule.default.success]: semantic === ALERT_SEMANTIC.success,
97
+ [_InContextAlertModule.default.information]: semantic === ALERT_SEMANTIC.information,
98
+ [_InContextAlertModule.default.warning]: semantic === ALERT_SEMANTIC.warning,
99
+ [_InContextAlertModule.default.danger]: semantic === ALERT_SEMANTIC.danger
100
+ }, classNames?.wrapper),
101
+ children: [/*#__PURE__*/(0, _jsxRuntime.js)(AlertIcon, {
102
+ semantic: semantic,
103
+ leftIconName: leftIconName
104
+ }), React.Children.count(children) > 0 && /*#__PURE__*/(0, _jsxRuntime.js)(_Text.SubTitleExtraSmall, {
105
+ className: (0, _classify.classify)(classNames?.alertText),
106
+ children: /*#__PURE__*/(0, _jsxRuntime.js)(_Truncate.Truncate, {
107
+ line: 2,
108
+ children: children
109
+ })
110
+ }), dismissable && /*#__PURE__*/(0, _jsxRuntime.js)(_Icon.Icon, {
111
+ color: _typography.TEXT_COLORS.primary,
112
+ name: "close",
113
+ size: "small",
114
+ type: "regular",
115
+ onClick: closeClickHandler,
116
+ className: _InContextAlertModule.default.closeIcon
117
+ })]
118
+ })
119
+ });
120
+ };
121
+ exports.InContextAlert = InContextAlert;