@atlaskit/ds-explorations 0.1.1 → 0.1.2

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 (80) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/cjs/components/box.partial.js +220 -182
  3. package/dist/cjs/components/inline.partial.js +28 -24
  4. package/dist/cjs/components/interaction-surface.partial.js +253 -0
  5. package/dist/cjs/components/stack.partial.js +26 -22
  6. package/dist/cjs/components/surface-provider.js +31 -0
  7. package/dist/cjs/components/text.partial.js +81 -36
  8. package/dist/cjs/constants.js +1 -0
  9. package/dist/cjs/index.js +17 -1
  10. package/dist/cjs/internal/color-map.js +42 -0
  11. package/dist/cjs/internal/role-to-element.js +36 -0
  12. package/dist/cjs/version.json +1 -1
  13. package/dist/es2019/components/box.partial.js +91 -60
  14. package/dist/es2019/components/inline.partial.js +6 -2
  15. package/dist/es2019/components/interaction-surface.partial.js +243 -0
  16. package/dist/es2019/components/stack.partial.js +6 -2
  17. package/dist/es2019/components/surface-provider.js +20 -0
  18. package/dist/es2019/components/text.partial.js +50 -9
  19. package/dist/es2019/constants.js +1 -0
  20. package/dist/es2019/index.js +3 -1
  21. package/dist/es2019/internal/color-map.js +34 -0
  22. package/dist/es2019/internal/role-to-element.js +28 -0
  23. package/dist/es2019/version.json +1 -1
  24. package/dist/esm/components/box.partial.js +100 -62
  25. package/dist/esm/components/inline.partial.js +6 -2
  26. package/dist/esm/components/interaction-surface.partial.js +242 -0
  27. package/dist/esm/components/stack.partial.js +6 -2
  28. package/dist/esm/components/surface-provider.js +20 -0
  29. package/dist/esm/components/text.partial.js +51 -9
  30. package/dist/esm/constants.js +1 -0
  31. package/dist/esm/index.js +3 -1
  32. package/dist/esm/internal/color-map.js +34 -0
  33. package/dist/esm/internal/role-to-element.js +28 -0
  34. package/dist/esm/version.json +1 -1
  35. package/dist/types/components/box.partial.d.ts +99 -78
  36. package/dist/types/components/inline.partial.d.ts +7 -7
  37. package/dist/types/components/interaction-surface.partial.d.ts +45 -0
  38. package/dist/types/components/stack.partial.d.ts +7 -7
  39. package/dist/types/components/surface-provider.d.ts +15 -0
  40. package/dist/types/components/text.partial.d.ts +58 -34
  41. package/dist/types/components/types.d.ts +1 -1
  42. package/dist/types/constants.d.ts +1 -0
  43. package/dist/types/index.d.ts +4 -0
  44. package/dist/types/internal/color-map.d.ts +34 -0
  45. package/dist/types/internal/role-to-element.d.ts +32 -0
  46. package/examples/02-text.tsx +34 -13
  47. package/examples/05-badge.tsx +1 -1
  48. package/examples/06-section-message.tsx +1 -1
  49. package/examples/07-comment.tsx +1 -1
  50. package/examples/08-lozenge.tsx +2 -2
  51. package/examples/99-interactions.tsx +175 -0
  52. package/package.json +7 -4
  53. package/scripts/__tests__/__snapshots__/codegen.test.tsx.snap +164 -3
  54. package/scripts/__tests__/codegen.test.tsx +5 -0
  55. package/scripts/codegen-styles.tsx +46 -14
  56. package/scripts/color-codegen-template.tsx +1 -1
  57. package/scripts/color-map-template.tsx +52 -0
  58. package/scripts/interaction-codegen.tsx +109 -0
  59. package/scripts/utils.tsx +5 -1
  60. package/src/components/__tests__/unit/box.test.tsx +31 -1
  61. package/src/components/__tests__/unit/interaction-suface.test.tsx +70 -0
  62. package/src/components/__tests__/unit/text.test.tsx +16 -0
  63. package/src/components/__tests__/visual-regression/__image_snapshots__/box-snapshot-test-tsx-box-example-with-background-and-padding-block-should-match-snapshot-1-snap.png +2 -2
  64. package/src/components/__tests__/visual-regression/__image_snapshots__/box-snapshot-test-tsx-box-example-with-background-and-padding-inline-should-match-snapshot-1-snap.png +2 -2
  65. package/src/components/__tests__/visual-regression/__image_snapshots__/box-snapshot-test-tsx-box-example-with-background-and-padding-should-match-snapshot-1-snap.png +2 -2
  66. package/src/components/__tests__/visual-regression/__image_snapshots__/inline-snapshot-test-tsx-inline-spacing-example-should-match-snapshot-1-snap.png +2 -2
  67. package/src/components/__tests__/visual-regression/__image_snapshots__/stack-snapshot-test-tsx-stack-spacing-example-should-match-snapshot-1-snap.png +2 -2
  68. package/src/components/__tests__/visual-regression/__image_snapshots__/text-snapshot-test-tsx-text-example-with-font-sizes-should-match-snapshot-1-snap.png +2 -2
  69. package/src/components/__tests__/visual-regression/__image_snapshots__/text-snapshot-test-tsx-text-example-with-testing-should-match-snapshot-1-snap.png +2 -2
  70. package/src/components/box.partial.tsx +112 -71
  71. package/src/components/inline.partial.tsx +5 -2
  72. package/src/components/interaction-surface.partial.tsx +237 -0
  73. package/src/components/stack.partial.tsx +5 -2
  74. package/src/components/surface-provider.tsx +25 -0
  75. package/src/components/text.partial.tsx +63 -26
  76. package/src/components/types.tsx +1 -1
  77. package/src/constants.tsx +1 -0
  78. package/src/index.tsx +4 -0
  79. package/src/internal/color-map.tsx +34 -0
  80. package/src/internal/role-to-element.tsx +34 -0
