@industry-theme/git-panels 0.1.13 → 0.1.14

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.
@@ -1 +1 @@
1
- {"version":3,"file":"GitCommitHistoryPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitCommitHistoryPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAG5D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAIpD;;;;;;;;;;GAUG;AACH,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAyN/D,CAAC;AA0EF;;GAEG;AACH,eAAO,MAAM,4BAA4B,EAAE,KAAK,CAAC,EA+DhD,CAAC"}
1
+ {"version":3,"file":"GitCommitHistoryPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitCommitHistoryPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAG5D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAIpD;;;;;;;;;;GAUG;AACH,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAwN/D,CAAC;AA0EF;;GAEG;AACH,eAAO,MAAM,4BAA4B,EAAE,KAAK,CAAC,EA+DhD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"GitPullRequestsPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitPullRequestsPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAU5D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAMpD;;;;;;;;;;GAUG;AACH,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA6S9D,CAAC;AAqIF;;GAEG;AACH,eAAO,MAAM,2BAA2B,EAAE,KAAK,CAAC,EAkE/C,CAAC"}
1
+ {"version":3,"file":"GitPullRequestsPanel.d.ts","sourceRoot":"","sources":["../../src/panels/GitPullRequestsPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAU5D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAMpD;;;;;;;;;;GAUG;AACH,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA4S9D,CAAC;AAqIF;;GAEG;AACH,eAAO,MAAM,2BAA2B,EAAE,KAAK,CAAC,EAkE/C,CAAC"}
@@ -496,7 +496,7 @@ const GitCommitHistoryPanel = ({
496
496
  boxSizing: "border-box"
497
497
  },
498
498
  children: [
499
- /* @__PURE__ */ jsxs(
499
+ /* @__PURE__ */ jsx(
500
500
  "div",
501
501
  {
502
502
  style: {
@@ -509,10 +509,7 @@ const GitCommitHistoryPanel = ({
509
509
  fontWeight: 600,
510
510
  textTransform: "uppercase"
511
511
  },
512
- children: [
513
- /* @__PURE__ */ jsx(History, { size: 14 }),
514
- "Commit History"
515
- ]
512
+ children: "Commit History"
516
513
  }
517
514
  ),
518
515
  /* @__PURE__ */ jsxs(
@@ -634,7 +631,7 @@ const CommitCard = ({ commit, theme: theme2, isSelected, onClick }) => {
634
631
  style: {
635
632
  borderBottom: `1px solid ${theme2.colors.border}`,
636
633
  padding: "16px",
637
- backgroundColor: isActive ? theme2.colors.background : theme2.colors.backgroundSecondary,
634
+ backgroundColor: isActive ? theme2.colors.backgroundSecondary : theme2.colors.background,
638
635
  display: "flex",
639
636
  flexDirection: "column",
640
637
  gap: "8px",
@@ -650,7 +647,7 @@ const CommitCard = ({ commit, theme: theme2, isSelected, onClick }) => {
650
647
  fontFamily: theme2.fonts.heading,
651
648
  fontSize: theme2.fontSizes[2],
652
649
  fontWeight: 600,
653
- color: isActive ? theme2.colors.primary : theme2.colors.text,
650
+ color: isActive ? theme2.colors.text : theme2.colors.primary,
654
651
  lineHeight: 1.3,
655
652
  wordBreak: "break-word",
656
653
  transition: "color 0.15s ease"
@@ -45306,7 +45303,7 @@ const GitPullRequestsPanel = ({
45306
45303
  boxSizing: "border-box"
45307
45304
  },
45308
45305
  children: [
45309
- /* @__PURE__ */ jsxs(
45306
+ /* @__PURE__ */ jsx(
45310
45307
  "div",
45311
45308
  {
45312
45309
  style: {
@@ -45319,10 +45316,7 @@ const GitPullRequestsPanel = ({
45319
45316
  fontWeight: 600,
45320
45317
  textTransform: "uppercase"
45321
45318
  },
45322
- children: [
45323
- /* @__PURE__ */ jsx(GitPullRequest, { size: 14 }),
45324
- "Pull Requests"
45325
- ]
45319
+ children: "Pull Requests"
45326
45320
  }
45327
45321
  ),
45328
45322
  /* @__PURE__ */ jsxs(
@@ -45461,7 +45455,7 @@ const PullRequestCard = ({ pr, theme: theme2, isSelected, onClick }) => {
45461
45455
  style: {
45462
45456
  borderBottom: `1px solid ${theme2.colors.border}`,
45463
45457
  padding: "16px 16px",
45464
- backgroundColor: isActive ? theme2.colors.background : theme2.colors.backgroundSecondary,
45458
+ backgroundColor: isActive ? theme2.colors.backgroundSecondary : theme2.colors.background,
45465
45459
  display: "flex",
45466
45460
  flexDirection: "column",
45467
45461
  gap: "8px",
@@ -45477,7 +45471,7 @@ const PullRequestCard = ({ pr, theme: theme2, isSelected, onClick }) => {
45477
45471
  fontFamily: theme2.fonts.heading,
45478
45472
  fontSize: theme2.fontSizes[2],
45479
45473
  fontWeight: 600,
45480
- color: isActive ? theme2.colors.primary : theme2.colors.text,
45474
+ color: isActive ? theme2.colors.text : theme2.colors.primary,
45481
45475
  lineHeight: 1.3,
45482
45476
  wordBreak: "break-word",
45483
45477
  transition: "color 0.15s ease"