@things-factory/figure-ui 10.1.3 → 10.1.5

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 (50) hide show
  1. package/client/graphql/index.ts +87 -12
  2. package/client/modeller/figure-ask.ts +14 -4
  3. package/client/modeller/figure-canvas.ts +53 -0
  4. package/client/modeller/figure-history-panel.ts +324 -0
  5. package/client/modeller/figure-inspector.ts +78 -2
  6. package/client/modeller/figure-side.ts +22 -1
  7. package/client/modeller/figure-thumbnail.ts +78 -0
  8. package/client/pages/figure-list-page.ts +391 -195
  9. package/client/pages/figure-modeller-page.ts +114 -19
  10. package/client/types.ts +17 -0
  11. package/dist-client/graphql/index.d.ts +24 -4
  12. package/dist-client/graphql/index.js +70 -9
  13. package/dist-client/graphql/index.js.map +1 -1
  14. package/dist-client/modeller/figure-ask.js +14 -4
  15. package/dist-client/modeller/figure-ask.js.map +1 -1
  16. package/dist-client/modeller/figure-canvas.d.ts +11 -0
  17. package/dist-client/modeller/figure-canvas.js +42 -0
  18. package/dist-client/modeller/figure-canvas.js.map +1 -1
  19. package/dist-client/modeller/figure-history-panel.d.ts +42 -0
  20. package/dist-client/modeller/figure-history-panel.js +343 -0
  21. package/dist-client/modeller/figure-history-panel.js.map +1 -0
  22. package/dist-client/modeller/figure-inspector.d.ts +17 -0
  23. package/dist-client/modeller/figure-inspector.js +77 -2
  24. package/dist-client/modeller/figure-inspector.js.map +1 -1
  25. package/dist-client/modeller/figure-side.d.ts +7 -0
  26. package/dist-client/modeller/figure-side.js +43 -0
  27. package/dist-client/modeller/figure-side.js.map +1 -1
  28. package/dist-client/modeller/figure-thumbnail.d.ts +3 -0
  29. package/dist-client/modeller/figure-thumbnail.js +59 -0
  30. package/dist-client/modeller/figure-thumbnail.js.map +1 -0
  31. package/dist-client/pages/figure-list-page.d.ts +45 -17
  32. package/dist-client/pages/figure-list-page.js +374 -209
  33. package/dist-client/pages/figure-list-page.js.map +1 -1
  34. package/dist-client/pages/figure-modeller-page.d.ts +27 -0
  35. package/dist-client/pages/figure-modeller-page.js +109 -19
  36. package/dist-client/pages/figure-modeller-page.js.map +1 -1
  37. package/dist-client/tsconfig.tsbuildinfo +1 -0
  38. package/dist-client/types.d.ts +19 -0
  39. package/dist-client/types.js.map +1 -1
  40. package/dist-server/tsconfig.tsbuildinfo +1 -0
  41. package/package.json +5 -3
  42. package/translations/en.json +19 -0
  43. package/translations/ja.json +21 -2
  44. package/translations/ko.json +21 -2
  45. package/translations/ms.json +21 -2
  46. package/translations/zh.json +21 -2
  47. package/client/viewparts/figure-card.ts +0 -226
  48. package/dist-client/viewparts/figure-card.d.ts +0 -24
  49. package/dist-client/viewparts/figure-card.js +0 -221
  50. package/dist-client/viewparts/figure-card.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../client/types.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * 화면이 다루는 모양.\n *\n * 정본 형식(`FigureSource`)의 타입은 **여기서 다시 정의하지 않는다** —\n * `@hatiolab/figure-model` 에서 가져온다. 두 벌이면 갈리고, 갈리면 화면이 서버가\n * 거절할 것을 만들어 낸다.\n */\nexport type { FigureSource, FigureBlueprint, FigurePart, ErrorCode, ViolationCode } from '@hatiolab/figure-model'\n\n/** 서버가 돌려주는 Figure 한 벌. `source` 는 저작면에서만 받는다. */\nexport interface Figure {\n id: string\n /** 컴포넌트 타입 이름. **만든 뒤에 고칠 수 없다.** */\n type: string\n name: string\n description?: string\n category?: string\n state?: 'draft' | 'released'\n /** 재활용 점수 0~100. 서버가 정본에서 계산한다 — 화면이 보내는 값이 아니다. */\n score?: number\n triangles?: number\n groups?: number\n thumbnail?: string\n thumbnailUpdatedAt?: string\n updatedAt?: string\n updater?: { id: string; name: string }\n /** `FigureSource` JSON 문자열. 목록 질의에는 실려 오지 않는다. */\n source?: string\n properties?: string\n version?: number\n}\n\nexport interface FigureListResult {\n items: Figure[]\n total: number\n}\n\n/**\n * 새 Figure.\n *\n * `score`·`triangles`·`groups` 가 없다 — **서버가 정본에서 계산한다.** 화면이 보내면\n * 거짓이 들어오고 목록이 실물과 다른 것을 보여 준다.\n */\nexport interface NewFigure {\n type: string\n name: string\n description?: string\n category?: string\n source: string\n properties?: string\n state?: 'draft' | 'released'\n thumbnail?: string\n}\n\n/**\n * 수정.\n *\n * `type` 이 없다 — 저장되는 식별자라 고칠 수 없다. 배치된 보드가 그 이름으로 타입을\n * 찾으므로, 바꾸면 그 보드가 빈 화면이 된다.\n */\nexport interface FigurePatch {\n name?: string\n description?: string\n category?: string\n source?: string\n properties?: string\n state?: 'draft' | 'released'\n thumbnail?: string\n}\n\n/** 검증 결과 한 줄. 코드는 figure-model 의 것을 그대로 쓴다. */\nexport interface FigureFinding {\n code: string\n message: string\n at?: string\n}\n\n/**\n * 저작 보조가 낸 후보.\n *\n * **정본이 아니다.** 저작자가 보고 받아야 정본이 된다 — 서버는 저장하지 않고\n * 돌려주기만 한다.\n */\nexport interface FigureProposal {\n /** 후보 정본. JSON 문자열이다 — 화면이 파싱한다. */\n source: string\n score: number\n grade: string\n triangles: number\n /** 재질 묶음 = 인스턴스 하나가 무는 draw call. */\n groups: number\n /** 형식은 맞으나 정책을 넘은 것. 막지 않는다 — 저작자가 정한다. */\n violations: FigureFinding[]\n /** 몇 번 만에 됐나. 진단용이다. */\n attempts: number\n}\n"]}
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../client/types.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * 화면이 다루는 모양.\n *\n * 정본 형식(`FigureSource`)의 타입은 **여기서 다시 정의하지 않는다** —\n * `@hatiolab/figure-model` 에서 가져온다. 두 벌이면 갈리고, 갈리면 화면이 서버가\n * 거절할 것을 만들어 낸다.\n */\nexport type { FigureSource, FigureBlueprint, FigurePart, ErrorCode, ViolationCode } from '@hatiolab/figure-model'\n\n/** 서버가 돌려주는 Figure 한 벌. `source` 는 저작면에서만 받는다. */\nexport interface Figure {\n id: string\n /** 컴포넌트 타입 이름. **만든 뒤에 고칠 수 없다.** */\n type: string\n name: string\n description?: string\n category?: string\n state?: 'draft' | 'released'\n /** 재활용 점수 0~100. 서버가 정본에서 계산한다 — 화면이 보내는 값이 아니다. */\n score?: number\n triangles?: number\n groups?: number\n thumbnail?: string\n thumbnailUpdatedAt?: string\n updatedAt?: string\n updater?: { id: string; name: string }\n /** `FigureSource` JSON 문자열. 목록 질의에는 실려 오지 않는다. */\n source?: string\n properties?: string\n version?: number\n}\n\n/**\n * 발행된 판 하나.\n *\n * 저작 중 저장은 여기 오지 않는다 — 판본은 발행에서만 생긴다.\n */\nexport interface FigureVersion {\n version: number\n /** 발행하며 남긴 말. */\n comment?: string\n state?: 'draft' | 'released'\n updatedAt?: string\n updater?: { id: string; name: string }\n score?: number\n triangles?: number\n groups?: number\n}\n\nexport interface FigureListResult {\n items: Figure[]\n total: number\n}\n\n/**\n * 새 Figure.\n *\n * `score`·`triangles`·`groups` 가 없다 — **서버가 정본에서 계산한다.** 화면이 보내면\n * 거짓이 들어오고 목록이 실물과 다른 것을 보여 준다.\n */\nexport interface NewFigure {\n type: string\n name: string\n description?: string\n category?: string\n source: string\n properties?: string\n state?: 'draft' | 'released'\n thumbnail?: string\n}\n\n/**\n * 수정.\n *\n * `type` 이 없다 — 저장되는 식별자라 고칠 수 없다. 배치된 보드가 그 이름으로 타입을\n * 찾으므로, 바꾸면 그 보드가 빈 화면이 된다.\n */\nexport interface FigurePatch {\n name?: string\n description?: string\n category?: string\n source?: string\n properties?: string\n state?: 'draft' | 'released'\n thumbnail?: string\n}\n\n/** 검증 결과 한 줄. 코드는 figure-model 의 것을 그대로 쓴다. */\nexport interface FigureFinding {\n code: string\n message: string\n at?: string\n}\n\n/**\n * 저작 보조가 낸 후보.\n *\n * **정본이 아니다.** 저작자가 보고 받아야 정본이 된다 — 서버는 저장하지 않고\n * 돌려주기만 한다.\n */\nexport interface FigureProposal {\n /** 후보 정본. JSON 문자열이다 — 화면이 파싱한다. */\n source: string\n score: number\n grade: string\n triangles: number\n /** 재질 묶음 = 인스턴스 하나가 무는 draw call. */\n groups: number\n /** 형식은 맞으나 정책을 넘은 것. 막지 않는다 — 저작자가 정한다. */\n violations: FigureFinding[]\n /** 몇 번 만에 됐나. 진단용이다. */\n attempts: number\n}\n"]}
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../server/index.ts","../../../node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/undici-types/utility.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client-stats.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/undici-types/h2c-client.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/dispatcher1-wrapper.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/socks5-proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/ffi.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/path/posix.d.ts","../../../node_modules/@types/node/path/win32.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/quic.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/sqlite.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/iter.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/test/reporters.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/util/types.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vfs.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/zlib/iter.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileIdsList":[[65,130,138,143,146,148,149,150,163],[65,130,138,143,146,148,149,150,163,194],[65,130,138,143,146,148,149,150,163,196,199],[65,127,128,130,138,143,146,148,149,150,163],[65,129,130,138,143,146,148,149,150,163],[130,138,143,146,148,149,150,163],[65,130,138,143,146,148,149,150,163,172],[65,130,131,136,138,141,143,146,148,149,150,152,163,168,181],[65,130,131,132,138,141,143,146,148,149,150,163],[65,130,133,138,143,146,148,149,150,163,182],[65,130,134,135,138,143,146,148,149,150,154,163],[65,130,135,138,143,146,148,149,150,163,168,178],[65,130,136,138,141,143,146,148,149,150,152,163],[65,129,130,137,138,143,146,148,149,150,163],[65,130,138,139,143,146,148,149,150,163],[65,130,138,140,141,143,146,148,149,150,163],[65,129,130,138,141,143,146,148,149,150,163],[65,130,138,141,143,144,146,148,149,150,163,168,181],[65,130,138,141,143,144,146,148,149,150,163,170,172],[65,117,130,138,141,143,145,146,148,149,150,152,163,168,181],[65,130,138,141,143,145,146,148,149,150,152,163,168,178,181],[65,130,138,143,145,146,147,148,149,150,163,168,178,181],[64,65,66,67,68,69,70,71,72,73,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190],[65,130,138,141,143,146,148,149,150,163],[65,130,138,143,146,148,150,163],[65,130,138,143,146,148,149,150,151,163,181],[65,130,138,141,143,146,148,149,150,152,163,168],[65,130,138,143,146,148,149,150,154,163],[65,130,138,143,146,148,149,150,155,163],[65,130,138,141,143,146,148,149,150,158,163],[65,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,186,187,188,189],[65,130,138,143,146,148,149,150,160,163],[65,130,138,143,146,148,149,150,161,163],[65,130,135,138,143,144,146,148,149,150,152,163,170,178],[65,130,138,141,143,146,148,149,150,163,164],[65,130,138,143,146,148,149,150,163,165,182,186],[65,130,138,141,143,146,148,149,150,163,168,170,171,172],[65,130,138,143,146,148,149,150,163,169,172],[65,130,138,141,143,146,148,149,150,163,168,170],[65,130,138,141,143,146,148,149,150,163,168,171,172],[65,130,138,143,146,148,149,150,163,172,182],[65,130,138,143,146,148,149,150,163,173],[65,127,130,138,143,146,148,149,150,163,168,175,181],[65,130,138,143,146,148,149,150,163,168,174],[65,130,138,141,143,146,148,149,150,163,176,177],[65,130,138,143,146,148,149,150,163,176,177],[65,130,135,138,143,146,148,149,150,152,163,168,178],[65,130,138,143,146,148,149,150,163,179],[65,130,138,143,146,148,149,150,152,163,180],[65,130,138,143,145,146,148,149,150,161,163,181],[65,130,138,143,146,148,149,150,163,182,183],[65,130,135,138,143,146,148,149,150,163,183],[65,130,138,143,146,148,149,150,163,168,184],[65,130,138,143,144,146,148,149,150,163],[65,130,138,143,146,148,149,150,151,163,186],[65,130,138,143,146,148,149,150,163,187],[65,130,133,138,143,146,148,149,150,163],[65,130,135,138,143,146,148,149,150,163],[65,130,138,143,146,148,149,150,163,182],[65,117,130,138,143,146,148,149,150,163],[65,130,138,143,146,148,149,150,163,181],[65,130,138,143,146,148,149,150,163,188],[65,130,138,143,146,148,149,150,158,163],[65,130,138,143,146,148,149,150,163,177],[65,117,130,138,141,143,144,146,148,149,150,158,163,168,172,181,184,186,188],[65,130,138,143,146,148,149,150,163,168,189],[65,130,138,143,146,148,149,150,163,170,190],[65,130,138,143,146,148,149,150,163,192,198],[65,130,138,143,146,148,149,150,163,196],[65,130,138,143,146,148,149,150,163,193,197],[65,130,138,143,146,148,149,150,163,195],[65,80,83,86,87,130,138,143,146,148,149,150,163,181],[65,83,130,138,143,146,148,149,150,163,168,181],[65,83,87,130,138,143,146,148,149,150,163,181],[65,130,138,143,146,148,149,150,163,168],[65,77,130,138,143,146,148,149,150,163],[65,81,130,138,143,146,148,149,150,163],[65,79,80,83,130,138,143,146,148,149,150,163,181],[65,130,138,143,146,148,149,150,152,163,178],[65,130,138,143,146,148,149,150,163,191],[65,77,130,138,143,146,148,149,150,163,191],[65,79,83,130,138,143,146,148,149,150,152,163,181],[65,74,75,76,78,82,130,138,141,143,146,148,149,150,163,168,181],[65,83,130,138,143,146,148,149,150,163],[65,83,92,101,130,138,143,146,148,149,150,163],[65,75,81,130,138,143,146,148,149,150,163],[65,83,111,112,130,138,143,146,148,149,150,163],[65,75,78,83,130,138,143,146,148,149,150,163,172,181,191],[65,79,83,130,138,143,146,148,149,150,163,181],[65,74,130,138,143,146,148,149,150,163],[65,77,78,79,81,82,83,84,85,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,130,138,143,146,148,149,150,163],[65,83,104,107,130,138,143,146,148,149,150,163],[65,83,92,94,95,130,138,143,146,148,149,150,163],[65,81,83,94,96,130,138,143,146,148,149,150,163],[65,82,130,138,143,146,148,149,150,163],[65,75,77,83,130,138,143,146,148,149,150,163],[65,83,87,94,96,130,138,143,146,148,149,150,163],[65,87,130,138,143,146,148,149,150,163],[65,81,83,86,130,138,143,146,148,149,150,163,181],[65,75,79,83,92,130,138,143,146,148,149,150,163],[65,83,104,130,138,143,146,148,149,150,163],[65,96,130,138,143,146,148,149,150,163],[65,75,79,83,87,130,138,143,146,148,149,150,163],[65,77,83,111,130,138,143,146,148,149,150,163,172,188,191],[62,65,130,138,143,146,148,149,150,163]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"0986bb9f87b66446be54befd9b182e8a61dcf01d9ff048faecda0d07f4cff390","signature":"ceb27c4801fca402a394ecc1900fb729335a6f65feaaa0813b045f8b3f75da79"},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9b68a1c3f8f45b4c199fa5b3ac09497230cb8f2f0cdcfebe5817b30b836a64a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f53a7652392cf26ebbe4e29fd0672aa87c93bd6d0241289c13fab87b9ac35c8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"b00a630557d1622ad312633bdbfbdb9c6b7220d948dca9f899db30679f160074","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"88809d6c1b9c78d04a133646a6feb926def05a8774c308c7c93bc32ee163d271","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"21d7fab00c101ddf754b392e11534e6b20c6bda269b2ccbcdf3453cbe21d8a39","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"d3c85d4dde1a4918009e37426ee4a940cbbd4100e2e74d03e2de0d50a77bb488","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"60e3ba4b2d24548107060e5d13bffafbbbaa53d001c07bbe40386deda569b5e8","impliedFormat":1},{"version":"a712be2c8cbe0154bd17d1d7bff503d7c04331e0745eb9eea3d303e0e5d9401e","impliedFormat":1},{"version":"25bd6ae1b97ea991433337310fc406cc7c9f271b67b7c79dd24eee384759f3d4","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"38004e6801340cb890afb8cb5a9fc8972297e7f88ab94026e4b0b3c61fb32f8a","impliedFormat":1},{"version":"4ca7fb8f6018ea836b1ad24f67d5e7c2cf7410af7462e0ccc90b012944f5d7ae","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"149f9a9e7f04e67afa0e2a49fc0ff421035c01d6b793cfcae7d2e9f6819431e2","impliedFormat":1},{"version":"e8a9dfa4c75ef6d25df8b40eaa9c31e0a69452aaf2ced4a3f4215dbdbaa876f4","impliedFormat":1},{"version":"a70af845a2eb9dd6e2723e319e14ea7fb28b129ec1361c21509b49305448c323","impliedFormat":1},{"version":"b53dc572d4f187904207ae1166652de47aab8eeb00c254d009cb226863076b56","impliedFormat":1},{"version":"57354d2f022ed64ede57b2e052306dd076a138b551abc7d30ef5e6718ce2f76a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"f501234c5aeeeb5d7659412335227466aaacf30b952372d60afeb21c02c96348","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"358f74dc35927dc88ea86dd201a2b98e701c281615e6b30a4c153eb0bb90ef71","impliedFormat":1},{"version":"8b91ff5bb912be3ea213cbcf0075aace1f5d4ff249a0d227ed673868cb7bfabc","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"706abfbafe0ed5f685357375e89bbf48879549ea1772185d77d15f587c5c9400","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"013ff793053d33a15be4614efdd6c50247bbf0b26d6bc58ba338622a7441b543","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"e99963ae1e3a48ca7a7958c02f3e88bb963eb7978c28b68ae6b8c9f03309d83c","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"594ae90cacd813fa392ff80d2e0a8eff4e41f4a136329a940e321399dd8895b4","impliedFormat":1},{"version":"d1f333ade8ff35a409b4984e1f11956fe11c61855b0c7e9b59f0313e48b40c4a","impliedFormat":1},{"version":"0224aa4b3464895d69c413a640a19ac2166778a74eb5eb3b36b021c72d42b274","impliedFormat":1},{"version":"575aa163c4c32e5b82e0e99b1f9f80806e1d78bfa259706e05139251c022277b","affectsGlobalScope":true,"impliedFormat":1},{"version":"47d917e731d06acf182baa38ac2fbd720c3555fa9160e6a40d47994515f7f0ea","impliedFormat":1},{"version":"2fbf504c4791f9d32cd766cfe6b605bcda63289b925401953a7900db9af85348","impliedFormat":1},{"version":"ed0fb633cae35948d9e144004299a4bdf1ab912667c787b7fbffcd6d8c7b92a2","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"4c8a22ece1ef9fb4659ec034e1131310ca188975f39948ab38f7e4485cb46d1f","impliedFormat":1},{"version":"9c90f502816bd0179556bb875e86c944af3f6b995cde63199edbe4e0b1219aba","impliedFormat":1},{"version":"97581dc7099ef3d844c83706d53a7ecf895c0e867fbf6b9dc035bb3080f677bd","impliedFormat":1},{"version":"e494b286c8e27c52f8c7f945aa80ff223f2a3cd4f7a2619fa8991f1459e26f07","impliedFormat":1},{"version":"f54f5f9e10bbceba7515dfad0ffc89dffdb8d749d0604594c57a725cf6d79c20","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"8c7e618c2a91ea7f6b5cca272a295864e92c16413be8fc56a943e8c7d5320011","affectsGlobalScope":true,"impliedFormat":1},{"version":"beabd75eab00f72e79feb85f6bbe81b549461a2c870674923c24a8d180d6cf07","impliedFormat":1},{"version":"9d37b8a9678efbcdf38238b59ce8e6f7db70aba1a516f3a4a671a301dbacfb3d","impliedFormat":1},{"version":"a47a792b8cff71443be8dfb199f2b77e102a7bf9d4f90c18059f05d9af2d7413","impliedFormat":1},{"version":"ad50512520720d10294c629cb4e2df23891c3fcbeaca00fbfb9e6bbea65f3dd6","impliedFormat":1},{"version":"22e77cc53de19959fdb4c4876e7bafd2f2a8cf8ead059abf7b299efe85f76251","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"ba389fd3d7fba6670e97bc82eb12469dcb371d22f24e63859c1df5a083c823ed","impliedFormat":1},{"version":"5ff4433a2deae4f85ab1377e90a7554ce6b47ae51c69a84ca30a6e22fae85834","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"97234c5303866576f913d0ccae7d58d6322d9e803c7bf1228a3fda46ab8087b2","affectsGlobalScope":true,"impliedFormat":1},{"version":"5336674547d832b901f47d5602c61dd4ba91796a4711235aa4aead3386ce05a4","impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"73eeb740dacc45adc607a4f59f90fa9dbe2717d93d82f115f45f34e18f8d644a","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"d251cda16f3f6a3e07f07c9e6e823ef6c583c63f653eb8777dafa749a78298e3","impliedFormat":1},{"version":"18b03a8395192811131170042d6af50c4292b0d708789dbf5bc805b6dd9f4c14","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"c0e37f7ba036ce58cb5aa6f416581afd3abe9b15c62bb801f1c10e862cb40b32","impliedFormat":1},{"version":"441b9bb09013654aa3d050e68b06464d8959b473e85868249d9d18f692acd35b","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"55246f15e33ff1e2e9e679b25fa9790a48db55dc63d567fe25fac8b6a0efe911","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"925734f303b7f0cc111d42aeb21781d38a79e6d5ac05b2b1400cd1861a75d27b","impliedFormat":1},{"version":"5b26c4dd672d88336bb929787c9bfb55119e80ba89ec6dc923da1c063892843e","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"b8e805bcd8cfb7986d2bcf5e785e34fdfe0cb2f31a89b585e2c9204513efa8cf","impliedFormat":1},{"version":"f12624a4a8d042b68914eac1b0a16571fc1c523173fcdf2517c65d191bd5a86c","impliedFormat":1},{"version":"cd2a656ba1d250c2002190b683e3826bf4362b6919450bc0f9bbf5612ebad837","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"441a29b18cc64c37fb196172ec1e499f60d5792edc89648e6cb550180c81050f","impliedFormat":1},{"version":"1ec3f3a5f04cc42df33274fbe5c0937d9a9e06f249a7a26288d7d54f0763ffd4","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"77c6da9644791cee637e5034370ae7b6ad04017599deb0786b1c8fd658cbb5cf","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"aed8f3e5c7e53462565eedf34a9bcb700393cb2c1ab0c768602b929c3ed3145d","impliedFormat":1},{"version":"8e2577e7262051fd3c5bd6ca2b2056d358ff8853565720f92455860824c25188","impliedFormat":1},{"version":"7ec8d7d483f7394f9da611b10d3a0e402f76ff5c991261e6ce43a15f81ca4258","impliedFormat":1},{"version":"bb9dbb4b2ad81e3e71ec5ba4314973718555b9d04ba2a17dfbf875efecb8e2c0","impliedFormat":1},{"version":"9021dc5be8f3a87af5cede29221188a6497e2092b6889e0be212ef6b6b7153e9","impliedFormat":1},{"version":"4a8c8fd951d9fd9e0775f0aae8ed1f8b528204e24a2600bea3a1228ea83de52c","impliedFormat":1},{"version":"32eccc272f35e34ff1c3d33d2c8d05e6821a6e95f648e118a5f4a0f3512895ac","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"632c45ccb4cdc2c3a80c7a36a63dd7763016e59cac5e07bfb3e37e3548957028","impliedFormat":1},{"version":"ec62d16f95636123624a69191a35b5df44b4b0a6428977e856c5739c0a787471","impliedFormat":1},{"version":"afa1c49f8e559e413d57343339db857d2a8159435cf9cf7d4deb41718fff1b88","impliedFormat":1},{"version":"c46f111af647c4134ae869653130610d62da321f90ebf19e186a3ea4bed79350","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"e1028394c1cf96d5d057ecc647e31e457b919092f882ed0c7092152b077fed9d","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1}],"root":[63],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":1,"noEmitOnError":true,"noImplicitAny":false,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"useDefineForClassFields":false},"referencedMap":[[192,1],[195,2],[194,1],[200,3],[127,4],[128,4],[129,5],[65,6],[130,7],[131,8],[132,9],[133,10],[134,11],[135,12],[136,13],[137,14],[138,15],[139,15],[140,16],[141,17],[142,1],[143,18],[144,19],[66,1],[64,1],[145,20],[146,21],[147,22],[191,23],[148,24],[149,25],[150,24],[151,26],[152,27],[154,28],[155,29],[156,29],[157,29],[158,30],[159,31],[160,32],[161,33],[162,34],[163,35],[164,35],[165,36],[166,1],[167,1],[168,37],[169,38],[170,39],[171,40],[172,41],[173,42],[174,43],[175,44],[176,45],[177,46],[178,47],[179,48],[180,49],[181,50],[182,51],[183,52],[184,53],[185,54],[186,55],[187,56],[67,24],[68,1],[69,57],[70,58],[71,1],[72,59],[73,1],[118,60],[119,61],[120,62],[121,62],[122,63],[123,1],[124,7],[125,64],[126,61],[188,65],[189,66],[190,67],[153,1],[193,1],[199,68],[197,69],[198,70],[196,71],[62,1],[60,1],[61,1],[10,1],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[22,1],[23,1],[4,1],[24,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[39,1],[36,1],[37,1],[38,1],[40,1],[7,1],[41,1],[46,1],[47,1],[42,1],[43,1],[44,1],[45,1],[8,1],[51,1],[48,1],[49,1],[50,1],[52,1],[9,1],[53,1],[54,1],[55,1],[57,1],[56,1],[1,1],[58,1],[59,1],[92,72],[106,73],[89,74],[107,75],[116,76],[80,77],[81,78],[79,79],[115,80],[110,81],[114,82],[83,83],[93,84],[103,85],[82,86],[113,87],[77,88],[78,81],[84,84],[85,1],[91,89],[88,84],[75,90],[117,91],[108,92],[96,93],[95,84],[97,94],[100,95],[94,96],[98,97],[111,80],[86,98],[87,99],[101,100],[76,75],[105,101],[104,84],[90,99],[99,102],[102,103],[109,1],[74,1],[112,104],[63,105]],"version":"5.9.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/figure-ui",
3
- "version": "10.1.3",
3
+ "version": "10.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "@things-factory:registry": "https://registry.npmjs.org"
@@ -29,13 +29,15 @@
29
29
  "@hatiolab/figure-model": "^0.1.12",
30
30
  "@hatiolab/things-scene": "^10.1.6",
31
31
  "@material/web": "^2.0.0",
32
+ "@operato/data-grist": "^10.0.0",
32
33
  "@operato/graphql": "^10.0.0",
33
34
  "@operato/i18n": "^10.0.0",
34
35
  "@operato/layout": "^10.0.0",
36
+ "@operato/p13n": "^10.0.0",
35
37
  "@operato/shell": "^10.0.0",
36
38
  "@operato/styles": "^10.0.0",
37
- "@things-factory/figure-service": "^10.1.3",
39
+ "@things-factory/figure-service": "^10.1.4",
38
40
  "three": "^0.185.1"
39
41
  },