@@ -11,70 +11,108 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
11
11
 
12
12
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
13
13
 
14
- var _core = require("@emotion/core");
14
+ var _react = require("@emotion/react");
15
+
16
+ var _tinyInvariant = _interopRequireDefault(require("tiny-invariant"));
17
+
18
+ var _colorMap = require("../internal/color-map");
19
+
20
+ var _surfaceProvider = require("./surface-provider");
15
21
 
16
22
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
17
23
 
18
24
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
19
25
 
26
+ var asAllowlist = ['span', 'div', 'p'];
20
27
  var fontFamily = "-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif";
21
28
  var fontSizeMap = {
22
- '11': (0, _core.css)({
29
+ '11px': (0, _react.css)({
23
30
  fontSize: '11px'
24
31
  }),
25
- '12': (0, _core.css)({
32
+ '12px': (0, _react.css)({
26
33
  fontSize: '12px'
27
34
  }),
28
- '14': (0, _core.css)({
35
+ '14px': (0, _react.css)({
29
36
  fontSize: '14px'
30
37
  })
31
38
  };
32
39
  // NOTE: can't use numbers as keys or Constellation won't build. Weird one.
33
40
  var fontWeightMap = {
34
- '400': (0, _core.css)({
41
+ '400': (0, _react.css)({
35
42
  fontWeight: 400
36
43
  }),
37
- '500': (0, _core.css)({
44
+ '500': (0, _react.css)({
38
45
  fontWeight: 500
46
+ }),
47
+ '700': (0, _react.css)({
48
+ fontWeight: 700
39
49
  })
40
50
  };
41
51
  var lineHeightMap = {
42
- '12px': (0, _core.css)({
52
+ '12px': (0, _react.css)({
43
53
  lineHeight: '12px'
44
54
  }),
45
- '16px': (0, _core.css)({
55
+ '16px': (0, _react.css)({
46
56
  lineHeight: '16px'
47
57
  }),
48
- '20px': (0, _core.css)({
58
+ '20px': (0, _react.css)({
49
59
  lineHeight: '20px'
50
60
  }),
51
- '24px': (0, _core.css)({
61
+ '24px': (0, _react.css)({
52
62
  lineHeight: '24px'
53
63
  }),
54
- '28px': (0, _core.css)({
64
+ '28px': (0, _react.css)({
55
65
  lineHeight: '28px'
56
66
  }),
57
- '32px': (0, _core.css)({
67
+ '32px': (0, _react.css)({
58
68
  lineHeight: '32px'
59
69
  }),
60
- '40px': (0, _core.css)({
70
+ '40px': (0, _react.css)({
61
71
  lineHeight: '40px'
62
72
  })
63
73
  };
64
74
  var textAlignMap = {
65
- center: (0, _core.css)({
75
+ center: (0, _react.css)({
66
76
  textAlign: 'center'
67
77
  }),
68
- end: (0, _core.css)({
78
+ end: (0, _react.css)({
69
79
  textAlign: 'end'
70
80
  }),
71
- start: (0, _core.css)({
81
+ start: (0, _react.css)({
72
82
  textAlign: 'start'
73
83
  })
74
84
  };
75
- var baseStyles = (0, _core.css)({
85
+ var textTransformMap = {
86
+ none: (0, _react.css)({
87
+ textTransform: 'none'
88
+ }),
89
+ lowercase: (0, _react.css)({
90
+ textTransform: 'lowercase'
91
+ }),
92
+ uppercase: (0, _react.css)({
93
+ textTransform: 'uppercase'
94
+ })
95
+ };
96
+ var verticalAlignMap = {
97
+ top: (0, _react.css)({
98
+ verticalAlign: 'top'
99
+ }),
100
+ middle: (0, _react.css)({
101
+ verticalAlign: 'middle'
102
+ }),
103
+ bottom: (0, _react.css)({
104
+ verticalAlign: 'bottom'
105
+ })
106
+ };
107
+ var baseStyles = (0, _react.css)({
108
+ boxSizing: 'border-box',
76
109
  fontFamily: fontFamily
77
110
  });
111
+ var truncateStyles = (0, _react.css)({
112
+ overflow: 'hidden',
113
+ textOverflow: 'ellipsis',
114
+ whiteSpace: 'nowrap'
115
+ });
78
116
  /**
79
117
  * __Text__
80
118
  *
@@ -86,6 +124,8 @@ var baseStyles = (0, _core.css)({
86
124
  */
87
125
 
88
126
  var Text = function Text(_ref) {
127
+ var _colorMap$surface;
128
+
89
129
  var _ref$as = _ref.as,
90
130
  Component = _ref$as === void 0 ? 'span' : _ref$as,
91
131
  children = _ref.children,
@@ -93,22 +133,27 @@ var Text = function Text(_ref) {
93
133
  fontSize = _ref.fontSize,
94
134
  fontWeight = _ref.fontWeight,
95
135
  lineHeight = _ref.lineHeight,
136
+ _ref$shouldTruncate = _ref.shouldTruncate,
137
+ shouldTruncate = _ref$shouldTruncate === void 0 ? false : _ref$shouldTruncate,
96
138
  textAlign = _ref.textAlign,
97
- href = _ref.href,
139
+ textTransform = _ref.textTransform,
140
+ verticalAlign = _ref.verticalAlign,
98
141
  testId = _ref.testId,
99
142
  UNSAFE_style = _ref.UNSAFE_style;
143
+ var surface = (0, _surfaceProvider.useSurface)(); // @ts-ignore
100
144
 
101
145
  var _ref2 = colorTuple || [],
102
146
  _ref3 = (0, _slicedToArray2.default)(_ref2, 2),
103
- color = _ref3[0],
147
+ _ref3$ = _ref3[0],
148
+ color = _ref3$ === void 0 ? (_colorMap$surface = _colorMap.colorMap[surface]) !== null && _colorMap$surface !== void 0 ? _colorMap$surface : 'color.text' : _ref3$,
104
149
  fallback = _ref3[1];
105
150
 
106
- return (0, _core.jsx)(Component, {
151
+ (0, _tinyInvariant.default)(asAllowlist.includes(Component), "@atlaskit/ds-explorations: Text received an invalid \"as\" value of \"".concat(Component, "\""));
152
+ return (0, _react.jsx)(Component, {
107
153
  style: _objectSpread(_objectSpread({}, UNSAFE_style), fallback && {
108
154
  '--ds-co-fb': fallback
109
155
  }),
110
- css: [baseStyles, color && textColorMap[color], fontSize && fontSizeMap[fontSize], fontWeight && fontWeightMap[fontWeight], lineHeight && lineHeightMap[lineHeight], textAlign && textAlignMap[textAlign]],
111
- href: href,
156
+ css: [baseStyles, color && textColorMap[color], fontSize && fontSizeMap[fontSize], fontWeight && fontWeightMap[fontWeight], lineHeight && lineHeightMap[lineHeight], shouldTruncate && truncateStyles, textAlign && textAlignMap[textAlign], textTransform && textTransformMap[textTransform], verticalAlign && verticalAlignMap[verticalAlign]],
112
157
  "data-testid": testId
113
158
  }, children);
114
159
  };
@@ -116,7 +161,7 @@ var Text = function Text(_ref) {
116
161
  var _default = Text;
117
162
  /**
118
163
  * THIS SECTION WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
119
- * @codegen <<SignedSource::85a0a0bc073c7af8fd63101d6c88d59e>>
164
+ * @codegen <<SignedSource::140ffff6e1310c1c37e2067e2c232b92>>
120
165
  * @codegenId colors
121
166
  * @codegenCommand yarn codegen-styles
122
167
  * @codegenParams ["text"]
@@ -124,43 +169,43 @@ var _default = Text;
124
169
 
125
170
  exports.default = _default;
126
171
  var textColorMap = {
127
- 'color.text': (0, _core.css)({
172
+ 'color.text': (0, _react.css)({
128
173
  color: "var(--ds-text, var(--ds-co-fb))"
129
174
  }),
130
- subtle: (0, _core.css)({
175
+ subtle: (0, _react.css)({
131
176
  color: "var(--ds-text-subtle, var(--ds-co-fb))"
132
177
  }),
133
- subtlest: (0, _core.css)({
178
+ subtlest: (0, _react.css)({
134
179
  color: "var(--ds-text-subtlest, var(--ds-co-fb))"
135
180
  }),
136
- disabled: (0, _core.css)({
181
+ disabled: (0, _react.css)({
137
182
  color: "var(--ds-text-disabled, var(--ds-co-fb))"
138
183
  }),
139
- inverse: (0, _core.css)({
184
+ inverse: (0, _react.css)({
140
185
  color: "var(--ds-text-inverse, var(--ds-co-fb))"
141
186
  }),
142
- brand: (0, _core.css)({
187
+ brand: (0, _react.css)({
143
188
  color: "var(--ds-text-brand, var(--ds-co-fb))"
144
189
  }),
145
- selected: (0, _core.css)({
190
+ selected: (0, _react.css)({
146
191
  color: "var(--ds-text-selected, var(--ds-co-fb))"
147
192
  }),
148
- danger: (0, _core.css)({
193
+ danger: (0, _react.css)({
149
194
  color: "var(--ds-text-danger, var(--ds-co-fb))"
150
195
  }),
151
- warning: (0, _core.css)({
196
+ warning: (0, _react.css)({
152
197
  color: "var(--ds-text-warning, var(--ds-co-fb))"
153
198
  }),
154
- 'warning.inverse': (0, _core.css)({
199
+ 'warning.inverse': (0, _react.css)({
155
200
  color: "var(--ds-text-warning-inverse, var(--ds-co-fb))"
156
201
  }),
157
- success: (0, _core.css)({
202
+ success: (0, _react.css)({
158
203
  color: "var(--ds-text-success, var(--ds-co-fb))"
159
204
  }),
160
- discovery: (0, _core.css)({
205
+ discovery: (0, _react.css)({
161
206
  color: "var(--ds-text-discovery, var(--ds-co-fb))"
162
207
  }),
163
- information: (0, _core.css)({
208
+ information: (0, _react.css)({
164
209
  color: "var(--ds-text-information, var(--ds-co-fb))"
165
210
  })
166
211
  };
@@ -10,6 +10,7 @@ var SPACING_SCALE = {
10
10
  'sp-50': 4,
11
11
  'sp-75': 6,
12
12
  'sp-100': 8,
13
+ 'sp-150': 12,
13
14
  'sp-200': 16,
14
15
  'sp-300': 24,
15
16
  'sp-400': 32,
package/dist/cjs/index.js CHANGED
@@ -17,6 +17,18 @@ Object.defineProperty(exports, "UNSAFE_Inline", {
17
17
  return _inline.default;
18
18
  }
19
19
  });
20
+ Object.defineProperty(exports, "UNSAFE_InteractionSurface", {
21
+ enumerable: true,
22
+ get: function get() {
23
+ return _interactionSurface.default;
24
+ }
25
+ });
26
+ Object.defineProperty(exports, "UNSAFE_SPACING_SCALE", {
27
+ enumerable: true,
28
+ get: function get() {
29
+ return _constants.SPACING_SCALE;
30
+ }
31
+ });
20
32
  Object.defineProperty(exports, "UNSAFE_Stack", {
21
33
  enumerable: true,
22
34
  get: function get() {
@@ -36,4 +48,8 @@ var _text = _interopRequireDefault(require("./components/text.partial"));
36
48
 
37
49
  var _inline = _interopRequireDefault(require("./components/inline.partial"));
38
50
 
39
- var _stack = _interopRequireDefault(require("./components/stack.partial"));
51
+ var _stack = _interopRequireDefault(require("./components/stack.partial"));
52
+
53
+ var _interactionSurface = _interopRequireDefault(require("./components/interaction-surface.partial"));
54
+
55
+ var _constants = require("./constants");
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.colorMap = void 0;
7
+
8
+ /**
9
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
10
+ *
11
+ * Some artifact
12
+ *
13
+ * @codegen <<SignedSource::8f568e4f0837f7af4a10429e060ad059>>
14
+ * @codegenCommand yarn codegen-styles
15
+ */
16
+ var colorMap = {
17
+ 'neutral.bold': 'inverse',
18
+ 'neutral.bold.hovered': 'inverse',
19
+ 'neutral.bold.pressed': 'inverse',
20
+ 'brand.bold': 'inverse',
21
+ 'brand.bold.hovered': 'inverse',
22
+ 'brand.bold.pressed': 'inverse',
23
+ 'selected.bold': 'inverse',
24
+ 'selected.bold.hovered': 'inverse',
25
+ 'selected.bold.pressed': 'inverse',
26
+ 'danger.bold': 'inverse',
27
+ 'danger.bold.hovered': 'inverse',
28
+ 'danger.bold.pressed': 'inverse',
29
+ 'warning.bold': 'warning.inverse',
30
+ 'warning.bold.hovered': 'warning.inverse',
31
+ 'warning.bold.pressed': 'warning.inverse',
32
+ 'success.bold': 'inverse',
33
+ 'success.bold.hovered': 'inverse',
34
+ 'success.bold.pressed': 'inverse',
35
+ 'discovery.bold': 'inverse',
36
+ 'discovery.bold.hovered': 'inverse',
37
+ 'discovery.bold.pressed': 'inverse',
38
+ 'information.bold': 'inverse',
39
+ 'information.bold.hovered': 'inverse',
40
+ 'information.bold.pressed': 'inverse'
41
+ };
42
+ exports.colorMap = colorMap;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+
8
+ /**
9
+ * Adapted straight from react-mui, with a small change.
10
+ * @see https://www.unpkg.com/browse/react-gui@0.2.1/src/modules/getAccessibilityElementWithSideEffect.js
11
+ */
12
+ var roleToElementType = {
13
+ article: 'article',
14
+ banner: 'header',
15
+ blockquote: 'blockquote',
16
+ button: 'button',
17
+ code: 'code',
18
+ complementary: 'aside',
19
+ contentinfo: 'footer',
20
+ deletion: 'del',
21
+ emphasis: 'em',
22
+ figure: 'figure',
23
+ insertion: 'ins',
24
+ form: 'form',
25
+ link: 'a',
26
+ list: 'ul',
27
+ listitem: 'li',
28
+ main: 'main',
29
+ navigation: 'nav',
30
+ region: 'section',
31
+ strong: 'strong',
32
+ presentation: 'div',
33
+ group: 'fieldset'
34
+ };
35
+ var _default = roleToElementType;
36
+ exports.default = _default;
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/ds-explorations",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "sideEffects": false
5
5
  }
@@ -2,8 +2,67 @@ import _extends from "@babel/runtime/helpers/extends";
2
2
 
3
3
  /** @jsx jsx */
4
4
  import { forwardRef } from 'react';
5
- import { css, jsx } from '@emotion/core';
5
+ import { css, jsx } from '@emotion/react';
6
6
  import { SPACING_SCALE } from '../constants';
7
+ import { SurfaceContext } from './surface-provider';
8
+
9
+ /**
10
+ * __Box__
11
+ *
12
+ * Box is a primitive component that has the design decisions of the Atlassian Design System baked in.
13
+ * Renders a `div` by default.
14
+ *
15
+ * @internal
16
+ */
17
+ const Box = /*#__PURE__*/forwardRef(({
18
+ children,
19
+ as: Component = 'div',
20
+ className,
21
+ display = 'flex',
22
+ flexDirection,
23
+ alignItems,
24
+ justifyContent,
25
+ backgroundColor: backgroundColorTuple,
26
+ borderColor: borderColorTuple,
27
+ borderStyle,
28
+ borderWidth,
29
+ borderRadius,
30
+ padding,
31
+ paddingBlock,
32
+ paddingInline,
33
+ position = 'relative',
34
+ height,
35
+ width,
36
+ UNSAFE_style,
37
+ testId,
38
+ ...htmlAttributes
39
+ }, ref) => {
40
+ const [backgroundColor, backgroundColorFallback] = backgroundColorTuple || [];
41
+ const [borderColor, borderColorFallback] = borderColorTuple || [];
42
+ const node = jsx(Component, _extends({
43
+ style: { ...UNSAFE_style,
44
+ ...(backgroundColorFallback && {
45
+ '--ds-bg-fb': backgroundColorFallback
46
+ }),
47
+ ...(borderColorFallback && {
48
+ '--ds-bo-fb': borderColorFallback
49
+ })
50
+ } // @ts-ignore
51
+ ,
52
+ ref: ref // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
53
+
54
+ }, htmlAttributes, {
55
+ className: className,
56
+ css: [baseStyles, display && displayMap[display], padding && paddingMap[padding], position && positionMap[position], paddingBlock && paddingBlockMap[paddingBlock], paddingInline && paddingInlineMap[paddingInline], alignItems && flexAlignItemsMap[alignItems], justifyContent && flexJustifyContentMap[justifyContent], backgroundColor && backgroundColorMap[backgroundColor], borderColor && borderColorMap[borderColor], borderStyle && borderStyleMap[borderStyle], borderWidth && borderWidthMap[borderWidth], borderRadius && borderRadiusMap[borderRadius], flexDirection && flexDirectionMap[flexDirection], width && widthMap[width], height && heightMap[height]],
57
+ "data-testid": testId
58
+ }), children);
59
+ return backgroundColor ? jsx(SurfaceContext.Provider, {
60
+ value: backgroundColor
61
+ }, node) : node;
62
+ });
63
+ Box.displayName = 'Box';
64
+ export default Box; // <<< STYLES GO HERE >>>
65
+
7
66
  const borderStyleMap = {
8
67
  none: css({
9
68
  borderStyle: 'none'
@@ -91,67 +150,24 @@ const displayMap = {
91
150
  })
92
151
  };
93
152
  const baseStyles = css({
94
- boxSizing: 'border-box'
153
+ boxSizing: 'border-box',
154
+ appearance: 'none',
155
+ border: 'none'
95
156
  });
96
- /**
97
- * __Box__
98
- *
99
- * Box is a primitive component that has the design decisions of the Atlassian Design System baked in.
100
- * Renders a `div` by default.
101
- *
102
- * @internal
103
- */
104
-
105
- const Box = /*#__PURE__*/forwardRef(({
106
- children,
107
- as: Component = 'div',
108
- display = 'flex',
109
- flexDirection,
110
- alignItems,
111
- justifyContent,
112
- backgroundColor: backgroundColorTuple,
113
- borderColor: borderColorTuple,
114
- borderStyle,
115
- borderWidth,
116
- borderRadius,
117
- padding,
118
- paddingBlock,
119
- paddingInline,
120
- height,
121
- width,
122
- UNSAFE_style,
123
- testId,
124
-
125
- /**
126
- * Pull this out to prevent accidentaly spread
127
- */
128
- // @ts-ignore
129
- // @eslint-disbale-next-line no-unused-vars
130
- className: dontUseThisProperty,
131
- ...htmlAttributes
132
- }, ref) => {
133
- const [backgroundColor, backgroundColorFallback] = backgroundColorTuple || [];
134
- const [borderColor, borderColorFallback] = borderColorTuple || [];
135
- return jsx(Component, _extends({
136
- style: { ...UNSAFE_style,
137
- ...(backgroundColorFallback && {
138
- '--ds-bg-fb': backgroundColorFallback
139
- }),
140
- ...(borderColorFallback && {
141
- '--ds-bo-fb': borderColorFallback
142
- })
143
- },
144
- ref: ref // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
145
-
146
- }, htmlAttributes, {
147
- css: [baseStyles, display && displayMap[display], padding && paddingMap[padding], paddingBlock && paddingBlockMap[paddingBlock], paddingInline && paddingInlineMap[paddingInline], alignItems && flexAlignItemsMap[alignItems], justifyContent && flexJustifyContentMap[justifyContent], backgroundColor && backgroundColorMap[backgroundColor], borderColor && borderColorMap[borderColor], borderStyle && borderStyleMap[borderStyle], borderWidth && borderWidthMap[borderWidth], borderRadius && borderRadiusMap[borderRadius], flexDirection && flexDirectionMap[flexDirection], width && widthMap[width], height && heightMap[height]],
148
- "data-testid": testId
149
- }), children);
150
- });
151
- export default Box;
157
+ const positionMap = {
158
+ absolute: css({
159
+ position: 'absolute'
160
+ }),
161
+ relative: css({
162
+ position: 'relative'
163
+ }),
164
+ static: css({
165
+ position: 'static'
166
+ })
167
+ };
152
168
  /**
153
169
  * THIS SECTION WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
154
- * @codegen <<SignedSource::c20a27ff33adec8c016044959564409d>>
170
+ * @codegen <<SignedSource::57b4c7c177fdfae3f7cd4f00287fd30e>>
155
171
  * @codegenId spacing
156
172
  * @codegenCommand yarn codegen-styles
157
173
  * @codegenParams ["padding", "paddingBlock", "paddingInline", "width", "height"]
@@ -173,6 +189,9 @@ const paddingMap = {
173
189
  'sp-100': css({
174
190
  padding: SPACING_SCALE['sp-100']
175
191
  }),
192
+ 'sp-150': css({
193
+ padding: SPACING_SCALE['sp-150']
194
+ }),
176
195
  'sp-200': css({
177
196
  padding: SPACING_SCALE['sp-200']
178
197
  }),
@@ -208,6 +227,9 @@ const paddingBlockMap = {
208
227
  'sp-100': css({
209
228
  paddingBlock: SPACING_SCALE['sp-100']
210
229
  }),
230
+ 'sp-150': css({
231
+ paddingBlock: SPACING_SCALE['sp-150']
232
+ }),
211
233
  'sp-200': css({
212
234
  paddingBlock: SPACING_SCALE['sp-200']
213
235
  }),
@@ -243,6 +265,9 @@ const paddingInlineMap = {
243
265
  'sp-100': css({
244
266
  paddingInline: SPACING_SCALE['sp-100']
245
267
  }),
268
+ 'sp-150': css({
269
+ paddingInline: SPACING_SCALE['sp-150']
270
+ }),
246
271
  'sp-200': css({
247
272
  paddingInline: SPACING_SCALE['sp-200']
248
273
  }),
@@ -278,6 +303,9 @@ const widthMap = {
278
303
  'sp-100': css({
279
304
  width: SPACING_SCALE['sp-100']
280
305
  }),
306
+ 'sp-150': css({
307
+ width: SPACING_SCALE['sp-150']
308
+ }),
281
309
  'sp-200': css({
282
310
  width: SPACING_SCALE['sp-200']
283
311
  }),
@@ -313,6 +341,9 @@ const heightMap = {
313
341
  'sp-100': css({
314
342
  height: SPACING_SCALE['sp-100']
315
343
  }),
344
+ 'sp-150': css({
345
+ height: SPACING_SCALE['sp-150']
346
+ }),
316
347
  'sp-200': css({
317
348
  height: SPACING_SCALE['sp-200']
318
349
  }),
@@ -338,7 +369,7 @@ const heightMap = {
338
369
 
339
370
  /**
340
371
  * THIS SECTION WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
341
- * @codegen <<SignedSource::e3f27406477352f51168b4108558f051>>
372
+ * @codegen <<SignedSource::ebb55786a54803214357d0eef0cac448>>
342
373
  * @codegenId colors
343
374
  * @codegenCommand yarn codegen-styles
344
375
  * @codegenParams ["border", "background"]
@@ -1,6 +1,6 @@
1
1
  /** @jsx jsx */
2
2
  import { Children, forwardRef, Fragment } from 'react';
3
- import { css, jsx } from '@emotion/core';
3
+ import { css, jsx } from '@emotion/react';
4
4
  import { SPACING_SCALE } from '../constants';
5
5
  import Text from './text.partial';
6
6
  const flexAlignItemsMap = {
@@ -58,10 +58,11 @@ const Inline = /*#__PURE__*/forwardRef(({
58
58
  return jsx(Fragment, null, divider && index > 0 ? dividerComponent : null, child);
59
59
  }));
60
60
  });
61
+ Inline.displayName = 'Inline';
61
62
  export default Inline;
62
63
  /**
63
64
  * THIS SECTION WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
64
- * @codegen <<SignedSource::ac3192fbc453a94ab5e720d0273556ef>>
65
+ * @codegen <<SignedSource::36d00b5586593733c7f84e9a10ddb7fd>>
65
66
  * @codegenId spacing
66
67
  * @codegenCommand yarn codegen-styles
67
68
  * @codegenParams ["gap"]
@@ -83,6 +84,9 @@ const gapMap = {
83
84
  'sp-100': css({
84
85
  gap: SPACING_SCALE['sp-100']
85
86
  }),
87
+ 'sp-150': css({
88
+ gap: SPACING_SCALE['sp-150']
89
+ }),
86
90
  'sp-200': css({
87
91
  gap: SPACING_SCALE['sp-200']
88
92
  }),