@activecollab/components 2.0.343 → 2.0.344

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 (27) hide show
  1. package/dist/cjs/components/Icons/collection/{SourceCode.js → GitRepository.js} +13 -11
  2. package/dist/cjs/components/Icons/collection/GitRepository.js.map +1 -0
  3. package/dist/cjs/components/Icons/collection/index.js +7 -7
  4. package/dist/cjs/components/Icons/collection/index.js.map +1 -1
  5. package/dist/cjs/presentation/shared/headers.js +259 -32
  6. package/dist/cjs/presentation/shared/headers.js.map +1 -1
  7. package/dist/esm/components/Icons/collection/GitRepository.d.ts +16 -0
  8. package/dist/esm/components/Icons/collection/GitRepository.d.ts.map +1 -0
  9. package/dist/esm/components/Icons/collection/{SourceCode.js → GitRepository.js} +13 -11
  10. package/dist/esm/components/Icons/collection/GitRepository.js.map +1 -0
  11. package/dist/esm/components/Icons/collection/index.d.ts +1 -1
  12. package/dist/esm/components/Icons/collection/index.d.ts.map +1 -1
  13. package/dist/esm/components/Icons/collection/index.js +1 -1
  14. package/dist/esm/components/Icons/collection/index.js.map +1 -1
  15. package/dist/esm/presentation/shared/headers.d.ts +8 -1
  16. package/dist/esm/presentation/shared/headers.d.ts.map +1 -1
  17. package/dist/esm/presentation/shared/headers.js +224 -30
  18. package/dist/esm/presentation/shared/headers.js.map +1 -1
  19. package/dist/index.js +229 -227
  20. package/dist/index.js.map +1 -1
  21. package/dist/index.min.js +1 -1
  22. package/dist/index.min.js.map +1 -1
  23. package/package.json +1 -1
  24. package/dist/cjs/components/Icons/collection/SourceCode.js.map +0 -1
  25. package/dist/esm/components/Icons/collection/SourceCode.d.ts +0 -16
  26. package/dist/esm/components/Icons/collection/SourceCode.d.ts.map +0 -1
  27. package/dist/esm/components/Icons/collection/SourceCode.js.map +0 -1
@@ -12,16 +12,16 @@ function _extends() { return _extends = Object.assign ? Object.assign.bind() : f
12
12
  function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
13
13
  function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
14
14
  /**
15
- * @component SourceCodeIcon
15
+ * @component GitRepositoryIcon
16
16
  * @description
17
- * Outline source-code / repository glyph (a window with code chevrons) for
18
- * source-control signifiers.
17
+ * Outline repository glyph (a stacked database cylinder) used as a
18
+ * source-control / repository signifier.
19
19
  *
20
20
  * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.
21
21
  *
22
22
  * @see https://design.activecollab.com/docs/foundations/icons
23
23
  */
24
- var SourceCodeIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
24
+ var GitRepositoryIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
25
25
  var gradient = _ref.gradient,
26
26
  props = _objectWithoutProperties(_ref, _excluded);
27
27
  return /*#__PURE__*/_react.default.createElement("svg", _extends({
@@ -29,7 +29,7 @@ var SourceCodeIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref)
29
29
  width: 24,
30
30
  height: 24,
31
31
  viewBox: "0 0 24 24",
32
- "data-testid": "SourceCodeIcon",
32
+ "data-testid": "GitRepositoryIcon",
33
33
  fill: "none",
34
34
  stroke: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.stroke ? props.stroke : "var(--color-theme-600)",
35
35
  strokeWidth: 2,
@@ -40,13 +40,15 @@ var SourceCodeIcon = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref)
40
40
  }, props), /*#__PURE__*/_react.default.createElement(_GradientDefs.GradientDefs, {
41
41
  gradient: gradient
42
42
  }), /*#__PURE__*/_react.default.createElement("path", {
43
- d: "M14.5 4h2.5a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-10a3 3 0 0 1 -3 -3v-10a3 3 0 0 1 3 -3h2.5"
43
+ d: "M12 4m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0"
44
44
  }), /*#__PURE__*/_react.default.createElement("path", {
45
- d: "M10 9l-2 2l2 2"
45
+ d: "M4 4v5a8 2 0 0 0 16 0v-5"
46
46
  }), /*#__PURE__*/_react.default.createElement("path", {
47
- d: "M14 9l2 2l-2 2"
47
+ d: "M4 9v5a8 2 0 0 0 16 0v-5"
48
+ }), /*#__PURE__*/_react.default.createElement("path", {
49
+ d: "M4 14v5a8 2 0 0 0 16 0v-5"
48
50
  }));
49
51
  });
50
- SourceCodeIcon.displayName = "SourceCodeIcon";
51
- var _default = exports.default = SourceCodeIcon;
52
- //# sourceMappingURL=SourceCode.js.map
52
+ GitRepositoryIcon.displayName = "GitRepositoryIcon";
53
+ var _default = exports.default = GitRepositoryIcon;
54
+ //# sourceMappingURL=GitRepository.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GitRepository.js","names":["_react","_interopRequireDefault","require","_GradientDefs","_excluded","e","__esModule","default","_extends","Object","assign","bind","n","arguments","length","t","r","hasOwnProperty","call","apply","_objectWithoutProperties","o","i","_objectWithoutPropertiesLoose","getOwnPropertySymbols","indexOf","propertyIsEnumerable","GitRepositoryIcon","React","forwardRef","_ref","ref","gradient","props","createElement","xmlns","width","height","viewBox","fill","stroke","strokeWidth","strokeLinecap","strokeLinejoin","focusable","GradientDefs","d","displayName","_default","exports"],"sources":["../../../../../src/components/Icons/collection/GitRepository.tsx"],"sourcesContent":["import React from \"react\";\n\nimport { GradientDefs } from \"../../GradientDefs\";\n\n/**\n * @component GitRepositoryIcon\n * @description\n * Outline repository glyph (a stacked database cylinder) used as a\n * source-control / repository signifier.\n *\n * @prop {string} [gradient] - Optional CSS linear-gradient string applied to the stroke.\n *\n * @see https://design.activecollab.com/docs/foundations/icons\n */\nconst GitRepositoryIcon = React.forwardRef(\n (\n {\n gradient,\n ...props\n }: React.SVGProps<SVGSVGElement> & {\n gradient?: string;\n },\n ref?: React.Ref<SVGSVGElement>\n ) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width={24}\n height={24}\n viewBox=\"0 0 24 24\"\n data-testid=\"GitRepositoryIcon\"\n fill=\"none\"\n stroke={\n gradient\n ? \"url(#icon-gradient)\"\n : props?.stroke\n ? props.stroke\n : \"var(--color-theme-600)\"\n }\n strokeWidth={2}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n focusable={false}\n ref={ref}\n {...props}\n >\n <GradientDefs gradient={gradient} />\n <path d=\"M12 4m-8 0a8 2 0 1 0 16 0a8 2 0 1 0 -16 0\" />\n <path d=\"M4 4v5a8 2 0 0 0 16 0v-5\" />\n <path d=\"M4 9v5a8 2 0 0 0 16 0v-5\" />\n <path d=\"M4 14v5a8 2 0 0 0 16 0v-5\" />\n </svg>\n )\n);\nGitRepositoryIcon.displayName = \"GitRepositoryIcon\";\nexport default GitRepositoryIcon;\n"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AAEA,IAAAC,aAAA,GAAAD,OAAA;AAAkD,IAAAE,SAAA;AAAA,SAAAH,uBAAAI,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,SAAAG,SAAA,WAAAA,QAAA,GAAAC,MAAA,CAAAC,MAAA,GAAAD,MAAA,CAAAC,MAAA,CAAAC,IAAA,eAAAC,CAAA,aAAAP,CAAA,MAAAA,CAAA,GAAAQ,SAAA,CAAAC,MAAA,EAAAT,CAAA,UAAAU,CAAA,GAAAF,SAAA,CAAAR,CAAA,YAAAW,CAAA,IAAAD,CAAA,OAAAE,cAAA,CAAAC,IAAA,CAAAH,CAAA,EAAAC,CAAA,MAAAJ,CAAA,CAAAI,CAAA,IAAAD,CAAA,CAAAC,CAAA,aAAAJ,CAAA,KAAAJ,QAAA,CAAAW,KAAA,OAAAN,SAAA;AAAA,SAAAO,yBAAAf,CAAA,EAAAU,CAAA,gBAAAV,CAAA,iBAAAgB,CAAA,EAAAL,CAAA,EAAAM,CAAA,GAAAC,6BAAA,CAAAlB,CAAA,EAAAU,CAAA,OAAAN,MAAA,CAAAe,qBAAA,QAAAZ,CAAA,GAAAH,MAAA,CAAAe,qBAAA,CAAAnB,CAAA,QAAAW,CAAA,MAAAA,CAAA,GAAAJ,CAAA,CAAAE,MAAA,EAAAE,CAAA,IAAAK,CAAA,GAAAT,CAAA,CAAAI,CAAA,UAAAD,CAAA,CAAAU,OAAA,CAAAJ,CAAA,QAAAK,oBAAA,CAAAR,IAAA,CAAAb,CAAA,EAAAgB,CAAA,MAAAC,CAAA,CAAAD,CAAA,IAAAhB,CAAA,CAAAgB,CAAA,aAAAC,CAAA;AAAA,SAAAC,8BAAAP,CAAA,EAAAX,CAAA,gBAAAW,CAAA,iBAAAD,CAAA,gBAAAH,CAAA,IAAAI,CAAA,SAAAC,cAAA,CAAAC,IAAA,CAAAF,CAAA,EAAAJ,CAAA,gBAAAP,CAAA,CAAAoB,OAAA,CAAAb,CAAA,aAAAG,CAAA,CAAAH,CAAA,IAAAI,CAAA,CAAAJ,CAAA,YAAAG,CAAA;AAElD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAMY,iBAAiB,gBAAGC,cAAK,CAACC,UAAU,CACxC,UAAAC,IAAA,EAOEC,GAA8B;EAAA,IAL5BC,QAAQ,GAAAF,IAAA,CAARE,QAAQ;IACLC,KAAK,GAAAb,wBAAA,CAAAU,IAAA,EAAA1B,SAAA;EAAA,oBAMVJ,MAAA,CAAAO,OAAA,CAAA2B,aAAA,QAAA1B,QAAA;IACE2B,KAAK,EAAC,4BAA4B;IAClCC,KAAK,EAAE,EAAG;IACVC,MAAM,EAAE,EAAG;IACXC,OAAO,EAAC,WAAW;IACnB,eAAY,mBAAmB;IAC/BC,IAAI,EAAC,MAAM;IACXC,MAAM,EACJR,QAAQ,GACJ,qBAAqB,GACrBC,KAAK,aAALA,KAAK,eAALA,KAAK,CAAEO,MAAM,GACbP,KAAK,CAACO,MAAM,GACZ,wBACL;IACDC,WAAW,EAAE,CAAE;IACfC,aAAa,EAAC,OAAO;IACrBC,cAAc,EAAC,OAAO;IACtBC,SAAS,EAAE,KAAM;IACjBb,GAAG,EAAEA;EAAI,GACLE,KAAK,gBAETjC,MAAA,CAAAO,OAAA,CAAA2B,aAAA,CAAC/B,aAAA,CAAA0C,YAAY;IAACb,QAAQ,EAAEA;EAAS,CAAE,CAAC,eACpChC,MAAA,CAAAO,OAAA,CAAA2B,aAAA;IAAMY,CAAC,EAAC;EAA2C,CAAE,CAAC,eACtD9C,MAAA,CAAAO,OAAA,CAAA2B,aAAA;IAAMY,CAAC,EAAC;EAA0B,CAAE,CAAC,eACrC9C,MAAA,CAAAO,OAAA,CAAA2B,aAAA;IAAMY,CAAC,EAAC;EAA0B,CAAE,CAAC,eACrC9C,MAAA,CAAAO,OAAA,CAAA2B,aAAA;IAAMY,CAAC,EAAC;EAA2B,CAAE,CAClC,CAAC;AAAA,CAEV,CAAC;AACDnB,iBAAiB,CAACoB,WAAW,GAAG,mBAAmB;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAA1C,OAAA,GACrCoB,iBAAiB","ignoreList":[]}
@@ -621,6 +621,12 @@ Object.defineProperty(exports, "GitPullRequestIcon", {
621
621
  return _GitPullRequest.default;
622
622
  }
623
623
  });