40
- "gitHead": "8407b1e9d1f47f6676af144d4a33c8ac01cb49c4"
42
+ "gitHead": "d7e60939822ef18e5311311746b2abd28f169173"
41
43
  }
@@ -13,14 +13,17 @@
13
13
  "button.move-part-down": "move down",
14
14
  "button.move-part-up": "move up",
15
15
  "button.new-figure": "new figure",
16
+ "button.release": "release",
16
17
  "button.remove-part": "delete",
17
18
  "button.reset-view": "reset",
19
+ "button.revert": "revert",
18
20
  "button.save": "save",
19
21
  "button.see-the-trend-chart": "see the trend chart",
20
22
  "button.snap": "snap",
21
23
  "button.take-it": "apply",
22
24
  "button.take-n-changes": "apply {n}",
23
25
  "button.to-floor": "to floor",
26
+ "button.try-again": "try again",
24
27
  "label.all": "all",
25
28
  "label.axis-consistency": "visual consistency",
26
29
  "label.axis-consistency-short": "consistency",
@@ -45,6 +48,7 @@
45
48
  "label.budget-transparent": "transparent materials",
46
49
  "label.budgets": "budgets",
47
50
  "label.by-axis": "maturity by axis",
51
+ "label.capacity": "placement limit",
48
52
  "label.cast-shadow": "cast shadow",
