@takagaki/cortex-decisions-viewer 0.12.35 → 0.12.37

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/dist/build.js CHANGED
@@ -444,6 +444,11 @@ async function readFleetSources(repoRoot) {
444
444
  meetingAliases: Array.isArray(s.meetingAliases)
445
445
  ? s.meetingAliases.filter((a) => typeof a === "string" && a !== "")
446
446
  : undefined,
447
+ // 案件カレンダーの ID(#428)。🔴 **ここに列挙しないと画面へ届かない。**
448
+ // 落ちると、既にカレンダーがある案件でも初期表示が「案件カレンダーが
449
+ // まだありません」+「作る」になり、**押した人が 2 本目を作る**。
450
+ // ライブ(op=state)が届けば直るが、届く前に押せてしまう
451
+ calendarId: s.calendarId != null ? String(s.calendarId) : undefined,
447
452
  driveSync: typeof s.driveSync === "boolean" ? s.driveSync : undefined,
448
453
  enabled: typeof s.enabled === "boolean" ? s.enabled : undefined,
449
454
  // 会議・資料の ON/OFF の現在値。**ここに列挙しないと画面へ届かない**
@@ -4,8 +4,7 @@
4
4
  *
5
5
  * ## なぜ base64 で埋め込むのか
6
6
  *
7
- * 会議のフォルダ共有の手順画像(meet-guide-images.ts)と同じ判断。ビューアは自己完結の
8
- * 静的サイトで、この案内は約20案件ぶんのサイトに毎回載る。ビルド時にアセットとして
7
+ * ビューアは自己完結の静的サイトで、この案内は約20案件ぶんのサイトに毎回載る。ビルド時にアセットとして
9
8
  * 書き出す案は、**npm パッケージに画像を同梱する新しい配布経路**(package.json の files・
10
9
  * ビルドへのコピー手順・__dirname からの解決)を1本増やす。画像が出ない事故
11
10
  * (パッケージに入り損ねる・パスがずれる)は、埋め込みなら構造的に起こらない。