624
+ Object.defineProperty(exports, "GitRepositoryIcon", {
625
+ enumerable: true,
626
+ get: function get() {
627
+ return _GitRepository.default;
628
+ }
629
+ });
624
630
  Object.defineProperty(exports, "GroupByIcon", {
625
631
  enumerable: true,
626
632
  get: function get() {
@@ -1185,12 +1191,6 @@ Object.defineProperty(exports, "SortSmallIcon", {
1185
1191
  return _SortSmall.default;
1186
1192
  }
1187
1193
  });
1188
- Object.defineProperty(exports, "SourceCodeIcon", {
1189
- enumerable: true,
1190
- get: function get() {
1191
- return _SourceCode.default;
1192
- }
1193
- });
1194
1194
  Object.defineProperty(exports, "SparkIcon", {
1195
1195
  enumerable: true,
1196
1196
  get: function get() {
@@ -1463,6 +1463,7 @@ var _Gift = _interopRequireDefault(require("./Gift"));
1463
1463
  var _GitBranch = _interopRequireDefault(require("./GitBranch"));
1464
1464
  var _GitCommit = _interopRequireDefault(require("./GitCommit"));
1465
1465
  var _GitPullRequest = _interopRequireDefault(require("./GitPullRequest"));
1466
+ var _GitRepository = _interopRequireDefault(require("./GitRepository"));
1466
1467
  var _GroupBy = _interopRequireDefault(require("./GroupBy"));
1467
1468
  var _Hashtag = _interopRequireDefault(require("./Hashtag"));
1468
1469
  var _Help = _interopRequireDefault(require("./Help"));
@@ -1556,7 +1557,6 @@ var _SortGeneral = _interopRequireDefault(require("./SortGeneral"));
1556
1557
  var _SortIcon = _interopRequireDefault(require("./SortIcon"));
1557
1558
  var _SortList = _interopRequireDefault(require("./SortList"));
1558
1559
  var _SortSmall = _interopRequireDefault(require("./SortSmall"));
1559
- var _SourceCode = _interopRequireDefault(require("./SourceCode"));
1560
1560
  var _Spark = _interopRequireDefault(require("./Spark"));
1561
1561
  var _StarOutline = _interopRequireDefault(require("./StarOutline"));
1562
1562
  var _Star = _interopRequireDefault(require("./Star"));
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["_Recurring","_interopRequireDefault","require","_AccessLog","_Activity","_AddCrossTiny","_AddCross","_Archive","_ArrowBackMobile","_ArrowCollapseMultiple","_ArrowDownLong","_ArrowDownSmall","_ArrowDown","_ArrowExpandeMultiple","_ArrowLeftBox","_ArrowLeft","_ArrowRefresh","_ArrowRestore","_ArrowRight","_ArrowUpLong","_ArrowUp","_Assign","_Attachment","_BellOffSmall","_BellOff","_Billing","_BudgetAlert","_Bulb","_CalendarAddX","_CalendarImport","_Calendar","_CancelCross","_CaretLeft","_CaretRight","_Chat","_Check","_CheckboxBlankToggler","_CheckboxCircleArrow","_CheckboxCircleBlank","_CheckboxDocuments","_Checkbox","_ChecklistSmall","_Checklist","_CircleIcon","_CircleMultiple","_ClockAdd","_ClockDollar","_ClockSmall","_ClockStopwatchIndicator","_ClockStopwatchSmall","_ClockStopwatch","_Clock","_CloseCircle","_CloseDocument","_CloseSmall","_Close","_CollapsIcon","_CollapseAll","_CollapseExpandSingle","_CompanyAdd","_Company","_Computer","_ConnectionIcon","_Copy","_CrownBlank","_CrownSelected","_DependencySmall","_Dependency","_DescriptionSmall","_Description","_DiscussionAdd","_Discussion","_DollarCheckmarkSmall","_DollarCheckmark","_DollarClockSmall","_DollarClock","_DollarDocumentPlus","_DollarDocument","_DollarOffSmall","_DollarOff","_DollarSmall","_Dollar","_Download","_DrawIcon","_Drive","_Dropbox","_Duplicate","_EditMultiple","_Edit","_Emoji","_EstimatePlus","_Estimates","_ExpandAll","_ExpenseAdd","_ExpensePlus","_EyeOffSmall","_EyeOff","_EyeSmall","_Eye","_Filter","_FolderMove","_FolderOutline","_Gift","_GitBranch","_GitCommit","_GitPullRequest","_GroupBy","_Hashtag","_Help","_HistoryOfChanges","_Image","_InfoSmall","_Info","_InsertLink","_Integrations","_Invoices","_Labels","_LetterArrowRight","_LetterFast","_Letter","_LockSmall","_Lock","_Marker","_MessageAdd","_MessageEmpty","_MessageSmall","_MessageSolid","_MessageStar","_Message","_Minus","_MobileMenu","_MoneyStack","_Moon","_MoveTrigger","_Move","_MyWork","_NoteAdd","_Note","_Notebook","_NotificationBell","_OpenExpanded","_OpenSheet","_OrderFirst","_PaidSmall","_PauseCircleOutline","_PauseIcon","_PauseSmall","_PencilSmall","_Pencil","_PendingPaymentSmall","_People","_PersonArrowOutCircle","_PersonCircleOff","_PersonCircle","_PersonList","_PersonPlus","_Person","_PinSmall","_Pin","_PlayCircleOutline","_PlayIcon","_PlaySmall","_PriorityLow","_ProjectAdd","_ProjectSearch","_ProjectStar","_ProjectTemplateAdd","_ProjectTemplateConvert","_ProjectTemplate","_Projects","_Puzzle","_RadioBlank","_RadioButton","_Rearange","_RearrangeSmall","_RecurringCheckmarkSmall","_RecurringCheckmark","_RecurringDollar","_RecurringSmall","_ReminderIcon","_Reorder","_ReportTime","_Reports","_Robot","_RocketSmall","_Rocket","_RoundedRectangleIcon","_Save","_SearchLarge","_SearchPlus","_Search","_SendBlank","_SendFilled","_Settings","_Shield","_SortGeneral","_SortIcon","_SortList","_SortSmall","_SourceCode","_Spark","_StarOutline","_Star","_Status","_StickyIcon","_Stop","_Stopwatch","_Sun","_SystemSettings","_TaskAdd","_TaskListAdd","_TaskListComplete","_TaskList","_TextIcon","_ThumbUpOutline","_Trash","_TreeDots","_TriangleIcon","_Upload","_ViewDay","_ViewGrid","_ViewList","_ViewTimeline","_VolumeHigh","_WarningTriangleSmall","_WarningTriangle","_Warning","_Workload","e","__esModule","default"],"sources":["../../../../../src/components/Icons/collection/index.tsx"],"sourcesContent":["export { default as RecurringIcon } from \"./Recurring\";\nexport { default as AccessLogIcon } from \"./AccessLog\";\nexport { default as ActivityIcon } from \"./Activity\";\nexport { default as AddCrossTinyIcon } from \"./AddCrossTiny\";\nexport { default as AddCrossIcon } from \"./AddCross\";\nexport { default as ArchiveIcon } from \"./Archive\";\nexport { default as ArrowBackMobileIcon } from \"./ArrowBackMobile\";\nexport { default as ArrowCollapseMultipleIcon } from \"./ArrowCollapseMultiple\";\nexport { default as ArrowDownLongIcon } from \"./ArrowDownLong\";\nexport { default as ArrowDownSmallIcon } from \"./ArrowDownSmall\";\nexport { default as ArrowDownIcon } from \"./ArrowDown\";\nexport { default as ArrowExpandeMultipleIcon } from \"./ArrowExpandeMultiple\";\nexport { default as ArrowLeftBoxIcon } from \"./ArrowLeftBox\";\nexport { default as ArrowLeftIcon } from \"./ArrowLeft\";\nexport { default as ArrowRefreshIcon } from \"./ArrowRefresh\";\nexport { default as ArrowRestoreIcon } from \"./ArrowRestore\";\nexport { default as ArrowRightIcon } from \"./ArrowRight\";\nexport { default as ArrowUpLongIcon } from \"./ArrowUpLong\";\nexport { default as ArrowUpIcon } from \"./ArrowUp\";\nexport { default as AssignIcon } from \"./Assign\";\nexport { default as AttachmentIcon } from \"./Attachment\";\nexport { default as BellOffSmallIcon } from \"./BellOffSmall\";\nexport { default as BellOffIcon } from \"./BellOff\";\nexport { default as BillingIcon } from \"./Billing\";\nexport { default as BudgetAlertIcon } from \"./BudgetAlert\";\nexport { default as BulbIcon } from \"./Bulb\";\nexport { default as CalendarAddXIcon } from \"./CalendarAddX\";\nexport { default as CalendarImportIcon } from \"./CalendarImport\";\nexport { default as CalendarIcon } from \"./Calendar\";\nexport { default as CancelCrossIcon } from \"./CancelCross\";\nexport { default as CaretLeftIcon } from \"./CaretLeft\";\nexport { default as CaretRightIcon } from \"./CaretRight\";\nexport { default as ChatIcon } from \"./Chat\";\nexport { default as CheckIcon } from \"./Check\";\nexport { default as CheckboxBlankTogglerIcon } from \"./CheckboxBlankToggler\";\nexport { default as CheckboxCircleArrowIcon } from \"./CheckboxCircleArrow\";\nexport { default as CheckboxCircleBlankIcon } from \"./CheckboxCircleBlank\";\nexport { default as CheckboxDocumentsIcon } from \"./CheckboxDocuments\";\nexport { default as CheckboxIcon } from \"./Checkbox\";\nexport { default as ChecklistSmallIcon } from \"./ChecklistSmall\";\nexport { default as ChecklistIcon } from \"./Checklist\";\nexport { default as CircleIcon } from \"./CircleIcon\";\nexport { default as CircleMultipleIcon } from \"./CircleMultiple\";\nexport { default as ClockAddIcon } from \"./ClockAdd\";\nexport { default as ClockDollarIcon } from \"./ClockDollar\";\nexport { default as ClockSmallIcon } from \"./ClockSmall\";\nexport { default as ClockStopwatchIndicatorIcon } from \"./ClockStopwatchIndicator\";\nexport { default as ClockStopwatchSmallIcon } from \"./ClockStopwatchSmall\";\nexport { default as ClockStopwatchIcon } from \"./ClockStopwatch\";\nexport { default as ClockIcon } from \"./Clock\";\nexport { default as CloseCircleIcon } from \"./CloseCircle\";\nexport { default as CloseDocumentIcon } from \"./CloseDocument\";\nexport { default as CloseSmallIcon } from \"./CloseSmall\";\nexport { default as CloseIcon } from \"./Close\";\nexport { default as CollapsIcon } from \"./CollapsIcon\";\nexport { default as CollapseAllIcon } from \"./CollapseAll\";\nexport { default as CollapseExpandSingleIcon } from \"./CollapseExpandSingle\";\nexport { default as CompanyAddIcon } from \"./CompanyAdd\";\nexport { default as CompanyIcon } from \"./Company\";\nexport { default as ComputerIcon } from \"./Computer\";\nexport { default as ConnectionIcon } from \"./ConnectionIcon\";\nexport { default as CopyIcon } from \"./Copy\";\nexport { default as CrownBlankIcon } from \"./CrownBlank\";\nexport { default as CrownSelectedIcon } from \"./CrownSelected\";\nexport { default as DependencySmallIcon } from \"./DependencySmall\";\nexport { default as DependencyIcon } from \"./Dependency\";\nexport { default as DescriptionSmallIcon } from \"./DescriptionSmall\";\nexport { default as DescriptionIcon } from \"./Description\";\nexport { default as DiscussionAddIcon } from \"./DiscussionAdd\";\nexport { default as DiscussionIcon } from \"./Discussion\";\nexport { default as DollarCheckmarkSmallIcon } from \"./DollarCheckmarkSmall\";\nexport { default as DollarCheckmarkIcon } from \"./DollarCheckmark\";\nexport { default as DollarClockSmallIcon } from \"./DollarClockSmall\";\nexport { default as DollarClockIcon } from \"./DollarClock\";\nexport { default as DollarDocumentPlusIcon } from \"./DollarDocumentPlus\";\nexport { default as DollarDocumentIcon } from \"./DollarDocument\";\nexport { default as DollarOffSmallIcon } from \"./DollarOffSmall\";\nexport { default as DollarOffIcon } from \"./DollarOff\";\nexport { default as DollarSmallIcon } from \"./DollarSmall\";\nexport { default as DollarIcon } from \"./Dollar\";\nexport { default as DownloadIcon } from \"./Download\";\nexport { default as DrawIcon } from \"./DrawIcon\";\nexport { default as DriveIcon } from \"./Drive\";\nexport { default as DropboxIcon } from \"./Dropbox\";\nexport { default as DuplicateIcon } from \"./Duplicate\";\nexport { default as EditMultipleIcon } from \"./EditMultiple\";\nexport { default as EditIcon } from \"./Edit\";\nexport { default as EmojiIcon } from \"./Emoji\";\nexport { default as EstimatePlusIcon } from \"./EstimatePlus\";\nexport { default as EstimatesIcon } from \"./Estimates\";\nexport { default as ExpandAllIcon } from \"./ExpandAll\";\nexport { default as ExpenseAddIcon } from \"./ExpenseAdd\";\nexport { default as ExpensePlusIcon } from \"./ExpensePlus\";\nexport { default as EyeOffSmallIcon } from \"./EyeOffSmall\";\nexport { default as EyeOffIcon } from \"./EyeOff\";\nexport { default as EyeSmallIcon } from \"./EyeSmall\";\nexport { default as EyeIcon } from \"./Eye\";\nexport { default as FilterIcon } from \"./Filter\";\nexport { default as FolderMoveIcon } from \"./FolderMove\";\nexport { default as FolderOutlineIcon } from \"./FolderOutline\";\nexport { default as GiftIcon } from \"./Gift\";\nexport { default as GitBranchIcon } from \"./GitBranch\";\nexport { default as GitCommitIcon } from \"./GitCommit\";\nexport { default as GitPullRequestIcon } from \"./GitPullRequest\";\nexport { default as GroupByIcon } from \"./GroupBy\";\nexport { default as HashtagIcon } from \"./Hashtag\";\nexport { default as HelpIcon } from \"./Help\";\nexport { default as HistoryOfChangesIcon } from \"./HistoryOfChanges\";\nexport { default as ImageIcon } from \"./Image\";\nexport { default as InfoSmallIcon } from \"./InfoSmall\";\nexport { default as InfoIcon } from \"./Info\";\nexport { default as InsertLinkIcon } from \"./InsertLink\";\nexport { default as IntegrationsIcon } from \"./Integrations\";\nexport { default as InvoicesIcon } from \"./Invoices\";\nexport { default as LabelsIcon } from \"./Labels\";\nexport { default as LetterArrowRightIcon } from \"./LetterArrowRight\";\nexport { default as LetterFastIcon } from \"./LetterFast\";\nexport { default as LetterIcon } from \"./Letter\";\nexport { default as LockSmallIcon } from \"./LockSmall\";\nexport { default as LockIcon } from \"./Lock\";\nexport { default as MarkerIcon } from \"./Marker\";\nexport { default as MessageAddIcon } from \"./MessageAdd\";\nexport { default as MessageEmptyIcon } from \"./MessageEmpty\";\nexport { default as MessageSmallIcon } from \"./MessageSmall\";\nexport { default as MessageSolidIcon } from \"./MessageSolid\";\nexport { default as MessageStarIcon } from \"./MessageStar\";\nexport { default as MessageIcon } from \"./Message\";\nexport { default as MinusIcon } from \"./Minus\";\nexport { default as MobileMenuIcon } from \"./MobileMenu\";\nexport { default as MoneyStackIcon } from \"./MoneyStack\";\nexport { default as MoonIcon } from \"./Moon\";\nexport { default as MoveTriggerIcon } from \"./MoveTrigger\";\nexport { default as MoveIcon } from \"./Move\";\nexport { default as MyWorkIcon } from \"./MyWork\";\nexport { default as NoteAddIcon } from \"./NoteAdd\";\nexport { default as NoteIcon } from \"./Note\";\nexport { default as NotebookIcon } from \"./Notebook\";\nexport { default as NotificationBellIcon } from \"./NotificationBell\";\nexport { default as OpenExpandedIcon } from \"./OpenExpanded\";\nexport { default as OpenSheetIcon } from \"./OpenSheet\";\nexport { default as OrderFirstIcon } from \"./OrderFirst\";\nexport { default as PaidSmallIcon } from \"./PaidSmall\";\nexport { default as PauseCircleOutlineIcon } from \"./PauseCircleOutline\";\nexport { default as PauseIcon } from \"./PauseIcon\";\nexport { default as PauseSmallIcon } from \"./PauseSmall\";\nexport { default as PencilSmallIcon } from \"./PencilSmall\";\nexport { default as PencilIcon } from \"./Pencil\";\nexport { default as PendingPaymentSmallIcon } from \"./PendingPaymentSmall\";\nexport { default as PeopleIcon } from \"./People\";\nexport { default as PersonArrowOutCircleIcon } from \"./PersonArrowOutCircle\";\nexport { default as PersonCircleOffIcon } from \"./PersonCircleOff\";\nexport { default as PersonCircleIcon } from \"./PersonCircle\";\nexport { default as PersonListIcon } from \"./PersonList\";\nexport { default as PersonPlusIcon } from \"./PersonPlus\";\nexport { default as PersonIcon } from \"./Person\";\nexport { default as PinSmallIcon } from \"./PinSmall\";\nexport { default as PinIcon } from \"./Pin\";\nexport { default as PlayCircleOutlineIcon } from \"./PlayCircleOutline\";\nexport { default as PlayIcon } from \"./PlayIcon\";\nexport { default as PlaySmallIcon } from \"./PlaySmall\";\nexport { default as PriorityLowIcon } from \"./PriorityLow\";\nexport { default as ProjectAddIcon } from \"./ProjectAdd\";\nexport { default as ProjectSearchIcon } from \"./ProjectSearch\";\nexport { default as ProjectStarIcon } from \"./ProjectStar\";\nexport { default as ProjectTemplateAddIcon } from \"./ProjectTemplateAdd\";\nexport { default as ProjectTemplateConvertIcon } from \"./ProjectTemplateConvert\";\nexport { default as ProjectTemplateIcon } from \"./ProjectTemplate\";\nexport { default as ProjectsIcon } from \"./Projects\";\nexport { default as PuzzleIcon } from \"./Puzzle\";\nexport { default as RadioBlankIcon } from \"./RadioBlank\";\nexport { default as RadioButtonIcon } from \"./RadioButton\";\nexport { default as RearangeIcon } from \"./Rearange\";\nexport { default as RearrangeSmallIcon } from \"./RearrangeSmall\";\nexport { default as RecurringCheckmarkSmallIcon } from \"./RecurringCheckmarkSmall\";\nexport { default as RecurringCheckmarkIcon } from \"./RecurringCheckmark\";\nexport { default as RecurringDollarIcon } from \"./RecurringDollar\";\nexport { default as RecurringSmallIcon } from \"./RecurringSmall\";\nexport { default as ReminderIcon } from \"./ReminderIcon\";\nexport { default as ReorderIcon } from \"./Reorder\";\nexport { default as ReportTimeIcon } from \"./ReportTime\";\nexport { default as ReportsIcon } from \"./Reports\";\nexport { default as RobotIcon } from \"./Robot\";\nexport { default as RocketSmallIcon } from \"./RocketSmall\";\nexport { default as RocketIcon } from \"./Rocket\";\nexport { default as RoundedRectangleIcon } from \"./RoundedRectangleIcon\";\nexport { default as SaveIcon } from \"./Save\";\nexport { default as SearchLargeIcon } from \"./SearchLarge\";\nexport { default as SearchPlusIcon } from \"./SearchPlus\";\nexport { default as SearchIcon } from \"./Search\";\nexport { default as SendBlankIcon } from \"./SendBlank\";\nexport { default as SendFilledIcon } from \"./SendFilled\";\nexport { default as SettingsIcon } from \"./Settings\";\nexport { default as ShieldIcon } from \"./Shield\";\nexport { default as SortGeneralIcon } from \"./SortGeneral\";\nexport { default as SortIcon } from \"./SortIcon\";\nexport { default as SortListIcon } from \"./SortList\";\nexport { default as SortSmallIcon } from \"./SortSmall\";\nexport { default as SourceCodeIcon } from \"./SourceCode\";\nexport { default as SparkIcon } from \"./Spark\";\nexport { default as StarOutlineIcon } from \"./StarOutline\";\nexport { default as StarIcon } from \"./Star\";\nexport { default as StatusIcon } from \"./Status\";\nexport { default as StickyIcon } from \"./StickyIcon\";\nexport { default as StopIcon } from \"./Stop\";\nexport { default as StopwatchIcon } from \"./Stopwatch\";\nexport { default as SunIcon } from \"./Sun\";\nexport { default as SystemSettingsIcon } from \"./SystemSettings\";\nexport { default as TaskAddIcon } from \"./TaskAdd\";\nexport { default as TaskListAddIcon } from \"./TaskListAdd\";\nexport { default as TaskListCompleteIcon } from \"./TaskListComplete\";\nexport { default as TaskListIcon } from \"./TaskList\";\nexport { default as TextIcon } from \"./TextIcon\";\nexport { default as ThumbUpOutlineIcon } from \"./ThumbUpOutline\";\nexport { default as TrashIcon } from \"./Trash\";\nexport { default as TreeDotsIcon } from \"./TreeDots\";\nexport { default as TriangleIcon } from \"./TriangleIcon\";\nexport { default as UploadIcon } from \"./Upload\";\nexport { default as ViewDayIcon } from \"./ViewDay\";\nexport { default as ViewGridIcon } from \"./ViewGrid\";\nexport { default as ViewListIcon } from \"./ViewList\";\nexport { default as ViewTimelineIcon } from \"./ViewTimeline\";\nexport { default as VolumeHighIcon } from \"./VolumeHigh\";\nexport { default as WarningTriangleSmallIcon } from \"./WarningTriangleSmall\";\nexport { default as WarningTriangleIcon } from \"./WarningTriangle\";\nexport { default as WarningIcon } from \"./Warning\";\nexport { default as WorkloadIcon } from \"./Workload\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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","ignoreList":[]}
1
+ {"version":3,"file":"index.js","names":["_Recurring","_interopRequireDefault","require","_AccessLog","_Activity","_AddCrossTiny","_AddCross","_Archive","_ArrowBackMobile","_ArrowCollapseMultiple","_ArrowDownLong","_ArrowDownSmall","_ArrowDown","_ArrowExpandeMultiple","_ArrowLeftBox","_ArrowLeft","_ArrowRefresh","_ArrowRestore","_ArrowRight","_ArrowUpLong","_ArrowUp","_Assign","_Attachment","_BellOffSmall","_BellOff","_Billing","_BudgetAlert","_Bulb","_CalendarAddX","_CalendarImport","_Calendar","_CancelCross","_CaretLeft","_CaretRight","_Chat","_Check","_CheckboxBlankToggler","_CheckboxCircleArrow","_CheckboxCircleBlank","_CheckboxDocuments","_Checkbox","_ChecklistSmall","_Checklist","_CircleIcon","_CircleMultiple","_ClockAdd","_ClockDollar","_ClockSmall","_ClockStopwatchIndicator","_ClockStopwatchSmall","_ClockStopwatch","_Clock","_CloseCircle","_CloseDocument","_CloseSmall","_Close","_CollapsIcon","_CollapseAll","_CollapseExpandSingle","_CompanyAdd","_Company","_Computer","_ConnectionIcon","_Copy","_CrownBlank","_CrownSelected","_DependencySmall","_Dependency","_DescriptionSmall","_Description","_DiscussionAdd","_Discussion","_DollarCheckmarkSmall","_DollarCheckmark","_DollarClockSmall","_DollarClock","_DollarDocumentPlus","_DollarDocument","_DollarOffSmall","_DollarOff","_DollarSmall","_Dollar","_Download","_DrawIcon","_Drive","_Dropbox","_Duplicate","_EditMultiple","_Edit","_Emoji","_EstimatePlus","_Estimates","_ExpandAll","_ExpenseAdd","_ExpensePlus","_EyeOffSmall","_EyeOff","_EyeSmall","_Eye","_Filter","_FolderMove","_FolderOutline","_Gift","_GitBranch","_GitCommit","_GitPullRequest","_GitRepository","_GroupBy","_Hashtag","_Help","_HistoryOfChanges","_Image","_InfoSmall","_Info","_InsertLink","_Integrations","_Invoices","_Labels","_LetterArrowRight","_LetterFast","_Letter","_LockSmall","_Lock","_Marker","_MessageAdd","_MessageEmpty","_MessageSmall","_MessageSolid","_MessageStar","_Message","_Minus","_MobileMenu","_MoneyStack","_Moon","_MoveTrigger","_Move","_MyWork","_NoteAdd","_Note","_Notebook","_NotificationBell","_OpenExpanded","_OpenSheet","_OrderFirst","_PaidSmall","_PauseCircleOutline","_PauseIcon","_PauseSmall","_PencilSmall","_Pencil","_PendingPaymentSmall","_People","_PersonArrowOutCircle","_PersonCircleOff","_PersonCircle","_PersonList","_PersonPlus","_Person","_PinSmall","_Pin","_PlayCircleOutline","_PlayIcon","_PlaySmall","_PriorityLow","_ProjectAdd","_ProjectSearch","_ProjectStar","_ProjectTemplateAdd","_ProjectTemplateConvert","_ProjectTemplate","_Projects","_Puzzle","_RadioBlank","_RadioButton","_Rearange","_RearrangeSmall","_RecurringCheckmarkSmall","_RecurringCheckmark","_RecurringDollar","_RecurringSmall","_ReminderIcon","_Reorder","_ReportTime","_Reports","_Robot","_RocketSmall","_Rocket","_RoundedRectangleIcon","_Save","_SearchLarge","_SearchPlus","_Search","_SendBlank","_SendFilled","_Settings","_Shield","_SortGeneral","_SortIcon","_SortList","_SortSmall","_Spark","_StarOutline","_Star","_Status","_StickyIcon","_Stop","_Stopwatch","_Sun","_SystemSettings","_TaskAdd","_TaskListAdd","_TaskListComplete","_TaskList","_TextIcon","_ThumbUpOutline","_Trash","_TreeDots","_TriangleIcon","_Upload","_ViewDay","_ViewGrid","_ViewList","_ViewTimeline","_VolumeHigh","_WarningTriangleSmall","_WarningTriangle","_Warning","_Workload","e","__esModule","default"],"sources":["../../../../../src/components/Icons/collection/index.tsx"],"sourcesContent":["export { default as RecurringIcon } from \"./Recurring\";\nexport { default as AccessLogIcon } from \"./AccessLog\";\nexport { default as ActivityIcon } from \"./Activity\";\nexport { default as AddCrossTinyIcon } from \"./AddCrossTiny\";\nexport { default as AddCrossIcon } from \"./AddCross\";\nexport { default as ArchiveIcon } from \"./Archive\";\nexport { default as ArrowBackMobileIcon } from \"./ArrowBackMobile\";\nexport { default as ArrowCollapseMultipleIcon } from \"./ArrowCollapseMultiple\";\nexport { default as ArrowDownLongIcon } from \"./ArrowDownLong\";\nexport { default as ArrowDownSmallIcon } from \"./ArrowDownSmall\";\nexport { default as ArrowDownIcon } from \"./ArrowDown\";\nexport { default as ArrowExpandeMultipleIcon } from \"./ArrowExpandeMultiple\";\nexport { default as ArrowLeftBoxIcon } from \"./ArrowLeftBox\";\nexport { default as ArrowLeftIcon } from \"./ArrowLeft\";\nexport { default as ArrowRefreshIcon } from \"./ArrowRefresh\";\nexport { default as ArrowRestoreIcon } from \"./ArrowRestore\";\nexport { default as ArrowRightIcon } from \"./ArrowRight\";\nexport { default as ArrowUpLongIcon } from \"./ArrowUpLong\";\nexport { default as ArrowUpIcon } from \"./ArrowUp\";\nexport { default as AssignIcon } from \"./Assign\";\nexport { default as AttachmentIcon } from \"./Attachment\";\nexport { default as BellOffSmallIcon } from \"./BellOffSmall\";\nexport { default as BellOffIcon } from \"./BellOff\";\nexport { default as BillingIcon } from \"./Billing\";\nexport { default as BudgetAlertIcon } from \"./BudgetAlert\";\nexport { default as BulbIcon } from \"./Bulb\";\nexport { default as CalendarAddXIcon } from \"./CalendarAddX\";\nexport { default as CalendarImportIcon } from \"./CalendarImport\";\nexport { default as CalendarIcon } from \"./Calendar\";\nexport { default as CancelCrossIcon } from \"./CancelCross\";\nexport { default as CaretLeftIcon } from \"./CaretLeft\";\nexport { default as CaretRightIcon } from \"./CaretRight\";\nexport { default as ChatIcon } from \"./Chat\";\nexport { default as CheckIcon } from \"./Check\";\nexport { default as CheckboxBlankTogglerIcon } from \"./CheckboxBlankToggler\";\nexport { default as CheckboxCircleArrowIcon } from \"./CheckboxCircleArrow\";\nexport { default as CheckboxCircleBlankIcon } from \"./CheckboxCircleBlank\";\nexport { default as CheckboxDocumentsIcon } from \"./CheckboxDocuments\";\nexport { default as CheckboxIcon } from \"./Checkbox\";\nexport { default as ChecklistSmallIcon } from \"./ChecklistSmall\";\nexport { default as ChecklistIcon } from \"./Checklist\";\nexport { default as CircleIcon } from \"./CircleIcon\";\nexport { default as CircleMultipleIcon } from \"./CircleMultiple\";\nexport { default as ClockAddIcon } from \"./ClockAdd\";\nexport { default as ClockDollarIcon } from \"./ClockDollar\";\nexport { default as ClockSmallIcon } from \"./ClockSmall\";\nexport { default as ClockStopwatchIndicatorIcon } from \"./ClockStopwatchIndicator\";\nexport { default as ClockStopwatchSmallIcon } from \"./ClockStopwatchSmall\";\nexport { default as ClockStopwatchIcon } from \"./ClockStopwatch\";\nexport { default as ClockIcon } from \"./Clock\";\nexport { default as CloseCircleIcon } from \"./CloseCircle\";\nexport { default as CloseDocumentIcon } from \"./CloseDocument\";\nexport { default as CloseSmallIcon } from \"./CloseSmall\";\nexport { default as CloseIcon } from \"./Close\";\nexport { default as CollapsIcon } from \"./CollapsIcon\";\nexport { default as CollapseAllIcon } from \"./CollapseAll\";\nexport { default as CollapseExpandSingleIcon } from \"./CollapseExpandSingle\";\nexport { default as CompanyAddIcon } from \"./CompanyAdd\";\nexport { default as CompanyIcon } from \"./Company\";\nexport { default as ComputerIcon } from \"./Computer\";\nexport { default as ConnectionIcon } from \"./ConnectionIcon\";\nexport { default as CopyIcon } from \"./Copy\";\nexport { default as CrownBlankIcon } from \"./CrownBlank\";\nexport { default as CrownSelectedIcon } from \"./CrownSelected\";\nexport { default as DependencySmallIcon } from \"./DependencySmall\";\nexport { default as DependencyIcon } from \"./Dependency\";\nexport { default as DescriptionSmallIcon } from \"./DescriptionSmall\";\nexport { default as DescriptionIcon } from \"./Description\";\nexport { default as DiscussionAddIcon } from \"./DiscussionAdd\";\nexport { default as DiscussionIcon } from \"./Discussion\";\nexport { default as DollarCheckmarkSmallIcon } from \"./DollarCheckmarkSmall\";\nexport { default as DollarCheckmarkIcon } from \"./DollarCheckmark\";\nexport { default as DollarClockSmallIcon } from \"./DollarClockSmall\";\nexport { default as DollarClockIcon } from \"./DollarClock\";\nexport { default as DollarDocumentPlusIcon } from \"./DollarDocumentPlus\";\nexport { default as DollarDocumentIcon } from \"./DollarDocument\";\nexport { default as DollarOffSmallIcon } from \"./DollarOffSmall\";\nexport { default as DollarOffIcon } from \"./DollarOff\";\nexport { default as DollarSmallIcon } from \"./DollarSmall\";\nexport { default as DollarIcon } from \"./Dollar\";\nexport { default as DownloadIcon } from \"./Download\";\nexport { default as DrawIcon } from \"./DrawIcon\";\nexport { default as DriveIcon } from \"./Drive\";\nexport { default as DropboxIcon } from \"./Dropbox\";\nexport { default as DuplicateIcon } from \"./Duplicate\";\nexport { default as EditMultipleIcon } from \"./EditMultiple\";\nexport { default as EditIcon } from \"./Edit\";\nexport { default as EmojiIcon } from \"./Emoji\";\nexport { default as EstimatePlusIcon } from \"./EstimatePlus\";\nexport { default as EstimatesIcon } from \"./Estimates\";\nexport { default as ExpandAllIcon } from \"./ExpandAll\";\nexport { default as ExpenseAddIcon } from \"./ExpenseAdd\";\nexport { default as ExpensePlusIcon } from \"./ExpensePlus\";\nexport { default as EyeOffSmallIcon } from \"./EyeOffSmall\";\nexport { default as EyeOffIcon } from \"./EyeOff\";\nexport { default as EyeSmallIcon } from \"./EyeSmall\";\nexport { default as EyeIcon } from \"./Eye\";\nexport { default as FilterIcon } from \"./Filter\";\nexport { default as FolderMoveIcon } from \"./FolderMove\";\nexport { default as FolderOutlineIcon } from \"./FolderOutline\";\nexport { default as GiftIcon } from \"./Gift\";\nexport { default as GitBranchIcon } from \"./GitBranch\";\nexport { default as GitCommitIcon } from \"./GitCommit\";\nexport { default as GitPullRequestIcon } from \"./GitPullRequest\";\nexport { default as GitRepositoryIcon } from \"./GitRepository\";\nexport { default as GroupByIcon } from \"./GroupBy\";\nexport { default as HashtagIcon } from \"./Hashtag\";\nexport { default as HelpIcon } from \"./Help\";\nexport { default as HistoryOfChangesIcon } from \"./HistoryOfChanges\";\nexport { default as ImageIcon } from \"./Image\";\nexport { default as InfoSmallIcon } from \"./InfoSmall\";\nexport { default as InfoIcon } from \"./Info\";\nexport { default as InsertLinkIcon } from \"./InsertLink\";\nexport { default as IntegrationsIcon } from \"./Integrations\";\nexport { default as InvoicesIcon } from \"./Invoices\";\nexport { default as LabelsIcon } from \"./Labels\";\nexport { default as LetterArrowRightIcon } from \"./LetterArrowRight\";\nexport { default as LetterFastIcon } from \"./LetterFast\";\nexport { default as LetterIcon } from \"./Letter\";\nexport { default as LockSmallIcon } from \"./LockSmall\";\nexport { default as LockIcon } from \"./Lock\";\nexport { default as MarkerIcon } from \"./Marker\";\nexport { default as MessageAddIcon } from \"./MessageAdd\";\nexport { default as MessageEmptyIcon } from \"./MessageEmpty\";\nexport { default as MessageSmallIcon } from \"./MessageSmall\";\nexport { default as MessageSolidIcon } from \"./MessageSolid\";\nexport { default as MessageStarIcon } from \"./MessageStar\";\nexport { default as MessageIcon } from \"./Message\";\nexport { default as MinusIcon } from \"./Minus\";\nexport { default as MobileMenuIcon } from \"./MobileMenu\";\nexport { default as MoneyStackIcon } from \"./MoneyStack\";\nexport { default as MoonIcon } from \"./Moon\";\nexport { default as MoveTriggerIcon } from \"./MoveTrigger\";\nexport { default as MoveIcon } from \"./Move\";\nexport { default as MyWorkIcon } from \"./MyWork\";\nexport { default as NoteAddIcon } from \"./NoteAdd\";\nexport { default as NoteIcon } from \"./Note\";\nexport { default as NotebookIcon } from \"./Notebook\";\nexport { default as NotificationBellIcon } from \"./NotificationBell\";\nexport { default as OpenExpandedIcon } from \"./OpenExpanded\";\nexport { default as OpenSheetIcon } from \"./OpenSheet\";\nexport { default as OrderFirstIcon } from \"./OrderFirst\";\nexport { default as PaidSmallIcon } from \"./PaidSmall\";\nexport { default as PauseCircleOutlineIcon } from \"./PauseCircleOutline\";\nexport { default as PauseIcon } from \"./PauseIcon\";\nexport { default as PauseSmallIcon } from \"./PauseSmall\";\nexport { default as PencilSmallIcon } from \"./PencilSmall\";\nexport { default as PencilIcon } from \"./Pencil\";\nexport { default as PendingPaymentSmallIcon } from \"./PendingPaymentSmall\";\nexport { default as PeopleIcon } from \"./People\";\nexport { default as PersonArrowOutCircleIcon } from \"./PersonArrowOutCircle\";\nexport { default as PersonCircleOffIcon } from \"./PersonCircleOff\";\nexport { default as PersonCircleIcon } from \"./PersonCircle\";\nexport { default as PersonListIcon } from \"./PersonList\";\nexport { default as PersonPlusIcon } from \"./PersonPlus\";\nexport { default as PersonIcon } from \"./Person\";\nexport { default as PinSmallIcon } from \"./PinSmall\";\nexport { default as PinIcon } from \"./Pin\";\nexport { default as PlayCircleOutlineIcon } from \"./PlayCircleOutline\";\nexport { default as PlayIcon } from \"./PlayIcon\";\nexport { default as PlaySmallIcon } from \"./PlaySmall\";\nexport { default as PriorityLowIcon } from \"./PriorityLow\";\nexport { default as ProjectAddIcon } from \"./ProjectAdd\";\nexport { default as ProjectSearchIcon } from \"./ProjectSearch\";\nexport { default as ProjectStarIcon } from \"./ProjectStar\";\nexport { default as ProjectTemplateAddIcon } from \"./ProjectTemplateAdd\";\nexport { default as ProjectTemplateConvertIcon } from \"./ProjectTemplateConvert\";\nexport { default as ProjectTemplateIcon } from \"./ProjectTemplate\";\nexport { default as ProjectsIcon } from \"./Projects\";\nexport { default as PuzzleIcon } from \"./Puzzle\";\nexport { default as RadioBlankIcon } from \"./RadioBlank\";\nexport { default as RadioButtonIcon } from \"./RadioButton\";\nexport { default as RearangeIcon } from \"./Rearange\";\nexport { default as RearrangeSmallIcon } from \"./RearrangeSmall\";\nexport { default as RecurringCheckmarkSmallIcon } from \"./RecurringCheckmarkSmall\";\nexport { default as RecurringCheckmarkIcon } from \"./RecurringCheckmark\";\nexport { default as RecurringDollarIcon } from \"./RecurringDollar\";\nexport { default as RecurringSmallIcon } from \"./RecurringSmall\";\nexport { default as ReminderIcon } from \"./ReminderIcon\";\nexport { default as ReorderIcon } from \"./Reorder\";\nexport { default as ReportTimeIcon } from \"./ReportTime\";\nexport { default as ReportsIcon } from \"./Reports\";\nexport { default as RobotIcon } from \"./Robot\";\nexport { default as RocketSmallIcon } from \"./RocketSmall\";\nexport { default as RocketIcon } from \"./Rocket\";\nexport { default as RoundedRectangleIcon } from \"./RoundedRectangleIcon\";\nexport { default as SaveIcon } from \"./Save\";\nexport { default as SearchLargeIcon } from \"./SearchLarge\";\nexport { default as SearchPlusIcon } from \"./SearchPlus\";\nexport { default as SearchIcon } from \"./Search\";\nexport { default as SendBlankIcon } from \"./SendBlank\";\nexport { default as SendFilledIcon } from \"./SendFilled\";\nexport { default as SettingsIcon } from \"./Settings\";\nexport { default as ShieldIcon } from \"./Shield\";\nexport { default as SortGeneralIcon } from \"./SortGeneral\";\nexport { default as SortIcon } from \"./SortIcon\";\nexport { default as SortListIcon } from \"./SortList\";\nexport { default as SortSmallIcon } from \"./SortSmall\";\nexport { default as SparkIcon } from \"./Spark\";\nexport { default as StarOutlineIcon } from \"./StarOutline\";\nexport { default as StarIcon } from \"./Star\";\nexport { default as StatusIcon } from \"./Status\";\nexport { default as StickyIcon } from \"./StickyIcon\";\nexport { default as StopIcon } from \"./Stop\";\nexport { default as StopwatchIcon } from \"./Stopwatch\";\nexport { default as SunIcon } from \"./Sun\";\nexport { default as SystemSettingsIcon } from \"./SystemSettings\";\nexport { default as TaskAddIcon } from \"./TaskAdd\";\nexport { default as TaskListAddIcon } from \"./TaskListAdd\";\nexport { default as TaskListCompleteIcon } from \"./TaskListComplete\";\nexport { default as TaskListIcon } from \"./TaskList\";\nexport { default as TextIcon } from \"./TextIcon\";\nexport { default as ThumbUpOutlineIcon } from \"./ThumbUpOutline\";\nexport { default as TrashIcon } from \"./Trash\";\nexport { default as TreeDotsIcon } from \"./TreeDots\";\nexport { default as TriangleIcon } from \"./TriangleIcon\";\nexport { default as UploadIcon } from \"./Upload\";\nexport { default as ViewDayIcon } from \"./ViewDay\";\nexport { default as ViewGridIcon } from \"./ViewGrid\";\nexport { default as ViewListIcon } from \"./ViewList\";\nexport { default as ViewTimelineIcon } from \"./ViewTimeline\";\nexport { default as VolumeHighIcon } from \"./VolumeHigh\";\nexport { default as WarningTriangleSmallIcon } from \"./WarningTriangleSmall\";\nexport { default as WarningTriangleIcon } from \"./WarningTriangle\";\nexport { default as WarningIcon } from \"./Warning\";\nexport { default as WorkloadIcon } from \"./Workload\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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","ignoreList":[]}
@@ -6,11 +6,14 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.TabHeader = exports.ProjectPageHeader = exports.PageHeader = void 0;
7
7
  var _react = _interopRequireWildcard(require("react"));
8
8
  var _styledComponents = _interopRequireDefault(require("styled-components"));
9
+ var _ConnectRepositoryDialog = require("./ConnectRepositoryDialog");
10
+ var _RoundAvatar = require("./RoundAvatar");
9
11
  var _tokens = require("./tokens");
10
12
  var _Button = require("../../components/Button");
11
13
  var _GlobalAddButton = require("../../components/Button/GlobalAddButton");
12
- var _Checkbox = require("../../components/Checkbox");
14
+ var _CompleteCheckbox = require("../../components/CompleteCheckbox");
13
15
  var _CounterButton = require("../../components/CounterButton");
16
+ var _Dialog = require("../../components/Dialog");
14
17
  var _Header = require("../../components/Header");
15
18
  var _IconButton = require("../../components/IconButton");
16
19
  var _Icons = require("../../components/Icons");
@@ -28,6 +31,9 @@ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r)
28
31
  function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
29
32
  function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
30
33
  function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
34
+ /** Gold used for the project-leader cues (a data colour, not a theme token). */
35
+ var LEADER_GOLD = "#FFCC6B";
36
+
31
37
  /* ------------------------------------------------------------------ */
32
38
  /* Page header row (mirrors PageHeader.jsx) */
33
39
  /* ------------------------------------------------------------------ */
@@ -68,13 +74,122 @@ var StyledProjectHeaderChildren = _styledComponents.default.div.withConfig({
68
74
  var StyledProjectMenu = _styledComponents.default.div.withConfig({
69
75
  displayName: "headers__StyledProjectMenu",
70
76
  componentId: "sc-yf6o6n-2"
71
- })([".toggle-item{justify-content:space-between;}.toggle-item .opt-left{display:flex;align-items:center;min-width:0;}.toggle-item .opt-left svg{margin-right:8px;flex-shrink:0;}"]);
72
- var ProjectOptionsMenu = function ProjectOptionsMenu() {
77
+ })([".toggle-item{justify-content:space-between;}.toggle-item .opt-left{display:flex;align-items:center;min-width:0;}.toggle-item .opt-left svg{margin-right:8px;flex-shrink:0;}.toggle-item .c-complete-checkbox{width:16px;height:16px;border-radius:3px;align-self:center;flex-shrink:0;}.submenu-item{justify-content:space-between;}.submenu-item .repo-caret{flex-shrink:0;fill:var(--color-theme-600);}.repo-row{min-width:0;}.repo-row > svg{flex-shrink:0;}.repo-name{min-width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}"]);
78
+
79
+ /** Submenu row label for a connected repository: "path (Connection, Type)",
80
+ * matching the grouped picker headers in the Link Branch / Pull Request
81
+ * dialog. */
82
+ var repositoryMenuLabel = function repositoryMenuLabel(repo) {
83
+ var connection = _ConnectRepositoryDialog.CONNECTIONS.find(function (c) {
84
+ return c.id === repo.connectionId;
85
+ });
86
+ return connection ? "".concat(repo.name, " (").concat(connection.name, ", ").concat((0, _ConnectRepositoryDialog.serviceLabel)(connection.service), ")") : repo.name;
87
+ };
88
+
89
+ /**
90
+ * The "Repositories" item and its fly-out submenu. Rendered only when the
91
+ * `source` module is loaded. The item carries a right caret and opens a
92
+ * submenu that lists the project's connected repositories (sorted by name)
93
+ * above a "Connect Repository" action, separated by a divider. Connecting a
94
+ * repository adds it to the list; clicking a repository closes the menu (and,
95
+ * in production, opens the repository in a new tab).
96
+ */
97
+ var RepositoriesMenuItem = function RepositoriesMenuItem(_ref2) {
98
+ var repositories = _ref2.repositories,
99
+ onConnect = _ref2.onConnect,
100
+ onOpenRepository = _ref2.onOpenRepository;
73
101
  var _useState = (0, _react.useState)(false),
74
102
  _useState2 = _slicedToArray(_useState, 2),
75
103
  open = _useState2[0],
76
104
  setOpen = _useState2[1];
77
105
  return /*#__PURE__*/_react.default.createElement(_Menu.Menu, {
106
+ open: open,
107
+ onOpen: function onOpen() {
108
+ return setOpen(true);
109
+ },
110
+ onClose: function onClose() {
111
+ return setOpen(false);
112
+ },
113
+ position: "right-start",
114
+ mode: "wider",
115
+ target: /*#__PURE__*/_react.default.createElement(_List.ListItem, {
116
+ className: "toggle-item submenu-item"
117
+ }, /*#__PURE__*/_react.default.createElement("span", {
118
+ className: "opt-left"
119
+ }, /*#__PURE__*/_react.default.createElement(_Icons.GitRepositoryIcon, null), "Repositories"), /*#__PURE__*/_react.default.createElement(_Icons.CaretRightIcon, {
120
+ className: "repo-caret",
121
+ width: 16,
122
+ height: 16
123
+ }))
124
+ }, /*#__PURE__*/_react.default.createElement(StyledProjectMenu, null, /*#__PURE__*/_react.default.createElement(_List.List, {
125
+ style: {
126
+ padding: "8px 0"
127
+ },
128
+ tabIndex: -1
129
+ }, repositories.map(function (repo) {
130
+ return /*#__PURE__*/_react.default.createElement(_List.ListItem, {
131
+ key: repo.id,
132
+ className: "repo-row",
133
+ onClick: function onClick() {
134
+ return onOpenRepository(repo);
135
+ }
136
+ }, /*#__PURE__*/_react.default.createElement(_Icons.GitRepositoryIcon, null), /*#__PURE__*/_react.default.createElement("span", {
137
+ className: "repo-name"
138
+ }, repositoryMenuLabel(repo)));
139
+ }), repositories.length > 0 ? /*#__PURE__*/_react.default.createElement(_List.ListSeparator, null) : null, /*#__PURE__*/_react.default.createElement(_List.ListItem, {
140
+ onClick: onConnect
141
+ }, /*#__PURE__*/_react.default.createElement(_Icons.AddCrossIcon, null), "Connect Repository"))));
142
+ };
143
+ var ProjectOptionsMenu = function ProjectOptionsMenu(_ref3) {
144
+ var _ref3$sourceModuleLoa = _ref3.sourceModuleLoaded,
145
+ sourceModuleLoaded = _ref3$sourceModuleLoa === void 0 ? false : _ref3$sourceModuleLoa;
146
+ var _useState3 = (0, _react.useState)(false),
147
+ _useState4 = _slicedToArray(_useState3, 2),
148
+ open = _useState4[0],
149
+ setOpen = _useState4[1];
150
+ var _useState5 = (0, _react.useState)([]),
151
+ _useState6 = _slicedToArray(_useState5, 2),
152
+ connectedRepos = _useState6[0],
153
+ setConnectedRepos = _useState6[1];
154
+ var _useState7 = (0, _react.useState)(false),
155
+ _useState8 = _slicedToArray(_useState7, 2),
156
+ connectOpen = _useState8[0],
157
+ setConnectOpen = _useState8[1];
158
+ var _useState9 = (0, _react.useState)(false),
159
+ _useState0 = _slicedToArray(_useState9, 2),
160
+ infoOpen = _useState0[0],
161
+ setInfoOpen = _useState0[1];
162
+
163
+ // Repositories still available to connect (not already on the project).
164
+ var connectableRepos = _ConnectRepositoryDialog.CONNECTABLE_REPOSITORIES.filter(function (r) {
165
+ return !connectedRepos.some(function (c) {
166
+ return c.id === r.id;
167
+ });
168
+ });
169
+
170
+ // Connected repositories are listed in the submenu sorted by name.
171
+ var sortedRepos = [...connectedRepos].sort(function (a, b) {
172
+ return a.name.localeCompare(b.name);
173
+ });
174
+ var handleConnected = function handleConnected(repo) {
175
+ setConnectedRepos(function (prev) {
176
+ return prev.some(function (r) {
177
+ return r.id === repo.id;
178
+ }) ? prev : [...prev, repo];
179
+ });
180
+ };
181
+ var handleConnect = function handleConnect() {
182
+ setOpen(false);
183
+ setConnectOpen(true);
184
+ };
185
+
186
+ // In production this closes the menu and opens the repository in a new tab;
187
+ // in the mock we surface that behaviour in a small dialog instead.
188
+ var handleOpenRepository = function handleOpenRepository() {
189
+ setOpen(false);
190
+ setInfoOpen(true);
191
+ };
192
+ return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_Menu.Menu, {
78
193
  open: open,
79
194
  onOpen: function onOpen() {
80
195
  return setOpen(true);
@@ -97,26 +212,142 @@ var ProjectOptionsMenu = function ProjectOptionsMenu() {
97
212
  className: "toggle-item"
98
213
  }, /*#__PURE__*/_react.default.createElement("span", {
99
214
  className: "opt-left"
100
- }, /*#__PURE__*/_react.default.createElement(_Icons.StarIcon, null), "Mark as Favorite"), /*#__PURE__*/_react.default.createElement(_Checkbox.Checkbox, {
101
- id: "proj-favorite",
102
- onChange: function onChange() {
103
- return undefined;
104
- }
215
+ }, /*#__PURE__*/_react.default.createElement(_Icons.StarIcon, null), "Mark as Favorite"), /*#__PURE__*/_react.default.createElement(_CompleteCheckbox.CompleteCheckbox, {
216
+ primary: true,
217
+ completed: true
105
218
  })), /*#__PURE__*/_react.default.createElement(_List.ListItem, {
106
219
  className: "toggle-item"
107
220
  }, /*#__PURE__*/_react.default.createElement("span", {
108
221
  className: "opt-left"
109
- }, /*#__PURE__*/_react.default.createElement(_Icons.NotificationBellIcon, null), "Subscribe to Everything"), /*#__PURE__*/_react.default.createElement(_Checkbox.Checkbox, {
110
- id: "proj-subscribe",
111
- onChange: function onChange() {
112
- return undefined;
222
+ }, /*#__PURE__*/_react.default.createElement(_Icons.NotificationBellIcon, null), "Subscribe to Everything"), /*#__PURE__*/_react.default.createElement(_CompleteCheckbox.CompleteCheckbox, {
223
+ primary: true,
224
+ completed: false
225
+ })), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.LabelsIcon, null), "Manage Task Labels"), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.InsertLinkIcon, null), "Copy Link"), /*#__PURE__*/_react.default.createElement(_List.ListSeparator, null), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.CheckboxBlankTogglerIcon, null), "Complete"), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.DownloadIcon, null), "Export"), sourceModuleLoaded ? /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_List.ListSeparator, null), /*#__PURE__*/_react.default.createElement(RepositoriesMenuItem, {
226
+ repositories: sortedRepos,
227
+ onConnect: handleConnect,
228
+ onOpenRepository: handleOpenRepository
229
+ })) : null, /*#__PURE__*/_react.default.createElement(_List.ListSeparator, null), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.DuplicateIcon, null), "Duplicate"), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.ProjectTemplateIcon, null), "Apply Template"), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.ProjectTemplateConvertIcon, null), "Convert to Template"), /*#__PURE__*/_react.default.createElement(_List.ListSeparator, null), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.TrashIcon, null), "Delete")))), /*#__PURE__*/_react.default.createElement(_ConnectRepositoryDialog.ConnectRepositoryDialog, {
230
+ open: connectOpen,
231
+ onClose: function onClose() {
232
+ return setConnectOpen(false);
233
+ },
234
+ onConnect: handleConnected,
235
+ repositories: connectableRepos,
236
+ connections: _ConnectRepositoryDialog.CONNECTIONS
237
+ }), /*#__PURE__*/_react.default.createElement(_Dialog.Dialog, {
238
+ open: infoOpen,
239
+ onClose: function onClose() {
240
+ return setInfoOpen(false);
241
+ },
242
+ enableBackgroundClick: true
243
+ }, /*#__PURE__*/_react.default.createElement(_Dialog.Dialog.Title, null, "Open Repository"), /*#__PURE__*/_react.default.createElement(_Dialog.Dialog.ContentDivider, null), /*#__PURE__*/_react.default.createElement(_Dialog.Dialog.Content, null, /*#__PURE__*/_react.default.createElement(_Typography.Body2, null, "In production, this click would close the menu and open the repository in a new browser tab.")), /*#__PURE__*/_react.default.createElement(_Dialog.Dialog.ContentDivider, null), /*#__PURE__*/_react.default.createElement(_Dialog.Dialog.Actions, null, /*#__PURE__*/_react.default.createElement(_Button.Button, {
244
+ variant: "primary",
245
+ onClick: function onClick() {
246
+ return setInfoOpen(false);
113
247
  }
114
- })), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.LabelsIcon, null), "Manage Task Labels"), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.InsertLinkIcon, null), "Copy Link"), /*#__PURE__*/_react.default.createElement(_List.ListSeparator, null), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.CheckboxBlankTogglerIcon, null), "Complete"), /*#__PURE__*/_react.default.createElement(_List.ListSeparator, null), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.DuplicateIcon, null), "Duplicate"), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.ProjectTemplateIcon, null), "Apply Template"), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.ProjectTemplateConvertIcon, null), "Convert to Template"), /*#__PURE__*/_react.default.createElement(_List.ListSeparator, null), /*#__PURE__*/_react.default.createElement(_List.ListItem, null, /*#__PURE__*/_react.default.createElement(_Icons.TrashIcon, null), "Delete"))));
248
+ }, "Got it"))));
249
+ };
250
+
251
+ /* People popover (mirrors the project header People dropdown): a header row
252
+ ("People" + add button), a "Members" section and a row per member. The
253
+ project leader shows a gold crown; other members reveal a "set as leader"
254
+ crown and a remove button on hover. Clicks are no-ops. */
255
+
256
+ var PROJECT_MEMBERS = [{
257
+ name: "Theo Brandt",
258
+ initials: "TB",
259
+ color: _tokens.AVATAR_COLORS.blue,
260
+ leader: true
261
+ }, {
262
+ name: "Iris Calloway",
263
+ initials: "IC",
264
+ color: _tokens.AVATAR_COLORS.purple
265
+ }, {
266
+ name: "Account Director",
267
+ initials: "AD",
268
+ color: "#8A8F98"
269
+ }, {
270
+ name: "Grace Bennett",
271
+ initials: "GB",
272
+ color: _tokens.AVATAR_COLORS.orange
273
+ }];
274
+ var StyledPeopleMenu = _styledComponents.default.div.withConfig({
275
+ displayName: "headers__StyledPeopleMenu",
276
+ componentId: "sc-yf6o6n-3"
277
+ })(["width:256px;.members-label{display:block;margin:8px 0;padding:0 16px;}.member-row{position:relative;display:flex;align-items:center;min-height:40px;margin:0 8px;padding:2px 8px;border-radius:4px;cursor:default;transition:background-color ", ";}.member-row:hover{background-color:var(--color-theme-200);}.member-row.leader::before{content:\"\";position:absolute;top:4px;bottom:4px;left:0;width:4px;border-radius:4px;background-color:", ";}.member-row.leader .member-avatar{outline:2px solid ", ";outline-offset:-2px;}.member-name{flex:1;margin-left:12px;min-width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.member-right{display:flex;align-items:center;gap:2px;flex-shrink:0;margin-left:8px;}.leader-crown{flex-shrink:0;}.member-options{display:none;align-items:center;gap:2px;}.member-row:hover .member-options{display:flex;}"], _tokens.TRANSITION, LEADER_GOLD, LEADER_GOLD);
278
+ var PeoplePopover = function PeoplePopover() {
279
+ var _useState1 = (0, _react.useState)(false),
280
+ _useState10 = _slicedToArray(_useState1, 2),
281
+ open = _useState10[0],
282
+ setOpen = _useState10[1];
283
+ return /*#__PURE__*/_react.default.createElement(_Menu.Menu, {
284
+ open: open,
285
+ onOpen: function onOpen() {
286
+ return setOpen(true);
287
+ },
288
+ onClose: function onClose() {
289
+ return setOpen(false);
290
+ },
291
+ position: "bottom-end",
292
+ target: /*#__PURE__*/_react.default.createElement(_CounterButton.CounterButton, {
293
+ label: String(PROJECT_MEMBERS.length),
294
+ icon: /*#__PURE__*/_react.default.createElement(_Icons.PeopleIcon, null),
295
+ active: open,
296
+ onClearAll: function onClearAll() {
297
+ return undefined;
298
+ }
299
+ })
300
+ }, /*#__PURE__*/_react.default.createElement(StyledPeopleMenu, null, /*#__PURE__*/_react.default.createElement(_Menu.MenuHeader, {
301
+ title: "People",
302
+ rightElement: /*#__PURE__*/_react.default.createElement(_IconButton.IconButton, {
303
+ type: "button",
304
+ variant: "text gray",
305
+ size: "small",
306
+ "aria-label": "Add People"
307
+ }, /*#__PURE__*/_react.default.createElement(_Icons.AddCrossTinyIcon, null))
308
+ }), /*#__PURE__*/_react.default.createElement(_Typography.Caption1, {
309
+ weight: "bold",
310
+ className: "members-label"
311
+ }, "Members"), PROJECT_MEMBERS.map(function (member) {
312
+ return /*#__PURE__*/_react.default.createElement("div", {
313
+ className: member.leader ? "member-row leader" : "member-row",
314
+ key: member.name
315
+ }, /*#__PURE__*/_react.default.createElement(_RoundAvatar.RoundAvatar, {
316
+ className: "member-avatar",
317
+ $bg: member.color,
318
+ $bordered: false
319
+ }, member.initials), /*#__PURE__*/_react.default.createElement(_Typography.Body2, {
320
+ className: "member-name"
321
+ }, member.name), /*#__PURE__*/_react.default.createElement("span", {
322
+ className: "member-right"
323
+ }, member.leader && /*#__PURE__*/_react.default.createElement(_Icons.CrownSelectedIcon, {
324
+ className: "leader-crown",
325
+ style: {
326
+ fill: LEADER_GOLD
327
+ }
328
+ }), /*#__PURE__*/_react.default.createElement("span", {
329
+ className: "member-options"
330
+ }, !member.leader && /*#__PURE__*/_react.default.createElement(_Tooltip.Tooltip, {
331
+ title: "Set as Project Leader"
332
+ }, /*#__PURE__*/_react.default.createElement(_IconButton.IconButton, {
333
+ type: "button",
334
+ variant: "text gray",
335
+ size: "small"
336
+ }, /*#__PURE__*/_react.default.createElement(_Icons.CrownBlankIcon, null))), /*#__PURE__*/_react.default.createElement(_Tooltip.Tooltip, {
337
+ title: "Remove from Project"
338
+ }, /*#__PURE__*/_react.default.createElement(_IconButton.IconButton, {
339
+ type: "button",
340
+ variant: "text gray",
341
+ size: "small"
342
+ }, /*#__PURE__*/_react.default.createElement(_Icons.CloseSmallIcon, null))))));
343
+ })));
115
344
  };