49
53
  "label.coordinate-ground": "coordinate ground",
50
54
  "label.corner-round": "corner round",
@@ -68,12 +72,14 @@
68
72
  "label.environment-studio": "studio",
69
73
  "label.environment-sunny": "sunny",
70
74
  "label.environment-warehouse": "warehouse",
75
+ "label.figure": "figure",
71
76
  "label.findings": "findings",
72
77
  "label.flat-shading": "flat shading",
73
78
  "label.floor": "floor",
74
79
  "label.follow-camera": "follow camera",
75
80
  "label.guides": "guides",
76
81
  "label.hemisphere-light": "hemisphere light",
82
+ "label.history": "history",
77
83
  "label.hollow-floor": "floor thickness",
78
84
  "label.hollow-wall": "wall thickness",
79
85
  "label.intensity": "intensity",
@@ -109,7 +115,9 @@
109
115
  "label.primitive-wall": "wall",
110
116
  "label.properties": "properties",
111
117
  "label.proposed": "proposed",
118
+ "label.release": "release",
112
119
  "label.released": "released",
120
+ "label.released-versions": "released versions",
113
121
  "label.repeat-axis": "axis it repeats along",
114
122
  "label.repeat-pitch": "pitch",
115
123
  "label.reuse-trend": "reuse trend",
