@atlaskit/object 0.1.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 +12 -0
- package/LICENSE.md +11 -0
- package/README.md +18 -0
- package/dist/cjs/components/object/all-objects.js +35 -0
- package/dist/cjs/components/object/components/blog.js +29 -0
- package/dist/cjs/components/object/components/branch.js +29 -0
- package/dist/cjs/components/object/components/bug.js +29 -0
- package/dist/cjs/components/object/components/calendar.js +29 -0
- package/dist/cjs/components/object/components/changes.js +29 -0
- package/dist/cjs/components/object/components/code.js +29 -0
- package/dist/cjs/components/object/components/commit.js +29 -0
- package/dist/cjs/components/object/components/epic.js +29 -0
- package/dist/cjs/components/object/components/improvement.js +29 -0
- package/dist/cjs/components/object/components/incident.js +29 -0
- package/dist/cjs/components/object/components/issue.js +29 -0
- package/dist/cjs/components/object/components/new-feature.js +29 -0
- package/dist/cjs/components/object/components/page-live-doc.js +29 -0
- package/dist/cjs/components/object/components/page.js +29 -0
- package/dist/cjs/components/object/components/problem.js +29 -0
- package/dist/cjs/components/object/components/pull-request.js +29 -0
- package/dist/cjs/components/object/components/question.js +29 -0
- package/dist/cjs/components/object/components/story.js +29 -0
- package/dist/cjs/components/object/components/subtask.js +29 -0
- package/dist/cjs/components/object/components/task.js +29 -0
- package/dist/cjs/components/object/components/whiteboard.js +29 -0
- package/dist/cjs/components/object/object-base.js +29 -0
- package/dist/cjs/components/object/types.js +1 -0
- package/dist/cjs/components/object-tile/all-object-tiles.js +35 -0
- package/dist/cjs/components/object-tile/components/blog.js +32 -0
- package/dist/cjs/components/object-tile/components/branch.js +32 -0
- package/dist/cjs/components/object-tile/components/bug.js +32 -0
- package/dist/cjs/components/object-tile/components/calendar.js +32 -0
- package/dist/cjs/components/object-tile/components/changes.js +32 -0
- package/dist/cjs/components/object-tile/components/code.js +32 -0
- package/dist/cjs/components/object-tile/components/commit.js +32 -0
- package/dist/cjs/components/object-tile/components/epic.js +32 -0
- package/dist/cjs/components/object-tile/components/improvement.js +32 -0
- package/dist/cjs/components/object-tile/components/incident.js +32 -0
- package/dist/cjs/components/object-tile/components/issue.js +32 -0
- package/dist/cjs/components/object-tile/components/new-feature.js +32 -0
- package/dist/cjs/components/object-tile/components/page-live-doc.js +32 -0
- package/dist/cjs/components/object-tile/components/page.js +32 -0
- package/dist/cjs/components/object-tile/components/problem.js +32 -0
- package/dist/cjs/components/object-tile/components/pull-request.js +32 -0
- package/dist/cjs/components/object-tile/components/question.js +32 -0
- package/dist/cjs/components/object-tile/components/story.js +32 -0
- package/dist/cjs/components/object-tile/components/subtask.js +32 -0
- package/dist/cjs/components/object-tile/components/task.js +32 -0
- package/dist/cjs/components/object-tile/components/whiteboard.js +32 -0
- package/dist/cjs/components/object-tile/object-tile-base.js +41 -0
- package/dist/cjs/components/object-tile/types.js +1 -0
- package/dist/cjs/index.js +1 -0
- package/dist/es2019/components/object/all-objects.js +27 -0
- package/dist/es2019/components/object/components/blog.js +21 -0
- package/dist/es2019/components/object/components/branch.js +21 -0
- package/dist/es2019/components/object/components/bug.js +21 -0
- package/dist/es2019/components/object/components/calendar.js +21 -0
- package/dist/es2019/components/object/components/changes.js +21 -0
- package/dist/es2019/components/object/components/code.js +21 -0
- package/dist/es2019/components/object/components/commit.js +21 -0
- package/dist/es2019/components/object/components/epic.js +21 -0
- package/dist/es2019/components/object/components/improvement.js +21 -0
- package/dist/es2019/components/object/components/incident.js +21 -0
- package/dist/es2019/components/object/components/issue.js +21 -0
- package/dist/es2019/components/object/components/new-feature.js +21 -0
- package/dist/es2019/components/object/components/page-live-doc.js +21 -0
- package/dist/es2019/components/object/components/page.js +21 -0
- package/dist/es2019/components/object/components/problem.js +21 -0
- package/dist/es2019/components/object/components/pull-request.js +21 -0
- package/dist/es2019/components/object/components/question.js +21 -0
- package/dist/es2019/components/object/components/story.js +21 -0
- package/dist/es2019/components/object/components/subtask.js +21 -0
- package/dist/es2019/components/object/components/task.js +21 -0
- package/dist/es2019/components/object/components/whiteboard.js +21 -0
- package/dist/es2019/components/object/object-base.js +21 -0
- package/dist/es2019/components/object/types.js +0 -0
- package/dist/es2019/components/object-tile/all-object-tiles.js +27 -0
- package/dist/es2019/components/object-tile/components/blog.js +24 -0
- package/dist/es2019/components/object-tile/components/branch.js +24 -0
- package/dist/es2019/components/object-tile/components/bug.js +24 -0
- package/dist/es2019/components/object-tile/components/calendar.js +24 -0
- package/dist/es2019/components/object-tile/components/changes.js +24 -0
- package/dist/es2019/components/object-tile/components/code.js +24 -0
- package/dist/es2019/components/object-tile/components/commit.js +24 -0
- package/dist/es2019/components/object-tile/components/epic.js +24 -0
- package/dist/es2019/components/object-tile/components/improvement.js +24 -0
- package/dist/es2019/components/object-tile/components/incident.js +24 -0
- package/dist/es2019/components/object-tile/components/issue.js +24 -0
- package/dist/es2019/components/object-tile/components/new-feature.js +24 -0
- package/dist/es2019/components/object-tile/components/page-live-doc.js +24 -0
- package/dist/es2019/components/object-tile/components/page.js +24 -0
- package/dist/es2019/components/object-tile/components/problem.js +24 -0
- package/dist/es2019/components/object-tile/components/pull-request.js +24 -0
- package/dist/es2019/components/object-tile/components/question.js +24 -0
- package/dist/es2019/components/object-tile/components/story.js +24 -0
- package/dist/es2019/components/object-tile/components/subtask.js +24 -0
- package/dist/es2019/components/object-tile/components/task.js +24 -0
- package/dist/es2019/components/object-tile/components/whiteboard.js +24 -0
- package/dist/es2019/components/object-tile/object-tile-base.js +33 -0
- package/dist/es2019/components/object-tile/types.js +0 -0
- package/dist/es2019/index.js +0 -0
- package/dist/esm/components/object/all-objects.js +27 -0
- package/dist/esm/components/object/components/blog.js +21 -0
- package/dist/esm/components/object/components/branch.js +21 -0
- package/dist/esm/components/object/components/bug.js +21 -0
- package/dist/esm/components/object/components/calendar.js +21 -0
- package/dist/esm/components/object/components/changes.js +21 -0
- package/dist/esm/components/object/components/code.js +21 -0
- package/dist/esm/components/object/components/commit.js +21 -0
- package/dist/esm/components/object/components/epic.js +21 -0
- package/dist/esm/components/object/components/improvement.js +21 -0
- package/dist/esm/components/object/components/incident.js +21 -0
- package/dist/esm/components/object/components/issue.js +21 -0
- package/dist/esm/components/object/components/new-feature.js +21 -0
- package/dist/esm/components/object/components/page-live-doc.js +21 -0
- package/dist/esm/components/object/components/page.js +21 -0
- package/dist/esm/components/object/components/problem.js +21 -0
- package/dist/esm/components/object/components/pull-request.js +21 -0
- package/dist/esm/components/object/components/question.js +21 -0
- package/dist/esm/components/object/components/story.js +21 -0
- package/dist/esm/components/object/components/subtask.js +21 -0
- package/dist/esm/components/object/components/task.js +21 -0
- package/dist/esm/components/object/components/whiteboard.js +21 -0
- package/dist/esm/components/object/object-base.js +22 -0
- package/dist/esm/components/object/types.js +0 -0
- package/dist/esm/components/object-tile/all-object-tiles.js +27 -0
- package/dist/esm/components/object-tile/components/blog.js +24 -0
- package/dist/esm/components/object-tile/components/branch.js +24 -0
- package/dist/esm/components/object-tile/components/bug.js +24 -0
- package/dist/esm/components/object-tile/components/calendar.js +24 -0
- package/dist/esm/components/object-tile/components/changes.js +24 -0
- package/dist/esm/components/object-tile/components/code.js +24 -0
- package/dist/esm/components/object-tile/components/commit.js +24 -0
- package/dist/esm/components/object-tile/components/epic.js +24 -0
- package/dist/esm/components/object-tile/components/improvement.js +24 -0
- package/dist/esm/components/object-tile/components/incident.js +24 -0
- package/dist/esm/components/object-tile/components/issue.js +24 -0
- package/dist/esm/components/object-tile/components/new-feature.js +24 -0
- package/dist/esm/components/object-tile/components/page-live-doc.js +24 -0
- package/dist/esm/components/object-tile/components/page.js +24 -0
- package/dist/esm/components/object-tile/components/problem.js +24 -0
- package/dist/esm/components/object-tile/components/pull-request.js +24 -0
- package/dist/esm/components/object-tile/components/question.js +24 -0
- package/dist/esm/components/object-tile/components/story.js +24 -0
- package/dist/esm/components/object-tile/components/subtask.js +24 -0
- package/dist/esm/components/object-tile/components/task.js +24 -0
- package/dist/esm/components/object-tile/components/whiteboard.js +24 -0
- package/dist/esm/components/object-tile/object-tile-base.js +34 -0
- package/dist/esm/components/object-tile/types.js +0 -0
- package/dist/esm/index.js +0 -0
- package/dist/types/components/object/all-objects.d.ts +7 -0
- package/dist/types/components/object/components/blog.d.ts +8 -0
- package/dist/types/components/object/components/branch.d.ts +8 -0
- package/dist/types/components/object/components/bug.d.ts +8 -0
- package/dist/types/components/object/components/calendar.d.ts +8 -0
- package/dist/types/components/object/components/changes.d.ts +8 -0
- package/dist/types/components/object/components/code.d.ts +8 -0
- package/dist/types/components/object/components/commit.d.ts +8 -0
- package/dist/types/components/object/components/epic.d.ts +8 -0
- package/dist/types/components/object/components/improvement.d.ts +8 -0
- package/dist/types/components/object/components/incident.d.ts +8 -0
- package/dist/types/components/object/components/issue.d.ts +8 -0
- package/dist/types/components/object/components/new-feature.d.ts +8 -0
- package/dist/types/components/object/components/page-live-doc.d.ts +8 -0
- package/dist/types/components/object/components/page.d.ts +8 -0
- package/dist/types/components/object/components/problem.d.ts +8 -0
- package/dist/types/components/object/components/pull-request.d.ts +8 -0
- package/dist/types/components/object/components/question.d.ts +8 -0
- package/dist/types/components/object/components/story.d.ts +8 -0
- package/dist/types/components/object/components/subtask.d.ts +8 -0
- package/dist/types/components/object/components/task.d.ts +8 -0
- package/dist/types/components/object/components/whiteboard.d.ts +8 -0
- package/dist/types/components/object/object-base.d.ts +15 -0
- package/dist/types/components/object/types.d.ts +24 -0
- package/dist/types/components/object-tile/all-object-tiles.d.ts +7 -0
- package/dist/types/components/object-tile/components/blog.d.ts +8 -0
- package/dist/types/components/object-tile/components/branch.d.ts +8 -0
- package/dist/types/components/object-tile/components/bug.d.ts +8 -0
- package/dist/types/components/object-tile/components/calendar.d.ts +8 -0
- package/dist/types/components/object-tile/components/changes.d.ts +8 -0
- package/dist/types/components/object-tile/components/code.d.ts +8 -0
- package/dist/types/components/object-tile/components/commit.d.ts +8 -0
- package/dist/types/components/object-tile/components/epic.d.ts +8 -0
- package/dist/types/components/object-tile/components/improvement.d.ts +8 -0
- package/dist/types/components/object-tile/components/incident.d.ts +8 -0
- package/dist/types/components/object-tile/components/issue.d.ts +8 -0
- package/dist/types/components/object-tile/components/new-feature.d.ts +8 -0
- package/dist/types/components/object-tile/components/page-live-doc.d.ts +8 -0
- package/dist/types/components/object-tile/components/page.d.ts +8 -0
- package/dist/types/components/object-tile/components/problem.d.ts +8 -0
- package/dist/types/components/object-tile/components/pull-request.d.ts +8 -0
- package/dist/types/components/object-tile/components/question.d.ts +8 -0
- package/dist/types/components/object-tile/components/story.d.ts +8 -0
- package/dist/types/components/object-tile/components/subtask.d.ts +8 -0
- package/dist/types/components/object-tile/components/task.d.ts +8 -0
- package/dist/types/components/object-tile/components/whiteboard.d.ts +8 -0
- package/dist/types/components/object-tile/object-tile-base.d.ts +17 -0
- package/dist/types/components/object-tile/types.d.ts +35 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types-ts4.5/components/object/all-objects.d.ts +7 -0
- package/dist/types-ts4.5/components/object/components/blog.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/branch.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/bug.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/calendar.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/changes.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/code.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/commit.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/epic.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/improvement.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/incident.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/issue.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/new-feature.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/page-live-doc.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/page.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/problem.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/pull-request.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/question.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/story.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/subtask.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/task.d.ts +8 -0
- package/dist/types-ts4.5/components/object/components/whiteboard.d.ts +8 -0
- package/dist/types-ts4.5/components/object/object-base.d.ts +15 -0
- package/dist/types-ts4.5/components/object/types.d.ts +24 -0
- package/dist/types-ts4.5/components/object-tile/all-object-tiles.d.ts +7 -0
- package/dist/types-ts4.5/components/object-tile/components/blog.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/branch.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/bug.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/calendar.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/changes.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/code.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/commit.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/epic.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/improvement.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/incident.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/issue.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/new-feature.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/page-live-doc.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/page.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/problem.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/pull-request.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/question.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/story.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/subtask.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/task.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/components/whiteboard.d.ts +8 -0
- package/dist/types-ts4.5/components/object-tile/object-tile-base.d.ts +17 -0
- package/dist/types-ts4.5/components/object-tile/types.d.ts +35 -0
- package/dist/types-ts4.5/index.d.ts +2 -0
- package/package.json +107 -0
- package/tile/package.json +9 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::f42fce59eb0e764a273601e1315115f0>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/changes';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function ChangesObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Changes' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-yellow, #B38600)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.yellow.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::016bd773c428d9cd111bcf1f84a78a85>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/angle-brackets';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function CodeObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Code' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-purple, #8270DB)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.purple.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::eabe6fffcc54955926bd4c8aeb572a99>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/commit';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function CommitObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Commit' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-yellow, #B38600)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.yellow.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::22b0f03727afe0eb4bd6c84b8db8d139>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/epic';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function EpicObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Epic' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-purple, #8270DB)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.purple.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::bbe2678be641ef4927b2edd795d3b99a>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/arrow-up';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function ImprovementObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Improvement' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-green, #22A06B)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.green.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::17a5c5adbcacd774fe1f29834c5b7092>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/incident';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function IncidentObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Incident' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-red, #C9372C)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.red.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::285fc8d755070ab26e6841c82b7e4332>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/work-item';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function IssueObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Issue' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-blue, #1D7AFC)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.blue.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::4c0efa7f96a0b8feeba5faa90e75f70b>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/add';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function NewFeatureObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'New Feature' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-green, #22A06B)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.green.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::a352b4655dfdb9527886d577a3440c64>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon-lab/core/page-live-doc';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function PageLiveDocObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Page Live Doc' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-magenta, #CD519D)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.magenta.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::3c738bff4bd14e0dc6a4c5c2ebecf10b>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/page';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function PageObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Page' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-blue, #1D7AFC)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.blue.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::9c597341a531e9c902eab31cb273de4f>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/problem';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function ProblemObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Problem' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-red, #C9372C)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.red.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::bb612b6d38bf62d2ab8fe6da1e4b1ef7>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/pull-request';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function PullRequestObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Pull Request' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-green, #22A06B)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.green.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::95bf1caf442e1d8f4f2fc8c4becc45cb>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/question-circle';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function QuestionObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Question' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-purple, #8270DB)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.purple.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::11645dcfcd04d3a0c68e0e7e80e940e9>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/story';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function StoryObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Story' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-green, #22A06B)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.green.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::4670d53594bd7203f411b5317bd4753b>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/subtasks';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function SubtaskObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Subtask' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-blue, #1D7AFC)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.blue.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::51c042113355bfc978517ff99d7a7e77>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/task';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function TaskObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Task' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-blue, #1D7AFC)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.blue.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::22c25157f6ecfe525f8a4a12a7c72516>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import IconComponent from '@atlaskit/icon/core/whiteboard';
|
|
8
|
+
import ObjectTileBase from '../object-tile-base';
|
|
9
|
+
export default function WhiteboardObjectTile(_ref) {
|
|
10
|
+
var _ref$label = _ref.label,
|
|
11
|
+
label = _ref$label === void 0 ? 'Whiteboard' : _ref$label,
|
|
12
|
+
size = _ref.size,
|
|
13
|
+
testId = _ref.testId,
|
|
14
|
+
isBold = _ref.isBold;
|
|
15
|
+
return /*#__PURE__*/React.createElement(ObjectTileBase, {
|
|
16
|
+
label: label,
|
|
17
|
+
size: size,
|
|
18
|
+
testId: testId,
|
|
19
|
+
isBold: isBold,
|
|
20
|
+
icon: IconComponent,
|
|
21
|
+
color: isBold ? "var(--ds-icon, #44546F)" : "var(--ds-icon-accent-teal, #2898BD)",
|
|
22
|
+
backgroundColor: isBold ? 'color.background.accent.teal.subtle' : undefined
|
|
23
|
+
});
|
|
24
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import invariant from 'tiny-invariant';
|
|
3
|
+
import Tile from '@atlaskit/tile';
|
|
4
|
+
/**
|
|
5
|
+
* __Object tile base__
|
|
6
|
+
*
|
|
7
|
+
* An object tile represents an Atlassian-specific content type.
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
export default function ObjectTileBase(_ref) {
|
|
11
|
+
var _ref$label = _ref.label,
|
|
12
|
+
label = _ref$label === void 0 ? '' : _ref$label,
|
|
13
|
+
_ref$size = _ref.size,
|
|
14
|
+
size = _ref$size === void 0 ? 'medium' : _ref$size,
|
|
15
|
+
testId = _ref.testId,
|
|
16
|
+
color = _ref.color,
|
|
17
|
+
backgroundColor = _ref.backgroundColor,
|
|
18
|
+
Icon = _ref.icon;
|
|
19
|
+
// Validate that size is a valid `ObjectTileSize` (and won't allow Tile's `xxsmall` size to be passed)
|
|
20
|
+
var validSizes = ['xsmall', 'small', 'medium', 'large', 'xlarge'];
|
|
21
|
+
invariant(validSizes.includes(size), "ObjectTile: size \"".concat(size, "\" is not valid. Valid sizes are: ").concat(validSizes.join(', ')));
|
|
22
|
+
return /*#__PURE__*/React.createElement(Tile, {
|
|
23
|
+
label: "",
|
|
24
|
+
backgroundColor: backgroundColor,
|
|
25
|
+
size: size
|
|
26
|
+
}, /*#__PURE__*/React.createElement(Icon, {
|
|
27
|
+
label: label,
|
|
28
|
+
color: color,
|
|
29
|
+
testId: testId
|
|
30
|
+
// @ts-expect-error - Internal, undocumented prop
|
|
31
|
+
,
|
|
32
|
+
shouldScale: true
|
|
33
|
+
}));
|
|
34
|
+
}
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::35ce507433a97f4bb1de39d17aa59992>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import BlogObject from './components/blog';
|
|
7
|
+
export declare const allObjects: (typeof BlogObject)[];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::71710c8d08c57bbf58f78a4e706d0dbc>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function BlogObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::e275dc6592ecf442a7c426a09d935f5b>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function BranchObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::22ca0a8be683d89f4eb7f64de7045f3a>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function BugObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::12093709f1f9afb1c0e3cc6df41b1195>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function CalendarObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::54296c8f93e91c158eaa0522eda93da7>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function ChangesObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::ee0a725ebc181cf02ec7afa41af5541e>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function CodeObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::1094e41e421a85511852be4fae5fa7f6>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function CommitObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::17ac7d60230d95e89692ae24ac0a067f>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function EpicObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::5d266abdd81f9e83208269faa82bd20d>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function ImprovementObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::f7f5af79e88a557a1e470a014a124882>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function IncidentObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::3b32d7b867f04e188d91a3bb04208c2f>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function IssueObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::74f132abaf76953fbf3e2319158f23b5>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function NewFeatureObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::5785cf81143ffecf54124084e22cec07>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function PageLiveDocObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::a19b6a5d18d6bc1916b4356102d3162c>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function PageObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::57a0d3ad210c5a15e83fb8da80edade6>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function ProblemObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::7b8c091277ea9dfac64fe850d2bc0b6b>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function PullRequestObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::5617ab087c206d6d693b854a6d3604aa>>
|
|
4
|
+
* @codegenCommand yarn build-glyphs
|
|
5
|
+
*/
|
|
6
|
+
import React from 'react';
|
|
7
|
+
import type { ObjectProps } from '../types';
|
|
8
|
+
export default function QuestionObject({ label, size, testId }: ObjectProps): React.JSX.Element;
|