116
345
  /** The project page header: back arrow, title, progress, info, people, options. */
117
- var ProjectPageHeader = exports.ProjectPageHeader = function ProjectPageHeader(_ref2) {
118
- var _ref2$title = _ref2.title,
119
- title = _ref2$title === void 0 ? "#131: Ime projekta" : _ref2$title;
346
+ var ProjectPageHeader = exports.ProjectPageHeader = function ProjectPageHeader(_ref4) {
347
+ var _ref4$title = _ref4.title,
348
+ title = _ref4$title === void 0 ? "#131: Ime projekta" : _ref4$title,
349
+ _ref4$sourceModuleLoa = _ref4.sourceModuleLoaded,
350
+ sourceModuleLoaded = _ref4$sourceModuleLoa === void 0 ? false : _ref4$sourceModuleLoa;
120
351
  return /*#__PURE__*/_react.default.createElement(StyledPageHeader, null, /*#__PURE__*/_react.default.createElement("div", {
121
352
  className: "page-header-left"
122
353
  }, /*#__PURE__*/_react.default.createElement(_IconButton.IconButton, {
@@ -139,13 +370,9 @@ var ProjectPageHeader = exports.ProjectPageHeader = function ProjectPageHeader(_
139
370
  title: "Project Info"
140
371
  }, /*#__PURE__*/_react.default.createElement(_IconButton.IconButton, {
141
372
  variant: "text gray"
142
- }, /*#__PURE__*/_react.default.createElement(_Icons.InfoIcon, null))), /*#__PURE__*/_react.default.createElement(_CounterButton.CounterButton, {
143
- label: "5",
144
- icon: /*#__PURE__*/_react.default.createElement(_Icons.PeopleIcon, null),
145
- onClearAll: function onClearAll() {
146
- return undefined;
147
- }
148
- }), /*#__PURE__*/_react.default.createElement(ProjectOptionsMenu, null)))), /*#__PURE__*/_react.default.createElement("div", {
373
+ }, /*#__PURE__*/_react.default.createElement(_Icons.InfoIcon, null))), /*#__PURE__*/_react.default.createElement(PeoplePopover, null), /*#__PURE__*/_react.default.createElement(ProjectOptionsMenu, {
374
+ sourceModuleLoaded: sourceModuleLoaded
375
+ })))), /*#__PURE__*/_react.default.createElement("div", {
149
376
  className: "page-header-spacer"
150
377
  }));