@@ -126,16 +134,19 @@
126
134
  "label.sizing-scale": "scales proportionally",
127
135
  "label.sizing-stretch": "stretches on one axis",
128
136
  "label.sky-color": "sky color",
137
+ "label.state": "state",
129
138
  "label.status-colors": "lit colors (lamps · indicators)",
130
139
  "label.tools": "align",
131
140
  "label.transparent": "transparent",
132
141
  "label.triangles": "triangles",
133
142
  "label.triangles-at-100": "triangles for 100",
134
143
  "label.triangles-at-10k": "triangles at 10k instances",
144
+ "label.type": "type",
135
145
  "label.view": "settings",
136
146
  "label.weight": "weight",
137
147
  "text.add-a-shape": "click to add a part",
138
148
  "text.all-lights-off": "both lights are off. only self-lit surfaces show; everything else goes black — this is how you check whether a lamp is lit.",
149
+ "text.already-released-edit-to-release-again": "already released. edit and save to go back to draft, then release again.",
139
150
  "text.ask-create-example": "e.g. a three-tier conveyor sorter",
140
151
  "text.ask-revise-example": "e.g. bring it down to two material groups",
141
152
  "text.ask-to-create": "create",
@@ -159,6 +170,7 @@
159
170
  "text.collapse-parts-pane": "collapse the part list",
