@industry-theme/github-panels 0.1.64 → 0.1.65

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":"RecentRepositoriesPanel.d.ts","sourceRoot":"","sources":["../../src/panels/RecentRepositoriesPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA2C,MAAM,OAAO,CAAC;AAgBhE,OAAO,KAAK,EACV,gBAAgB,EAEhB,4BAA4B,EAC7B,MAAM,iBAAiB,CAAC;AAkGzB;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,gBAAgB,GAAG,IAAI,CA8BhE;AAED;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,GAAG,cAAc,CAAC;IAC9B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,SAAS,GAAG,IAAI,CA0BrD;AAypBD;;;;;;;;;;GAUG;AACH,eAAO,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAAC,4BAA4B,GAAG;IAC5E,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC,CAEA,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,+BAA+B;;;;;;;;CAQ3C,CAAC"}
1
+ {"version":3,"file":"RecentRepositoriesPanel.d.ts","sourceRoot":"","sources":["../../src/panels/RecentRepositoriesPanel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA2C,MAAM,OAAO,CAAC;AAgBhE,OAAO,KAAK,EACV,gBAAgB,EAEhB,4BAA4B,EAC7B,MAAM,iBAAiB,CAAC;AAkGzB;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,gBAAgB,GAAG,IAAI,CA8BhE;AAED;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,GAAG,cAAc,CAAC;IAC9B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,SAAS,GAAG,IAAI,CA0BrD;AA2pBD;;;;;;;;;;GAUG;AACH,eAAO,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAAC,4BAA4B,GAAG;IAC5E,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC,CAEA,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,+BAA+B;;;;;;;;CAQ3C,CAAC"}
@@ -53199,7 +53199,7 @@ const RecentRepositoriesPanelContent = ({
53199
53199
  full_name: repo.full_name,
53200
53200
  owner: {
53201
53201
  login: repo.owner.login,
53202
- avatar_url: repo.owner.avatar_url
53202
+ avatar_url: repo.owner.avatar_url || `https://github.com/${repo.owner.login}.png`
53203
53203
  },
53204
53204
  private: false,
53205
53205
  html_url: repo.html_url,
@@ -53208,6 +53208,7 @@ const RecentRepositoriesPanelContent = ({
53208
53208
  clone_url: `https://github.com/${repo.full_name}.git`,
53209
53209
  language: repo.language,
53210
53210
  default_branch: "main",
53211
+ updated_at: (/* @__PURE__ */ new Date()).toISOString(),
53211
53212
  stargazers_count: repo.stargazers_count,
53212
53213
  forks_count: repo.forks_count
53213
53214
  };
@@ -53231,7 +53232,7 @@ const RecentRepositoriesPanelContent = ({
53231
53232
  full_name: repo.full_name,
53232
53233
  owner: {
53233
53234
  login: repo.owner.login,
53234
- avatar_url: repo.owner.avatar_url
53235
+ avatar_url: repo.owner.avatar_url || `https://github.com/${repo.owner.login}.png`
53235
53236
  },
53236
53237
  private: false,
53237
53238
  html_url: repo.html_url,
@@ -53240,6 +53241,7 @@ const RecentRepositoriesPanelContent = ({
53240
53241
  clone_url: `https://github.com/${repo.full_name}.git`,
53241
53242
  language: repo.language,
53242
53243
  default_branch: "main",
53244
+ updated_at: (/* @__PURE__ */ new Date()).toISOString(),
53243
53245
  stargazers_count: repo.stargazers_count,
53244
53246
  forks_count: repo.forks_count
53245
53247
  };