151
378
  };
@@ -158,20 +385,20 @@ ProjectPageHeader.displayName = "ProjectPageHeader";
158
385
  var NAV_TABS = ["Tasks", "Discussions", "Files", "Notes", "Activity"];
159
386
  var StyledTabHeader = (0, _styledComponents.default)(_Header.Header).withConfig({
160
387
  displayName: "headers__StyledTabHeader",
161
- componentId: "sc-yf6o6n-3"
388
+ componentId: "sc-yf6o6n-4"
162
389
  })(["justify-content:space-between;align-items:center;margin-bottom:16px;min-height:64px;flex-shrink:0;"]);
163
390
  var StyledTabControls = _styledComponents.default.div.withConfig({
164
391
  displayName: "headers__StyledTabControls",
165
- componentId: "sc-yf6o6n-4"
392
+ componentId: "sc-yf6o6n-5"
166
393
  })(["display:flex;align-items:center;flex-shrink:0;gap:4px;.vertical-separator{width:1px;height:24px;background-color:var(--color-theme-400);margin:0 8px;}.filter-button{display:flex;align-items:center;gap:6px;}"]);
167
394
  /** The Tasks/Discussions/… tab bar plus the right-hand view toolbar. */
168
- var TabHeader = exports.TabHeader = function TabHeader(_ref3) {
169
- var _ref3$activeView = _ref3.activeView,
170
- activeView = _ref3$activeView === void 0 ? "list" : _ref3$activeView;
171
- var _useState3 = (0, _react.useState)(0),
172
- _useState4 = _slicedToArray(_useState3, 2),
173
- active = _useState4[0],
174
- setActive = _useState4[1];
395
+ var TabHeader = exports.TabHeader = function TabHeader(_ref5) {
396
+ var _ref5$activeView = _ref5.activeView,
397
+ activeView = _ref5$activeView === void 0 ? "list" : _ref5$activeView;
398
+ var _useState11 = (0, _react.useState)(0),
399
+ _useState12 = _slicedToArray(_useState11, 2),
400
+ active = _useState12[0],
401
+ setActive = _useState12[1];
175
402
  return /*#__PURE__*/_react.default.createElement(StyledTabHeader, null, /*#__PURE__*/_react.default.createElement(_Nav.Nav, {
176
403
  onSelect: setActive
177
404
  }, NAV_TABS.map(function (label, index) {