160
171
  "text.collapse-properties-pane": "collapse the property pane",
161
172
  "text.coordinate-ground-explained": "draws the origin and a grid on the floor",
173
+ "text.could-not-load-figures": "could not load the figures",
162
174
  "text.delete-figure-confirm": "delete {name}? boards already using this type will no longer find it.",
163
175
  "text.detail-level-explained": "declares how detailed this figure is meant to be. S simple suits signs and posts, M normal suits most equipment, L detailed suits the large equipment a view is built around. the level sets the part limit, and maturity checks whether the figure lives up to it.",
164
176
  "text.editing-tools-come-next": "the shape palette and part editor are not built yet — for now you can open, review and save.",
@@ -207,6 +219,7 @@
207
219
  "text.no-findings": "nothing to report.",
208
220
  "text.not-measurable-yet": "not measurable",
209
221
  "text.not-measured-yet": "not measured",
222
+ "text.nothing-released-yet": "nothing released yet. releasing keeps the figure as it is now, as a version.",
210
223
  "text.on-by-default-explained": "the starting state when placed on a board. an instance switching it wins.",
211
224
  "text.other-segment-count": "enter a value",
212
225
  "text.part-limit-reached": "the detail level allows no more parts — raise the level or remove a part.",
@@ -217,11 +230,15 @@
217
230
  "text.preview-blocked-by-errors": "cannot build — the figure breaks the format. the maturity tab has the reason.",
218
231
  "text.preview-needs-a-part": "add a part and the board view appears here.",
219
232
  "text.put-on-floor": "drop it to the floor (Z=0).",
233
+ "text.release-needs-a-save-first": "there are unsaved changes. a release publishes what was saved, so save first.",
234
+ "text.releasing": "releasing…",
220
235
  "text.renaming-a-part-breaks-bindings": "the name is a stored identifier — changing it breaks bindings on instances already placed.",
221
236
  "text.repeat-edits-the-unit": "you author one unit even though several appear. the gizmo moves the whole run, while size and rotation apply to that one unit — the pitch is declared separately so the layout stays. a single copy cannot be edited on its own.",
222
237
  "text.repeat-pitch-explained": "centre to centre distance. it does not depend on the part size, so widening or turning the part leaves the layout alone.",
223
238
  "text.report-appears-when-you-add-a-part": "weight and score appear once the figure has a part.",
224
239
  "text.reuse-score-explained": "how much headroom is left in the declared limits. the one closest to its cap sets the score.",
240
+ "text.revert-to-version-confirm": "revert to v{version}? what you are working on will be replaced by that version.",
241
+ "text.save-the-figure-before-releasing": "this figure has not been saved yet. save it and you can release it.",
225
242
  "text.saving": "saving",
226
243
  "text.search-figure-by-name-or-type": "search by name or type",
227
244
  "text.select-a-part-to-edit": "select a part to edit it here.",
@@ -240,8 +257,10 @@
240
257
  "text.type-name-already-taken": "the type name {type} is already in use. pick another one — it cannot be changed later.",
241
258
  "text.type-name-cannot-change": "the type name is a stored identifier and cannot be changed after creation.",
242
259
  "text.unsaved-changes": "unsaved",
260
+ "text.version-number": "v{version}",
243
261
  "text.view-settings-are-not-saved": "these settings are not saved. they make the view comfortable to work in and do not travel with the asset.",
244
262
  "text.what-a-figure-is": "a Figure is a 3D component you author. Compose it from simple shapes and it becomes a component you can place on a board, sharing shape and material across every instance.",
263
+ "text.what-changed-in-this-release": "what changed in this release",
245
264
  "title.figures": "figures",
246
265
  "title.new-figure": "new figure"
247
266
  }
@@ -13,14 +13,17 @@
13
13
  "button.move-part-down": "move down",
14
14
  "button.move-part-up": "move up",
15
15
  "button.new-figure": "new figure",
16
+ "button.release": "公開する",
16
17
  "button.remove-part": "delete",
17
18
  "button.reset-view": "reset",
19
+ "button.revert": "戻す",
18
20
  "button.save": "save",
19
21
  "button.see-the-trend-chart": "see the trend chart",
20
22
  "button.snap": "snap",
21
23
  "button.take-it": "apply",
22
24
  "button.take-n-changes": "apply {n}",
23
25
  "button.to-floor": "to floor",
26
+ "button.try-again": "再試行",
24
27
  "label.all": "all",
25
28
  "label.axis-consistency": "visual consistency",
26
29
  "label.axis-consistency-short": "consistency",
@@ -45,6 +48,7 @@
45
48
  "label.budget-transparent": "transparent materials",
46
49
  "label.budgets": "budgets",
47
50
  "label.by-axis": "maturity by axis",
51
+ "label.capacity": "配置上限",
48
52
  "label.cast-shadow": "cast shadow",
49
53
  "label.coordinate-ground": "coordinate ground",
50
54
  "label.corner-round": "corner round",
@@ -54,7 +58,7 @@
54
58
  "label.detail-level": "detail level",
55
59
  "label.distinct-materials": "distinct materials",
56
60
  "label.distinct-shapes": "distinct shapes",
57
- "label.draft": "draft",
61
+ "label.draft": "下書き",
58
62
  "label.draw-calls-at-100": "draw calls for 100",
59
63
  "label.draw-calls-at-10k": "draw calls at 10k instances",
60
64
  "label.emissive": "emissive",
@@ -68,12 +72,14 @@
68
72
  "label.environment-studio": "studio",
69
73
  "label.environment-sunny": "sunny",
70
74
  "label.environment-warehouse": "warehouse",
75
+ "label.figure": "フィギュア",
71
76
  "label.findings": "findings",
72
77
  "label.flat-shading": "flat shading",
73
78
  "label.floor": "floor",
74
79
  "label.follow-camera": "follow camera",
75
80
  "label.guides": "guides",
76
81
  "label.hemisphere-light": "hemisphere light",
82
+ "label.history": "履歴",
77
83
  "label.hollow-floor": "floor thickness",
78
84
  "label.hollow-wall": "wall thickness",
79
85
  "label.intensity": "intensity",
@@ -109,7 +115,9 @@
109
115
  "label.primitive-wall": "wall",
110
116
  "label.properties": "properties",
111
117
  "label.proposed": "proposed",
112
- "label.released": "released",
118
+ "label.release": "公開",
119
+ "label.released": "公開済み",
120
+ "label.released-versions": "公開された版",
113
121
  "label.repeat-axis": "axis it repeats along",
114
122
  "label.repeat-pitch": "pitch",
115
123
  "label.reuse-trend": "reuse trend",
@@ -126,16 +134,19 @@
126
134
  "label.sizing-scale": "scales proportionally",
127
135
  "label.sizing-stretch": "stretches on one axis",
128
136
  "label.sky-color": "sky color",
137
+ "label.state": "状態",
129
138
  "label.status-colors": "lit colors (lamps · indicators)",
130
139
  "label.tools": "align",
131
140
  "label.transparent": "transparent",
132
141
  "label.triangles": "triangles",
133
142
  "label.triangles-at-100": "triangles for 100",
134
143
  "label.triangles-at-10k": "triangles at 10k instances",
144
+ "label.type": "タイプ",
135
145
  "label.view": "settings",
136
146
  "label.weight": "weight",
137
147
  "text.add-a-shape": "click to add a part",
138
148
  "text.all-lights-off": "both lights are off. only self-lit surfaces show; everything else goes black — this is how you check whether a lamp is lit.",
149
+ "text.already-released-edit-to-release-again": "すでに公開済みです。修正して保存すると下書きに戻り、そこで再び公開できます。",
139
150
  "text.ask-create-example": "e.g. a three-tier conveyor sorter",
140
151
  "text.ask-revise-example": "e.g. bring it down to two material groups",
141
152
  "text.ask-to-create": "create",
@@ -159,6 +170,7 @@
159
170
  "text.collapse-parts-pane": "collapse the part list",
160
171
  "text.collapse-properties-pane": "collapse the property pane",
161
172
  "text.coordinate-ground-explained": "draws the origin and a grid on the floor",
173
+ "text.could-not-load-figures": "一覧を読み込めませんでした",
162
174
  "text.delete-figure-confirm": "delete {name}? boards already using this type will no longer find it.",
163
175
  "text.detail-level-explained": "declares how detailed this figure is meant to be. S simple suits signs and posts, M normal suits most equipment, L detailed suits the large equipment a view is built around. the level sets the part limit, and maturity checks whether the figure lives up to it.",
164
176
  "text.editing-tools-come-next": "the shape palette and part editor are not built yet — for now you can open, review and save.",
@@ -207,6 +219,7 @@
207
219
  "text.no-findings": "nothing to report.",
208
220
  "text.not-measurable-yet": "not measurable",
209
221
  "text.not-measured-yet": "not measured",
222
+ "text.nothing-released-yet": "まだ公開した版がありません。公開すると、その時点のフィギュアが版として残ります。",
210
223
  "text.on-by-default-explained": "the starting state when placed on a board. an instance switching it wins.",
211
224
  "text.other-segment-count": "enter a value",
212
225
  "text.part-limit-reached": "the detail level allows no more parts — raise the level or remove a part.",
@@ -217,11 +230,15 @@
217
230
  "text.preview-blocked-by-errors": "cannot build — the figure breaks the format. the maturity tab has the reason.",
218
231
  "text.preview-needs-a-part": "add a part and the board view appears here.",
219
232
  "text.put-on-floor": "drop it to the floor (Z=0).",
233
+ "text.release-needs-a-save-first": "保存していない変更があります。公開は保存されたものを出すので、先に保存してください。",
234
+ "text.releasing": "公開しています…",
220
235
  "text.renaming-a-part-breaks-bindings": "the name is a stored identifier — changing it breaks bindings on instances already placed.",
221
236
  "text.repeat-edits-the-unit": "you author one unit even though several appear. the gizmo moves the whole run, while size and rotation apply to that one unit — the pitch is declared separately so the layout stays. a single copy cannot be edited on its own.",
222
237
  "text.repeat-pitch-explained": "centre to centre distance. it does not depend on the part size, so widening or turning the part leaves the layout alone.",
223
238
  "text.report-appears-when-you-add-a-part": "weight and score appear once the figure has a part.",
224
239
  "text.reuse-score-explained": "how much headroom is left in the declared limits. the one closest to its cap sets the score.",
240
+ "text.revert-to-version-confirm": "第{version}版に戻します。作業中の内容がその版のものに変わります。続けますか?",
241
+ "text.save-the-figure-before-releasing": "まだ保存されていません。保存すると公開できます。",
225
242
  "text.saving": "saving",
226
243
  "text.search-figure-by-name-or-type": "search by name or type",
227
244
  "text.select-a-part-to-edit": "select a part to edit it here.",
@@ -240,8 +257,10 @@
240
257
  "text.type-name-already-taken": "the type name {type} is already in use. pick another one — it cannot be changed later.",
241
258
  "text.type-name-cannot-change": "the type name is a stored identifier and cannot be changed after creation.",
242
259
  "text.unsaved-changes": "unsaved",
260
+ "text.version-number": "第{version}版",
243
261
  "text.view-settings-are-not-saved": "these settings are not saved. they make the view comfortable to work in and do not travel with the asset.",
244
262
  "text.what-a-figure-is": "a Figure is a 3D component you author. Compose it from simple shapes and it becomes a component you can place on a board, sharing shape and material across every instance.",
263
+ "text.what-changed-in-this-release": "この版で何が変わったか",
245
264
  "title.figures": "figures",
246
265
  "title.new-figure": "new figure"
247
266
  }
@@ -13,14 +13,17 @@
13
13
  "button.move-part-down": "아래로",
14
14
  "button.move-part-up": "위로",
15
15
  "button.new-figure": "새 Figure",
16
+ "button.release": "발행하기",
16
17
  "button.remove-part": "삭제",
17
18
  "button.reset-view": "처음으로",
19
+ "button.revert": "되돌리기",
18
20
  "button.save": "저장",
19
21
  "button.see-the-trend-chart": "추이 그래프 보기",
20
22
  "button.snap": "눈금에",
21
23
  "button.take-it": "적용",
22
24
  "button.take-n-changes": "{n}개 적용",
23
25
  "button.to-floor": "바닥에",
26
+ "button.try-again": "다시 시도",
24
27
  "label.all": "전체",
25
28
  "label.axis-consistency": "표현 일관성",
26
29
  "label.axis-consistency-short": "일관성",
@@ -45,6 +48,7 @@
45
48
  "label.budget-transparent": "투명 재질",
46
49
  "label.budgets": "한도",
47
50
  "label.by-axis": "축별 성숙도",
51
+ "label.capacity": "배치 한도",
48
52
  "label.cast-shadow": "그림자 드리우기",
49
53
  "label.coordinate-ground": "좌표 바탕",
50
54
  "label.corner-round": "모서리 굴림",
@@ -54,7 +58,7 @@
54
58
  "label.detail-level": "디테일 등급",
55
59
  "label.distinct-materials": "서로 다른 재질",
56
60
  "label.distinct-shapes": "서로 다른 형상",
57
- "label.draft": "작성 중",
61
+ "label.draft": "초안",
58
62
  "label.draw-calls-at-100": "100개 기준 draw call",
59
63
  "label.draw-calls-at-10k": "1만개 기준 draw call",
60
64
  "label.emissive": "자체발광",
@@ -68,12 +72,14 @@
68
72
  "label.environment-studio": "스튜디오",
69
73
  "label.environment-sunny": "맑음",
70
74
  "label.environment-warehouse": "창고",
75
+ "label.figure": "도형",
71
76
  "label.findings": "확인할 점",
72
77
  "label.flat-shading": "각진 면",
73
78
  "label.floor": "바닥",
74
79
  "label.follow-camera": "카메라 따라가기",
75
80
  "label.guides": "안내선",
76
81
  "label.hemisphere-light": "헤미스피어 라이트",
82
+ "label.history": "이력",
77
83
  "label.hollow-floor": "바닥 두께",
78
84
  "label.hollow-wall": "벽 두께",
79
85
  "label.intensity": "세기",
@@ -109,7 +115,9 @@
109
115
  "label.primitive-wall": "벽",
110
116
  "label.properties": "속성",
111
117
  "label.proposed": "제안",
112
- "label.released": "배포됨",
118
+ "label.release": "발행",
119
+ "label.released": "발행됨",
120
+ "label.released-versions": "발행된 판",
113
121
  "label.repeat-axis": "늘어나는 축",
114
122
  "label.repeat-pitch": "한 칸 (피치)",
115
123
  "label.reuse-trend": "재사용 추이",
@@ -126,16 +134,19 @@
126
134
  "label.sizing-scale": "비례 확대",
127
135
  "label.sizing-stretch": "한 축만 늘임",
128
136
  "label.sky-color": "배경색",
137
+ "label.state": "상태",
129
138
  "label.status-colors": "켜진 색 (램프 · 표시등)",
130
139
  "label.tools": "맞추기",
131
140
  "label.transparent": "투명",
132
141
  "label.triangles": "삼각형",
133
142
  "label.triangles-at-100": "100개 기준 삼각형",
134
143
  "label.triangles-at-10k": "1만개 기준 삼각형",
144
+ "label.type": "타입",
135
145
  "label.view": "설정",
136
146
  "label.weight": "무게",
137
147
  "text.add-a-shape": "클릭하면 부품이 추가됩니다",
138
148
  "text.all-lights-off": "빛이 둘 다 꺼져 있습니다. 스스로 빛나는 면만 보이고 나머지는 까맣게 나옵니다 — 램프가 켜졌는지 확인할 때 쓰는 상태입니다.",
149
+ "text.already-released-edit-to-release-again": "이미 발행되어 있습니다. 고쳐서 저장하면 초안으로 돌아가고, 그때 다시 발행할 수 있습니다.",
139
150
  "text.ask-create-example": "예: 3단 선반형 컨베이어 소터",
140
151
  "text.ask-revise-example": "예: 재질 묶음을 2개로 줄여줘",
141
152
  "text.ask-to-create": "신규",
@@ -159,6 +170,7 @@
159
170
  "text.collapse-parts-pane": "부품 목록 접기",
160
171
  "text.collapse-properties-pane": "속성 칸 접기",
161
172
  "text.coordinate-ground-explained": "원점과 눈금을 바닥에 그린다",
173
+ "text.could-not-load-figures": "목록을 불러오지 못했습니다",
162
174
  "text.delete-figure-confirm": "{name} 을 삭제하시겠습니까? 이 타입을 쓰고 있는 보드는 더 이상 찾지 못합니다.",
163
175
  "text.detail-level-explained": "이 형상을 얼마나 상세하게 만들 것인지 밝히는 값입니다. S 단순은 표지나 기둥처럼 형태가 단순한 것, M 보통은 대부분의 설비, L 상세는 화면의 주역이 되는 큰 설비에 씁니다. 밝힌 등급이 부품 수 한도를 정하고, 성숙도가 그 등급에 걸맞게 만들어졌는지 봅니다.",
164
176
  "text.editing-tools-come-next": "도형 팔레트와 부품 편집기는 아직 없습니다. 현재는 열어서 확인하고 저장할 수 있습니다.",
@@ -207,6 +219,7 @@
207
219
  "text.no-findings": "확인할 점이 없습니다.",
208
220
  "text.not-measurable-yet": "측정 불가",
209
221
  "text.not-measured-yet": "미측정",
222
+ "text.nothing-released-yet": "아직 발행한 판이 없습니다. 발행하면 그때의 도형이 판으로 남습니다.",
210
223
  "text.on-by-default-explained": "보드에 놓았을 때의 처음 상태입니다. 인스턴스가 켜고 끄면 그것이 이깁니다.",
211
224
  "text.other-segment-count": "직접 입력",
212
225
  "text.part-limit-reached": "디테일 등급이 허용하는 부품 수를 모두 사용했습니다. 등급을 올리거나 부품을 삭제하세요.",
@@ -217,11 +230,15 @@
217
230
  "text.preview-blocked-by-errors": "형식을 어겨서 세울 수 없습니다. 성숙도 탭에 사유가 있습니다.",
218
231
  "text.preview-needs-a-part": "부품이 하나라도 있으면 여기에 보드에 놓인 모습이 나옵니다.",
219
232
  "text.put-on-floor": "바닥(Z=0)에 붙입니다.",
233
+ "text.release-needs-a-save-first": "저장하지 않은 변경이 있습니다. 발행은 저장된 것을 내보내므로, 먼저 저장하세요.",
234
+ "text.releasing": "발행하고 있습니다…",
220
235
  "text.renaming-a-part-breaks-bindings": "이름은 저장되는 식별자입니다. 바꾸면 이미 배치된 인스턴스의 바인딩이 끊깁니다.",
221
236
  "text.repeat-edits-the-unit": "화면에 여럿으로 보여도 저작하는 것은 하나입니다. 기즈모로 옮기면 줄 전체가 움직이고, 크기와 회전은 그 하나에만 걸립니다 — 한 칸은 따로 정하므로 배치는 그대로입니다. 사본 하나만 따로 고칠 수는 없습니다. 가운데를 비우거나 하나만 색을 달리하려면 그 부품을 따로 놓아야 합니다.",
222
237
  "text.repeat-pitch-explained": "중심에서 다음 중심까지의 거리입니다. 부품 크기와 무관해서, 부품을 굵게 하거나 돌려도 배치가 그대로입니다.",
223
238
  "text.report-appears-when-you-add-a-part": "부품이 하나라도 있으면 무게와 점수가 나옵니다.",
224
239
  "text.reuse-score-explained": "정해진 한도에 얼마나 여유가 남았는지입니다. 한도에 가장 가까운 항목 하나가 점수를 정합니다.",
240
+ "text.revert-to-version-confirm": "{version}판으로 되돌립니다. 지금 저작 중인 내용이 그 판의 것으로 바뀝니다. 계속할까요?",
241
+ "text.save-the-figure-before-releasing": "아직 저장되지 않은 도형입니다. 저장하면 발행할 수 있습니다.",
225
242
  "text.saving": "저장 중",
226
243
  "text.search-figure-by-name-or-type": "이름이나 타입으로 찾기",
227
244
  "text.select-a-part-to-edit": "부품을 선택하면 여기에서 편집합니다.",
@@ -240,8 +257,10 @@
240
257
  "text.type-name-already-taken": "타입 이름 {type} 은 이미 쓰이고 있습니다. 나중에 바꿀 수 없으니 다른 이름을 정해 주세요.",
241
258
  "text.type-name-cannot-change": "타입 이름은 저장되는 식별자여서 만든 뒤에는 바꿀 수 없습니다.",
242
259
  "text.unsaved-changes": "저장 안 됨",
260
+ "text.version-number": "{version}판",
243
261
  "text.view-settings-are-not-saved": "여기 설정은 저장되지 않습니다. 보기 편한 상태를 만드는 곳이고, 자산에는 딸려 가지 않습니다.",
244
262
  "text.what-a-figure-is": "Figure 는 직접 저작한 3D 컴포넌트입니다. 단순한 도형을 조합해 만들면 보드에 배치할 수 있는 컴포넌트가 되고, 여러 개를 배치해도 형상과 재질을 공유합니다.",
263
+ "text.what-changed-in-this-release": "이번 판에서 무엇이 달라졌는지",
245
264
  "title.figures": "Figure",
246
265
  "title.new-figure": "새 Figure"
247
266
  }