pi-apexlang 0.1.0

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 (797) hide show
  1. package/LICENSE +35 -0
  2. package/README.md +159 -0
  3. package/THIRD_PARTY_NOTICES.md +15 -0
  4. package/UPSTREAM.json +8 -0
  5. package/extensions/apexlang/index.ts +426 -0
  6. package/extensions/lib/apexlang-cli.d.mts +111 -0
  7. package/extensions/lib/apexlang-cli.mjs +810 -0
  8. package/package.json +64 -0
  9. package/skills/apexlang/README.md +105 -0
  10. package/skills/apexlang/RELEASE-NOTES.md +3 -0
  11. package/skills/apexlang/SKILL.md +77 -0
  12. package/skills/apexlang/agents/openai.yaml +3 -0
  13. package/skills/apexlang/assets/apex-generation/components.registry.json +2340 -0
  14. package/skills/apexlang/assets/apexlang/domains-catalog.json +136 -0
  15. package/skills/apexlang/assets/component-attributes.json +1422 -0
  16. package/skills/apexlang/assets/component-policies.json +530 -0
  17. package/skills/apexlang/assets/context-adapters.json +109 -0
  18. package/skills/apexlang/assets/context-schema.json +28 -0
  19. package/skills/apexlang/assets/domains/business-logic/computations-prompt.md +32 -0
  20. package/skills/apexlang/assets/domains/business-logic/validations-prompt.md +30 -0
  21. package/skills/apexlang/assets/domains/page-components/buttons/button-actions.md +19 -0
  22. package/skills/apexlang/assets/domains/page-components/buttons/buttons.md +17 -0
  23. package/skills/apexlang/assets/domains/page-components/page-patterns/server-side-conditions-prompt.md +141 -0
  24. package/skills/apexlang/assets/domains/shared-components/translations/default-config.json +19 -0
  25. package/skills/apexlang/assets/domains/shared-components/translations/languages.json +147 -0
  26. package/skills/apexlang/assets/domains/shared-components/translations/prompts.json +29 -0
  27. package/skills/apexlang/assets/domains/template-components/button-actions-prompt.md +18 -0
  28. package/skills/apexlang/assets/domains/template-components/help-text-prompt.md +73 -0
  29. package/skills/apexlang/assets/domains/universal-attr-config/help_text.md +73 -0
  30. package/skills/apexlang/assets/domains/universal-attr-config/translations.prompts.json +29 -0
  31. package/skills/apexlang/assets/orchestration.manifest.json +18 -0
  32. package/skills/apexlang/assets/routing-assets-index.json +36 -0
  33. package/skills/apexlang/assets/routing-catalog-main.json +179 -0
  34. package/skills/apexlang/assets/routing-load-policy.json +88 -0
  35. package/skills/apexlang/assets/rules-mapping.json +777 -0
  36. package/skills/apexlang/assets/validator-fix-recipes.json +503 -0
  37. package/skills/apexlang/assets/workspace-intelligence.json +179 -0
  38. package/skills/apexlang/manifest.json +3269 -0
  39. package/skills/apexlang/references/domains/README.md +565 -0
  40. package/skills/apexlang/references/domains/business-logic/computations/workflow-computations-batch.md +40 -0
  41. package/skills/apexlang/references/domains/business-logic/dynamic-actions/workflow-dynamic-actions-batch.md +46 -0
  42. package/skills/apexlang/references/domains/business-logic/dynamic-actions/workflow-dynamic-actions-plsql-batch.md +35 -0
  43. package/skills/apexlang/references/domains/business-logic/dynamic-actions/workflow-dynamic-actions.md +45 -0
  44. package/skills/apexlang/references/domains/business-logic/processes/workflow-page-processes-batch.md +45 -0
  45. package/skills/apexlang/references/domains/business-logic/registry.md +10 -0
  46. package/skills/apexlang/references/domains/business-logic/reusable-prompts/computations.md +30 -0
  47. package/skills/apexlang/references/domains/business-logic/reusable-prompts/validations.md +30 -0
  48. package/skills/apexlang/references/domains/business-logic/templates.md +26 -0
  49. package/skills/apexlang/references/domains/business-logic/validations/README.md +25 -0
  50. package/skills/apexlang/references/domains/debugging/apex-debug-messages.md +161 -0
  51. package/skills/apexlang/references/domains/debugging/checks-and-commands.md +177 -0
  52. package/skills/apexlang/references/domains/debugging/example-scenarios.md +101 -0
  53. package/skills/apexlang/references/domains/debugging/failure-map.md +40 -0
  54. package/skills/apexlang/references/domains/debugging/fix-patterns.md +66 -0
  55. package/skills/apexlang/references/domains/debugging/owning-surfaces.md +37 -0
  56. package/skills/apexlang/references/domains/debugging/runtime-ui-verification.md +60 -0
  57. package/skills/apexlang/references/domains/page-components/business-logic.md +5 -0
  58. package/skills/apexlang/references/domains/page-components/buttons/registry.md +14 -0
  59. package/skills/apexlang/references/domains/page-components/buttons/reusable-prompts.md +11 -0
  60. package/skills/apexlang/references/domains/page-components/buttons/templates.md +25 -0
  61. package/skills/apexlang/references/domains/page-components/buttons/workflow-button-actions-batch.md +44 -0
  62. package/skills/apexlang/references/domains/page-components/buttons/workflow-button-batch.md +58 -0
  63. package/skills/apexlang/references/domains/page-components/buttons.md +67 -0
  64. package/skills/apexlang/references/domains/page-components/page-items/registry.md +23 -0
  65. package/skills/apexlang/references/domains/page-components/page-items/templates.md +37 -0
  66. package/skills/apexlang/references/domains/page-components/page-items.md +68 -0
  67. package/skills/apexlang/references/domains/page-components/page-patterns/registry.md +11 -0
  68. package/skills/apexlang/references/domains/page-components/page-patterns/templates.md +35 -0
  69. package/skills/apexlang/references/domains/page-components/page-patterns.md +119 -0
  70. package/skills/apexlang/references/domains/page-components/regions/calendar/workflow-calendar-link-targets.md +39 -0
  71. package/skills/apexlang/references/domains/page-components/regions/chart/workflow-charts.md +30 -0
  72. package/skills/apexlang/references/domains/page-components/regions/dashboard/workflow-dashboard.md +51 -0
  73. package/skills/apexlang/references/domains/page-components/regions/form/workflow-modal-crud-form.md +46 -0
  74. package/skills/apexlang/references/domains/page-components/regions/interactive-report/workflow-interactive-report.md +56 -0
  75. package/skills/apexlang/references/domains/page-components/regions/registry.md +16 -0
  76. package/skills/apexlang/references/domains/page-components/regions/templates.md +47 -0
  77. package/skills/apexlang/references/domains/page-components/regions.md +170 -0
  78. package/skills/apexlang/references/domains/page-components/screenshot-to-layout/component-mapping.md +119 -0
  79. package/skills/apexlang/references/domains/page-components/screenshot-to-layout/workflow.md +95 -0
  80. package/skills/apexlang/references/domains/page-components/screenshot-to-layout.md +204 -0
  81. package/skills/apexlang/references/domains/shared-components/reusable-prompts/translations.md +40 -0
  82. package/skills/apexlang/references/domains/shared-components/templates.md +58 -0
  83. package/skills/apexlang/references/domains/shared-components/workflow-translations-batch.md +82 -0
  84. package/skills/apexlang/references/domains/shared-components/workflow-translations.md +72 -0
  85. package/skills/apexlang/references/domains/template-components/registry.md +13 -0
  86. package/skills/apexlang/references/domains/template-components/templates.md +29 -0
  87. package/skills/apexlang/references/domains/template-components/workflow-items-templates.md +37 -0
  88. package/skills/apexlang/references/domains/universal-attr-config/reusable-prompts/help_text.md +22 -0
  89. package/skills/apexlang/references/domains/universal-attr-config/templates.md +16 -0
  90. package/skills/apexlang/references/domains/universal-attr-config/workflow-help-text-batch.md +48 -0
  91. package/skills/apexlang/references/domains/universal-attr-config/workflow-page-sequencing.md +18 -0
  92. package/skills/apexlang/references/domains/universal-attr-config/workflow-server-side-conditions-batch.md +42 -0
  93. package/skills/apexlang/references/ops/one-message-router-contract.md +97 -0
  94. package/skills/apexlang/references/ops/reusable-prompts/orchestration-master-generic.md +21 -0
  95. package/skills/apexlang/references/ops/reusable-prompts/server-side-conditions.md +80 -0
  96. package/skills/apexlang/references/ops/runtime-gates/01-direct-sqlcl-import.md +53 -0
  97. package/skills/apexlang/references/ops/runtime-gates/02-direct-sqlcl-validate-gate.md +77 -0
  98. package/skills/apexlang/references/ops/runtime-gates.md +104 -0
  99. package/skills/apexlang/references/ops/shared-reference-index.md +16 -0
  100. package/skills/apexlang/references/ops/sqlcl-agents/00-connection-gate.md +59 -0
  101. package/skills/apexlang/references/ops/sqlcl.md +109 -0
  102. package/skills/apexlang/references/policies/apexlang-dsl-reference.md +136 -0
  103. package/skills/apexlang/references/policies/compiler-prop-map.md +41 -0
  104. package/skills/apexlang/references/policies/context-overview.md +78 -0
  105. package/skills/apexlang/references/policies/governance/00-governance.md +160 -0
  106. package/skills/apexlang/references/policies/governance/apex-spec-standards.md +118 -0
  107. package/skills/apexlang/references/policies/governance/prompt-normalization.md +23 -0
  108. package/skills/apexlang/references/policies/memory-bank/00-guard/ai.guard.md +935 -0
  109. package/skills/apexlang/references/policies/memory-bank/10-global/apex.acronyms.md +10 -0
  110. package/skills/apexlang/references/policies/memory-bank/10-global/apex.global.md +177 -0
  111. package/skills/apexlang/references/policies/memory-bank/20-data/apex.logic.md +499 -0
  112. package/skills/apexlang/references/policies/memory-bank/20-data/apex.schema-modeling.md +180 -0
  113. package/skills/apexlang/references/policies/memory-bank/20-data/apex.sql.md +215 -0
  114. package/skills/apexlang/references/policies/memory-bank/20-data/db.connection.md +93 -0
  115. package/skills/apexlang/references/policies/memory-bank/20-data/utplsql.rules.md +44 -0
  116. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.blank-page.md +13 -0
  117. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.calendar.md +35 -0
  118. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.chart-page.md +47 -0
  119. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.classic-report.md +65 -0
  120. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.dashboard.md +245 -0
  121. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.faceted-search.md +61 -0
  122. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.form.md +166 -0
  123. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.interactive-grid-page.md +51 -0
  124. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.interactive-report.md +71 -0
  125. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.layout.md +135 -0
  126. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.login-page.md +24 -0
  127. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.map-page.md +29 -0
  128. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.page.md +239 -0
  129. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.report-column-rendering.md +58 -0
  130. package/skills/apexlang/references/policies/memory-bank/30-pages/apex.smart-filter-search.md +107 -0
  131. package/skills/apexlang/references/policies/memory-bank/40-components/README.md +73 -0
  132. package/skills/apexlang/references/policies/memory-bank/40-components/apex.buttons.md +346 -0
  133. package/skills/apexlang/references/policies/memory-bank/40-components/apex.items.md +154 -0
  134. package/skills/apexlang/references/policies/memory-bank/40-components/apex.region-contracts.md +26 -0
  135. package/skills/apexlang/references/policies/memory-bank/40-components/apex.region-data-source.md +25 -0
  136. package/skills/apexlang/references/policies/memory-bank/40-components/apex.region-interactions.md +43 -0
  137. package/skills/apexlang/references/policies/memory-bank/40-components/apex.region-media.md +31 -0
  138. package/skills/apexlang/references/policies/memory-bank/40-components/apex.templates.md +240 -0
  139. package/skills/apexlang/references/policies/memory-bank/systemPatterns.md +70 -0
  140. package/skills/apexlang/references/workflows/apex-generation/agents/20-agent-draft.md +264 -0
  141. package/skills/apexlang/references/workflows/apex-generation/agents/30-agent-critique.md +472 -0
  142. package/skills/apexlang/references/workflows/apex-generation/agents/40-agent-revision.md +255 -0
  143. package/skills/apexlang/references/workflows/apex-generation/apexlang-skeleton-prompt.md +288 -0
  144. package/skills/apexlang/references/workflows/apex-generation/nlu/nlu-routing-test-matrix.md +264 -0
  145. package/skills/apexlang/references/workflows/apex-generation/nlu/nlu-routing-validation-notes.md +171 -0
  146. package/skills/apexlang/references/workflows/apex-generation/registry.md +14 -0
  147. package/skills/apexlang/references/workflows/apex-generation/templates.md +49 -0
  148. package/skills/apexlang/references/workflows/apex-generation/workflow-manifests/apex-generation-agent-suite.md +40 -0
  149. package/skills/apexlang/references/workflows/apex-generation/workflow-manifests/apex-generation-master-workflow.md +38 -0
  150. package/skills/apexlang/references/workflows/apex-generation.md +65 -0
  151. package/skills/apexlang/references/workflows/apexlang/apexlang-execution-model.md +53 -0
  152. package/skills/apexlang/references/workflows/apexlang/application-spec.template.md +370 -0
  153. package/skills/apexlang/references/workflows/apexlang/prompt-contracts.md +590 -0
  154. package/skills/apexlang/references/workflows/apexlang/workflow-create-app-from-fr-and-model.md +94 -0
  155. package/skills/apexlang/release-notes.html +710 -0
  156. package/skills/apexlang/release-notes.json +173 -0
  157. package/skills/apexlang/runtime/internal/python/validate_apexlang.py +9520 -0
  158. package/skills/apexlang/runtime/internal/python/validate_apexlang_vocab.py +281 -0
  159. package/skills/apexlang/runtime/internal/python/validate_validations.py +289 -0
  160. package/skills/apexlang/runtime/internal/python/validator_common.py +149 -0
  161. package/skills/apexlang/runtime/lib/common.mjs +340 -0
  162. package/skills/apexlang/runtime/runtime.bundle.mjs +5052 -0
  163. package/skills/apexlang/runtime/runtime_resolution.mjs +234 -0
  164. package/skills/apexlang/runtime/sqlcl_preflight.mjs +277 -0
  165. package/skills/apexlang/templates/README.md +72 -0
  166. package/skills/apexlang/templates/_common_variables.template.md +27 -0
  167. package/skills/apexlang/templates/base-app-structure/README.md +121 -0
  168. package/skills/apexlang/templates/base-app-structure/base-app-runtime-seed.manifest.json +43 -0
  169. package/skills/apexlang/templates/base-app-structure/base-app-structure._common.md +267 -0
  170. package/skills/apexlang/templates/base-app-structure/base-app-structure._index.md +26 -0
  171. package/skills/apexlang/templates/base-app-structure/base-app-structure.registry.json +39 -0
  172. package/skills/apexlang/templates/base-app-structure/scaffold-example/.apex/apexlang.json +3 -0
  173. package/skills/apexlang/templates/base-app-structure/scaffold-example/application.apx +57 -0
  174. package/skills/apexlang/templates/base-app-structure/scaffold-example/deployments/default.json +5 -0
  175. package/skills/apexlang/templates/base-app-structure/scaffold-example/page-groups.apx +4 -0
  176. package/skills/apexlang/templates/base-app-structure/scaffold-example/pages/p00000-global-page.apx +4 -0
  177. package/skills/apexlang/templates/base-app-structure/scaffold-example/pages/p00001-home.apx +35 -0
  178. package/skills/apexlang/templates/base-app-structure/scaffold-example/pages/p09999-login.apx +254 -0
  179. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/authentications.apx +5 -0
  180. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/authorizations.apx +10 -0
  181. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/breadcrumbs.apx +18 -0
  182. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/build-options.apx +4 -0
  183. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/component-settings.apx +92 -0
  184. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/lists.apx +81 -0
  185. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/lovs.apx +20 -0
  186. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/static-files/icons/app-icon-144-rounded.png +0 -0
  187. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/static-files/icons/app-icon-192.png +0 -0
  188. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/static-files/icons/app-icon-256-rounded.png +0 -0
  189. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/static-files/icons/app-icon-32.png +0 -0
  190. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/static-files/icons/app-icon-512.png +0 -0
  191. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/static-files.apx +25 -0
  192. package/skills/apexlang/templates/base-app-structure/scaffold-example/shared-components/themes/universal-theme/theme.apx +56 -0
  193. package/skills/apexlang/templates/base-app-structure/scaffold-example/supporting-objects/deinstall-script.sql +0 -0
  194. package/skills/apexlang/templates/base-app-structure/scaffold-example/supporting-objects/supporting-objects.apx +9 -0
  195. package/skills/apexlang/templates/business-logic/business-logic.registry.json +32 -0
  196. package/skills/apexlang/templates/business-logic/computations/README.md +26 -0
  197. package/skills/apexlang/templates/business-logic/computations/computations._common.md +199 -0
  198. package/skills/apexlang/templates/business-logic/computations/computations._index.md +18 -0
  199. package/skills/apexlang/templates/business-logic/computations/computations.date.md +34 -0
  200. package/skills/apexlang/templates/business-logic/computations/computations.execute.md +43 -0
  201. package/skills/apexlang/templates/business-logic/computations/computations.expression.md +54 -0
  202. package/skills/apexlang/templates/business-logic/computations/computations.function-body.md +37 -0
  203. package/skills/apexlang/templates/business-logic/computations/computations.set-from-item.md +76 -0
  204. package/skills/apexlang/templates/business-logic/computations/computations.sql-multi.md +67 -0
  205. package/skills/apexlang/templates/business-logic/computations/computations.sql.md +66 -0
  206. package/skills/apexlang/templates/business-logic/computations/computations.static-value.md +76 -0
  207. package/skills/apexlang/templates/business-logic/computations/computations.time.md +36 -0
  208. package/skills/apexlang/templates/business-logic/dynamic-actions/README.md +57 -0
  209. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions._common.md +286 -0
  210. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions._index.md +18 -0
  211. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.add-remove-class-item.md +92 -0
  212. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.add-remove-class.md +80 -0
  213. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.alert-confirm-cancel.md +76 -0
  214. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.cancel-dialog.md +139 -0
  215. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.close-dialog.md +127 -0
  216. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.delete-with-notification.md +104 -0
  217. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.enable-disable-items.md +74 -0
  218. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.execute-server-side-code.md +72 -0
  219. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.execution-debounce-throttle.md +79 -0
  220. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.generate-text-ai.md +289 -0
  221. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.refresh-region-after-api.md +72 -0
  222. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.refresh-region-after-dialog.md +74 -0
  223. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.refresh-region-on-change.md +70 -0
  224. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.set-focus-on-ready.md +68 -0
  225. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.set-value-javascript-expression.md +75 -0
  226. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.set-value-plsql-function.md +79 -0
  227. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.set-value-sql.md +80 -0
  228. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.set-value-static.md +76 -0
  229. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.show-ai-assistant.md +109 -0
  230. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.show-error-message.md +67 -0
  231. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.show-hide-items.md +87 -0
  232. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.show-success-message.md +68 -0
  233. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.submit-page.md +143 -0
  234. package/skills/apexlang/templates/business-logic/dynamic-actions/dynamic-actions.view-document-inline.md +77 -0
  235. package/skills/apexlang/templates/business-logic/processes/processes._common.md +109 -0
  236. package/skills/apexlang/templates/business-logic/processes/processes._index.md +18 -0
  237. package/skills/apexlang/templates/business-logic/processes/processes.close-dialog.md +48 -0
  238. package/skills/apexlang/templates/business-logic/processes/processes.execute-code.md +44 -0
  239. package/skills/apexlang/templates/business-logic/processes/processes.form-automatic-row-processing.md +59 -0
  240. package/skills/apexlang/templates/business-logic/processes/processes.form-initialization.md +54 -0
  241. package/skills/apexlang/templates/business-logic/processes/processes.human-task.md +43 -0
  242. package/skills/apexlang/templates/business-logic/processes/processes.interactive-grid-automatic-row-processing.md +43 -0
  243. package/skills/apexlang/templates/business-logic/processes/processes.invoke-api.md +63 -0
  244. package/skills/apexlang/templates/business-logic/processes/processes.send-email.md +71 -0
  245. package/skills/apexlang/templates/business-logic/processes/processes.view-document.md +51 -0
  246. package/skills/apexlang/templates/business-logic/validations/README.md +24 -0
  247. package/skills/apexlang/templates/business-logic/validations/validations._common.md +118 -0
  248. package/skills/apexlang/templates/business-logic/validations/validations._index.md +60 -0
  249. package/skills/apexlang/templates/business-logic/validations/validations.expression.md +106 -0
  250. package/skills/apexlang/templates/business-logic/validations/validations.function-body.md +75 -0
  251. package/skills/apexlang/templates/business-logic/validations/validations.item.md +175 -0
  252. package/skills/apexlang/templates/business-logic/validations/validations.plsql-error.md +42 -0
  253. package/skills/apexlang/templates/business-logic/validations/validations.sql.md +75 -0
  254. package/skills/apexlang/templates/buttons/README.md +31 -0
  255. package/skills/apexlang/templates/buttons/buttons._common.md +159 -0
  256. package/skills/apexlang/templates/buttons/buttons._index.md +29 -0
  257. package/skills/apexlang/templates/buttons/buttons.appearance-icon.md +29 -0
  258. package/skills/apexlang/templates/buttons/buttons.confirmation.md +17 -0
  259. package/skills/apexlang/templates/buttons/buttons.defined-by-da.md +36 -0
  260. package/skills/apexlang/templates/buttons/buttons.menu.md +43 -0
  261. package/skills/apexlang/templates/buttons/buttons.redirect-other-app.md +35 -0
  262. package/skills/apexlang/templates/buttons/buttons.redirect-this-app.md +41 -0
  263. package/skills/apexlang/templates/buttons/buttons.registry.json +33 -0
  264. package/skills/apexlang/templates/buttons/buttons.server-side-condition.md +22 -0
  265. package/skills/apexlang/templates/buttons/buttons.submit.md +39 -0
  266. package/skills/apexlang/templates/buttons/buttons.trigger-action.md +37 -0
  267. package/skills/apexlang/templates/items/checkbox/checkbox._common.md +121 -0
  268. package/skills/apexlang/templates/items/checkbox/checkbox._index.md +25 -0
  269. package/skills/apexlang/templates/items/checkbox/checkbox.columns.md +80 -0
  270. package/skills/apexlang/templates/items/checkbox/checkbox.compact-template.md +79 -0
  271. package/skills/apexlang/templates/items/checkbox/checkbox.explicit-defaults.md +84 -0
  272. package/skills/apexlang/templates/items/checkbox/checkbox.lov-shared.md +81 -0
  273. package/skills/apexlang/templates/items/checkbox/checkbox.minimal.md +73 -0
  274. package/skills/apexlang/templates/items/color-picker/color-picker._common.md +100 -0
  275. package/skills/apexlang/templates/items/color-picker/color-picker._index.md +18 -0
  276. package/skills/apexlang/templates/items/color-picker/standard.md +93 -0
  277. package/skills/apexlang/templates/items/combobox/combobox._common.md +134 -0
  278. package/skills/apexlang/templates/items/combobox/combobox._index.md +25 -0
  279. package/skills/apexlang/templates/items/combobox/combobox.compact-template.md +79 -0
  280. package/skills/apexlang/templates/items/combobox/combobox.explicit-defaults.md +88 -0
  281. package/skills/apexlang/templates/items/combobox/combobox.lov-shared.md +81 -0
  282. package/skills/apexlang/templates/items/combobox/combobox.minimal.md +73 -0
  283. package/skills/apexlang/templates/items/combobox/combobox.width-placeholder.md +80 -0
  284. package/skills/apexlang/templates/items/date-picker/date-picker._common.md +116 -0
  285. package/skills/apexlang/templates/items/date-picker/date-picker._index.md +25 -0
  286. package/skills/apexlang/templates/items/date-picker/date-picker.compact-template.md +79 -0
  287. package/skills/apexlang/templates/items/date-picker/date-picker.date-format.md +78 -0
  288. package/skills/apexlang/templates/items/date-picker/date-picker.explicit-defaults.md +88 -0
  289. package/skills/apexlang/templates/items/date-picker/date-picker.minimal.md +73 -0
  290. package/skills/apexlang/templates/items/date-picker/date-picker.width-placeholder.md +80 -0
  291. package/skills/apexlang/templates/items/display-only/display-only._common.md +79 -0
  292. package/skills/apexlang/templates/items/display-only/display-only._index.md +18 -0
  293. package/skills/apexlang/templates/items/display-only/standard.md +199 -0
  294. package/skills/apexlang/templates/items/file-upload/file-upload._common.md +125 -0
  295. package/skills/apexlang/templates/items/file-upload/file-upload._index.md +23 -0
  296. package/skills/apexlang/templates/items/file-upload/file-upload.compact-template.md +79 -0
  297. package/skills/apexlang/templates/items/file-upload/file-upload.explicit-defaults.md +88 -0
  298. package/skills/apexlang/templates/items/file-upload/file-upload.minimal.md +73 -0
  299. package/skills/apexlang/templates/items/hidden-item/hidden-item._common.md +93 -0
  300. package/skills/apexlang/templates/items/hidden-item/hidden-item._index.md +22 -0
  301. package/skills/apexlang/templates/items/hidden-item/hidden-item.explicit-defaults.md +75 -0
  302. package/skills/apexlang/templates/items/hidden-item/hidden-item.minimal.md +68 -0
  303. package/skills/apexlang/templates/items/image-upload/image-upload._common.md +106 -0
  304. package/skills/apexlang/templates/items/image-upload/image-upload._index.md +23 -0
  305. package/skills/apexlang/templates/items/image-upload/image-upload.compact-template.md +79 -0
  306. package/skills/apexlang/templates/items/image-upload/image-upload.explicit-defaults.md +80 -0
  307. package/skills/apexlang/templates/items/image-upload/image-upload.minimal.md +73 -0
  308. package/skills/apexlang/templates/items/items._common.md +179 -0
  309. package/skills/apexlang/templates/items/items._index.md +54 -0
  310. package/skills/apexlang/templates/items/items.registry.json +148 -0
  311. package/skills/apexlang/templates/items/list-manager/list-manager._common.md +122 -0
  312. package/skills/apexlang/templates/items/list-manager/list-manager._index.md +24 -0
  313. package/skills/apexlang/templates/items/list-manager/list-manager.compact-template.md +79 -0
  314. package/skills/apexlang/templates/items/list-manager/list-manager.explicit-defaults.md +86 -0
  315. package/skills/apexlang/templates/items/list-manager/list-manager.lov-shared.md +81 -0
  316. package/skills/apexlang/templates/items/list-manager/list-manager.minimal.md +73 -0
  317. package/skills/apexlang/templates/items/markdown-editor/markdown-editor._common.md +107 -0
  318. package/skills/apexlang/templates/items/markdown-editor/markdown-editor._index.md +23 -0
  319. package/skills/apexlang/templates/items/markdown-editor/markdown-editor.compact-template.md +79 -0
  320. package/skills/apexlang/templates/items/markdown-editor/markdown-editor.explicit-defaults.md +86 -0
  321. package/skills/apexlang/templates/items/markdown-editor/markdown-editor.minimal.md +73 -0
  322. package/skills/apexlang/templates/items/number-field/number-field._common.md +120 -0
  323. package/skills/apexlang/templates/items/number-field/number-field._index.md +25 -0
  324. package/skills/apexlang/templates/items/number-field/number-field.compact-template.md +79 -0
  325. package/skills/apexlang/templates/items/number-field/number-field.explicit-defaults.md +88 -0
  326. package/skills/apexlang/templates/items/number-field/number-field.format-mask.md +82 -0
  327. package/skills/apexlang/templates/items/number-field/number-field.minimal.md +73 -0
  328. package/skills/apexlang/templates/items/number-field/number-field.width-placeholder.md +80 -0
  329. package/skills/apexlang/templates/items/popup-lov/popup-lov._common.md +148 -0
  330. package/skills/apexlang/templates/items/popup-lov/popup-lov._index.md +26 -0
  331. package/skills/apexlang/templates/items/popup-lov/popup-lov.compact-template.md +79 -0
  332. package/skills/apexlang/templates/items/popup-lov/popup-lov.explicit-defaults.md +88 -0
  333. package/skills/apexlang/templates/items/popup-lov/popup-lov.lov-display-null.md +83 -0
  334. package/skills/apexlang/templates/items/popup-lov/popup-lov.lov-shared.md +81 -0
  335. package/skills/apexlang/templates/items/popup-lov/popup-lov.minimal.md +73 -0
  336. package/skills/apexlang/templates/items/popup-lov/popup-lov.width-placeholder.md +80 -0
  337. package/skills/apexlang/templates/items/radio-group/radio-group._common.md +121 -0
  338. package/skills/apexlang/templates/items/radio-group/radio-group._index.md +25 -0
  339. package/skills/apexlang/templates/items/radio-group/radio-group.columns.md +80 -0
  340. package/skills/apexlang/templates/items/radio-group/radio-group.compact-template.md +79 -0
  341. package/skills/apexlang/templates/items/radio-group/radio-group.explicit-defaults.md +84 -0
  342. package/skills/apexlang/templates/items/radio-group/radio-group.lov-shared.md +81 -0
  343. package/skills/apexlang/templates/items/radio-group/radio-group.minimal.md +73 -0
  344. package/skills/apexlang/templates/items/rich-text-editor/rich-text-editor._common.md +112 -0
  345. package/skills/apexlang/templates/items/rich-text-editor/rich-text-editor._index.md +23 -0
  346. package/skills/apexlang/templates/items/rich-text-editor/rich-text-editor.compact-template.md +79 -0
  347. package/skills/apexlang/templates/items/rich-text-editor/rich-text-editor.explicit-defaults.md +88 -0
  348. package/skills/apexlang/templates/items/rich-text-editor/rich-text-editor.minimal.md +73 -0
  349. package/skills/apexlang/templates/items/select-list/select-list._common.md +136 -0
  350. package/skills/apexlang/templates/items/select-list/select-list._index.md +25 -0
  351. package/skills/apexlang/templates/items/select-list/select-list.compact-template.md +79 -0
  352. package/skills/apexlang/templates/items/select-list/select-list.explicit-defaults.md +84 -0
  353. package/skills/apexlang/templates/items/select-list/select-list.lov-display-null.md +83 -0
  354. package/skills/apexlang/templates/items/select-list/select-list.lov-shared.md +81 -0
  355. package/skills/apexlang/templates/items/select-list/select-list.minimal.md +73 -0
  356. package/skills/apexlang/templates/items/select-many/select-many._common.md +120 -0
  357. package/skills/apexlang/templates/items/select-many/select-many._index.md +18 -0
  358. package/skills/apexlang/templates/items/select-many/standard.md +148 -0
  359. package/skills/apexlang/templates/items/select-one/select-one._common.md +115 -0
  360. package/skills/apexlang/templates/items/select-one/select-one._index.md +18 -0
  361. package/skills/apexlang/templates/items/select-one/standard.md +141 -0
  362. package/skills/apexlang/templates/items/shuttle/shuttle._common.md +121 -0
  363. package/skills/apexlang/templates/items/shuttle/shuttle._index.md +24 -0
  364. package/skills/apexlang/templates/items/shuttle/shuttle.compact-template.md +79 -0
  365. package/skills/apexlang/templates/items/shuttle/shuttle.explicit-defaults.md +84 -0
  366. package/skills/apexlang/templates/items/shuttle/shuttle.lov-shared.md +81 -0
  367. package/skills/apexlang/templates/items/shuttle/shuttle.minimal.md +73 -0
  368. package/skills/apexlang/templates/items/star-rating/standard.md +95 -0
  369. package/skills/apexlang/templates/items/star-rating/star-rating._common.md +104 -0
  370. package/skills/apexlang/templates/items/star-rating/star-rating._index.md +18 -0
  371. package/skills/apexlang/templates/items/switch/switch._common.md +111 -0
  372. package/skills/apexlang/templates/items/switch/switch._index.md +23 -0
  373. package/skills/apexlang/templates/items/switch/switch.compact-template.md +79 -0
  374. package/skills/apexlang/templates/items/switch/switch.explicit-defaults.md +88 -0
  375. package/skills/apexlang/templates/items/switch/switch.minimal.md +73 -0
  376. package/skills/apexlang/templates/items/text-area/text-area._common.md +119 -0
  377. package/skills/apexlang/templates/items/text-area/text-area._index.md +25 -0
  378. package/skills/apexlang/templates/items/text-area/text-area.compact-template.md +79 -0
  379. package/skills/apexlang/templates/items/text-area/text-area.explicit-defaults.md +88 -0
  380. package/skills/apexlang/templates/items/text-area/text-area.minimal.md +73 -0
  381. package/skills/apexlang/templates/items/text-area/text-area.required-length.md +84 -0
  382. package/skills/apexlang/templates/items/text-area/text-area.width-placeholder.md +80 -0
  383. package/skills/apexlang/templates/items/text-autocomplete/text-autocomplete._common.md +147 -0
  384. package/skills/apexlang/templates/items/text-autocomplete/text-autocomplete._index.md +26 -0
  385. package/skills/apexlang/templates/items/text-autocomplete/text-autocomplete.compact-template.md +79 -0
  386. package/skills/apexlang/templates/items/text-autocomplete/text-autocomplete.explicit-defaults.md +96 -0
  387. package/skills/apexlang/templates/items/text-autocomplete/text-autocomplete.lov-shared.md +81 -0
  388. package/skills/apexlang/templates/items/text-autocomplete/text-autocomplete.minimal.md +73 -0
  389. package/skills/apexlang/templates/items/text-autocomplete/text-autocomplete.required-length.md +84 -0
  390. package/skills/apexlang/templates/items/text-autocomplete/text-autocomplete.width-placeholder.md +80 -0
  391. package/skills/apexlang/templates/items/text-field/text-field._common.md +121 -0
  392. package/skills/apexlang/templates/items/text-field/text-field._index.md +25 -0
  393. package/skills/apexlang/templates/items/text-field/text-field.compact-template.md +79 -0
  394. package/skills/apexlang/templates/items/text-field/text-field.explicit-defaults.md +88 -0
  395. package/skills/apexlang/templates/items/text-field/text-field.minimal.md +73 -0
  396. package/skills/apexlang/templates/items/text-field/text-field.required-length.md +84 -0
  397. package/skills/apexlang/templates/items/text-field/text-field.width-placeholder.md +80 -0
  398. package/skills/apexlang/templates/page-examples/README.md +49 -0
  399. package/skills/apexlang/templates/page-examples/blank-page/blank-page._common.md +19 -0
  400. package/skills/apexlang/templates/page-examples/blank-page/blank-page._index.md +12 -0
  401. package/skills/apexlang/templates/page-examples/blank-page/blank-page.example.md +52 -0
  402. package/skills/apexlang/templates/page-examples/calendar-page/calendar-page._common.md +19 -0
  403. package/skills/apexlang/templates/page-examples/calendar-page/calendar-page._index.md +12 -0
  404. package/skills/apexlang/templates/page-examples/calendar-page/calendar-page.example.md +104 -0
  405. package/skills/apexlang/templates/page-examples/chatbot-page/chatbot-page._common.md +21 -0
  406. package/skills/apexlang/templates/page-examples/chatbot-page/chatbot-page._index.md +12 -0
  407. package/skills/apexlang/templates/page-examples/chatbot-page/chatbot-page.example.md +96 -0
  408. package/skills/apexlang/templates/page-examples/classic-report-page/classic-report-page._common.md +19 -0
  409. package/skills/apexlang/templates/page-examples/classic-report-page/classic-report-page._index.md +12 -0
  410. package/skills/apexlang/templates/page-examples/classic-report-page/classic-report-page.example.md +275 -0
  411. package/skills/apexlang/templates/page-examples/dashboard-page/dashboard-page._common.md +48 -0
  412. package/skills/apexlang/templates/page-examples/dashboard-page/dashboard-page._index.md +13 -0
  413. package/skills/apexlang/templates/page-examples/dashboard-page/dashboard-page.example.md +433 -0
  414. package/skills/apexlang/templates/page-examples/faceted-search/faceted-search._common.md +19 -0
  415. package/skills/apexlang/templates/page-examples/faceted-search/faceted-search._index.md +12 -0
  416. package/skills/apexlang/templates/page-examples/faceted-search/faceted-search.example.md +303 -0
  417. package/skills/apexlang/templates/page-examples/form-page/form-page._common.md +31 -0
  418. package/skills/apexlang/templates/page-examples/form-page/form-page._index.md +12 -0
  419. package/skills/apexlang/templates/page-examples/form-page/form-page.example.md +709 -0
  420. package/skills/apexlang/templates/page-examples/global_page_0/global_page_0._common.md +21 -0
  421. package/skills/apexlang/templates/page-examples/global_page_0/global_page_0._index.md +12 -0
  422. package/skills/apexlang/templates/page-examples/global_page_0/global_page_0.example.md +22 -0
  423. package/skills/apexlang/templates/page-examples/home-page/home-page._common.md +19 -0
  424. package/skills/apexlang/templates/page-examples/home-page/home-page._index.md +12 -0
  425. package/skills/apexlang/templates/page-examples/home-page/home-page.example.md +52 -0
  426. package/skills/apexlang/templates/page-examples/interactive-grid/interactive-grid._common.md +19 -0
  427. package/skills/apexlang/templates/page-examples/interactive-grid/interactive-grid._index.md +12 -0
  428. package/skills/apexlang/templates/page-examples/interactive-grid/interactive-grid.example.md +393 -0
  429. package/skills/apexlang/templates/page-examples/interactive-report-page/interactive-report-page._common.md +31 -0
  430. package/skills/apexlang/templates/page-examples/interactive-report-page/interactive-report-page._index.md +12 -0
  431. package/skills/apexlang/templates/page-examples/interactive-report-page/interactive-report-page.example.md +551 -0
  432. package/skills/apexlang/templates/page-examples/login-page/login-page._common.md +19 -0
  433. package/skills/apexlang/templates/page-examples/login-page/login-page._index.md +12 -0
  434. package/skills/apexlang/templates/page-examples/login-page/login-page.example.md +271 -0
  435. package/skills/apexlang/templates/page-examples/map-page/map-page._common.md +66 -0
  436. package/skills/apexlang/templates/page-examples/map-page/map-page._index.md +22 -0
  437. package/skills/apexlang/templates/page-examples/map-page/map-page.example.md +113 -0
  438. package/skills/apexlang/templates/page-examples/page-examples.registry.json +110 -0
  439. package/skills/apexlang/templates/page-examples/task-definition-initiated-tasks-page/task-definition-initiated-tasks-page._common.md +31 -0
  440. package/skills/apexlang/templates/page-examples/task-definition-initiated-tasks-page/task-definition-initiated-tasks-page._index.md +12 -0
  441. package/skills/apexlang/templates/page-examples/task-definition-initiated-tasks-page/task-definition-initiated-tasks-page.example.md +841 -0
  442. package/skills/apexlang/templates/page-examples/task-definition-my-tasks-page/task-definition-my-tasks-page._common.md +31 -0
  443. package/skills/apexlang/templates/page-examples/task-definition-my-tasks-page/task-definition-my-tasks-page._index.md +12 -0
  444. package/skills/apexlang/templates/page-examples/task-definition-my-tasks-page/task-definition-my-tasks-page.example.md +1182 -0
  445. package/skills/apexlang/templates/page-examples/task-definition-task-details/task-definition-task-details._common.md +31 -0
  446. package/skills/apexlang/templates/page-examples/task-definition-task-details/task-definition-task-details._index.md +12 -0
  447. package/skills/apexlang/templates/page-examples/task-definition-task-details/task-definition-task-details.example.md +3281 -0
  448. package/skills/apexlang/templates/page-layout-templates/README.md +123 -0
  449. package/skills/apexlang/templates/page-layout-templates/_shared/README.md +24 -0
  450. package/skills/apexlang/templates/page-layout-templates/_shared/page.common.md +81 -0
  451. package/skills/apexlang/templates/page-layout-templates/_shared/page.drawer.common.md +88 -0
  452. package/skills/apexlang/templates/page-layout-templates/_shared/page.modal-dialog.common.md +74 -0
  453. package/skills/apexlang/templates/page-layout-templates/blank/README.md +18 -0
  454. package/skills/apexlang/templates/page-layout-templates/blank/blank._common.md +59 -0
  455. package/skills/apexlang/templates/page-layout-templates/blank/blank._index.md +18 -0
  456. package/skills/apexlang/templates/page-layout-templates/blank/blank.basic.md +42 -0
  457. package/skills/apexlang/templates/page-layout-templates/drawer/README.md +18 -0
  458. package/skills/apexlang/templates/page-layout-templates/drawer/drawer._common.md +65 -0
  459. package/skills/apexlang/templates/page-layout-templates/drawer/drawer._index.md +18 -0
  460. package/skills/apexlang/templates/page-layout-templates/drawer/drawer.basic.md +56 -0
  461. package/skills/apexlang/templates/page-layout-templates/left-and-right-side-columns/README.md +18 -0
  462. package/skills/apexlang/templates/page-layout-templates/left-and-right-side-columns/left-and-right-side-columns._common.md +85 -0
  463. package/skills/apexlang/templates/page-layout-templates/left-and-right-side-columns/left-and-right-side-columns._index.md +18 -0
  464. package/skills/apexlang/templates/page-layout-templates/left-and-right-side-columns/left-and-right-side-columns.basic.md +63 -0
  465. package/skills/apexlang/templates/page-layout-templates/left-side-column/README.md +18 -0
  466. package/skills/apexlang/templates/page-layout-templates/left-side-column/left-side-column._common.md +78 -0
  467. package/skills/apexlang/templates/page-layout-templates/left-side-column/left-side-column._index.md +18 -0
  468. package/skills/apexlang/templates/page-layout-templates/left-side-column/left-side-column.basic.md +54 -0
  469. package/skills/apexlang/templates/page-layout-templates/login/README.md +18 -0
  470. package/skills/apexlang/templates/page-layout-templates/login/login._common.md +71 -0
  471. package/skills/apexlang/templates/page-layout-templates/login/login._index.md +18 -0
  472. package/skills/apexlang/templates/page-layout-templates/login/login.basic.md +45 -0
  473. package/skills/apexlang/templates/page-layout-templates/marquee/README.md +18 -0
  474. package/skills/apexlang/templates/page-layout-templates/marquee/marquee._common.md +74 -0
  475. package/skills/apexlang/templates/page-layout-templates/marquee/marquee._index.md +18 -0
  476. package/skills/apexlang/templates/page-layout-templates/marquee/marquee.basic.md +54 -0
  477. package/skills/apexlang/templates/page-layout-templates/minimal-no-navigation/README.md +18 -0
  478. package/skills/apexlang/templates/page-layout-templates/minimal-no-navigation/minimal-no-navigation._common.md +65 -0
  479. package/skills/apexlang/templates/page-layout-templates/minimal-no-navigation/minimal-no-navigation._index.md +18 -0
  480. package/skills/apexlang/templates/page-layout-templates/minimal-no-navigation/minimal-no-navigation.basic.md +45 -0
  481. package/skills/apexlang/templates/page-layout-templates/modal-dialog/README.md +18 -0
  482. package/skills/apexlang/templates/page-layout-templates/modal-dialog/modal-dialog._common.md +62 -0
  483. package/skills/apexlang/templates/page-layout-templates/modal-dialog/modal-dialog._index.md +18 -0
  484. package/skills/apexlang/templates/page-layout-templates/modal-dialog/modal-dialog.basic.md +53 -0
  485. package/skills/apexlang/templates/page-layout-templates/page-layout-template-family-registry.json +92 -0
  486. package/skills/apexlang/templates/page-layout-templates/right-side-column/README.md +18 -0
  487. package/skills/apexlang/templates/page-layout-templates/right-side-column/right-side-column._common.md +74 -0
  488. package/skills/apexlang/templates/page-layout-templates/right-side-column/right-side-column._index.md +18 -0
  489. package/skills/apexlang/templates/page-layout-templates/right-side-column/right-side-column.basic.md +54 -0
  490. package/skills/apexlang/templates/page-layout-templates/standard/README.md +18 -0
  491. package/skills/apexlang/templates/page-layout-templates/standard/standard._common.md +77 -0
  492. package/skills/apexlang/templates/page-layout-templates/standard/standard._index.md +18 -0
  493. package/skills/apexlang/templates/page-layout-templates/standard/standard.basic.md +54 -0
  494. package/skills/apexlang/templates/page-layout-templates/wizard-modal-dialog/README.md +20 -0
  495. package/skills/apexlang/templates/page-layout-templates/wizard-modal-dialog/wizard-modal-dialog._common.md +80 -0
  496. package/skills/apexlang/templates/page-layout-templates/wizard-modal-dialog/wizard-modal-dialog._index.md +18 -0
  497. package/skills/apexlang/templates/page-layout-templates/wizard-modal-dialog/wizard-modal-dialog.basic.md +62 -0
  498. package/skills/apexlang/templates/page-layout-templates/wizard-modal-dialog/wizard-modal-dialog.buttons.md +97 -0
  499. package/skills/apexlang/templates/page-layout-templates/wizard-modal-dialog/wizard-modal-dialog.multi-step.md +92 -0
  500. package/skills/apexlang/templates/region-components/LEGACY.md +23 -0
  501. package/skills/apexlang/templates/region-components/README.md +55 -0
  502. package/skills/apexlang/templates/region-components/breadcrumb/README.md +21 -0
  503. package/skills/apexlang/templates/region-components/breadcrumb/breadcrumb._common.md +27 -0
  504. package/skills/apexlang/templates/region-components/breadcrumb/breadcrumb._index.md +18 -0
  505. package/skills/apexlang/templates/region-components/breadcrumb/breadcrumb._template_options.md +13 -0
  506. package/skills/apexlang/templates/region-components/breadcrumb/breadcrumb.page-header-nav.md +13 -0
  507. package/skills/apexlang/templates/region-components/breadcrumb/breadcrumb.standard.md +33 -0
  508. package/skills/apexlang/templates/region-components/calendar/README.md +32 -0
  509. package/skills/apexlang/templates/region-components/calendar/calendar._common.md +168 -0
  510. package/skills/apexlang/templates/region-components/calendar/calendar._index.md +18 -0
  511. package/skills/apexlang/templates/region-components/calendar/calendar.client-events.md +126 -0
  512. package/skills/apexlang/templates/region-components/calendar/calendar.create-event-on-select.md +122 -0
  513. package/skills/apexlang/templates/region-components/calendar/calendar.custom-drag-drop-handlers.md +155 -0
  514. package/skills/apexlang/templates/region-components/calendar/calendar.custom-navigation.md +128 -0
  515. package/skills/apexlang/templates/region-components/calendar/calendar.custom-styling.md +150 -0
  516. package/skills/apexlang/templates/region-components/calendar/calendar.delete-or-copy-on-click.md +122 -0
  517. package/skills/apexlang/templates/region-components/calendar/calendar.faceted-search.md +189 -0
  518. package/skills/apexlang/templates/region-components/calendar/calendar.fullcalendar-init.md +77 -0
  519. package/skills/apexlang/templates/region-components/calendar/calendar.report-synchronized.md +131 -0
  520. package/skills/apexlang/templates/region-components/calendar/calendar.schedule-builder.md +149 -0
  521. package/skills/apexlang/templates/region-components/calendar/calendar.standard-monthly.md +129 -0
  522. package/skills/apexlang/templates/region-components/calendar/calendar.status-tracking.md +129 -0
  523. package/skills/apexlang/templates/region-components/calendar/calendar.weekly-conference.md +109 -0
  524. package/skills/apexlang/templates/region-components/calendar/calendar.weekly-drag-drop.md +130 -0
  525. package/skills/apexlang/templates/region-components/calendar/calendar.weekly-time-format-toggle.md +107 -0
  526. package/skills/apexlang/templates/region-components/cards/README.md +28 -0
  527. package/skills/apexlang/templates/region-components/cards/cards._common.md +236 -0
  528. package/skills/apexlang/templates/region-components/cards/cards._index.md +18 -0
  529. package/skills/apexlang/templates/region-components/cards/cards._template_options.md +15 -0
  530. package/skills/apexlang/templates/region-components/cards/cards.rest-source.md +78 -0
  531. package/skills/apexlang/templates/region-components/cards/cards.standard.md +156 -0
  532. package/skills/apexlang/templates/region-components/chart/README.md +80 -0
  533. package/skills/apexlang/templates/region-components/chart/_configuration-modules.md +26 -0
  534. package/skills/apexlang/templates/region-components/chart/chart._axis._common.md +67 -0
  535. package/skills/apexlang/templates/region-components/chart/chart._common.md +119 -0
  536. package/skills/apexlang/templates/region-components/chart/chart._index.md +62 -0
  537. package/skills/apexlang/templates/region-components/chart/chart._series._common.md +92 -0
  538. package/skills/apexlang/templates/region-components/chart/chart.area-custom-legend.md +78 -0
  539. package/skills/apexlang/templates/region-components/chart/chart.area.md +80 -0
  540. package/skills/apexlang/templates/region-components/chart/chart.bar.md +81 -0
  541. package/skills/apexlang/templates/region-components/chart/chart.bubble.md +53 -0
  542. package/skills/apexlang/templates/region-components/chart/chart.dashboard-combination.md +59 -0
  543. package/skills/apexlang/templates/region-components/chart/chart.donut.md +36 -0
  544. package/skills/apexlang/templates/region-components/chart/chart.gantt.md +50 -0
  545. package/skills/apexlang/templates/region-components/chart/chart.line-with-area.md +57 -0
  546. package/skills/apexlang/templates/region-components/chart/chart.line.md +80 -0
  547. package/skills/apexlang/templates/region-components/chart/chart.pie.md +72 -0
  548. package/skills/apexlang/templates/region-components/chart/chart.scatter.md +51 -0
  549. package/skills/apexlang/templates/region-components/chart/chart.status-meter-gauge.md +51 -0
  550. package/skills/apexlang/templates/region-components/chart/chart.stock.md +52 -0
  551. package/skills/apexlang/templates/region-components/chart/config/README.md +19 -0
  552. package/skills/apexlang/templates/region-components/chart/features/chart.feature-3d-effect.md +36 -0
  553. package/skills/apexlang/templates/region-components/chart/features/chart.feature-chart-links.md +53 -0
  554. package/skills/apexlang/templates/region-components/chart/features/chart.feature-combination.md +78 -0
  555. package/skills/apexlang/templates/region-components/chart/features/chart.feature-custom-tooltip.md +34 -0
  556. package/skills/apexlang/templates/region-components/chart/features/chart.feature-data-densification.md +40 -0
  557. package/skills/apexlang/templates/region-components/chart/features/chart.feature-declarative-font.md +29 -0
  558. package/skills/apexlang/templates/region-components/chart/features/chart.feature-legend-plug-in.md +55 -0
  559. package/skills/apexlang/templates/region-components/chart/features/chart.feature-series-color.md +43 -0
  560. package/skills/apexlang/templates/region-components/chart/features/chart.feature-zoom-scroll.md +30 -0
  561. package/skills/apexlang/templates/region-components/classic-report/README.md +32 -0
  562. package/skills/apexlang/templates/region-components/classic-report/classic-report._columns._common.md +160 -0
  563. package/skills/apexlang/templates/region-components/classic-report/classic-report._columns.format-template.md +181 -0
  564. package/skills/apexlang/templates/region-components/classic-report/classic-report._common.md +140 -0
  565. package/skills/apexlang/templates/region-components/classic-report/classic-report._index.md +22 -0
  566. package/skills/apexlang/templates/region-components/classic-report/classic-report.ao-notifications.md +111 -0
  567. package/skills/apexlang/templates/region-components/classic-report/classic-report.context-info-column-based.md +106 -0
  568. package/skills/apexlang/templates/region-components/classic-report/classic-report.contextual-info-row-based.md +106 -0
  569. package/skills/apexlang/templates/region-components/classic-report/classic-report.contextual-info.md +78 -0
  570. package/skills/apexlang/templates/region-components/classic-report/classic-report.percent-graph-columns.md +95 -0
  571. package/skills/apexlang/templates/region-components/classic-report/classic-report.rest-data-source-and-query-param.md +109 -0
  572. package/skills/apexlang/templates/region-components/classic-report/classic-report.rest-data-source.md +98 -0
  573. package/skills/apexlang/templates/region-components/classic-report/classic-report.standard.md +119 -0
  574. package/skills/apexlang/templates/region-components/classic-report/classic-report.suggestions-simple-list.md +110 -0
  575. package/skills/apexlang/templates/region-components/collapsible-region/README.md +20 -0
  576. package/skills/apexlang/templates/region-components/collapsible-region/collapsible-region._common.md +21 -0
  577. package/skills/apexlang/templates/region-components/collapsible-region/collapsible-region._index.md +18 -0
  578. package/skills/apexlang/templates/region-components/collapsible-region/collapsible-region._template_options.md +39 -0
  579. package/skills/apexlang/templates/region-components/collapsible-region/collapsible-region.standard.md +29 -0
  580. package/skills/apexlang/templates/region-components/dynamic-content/README.md +18 -0
  581. package/skills/apexlang/templates/region-components/dynamic-content/dynamic-content._common.md +21 -0
  582. package/skills/apexlang/templates/region-components/dynamic-content/dynamic-content._index.md +18 -0
  583. package/skills/apexlang/templates/region-components/dynamic-content/dynamic-content.standard.md +31 -0
  584. package/skills/apexlang/templates/region-components/faceted-search/README.md +22 -0
  585. package/skills/apexlang/templates/region-components/faceted-search/faceted-search._common.md +179 -0
  586. package/skills/apexlang/templates/region-components/faceted-search/faceted-search._index.md +19 -0
  587. package/skills/apexlang/templates/region-components/faceted-search/faceted-search.button-bar.md +43 -0
  588. package/skills/apexlang/templates/region-components/faceted-search/faceted-search.standard.md +46 -0
  589. package/skills/apexlang/templates/region-components/form/README.md +26 -0
  590. package/skills/apexlang/templates/region-components/form/form._common.md +112 -0
  591. package/skills/apexlang/templates/region-components/form/form._index.md +23 -0
  592. package/skills/apexlang/templates/region-components/form/form._items._common.md +102 -0
  593. package/skills/apexlang/templates/region-components/form/form._processes._common.md +39 -0
  594. package/skills/apexlang/templates/region-components/form/form._template_options.md +24 -0
  595. package/skills/apexlang/templates/region-components/form/form.basic.md +106 -0
  596. package/skills/apexlang/templates/region-components/form/form.dialog-buttons.md +45 -0
  597. package/skills/apexlang/templates/region-components/form/form.rest-source.md +88 -0
  598. package/skills/apexlang/templates/region-components/help-text/README.md +18 -0
  599. package/skills/apexlang/templates/region-components/help-text/help-text._common.md +29 -0
  600. package/skills/apexlang/templates/region-components/help-text/help-text._index.md +18 -0
  601. package/skills/apexlang/templates/region-components/help-text/help-text.standard.md +44 -0
  602. package/skills/apexlang/templates/region-components/interactive-grid/README.md +31 -0
  603. package/skills/apexlang/templates/region-components/interactive-grid/interactive-grid._columns._common.md +101 -0
  604. package/skills/apexlang/templates/region-components/interactive-grid/interactive-grid._common.md +239 -0
  605. package/skills/apexlang/templates/region-components/interactive-grid/interactive-grid._index.md +22 -0
  606. package/skills/apexlang/templates/region-components/interactive-grid/interactive-grid._saved-report._common.md +68 -0
  607. package/skills/apexlang/templates/region-components/interactive-grid/interactive-grid.region.md +281 -0
  608. package/skills/apexlang/templates/region-components/interactive-grid/interactive-grid.standard.md +260 -0
  609. package/skills/apexlang/templates/region-components/interactive-report/README.md +30 -0
  610. package/skills/apexlang/templates/region-components/interactive-report/interactive-report._columns._common.md +139 -0
  611. package/skills/apexlang/templates/region-components/interactive-report/interactive-report._columns.format-template.md +145 -0
  612. package/skills/apexlang/templates/region-components/interactive-report/interactive-report._common.md +171 -0
  613. package/skills/apexlang/templates/region-components/interactive-report/interactive-report._index.md +21 -0
  614. package/skills/apexlang/templates/region-components/interactive-report/interactive-report._template_options.md +13 -0
  615. package/skills/apexlang/templates/region-components/interactive-report/interactive-report.nl2ir.md +109 -0
  616. package/skills/apexlang/templates/region-components/interactive-report/interactive-report.page-header-actions.md +154 -0
  617. package/skills/apexlang/templates/region-components/interactive-report/interactive-report.rest-data-source-parameter.md +155 -0
  618. package/skills/apexlang/templates/region-components/interactive-report/interactive-report.rest-data-source.md +105 -0
  619. package/skills/apexlang/templates/region-components/interactive-report/interactive-report.secondary.md +104 -0
  620. package/skills/apexlang/templates/region-components/interactive-report/interactive-report.standard.md +140 -0
  621. package/skills/apexlang/templates/region-components/list/README.md +22 -0
  622. package/skills/apexlang/templates/region-components/list/list._common.md +47 -0
  623. package/skills/apexlang/templates/region-components/list/list._index.md +18 -0
  624. package/skills/apexlang/templates/region-components/list/list.cards.md +36 -0
  625. package/skills/apexlang/templates/region-components/list/list.media-list.md +36 -0
  626. package/skills/apexlang/templates/region-components/map/README.md +51 -0
  627. package/skills/apexlang/templates/region-components/map/map._common.md +152 -0
  628. package/skills/apexlang/templates/region-components/map/map._index.md +54 -0
  629. package/skills/apexlang/templates/region-components/map/map.backgrounds.md +78 -0
  630. package/skills/apexlang/templates/region-components/map/map.geojson.md +36 -0
  631. package/skills/apexlang/templates/region-components/map/map.layer._common.md +171 -0
  632. package/skills/apexlang/templates/region-components/map/map.layer.extruded-polygons.md +74 -0
  633. package/skills/apexlang/templates/region-components/map/map.layer.heat-map.md +73 -0
  634. package/skills/apexlang/templates/region-components/map/map.layer.lines.md +71 -0
  635. package/skills/apexlang/templates/region-components/map/map.layer.points.function-body.md +52 -0
  636. package/skills/apexlang/templates/region-components/map/map.layer.points.md +127 -0
  637. package/skills/apexlang/templates/region-components/map/map.layer.points.sql-query.md +53 -0
  638. package/skills/apexlang/templates/region-components/map/map.layer.polygons.md +83 -0
  639. package/skills/apexlang/templates/region-components/map/map.longitude-latitude.md +38 -0
  640. package/skills/apexlang/templates/region-components/map/map.region.background-custom.md +71 -0
  641. package/skills/apexlang/templates/region-components/map/map.region.background-shared.md +66 -0
  642. package/skills/apexlang/templates/region-components/map/map.region.bbox-sql.md +74 -0
  643. package/skills/apexlang/templates/region-components/map/map.region.bbox-static.md +66 -0
  644. package/skills/apexlang/templates/region-components/map/map.region.browser-location.md +66 -0
  645. package/skills/apexlang/templates/region-components/map/map.region.init-position-sql.md +77 -0
  646. package/skills/apexlang/templates/region-components/map/map.runtime-api.md +102 -0
  647. package/skills/apexlang/templates/region-components/map/map.sdo-geometry.md +36 -0
  648. package/skills/apexlang/templates/region-components/map/map.standard.md +120 -0
  649. package/skills/apexlang/templates/region-components/region-components.registry.json +117 -0
  650. package/skills/apexlang/templates/region-components/region-display-selector/README.md +18 -0
  651. package/skills/apexlang/templates/region-components/region-display-selector/region-display-selector._common.md +20 -0
  652. package/skills/apexlang/templates/region-components/region-display-selector/region-display-selector._index.md +18 -0
  653. package/skills/apexlang/templates/region-components/region-display-selector/region-display-selector.standard.md +14 -0
  654. package/skills/apexlang/templates/region-components/search-config/README.md +18 -0
  655. package/skills/apexlang/templates/region-components/search-config/search-config._common.md +22 -0
  656. package/skills/apexlang/templates/region-components/search-config/search-config._index.md +18 -0
  657. package/skills/apexlang/templates/region-components/search-config/search-config.standard.md +28 -0
  658. package/skills/apexlang/templates/region-components/smart-filter-search/README.md +18 -0
  659. package/skills/apexlang/templates/region-components/smart-filter-search/smart-filter-search._common.md +74 -0
  660. package/skills/apexlang/templates/region-components/smart-filter-search/smart-filter-search._index.md +18 -0
  661. package/skills/apexlang/templates/region-components/smart-filter-search/smart-filter-search.standard.md +29 -0
  662. package/skills/apexlang/templates/region-components/static-content/README.md +32 -0
  663. package/skills/apexlang/templates/region-components/static-content/static-content._button._common.md +68 -0
  664. package/skills/apexlang/templates/region-components/static-content/static-content._common.md +62 -0
  665. package/skills/apexlang/templates/region-components/static-content/static-content._index.md +22 -0
  666. package/skills/apexlang/templates/region-components/static-content/static-content._nested-region._common.md +67 -0
  667. package/skills/apexlang/templates/region-components/static-content/static-content._template_options.md +227 -0
  668. package/skills/apexlang/templates/region-components/static-content/static-content.accordion.md +56 -0
  669. package/skills/apexlang/templates/region-components/static-content/static-content.blank-with-attributes.md +49 -0
  670. package/skills/apexlang/templates/region-components/static-content/static-content.buttons.md +50 -0
  671. package/skills/apexlang/templates/region-components/static-content/static-content.cards.md +48 -0
  672. package/skills/apexlang/templates/region-components/static-content/static-content.collapsible.md +48 -0
  673. package/skills/apexlang/templates/region-components/static-content/static-content.collection-toolbar.md +48 -0
  674. package/skills/apexlang/templates/region-components/static-content/static-content.dividers.md +48 -0
  675. package/skills/apexlang/templates/region-components/static-content/static-content.empty-state.md +48 -0
  676. package/skills/apexlang/templates/shared-components/README.md +46 -0
  677. package/skills/apexlang/templates/shared-components/acl-roles/acl-roles._common.md +31 -0
  678. package/skills/apexlang/templates/shared-components/acl-roles/acl-roles._index.md +18 -0
  679. package/skills/apexlang/templates/shared-components/acl-roles/acl-roles.standard.md +29 -0
  680. package/skills/apexlang/templates/shared-components/ai-agents/ai-agents._common.md +77 -0
  681. package/skills/apexlang/templates/shared-components/ai-agents/ai-agents._index.md +19 -0
  682. package/skills/apexlang/templates/shared-components/ai-agents/ai-agents.ai-tools.augment-system-prompt.md +71 -0
  683. package/skills/apexlang/templates/shared-components/ai-agents/ai-agents.ai-tools.execute-code-client-js.md +87 -0
  684. package/skills/apexlang/templates/shared-components/ai-agents/ai-agents.ai-tools.execute-code-server-js.md +70 -0
  685. package/skills/apexlang/templates/shared-components/ai-agents/ai-agents.ai-tools.execute-code-server-plsql.md +92 -0
  686. package/skills/apexlang/templates/shared-components/ai-agents/ai-agents.ai-tools.md +36 -0
  687. package/skills/apexlang/templates/shared-components/ai-agents/ai-agents.ai-tools.retrieve-data-sql.md +99 -0
  688. package/skills/apexlang/templates/shared-components/ai-agents/ai-agents.at-tools.parameters.md +171 -0
  689. package/skills/apexlang/templates/shared-components/ai-agents/ai-agents.system-prompt.md +43 -0
  690. package/skills/apexlang/templates/shared-components/app-computations.md +141 -0
  691. package/skills/apexlang/templates/shared-components/app-items.md +77 -0
  692. package/skills/apexlang/templates/shared-components/app-processes/app-processes._common.md +122 -0
  693. package/skills/apexlang/templates/shared-components/app-processes/app-processes._index.md +18 -0
  694. package/skills/apexlang/templates/shared-components/app-processes/app-processes.after-authentication.md +61 -0
  695. package/skills/apexlang/templates/shared-components/app-processes/app-processes.after-footer.md +61 -0
  696. package/skills/apexlang/templates/shared-components/app-processes/app-processes.after-header.md +66 -0
  697. package/skills/apexlang/templates/shared-components/app-processes/app-processes.after-regions.md +66 -0
  698. package/skills/apexlang/templates/shared-components/app-processes/app-processes.after-submit.md +65 -0
  699. package/skills/apexlang/templates/shared-components/app-processes/app-processes.ajax-callback.md +63 -0
  700. package/skills/apexlang/templates/shared-components/app-processes/app-processes.before-header.md +67 -0
  701. package/skills/apexlang/templates/shared-components/app-processes/app-processes.before-regions.md +64 -0
  702. package/skills/apexlang/templates/shared-components/app-processes/app-processes.new-session.md +64 -0
  703. package/skills/apexlang/templates/shared-components/app-processes/app-processes.processing.md +64 -0
  704. package/skills/apexlang/templates/shared-components/authentications/authentications._common.md +35 -0
  705. package/skills/apexlang/templates/shared-components/authentications/authentications._index.md +18 -0
  706. package/skills/apexlang/templates/shared-components/authentications/authentications.apex.md +44 -0
  707. package/skills/apexlang/templates/shared-components/authentications/authentications.builder.md +45 -0
  708. package/skills/apexlang/templates/shared-components/authentications/authentications.social.md +70 -0
  709. package/skills/apexlang/templates/shared-components/authorizations/authorizations._common.md +44 -0
  710. package/skills/apexlang/templates/shared-components/authorizations/authorizations._index.md +18 -0
  711. package/skills/apexlang/templates/shared-components/authorizations/authorizations.exists.query.md +66 -0
  712. package/skills/apexlang/templates/shared-components/authorizations/authorizations.plsql.boolean.md +69 -0
  713. package/skills/apexlang/templates/shared-components/authorizations/authorizations.role.md +75 -0
  714. package/skills/apexlang/templates/shared-components/breadcrumbs/breadcrumb-entries.md +88 -0
  715. package/skills/apexlang/templates/shared-components/breadcrumbs/breadcrumbs.md +53 -0
  716. package/skills/apexlang/templates/shared-components/build-options.md +73 -0
  717. package/skills/apexlang/templates/shared-components/component-settings/component-settings._common.md +20 -0
  718. package/skills/apexlang/templates/shared-components/component-settings/component-settings._index.md +18 -0
  719. package/skills/apexlang/templates/shared-components/component-settings/component-settings.standard.md +9 -0
  720. package/skills/apexlang/templates/shared-components/component-settings.example.md +128 -0
  721. package/skills/apexlang/templates/shared-components/email-templates/email-templates._common.md +75 -0
  722. package/skills/apexlang/templates/shared-components/email-templates/email-templates._index.md +20 -0
  723. package/skills/apexlang/templates/shared-components/email-templates.example.md +93 -0
  724. package/skills/apexlang/templates/shared-components/lists/list-entries.md +116 -0
  725. package/skills/apexlang/templates/shared-components/lists/lists.md +53 -0
  726. package/skills/apexlang/templates/shared-components/lovs/lovs.dynamic.query.md +131 -0
  727. package/skills/apexlang/templates/shared-components/lovs/lovs.dynamic.table.md +124 -0
  728. package/skills/apexlang/templates/shared-components/lovs/lovs.static.md +70 -0
  729. package/skills/apexlang/templates/shared-components/rest-data-sources/example_rest_data_source.example.md +386 -0
  730. package/skills/apexlang/templates/shared-components/rest-data-sources/rest-data-sources._common.md +20 -0
  731. package/skills/apexlang/templates/shared-components/rest-data-sources/rest-data-sources._index.md +18 -0
  732. package/skills/apexlang/templates/shared-components/rest-data-sources/rest-data-sources.http-paginated-example.md +9 -0
  733. package/skills/apexlang/templates/shared-components/shared-components.registry.json +110 -0
  734. package/skills/apexlang/templates/shared-components/task-definitions/action-task.example.md +164 -0
  735. package/skills/apexlang/templates/shared-components/task-definitions/approve-request.example.md +196 -0
  736. package/skills/apexlang/templates/shared-components/task-definitions/task-definitions._common.md +62 -0
  737. package/skills/apexlang/templates/shared-components/task-definitions/task-definitions._index.md +19 -0
  738. package/skills/apexlang/templates/shared-components/task-definitions/task-definitions.action-task.md +9 -0
  739. package/skills/apexlang/templates/shared-components/task-definitions/task-definitions.approve-request.md +9 -0
  740. package/skills/apexlang/templates/shared-components/translations/translations._common.md +31 -0
  741. package/skills/apexlang/templates/shared-components/translations/translations._index.md +50 -0
  742. package/skills/apexlang/templates/shared-components/translations/translations.text-messages._common.md +80 -0
  743. package/skills/apexlang/templates/shared-components/translations/translations.text-messages.consumption.example.md +69 -0
  744. package/skills/apexlang/templates/shared-components/translations/translations.text-messages.permutations.example.md +81 -0
  745. package/skills/apexlang/templates/template-components/README.md +57 -0
  746. package/skills/apexlang/templates/template-components/actions/README.md +23 -0
  747. package/skills/apexlang/templates/template-components/actions/actions._common.md +66 -0
  748. package/skills/apexlang/templates/template-components/actions/actions._index.md +19 -0
  749. package/skills/apexlang/templates/template-components/actions/actions._template_options.md +16 -0
  750. package/skills/apexlang/templates/template-components/actions/actions.inline-button.md +31 -0
  751. package/skills/apexlang/templates/template-components/actions/actions.menu-trigger.md +33 -0
  752. package/skills/apexlang/templates/template-components/actions/actions.nested-group.md +35 -0
  753. package/skills/apexlang/templates/template-components/avatar._template_options.md +23 -0
  754. package/skills/apexlang/templates/template-components/badge._template_options.md +20 -0
  755. package/skills/apexlang/templates/template-components/button/README.md +24 -0
  756. package/skills/apexlang/templates/template-components/button/button._common.md +76 -0
  757. package/skills/apexlang/templates/template-components/button/button._index.md +19 -0
  758. package/skills/apexlang/templates/template-components/button/button._template_options.md +26 -0
  759. package/skills/apexlang/templates/template-components/button/button.hot-icon.md +32 -0
  760. package/skills/apexlang/templates/template-components/button/button.menu-trigger.md +27 -0
  761. package/skills/apexlang/templates/template-components/button/button.navigation.md +29 -0
  762. package/skills/apexlang/templates/template-components/comments._template_options.md +24 -0
  763. package/skills/apexlang/templates/template-components/content-row/README.md +36 -0
  764. package/skills/apexlang/templates/template-components/content-row/content-row._common.md +225 -0
  765. package/skills/apexlang/templates/template-components/content-row/content-row._index.md +49 -0
  766. package/skills/apexlang/templates/template-components/content-row/content-row._template_options.md +27 -0
  767. package/skills/apexlang/templates/template-components/content-row/content-row.partial-minimal.md +33 -0
  768. package/skills/apexlang/templates/template-components/content-row/content-row.partial-rich-content.md +64 -0
  769. package/skills/apexlang/templates/template-components/content-row/content-row.report-appearance-variants.md +33 -0
  770. package/skills/apexlang/templates/template-components/content-row/content-row.report-avatar-badge.md +57 -0
  771. package/skills/apexlang/templates/template-components/content-row/content-row.report-explicit-defaults.md +29 -0
  772. package/skills/apexlang/templates/template-components/content-row/content-row.report-grouping-selection.md +306 -0
  773. package/skills/apexlang/templates/template-components/content-row/content-row.report-link-positions.md +31 -0
  774. package/skills/apexlang/templates/template-components/content-row/content-row.report-master-detail-full-row-link.md +70 -0
  775. package/skills/apexlang/templates/template-components/content-row/content-row.report-minimal.md +31 -0
  776. package/skills/apexlang/templates/template-components/content-row/content-row.report-primary-actions-menu.md +67 -0
  777. package/skills/apexlang/templates/template-components/content-row/manifest.json +165 -0
  778. package/skills/apexlang/templates/template-components/flexbox-container._template_options.md +20 -0
  779. package/skills/apexlang/templates/template-components/media-list._template_options.md +22 -0
  780. package/skills/apexlang/templates/template-components/metric-card/README.md +38 -0
  781. package/skills/apexlang/templates/template-components/metric-card/metric-card._common.md +193 -0
  782. package/skills/apexlang/templates/template-components/metric-card/metric-card._index.md +17 -0
  783. package/skills/apexlang/templates/template-components/metric-card/metric-card._template_options.md +23 -0
  784. package/skills/apexlang/templates/template-components/template-component-profiles.json +4632 -0
  785. package/skills/apexlang/templates/template-components/template-components.registry.json +50 -0
  786. package/skills/apexlang/templates/template-components/timeline._template_options.md +23 -0
  787. package/skills/apexlang/templates/template-family-registry.json +66 -0
  788. package/skills/apexlang/templates/workspace-components/credentials/credentials-for-open-ai.example.md +24 -0
  789. package/skills/apexlang/templates/workspace-components/generative-ai-services/open-ai.example.md +32 -0
  790. package/skills/apexlang/templates/workspace-components/rest-data-source-servers/sample-rest-api.example.md +23 -0
  791. package/skills/apexlang/templates/workspace-components/workspace-components.registry.json +12 -0
  792. package/skills/apexlang/tools/apexctl.mjs +519 -0
  793. package/skills/apexlang/tools/compiler-truth-audit.mjs +510 -0
  794. package/skills/apexlang/tools/query-valid-props-normalize.mjs +191 -0
  795. package/skills/apexlang/tools/query-valid-props-runtime.mjs +319 -0
  796. package/skills/apexlang/tools/query-valid-props-template-components.mjs +330 -0
  797. package/skills/apexlang/tools/query-valid-props.mjs +601 -0
@@ -0,0 +1,4632 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "theme": "universal-theme",
4
+ "source": "repo-theme-export",
5
+ "aliases": {
6
+ "actions": "actions-theme-universal-theme",
7
+ "avatar": "avatar-theme-universal-theme",
8
+ "badge": "badge-theme-universal-theme",
9
+ "button": "button-theme-universal-theme",
10
+ "comments": "comments-theme-universal-theme",
11
+ "contentRow": "contentRow-theme-universal-theme",
12
+ "flexboxContainer": "flexboxContainer-theme-universal-theme",
13
+ "listItem": "listItem-theme-universal-theme",
14
+ "mediaList": "mediaList-theme-universal-theme",
15
+ "metricCard": "metricCard-theme-universal-theme",
16
+ "timeline": "timeline-theme-universal-theme"
17
+ },
18
+ "components": {
19
+ "actions": {
20
+ "backend": "repo-theme-export",
21
+ "theme": "universal-theme",
22
+ "requestedName": "actions",
23
+ "resolvedName": "actions-theme-universal-theme",
24
+ "sourceDir": "actions-theme-universal-theme",
25
+ "plugin": {
26
+ "identifier": "actions",
27
+ "name": "Actions",
28
+ "staticId": "THEME_42$ACTIONS",
29
+ "availableAs": [],
30
+ "reportBody": null,
31
+ "reportRow": null,
32
+ "reportGroup": null,
33
+ "reportContainer": null,
34
+ "numberOfLazyLoadingSkeletons": null
35
+ },
36
+ "attributeGroups": [],
37
+ "actionPositions": [
38
+ {
39
+ "identifier": "actions",
40
+ "name": "Actions",
41
+ "staticId": "ACTIONS",
42
+ "sequence": "10",
43
+ "positionType": "template"
44
+ }
45
+ ],
46
+ "actionTemplates": [
47
+ {
48
+ "identifier": "button",
49
+ "name": "Button",
50
+ "type": "button",
51
+ "staticId": "button"
52
+ },
53
+ {
54
+ "identifier": "menu",
55
+ "name": "Menu",
56
+ "type": "menu",
57
+ "staticId": "menu"
58
+ }
59
+ ],
60
+ "slots": [],
61
+ "customAttributes": [
62
+ {
63
+ "identifier": "ACTIONS_WRAP",
64
+ "apexlangName": "wrapActions",
65
+ "attributeId": "1",
66
+ "name": "Wrap Actions",
67
+ "type": "yesNo",
68
+ "required": false,
69
+ "defaultValue": null,
70
+ "sampleDataValue": null,
71
+ "attributeGroup": null,
72
+ "sequence": "10",
73
+ "dependencyAttribute": null,
74
+ "dependencyCondition": null,
75
+ "dependencyValue": null,
76
+ "escapeMode": "htmlAttribute",
77
+ "helpText": "This will enable action buttons to wrap when a column or container is too thin for the contents.",
78
+ "entries": []
79
+ },
80
+ {
81
+ "identifier": "GAP",
82
+ "apexlangName": "gap",
83
+ "attributeId": "3",
84
+ "name": "Spacing",
85
+ "type": "selectList",
86
+ "required": false,
87
+ "defaultValue": null,
88
+ "sampleDataValue": null,
89
+ "attributeGroup": null,
90
+ "sequence": "30",
91
+ "dependencyAttribute": null,
92
+ "dependencyCondition": null,
93
+ "dependencyValue": null,
94
+ "escapeMode": "htmlAttribute",
95
+ "helpText": "Large (8px) spacing between actions.",
96
+ "entries": [
97
+ {
98
+ "name": "large",
99
+ "display": "Large",
100
+ "returnValue": "gapLarge",
101
+ "sequence": "40"
102
+ },
103
+ {
104
+ "name": "medium",
105
+ "display": "Medium",
106
+ "returnValue": "gapMedium",
107
+ "sequence": "30"
108
+ },
109
+ {
110
+ "name": "none",
111
+ "display": "None",
112
+ "returnValue": "gapNone",
113
+ "sequence": "10"
114
+ },
115
+ {
116
+ "name": "small",
117
+ "display": "Small",
118
+ "returnValue": "gapSmall",
119
+ "sequence": "20"
120
+ }
121
+ ]
122
+ },
123
+ {
124
+ "identifier": "SIZE",
125
+ "apexlangName": "size",
126
+ "attributeId": "2",
127
+ "name": "Size",
128
+ "type": "selectList",
129
+ "required": false,
130
+ "defaultValue": null,
131
+ "sampleDataValue": null,
132
+ "attributeGroup": null,
133
+ "sequence": "20",
134
+ "dependencyAttribute": null,
135
+ "dependencyCondition": null,
136
+ "dependencyValue": null,
137
+ "escapeMode": "htmlAttribute",
138
+ "helpText": "Sets the size of the specific actions.",
139
+ "entries": [
140
+ {
141
+ "name": "extraLarge",
142
+ "display": "Extra Large",
143
+ "returnValue": "xlarge",
144
+ "sequence": "50"
145
+ },
146
+ {
147
+ "name": "large",
148
+ "display": "Large",
149
+ "returnValue": "large",
150
+ "sequence": "40"
151
+ },
152
+ {
153
+ "name": "medium",
154
+ "display": "Medium",
155
+ "returnValue": "medium",
156
+ "sequence": "30"
157
+ },
158
+ {
159
+ "name": "small",
160
+ "display": "Small",
161
+ "returnValue": "small",
162
+ "sequence": "20"
163
+ },
164
+ {
165
+ "name": "tiny",
166
+ "display": "Tiny",
167
+ "returnValue": "tiny",
168
+ "sequence": "10"
169
+ }
170
+ ]
171
+ }
172
+ ]
173
+ },
174
+ "avatar": {
175
+ "backend": "repo-theme-export",
176
+ "theme": "universal-theme",
177
+ "requestedName": "avatar",
178
+ "resolvedName": "avatar-theme-universal-theme",
179
+ "sourceDir": "avatar-theme-universal-theme",
180
+ "plugin": {
181
+ "identifier": "avatar",
182
+ "name": "Avatar",
183
+ "staticId": "THEME_42$AVATAR",
184
+ "availableAs": [
185
+ "partial",
186
+ "report"
187
+ ],
188
+ "reportBody": "<ul class=\"t-Avatars {if SPACING/}#SPACING#{endif/} #APEX$COMPONENT_CSS_CLASSES#\">#APEX$ROWS#</ul>",
189
+ "reportRow": "<li class=\"t-Avatars-item\" #APEX$ROW_IDENTIFICATION#>#APEX$PARTIAL#</li>",
190
+ "reportGroup": "<li class=\"t-Avatar-groupItem\" #APEX$GROUP_IDENTIFICATION#>\n {if ?GROUP_TITLE/}\n <div class=\"t-Avatar-groupHeader\">\n {if ?GROUP_ICON/}<span class=\"t-Avatar-groupIcon #GROUP_ICON#\" aria-hidden=\"true\"></span>{endif/}\n <h2 class=\"t-Avatar-groupTitle\" id=\"#APEX$DOM_ID#_heading\">#GROUP_TITLE#</h2>\n </div>\n {endif/}\n <ul class=\"t-Avatar-groupItems\">#APEX$ROWS#</ul>\n </li>",
191
+ "reportContainer": null,
192
+ "numberOfLazyLoadingSkeletons": "3"
193
+ },
194
+ "attributeGroups": [
195
+ {
196
+ "identifier": "grouping",
197
+ "name": "Grouping",
198
+ "sequence": "10",
199
+ "staticId": "grouping"
200
+ }
201
+ ],
202
+ "actionPositions": [
203
+ {
204
+ "identifier": "link",
205
+ "name": "Link",
206
+ "staticId": "LINK",
207
+ "sequence": "10",
208
+ "positionType": null
209
+ }
210
+ ],
211
+ "actionTemplates": [],
212
+ "slots": [],
213
+ "customAttributes": [
214
+ {
215
+ "identifier": "CSS_CLASSES",
216
+ "apexlangName": "cssClasses",
217
+ "attributeId": "8",
218
+ "name": "CSS Classes",
219
+ "type": "text",
220
+ "required": false,
221
+ "defaultValue": null,
222
+ "sampleDataValue": null,
223
+ "attributeGroup": null,
224
+ "sequence": "90",
225
+ "dependencyAttribute": null,
226
+ "dependencyCondition": null,
227
+ "dependencyValue": null,
228
+ "escapeMode": "htmlAttribute",
229
+ "helpText": "Enter classes to add to this component. You may add multiple classes by separating them with a space.",
230
+ "entries": []
231
+ },
232
+ {
233
+ "identifier": "DESCRIPTION",
234
+ "apexlangName": "description",
235
+ "attributeId": "3",
236
+ "name": "Description",
237
+ "type": "text",
238
+ "required": false,
239
+ "defaultValue": null,
240
+ "sampleDataValue": "&NAME. - &JOB.",
241
+ "attributeGroup": null,
242
+ "sequence": "55",
243
+ "dependencyAttribute": null,
244
+ "dependencyCondition": null,
245
+ "dependencyValue": null,
246
+ "escapeMode": "htmlAttribute",
247
+ "helpText": "Enter a short description of the image/icon or select a source column from the quick pick options. This will be used as title & alt text for the avatar image/icon.",
248
+ "entries": []
249
+ },
250
+ {
251
+ "identifier": "GROUP_ICON",
252
+ "apexlangName": "groupIcon",
253
+ "attributeId": "11",
254
+ "name": "Icon",
255
+ "type": "icon",
256
+ "required": false,
257
+ "defaultValue": null,
258
+ "sampleDataValue": null,
259
+ "attributeGroup": "@grouping",
260
+ "sequence": "110",
261
+ "dependencyAttribute": "@GROUP_TITLE/reportGroup",
262
+ "dependencyCondition": "isNotNull",
263
+ "dependencyValue": null,
264
+ "escapeMode": "htmlAttribute",
265
+ "helpText": null,
266
+ "entries": []
267
+ },
268
+ {
269
+ "identifier": "GROUP_TITLE",
270
+ "apexlangName": "groupTitle",
271
+ "attributeId": "10",
272
+ "name": "Title",
273
+ "type": "html",
274
+ "required": false,
275
+ "defaultValue": null,
276
+ "sampleDataValue": null,
277
+ "attributeGroup": "@grouping",
278
+ "sequence": "100",
279
+ "dependencyAttribute": null,
280
+ "dependencyCondition": null,
281
+ "dependencyValue": null,
282
+ "escapeMode": "raw",
283
+ "helpText": null,
284
+ "entries": []
285
+ },
286
+ {
287
+ "identifier": "ICON",
288
+ "apexlangName": "icon",
289
+ "attributeId": "5",
290
+ "name": "Icon",
291
+ "type": "icon",
292
+ "required": false,
293
+ "defaultValue": null,
294
+ "sampleDataValue": null,
295
+ "attributeGroup": null,
296
+ "sequence": "50",
297
+ "dependencyAttribute": "@TYPE/component",
298
+ "dependencyCondition": "=",
299
+ "dependencyValue": "ICON",
300
+ "escapeMode": "htmlAttribute",
301
+ "helpText": "Enter an icon class or use the Pick Icon dialog to select the icon you want to add to display in the avatar.",
302
+ "entries": []
303
+ },
304
+ {
305
+ "identifier": "IMAGE",
306
+ "apexlangName": "image",
307
+ "attributeId": "2",
308
+ "name": "Image",
309
+ "type": "media",
310
+ "required": false,
311
+ "defaultValue": null,
312
+ "sampleDataValue": "{\"source\":\"URL\",\"url\":\"#APEX_FILES#sample_data/employees/&AVATAR_IMAGE.\"}",
313
+ "attributeGroup": null,
314
+ "sequence": "20",
315
+ "dependencyAttribute": "@TYPE/component",
316
+ "dependencyCondition": "=",
317
+ "dependencyValue": "IMAGE",
318
+ "escapeMode": "htmlAttribute",
319
+ "helpText": "<p>Use the Media popup dialog to select a source for the avatar image.</p>\n \n <p>Available options include:</p>\n <ul>\n <li>URL</li>\n <li>BLOB Column</li>\n <li>URL Column</li>\n </ul>",
320
+ "entries": []
321
+ },
322
+ {
323
+ "identifier": "INITIALS",
324
+ "apexlangName": "initials",
325
+ "attributeId": "4",
326
+ "name": "Initials",
327
+ "type": "sessionStateValue",
328
+ "required": false,
329
+ "defaultValue": null,
330
+ "sampleDataValue": null,
331
+ "attributeGroup": null,
332
+ "sequence": "40",
333
+ "dependencyAttribute": "@TYPE/component",
334
+ "dependencyCondition": "=",
335
+ "dependencyValue": "INITIALS",
336
+ "escapeMode": null,
337
+ "helpText": "Select the source column to be displayed within each avatar. Only varchar2 data types are supported.",
338
+ "entries": []
339
+ },
340
+ {
341
+ "identifier": "SHAPE",
342
+ "apexlangName": "shape",
343
+ "attributeId": "6",
344
+ "name": "Shape",
345
+ "type": "selectList",
346
+ "required": false,
347
+ "defaultValue": null,
348
+ "sampleDataValue": "t-Avatar--rounded",
349
+ "attributeGroup": null,
350
+ "sequence": "60",
351
+ "dependencyAttribute": null,
352
+ "dependencyCondition": null,
353
+ "dependencyValue": null,
354
+ "escapeMode": "htmlAttribute",
355
+ "helpText": "Select the shape of the avatar. Default inherits the shape set by the containing template.",
356
+ "entries": [
357
+ {
358
+ "name": "circular",
359
+ "display": "Circular",
360
+ "returnValue": "t-Avatar--circle",
361
+ "sequence": "20"
362
+ },
363
+ {
364
+ "name": "noShape",
365
+ "display": "No Shape",
366
+ "returnValue": "t-Avatar--noShape",
367
+ "sequence": "40"
368
+ },
369
+ {
370
+ "name": "rounded",
371
+ "display": "Rounded",
372
+ "returnValue": "t-Avatar--rounded",
373
+ "sequence": "10"
374
+ },
375
+ {
376
+ "name": "square",
377
+ "display": "Square",
378
+ "returnValue": "t-Avatar--square",
379
+ "sequence": "30"
380
+ }
381
+ ]
382
+ },
383
+ {
384
+ "identifier": "SIZE",
385
+ "apexlangName": "size",
386
+ "attributeId": "7",
387
+ "name": "Size",
388
+ "type": "selectList",
389
+ "required": false,
390
+ "defaultValue": null,
391
+ "sampleDataValue": "t-Avatar--xl",
392
+ "attributeGroup": null,
393
+ "sequence": "70",
394
+ "dependencyAttribute": null,
395
+ "dependencyCondition": null,
396
+ "dependencyValue": null,
397
+ "escapeMode": "htmlAttribute",
398
+ "helpText": "Set the size of the avatar. The default inherits the sizing set by the containing template.",
399
+ "entries": [
400
+ {
401
+ "name": "extraExtraLarge",
402
+ "display": "Extra Extra Large",
403
+ "returnValue": "t-Avatar--xxl",
404
+ "sequence": "70"
405
+ },
406
+ {
407
+ "name": "extraExtraSmall",
408
+ "display": "Extra Extra Small",
409
+ "returnValue": "t-Avatar--xxs",
410
+ "sequence": "10"
411
+ },
412
+ {
413
+ "name": "extraLarge",
414
+ "display": "Extra Large",
415
+ "returnValue": "t-Avatar--xl",
416
+ "sequence": "60"
417
+ },
418
+ {
419
+ "name": "extraSmall",
420
+ "display": "Extra Small",
421
+ "returnValue": "t-Avatar--xs",
422
+ "sequence": "20"
423
+ },
424
+ {
425
+ "name": "large",
426
+ "display": "Large",
427
+ "returnValue": "t-Avatar--lg",
428
+ "sequence": "50"
429
+ },
430
+ {
431
+ "name": "medium",
432
+ "display": "Medium",
433
+ "returnValue": "t-Avatar--md",
434
+ "sequence": "40"
435
+ },
436
+ {
437
+ "name": "small",
438
+ "display": "Small",
439
+ "returnValue": "t-Avatar--sm",
440
+ "sequence": "30"
441
+ }
442
+ ]
443
+ },
444
+ {
445
+ "identifier": "SPACING",
446
+ "apexlangName": "spacing",
447
+ "attributeId": "9",
448
+ "name": "Spacing",
449
+ "type": "selectList",
450
+ "required": false,
451
+ "defaultValue": null,
452
+ "sampleDataValue": "t-Avatars--spacingLg",
453
+ "attributeGroup": null,
454
+ "sequence": "80",
455
+ "dependencyAttribute": null,
456
+ "dependencyCondition": null,
457
+ "dependencyValue": null,
458
+ "escapeMode": "htmlAttribute",
459
+ "helpText": "This option will create spacing between the avatars or allow them to stack on top of each other.",
460
+ "entries": [
461
+ {
462
+ "name": "auto",
463
+ "display": "Auto",
464
+ "returnValue": "t-Avatars--spacingAuto",
465
+ "sequence": "60"
466
+ },
467
+ {
468
+ "name": "large",
469
+ "display": "Large",
470
+ "returnValue": "t-Avatars--spacingLg",
471
+ "sequence": "40"
472
+ },
473
+ {
474
+ "name": "medium",
475
+ "display": "Medium",
476
+ "returnValue": "t-Avatars--spacingMd",
477
+ "sequence": "30"
478
+ },
479
+ {
480
+ "name": "none",
481
+ "display": "None",
482
+ "returnValue": "t-Avatars--spacingNone",
483
+ "sequence": "10"
484
+ },
485
+ {
486
+ "name": "small",
487
+ "display": "Small",
488
+ "returnValue": "t-Avatars--spacingSm",
489
+ "sequence": "20"
490
+ },
491
+ {
492
+ "name": "stack",
493
+ "display": "Stack",
494
+ "returnValue": "t-Avatars--spacingStack",
495
+ "sequence": "50"
496
+ }
497
+ ]
498
+ },
499
+ {
500
+ "identifier": "TYPE",
501
+ "apexlangName": "type",
502
+ "attributeId": "1",
503
+ "name": "Type",
504
+ "type": "selectList",
505
+ "required": false,
506
+ "defaultValue": "IMAGE",
507
+ "sampleDataValue": "IMAGE",
508
+ "attributeGroup": null,
509
+ "sequence": "10",
510
+ "dependencyAttribute": null,
511
+ "dependencyCondition": null,
512
+ "dependencyValue": null,
513
+ "escapeMode": null,
514
+ "helpText": "Select the type of content that will be displayed in the avatar.",
515
+ "entries": [
516
+ {
517
+ "name": "icon",
518
+ "display": "Icon",
519
+ "returnValue": "ICON",
520
+ "sequence": "30"
521
+ },
522
+ {
523
+ "name": "image",
524
+ "display": "Image",
525
+ "returnValue": "IMAGE",
526
+ "sequence": "10"
527
+ },
528
+ {
529
+ "name": "initials",
530
+ "display": "Initials",
531
+ "returnValue": "INITIALS",
532
+ "sequence": "20"
533
+ }
534
+ ]
535
+ }
536
+ ]
537
+ },
538
+ "badge": {
539
+ "backend": "repo-theme-export",
540
+ "theme": "universal-theme",
541
+ "requestedName": "badge",
542
+ "resolvedName": "badge-theme-universal-theme",
543
+ "sourceDir": "badge-theme-universal-theme",
544
+ "plugin": {
545
+ "identifier": "badge",
546
+ "name": "Badge",
547
+ "staticId": "THEME_42$BADGE",
548
+ "availableAs": [
549
+ "partial",
550
+ "report"
551
+ ],
552
+ "reportBody": "{if !APEX$HAS_MESSAGE/}\n <ul class=\"t-Badges #APEX$COMPONENT_CSS_CLASSES#\">#APEX$ROWS#</ul>\n {endif/}",
553
+ "reportRow": "<li class=\"t-Badges-item\" #APEX$ROW_IDENTIFICATION#>#APEX$PARTIAL#</li>",
554
+ "reportGroup": null,
555
+ "reportContainer": null,
556
+ "numberOfLazyLoadingSkeletons": "1"
557
+ },
558
+ "attributeGroups": [],
559
+ "actionPositions": [
560
+ {
561
+ "identifier": "link",
562
+ "name": "Link",
563
+ "staticId": "LINK",
564
+ "sequence": "10",
565
+ "positionType": null
566
+ }
567
+ ],
568
+ "actionTemplates": [],
569
+ "slots": [],
570
+ "customAttributes": [
571
+ {
572
+ "identifier": "ICON",
573
+ "apexlangName": "icon",
574
+ "attributeId": "4",
575
+ "name": "Icon",
576
+ "type": "icon",
577
+ "required": false,
578
+ "defaultValue": null,
579
+ "sampleDataValue": null,
580
+ "attributeGroup": null,
581
+ "sequence": "40",
582
+ "dependencyAttribute": null,
583
+ "dependencyCondition": null,
584
+ "dependencyValue": null,
585
+ "escapeMode": "htmlAttribute",
586
+ "helpText": "Enter an icon class or use the Pick Icon dialog to select the icon you want to add to display in the badge.",
587
+ "entries": []
588
+ },
589
+ {
590
+ "identifier": "LABEL",
591
+ "apexlangName": "label",
592
+ "attributeId": "1",
593
+ "name": "Label",
594
+ "type": "text",
595
+ "required": true,
596
+ "defaultValue": null,
597
+ "sampleDataValue": "&PRODUCT_NAME.",
598
+ "attributeGroup": null,
599
+ "sequence": "10",
600
+ "dependencyAttribute": null,
601
+ "dependencyCondition": null,
602
+ "dependencyValue": null,
603
+ "escapeMode": "raw",
604
+ "helpText": "Enter a value for the badge label or select a source column from the quick pick options.",
605
+ "entries": []
606
+ },
607
+ {
608
+ "identifier": "LABEL_DISPLAY",
609
+ "apexlangName": "displayLabel",
610
+ "attributeId": "5",
611
+ "name": "Display Label",
612
+ "type": "yesNo",
613
+ "required": false,
614
+ "defaultValue": null,
615
+ "sampleDataValue": "Y",
616
+ "attributeGroup": null,
617
+ "sequence": "50",
618
+ "dependencyAttribute": null,
619
+ "dependencyCondition": null,
620
+ "dependencyValue": null,
621
+ "escapeMode": "htmlAttribute",
622
+ "helpText": "Specify whether to display or hide the badge label. When set to Yes, the badge label will be displayed in addition to the badge value. When set to No, only the badge value will be displayed.",
623
+ "entries": []
624
+ },
625
+ {
626
+ "identifier": "SHAPE",
627
+ "apexlangName": "shape",
628
+ "attributeId": "7",
629
+ "name": "Shape",
630
+ "type": "selectList",
631
+ "required": false,
632
+ "defaultValue": null,
633
+ "sampleDataValue": null,
634
+ "attributeGroup": null,
635
+ "sequence": "70",
636
+ "dependencyAttribute": null,
637
+ "dependencyCondition": null,
638
+ "dependencyValue": null,
639
+ "escapeMode": "htmlAttribute",
640
+ "helpText": "Select the shape of the badge. Default inherits the shape set by the containing template.",
641
+ "entries": [
642
+ {
643
+ "name": "circular",
644
+ "display": "Circular",
645
+ "returnValue": "t-Badge--circle",
646
+ "sequence": "20"
647
+ },
648
+ {
649
+ "name": "rounded",
650
+ "display": "Rounded",
651
+ "returnValue": "t-Badge--rounded",
652
+ "sequence": "10"
653
+ },
654
+ {
655
+ "name": "square",
656
+ "display": "Square",
657
+ "returnValue": "t-Badge--square",
658
+ "sequence": "30"
659
+ }
660
+ ]
661
+ },
662
+ {
663
+ "identifier": "SIZE",
664
+ "apexlangName": "size",
665
+ "attributeId": "8",
666
+ "name": "Size",
667
+ "type": "selectList",
668
+ "required": false,
669
+ "defaultValue": null,
670
+ "sampleDataValue": "t-Badge--lg",
671
+ "attributeGroup": null,
672
+ "sequence": "80",
673
+ "dependencyAttribute": null,
674
+ "dependencyCondition": null,
675
+ "dependencyValue": null,
676
+ "escapeMode": "htmlAttribute",
677
+ "helpText": "Set the size of the badge. The default inherits the sizing set by the containing template.",
678
+ "entries": [
679
+ {
680
+ "name": "large",
681
+ "display": "Large",
682
+ "returnValue": "t-Badge--lg",
683
+ "sequence": "30"
684
+ },
685
+ {
686
+ "name": "medium",
687
+ "display": "Medium",
688
+ "returnValue": "t-Badge--md",
689
+ "sequence": "20"
690
+ },
691
+ {
692
+ "name": "small",
693
+ "display": "Small",
694
+ "returnValue": "t-Badge--sm",
695
+ "sequence": "10"
696
+ }
697
+ ]
698
+ },
699
+ {
700
+ "identifier": "STATE",
701
+ "apexlangName": "state",
702
+ "attributeId": "3",
703
+ "name": "State",
704
+ "type": "sessionStateValue",
705
+ "required": false,
706
+ "defaultValue": null,
707
+ "sampleDataValue": null,
708
+ "attributeGroup": null,
709
+ "sequence": "30",
710
+ "dependencyAttribute": null,
711
+ "dependencyCondition": null,
712
+ "dependencyValue": null,
713
+ "escapeMode": "htmlAttribute",
714
+ "helpText": "Select the source column for the state of the badge. Substitute column value with \"danger\", \"warning\", \"success\" or \"info\" for default styling.",
715
+ "entries": []
716
+ },
717
+ {
718
+ "identifier": "STYLE",
719
+ "apexlangName": "style",
720
+ "attributeId": "6",
721
+ "name": "Style",
722
+ "type": "selectList",
723
+ "required": false,
724
+ "defaultValue": null,
725
+ "sampleDataValue": null,
726
+ "attributeGroup": null,
727
+ "sequence": "60",
728
+ "dependencyAttribute": null,
729
+ "dependencyCondition": null,
730
+ "dependencyValue": null,
731
+ "escapeMode": "htmlAttribute",
732
+ "helpText": "Select the badge style. Default inherits the style set by the containing template.",
733
+ "entries": [
734
+ {
735
+ "name": "outline",
736
+ "display": "Outline",
737
+ "returnValue": "t-Badge--outline",
738
+ "sequence": "20"
739
+ },
740
+ {
741
+ "name": "subtle",
742
+ "display": "Subtle",
743
+ "returnValue": "t-Badge--subtle",
744
+ "sequence": "10"
745
+ }
746
+ ]
747
+ },
748
+ {
749
+ "identifier": "VALUE",
750
+ "apexlangName": "value",
751
+ "attributeId": "2",
752
+ "name": "Value",
753
+ "type": "sessionStateValue",
754
+ "required": true,
755
+ "defaultValue": null,
756
+ "sampleDataValue": "PRICE",
757
+ "attributeGroup": null,
758
+ "sequence": "20",
759
+ "dependencyAttribute": null,
760
+ "dependencyCondition": null,
761
+ "dependencyValue": null,
762
+ "escapeMode": "stripHtml",
763
+ "helpText": "Select a source column for the badge value.",
764
+ "entries": []
765
+ }
766
+ ]
767
+ },
768
+ "button": {
769
+ "backend": "repo-theme-export",
770
+ "theme": "universal-theme",
771
+ "requestedName": "button",
772
+ "resolvedName": "button-theme-universal-theme",
773
+ "sourceDir": "button-theme-universal-theme",
774
+ "plugin": {
775
+ "identifier": "button",
776
+ "name": "Button",
777
+ "staticId": "THEME_42$BUTTON",
778
+ "availableAs": [],
779
+ "reportBody": null,
780
+ "reportRow": null,
781
+ "reportGroup": null,
782
+ "reportContainer": null,
783
+ "numberOfLazyLoadingSkeletons": null
784
+ },
785
+ "attributeGroups": [],
786
+ "actionPositions": [],
787
+ "actionTemplates": [],
788
+ "slots": [],
789
+ "customAttributes": [
790
+ {
791
+ "identifier": "CSS_CLASSES",
792
+ "apexlangName": "cssClasses",
793
+ "attributeId": "5",
794
+ "name": "CSS Classes",
795
+ "type": "text",
796
+ "required": false,
797
+ "defaultValue": null,
798
+ "sampleDataValue": null,
799
+ "attributeGroup": null,
800
+ "sequence": "50",
801
+ "dependencyAttribute": null,
802
+ "dependencyCondition": null,
803
+ "dependencyValue": null,
804
+ "escapeMode": "htmlAttribute",
805
+ "helpText": null,
806
+ "entries": []
807
+ },
808
+ {
809
+ "identifier": "ICON_CLASSES",
810
+ "apexlangName": "iconClasses",
811
+ "attributeId": "4",
812
+ "name": "Icon Classes",
813
+ "type": "icon",
814
+ "required": false,
815
+ "defaultValue": null,
816
+ "sampleDataValue": null,
817
+ "attributeGroup": null,
818
+ "sequence": "40",
819
+ "dependencyAttribute": null,
820
+ "dependencyCondition": null,
821
+ "dependencyValue": null,
822
+ "escapeMode": "htmlAttribute",
823
+ "helpText": null,
824
+ "entries": []
825
+ },
826
+ {
827
+ "identifier": "IS_DISABLED",
828
+ "apexlangName": "isDisabled",
829
+ "attributeId": "6",
830
+ "name": "Is Disabled",
831
+ "type": "yesNo",
832
+ "required": false,
833
+ "defaultValue": null,
834
+ "sampleDataValue": null,
835
+ "attributeGroup": null,
836
+ "sequence": "60",
837
+ "dependencyAttribute": null,
838
+ "dependencyCondition": null,
839
+ "dependencyValue": null,
840
+ "escapeMode": null,
841
+ "helpText": null,
842
+ "entries": []
843
+ },
844
+ {
845
+ "identifier": "IS_HOT",
846
+ "apexlangName": "isHot",
847
+ "attributeId": "7",
848
+ "name": "Is Hot",
849
+ "type": "yesNo",
850
+ "required": false,
851
+ "defaultValue": null,
852
+ "sampleDataValue": null,
853
+ "attributeGroup": null,
854
+ "sequence": "70",
855
+ "dependencyAttribute": null,
856
+ "dependencyCondition": null,
857
+ "dependencyValue": null,
858
+ "escapeMode": null,
859
+ "helpText": null,
860
+ "entries": []
861
+ },
862
+ {
863
+ "identifier": "IS_ICON_ONLY",
864
+ "apexlangName": "isIconOnly",
865
+ "attributeId": "8",
866
+ "name": "Is Icon Only",
867
+ "type": "yesNo",
868
+ "required": false,
869
+ "defaultValue": null,
870
+ "sampleDataValue": null,
871
+ "attributeGroup": null,
872
+ "sequence": "80",
873
+ "dependencyAttribute": null,
874
+ "dependencyCondition": null,
875
+ "dependencyValue": null,
876
+ "escapeMode": null,
877
+ "helpText": null,
878
+ "entries": []
879
+ },
880
+ {
881
+ "identifier": "LABEL",
882
+ "apexlangName": "label",
883
+ "attributeId": "1",
884
+ "name": "Label",
885
+ "type": "text",
886
+ "required": false,
887
+ "defaultValue": null,
888
+ "sampleDataValue": null,
889
+ "attributeGroup": null,
890
+ "sequence": "10",
891
+ "dependencyAttribute": null,
892
+ "dependencyCondition": null,
893
+ "dependencyValue": null,
894
+ "escapeMode": "raw",
895
+ "helpText": null,
896
+ "entries": []
897
+ },
898
+ {
899
+ "identifier": "LINK_ATTR",
900
+ "apexlangName": "linkAttribute",
901
+ "attributeId": "3",
902
+ "name": "Link Attribute",
903
+ "type": "text",
904
+ "required": false,
905
+ "defaultValue": null,
906
+ "sampleDataValue": null,
907
+ "attributeGroup": null,
908
+ "sequence": "30",
909
+ "dependencyAttribute": null,
910
+ "dependencyCondition": null,
911
+ "dependencyValue": null,
912
+ "escapeMode": "raw",
913
+ "helpText": null,
914
+ "entries": []
915
+ },
916
+ {
917
+ "identifier": "LINK_URL",
918
+ "apexlangName": "linkUrl",
919
+ "attributeId": "2",
920
+ "name": "Link URL",
921
+ "type": "linkToTargetPageUrl",
922
+ "required": false,
923
+ "defaultValue": null,
924
+ "sampleDataValue": null,
925
+ "attributeGroup": null,
926
+ "sequence": "20",
927
+ "dependencyAttribute": null,
928
+ "dependencyCondition": null,
929
+ "dependencyValue": null,
930
+ "escapeMode": "htmlAttribute",
931
+ "helpText": null,
932
+ "entries": []
933
+ },
934
+ {
935
+ "identifier": "MENU_ID",
936
+ "apexlangName": "menuId",
937
+ "attributeId": "9",
938
+ "name": "Menu ID",
939
+ "type": "text",
940
+ "required": false,
941
+ "defaultValue": null,
942
+ "sampleDataValue": null,
943
+ "attributeGroup": null,
944
+ "sequence": "90",
945
+ "dependencyAttribute": null,
946
+ "dependencyCondition": null,
947
+ "dependencyValue": null,
948
+ "escapeMode": "htmlAttribute",
949
+ "helpText": null,
950
+ "entries": []
951
+ }
952
+ ]
953
+ },
954
+ "comments": {
955
+ "backend": "repo-theme-export",
956
+ "theme": "universal-theme",
957
+ "requestedName": "comments",
958
+ "resolvedName": "comments-theme-universal-theme",
959
+ "sourceDir": "comments-theme-universal-theme",
960
+ "plugin": {
961
+ "identifier": "comments",
962
+ "name": "Comments",
963
+ "staticId": "THEME_42$COMMENTS",
964
+ "availableAs": [
965
+ "partial",
966
+ "report"
967
+ ],
968
+ "reportBody": "<ul class=\"t-Comments{if ?STYLE/} #STYLE#{endif/} {if APPLY_THEME_COLORS/} u-colors{endif/} #APEX$COMPONENT_CSS_CLASSES#\">#APEX$ROWS#</ul>",
969
+ "reportRow": "<li class=\"t-Comments-item {if ?ALIGNMENT/}t-Comments-item--#ALIGNMENT#{endif/}\" #APEX$ROW_IDENTIFICATION#>#APEX$PARTIAL#</li>",
970
+ "reportGroup": "<li class=\"t-Comments-groupItem\" #APEX$GROUP_IDENTIFICATION#>\n {if ?GROUP_TITLE/}\n <div class=\"t-Comments-groupHeader\">\n {if ?GROUP_ICON/}<span class=\"t-Comments-groupIcon #GROUP_ICON#\" aria-hidden=\"true\"></span>{endif/}\n <h2 class=\"t-Comments-groupTitle\" id=\"#APEX$DOM_ID#_heading\">#GROUP_TITLE#</h2>\n </div>\n {endif/}\n <ul class=\"t-Comments-groupItems\">#APEX$ROWS#</ul>\n </li>",
971
+ "reportContainer": null,
972
+ "numberOfLazyLoadingSkeletons": "3"
973
+ },
974
+ "attributeGroups": [
975
+ {
976
+ "identifier": "avatar",
977
+ "name": "Avatar",
978
+ "sequence": "10",
979
+ "staticId": "avatar"
980
+ },
981
+ {
982
+ "identifier": "grouping",
983
+ "name": "Grouping",
984
+ "sequence": "20",
985
+ "staticId": "grouping"
986
+ }
987
+ ],
988
+ "actionPositions": [
989
+ {
990
+ "identifier": "actions",
991
+ "name": "Actions",
992
+ "staticId": "ACTIONS",
993
+ "sequence": "10",
994
+ "positionType": "template"
995
+ },
996
+ {
997
+ "identifier": "avatarLink",
998
+ "name": "Avatar Link",
999
+ "staticId": "AVATAR_LINK",
1000
+ "sequence": "20",
1001
+ "positionType": null
1002
+ },
1003
+ {
1004
+ "identifier": "userNameLink",
1005
+ "name": "User Name Link",
1006
+ "staticId": "USER_NAME_LINK",
1007
+ "sequence": "30",
1008
+ "positionType": null
1009
+ }
1010
+ ],
1011
+ "actionTemplates": [
1012
+ {
1013
+ "identifier": "link",
1014
+ "name": "Link",
1015
+ "type": "button",
1016
+ "staticId": "Link"
1017
+ }
1018
+ ],
1019
+ "slots": [],
1020
+ "customAttributes": [
1021
+ {
1022
+ "identifier": "ALIGNMENT",
1023
+ "apexlangName": "alignment",
1024
+ "attributeId": "19",
1025
+ "name": "Alignment",
1026
+ "type": "text",
1027
+ "required": false,
1028
+ "defaultValue": null,
1029
+ "sampleDataValue": null,
1030
+ "attributeGroup": null,
1031
+ "sequence": "125",
1032
+ "dependencyAttribute": null,
1033
+ "dependencyCondition": null,
1034
+ "dependencyValue": null,
1035
+ "escapeMode": "htmlAttribute",
1036
+ "helpText": "Align the comment by passing a value of \"inbound\" (appearing on the side where comments typically are received) or \"outbound\" (positioned on the opposite side, where comments are typically sent).",
1037
+ "entries": []
1038
+ },
1039
+ {
1040
+ "identifier": "APPLY_THEME_COLORS",
1041
+ "apexlangName": "applyThemeColors",
1042
+ "attributeId": "13",
1043
+ "name": "Apply Theme Colors",
1044
+ "type": "yesNo",
1045
+ "required": false,
1046
+ "defaultValue": "true",
1047
+ "sampleDataValue": null,
1048
+ "attributeGroup": null,
1049
+ "sequence": "130",
1050
+ "dependencyAttribute": null,
1051
+ "dependencyCondition": null,
1052
+ "dependencyValue": null,
1053
+ "escapeMode": "htmlAttribute",
1054
+ "helpText": "Specify whether to use the Universal Theme colors for avatar and badge row items. When set to Yes, the u-colors class will be applied to each row. When set to No, a default color will be used instead.",
1055
+ "entries": []
1056
+ },
1057
+ {
1058
+ "identifier": "ATTRIBUTES",
1059
+ "apexlangName": "attributes",
1060
+ "attributeId": "4",
1061
+ "name": "Attributes",
1062
+ "type": "html",
1063
+ "required": false,
1064
+ "defaultValue": null,
1065
+ "sampleDataValue": null,
1066
+ "attributeGroup": null,
1067
+ "sequence": "40",
1068
+ "dependencyAttribute": null,
1069
+ "dependencyCondition": null,
1070
+ "dependencyValue": null,
1071
+ "escapeMode": "raw",
1072
+ "helpText": "Enter some text and/or column substitution strings to be used as the comment attributes.",
1073
+ "entries": []
1074
+ },
1075
+ {
1076
+ "identifier": "AVATAR_CSS_CLASSES",
1077
+ "apexlangName": "cssClasses",
1078
+ "attributeId": "15",
1079
+ "name": "CSS Classes",
1080
+ "type": "text",
1081
+ "required": false,
1082
+ "defaultValue": null,
1083
+ "sampleDataValue": null,
1084
+ "attributeGroup": "@avatar",
1085
+ "sequence": "150",
1086
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
1087
+ "dependencyCondition": "=",
1088
+ "dependencyValue": "Y",
1089
+ "escapeMode": null,
1090
+ "helpText": "Enter CSS classes to add to the visual. You may add multiple classes by separating them with a space.",
1091
+ "entries": []
1092
+ },
1093
+ {
1094
+ "identifier": "AVATAR_DESCRIPTION",
1095
+ "apexlangName": "description",
1096
+ "attributeId": "7",
1097
+ "name": "Description",
1098
+ "type": "text",
1099
+ "required": false,
1100
+ "defaultValue": null,
1101
+ "sampleDataValue": null,
1102
+ "attributeGroup": "@avatar",
1103
+ "sequence": "95",
1104
+ "dependencyAttribute": null,
1105
+ "dependencyCondition": null,
1106
+ "dependencyValue": null,
1107
+ "escapeMode": "htmlAttribute",
1108
+ "helpText": "Enter a short description of the image/icon or select a source column from the quick pick options. This will be used as title & alt text for the avatar image/icon.",
1109
+ "entries": []
1110
+ },
1111
+ {
1112
+ "identifier": "AVATAR_ICON",
1113
+ "apexlangName": "icon",
1114
+ "attributeId": "9",
1115
+ "name": "Icon",
1116
+ "type": "icon",
1117
+ "required": true,
1118
+ "defaultValue": "fa-user",
1119
+ "sampleDataValue": null,
1120
+ "attributeGroup": "@avatar",
1121
+ "sequence": "90",
1122
+ "dependencyAttribute": "@AVATAR_TYPE/component",
1123
+ "dependencyCondition": "=",
1124
+ "dependencyValue": "icon",
1125
+ "escapeMode": "htmlAttribute",
1126
+ "helpText": "Enter an icon class or use the Pick Icon dialog to select the icon you want to add to display in the avatar.",
1127
+ "entries": []
1128
+ },
1129
+ {
1130
+ "identifier": "AVATAR_IMAGE",
1131
+ "apexlangName": "image",
1132
+ "attributeId": "6",
1133
+ "name": "Image",
1134
+ "type": "media",
1135
+ "required": true,
1136
+ "defaultValue": null,
1137
+ "sampleDataValue": null,
1138
+ "attributeGroup": "@avatar",
1139
+ "sequence": "60",
1140
+ "dependencyAttribute": "@AVATAR_TYPE/component",
1141
+ "dependencyCondition": "=",
1142
+ "dependencyValue": "image",
1143
+ "escapeMode": "htmlAttribute",
1144
+ "helpText": "<p>Use the Media popup dialog to select a source for the avatar image.</p>\n \n <p>Available options include:</p>\n <ul>\n <li>URL</li>\n <li>BLOB Column</li>\n <li>URL Column</li>\n </ul>",
1145
+ "entries": []
1146
+ },
1147
+ {
1148
+ "identifier": "AVATAR_INITIALS",
1149
+ "apexlangName": "initials",
1150
+ "attributeId": "8",
1151
+ "name": "Initials",
1152
+ "type": "sessionStateValue",
1153
+ "required": true,
1154
+ "defaultValue": null,
1155
+ "sampleDataValue": "INITIALS",
1156
+ "attributeGroup": "@avatar",
1157
+ "sequence": "80",
1158
+ "dependencyAttribute": "@AVATAR_TYPE/component",
1159
+ "dependencyCondition": "=",
1160
+ "dependencyValue": "initials",
1161
+ "escapeMode": "stripHtml",
1162
+ "helpText": "Select the source column to be displayed within each avatar. Only varchar2 data types are supported.",
1163
+ "entries": []
1164
+ },
1165
+ {
1166
+ "identifier": "AVATAR_SHAPE",
1167
+ "apexlangName": "shape",
1168
+ "attributeId": "10",
1169
+ "name": "Shape",
1170
+ "type": "selectList",
1171
+ "required": true,
1172
+ "defaultValue": "t-Avatar--rounded",
1173
+ "sampleDataValue": null,
1174
+ "attributeGroup": "@avatar",
1175
+ "sequence": "100",
1176
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
1177
+ "dependencyCondition": "=",
1178
+ "dependencyValue": "Y",
1179
+ "escapeMode": "htmlAttribute",
1180
+ "helpText": "Select the shape of the avatar. Default inherits the shape set by the containing template.",
1181
+ "entries": [
1182
+ {
1183
+ "name": "circular",
1184
+ "display": "Circular",
1185
+ "returnValue": "t-Avatar--circle",
1186
+ "sequence": "20"
1187
+ },
1188
+ {
1189
+ "name": "noShape",
1190
+ "display": "No Shape",
1191
+ "returnValue": "t-Avatar--noShape",
1192
+ "sequence": "40"
1193
+ },
1194
+ {
1195
+ "name": "rounded",
1196
+ "display": "Rounded",
1197
+ "returnValue": "t-Avatar--rounded",
1198
+ "sequence": "10"
1199
+ },
1200
+ {
1201
+ "name": "square",
1202
+ "display": "Square",
1203
+ "returnValue": "t-Avatar--square",
1204
+ "sequence": "30"
1205
+ }
1206
+ ]
1207
+ },
1208
+ {
1209
+ "identifier": "AVATAR_TYPE",
1210
+ "apexlangName": "type",
1211
+ "attributeId": "5",
1212
+ "name": "Type",
1213
+ "type": "selectList",
1214
+ "required": true,
1215
+ "defaultValue": "icon",
1216
+ "sampleDataValue": null,
1217
+ "attributeGroup": "@avatar",
1218
+ "sequence": "50",
1219
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
1220
+ "dependencyCondition": "=",
1221
+ "dependencyValue": "Y",
1222
+ "escapeMode": null,
1223
+ "helpText": "Select the type of content that will be displayed in the avatar.",
1224
+ "entries": [
1225
+ {
1226
+ "name": "icon",
1227
+ "display": "Icon",
1228
+ "returnValue": "icon",
1229
+ "sequence": "30"
1230
+ },
1231
+ {
1232
+ "name": "image",
1233
+ "display": "Image",
1234
+ "returnValue": "image",
1235
+ "sequence": "10"
1236
+ },
1237
+ {
1238
+ "name": "initials",
1239
+ "display": "Initials",
1240
+ "returnValue": "initials",
1241
+ "sequence": "20"
1242
+ }
1243
+ ]
1244
+ },
1245
+ {
1246
+ "identifier": "COMMENT_CLASS",
1247
+ "apexlangName": "commentClass",
1248
+ "attributeId": "14",
1249
+ "name": "Comment Class",
1250
+ "type": "text",
1251
+ "required": false,
1252
+ "defaultValue": null,
1253
+ "sampleDataValue": null,
1254
+ "attributeGroup": null,
1255
+ "sequence": "45",
1256
+ "dependencyAttribute": null,
1257
+ "dependencyCondition": null,
1258
+ "dependencyValue": null,
1259
+ "escapeMode": "htmlAttribute",
1260
+ "helpText": "Allows you to pass a class onto individual comments. Example using is-active will highlight the specific comment with a different shade.",
1261
+ "entries": []
1262
+ },
1263
+ {
1264
+ "identifier": "COMMENT_DATE",
1265
+ "apexlangName": "date",
1266
+ "attributeId": "3",
1267
+ "name": "Date",
1268
+ "type": "sessionStateValue",
1269
+ "required": false,
1270
+ "defaultValue": null,
1271
+ "sampleDataValue": "START_DATE",
1272
+ "attributeGroup": null,
1273
+ "sequence": "30",
1274
+ "dependencyAttribute": null,
1275
+ "dependencyCondition": null,
1276
+ "dependencyValue": null,
1277
+ "escapeMode": null,
1278
+ "helpText": "Select a source column containing a date, date range, or time.",
1279
+ "entries": []
1280
+ },
1281
+ {
1282
+ "identifier": "COMMENT_TEXT",
1283
+ "apexlangName": "commentText",
1284
+ "attributeId": "1",
1285
+ "name": "Comment Text",
1286
+ "type": "sessionStateValue",
1287
+ "required": true,
1288
+ "defaultValue": null,
1289
+ "sampleDataValue": "TASK_NAME",
1290
+ "attributeGroup": null,
1291
+ "sequence": "10",
1292
+ "dependencyAttribute": null,
1293
+ "dependencyCondition": null,
1294
+ "dependencyValue": null,
1295
+ "escapeMode": null,
1296
+ "helpText": "Select a source column containing text for user comments.",
1297
+ "entries": []
1298
+ },
1299
+ {
1300
+ "identifier": "DISPLAY_AVATAR",
1301
+ "apexlangName": "displayAvatar",
1302
+ "attributeId": "11",
1303
+ "name": "Display Avatar",
1304
+ "type": "yesNo",
1305
+ "required": false,
1306
+ "defaultValue": "true",
1307
+ "sampleDataValue": "Y",
1308
+ "attributeGroup": null,
1309
+ "sequence": "110",
1310
+ "dependencyAttribute": null,
1311
+ "dependencyCondition": null,
1312
+ "dependencyValue": null,
1313
+ "escapeMode": "htmlAttribute",
1314
+ "helpText": "Specify whether to display or hide the avatar for each row. When set to Yes, an avatar will be displayed with the assigned image, icon, or initials. When set to No, no avatar will be displayed.",
1315
+ "entries": []
1316
+ },
1317
+ {
1318
+ "identifier": "GROUP_ICON",
1319
+ "apexlangName": "groupIcon",
1320
+ "attributeId": "18",
1321
+ "name": "Icon",
1322
+ "type": "icon",
1323
+ "required": false,
1324
+ "defaultValue": null,
1325
+ "sampleDataValue": null,
1326
+ "attributeGroup": "@grouping",
1327
+ "sequence": "180",
1328
+ "dependencyAttribute": "@GROUP_TITLE/reportGroup",
1329
+ "dependencyCondition": "isNotNull",
1330
+ "dependencyValue": null,
1331
+ "escapeMode": "htmlAttribute",
1332
+ "helpText": null,
1333
+ "entries": []
1334
+ },
1335
+ {
1336
+ "identifier": "GROUP_TITLE",
1337
+ "apexlangName": "groupTitle",
1338
+ "attributeId": "17",
1339
+ "name": "Title",
1340
+ "type": "html",
1341
+ "required": false,
1342
+ "defaultValue": null,
1343
+ "sampleDataValue": null,
1344
+ "attributeGroup": "@grouping",
1345
+ "sequence": "170",
1346
+ "dependencyAttribute": null,
1347
+ "dependencyCondition": null,
1348
+ "dependencyValue": null,
1349
+ "escapeMode": "raw",
1350
+ "helpText": null,
1351
+ "entries": []
1352
+ },
1353
+ {
1354
+ "identifier": "STYLE",
1355
+ "apexlangName": "style",
1356
+ "attributeId": "12",
1357
+ "name": "Style",
1358
+ "type": "selectList",
1359
+ "required": true,
1360
+ "defaultValue": "t-Comments--basic",
1361
+ "sampleDataValue": "t-Comments--chat",
1362
+ "attributeGroup": null,
1363
+ "sequence": "120",
1364
+ "dependencyAttribute": null,
1365
+ "dependencyCondition": null,
1366
+ "dependencyValue": null,
1367
+ "escapeMode": "htmlAttribute",
1368
+ "helpText": "Set the style of the comments.",
1369
+ "entries": [
1370
+ {
1371
+ "name": "basic",
1372
+ "display": "Basic",
1373
+ "returnValue": "t-Comments--basic",
1374
+ "sequence": "10"
1375
+ },
1376
+ {
1377
+ "name": "chatSpeechBubbles",
1378
+ "display": "Chat (Speech Bubbles)",
1379
+ "returnValue": "t-Comments--chat",
1380
+ "sequence": "20"
1381
+ }
1382
+ ]
1383
+ },
1384
+ {
1385
+ "identifier": "USER_NAME",
1386
+ "apexlangName": "userName",
1387
+ "attributeId": "2",
1388
+ "name": "User Name",
1389
+ "type": "sessionStateValue",
1390
+ "required": true,
1391
+ "defaultValue": null,
1392
+ "sampleDataValue": "ASSIGNED_TO_NAME",
1393
+ "attributeGroup": null,
1394
+ "sequence": "20",
1395
+ "dependencyAttribute": null,
1396
+ "dependencyCondition": null,
1397
+ "dependencyValue": null,
1398
+ "escapeMode": null,
1399
+ "helpText": "Select a source column to be displayed as the user name associated with a comment.",
1400
+ "entries": []
1401
+ }
1402
+ ]
1403
+ },
1404
+ "contentRow": {
1405
+ "backend": "repo-theme-export",
1406
+ "theme": "universal-theme",
1407
+ "requestedName": "contentRow",
1408
+ "resolvedName": "contentRow-theme-universal-theme",
1409
+ "sourceDir": "contentRow-theme-universal-theme",
1410
+ "plugin": {
1411
+ "identifier": "contentRow",
1412
+ "name": "Content Row",
1413
+ "staticId": "THEME_42$CONTENT_ROW",
1414
+ "availableAs": [
1415
+ "partial",
1416
+ "report"
1417
+ ],
1418
+ "reportBody": "<ul class=\"t-ContentRow{if ?STYLE/} #STYLE#{endif/}{if REMOVE_PADDING/} t-ContentRow--removePadding{endif/}{if HIDE_BORDERS/} t-ContentRow--hideBorders{endif/}{if APPLY_THEME_COLORS/} u-colors{endif/}{if STACK_MOBILE/} t-ContentRow--stackMobile{endif/} #APEX$COMPONENT_CSS_CLASSES#\">#APEX$ROWS#</ul>",
1419
+ "reportRow": "<li class=\"t-ContentRow-item{if ?ITEM_CLASSES/} #ITEM_CLASSES#{endif/}\" #APEX$ROW_IDENTIFICATION#>#APEX$PARTIAL#</li>",
1420
+ "reportGroup": "<li class=\"t-ContentRow-groupItem\" #APEX$GROUP_IDENTIFICATION#>\n {if ?GROUP_TITLE/}\n <div class=\"t-ContentRow-groupHeader\">\n {if ?GROUP_ICON/}<span class=\"t-ContentRow-groupIcon #GROUP_ICON#\" aria-hidden=\"true\"></span>{endif/}\n <h2 class=\"t-ContentRow-groupTitle\" id=\"#APEX$DOM_ID#_heading\">#GROUP_TITLE#</h2>\n </div>\n {endif/}\n <ul class=\"t-ContentRow-groupItems\">#APEX$ROWS#</ul>\n </li>",
1421
+ "reportContainer": null,
1422
+ "numberOfLazyLoadingSkeletons": "3"
1423
+ },
1424
+ "attributeGroups": [
1425
+ {
1426
+ "identifier": "appearance",
1427
+ "name": "Appearance",
1428
+ "sequence": "40",
1429
+ "staticId": "appearance"
1430
+ },
1431
+ {
1432
+ "identifier": "avatar",
1433
+ "name": "Avatar",
1434
+ "sequence": "10",
1435
+ "staticId": "avatar"
1436
+ },
1437
+ {
1438
+ "identifier": "badge",
1439
+ "name": "Badge",
1440
+ "sequence": "20",
1441
+ "staticId": "badge"
1442
+ },
1443
+ {
1444
+ "identifier": "grouping",
1445
+ "name": "Grouping",
1446
+ "sequence": "30",
1447
+ "staticId": "grouping"
1448
+ }
1449
+ ],
1450
+ "actionPositions": [
1451
+ {
1452
+ "identifier": "avatarLink",
1453
+ "name": "Avatar Link",
1454
+ "staticId": "AVATAR_LINK",
1455
+ "sequence": "10",
1456
+ "positionType": null
1457
+ },
1458
+ {
1459
+ "identifier": "badgeLink",
1460
+ "name": "Badge Link",
1461
+ "staticId": "BADGE_LINK",
1462
+ "sequence": "50",
1463
+ "positionType": null
1464
+ },
1465
+ {
1466
+ "identifier": "fullRowLink",
1467
+ "name": "Full Row Link",
1468
+ "staticId": "FULL_ROW_LINK",
1469
+ "sequence": "40",
1470
+ "positionType": null
1471
+ },
1472
+ {
1473
+ "identifier": "primaryActions",
1474
+ "name": "Primary Actions",
1475
+ "staticId": "PRIMARY_ACTIONS",
1476
+ "sequence": "20",
1477
+ "positionType": "template"
1478
+ },
1479
+ {
1480
+ "identifier": "titleLink",
1481
+ "name": "Title Link",
1482
+ "staticId": "TITLE_LINK",
1483
+ "sequence": "30",
1484
+ "positionType": null
1485
+ }
1486
+ ],
1487
+ "actionTemplates": [
1488
+ {
1489
+ "identifier": "button",
1490
+ "name": "Button",
1491
+ "type": "button",
1492
+ "staticId": "Button"
1493
+ },
1494
+ {
1495
+ "identifier": "menu",
1496
+ "name": "Menu",
1497
+ "type": "menu",
1498
+ "staticId": "Menu"
1499
+ }
1500
+ ],
1501
+ "slots": [],
1502
+ "customAttributes": [
1503
+ {
1504
+ "identifier": "APPLY_THEME_COLORS",
1505
+ "apexlangName": "applyThemeColors",
1506
+ "attributeId": "23",
1507
+ "name": "Apply Theme Colors",
1508
+ "type": "yesNo",
1509
+ "required": false,
1510
+ "defaultValue": "true",
1511
+ "sampleDataValue": null,
1512
+ "attributeGroup": "@appearance",
1513
+ "sequence": "230",
1514
+ "dependencyAttribute": null,
1515
+ "dependencyCondition": null,
1516
+ "dependencyValue": null,
1517
+ "escapeMode": "htmlAttribute",
1518
+ "helpText": "Specify whether to use the Universal Theme colors for avatar and badge row items. When set to Yes, the u-colors class will be applied to each row. When set to No, a default color will be used instead.",
1519
+ "entries": []
1520
+ },
1521
+ {
1522
+ "identifier": "AVATAR_CSS_CLASSES",
1523
+ "apexlangName": "cssClasses",
1524
+ "attributeId": "32",
1525
+ "name": "CSS Classes",
1526
+ "type": "text",
1527
+ "required": false,
1528
+ "defaultValue": null,
1529
+ "sampleDataValue": null,
1530
+ "attributeGroup": "@avatar",
1531
+ "sequence": "320",
1532
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
1533
+ "dependencyCondition": "=",
1534
+ "dependencyValue": "Y",
1535
+ "escapeMode": "htmlAttribute",
1536
+ "helpText": "Enter CSS classes to add to the visual. You may add multiple classes by separating them with a space.",
1537
+ "entries": []
1538
+ },
1539
+ {
1540
+ "identifier": "AVATAR_DESCRIPTION",
1541
+ "apexlangName": "description",
1542
+ "attributeId": "9",
1543
+ "name": "Description",
1544
+ "type": "text",
1545
+ "required": false,
1546
+ "defaultValue": null,
1547
+ "sampleDataValue": null,
1548
+ "attributeGroup": "@avatar",
1549
+ "sequence": "115",
1550
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
1551
+ "dependencyCondition": "=",
1552
+ "dependencyValue": "Y",
1553
+ "escapeMode": "htmlAttribute",
1554
+ "helpText": "Enter a short description of the image or select a source column from the quick pick options. This will be used as alt text for the avatar image.",
1555
+ "entries": []
1556
+ },
1557
+ {
1558
+ "identifier": "AVATAR_ICON",
1559
+ "apexlangName": "icon",
1560
+ "attributeId": "11",
1561
+ "name": "Icon",
1562
+ "type": "icon",
1563
+ "required": true,
1564
+ "defaultValue": "fa-user",
1565
+ "sampleDataValue": null,
1566
+ "attributeGroup": "@avatar",
1567
+ "sequence": "110",
1568
+ "dependencyAttribute": "@AVATAR_TYPE/component",
1569
+ "dependencyCondition": "=",
1570
+ "dependencyValue": "icon",
1571
+ "escapeMode": "htmlAttribute",
1572
+ "helpText": "Enter an icon class or use the Pick Icon dialog to select the icon you want to add to display in the avatar.",
1573
+ "entries": []
1574
+ },
1575
+ {
1576
+ "identifier": "AVATAR_IMAGE",
1577
+ "apexlangName": "image",
1578
+ "attributeId": "8",
1579
+ "name": "Image",
1580
+ "type": "media",
1581
+ "required": true,
1582
+ "defaultValue": null,
1583
+ "sampleDataValue": null,
1584
+ "attributeGroup": "@avatar",
1585
+ "sequence": "80",
1586
+ "dependencyAttribute": "@AVATAR_TYPE/component",
1587
+ "dependencyCondition": "=",
1588
+ "dependencyValue": "image",
1589
+ "escapeMode": "htmlAttribute",
1590
+ "helpText": "<p>Use the Media popup dialog to select a source for the avatar image.</p>\n \n <p>Available options include:</p>\n <ul>\n <li>URL</li>\n <li>BLOB Column</li>\n <li>URL Column</li>\n </ul>",
1591
+ "entries": []
1592
+ },
1593
+ {
1594
+ "identifier": "AVATAR_INITIALS",
1595
+ "apexlangName": "initials",
1596
+ "attributeId": "10",
1597
+ "name": "Initials",
1598
+ "type": "sessionStateValue",
1599
+ "required": true,
1600
+ "defaultValue": null,
1601
+ "sampleDataValue": "INITIALS",
1602
+ "attributeGroup": "@avatar",
1603
+ "sequence": "100",
1604
+ "dependencyAttribute": "@AVATAR_TYPE/component",
1605
+ "dependencyCondition": "=",
1606
+ "dependencyValue": "initials",
1607
+ "escapeMode": "stripHtml",
1608
+ "helpText": "Select the source column to be displayed within each avatar. Only varchar2 data types are supported.",
1609
+ "entries": []
1610
+ },
1611
+ {
1612
+ "identifier": "AVATAR_SHAPE",
1613
+ "apexlangName": "shape",
1614
+ "attributeId": "12",
1615
+ "name": "Shape",
1616
+ "type": "selectList",
1617
+ "required": true,
1618
+ "defaultValue": "t-Avatar--rounded",
1619
+ "sampleDataValue": null,
1620
+ "attributeGroup": "@avatar",
1621
+ "sequence": "120",
1622
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
1623
+ "dependencyCondition": "=",
1624
+ "dependencyValue": "Y",
1625
+ "escapeMode": "htmlAttribute",
1626
+ "helpText": "Select the shape of the avatar. Default inherits the shape set by the containing template.",
1627
+ "entries": [
1628
+ {
1629
+ "name": "circular",
1630
+ "display": "Circular",
1631
+ "returnValue": "t-Avatar--circle",
1632
+ "sequence": "20"
1633
+ },
1634
+ {
1635
+ "name": "noShape",
1636
+ "display": "No Shape",
1637
+ "returnValue": "t-Avatar--noShape",
1638
+ "sequence": "40"
1639
+ },
1640
+ {
1641
+ "name": "rounded",
1642
+ "display": "Rounded",
1643
+ "returnValue": "t-Avatar--rounded",
1644
+ "sequence": "10"
1645
+ },
1646
+ {
1647
+ "name": "square",
1648
+ "display": "Square",
1649
+ "returnValue": "t-Avatar--square",
1650
+ "sequence": "30"
1651
+ }
1652
+ ]
1653
+ },
1654
+ {
1655
+ "identifier": "AVATAR_SIZE",
1656
+ "apexlangName": "size",
1657
+ "attributeId": "20",
1658
+ "name": "Size",
1659
+ "type": "selectList",
1660
+ "required": false,
1661
+ "defaultValue": null,
1662
+ "sampleDataValue": null,
1663
+ "attributeGroup": "@avatar",
1664
+ "sequence": "200",
1665
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
1666
+ "dependencyCondition": "=",
1667
+ "dependencyValue": "Y",
1668
+ "escapeMode": "htmlAttribute",
1669
+ "helpText": "Set the size of the avatar. The default inherits the sizing set by the containing template.",
1670
+ "entries": [
1671
+ {
1672
+ "name": "extraExtraLarge",
1673
+ "display": "Extra Extra Large",
1674
+ "returnValue": "t-Avatar--xxl",
1675
+ "sequence": "70"
1676
+ },
1677
+ {
1678
+ "name": "extraExtraSmall",
1679
+ "display": "Extra Extra Small",
1680
+ "returnValue": "t-Avatar--xxs",
1681
+ "sequence": "10"
1682
+ },
1683
+ {
1684
+ "name": "extraLarge",
1685
+ "display": "Extra Large",
1686
+ "returnValue": "t-Avatar--xl",
1687
+ "sequence": "60"
1688
+ },
1689
+ {
1690
+ "name": "extraSmall",
1691
+ "display": "Extra Small",
1692
+ "returnValue": "t-Avatar--xs",
1693
+ "sequence": "20"
1694
+ },
1695
+ {
1696
+ "name": "large",
1697
+ "display": "Large",
1698
+ "returnValue": "t-Avatar--lg",
1699
+ "sequence": "50"
1700
+ },
1701
+ {
1702
+ "name": "medium",
1703
+ "display": "Medium",
1704
+ "returnValue": "t-Avatar--md",
1705
+ "sequence": "40"
1706
+ },
1707
+ {
1708
+ "name": "small",
1709
+ "display": "Small",
1710
+ "returnValue": "t-Avatar--sm",
1711
+ "sequence": "30"
1712
+ }
1713
+ ]
1714
+ },
1715
+ {
1716
+ "identifier": "AVATAR_TYPE",
1717
+ "apexlangName": "type",
1718
+ "attributeId": "7",
1719
+ "name": "Type",
1720
+ "type": "selectList",
1721
+ "required": true,
1722
+ "defaultValue": "icon",
1723
+ "sampleDataValue": "initials",
1724
+ "attributeGroup": "@avatar",
1725
+ "sequence": "70",
1726
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
1727
+ "dependencyCondition": "=",
1728
+ "dependencyValue": "Y",
1729
+ "escapeMode": null,
1730
+ "helpText": "Select the type of content that will be displayed in the avatar.",
1731
+ "entries": [
1732
+ {
1733
+ "name": "icon",
1734
+ "display": "Icon",
1735
+ "returnValue": "icon",
1736
+ "sequence": "30"
1737
+ },
1738
+ {
1739
+ "name": "image",
1740
+ "display": "Image",
1741
+ "returnValue": "image",
1742
+ "sequence": "10"
1743
+ },
1744
+ {
1745
+ "name": "initials",
1746
+ "display": "Initials",
1747
+ "returnValue": "initials",
1748
+ "sequence": "20"
1749
+ }
1750
+ ]
1751
+ },
1752
+ {
1753
+ "identifier": "BADGE_ALIGNMENT",
1754
+ "apexlangName": "alignment",
1755
+ "attributeId": "25",
1756
+ "name": "Alignment",
1757
+ "type": "selectList",
1758
+ "required": false,
1759
+ "defaultValue": null,
1760
+ "sampleDataValue": null,
1761
+ "attributeGroup": "@badge",
1762
+ "sequence": "250",
1763
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
1764
+ "dependencyCondition": "=",
1765
+ "dependencyValue": "Y",
1766
+ "escapeMode": "htmlAttribute",
1767
+ "helpText": "Changes the alignment of the badge within its column.",
1768
+ "entries": [
1769
+ {
1770
+ "name": "center",
1771
+ "display": "Center",
1772
+ "returnValue": "t-ContentRow-badge--alignCenter",
1773
+ "sequence": "10"
1774
+ },
1775
+ {
1776
+ "name": "end",
1777
+ "display": "End",
1778
+ "returnValue": "t-ContentRow-badge--alignEnd",
1779
+ "sequence": "20"
1780
+ }
1781
+ ]
1782
+ },
1783
+ {
1784
+ "identifier": "BADGE_COL_WIDTH",
1785
+ "apexlangName": "columnWidth",
1786
+ "attributeId": "22",
1787
+ "name": "Column Width",
1788
+ "type": "selectList",
1789
+ "required": true,
1790
+ "defaultValue": "t-ContentRow-badge--md",
1791
+ "sampleDataValue": null,
1792
+ "attributeGroup": "@badge",
1793
+ "sequence": "220",
1794
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
1795
+ "dependencyCondition": "=",
1796
+ "dependencyValue": "Y",
1797
+ "escapeMode": "htmlAttribute",
1798
+ "helpText": "Set the width of the content row columns. Default width is medium.",
1799
+ "entries": [
1800
+ {
1801
+ "name": "auto",
1802
+ "display": "Auto",
1803
+ "returnValue": "t-ContentRow-badge--auto",
1804
+ "sequence": "40"
1805
+ },
1806
+ {
1807
+ "name": "large",
1808
+ "display": "Large",
1809
+ "returnValue": "t-ContentRow-badge--lg",
1810
+ "sequence": "30"
1811
+ },
1812
+ {
1813
+ "name": "medium",
1814
+ "display": "Medium",
1815
+ "returnValue": "t-ContentRow-badge--md",
1816
+ "sequence": "20"
1817
+ },
1818
+ {
1819
+ "name": "small",
1820
+ "display": "Small",
1821
+ "returnValue": "t-ContentRow-badge--sm",
1822
+ "sequence": "10"
1823
+ }
1824
+ ]
1825
+ },
1826
+ {
1827
+ "identifier": "BADGE_ICON",
1828
+ "apexlangName": "icon",
1829
+ "attributeId": "16",
1830
+ "name": "Icon",
1831
+ "type": "icon",
1832
+ "required": false,
1833
+ "defaultValue": null,
1834
+ "sampleDataValue": null,
1835
+ "attributeGroup": "@badge",
1836
+ "sequence": "160",
1837
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
1838
+ "dependencyCondition": "=",
1839
+ "dependencyValue": "Y",
1840
+ "escapeMode": "htmlAttribute",
1841
+ "helpText": "Enter an icon class or use the Pick Icon dialog to select the icon you want to add to display in the badge.",
1842
+ "entries": []
1843
+ },
1844
+ {
1845
+ "identifier": "BADGE_LABEL",
1846
+ "apexlangName": "label",
1847
+ "attributeId": "13",
1848
+ "name": "Label",
1849
+ "type": "text",
1850
+ "required": true,
1851
+ "defaultValue": null,
1852
+ "sampleDataValue": "ID",
1853
+ "attributeGroup": "@badge",
1854
+ "sequence": "130",
1855
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
1856
+ "dependencyCondition": "=",
1857
+ "dependencyValue": "Y",
1858
+ "escapeMode": "raw",
1859
+ "helpText": "Enter a value for the badge label or select a source column from the quick pick options.",
1860
+ "entries": []
1861
+ },
1862
+ {
1863
+ "identifier": "BADGE_LABEL_DISPLAY",
1864
+ "apexlangName": "displayLabel",
1865
+ "attributeId": "17",
1866
+ "name": "Display Label",
1867
+ "type": "yesNo",
1868
+ "required": false,
1869
+ "defaultValue": null,
1870
+ "sampleDataValue": null,
1871
+ "attributeGroup": "@badge",
1872
+ "sequence": "170",
1873
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
1874
+ "dependencyCondition": "=",
1875
+ "dependencyValue": "Y",
1876
+ "escapeMode": "htmlAttribute",
1877
+ "helpText": "Specify whether to display or hide the badge label. When set to Yes, the badge label will be displayed in addition to the badge value. When set to No, only the badge value will be displayed.",
1878
+ "entries": []
1879
+ },
1880
+ {
1881
+ "identifier": "BADGE_POS",
1882
+ "apexlangName": "position",
1883
+ "attributeId": "24",
1884
+ "name": "Position",
1885
+ "type": "selectList",
1886
+ "required": false,
1887
+ "defaultValue": null,
1888
+ "sampleDataValue": null,
1889
+ "attributeGroup": "@badge",
1890
+ "sequence": "240",
1891
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
1892
+ "dependencyCondition": "=",
1893
+ "dependencyValue": "Y",
1894
+ "escapeMode": "htmlAttribute",
1895
+ "helpText": "Positions the Badge column to either the \"Start\" or \"End\" of the row.",
1896
+ "entries": [
1897
+ {
1898
+ "name": "end",
1899
+ "display": "End",
1900
+ "returnValue": "t-ContentRow-badge--posEnd",
1901
+ "sequence": "10"
1902
+ }
1903
+ ]
1904
+ },
1905
+ {
1906
+ "identifier": "BADGE_SHAPE",
1907
+ "apexlangName": "shape",
1908
+ "attributeId": "19",
1909
+ "name": "Shape",
1910
+ "type": "selectList",
1911
+ "required": false,
1912
+ "defaultValue": null,
1913
+ "sampleDataValue": null,
1914
+ "attributeGroup": "@badge",
1915
+ "sequence": "190",
1916
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
1917
+ "dependencyCondition": "=",
1918
+ "dependencyValue": "Y",
1919
+ "escapeMode": null,
1920
+ "helpText": "Select the shape of the badge. Default inherits the shape set by the containing template.",
1921
+ "entries": [
1922
+ {
1923
+ "name": "circular",
1924
+ "display": "Circular",
1925
+ "returnValue": "t-Badge--circle",
1926
+ "sequence": "20"
1927
+ },
1928
+ {
1929
+ "name": "noShape",
1930
+ "display": "No Shape",
1931
+ "returnValue": "t-Avatar--noShape",
1932
+ "sequence": "40"
1933
+ },
1934
+ {
1935
+ "name": "rounded",
1936
+ "display": "Rounded",
1937
+ "returnValue": "t-Badge--rounded",
1938
+ "sequence": "10"
1939
+ },
1940
+ {
1941
+ "name": "square",
1942
+ "display": "Square",
1943
+ "returnValue": "t-Badge--square",
1944
+ "sequence": "30"
1945
+ }
1946
+ ]
1947
+ },
1948
+ {
1949
+ "identifier": "BADGE_SIZE",
1950
+ "apexlangName": "size",
1951
+ "attributeId": "21",
1952
+ "name": "Size",
1953
+ "type": "selectList",
1954
+ "required": false,
1955
+ "defaultValue": null,
1956
+ "sampleDataValue": null,
1957
+ "attributeGroup": "@badge",
1958
+ "sequence": "210",
1959
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
1960
+ "dependencyCondition": "=",
1961
+ "dependencyValue": "Y",
1962
+ "escapeMode": "htmlAttribute",
1963
+ "helpText": "Set the size of the badge. The default inherits the sizing set by the containing template.",
1964
+ "entries": [
1965
+ {
1966
+ "name": "large",
1967
+ "display": "Large",
1968
+ "returnValue": "t-Badge--lg",
1969
+ "sequence": "30"
1970
+ },
1971
+ {
1972
+ "name": "medium",
1973
+ "display": "Medium",
1974
+ "returnValue": "t-Badge--md",
1975
+ "sequence": "20"
1976
+ },
1977
+ {
1978
+ "name": "small",
1979
+ "display": "Small",
1980
+ "returnValue": "t-Badge--sm",
1981
+ "sequence": "10"
1982
+ }
1983
+ ]
1984
+ },
1985
+ {
1986
+ "identifier": "BADGE_STATE",
1987
+ "apexlangName": "state",
1988
+ "attributeId": "15",
1989
+ "name": "State",
1990
+ "type": "sessionStateValue",
1991
+ "required": false,
1992
+ "defaultValue": null,
1993
+ "sampleDataValue": null,
1994
+ "attributeGroup": "@badge",
1995
+ "sequence": "150",
1996
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
1997
+ "dependencyCondition": "=",
1998
+ "dependencyValue": "Y",
1999
+ "escapeMode": "htmlAttribute",
2000
+ "helpText": "Select the source column for the state of the badge. Substitute column value with \"danger\", \"warning\", \"success\" or \"info\" for default styling.",
2001
+ "entries": []
2002
+ },
2003
+ {
2004
+ "identifier": "BADGE_STYLE",
2005
+ "apexlangName": "style",
2006
+ "attributeId": "18",
2007
+ "name": "Style",
2008
+ "type": "selectList",
2009
+ "required": false,
2010
+ "defaultValue": null,
2011
+ "sampleDataValue": null,
2012
+ "attributeGroup": "@badge",
2013
+ "sequence": "180",
2014
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
2015
+ "dependencyCondition": "=",
2016
+ "dependencyValue": "Y",
2017
+ "escapeMode": "htmlAttribute",
2018
+ "helpText": "Select the badge style. Default inherits the style set by the containing template.",
2019
+ "entries": [
2020
+ {
2021
+ "name": "outline",
2022
+ "display": "Outline",
2023
+ "returnValue": "t-Badge--outline",
2024
+ "sequence": "20"
2025
+ },
2026
+ {
2027
+ "name": "subtle",
2028
+ "display": "Subtle",
2029
+ "returnValue": "t-Badge--subtle",
2030
+ "sequence": "10"
2031
+ }
2032
+ ]
2033
+ },
2034
+ {
2035
+ "identifier": "BADGE_VALUE",
2036
+ "apexlangName": "value",
2037
+ "attributeId": "14",
2038
+ "name": "Value",
2039
+ "type": "sessionStateValue",
2040
+ "required": true,
2041
+ "defaultValue": null,
2042
+ "sampleDataValue": "ID",
2043
+ "attributeGroup": "@badge",
2044
+ "sequence": "140",
2045
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
2046
+ "dependencyCondition": "=",
2047
+ "dependencyValue": "Y",
2048
+ "escapeMode": "stripHtml",
2049
+ "helpText": "Select a source column for the badge value.",
2050
+ "entries": []
2051
+ },
2052
+ {
2053
+ "identifier": "DESCRIPTION",
2054
+ "apexlangName": "description",
2055
+ "attributeId": "3",
2056
+ "name": "Description",
2057
+ "type": "html",
2058
+ "required": false,
2059
+ "defaultValue": null,
2060
+ "sampleDataValue": "&JOB.",
2061
+ "attributeGroup": null,
2062
+ "sequence": "30",
2063
+ "dependencyAttribute": null,
2064
+ "dependencyCondition": null,
2065
+ "dependencyValue": null,
2066
+ "escapeMode": "raw",
2067
+ "helpText": "Enter some text and/or column substitution strings to be used as the description in each row.",
2068
+ "entries": []
2069
+ },
2070
+ {
2071
+ "identifier": "DISPLAY_AVATAR",
2072
+ "apexlangName": "displayAvatar",
2073
+ "attributeId": "5",
2074
+ "name": "Display Avatar",
2075
+ "type": "yesNo",
2076
+ "required": false,
2077
+ "defaultValue": null,
2078
+ "sampleDataValue": "Y",
2079
+ "attributeGroup": null,
2080
+ "sequence": "50",
2081
+ "dependencyAttribute": null,
2082
+ "dependencyCondition": null,
2083
+ "dependencyValue": null,
2084
+ "escapeMode": "htmlAttribute",
2085
+ "helpText": "Specify whether to display or hide the avatar for each row. When set to Yes, an avatar will be displayed with the assigned image, icon, or initials. When set to No, no avatar will be displayed.",
2086
+ "entries": []
2087
+ },
2088
+ {
2089
+ "identifier": "DISPLAY_BADGE",
2090
+ "apexlangName": "displayBadge",
2091
+ "attributeId": "6",
2092
+ "name": "Display Badge",
2093
+ "type": "yesNo",
2094
+ "required": false,
2095
+ "defaultValue": null,
2096
+ "sampleDataValue": "Y",
2097
+ "attributeGroup": null,
2098
+ "sequence": "60",
2099
+ "dependencyAttribute": null,
2100
+ "dependencyCondition": null,
2101
+ "dependencyValue": null,
2102
+ "escapeMode": "htmlAttribute",
2103
+ "helpText": "Specify whether to display or hide the badge for each row. When set to Yes, a badge will be displayed in each row. When set to No, no badge will be displayed.",
2104
+ "entries": []
2105
+ },
2106
+ {
2107
+ "identifier": "GROUP_ICON",
2108
+ "apexlangName": "icon",
2109
+ "attributeId": "34",
2110
+ "name": "Icon",
2111
+ "type": "icon",
2112
+ "required": false,
2113
+ "defaultValue": null,
2114
+ "sampleDataValue": null,
2115
+ "attributeGroup": "@grouping",
2116
+ "sequence": "340",
2117
+ "dependencyAttribute": "@GROUP_TITLE/reportGroup",
2118
+ "dependencyCondition": "isNotNull",
2119
+ "dependencyValue": null,
2120
+ "escapeMode": "htmlAttribute",
2121
+ "helpText": "Enter an icon class or use the Pick Icon dialog to select the icon you want to add to display in the avatar.",
2122
+ "entries": []
2123
+ },
2124
+ {
2125
+ "identifier": "GROUP_TITLE",
2126
+ "apexlangName": "title",
2127
+ "attributeId": "33",
2128
+ "name": "Title",
2129
+ "type": "html",
2130
+ "required": true,
2131
+ "defaultValue": null,
2132
+ "sampleDataValue": null,
2133
+ "attributeGroup": "@grouping",
2134
+ "sequence": "330",
2135
+ "dependencyAttribute": null,
2136
+ "dependencyCondition": null,
2137
+ "dependencyValue": null,
2138
+ "escapeMode": "raw",
2139
+ "helpText": "Enter a concise and descriptive title for the group of items. The title should summarize the contents or purpose of the group, making it easy to understand at a glance.",
2140
+ "entries": []
2141
+ },
2142
+ {
2143
+ "identifier": "HIDE_BORDERS",
2144
+ "apexlangName": "hideBorders",
2145
+ "attributeId": "28",
2146
+ "name": "Hide Borders",
2147
+ "type": "yesNo",
2148
+ "required": false,
2149
+ "defaultValue": null,
2150
+ "sampleDataValue": null,
2151
+ "attributeGroup": "@appearance",
2152
+ "sequence": "280",
2153
+ "dependencyAttribute": null,
2154
+ "dependencyCondition": null,
2155
+ "dependencyValue": null,
2156
+ "escapeMode": "htmlAttribute",
2157
+ "helpText": null,
2158
+ "entries": []
2159
+ },
2160
+ {
2161
+ "identifier": "ITEM_CSS_CLASSES",
2162
+ "apexlangName": "itemCssClasses",
2163
+ "attributeId": "31",
2164
+ "name": "Item CSS Classes",
2165
+ "type": "text",
2166
+ "required": false,
2167
+ "defaultValue": null,
2168
+ "sampleDataValue": null,
2169
+ "attributeGroup": null,
2170
+ "sequence": "310",
2171
+ "dependencyAttribute": null,
2172
+ "dependencyCondition": null,
2173
+ "dependencyValue": null,
2174
+ "escapeMode": "htmlAttribute",
2175
+ "helpText": "Enter CSS classes to add to the items. You may add multiple classes by separating them with a space.",
2176
+ "entries": []
2177
+ },
2178
+ {
2179
+ "identifier": "MISC",
2180
+ "apexlangName": "miscellaneous",
2181
+ "attributeId": "4",
2182
+ "name": "Miscellaneous",
2183
+ "type": "html",
2184
+ "required": false,
2185
+ "defaultValue": null,
2186
+ "sampleDataValue": "&SALARY.",
2187
+ "attributeGroup": null,
2188
+ "sequence": "40",
2189
+ "dependencyAttribute": null,
2190
+ "dependencyCondition": null,
2191
+ "dependencyValue": null,
2192
+ "escapeMode": "raw",
2193
+ "helpText": "Enter miscellaneous content such as additional text and/or column substitution strings to display in each row.",
2194
+ "entries": []
2195
+ },
2196
+ {
2197
+ "identifier": "OVERLINE",
2198
+ "apexlangName": "overline",
2199
+ "attributeId": "1",
2200
+ "name": "Overline",
2201
+ "type": "html",
2202
+ "required": false,
2203
+ "defaultValue": null,
2204
+ "sampleDataValue": "Employee",
2205
+ "attributeGroup": null,
2206
+ "sequence": "10",
2207
+ "dependencyAttribute": null,
2208
+ "dependencyCondition": null,
2209
+ "dependencyValue": null,
2210
+ "escapeMode": "raw",
2211
+ "helpText": "Enter some text and/or column substitution strings to display at the top of each row above the title and description.",
2212
+ "entries": []
2213
+ },
2214
+ {
2215
+ "identifier": "REMOVE_PADDING",
2216
+ "apexlangName": "removePadding",
2217
+ "attributeId": "30",
2218
+ "name": "Remove Padding",
2219
+ "type": "yesNo",
2220
+ "required": false,
2221
+ "defaultValue": null,
2222
+ "sampleDataValue": null,
2223
+ "attributeGroup": "@appearance",
2224
+ "sequence": "300",
2225
+ "dependencyAttribute": null,
2226
+ "dependencyCondition": null,
2227
+ "dependencyValue": null,
2228
+ "escapeMode": "htmlAttribute",
2229
+ "helpText": null,
2230
+ "entries": []
2231
+ },
2232
+ {
2233
+ "identifier": "STACK_MOBILE",
2234
+ "apexlangName": "stackOnMobile",
2235
+ "attributeId": "36",
2236
+ "name": "Stack on Mobile",
2237
+ "type": "yesNo",
2238
+ "required": false,
2239
+ "defaultValue": null,
2240
+ "sampleDataValue": null,
2241
+ "attributeGroup": "@appearance",
2242
+ "sequence": "360",
2243
+ "dependencyAttribute": null,
2244
+ "dependencyCondition": null,
2245
+ "dependencyValue": null,
2246
+ "escapeMode": null,
2247
+ "helpText": "Stack the content row elements at the mobile breakpoints.",
2248
+ "entries": []
2249
+ },
2250
+ {
2251
+ "identifier": "STYLE",
2252
+ "apexlangName": "style",
2253
+ "attributeId": "27",
2254
+ "name": "Style",
2255
+ "type": "selectList",
2256
+ "required": false,
2257
+ "defaultValue": null,
2258
+ "sampleDataValue": null,
2259
+ "attributeGroup": "@appearance",
2260
+ "sequence": "270",
2261
+ "dependencyAttribute": null,
2262
+ "dependencyCondition": null,
2263
+ "dependencyValue": null,
2264
+ "escapeMode": null,
2265
+ "helpText": null,
2266
+ "entries": [
2267
+ {
2268
+ "name": "compact",
2269
+ "display": "Compact",
2270
+ "returnValue": "t-ContentRow--styleCompact",
2271
+ "sequence": "10"
2272
+ }
2273
+ ]
2274
+ },
2275
+ {
2276
+ "identifier": "TITLE",
2277
+ "apexlangName": "title",
2278
+ "attributeId": "2",
2279
+ "name": "Title",
2280
+ "type": "html",
2281
+ "required": false,
2282
+ "defaultValue": null,
2283
+ "sampleDataValue": "&NAME.",
2284
+ "attributeGroup": null,
2285
+ "sequence": "20",
2286
+ "dependencyAttribute": null,
2287
+ "dependencyCondition": null,
2288
+ "dependencyValue": null,
2289
+ "escapeMode": "raw",
2290
+ "helpText": "Enter some text and/or column substitution strings to be used as the title in each row.",
2291
+ "entries": []
2292
+ }
2293
+ ]
2294
+ },
2295
+ "flexboxContainer": {
2296
+ "backend": "repo-theme-export",
2297
+ "theme": "universal-theme",
2298
+ "requestedName": "flexboxContainer",
2299
+ "resolvedName": "flexboxContainer-theme-universal-theme",
2300
+ "sourceDir": "flexboxContainer-theme-universal-theme",
2301
+ "plugin": {
2302
+ "identifier": "flexboxContainer",
2303
+ "name": "Flexbox Container",
2304
+ "staticId": "THEME_42$FLEXBOX_CONTAINER",
2305
+ "availableAs": [],
2306
+ "reportBody": null,
2307
+ "reportRow": null,
2308
+ "reportGroup": null,
2309
+ "reportContainer": null,
2310
+ "numberOfLazyLoadingSkeletons": null
2311
+ },
2312
+ "attributeGroups": [],
2313
+ "actionPositions": [],
2314
+ "actionTemplates": [],
2315
+ "slots": [
2316
+ {
2317
+ "identifier": "body",
2318
+ "name": "Region Body",
2319
+ "staticId": "BODY",
2320
+ "supports": {
2321
+ "items": "true",
2322
+ "buttons": "true"
2323
+ },
2324
+ "gridLayout": {
2325
+ "newRow": "false"
2326
+ }
2327
+ }
2328
+ ],
2329
+ "customAttributes": [
2330
+ {
2331
+ "identifier": "ALIGNCONTENT",
2332
+ "apexlangName": "alignContent",
2333
+ "attributeId": "3",
2334
+ "name": "Align-Content",
2335
+ "type": "selectList",
2336
+ "required": false,
2337
+ "defaultValue": null,
2338
+ "sampleDataValue": null,
2339
+ "attributeGroup": null,
2340
+ "sequence": "30",
2341
+ "dependencyAttribute": null,
2342
+ "dependencyCondition": null,
2343
+ "dependencyValue": null,
2344
+ "escapeMode": "htmlAttribute",
2345
+ "helpText": "Align-content controls how multiple flex lines are distributed along the cross axis. It only has an effect when the container wraps (flex-wrap: wrap) and there is extra space in the cross axis.",
2346
+ "entries": [
2347
+ {
2348
+ "name": "around",
2349
+ "display": "Around",
2350
+ "returnValue": "u-align-content-around",
2351
+ "sequence": "40"
2352
+ },
2353
+ {
2354
+ "name": "between",
2355
+ "display": "Between",
2356
+ "returnValue": "u-align-content-between",
2357
+ "sequence": "50"
2358
+ },
2359
+ {
2360
+ "name": "center",
2361
+ "display": "Center",
2362
+ "returnValue": "u-align-content-center",
2363
+ "sequence": "10"
2364
+ },
2365
+ {
2366
+ "name": "end",
2367
+ "display": "End",
2368
+ "returnValue": "u-align-content-end",
2369
+ "sequence": "30"
2370
+ },
2371
+ {
2372
+ "name": "evenly",
2373
+ "display": "Evenly",
2374
+ "returnValue": "u-align-content-evenly",
2375
+ "sequence": "60"
2376
+ },
2377
+ {
2378
+ "name": "start",
2379
+ "display": "Start",
2380
+ "returnValue": "u-align-content-start",
2381
+ "sequence": "20"
2382
+ }
2383
+ ]
2384
+ },
2385
+ {
2386
+ "identifier": "ALIGNITEMS",
2387
+ "apexlangName": "alignItems",
2388
+ "attributeId": "5",
2389
+ "name": "Align-Items",
2390
+ "type": "selectList",
2391
+ "required": false,
2392
+ "defaultValue": null,
2393
+ "sampleDataValue": null,
2394
+ "attributeGroup": null,
2395
+ "sequence": "50",
2396
+ "dependencyAttribute": null,
2397
+ "dependencyCondition": null,
2398
+ "dependencyValue": null,
2399
+ "escapeMode": "htmlAttribute",
2400
+ "helpText": "Align-items sets the default cross-axis alignment for all flex items within each line. It applies inside a line; when wrapping, align-content controls spacing between lines. Per-item overrides use align-self.",
2401
+ "entries": [
2402
+ {
2403
+ "name": "baseline",
2404
+ "display": "Baseline",
2405
+ "returnValue": "u-align-items-baseline",
2406
+ "sequence": "40"
2407
+ },
2408
+ {
2409
+ "name": "center",
2410
+ "display": "Center",
2411
+ "returnValue": "u-align-items-center",
2412
+ "sequence": "10"
2413
+ },
2414
+ {
2415
+ "name": "end",
2416
+ "display": "End",
2417
+ "returnValue": "u-align-items-end",
2418
+ "sequence": "30"
2419
+ },
2420
+ {
2421
+ "name": "start",
2422
+ "display": "Start",
2423
+ "returnValue": "u-align-items-start",
2424
+ "sequence": "20"
2425
+ },
2426
+ {
2427
+ "name": "stretch",
2428
+ "display": "Stretch",
2429
+ "returnValue": "u-align-items-stretch",
2430
+ "sequence": "50"
2431
+ }
2432
+ ]
2433
+ },
2434
+ {
2435
+ "identifier": "DIRECTION",
2436
+ "apexlangName": "direction",
2437
+ "attributeId": "1",
2438
+ "name": "Direction",
2439
+ "type": "selectList",
2440
+ "required": false,
2441
+ "defaultValue": null,
2442
+ "sampleDataValue": null,
2443
+ "attributeGroup": null,
2444
+ "sequence": "10",
2445
+ "dependencyAttribute": null,
2446
+ "dependencyCondition": null,
2447
+ "dependencyValue": null,
2448
+ "escapeMode": "htmlAttribute",
2449
+ "helpText": "Flex-direction sets the main axis of a flex container and the visual order of flex items. This affects which axis justify-content (main axis) and align-items/align-content (cross axis) operate on. It does not change DOM order, reading order, or tab order-only visual layout.",
2450
+ "entries": [
2451
+ {
2452
+ "name": "column",
2453
+ "display": "Column",
2454
+ "returnValue": "u-flex-direction-column",
2455
+ "sequence": "20"
2456
+ },
2457
+ {
2458
+ "name": "columnReverse",
2459
+ "display": "Column Reverse",
2460
+ "returnValue": "u-flex-direction-column-reverse",
2461
+ "sequence": "40"
2462
+ },
2463
+ {
2464
+ "name": "row",
2465
+ "display": "Row",
2466
+ "returnValue": "u-flex-direction-row",
2467
+ "sequence": "10"
2468
+ },
2469
+ {
2470
+ "name": "rowReverse",
2471
+ "display": "Row Reverse",
2472
+ "returnValue": "u-flex-direction-row-reverse",
2473
+ "sequence": "30"
2474
+ }
2475
+ ]
2476
+ },
2477
+ {
2478
+ "identifier": "FLEX_BEHAVIOR",
2479
+ "apexlangName": "flexBehavior",
2480
+ "attributeId": "9",
2481
+ "name": "Flex Item Sizing",
2482
+ "type": "selectList",
2483
+ "required": false,
2484
+ "defaultValue": null,
2485
+ "sampleDataValue": null,
2486
+ "attributeGroup": null,
2487
+ "sequence": "160",
2488
+ "dependencyAttribute": null,
2489
+ "dependencyCondition": null,
2490
+ "dependencyValue": null,
2491
+ "escapeMode": "htmlAttribute",
2492
+ "helpText": "Good for sidebars / controls that must not expand.",
2493
+ "entries": [
2494
+ {
2495
+ "name": "doNotGrow",
2496
+ "display": "No Grow",
2497
+ "returnValue": "a-FlexContainer--noGrow",
2498
+ "sequence": "30"
2499
+ },
2500
+ {
2501
+ "name": "fillAvailableSpace",
2502
+ "display": "Fill Space",
2503
+ "returnValue": "a-FlexContainer--fill",
2504
+ "sequence": "10"
2505
+ },
2506
+ {
2507
+ "name": "growIfNeeded",
2508
+ "display": "Grow as Needed",
2509
+ "returnValue": "a-FlexContainer--grow",
2510
+ "sequence": "20"
2511
+ }
2512
+ ]
2513
+ },
2514
+ {
2515
+ "identifier": "GAP",
2516
+ "apexlangName": "gap",
2517
+ "attributeId": "6",
2518
+ "name": "Gap",
2519
+ "type": "selectList",
2520
+ "required": false,
2521
+ "defaultValue": null,
2522
+ "sampleDataValue": null,
2523
+ "attributeGroup": null,
2524
+ "sequence": "60",
2525
+ "dependencyAttribute": null,
2526
+ "dependencyCondition": null,
2527
+ "dependencyValue": null,
2528
+ "escapeMode": "htmlAttribute",
2529
+ "helpText": "The gap property sets the space between rows and columns of items.",
2530
+ "entries": [
2531
+ {
2532
+ "name": "lg",
2533
+ "display": "Large",
2534
+ "returnValue": "u-gap-4",
2535
+ "sequence": "60"
2536
+ },
2537
+ {
2538
+ "name": "md",
2539
+ "display": "Medium",
2540
+ "returnValue": "u-gap-2",
2541
+ "sequence": "50"
2542
+ },
2543
+ {
2544
+ "name": "none",
2545
+ "display": "None",
2546
+ "returnValue": "u-gap-0",
2547
+ "sequence": "10"
2548
+ },
2549
+ {
2550
+ "name": "sm",
2551
+ "display": "Small",
2552
+ "returnValue": "u-gap-1",
2553
+ "sequence": "40"
2554
+ },
2555
+ {
2556
+ "name": "xl",
2557
+ "display": "Extra Large",
2558
+ "returnValue": "u-gap-6",
2559
+ "sequence": "70"
2560
+ },
2561
+ {
2562
+ "name": "xs",
2563
+ "display": "Extra Small",
2564
+ "returnValue": "u-gap-0_5",
2565
+ "sequence": "30"
2566
+ },
2567
+ {
2568
+ "name": "xxl",
2569
+ "display": "Extra Extra Large",
2570
+ "returnValue": "u-gap-8",
2571
+ "sequence": "80"
2572
+ },
2573
+ {
2574
+ "name": "xxs",
2575
+ "display": "Extra Extra Small",
2576
+ "returnValue": "u-gap-px",
2577
+ "sequence": "20"
2578
+ }
2579
+ ]
2580
+ },
2581
+ {
2582
+ "identifier": "JUSTIFYCONTENT",
2583
+ "apexlangName": "justifyContent",
2584
+ "attributeId": "4",
2585
+ "name": "Justify-Content",
2586
+ "type": "selectList",
2587
+ "required": false,
2588
+ "defaultValue": null,
2589
+ "sampleDataValue": null,
2590
+ "attributeGroup": null,
2591
+ "sequence": "40",
2592
+ "dependencyAttribute": null,
2593
+ "dependencyCondition": null,
2594
+ "dependencyValue": null,
2595
+ "escapeMode": "htmlAttribute",
2596
+ "helpText": "Justify-content distributes free space along the main axis (set by flex-direction). On wrapped containers, it applies within each line; align-content controls spacing between lines.",
2597
+ "entries": [
2598
+ {
2599
+ "name": "around",
2600
+ "display": "Around",
2601
+ "returnValue": "u-justify-content-space-around",
2602
+ "sequence": "40"
2603
+ },
2604
+ {
2605
+ "name": "between",
2606
+ "display": "Between",
2607
+ "returnValue": "u-justify-content-space-between",
2608
+ "sequence": "50"
2609
+ },
2610
+ {
2611
+ "name": "center",
2612
+ "display": "Center",
2613
+ "returnValue": "u-justify-content-center",
2614
+ "sequence": "10"
2615
+ },
2616
+ {
2617
+ "name": "end",
2618
+ "display": "End",
2619
+ "returnValue": "u-justify-content-flex-end",
2620
+ "sequence": "30"
2621
+ },
2622
+ {
2623
+ "name": "start",
2624
+ "display": "Start",
2625
+ "returnValue": "u-justify-content-flex-start",
2626
+ "sequence": "20"
2627
+ },
2628
+ {
2629
+ "name": "stretch",
2630
+ "display": "Stretch",
2631
+ "returnValue": "u-justify-content-stretch",
2632
+ "sequence": "60"
2633
+ }
2634
+ ]
2635
+ },
2636
+ {
2637
+ "identifier": "OVERFLOW",
2638
+ "apexlangName": "overflow",
2639
+ "attributeId": "7",
2640
+ "name": "Overflow",
2641
+ "type": "selectList",
2642
+ "required": false,
2643
+ "defaultValue": null,
2644
+ "sampleDataValue": null,
2645
+ "attributeGroup": null,
2646
+ "sequence": "70",
2647
+ "dependencyAttribute": null,
2648
+ "dependencyCondition": null,
2649
+ "dependencyValue": null,
2650
+ "escapeMode": "htmlAttribute",
2651
+ "helpText": "Controls what happens when content exceeds its container's size, letting you choose whether it scrolls, stays visible, or gets clipped.",
2652
+ "entries": [
2653
+ {
2654
+ "name": "auto",
2655
+ "display": "Auto",
2656
+ "returnValue": "u-overflow-auto",
2657
+ "sequence": "5"
2658
+ },
2659
+ {
2660
+ "name": "clip",
2661
+ "display": "Clip",
2662
+ "returnValue": "u-overflow-clip",
2663
+ "sequence": "50"
2664
+ },
2665
+ {
2666
+ "name": "hidden",
2667
+ "display": "Hidden",
2668
+ "returnValue": "u-overflow-hidden",
2669
+ "sequence": "30"
2670
+ },
2671
+ {
2672
+ "name": "scrollHorizontally",
2673
+ "display": "Scroll Horizontally",
2674
+ "returnValue": "u-overflow-x-scroll",
2675
+ "sequence": "10"
2676
+ },
2677
+ {
2678
+ "name": "scrollVertically",
2679
+ "display": "Scroll Vertically",
2680
+ "returnValue": "u-overflow-y-scroll",
2681
+ "sequence": "20"
2682
+ },
2683
+ {
2684
+ "name": "visible",
2685
+ "display": "Visible",
2686
+ "returnValue": "u-overflow-visible",
2687
+ "sequence": "40"
2688
+ }
2689
+ ]
2690
+ },
2691
+ {
2692
+ "identifier": "WRAP",
2693
+ "apexlangName": "wrap",
2694
+ "attributeId": "2",
2695
+ "name": "Wrap",
2696
+ "type": "selectList",
2697
+ "required": false,
2698
+ "defaultValue": null,
2699
+ "sampleDataValue": null,
2700
+ "attributeGroup": null,
2701
+ "sequence": "20",
2702
+ "dependencyAttribute": null,
2703
+ "dependencyCondition": null,
2704
+ "dependencyValue": null,
2705
+ "escapeMode": "htmlAttribute",
2706
+ "helpText": "Flex-wrap controls whether flex items stay on a single line or can flow onto multiple lines along the cross axis. When wrapping occurs, align-content can distribute space between the lines. Without wrapping, align-content has no effect.",
2707
+ "entries": [
2708
+ {
2709
+ "name": "noWrap",
2710
+ "display": "No Wrap",
2711
+ "returnValue": "u-flex-wrap-nowrap",
2712
+ "sequence": "10"
2713
+ },
2714
+ {
2715
+ "name": "wrap",
2716
+ "display": "Wrap",
2717
+ "returnValue": "u-flex-wrap",
2718
+ "sequence": "20"
2719
+ }
2720
+ ]
2721
+ }
2722
+ ]
2723
+ },
2724
+ "mediaList": {
2725
+ "backend": "repo-theme-export",
2726
+ "theme": "universal-theme",
2727
+ "requestedName": "mediaList",
2728
+ "resolvedName": "mediaList-theme-universal-theme",
2729
+ "sourceDir": "mediaList-theme-universal-theme",
2730
+ "plugin": {
2731
+ "identifier": "mediaList",
2732
+ "name": "Media List",
2733
+ "staticId": "THEME_42$MEDIA_LIST",
2734
+ "availableAs": [
2735
+ "partial",
2736
+ "report"
2737
+ ],
2738
+ "reportBody": "<ul class=\"t-MediaList t-MediaList--showIcons{if ?LAYOUT/} #LAYOUT!ATTR#{endif/}{if ?SIZE/} #SIZE!ATTR#{endif/}{if APPLY_THEME_COLORS/} u-colors{endif/} #APEX$COMPONENT_CSS_CLASSES#\">#APEX$ROWS#</ul>",
2739
+ "reportRow": "<li class=\"t-MediaList-item\" #APEX$ROW_IDENTIFICATION#>#APEX$PARTIAL#</li>",
2740
+ "reportGroup": "<li class=\"t-MediaList-groupItem\" #APEX$GROUP_IDENTIFICATION#>\n {if ?GROUP_TITLE/}\n <div class=\"t-MediaList-groupHeader\">\n {if ?GROUP_ICON/}<span class=\"t-MediaList-groupIcon #GROUP_ICON#\" aria-hidden=\"true\"></span>{endif/}\n <h2 class=\"t-MediaList-groupTitle\" id=\"#APEX$DOM_ID#_heading\">#GROUP_TITLE#</h2>\n </div>\n {endif/}\n <ul class=\"t-MediaList-groupItems\">#APEX$ROWS#</ul>\n </li>",
2741
+ "reportContainer": null,
2742
+ "numberOfLazyLoadingSkeletons": "3"
2743
+ },
2744
+ "attributeGroups": [
2745
+ {
2746
+ "identifier": "avatar",
2747
+ "name": "Avatar",
2748
+ "sequence": "10",
2749
+ "staticId": "avatar"
2750
+ },
2751
+ {
2752
+ "identifier": "badge",
2753
+ "name": "Badge",
2754
+ "sequence": "20",
2755
+ "staticId": "badge"
2756
+ },
2757
+ {
2758
+ "identifier": "grouping",
2759
+ "name": "Grouping",
2760
+ "sequence": "30",
2761
+ "staticId": "grouping"
2762
+ }
2763
+ ],
2764
+ "actionPositions": [
2765
+ {
2766
+ "identifier": "link",
2767
+ "name": "Link",
2768
+ "staticId": "LINK",
2769
+ "sequence": "10",
2770
+ "positionType": null
2771
+ }
2772
+ ],
2773
+ "actionTemplates": [],
2774
+ "slots": [],
2775
+ "customAttributes": [
2776
+ {
2777
+ "identifier": "APPLY_THEME_COLORS",
2778
+ "apexlangName": "applyThemeColors",
2779
+ "attributeId": "20",
2780
+ "name": "Apply Theme Colors",
2781
+ "type": "yesNo",
2782
+ "required": false,
2783
+ "defaultValue": "true",
2784
+ "sampleDataValue": "N",
2785
+ "attributeGroup": null,
2786
+ "sequence": "200",
2787
+ "dependencyAttribute": null,
2788
+ "dependencyCondition": null,
2789
+ "dependencyValue": null,
2790
+ "escapeMode": "htmlAttribute",
2791
+ "helpText": "Specify whether to use the Universal Theme colors for avatar and badge row items. When set to Yes, the u-colors class will be applied to each row. When set to No, a default color will be used instead.",
2792
+ "entries": []
2793
+ },
2794
+ {
2795
+ "identifier": "AVATAR_DESCRIPTION",
2796
+ "apexlangName": "description",
2797
+ "attributeId": "7",
2798
+ "name": "Description",
2799
+ "type": "text",
2800
+ "required": false,
2801
+ "defaultValue": null,
2802
+ "sampleDataValue": null,
2803
+ "attributeGroup": "@avatar",
2804
+ "sequence": "95",
2805
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
2806
+ "dependencyCondition": "=",
2807
+ "dependencyValue": "Y",
2808
+ "escapeMode": "htmlAttribute",
2809
+ "helpText": "Enter a short description of the image/icon or select a source column from the quick pick options. This will be used as title & alt text for the avatar image/icon.",
2810
+ "entries": []
2811
+ },
2812
+ {
2813
+ "identifier": "AVATAR_ICON",
2814
+ "apexlangName": "icon",
2815
+ "attributeId": "9",
2816
+ "name": "Icon",
2817
+ "type": "icon",
2818
+ "required": true,
2819
+ "defaultValue": "fa-user",
2820
+ "sampleDataValue": null,
2821
+ "attributeGroup": "@avatar",
2822
+ "sequence": "90",
2823
+ "dependencyAttribute": "@AVATAR_TYPE/component",
2824
+ "dependencyCondition": "=",
2825
+ "dependencyValue": "icon",
2826
+ "escapeMode": "htmlAttribute",
2827
+ "helpText": "Enter an icon class or use the Pick Icon dialog to select the icon you want to add to display in the avatar.",
2828
+ "entries": []
2829
+ },
2830
+ {
2831
+ "identifier": "AVATAR_IMAGE",
2832
+ "apexlangName": "image",
2833
+ "attributeId": "6",
2834
+ "name": "Image",
2835
+ "type": "media",
2836
+ "required": true,
2837
+ "defaultValue": null,
2838
+ "sampleDataValue": "{\"source\":\"URL\", \"url\":\"#APEX_FILES#sample_data/products/&IMAGE_FILENAME.\"}",
2839
+ "attributeGroup": "@avatar",
2840
+ "sequence": "60",
2841
+ "dependencyAttribute": "@AVATAR_TYPE/component",
2842
+ "dependencyCondition": "=",
2843
+ "dependencyValue": "image",
2844
+ "escapeMode": "htmlAttribute",
2845
+ "helpText": "<p>Use the Media popup dialog to select a source for the avatar image.</p>\n \n <p>Available options include:</p>\n <ul>\n <li>URL</li>\n <li>BLOB Column</li>\n <li>URL Column</li>\n </ul>",
2846
+ "entries": []
2847
+ },
2848
+ {
2849
+ "identifier": "AVATAR_INITIALS",
2850
+ "apexlangName": "initials",
2851
+ "attributeId": "8",
2852
+ "name": "Initials",
2853
+ "type": "sessionStateValue",
2854
+ "required": true,
2855
+ "defaultValue": null,
2856
+ "sampleDataValue": null,
2857
+ "attributeGroup": "@avatar",
2858
+ "sequence": "80",
2859
+ "dependencyAttribute": "@AVATAR_TYPE/component",
2860
+ "dependencyCondition": "=",
2861
+ "dependencyValue": "initials",
2862
+ "escapeMode": "stripHtml",
2863
+ "helpText": "Select the source column to be displayed within each avatar. Only varchar2 data types are supported.",
2864
+ "entries": []
2865
+ },
2866
+ {
2867
+ "identifier": "AVATAR_SHAPE",
2868
+ "apexlangName": "shape",
2869
+ "attributeId": "10",
2870
+ "name": "Shape",
2871
+ "type": "selectList",
2872
+ "required": true,
2873
+ "defaultValue": "t-Avatar--rounded",
2874
+ "sampleDataValue": null,
2875
+ "attributeGroup": "@avatar",
2876
+ "sequence": "100",
2877
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
2878
+ "dependencyCondition": "=",
2879
+ "dependencyValue": "Y",
2880
+ "escapeMode": "htmlAttribute",
2881
+ "helpText": "Select the shape of the avatar. Default inherits the shape set by the containing template.",
2882
+ "entries": [
2883
+ {
2884
+ "name": "circular",
2885
+ "display": "Circular",
2886
+ "returnValue": "t-Avatar--circle",
2887
+ "sequence": "20"
2888
+ },
2889
+ {
2890
+ "name": "noShape",
2891
+ "display": "No Shape",
2892
+ "returnValue": "t-Avatar--noShape",
2893
+ "sequence": "40"
2894
+ },
2895
+ {
2896
+ "name": "rounded",
2897
+ "display": "Rounded",
2898
+ "returnValue": "t-Avatar--rounded",
2899
+ "sequence": "10"
2900
+ },
2901
+ {
2902
+ "name": "square",
2903
+ "display": "Square",
2904
+ "returnValue": "t-Avatar--square",
2905
+ "sequence": "30"
2906
+ }
2907
+ ]
2908
+ },
2909
+ {
2910
+ "identifier": "AVATAR_TYPE",
2911
+ "apexlangName": "type",
2912
+ "attributeId": "5",
2913
+ "name": "Type",
2914
+ "type": "selectList",
2915
+ "required": true,
2916
+ "defaultValue": "icon",
2917
+ "sampleDataValue": "image",
2918
+ "attributeGroup": "@avatar",
2919
+ "sequence": "50",
2920
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
2921
+ "dependencyCondition": "=",
2922
+ "dependencyValue": "Y",
2923
+ "escapeMode": null,
2924
+ "helpText": "Select the type of content that will be displayed in the avatar.",
2925
+ "entries": [
2926
+ {
2927
+ "name": "icon",
2928
+ "display": "Icon",
2929
+ "returnValue": "icon",
2930
+ "sequence": "30"
2931
+ },
2932
+ {
2933
+ "name": "image",
2934
+ "display": "Image",
2935
+ "returnValue": "image",
2936
+ "sequence": "10"
2937
+ },
2938
+ {
2939
+ "name": "initials",
2940
+ "display": "Initials",
2941
+ "returnValue": "initials",
2942
+ "sequence": "20"
2943
+ }
2944
+ ]
2945
+ },
2946
+ {
2947
+ "identifier": "BADGE_ICON",
2948
+ "apexlangName": "icon",
2949
+ "attributeId": "14",
2950
+ "name": "Icon",
2951
+ "type": "icon",
2952
+ "required": false,
2953
+ "defaultValue": null,
2954
+ "sampleDataValue": null,
2955
+ "attributeGroup": "@badge",
2956
+ "sequence": "140",
2957
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
2958
+ "dependencyCondition": "=",
2959
+ "dependencyValue": "Y",
2960
+ "escapeMode": "htmlAttribute",
2961
+ "helpText": "Enter an icon class or use the Pick Icon dialog to select the icon you want to add to display in the badge.",
2962
+ "entries": []
2963
+ },
2964
+ {
2965
+ "identifier": "BADGE_LABEL",
2966
+ "apexlangName": "label",
2967
+ "attributeId": "11",
2968
+ "name": "Label",
2969
+ "type": "text",
2970
+ "required": true,
2971
+ "defaultValue": null,
2972
+ "sampleDataValue": "Price",
2973
+ "attributeGroup": "@badge",
2974
+ "sequence": "110",
2975
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
2976
+ "dependencyCondition": "=",
2977
+ "dependencyValue": "Y",
2978
+ "escapeMode": "raw",
2979
+ "helpText": "Enter a value for the badge label or select a source column from the quick pick options.",
2980
+ "entries": []
2981
+ },
2982
+ {
2983
+ "identifier": "BADGE_LABEL_DISPLAY",
2984
+ "apexlangName": "displayLabel",
2985
+ "attributeId": "15",
2986
+ "name": "Display Label",
2987
+ "type": "yesNo",
2988
+ "required": false,
2989
+ "defaultValue": null,
2990
+ "sampleDataValue": null,
2991
+ "attributeGroup": "@badge",
2992
+ "sequence": "150",
2993
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
2994
+ "dependencyCondition": "=",
2995
+ "dependencyValue": "Y",
2996
+ "escapeMode": "htmlAttribute",
2997
+ "helpText": "Specify whether to display or hide the badge label. When set to Yes, the badge label will be displayed in addition to the badge value. When set to No, only the badge value will be displayed.",
2998
+ "entries": []
2999
+ },
3000
+ {
3001
+ "identifier": "BADGE_SHAPE",
3002
+ "apexlangName": "shape",
3003
+ "attributeId": "17",
3004
+ "name": "Shape",
3005
+ "type": "selectList",
3006
+ "required": false,
3007
+ "defaultValue": null,
3008
+ "sampleDataValue": null,
3009
+ "attributeGroup": "@badge",
3010
+ "sequence": "170",
3011
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
3012
+ "dependencyCondition": "=",
3013
+ "dependencyValue": "Y",
3014
+ "escapeMode": "htmlAttribute",
3015
+ "helpText": "Select the shape of the badge. Default inherits the shape set by the containing template.",
3016
+ "entries": [
3017
+ {
3018
+ "name": "circular",
3019
+ "display": "Circular",
3020
+ "returnValue": "t-Badge--circle",
3021
+ "sequence": "20"
3022
+ },
3023
+ {
3024
+ "name": "rounded",
3025
+ "display": "Rounded",
3026
+ "returnValue": "t-Badge--rounded",
3027
+ "sequence": "10"
3028
+ },
3029
+ {
3030
+ "name": "square",
3031
+ "display": "Square",
3032
+ "returnValue": "t-Badge--square",
3033
+ "sequence": "30"
3034
+ }
3035
+ ]
3036
+ },
3037
+ {
3038
+ "identifier": "BADGE_STATE",
3039
+ "apexlangName": "state",
3040
+ "attributeId": "13",
3041
+ "name": "State",
3042
+ "type": "sessionStateValue",
3043
+ "required": false,
3044
+ "defaultValue": null,
3045
+ "sampleDataValue": null,
3046
+ "attributeGroup": "@badge",
3047
+ "sequence": "130",
3048
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
3049
+ "dependencyCondition": "=",
3050
+ "dependencyValue": "Y",
3051
+ "escapeMode": "htmlAttribute",
3052
+ "helpText": "Select the source column for the state of the badge. Substitute column value with \"danger\", \"warning\", \"success\" or \"info\" for default styling.",
3053
+ "entries": []
3054
+ },
3055
+ {
3056
+ "identifier": "BADGE_STYLE",
3057
+ "apexlangName": "style",
3058
+ "attributeId": "16",
3059
+ "name": "Style",
3060
+ "type": "selectList",
3061
+ "required": false,
3062
+ "defaultValue": null,
3063
+ "sampleDataValue": null,
3064
+ "attributeGroup": "@badge",
3065
+ "sequence": "160",
3066
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
3067
+ "dependencyCondition": "=",
3068
+ "dependencyValue": "Y",
3069
+ "escapeMode": "htmlAttribute",
3070
+ "helpText": "Select the badge style. Default inherits the style set by the containing template.",
3071
+ "entries": [
3072
+ {
3073
+ "name": "outline",
3074
+ "display": "Outline",
3075
+ "returnValue": "t-Badge--outline",
3076
+ "sequence": "20"
3077
+ },
3078
+ {
3079
+ "name": "subtle",
3080
+ "display": "Subtle",
3081
+ "returnValue": "t-Badge--subtle",
3082
+ "sequence": "10"
3083
+ }
3084
+ ]
3085
+ },
3086
+ {
3087
+ "identifier": "BADGE_VALUE",
3088
+ "apexlangName": "value",
3089
+ "attributeId": "12",
3090
+ "name": "Value",
3091
+ "type": "sessionStateValue",
3092
+ "required": true,
3093
+ "defaultValue": null,
3094
+ "sampleDataValue": "PRICE",
3095
+ "attributeGroup": "@badge",
3096
+ "sequence": "120",
3097
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
3098
+ "dependencyCondition": "=",
3099
+ "dependencyValue": "Y",
3100
+ "escapeMode": "stripHtml",
3101
+ "helpText": "Select a source column for the badge value.",
3102
+ "entries": []
3103
+ },
3104
+ {
3105
+ "identifier": "DESCRIPTION",
3106
+ "apexlangName": "description",
3107
+ "attributeId": "2",
3108
+ "name": "Description",
3109
+ "type": "sessionStateValue",
3110
+ "required": false,
3111
+ "defaultValue": null,
3112
+ "sampleDataValue": "CATEGORY",
3113
+ "attributeGroup": null,
3114
+ "sequence": "20",
3115
+ "dependencyAttribute": null,
3116
+ "dependencyCondition": null,
3117
+ "dependencyValue": null,
3118
+ "escapeMode": null,
3119
+ "helpText": "Select a source column to be used for the row description.",
3120
+ "entries": []
3121
+ },
3122
+ {
3123
+ "identifier": "DISPLAY_AVATAR",
3124
+ "apexlangName": "displayAvatar",
3125
+ "attributeId": "3",
3126
+ "name": "Display Avatar",
3127
+ "type": "yesNo",
3128
+ "required": false,
3129
+ "defaultValue": null,
3130
+ "sampleDataValue": "Y",
3131
+ "attributeGroup": null,
3132
+ "sequence": "30",
3133
+ "dependencyAttribute": null,
3134
+ "dependencyCondition": null,
3135
+ "dependencyValue": null,
3136
+ "escapeMode": "htmlAttribute",
3137
+ "helpText": "Specify whether to display or hide the avatar for each row. When set to Yes, an avatar will be displayed with the assigned image, icon, or initials. When set to No, no avatar will be displayed.",
3138
+ "entries": []
3139
+ },
3140
+ {
3141
+ "identifier": "DISPLAY_BADGE",
3142
+ "apexlangName": "displayBadge",
3143
+ "attributeId": "4",
3144
+ "name": "Display Badge",
3145
+ "type": "yesNo",
3146
+ "required": false,
3147
+ "defaultValue": null,
3148
+ "sampleDataValue": "Y",
3149
+ "attributeGroup": null,
3150
+ "sequence": "40",
3151
+ "dependencyAttribute": null,
3152
+ "dependencyCondition": null,
3153
+ "dependencyValue": null,
3154
+ "escapeMode": "htmlAttribute",
3155
+ "helpText": "Specify whether to display or hide the badge for each row. When set to Yes, a badge will be displayed in each row. When set to No, no badge will be displayed.",
3156
+ "entries": []
3157
+ },
3158
+ {
3159
+ "identifier": "GROUP_ICON",
3160
+ "apexlangName": "groupIcon",
3161
+ "attributeId": "22",
3162
+ "name": "Icon",
3163
+ "type": "icon",
3164
+ "required": false,
3165
+ "defaultValue": null,
3166
+ "sampleDataValue": null,
3167
+ "attributeGroup": "@grouping",
3168
+ "sequence": "220",
3169
+ "dependencyAttribute": "@GROUP_TITLE/reportGroup",
3170
+ "dependencyCondition": "isNotNull",
3171
+ "dependencyValue": null,
3172
+ "escapeMode": "htmlAttribute",
3173
+ "helpText": null,
3174
+ "entries": []
3175
+ },
3176
+ {
3177
+ "identifier": "GROUP_TITLE",
3178
+ "apexlangName": "groupTitle",
3179
+ "attributeId": "21",
3180
+ "name": "Title",
3181
+ "type": "html",
3182
+ "required": false,
3183
+ "defaultValue": null,
3184
+ "sampleDataValue": null,
3185
+ "attributeGroup": "@grouping",
3186
+ "sequence": "210",
3187
+ "dependencyAttribute": null,
3188
+ "dependencyCondition": null,
3189
+ "dependencyValue": null,
3190
+ "escapeMode": "raw",
3191
+ "helpText": null,
3192
+ "entries": []
3193
+ },
3194
+ {
3195
+ "identifier": "LAYOUT",
3196
+ "apexlangName": "layout",
3197
+ "attributeId": "18",
3198
+ "name": "Layout",
3199
+ "type": "selectList",
3200
+ "required": false,
3201
+ "defaultValue": null,
3202
+ "sampleDataValue": "t-MediaList--cols t-MediaList--3cols",
3203
+ "attributeGroup": null,
3204
+ "sequence": "180",
3205
+ "dependencyAttribute": null,
3206
+ "dependencyCondition": null,
3207
+ "dependencyValue": null,
3208
+ "escapeMode": "htmlAttribute",
3209
+ "helpText": "Select the number of grid columns the media list content will display in. Horizontal Span will display all columns in a single horizontal row.",
3210
+ "entries": [
3211
+ {
3212
+ "name": "2ColumnGrid",
3213
+ "display": "2 Column Grid",
3214
+ "returnValue": "t-MediaList--cols t-MediaList--2cols",
3215
+ "sequence": "10"
3216
+ },
3217
+ {
3218
+ "name": "3ColumnGrid",
3219
+ "display": "3 Column Grid",
3220
+ "returnValue": "t-MediaList--cols t-MediaList--3cols",
3221
+ "sequence": "20"
3222
+ },
3223
+ {
3224
+ "name": "4ColumnGrid",
3225
+ "display": "4 Column Grid",
3226
+ "returnValue": "t-MediaList--cols t-MediaList--4cols",
3227
+ "sequence": "30"
3228
+ },
3229
+ {
3230
+ "name": "5ColumnGrid",
3231
+ "display": "5 Column Grid",
3232
+ "returnValue": "t-MediaList--cols t-MediaList--5cols",
3233
+ "sequence": "40"
3234
+ },
3235
+ {
3236
+ "name": "horizontalSpan",
3237
+ "display": "Horizontal Span",
3238
+ "returnValue": "t-MediaList--horizontal",
3239
+ "sequence": "50"
3240
+ }
3241
+ ]
3242
+ },
3243
+ {
3244
+ "identifier": "SIZE",
3245
+ "apexlangName": "size",
3246
+ "attributeId": "19",
3247
+ "name": "Size",
3248
+ "type": "selectList",
3249
+ "required": false,
3250
+ "defaultValue": null,
3251
+ "sampleDataValue": "t-MediaList--large force-fa-lg",
3252
+ "attributeGroup": null,
3253
+ "sequence": "190",
3254
+ "dependencyAttribute": null,
3255
+ "dependencyCondition": null,
3256
+ "dependencyValue": null,
3257
+ "escapeMode": "htmlAttribute",
3258
+ "helpText": "Set the size of media list items.",
3259
+ "entries": [
3260
+ {
3261
+ "name": "large",
3262
+ "display": "Large",
3263
+ "returnValue": "t-MediaList--large force-fa-lg",
3264
+ "sequence": "10"
3265
+ }
3266
+ ]
3267
+ },
3268
+ {
3269
+ "identifier": "TITLE",
3270
+ "apexlangName": "title",
3271
+ "attributeId": "1",
3272
+ "name": "Title",
3273
+ "type": "sessionStateValue",
3274
+ "required": true,
3275
+ "defaultValue": null,
3276
+ "sampleDataValue": "PRODUCT_NAME",
3277
+ "attributeGroup": null,
3278
+ "sequence": "10",
3279
+ "dependencyAttribute": null,
3280
+ "dependencyCondition": null,
3281
+ "dependencyValue": null,
3282
+ "escapeMode": null,
3283
+ "helpText": "Select a source column to be used as the title.",
3284
+ "entries": []
3285
+ }
3286
+ ]
3287
+ },
3288
+ "metricCard": {
3289
+ "backend": "repo-theme-export",
3290
+ "theme": "universal-theme",
3291
+ "requestedName": "metricCard",
3292
+ "resolvedName": "metricCard-theme-universal-theme",
3293
+ "sourceDir": "metricCard-theme-universal-theme",
3294
+ "plugin": {
3295
+ "identifier": "metricCard",
3296
+ "name": "Metric Card",
3297
+ "staticId": "THEME_42$METRIC_CARD",
3298
+ "availableAs": [
3299
+ "partial",
3300
+ "report"
3301
+ ],
3302
+ "reportBody": "<ul class=\"t-MetricCards{if LAYOUT/} t-MetricCards--#LAYOUT#{endif/} #APEX$COMPONENT_CSS_CLASSES#\">#APEX$ROWS#</ul>",
3303
+ "reportRow": "<li class=\"t-MetricCards-item #ITEM_CSS_CLASSES#\" #APEX$ROW_IDENTIFICATION#>#APEX$PARTIAL#</li>",
3304
+ "reportGroup": "<li class=\"t-MetricCard-groupItem\" #APEX$GROUP_IDENTIFICATION#>\n {if ?GROUP_TITLE/}\n <div class=\"t-MetricCard-groupHeader\">\n {if ?GROUP_ICON/}<span class=\"t-MetricCard-groupIcon fa #GROUP_ICON#\" aria-hidden=\"true\"></span>{endif/}\n <h2 class=\"t-MetricCard-groupTitle\" id=\"#APEX$DOM_ID#_heading\">#GROUP_TITLE#</h2>\n </div>\n {endif/}\n <ul class=\"t-MetricCard-groupItems\">#APEX$ROWS#</ul>\n </li>",
3305
+ "reportContainer": null,
3306
+ "numberOfLazyLoadingSkeletons": "3"
3307
+ },
3308
+ "attributeGroups": [
3309
+ {
3310
+ "identifier": "advanced",
3311
+ "name": "Advanced",
3312
+ "sequence": "30",
3313
+ "staticId": "advanced"
3314
+ },
3315
+ {
3316
+ "identifier": "avatar",
3317
+ "name": "Avatar",
3318
+ "sequence": "10",
3319
+ "staticId": "avatar"
3320
+ },
3321
+ {
3322
+ "identifier": "badge",
3323
+ "name": "Badge",
3324
+ "sequence": "20",
3325
+ "staticId": "badge"
3326
+ },
3327
+ {
3328
+ "identifier": "grouping",
3329
+ "name": "Grouping",
3330
+ "sequence": "40",
3331
+ "staticId": "grouping"
3332
+ }
3333
+ ],
3334
+ "actionPositions": [
3335
+ {
3336
+ "identifier": "link",
3337
+ "name": "Link",
3338
+ "staticId": "LINK",
3339
+ "sequence": "10",
3340
+ "positionType": null
3341
+ }
3342
+ ],
3343
+ "actionTemplates": [],
3344
+ "slots": [],
3345
+ "customAttributes": [
3346
+ {
3347
+ "identifier": "AVATAR_ALIGNMENT",
3348
+ "apexlangName": "alignment",
3349
+ "attributeId": "31",
3350
+ "name": "Alignment",
3351
+ "type": "selectList",
3352
+ "required": true,
3353
+ "defaultValue": "t-MetricCard-body--avatarAlignmentStart",
3354
+ "sampleDataValue": null,
3355
+ "attributeGroup": "@avatar",
3356
+ "sequence": "310",
3357
+ "dependencyAttribute": "@AVATAR_POSITION/component",
3358
+ "dependencyCondition": "=",
3359
+ "dependencyValue": "t-MetricCard-body--avatarPositionInline",
3360
+ "escapeMode": "htmlAttribute",
3361
+ "helpText": "Choose the vertical alignment of the Avatar: Start (Top), Center (Middle), or End (Bottom).",
3362
+ "entries": [
3363
+ {
3364
+ "name": "center",
3365
+ "display": "Center",
3366
+ "returnValue": "t-MetricCard-body--avatarAlignmentCenter",
3367
+ "sequence": "20"
3368
+ },
3369
+ {
3370
+ "name": "end",
3371
+ "display": "End",
3372
+ "returnValue": "t-MetricCard-body--avatarAlignmentEnd",
3373
+ "sequence": "30"
3374
+ },
3375
+ {
3376
+ "name": "start",
3377
+ "display": "Start",
3378
+ "returnValue": "t-MetricCard-body--avatarAlignmentStart",
3379
+ "sequence": "10"
3380
+ }
3381
+ ]
3382
+ },
3383
+ {
3384
+ "identifier": "AVATAR_ICON",
3385
+ "apexlangName": "icon",
3386
+ "attributeId": "26",
3387
+ "name": "Icon",
3388
+ "type": "icon",
3389
+ "required": true,
3390
+ "defaultValue": "fa-line-chart",
3391
+ "sampleDataValue": null,
3392
+ "attributeGroup": "@avatar",
3393
+ "sequence": "260",
3394
+ "dependencyAttribute": "@AVATAR_TYPE/component",
3395
+ "dependencyCondition": "=",
3396
+ "dependencyValue": "icon",
3397
+ "escapeMode": "htmlAttribute",
3398
+ "helpText": "Enter an icon class or use the Pick Icon dialog to select the icon you want to add to display in the avatar.",
3399
+ "entries": []
3400
+ },
3401
+ {
3402
+ "identifier": "AVATAR_IMAGE",
3403
+ "apexlangName": "image",
3404
+ "attributeId": "24",
3405
+ "name": "Image",
3406
+ "type": "media",
3407
+ "required": true,
3408
+ "defaultValue": null,
3409
+ "sampleDataValue": null,
3410
+ "attributeGroup": "@avatar",
3411
+ "sequence": "240",
3412
+ "dependencyAttribute": "@AVATAR_TYPE/component",
3413
+ "dependencyCondition": "=",
3414
+ "dependencyValue": "image",
3415
+ "escapeMode": "htmlAttribute",
3416
+ "helpText": "<p>Use the Media popup dialog to select a source for the avatar image.</p>\n \n <p>Available options include:</p>\n <ul>\n <li>URL</li>\n <li>BLOB Column</li>\n <li>URL Column</li>\n </ul>",
3417
+ "entries": []
3418
+ },
3419
+ {
3420
+ "identifier": "AVATAR_INITIALS",
3421
+ "apexlangName": "initials",
3422
+ "attributeId": "25",
3423
+ "name": "Initials",
3424
+ "type": "sessionStateValue",
3425
+ "required": true,
3426
+ "defaultValue": null,
3427
+ "sampleDataValue": "INITIALS",
3428
+ "attributeGroup": "@avatar",
3429
+ "sequence": "250",
3430
+ "dependencyAttribute": "@AVATAR_TYPE/component",
3431
+ "dependencyCondition": "=",
3432
+ "dependencyValue": "initials",
3433
+ "escapeMode": "stripHtml",
3434
+ "helpText": "Select the source column to be displayed within each avatar. Only varchar2 data types are supported.",
3435
+ "entries": []
3436
+ },
3437
+ {
3438
+ "identifier": "AVATAR_POSITION",
3439
+ "apexlangName": "position",
3440
+ "attributeId": "28",
3441
+ "name": "Position",
3442
+ "type": "selectList",
3443
+ "required": true,
3444
+ "defaultValue": "t-MetricCard-body--avatarPositionTop",
3445
+ "sampleDataValue": null,
3446
+ "attributeGroup": "@avatar",
3447
+ "sequence": "280",
3448
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
3449
+ "dependencyCondition": "=",
3450
+ "dependencyValue": "Y",
3451
+ "escapeMode": "htmlAttribute",
3452
+ "helpText": "Align the Avatar above the content (Top) or beside the content (Inline).",
3453
+ "entries": [
3454
+ {
3455
+ "name": "inline",
3456
+ "display": "Inline",
3457
+ "returnValue": "t-MetricCard-body--avatarPositionInline",
3458
+ "sequence": "20"
3459
+ },
3460
+ {
3461
+ "name": "top",
3462
+ "display": "Top",
3463
+ "returnValue": "t-MetricCard-body--avatarPositionTop",
3464
+ "sequence": "10"
3465
+ }
3466
+ ]
3467
+ },
3468
+ {
3469
+ "identifier": "AVATAR_SHAPE",
3470
+ "apexlangName": "shape",
3471
+ "attributeId": "27",
3472
+ "name": "Shape",
3473
+ "type": "selectList",
3474
+ "required": true,
3475
+ "defaultValue": "t-Avatar--rounded",
3476
+ "sampleDataValue": null,
3477
+ "attributeGroup": "@avatar",
3478
+ "sequence": "270",
3479
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
3480
+ "dependencyCondition": "=",
3481
+ "dependencyValue": "Y",
3482
+ "escapeMode": "htmlAttribute",
3483
+ "helpText": "Select the shape of the avatar. Default inherits the shape set by the containing template.",
3484
+ "entries": [
3485
+ {
3486
+ "name": "circular",
3487
+ "display": "Circular",
3488
+ "returnValue": "t-Avatar--circle",
3489
+ "sequence": "20"
3490
+ },
3491
+ {
3492
+ "name": "noShape",
3493
+ "display": "No Shape",
3494
+ "returnValue": "t-Avatar--noShape",
3495
+ "sequence": "40"
3496
+ },
3497
+ {
3498
+ "name": "rounded",
3499
+ "display": "Rounded",
3500
+ "returnValue": "t-Avatar--rounded",
3501
+ "sequence": "10"
3502
+ },
3503
+ {
3504
+ "name": "square",
3505
+ "display": "Square",
3506
+ "returnValue": "t-Avatar--square",
3507
+ "sequence": "30"
3508
+ }
3509
+ ]
3510
+ },
3511
+ {
3512
+ "identifier": "AVATAR_SIZE",
3513
+ "apexlangName": "size",
3514
+ "attributeId": "29",
3515
+ "name": "Size",
3516
+ "type": "selectList",
3517
+ "required": false,
3518
+ "defaultValue": null,
3519
+ "sampleDataValue": null,
3520
+ "attributeGroup": "@avatar",
3521
+ "sequence": "275",
3522
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
3523
+ "dependencyCondition": "=",
3524
+ "dependencyValue": "Y",
3525
+ "escapeMode": null,
3526
+ "helpText": "Set the size of the avatar. The default inherits the sizing set by the containing template.",
3527
+ "entries": [
3528
+ {
3529
+ "name": "large",
3530
+ "display": "Large",
3531
+ "returnValue": "t-Avatar--lg",
3532
+ "sequence": "50"
3533
+ },
3534
+ {
3535
+ "name": "medium",
3536
+ "display": "Medium",
3537
+ "returnValue": "t-Avatar--md",
3538
+ "sequence": "40"
3539
+ },
3540
+ {
3541
+ "name": "small",
3542
+ "display": "Small",
3543
+ "returnValue": "t-Avatar--sm",
3544
+ "sequence": "30"
3545
+ }
3546
+ ]
3547
+ },
3548
+ {
3549
+ "identifier": "AVATAR_STYLE",
3550
+ "apexlangName": "style",
3551
+ "attributeId": "30",
3552
+ "name": "Style",
3553
+ "type": "selectList",
3554
+ "required": false,
3555
+ "defaultValue": null,
3556
+ "sampleDataValue": null,
3557
+ "attributeGroup": "@avatar",
3558
+ "sequence": "265",
3559
+ "dependencyAttribute": "@AVATAR_TYPE/component",
3560
+ "dependencyCondition": "inList",
3561
+ "dependencyValue": null,
3562
+ "escapeMode": null,
3563
+ "helpText": null,
3564
+ "entries": [
3565
+ {
3566
+ "name": "subtle",
3567
+ "display": "Subtle",
3568
+ "returnValue": "t-MetricCard-avatar--subtle",
3569
+ "sequence": "10"
3570
+ }
3571
+ ]
3572
+ },
3573
+ {
3574
+ "identifier": "AVATAR_TYPE",
3575
+ "apexlangName": "type",
3576
+ "attributeId": "23",
3577
+ "name": "Type",
3578
+ "type": "selectList",
3579
+ "required": true,
3580
+ "defaultValue": "icon",
3581
+ "sampleDataValue": null,
3582
+ "attributeGroup": "@avatar",
3583
+ "sequence": "230",
3584
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
3585
+ "dependencyCondition": "=",
3586
+ "dependencyValue": "Y",
3587
+ "escapeMode": null,
3588
+ "helpText": null,
3589
+ "entries": [
3590
+ {
3591
+ "name": "icon",
3592
+ "display": "Icon",
3593
+ "returnValue": "icon",
3594
+ "sequence": "30"
3595
+ },
3596
+ {
3597
+ "name": "image",
3598
+ "display": "Image",
3599
+ "returnValue": "image",
3600
+ "sequence": "10"
3601
+ },
3602
+ {
3603
+ "name": "initials",
3604
+ "display": "Initials",
3605
+ "returnValue": "initials",
3606
+ "sequence": "20"
3607
+ }
3608
+ ]
3609
+ },
3610
+ {
3611
+ "identifier": "BADGE_ICON",
3612
+ "apexlangName": "icon",
3613
+ "attributeId": "8",
3614
+ "name": "Icon",
3615
+ "type": "icon",
3616
+ "required": false,
3617
+ "defaultValue": null,
3618
+ "sampleDataValue": "fa-check-circle-o",
3619
+ "attributeGroup": "@badge",
3620
+ "sequence": "80",
3621
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
3622
+ "dependencyCondition": "=",
3623
+ "dependencyValue": "Y",
3624
+ "escapeMode": "htmlAttribute",
3625
+ "helpText": "Enter an icon class or use the Pick Icon dialog to select the icon you want to add to display in the badge.",
3626
+ "entries": []
3627
+ },
3628
+ {
3629
+ "identifier": "BADGE_LABEL",
3630
+ "apexlangName": "label",
3631
+ "attributeId": "5",
3632
+ "name": "Label",
3633
+ "type": "text",
3634
+ "required": true,
3635
+ "defaultValue": null,
3636
+ "sampleDataValue": null,
3637
+ "attributeGroup": "@badge",
3638
+ "sequence": "50",
3639
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
3640
+ "dependencyCondition": "=",
3641
+ "dependencyValue": "Y",
3642
+ "escapeMode": null,
3643
+ "helpText": "Enter a value for the badge label or select a source column from the quick pick options.",
3644
+ "entries": []
3645
+ },
3646
+ {
3647
+ "identifier": "BADGE_LABEL_DISPLAY",
3648
+ "apexlangName": "displayLabel",
3649
+ "attributeId": "9",
3650
+ "name": "\"Display Label \"",
3651
+ "type": "yesNo",
3652
+ "required": false,
3653
+ "defaultValue": null,
3654
+ "sampleDataValue": null,
3655
+ "attributeGroup": "@badge",
3656
+ "sequence": "90",
3657
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
3658
+ "dependencyCondition": "=",
3659
+ "dependencyValue": "Y",
3660
+ "escapeMode": "htmlAttribute",
3661
+ "helpText": "Specify whether to display or hide the badge label. When set to Yes, the badge label will be displayed in addition to the badge value. When set to No, only the badge value will be displayed.",
3662
+ "entries": []
3663
+ },
3664
+ {
3665
+ "identifier": "BADGE_SHAPE",
3666
+ "apexlangName": "shape",
3667
+ "attributeId": "11",
3668
+ "name": "Shape",
3669
+ "type": "selectList",
3670
+ "required": false,
3671
+ "defaultValue": null,
3672
+ "sampleDataValue": null,
3673
+ "attributeGroup": "@badge",
3674
+ "sequence": "110",
3675
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
3676
+ "dependencyCondition": "=",
3677
+ "dependencyValue": "Y",
3678
+ "escapeMode": null,
3679
+ "helpText": "Select the shape of the badge. Default inherits the shape set by the containing template.",
3680
+ "entries": [
3681
+ {
3682
+ "name": "circular",
3683
+ "display": "Circular",
3684
+ "returnValue": "t-Badge--circle",
3685
+ "sequence": "20"
3686
+ },
3687
+ {
3688
+ "name": "rounded",
3689
+ "display": "Rounded",
3690
+ "returnValue": "t-Badge--rounded",
3691
+ "sequence": "10"
3692
+ },
3693
+ {
3694
+ "name": "square",
3695
+ "display": "Square",
3696
+ "returnValue": "t-Badge--square",
3697
+ "sequence": "30"
3698
+ }
3699
+ ]
3700
+ },
3701
+ {
3702
+ "identifier": "BADGE_SIZE",
3703
+ "apexlangName": "size",
3704
+ "attributeId": "21",
3705
+ "name": "Size",
3706
+ "type": "selectList",
3707
+ "required": false,
3708
+ "defaultValue": null,
3709
+ "sampleDataValue": null,
3710
+ "attributeGroup": "@badge",
3711
+ "sequence": "210",
3712
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
3713
+ "dependencyCondition": "=",
3714
+ "dependencyValue": "Y",
3715
+ "escapeMode": null,
3716
+ "helpText": null,
3717
+ "entries": [
3718
+ {
3719
+ "name": "large",
3720
+ "display": "Large",
3721
+ "returnValue": "t-Badge--lg",
3722
+ "sequence": "30"
3723
+ },
3724
+ {
3725
+ "name": "medium",
3726
+ "display": "Medium",
3727
+ "returnValue": "t-Badge--md",
3728
+ "sequence": "20"
3729
+ },
3730
+ {
3731
+ "name": "small",
3732
+ "display": "Small",
3733
+ "returnValue": "t-Badge--sm",
3734
+ "sequence": "10"
3735
+ }
3736
+ ]
3737
+ },
3738
+ {
3739
+ "identifier": "BADGE_STATE",
3740
+ "apexlangName": "state",
3741
+ "attributeId": "7",
3742
+ "name": "State",
3743
+ "type": "sessionStateValue",
3744
+ "required": false,
3745
+ "defaultValue": null,
3746
+ "sampleDataValue": null,
3747
+ "attributeGroup": "@badge",
3748
+ "sequence": "70",
3749
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
3750
+ "dependencyCondition": "=",
3751
+ "dependencyValue": "Y",
3752
+ "escapeMode": "htmlAttribute",
3753
+ "helpText": "Select the source column for the state of the badge. Substitute column value with \"danger\", \"warning\", \"success\" or \"info\" for default styling.",
3754
+ "entries": []
3755
+ },
3756
+ {
3757
+ "identifier": "BADGE_STYLE",
3758
+ "apexlangName": "style",
3759
+ "attributeId": "10",
3760
+ "name": "Style",
3761
+ "type": "selectList",
3762
+ "required": false,
3763
+ "defaultValue": null,
3764
+ "sampleDataValue": null,
3765
+ "attributeGroup": "@badge",
3766
+ "sequence": "100",
3767
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
3768
+ "dependencyCondition": "=",
3769
+ "dependencyValue": "Y",
3770
+ "escapeMode": "htmlAttribute",
3771
+ "helpText": "Select the badge style. Default inherits the style set by the containing template.",
3772
+ "entries": [
3773
+ {
3774
+ "name": "outline",
3775
+ "display": "Outline",
3776
+ "returnValue": "t-Badge--outline",
3777
+ "sequence": "20"
3778
+ },
3779
+ {
3780
+ "name": "subtle",
3781
+ "display": "Subtle",
3782
+ "returnValue": "t-Badge--subtle",
3783
+ "sequence": "10"
3784
+ }
3785
+ ]
3786
+ },
3787
+ {
3788
+ "identifier": "BADGE_VALUE",
3789
+ "apexlangName": "value",
3790
+ "attributeId": "6",
3791
+ "name": "Value",
3792
+ "type": "sessionStateValue",
3793
+ "required": true,
3794
+ "defaultValue": null,
3795
+ "sampleDataValue": "Closed",
3796
+ "attributeGroup": "@badge",
3797
+ "sequence": "60",
3798
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
3799
+ "dependencyCondition": "=",
3800
+ "dependencyValue": "Y",
3801
+ "escapeMode": "htmlAttribute",
3802
+ "helpText": "Select a source column for the badge value.",
3803
+ "entries": []
3804
+ },
3805
+ {
3806
+ "identifier": "DISPLAY_AVATAR",
3807
+ "apexlangName": "displayAvatar",
3808
+ "attributeId": "22",
3809
+ "name": "Display Avatar",
3810
+ "type": "yesNo",
3811
+ "required": false,
3812
+ "defaultValue": null,
3813
+ "sampleDataValue": "N",
3814
+ "attributeGroup": "@avatar",
3815
+ "sequence": "220",
3816
+ "dependencyAttribute": null,
3817
+ "dependencyCondition": null,
3818
+ "dependencyValue": null,
3819
+ "escapeMode": null,
3820
+ "helpText": "Specify whether to display or hide the avatar for each row. When set to Yes, an avatar will be displayed with the assigned image, icon, or initials. When set to No, no avatar will be displayed.",
3821
+ "entries": []
3822
+ },
3823
+ {
3824
+ "identifier": "DISPLAY_BADGE",
3825
+ "apexlangName": "displayBadge",
3826
+ "attributeId": "4",
3827
+ "name": "Display Badge",
3828
+ "type": "yesNo",
3829
+ "required": false,
3830
+ "defaultValue": null,
3831
+ "sampleDataValue": "Y",
3832
+ "attributeGroup": "@badge",
3833
+ "sequence": "40",
3834
+ "dependencyAttribute": null,
3835
+ "dependencyCondition": null,
3836
+ "dependencyValue": null,
3837
+ "escapeMode": "htmlAttribute",
3838
+ "helpText": "Specify whether to display or hide the badge for each row. When set to Yes, a badge will be displayed in each row. When set to No, no badge will be displayed.",
3839
+ "entries": []
3840
+ },
3841
+ {
3842
+ "identifier": "GROUP_ICON",
3843
+ "apexlangName": "groupIcon",
3844
+ "attributeId": "17",
3845
+ "name": "Group Icon",
3846
+ "type": "icon",
3847
+ "required": false,
3848
+ "defaultValue": null,
3849
+ "sampleDataValue": null,
3850
+ "attributeGroup": "@grouping",
3851
+ "sequence": "170",
3852
+ "dependencyAttribute": "@GROUP_TITLE/reportGroup",
3853
+ "dependencyCondition": "isNotNull",
3854
+ "dependencyValue": null,
3855
+ "escapeMode": "htmlAttribute",
3856
+ "helpText": null,
3857
+ "entries": []
3858
+ },
3859
+ {
3860
+ "identifier": "GROUP_TITLE",
3861
+ "apexlangName": "groupTitle",
3862
+ "attributeId": "16",
3863
+ "name": "Group Title",
3864
+ "type": "text",
3865
+ "required": false,
3866
+ "defaultValue": null,
3867
+ "sampleDataValue": null,
3868
+ "attributeGroup": "@grouping",
3869
+ "sequence": "160",
3870
+ "dependencyAttribute": null,
3871
+ "dependencyCondition": null,
3872
+ "dependencyValue": null,
3873
+ "escapeMode": null,
3874
+ "helpText": null,
3875
+ "entries": []
3876
+ },
3877
+ {
3878
+ "identifier": "ITEM_CSS_CLASSES",
3879
+ "apexlangName": "itemCssClasses",
3880
+ "attributeId": "13",
3881
+ "name": "Item CSS Classes",
3882
+ "type": "text",
3883
+ "required": false,
3884
+ "defaultValue": null,
3885
+ "sampleDataValue": null,
3886
+ "attributeGroup": "@advanced",
3887
+ "sequence": "220",
3888
+ "dependencyAttribute": null,
3889
+ "dependencyCondition": null,
3890
+ "dependencyValue": null,
3891
+ "escapeMode": null,
3892
+ "helpText": "Enter CSS classes to add to the items. You may add multiple classes by separating them with a space.",
3893
+ "entries": []
3894
+ },
3895
+ {
3896
+ "identifier": "LAYOUT",
3897
+ "apexlangName": "layout",
3898
+ "attributeId": "15",
3899
+ "name": "Layout",
3900
+ "type": "selectList",
3901
+ "required": false,
3902
+ "defaultValue": null,
3903
+ "sampleDataValue": null,
3904
+ "attributeGroup": null,
3905
+ "sequence": "150",
3906
+ "dependencyAttribute": null,
3907
+ "dependencyCondition": null,
3908
+ "dependencyValue": null,
3909
+ "escapeMode": null,
3910
+ "helpText": "Select the number of grid columns the Metric Card content will display in. Auto will display all cards horizontally and wrap automatically.",
3911
+ "entries": [
3912
+ {
3913
+ "name": "2Columns",
3914
+ "display": "2 Columns",
3915
+ "returnValue": "2cols",
3916
+ "sequence": "20"
3917
+ },
3918
+ {
3919
+ "name": "3Columns",
3920
+ "display": "3 Columns",
3921
+ "returnValue": "3cols",
3922
+ "sequence": "30"
3923
+ },
3924
+ {
3925
+ "name": "4Columns",
3926
+ "display": "4 Columns",
3927
+ "returnValue": "4cols",
3928
+ "sequence": "40"
3929
+ },
3930
+ {
3931
+ "name": "5Columns",
3932
+ "display": "5 Columns",
3933
+ "returnValue": "5cols",
3934
+ "sequence": "50"
3935
+ },
3936
+ {
3937
+ "name": "autoWrapping",
3938
+ "display": "Auto (Wrapping)",
3939
+ "returnValue": "auto",
3940
+ "sequence": "60"
3941
+ },
3942
+ {
3943
+ "name": "overflow",
3944
+ "display": "Overflow",
3945
+ "returnValue": "overflow",
3946
+ "sequence": "70"
3947
+ },
3948
+ {
3949
+ "name": "stacked",
3950
+ "display": "Stacked",
3951
+ "returnValue": "stacked",
3952
+ "sequence": "10"
3953
+ }
3954
+ ]
3955
+ },
3956
+ {
3957
+ "identifier": "META",
3958
+ "apexlangName": "meta",
3959
+ "attributeId": "3",
3960
+ "name": "Meta",
3961
+ "type": "text",
3962
+ "required": false,
3963
+ "defaultValue": null,
3964
+ "sampleDataValue": "Meta",
3965
+ "attributeGroup": null,
3966
+ "sequence": "30",
3967
+ "dependencyAttribute": null,
3968
+ "dependencyCondition": null,
3969
+ "dependencyValue": null,
3970
+ "escapeMode": null,
3971
+ "helpText": "Enter some text and/or column substitution strings to be used as the Meta Attribute in each row.",
3972
+ "entries": []
3973
+ },
3974
+ {
3975
+ "identifier": "META_CSS_CLASSES",
3976
+ "apexlangName": "metaCssClasses",
3977
+ "attributeId": "20",
3978
+ "name": "Meta CSS Classes",
3979
+ "type": "text",
3980
+ "required": false,
3981
+ "defaultValue": null,
3982
+ "sampleDataValue": null,
3983
+ "attributeGroup": null,
3984
+ "sequence": "35",
3985
+ "dependencyAttribute": null,
3986
+ "dependencyCondition": null,
3987
+ "dependencyValue": null,
3988
+ "escapeMode": null,
3989
+ "helpText": "Apply typography utility classes or custom CSS to the metric card meta attribute (for example, u-text-heading-sm). You may add multiple classes by separating them with a space.",
3990
+ "entries": []
3991
+ },
3992
+ {
3993
+ "identifier": "METRIC",
3994
+ "apexlangName": "metric",
3995
+ "attributeId": "2",
3996
+ "name": "Metric",
3997
+ "type": "text",
3998
+ "required": true,
3999
+ "defaultValue": null,
4000
+ "sampleDataValue": "Metric",
4001
+ "attributeGroup": null,
4002
+ "sequence": "20",
4003
+ "dependencyAttribute": null,
4004
+ "dependencyCondition": null,
4005
+ "dependencyValue": null,
4006
+ "escapeMode": null,
4007
+ "helpText": "Enter some text and/or column substitution strings to be used as the Metric Attribute in each row.",
4008
+ "entries": []
4009
+ },
4010
+ {
4011
+ "identifier": "METRIC_CSS_CLASSES",
4012
+ "apexlangName": "metricCssClasses",
4013
+ "attributeId": "19",
4014
+ "name": "Metric CSS Classes",
4015
+ "type": "text",
4016
+ "required": false,
4017
+ "defaultValue": null,
4018
+ "sampleDataValue": null,
4019
+ "attributeGroup": null,
4020
+ "sequence": "25",
4021
+ "dependencyAttribute": null,
4022
+ "dependencyCondition": null,
4023
+ "dependencyValue": null,
4024
+ "escapeMode": null,
4025
+ "helpText": "Apply typography utility classes or custom CSS to the metric card metric attribute (for example, u-text-heading-lg). You may add multiple classes by separating them with a space.",
4026
+ "entries": []
4027
+ },
4028
+ {
4029
+ "identifier": "TITLE",
4030
+ "apexlangName": "title",
4031
+ "attributeId": "1",
4032
+ "name": "Title",
4033
+ "type": "text",
4034
+ "required": false,
4035
+ "defaultValue": null,
4036
+ "sampleDataValue": "Title",
4037
+ "attributeGroup": null,
4038
+ "sequence": "10",
4039
+ "dependencyAttribute": null,
4040
+ "dependencyCondition": null,
4041
+ "dependencyValue": null,
4042
+ "escapeMode": null,
4043
+ "helpText": "Enter some text and/or column substitution strings to be used as the Title in each row.",
4044
+ "entries": []
4045
+ },
4046
+ {
4047
+ "identifier": "TITLE_CSS_CLASSES",
4048
+ "apexlangName": "titleCssClasses",
4049
+ "attributeId": "18",
4050
+ "name": "Title CSS Classes",
4051
+ "type": "text",
4052
+ "required": false,
4053
+ "defaultValue": null,
4054
+ "sampleDataValue": null,
4055
+ "attributeGroup": null,
4056
+ "sequence": "15",
4057
+ "dependencyAttribute": null,
4058
+ "dependencyCondition": null,
4059
+ "dependencyValue": null,
4060
+ "escapeMode": null,
4061
+ "helpText": "Apply typography utility classes or custom CSS to the metric card title (for example, u-text-heading-md). You may add multiple classes by separating them with a space.",
4062
+ "entries": []
4063
+ }
4064
+ ]
4065
+ },
4066
+ "timeline": {
4067
+ "backend": "repo-theme-export",
4068
+ "theme": "universal-theme",
4069
+ "requestedName": "timeline",
4070
+ "resolvedName": "timeline-theme-universal-theme",
4071
+ "sourceDir": "timeline-theme-universal-theme",
4072
+ "plugin": {
4073
+ "identifier": "timeline",
4074
+ "name": "Timeline",
4075
+ "staticId": "THEME_42$TIMELINE",
4076
+ "availableAs": [
4077
+ "partial",
4078
+ "report"
4079
+ ],
4080
+ "reportBody": "<ul class=\"t-Timeline{if ?STYLE/} #STYLE#{endif/}{if APPLY_THEME_COLORS/} u-colors{endif/} #APEX$COMPONENT_CSS_CLASSES#\">#APEX$ROWS#</ul>",
4081
+ "reportRow": "<li class=\"t-Timeline-item\" #APEX$ROW_IDENTIFICATION#>#APEX$PARTIAL#</li>",
4082
+ "reportGroup": "<li class=\"t-Timeline-groupItem\" #APEX$GROUP_IDENTIFICATION#>\n {if ?GROUP_TITLE/}\n <div class=\"t-Timeline-groupHeader\">\n {if ?GROUP_ICON/}<span class=\"t-Timeline-groupIcon #GROUP_ICON#\" aria-hidden=\"true\"></span>{endif/}\n <h2 class=\"t-Timeline-groupTitle\" id=\"#APEX$DOM_ID#_heading\">#GROUP_TITLE#</h2>\n </div>\n {endif/}\n <ul class=\"t-Timeline-groupItems\">#APEX$ROWS#</ul>\n </li>",
4083
+ "reportContainer": null,
4084
+ "numberOfLazyLoadingSkeletons": "3"
4085
+ },
4086
+ "attributeGroups": [
4087
+ {
4088
+ "identifier": "avatar",
4089
+ "name": "Avatar",
4090
+ "sequence": "10",
4091
+ "staticId": "avatar"
4092
+ },
4093
+ {
4094
+ "identifier": "badge",
4095
+ "name": "Badge",
4096
+ "sequence": "20",
4097
+ "staticId": "badge"
4098
+ },
4099
+ {
4100
+ "identifier": "grouping",
4101
+ "name": "Grouping",
4102
+ "sequence": "30",
4103
+ "staticId": "grouping"
4104
+ }
4105
+ ],
4106
+ "actionPositions": [
4107
+ {
4108
+ "identifier": "avatarLink",
4109
+ "name": "Avatar Link",
4110
+ "staticId": "AVATAR_LINK",
4111
+ "sequence": "10",
4112
+ "positionType": null
4113
+ },
4114
+ {
4115
+ "identifier": "titleLink",
4116
+ "name": "Title Link",
4117
+ "staticId": "TITLE_LINK",
4118
+ "sequence": "25",
4119
+ "positionType": null
4120
+ },
4121
+ {
4122
+ "identifier": "userNameLink",
4123
+ "name": "User Name Link",
4124
+ "staticId": "USER_NAME_LINK",
4125
+ "sequence": "15",
4126
+ "positionType": null
4127
+ }
4128
+ ],
4129
+ "actionTemplates": [],
4130
+ "slots": [],
4131
+ "customAttributes": [
4132
+ {
4133
+ "identifier": "APPLY_THEME_COLORS",
4134
+ "apexlangName": "applyThemeColors",
4135
+ "attributeId": "21",
4136
+ "name": "Apply Theme Colors",
4137
+ "type": "yesNo",
4138
+ "required": false,
4139
+ "defaultValue": "true",
4140
+ "sampleDataValue": "Y",
4141
+ "attributeGroup": null,
4142
+ "sequence": "210",
4143
+ "dependencyAttribute": null,
4144
+ "dependencyCondition": null,
4145
+ "dependencyValue": null,
4146
+ "escapeMode": "htmlAttribute",
4147
+ "helpText": "Specify whether to use the Universal Theme colors for avatar and badge row items. When set to Yes, the u-colors class will be applied to each row. When set to No, a default color will be used instead.",
4148
+ "entries": []
4149
+ },
4150
+ {
4151
+ "identifier": "AVATAR_DESCRIPTION",
4152
+ "apexlangName": "description",
4153
+ "attributeId": "9",
4154
+ "name": "Description",
4155
+ "type": "text",
4156
+ "required": false,
4157
+ "defaultValue": null,
4158
+ "sampleDataValue": null,
4159
+ "attributeGroup": "@avatar",
4160
+ "sequence": "115",
4161
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
4162
+ "dependencyCondition": "=",
4163
+ "dependencyValue": "Y",
4164
+ "escapeMode": "htmlAttribute",
4165
+ "helpText": "Enter a short description of the image/icon or select a source column from the quick pick options. This will be used as title & alt text for the avatar image/icon.",
4166
+ "entries": []
4167
+ },
4168
+ {
4169
+ "identifier": "AVATAR_ICON",
4170
+ "apexlangName": "icon",
4171
+ "attributeId": "11",
4172
+ "name": "Icon",
4173
+ "type": "icon",
4174
+ "required": true,
4175
+ "defaultValue": "fa-user",
4176
+ "sampleDataValue": null,
4177
+ "attributeGroup": "@avatar",
4178
+ "sequence": "110",
4179
+ "dependencyAttribute": "@AVATAR_TYPE/component",
4180
+ "dependencyCondition": "=",
4181
+ "dependencyValue": "icon",
4182
+ "escapeMode": "htmlAttribute",
4183
+ "helpText": "Enter an icon class or use the Pick Icon dialog to select the icon you want to add to display in the avatar.",
4184
+ "entries": []
4185
+ },
4186
+ {
4187
+ "identifier": "AVATAR_IMAGE",
4188
+ "apexlangName": "image",
4189
+ "attributeId": "8",
4190
+ "name": "Image",
4191
+ "type": "media",
4192
+ "required": true,
4193
+ "defaultValue": null,
4194
+ "sampleDataValue": null,
4195
+ "attributeGroup": "@avatar",
4196
+ "sequence": "80",
4197
+ "dependencyAttribute": "@AVATAR_TYPE/component",
4198
+ "dependencyCondition": "=",
4199
+ "dependencyValue": "image",
4200
+ "escapeMode": "htmlAttribute",
4201
+ "helpText": "<p>Use the Media popup dialog to select a source for the avatar image.</p>\n \n <p>Available options include:</p>\n <ul>\n <li>URL</li>\n <li>BLOB Column</li>\n <li>URL Column</li>\n </ul>",
4202
+ "entries": []
4203
+ },
4204
+ {
4205
+ "identifier": "AVATAR_INITIALS",
4206
+ "apexlangName": "initials",
4207
+ "attributeId": "10",
4208
+ "name": "Initials",
4209
+ "type": "sessionStateValue",
4210
+ "required": true,
4211
+ "defaultValue": null,
4212
+ "sampleDataValue": "INITIALS",
4213
+ "attributeGroup": "@avatar",
4214
+ "sequence": "100",
4215
+ "dependencyAttribute": "@AVATAR_TYPE/component",
4216
+ "dependencyCondition": "=",
4217
+ "dependencyValue": "initials",
4218
+ "escapeMode": "stripHtml",
4219
+ "helpText": "Select the source column to be displayed within each avatar. Only varchar2 data types are supported.",
4220
+ "entries": []
4221
+ },
4222
+ {
4223
+ "identifier": "AVATAR_SHAPE",
4224
+ "apexlangName": "shape",
4225
+ "attributeId": "12",
4226
+ "name": "Shape",
4227
+ "type": "selectList",
4228
+ "required": true,
4229
+ "defaultValue": "t-Avatar--circle",
4230
+ "sampleDataValue": null,
4231
+ "attributeGroup": "@avatar",
4232
+ "sequence": "120",
4233
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
4234
+ "dependencyCondition": "=",
4235
+ "dependencyValue": "Y",
4236
+ "escapeMode": "htmlAttribute",
4237
+ "helpText": "Select the shape of the avatar. Default inherits the shape set by the containing template.",
4238
+ "entries": [
4239
+ {
4240
+ "name": "circular",
4241
+ "display": "Circular",
4242
+ "returnValue": "t-Avatar--circle",
4243
+ "sequence": "20"
4244
+ },
4245
+ {
4246
+ "name": "noShape",
4247
+ "display": "No Shape",
4248
+ "returnValue": "t-Avatar--noShape",
4249
+ "sequence": "40"
4250
+ },
4251
+ {
4252
+ "name": "rounded",
4253
+ "display": "Rounded",
4254
+ "returnValue": "t-Avatar--rounded",
4255
+ "sequence": "10"
4256
+ },
4257
+ {
4258
+ "name": "square",
4259
+ "display": "Square",
4260
+ "returnValue": "t-Avatar--square",
4261
+ "sequence": "30"
4262
+ }
4263
+ ]
4264
+ },
4265
+ {
4266
+ "identifier": "AVATAR_TYPE",
4267
+ "apexlangName": "type",
4268
+ "attributeId": "7",
4269
+ "name": "Type",
4270
+ "type": "selectList",
4271
+ "required": true,
4272
+ "defaultValue": "icon",
4273
+ "sampleDataValue": null,
4274
+ "attributeGroup": "@avatar",
4275
+ "sequence": "70",
4276
+ "dependencyAttribute": "@DISPLAY_AVATAR/component",
4277
+ "dependencyCondition": "=",
4278
+ "dependencyValue": "Y",
4279
+ "escapeMode": null,
4280
+ "helpText": "Select the type of content that will be displayed in the avatar.",
4281
+ "entries": [
4282
+ {
4283
+ "name": "icon",
4284
+ "display": "Icon",
4285
+ "returnValue": "icon",
4286
+ "sequence": "30"
4287
+ },
4288
+ {
4289
+ "name": "image",
4290
+ "display": "Image",
4291
+ "returnValue": "image",
4292
+ "sequence": "10"
4293
+ },
4294
+ {
4295
+ "name": "initials",
4296
+ "display": "Initials",
4297
+ "returnValue": "initials",
4298
+ "sequence": "20"
4299
+ }
4300
+ ]
4301
+ },
4302
+ {
4303
+ "identifier": "BADGE_ICON",
4304
+ "apexlangName": "icon",
4305
+ "attributeId": "16",
4306
+ "name": "Icon",
4307
+ "type": "icon",
4308
+ "required": false,
4309
+ "defaultValue": null,
4310
+ "sampleDataValue": null,
4311
+ "attributeGroup": "@badge",
4312
+ "sequence": "160",
4313
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
4314
+ "dependencyCondition": "=",
4315
+ "dependencyValue": "Y",
4316
+ "escapeMode": "htmlAttribute",
4317
+ "helpText": "Enter an icon class or use the Pick Icon dialog to select the icon you want to add to display in the badge.",
4318
+ "entries": []
4319
+ },
4320
+ {
4321
+ "identifier": "BADGE_LABEL",
4322
+ "apexlangName": "label",
4323
+ "attributeId": "13",
4324
+ "name": "Label",
4325
+ "type": "text",
4326
+ "required": true,
4327
+ "defaultValue": null,
4328
+ "sampleDataValue": "Status",
4329
+ "attributeGroup": "@badge",
4330
+ "sequence": "130",
4331
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
4332
+ "dependencyCondition": "=",
4333
+ "dependencyValue": "Y",
4334
+ "escapeMode": "raw",
4335
+ "helpText": "Enter a value for the badge label or select a source column from the quick pick options.",
4336
+ "entries": []
4337
+ },
4338
+ {
4339
+ "identifier": "BADGE_LABEL_DISPLAY",
4340
+ "apexlangName": "displayLabel",
4341
+ "attributeId": "17",
4342
+ "name": "Display Label",
4343
+ "type": "yesNo",
4344
+ "required": false,
4345
+ "defaultValue": null,
4346
+ "sampleDataValue": null,
4347
+ "attributeGroup": "@badge",
4348
+ "sequence": "170",
4349
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
4350
+ "dependencyCondition": "=",
4351
+ "dependencyValue": "Y",
4352
+ "escapeMode": "htmlAttribute",
4353
+ "helpText": "Specify whether to display or hide the badge label. When set to Yes, the badge label will be displayed in addition to the badge value. When set to No, only the badge value will be displayed.",
4354
+ "entries": []
4355
+ },
4356
+ {
4357
+ "identifier": "BADGE_SHAPE",
4358
+ "apexlangName": "shape",
4359
+ "attributeId": "19",
4360
+ "name": "Shape",
4361
+ "type": "selectList",
4362
+ "required": false,
4363
+ "defaultValue": null,
4364
+ "sampleDataValue": null,
4365
+ "attributeGroup": "@badge",
4366
+ "sequence": "190",
4367
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
4368
+ "dependencyCondition": "=",
4369
+ "dependencyValue": "Y",
4370
+ "escapeMode": null,
4371
+ "helpText": "Select the shape of the badge. Default inherits the shape set by the containing template.",
4372
+ "entries": [
4373
+ {
4374
+ "name": "circular",
4375
+ "display": "Circular",
4376
+ "returnValue": "t-Badge--circle",
4377
+ "sequence": "20"
4378
+ },
4379
+ {
4380
+ "name": "rounded",
4381
+ "display": "Rounded",
4382
+ "returnValue": "t-Badge--rounded",
4383
+ "sequence": "10"
4384
+ },
4385
+ {
4386
+ "name": "square",
4387
+ "display": "Square",
4388
+ "returnValue": "t-Badge--square",
4389
+ "sequence": "30"
4390
+ }
4391
+ ]
4392
+ },
4393
+ {
4394
+ "identifier": "BADGE_STATE",
4395
+ "apexlangName": "state",
4396
+ "attributeId": "15",
4397
+ "name": "State",
4398
+ "type": "sessionStateValue",
4399
+ "required": false,
4400
+ "defaultValue": null,
4401
+ "sampleDataValue": null,
4402
+ "attributeGroup": "@badge",
4403
+ "sequence": "150",
4404
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
4405
+ "dependencyCondition": "=",
4406
+ "dependencyValue": "Y",
4407
+ "escapeMode": "htmlAttribute",
4408
+ "helpText": "Select the source column for the state of the badge. Substitute column value with \"danger\", \"warning\", \"success\" or \"info\" for default styling.",
4409
+ "entries": []
4410
+ },
4411
+ {
4412
+ "identifier": "BADGE_STYLE",
4413
+ "apexlangName": "style",
4414
+ "attributeId": "18",
4415
+ "name": "Style",
4416
+ "type": "selectList",
4417
+ "required": false,
4418
+ "defaultValue": null,
4419
+ "sampleDataValue": null,
4420
+ "attributeGroup": "@badge",
4421
+ "sequence": "180",
4422
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
4423
+ "dependencyCondition": "=",
4424
+ "dependencyValue": "Y",
4425
+ "escapeMode": "htmlAttribute",
4426
+ "helpText": "Select the badge style. Default inherits the style set by the containing template.",
4427
+ "entries": [
4428
+ {
4429
+ "name": "outline",
4430
+ "display": "Outline",
4431
+ "returnValue": "t-Badge--outline",
4432
+ "sequence": "20"
4433
+ },
4434
+ {
4435
+ "name": "subtle",
4436
+ "display": "Subtle",
4437
+ "returnValue": "t-Badge--subtle",
4438
+ "sequence": "10"
4439
+ }
4440
+ ]
4441
+ },
4442
+ {
4443
+ "identifier": "BADGE_VALUE",
4444
+ "apexlangName": "value",
4445
+ "attributeId": "14",
4446
+ "name": "Value",
4447
+ "type": "sessionStateValue",
4448
+ "required": true,
4449
+ "defaultValue": null,
4450
+ "sampleDataValue": "STATUS",
4451
+ "attributeGroup": "@badge",
4452
+ "sequence": "140",
4453
+ "dependencyAttribute": "@DISPLAY_BADGE/component",
4454
+ "dependencyCondition": "=",
4455
+ "dependencyValue": "Y",
4456
+ "escapeMode": "stripHtml",
4457
+ "helpText": "Select a source column for the badge value.",
4458
+ "entries": []
4459
+ },
4460
+ {
4461
+ "identifier": "DATE",
4462
+ "apexlangName": "date",
4463
+ "attributeId": "2",
4464
+ "name": "Date",
4465
+ "type": "sessionStateValue",
4466
+ "required": true,
4467
+ "defaultValue": null,
4468
+ "sampleDataValue": "START_DATE",
4469
+ "attributeGroup": null,
4470
+ "sequence": "20",
4471
+ "dependencyAttribute": null,
4472
+ "dependencyCondition": null,
4473
+ "dependencyValue": null,
4474
+ "escapeMode": null,
4475
+ "helpText": "Select a source column containing a date, date range, or time.",
4476
+ "entries": []
4477
+ },
4478
+ {
4479
+ "identifier": "DESCRIPTION",
4480
+ "apexlangName": "description",
4481
+ "attributeId": "4",
4482
+ "name": "Description",
4483
+ "type": "sessionStateValue",
4484
+ "required": false,
4485
+ "defaultValue": null,
4486
+ "sampleDataValue": "WORK_MODE",
4487
+ "attributeGroup": null,
4488
+ "sequence": "40",
4489
+ "dependencyAttribute": null,
4490
+ "dependencyCondition": null,
4491
+ "dependencyValue": null,
4492
+ "escapeMode": null,
4493
+ "helpText": "Select a source column to be used for the row description.",
4494
+ "entries": []
4495
+ },
4496
+ {
4497
+ "identifier": "DISPLAY_AVATAR",
4498
+ "apexlangName": "displayAvatar",
4499
+ "attributeId": "5",
4500
+ "name": "Display Avatar",
4501
+ "type": "yesNo",
4502
+ "required": false,
4503
+ "defaultValue": null,
4504
+ "sampleDataValue": "N",
4505
+ "attributeGroup": null,
4506
+ "sequence": "50",
4507
+ "dependencyAttribute": null,
4508
+ "dependencyCondition": null,
4509
+ "dependencyValue": null,
4510
+ "escapeMode": "htmlAttribute",
4511
+ "helpText": "Specify whether to display or hide the avatar for each row. When set to Yes, an avatar will be displayed with the assigned image, icon, or initials. When set to No, no avatar will be displayed.",
4512
+ "entries": []
4513
+ },
4514
+ {
4515
+ "identifier": "DISPLAY_BADGE",
4516
+ "apexlangName": "displayBadge",
4517
+ "attributeId": "6",
4518
+ "name": "Display Badge",
4519
+ "type": "yesNo",
4520
+ "required": false,
4521
+ "defaultValue": null,
4522
+ "sampleDataValue": "Y",
4523
+ "attributeGroup": null,
4524
+ "sequence": "60",
4525
+ "dependencyAttribute": null,
4526
+ "dependencyCondition": null,
4527
+ "dependencyValue": null,
4528
+ "escapeMode": "htmlAttribute",
4529
+ "helpText": "Specify whether to display or hide the badge for each row. When set to Yes, a badge will be displayed in each row. When set to No, no badge will be displayed.",
4530
+ "entries": []
4531
+ },
4532
+ {
4533
+ "identifier": "GROUP_ICON",
4534
+ "apexlangName": "groupIcon",
4535
+ "attributeId": "23",
4536
+ "name": "Icon",
4537
+ "type": "icon",
4538
+ "required": false,
4539
+ "defaultValue": null,
4540
+ "sampleDataValue": null,
4541
+ "attributeGroup": "@grouping",
4542
+ "sequence": "230",
4543
+ "dependencyAttribute": "@GROUP_TITLE/reportGroup",
4544
+ "dependencyCondition": "isNotNull",
4545
+ "dependencyValue": null,
4546
+ "escapeMode": "htmlAttribute",
4547
+ "helpText": null,
4548
+ "entries": []
4549
+ },
4550
+ {
4551
+ "identifier": "GROUP_TITLE",
4552
+ "apexlangName": "groupTitle",
4553
+ "attributeId": "22",
4554
+ "name": "Title",
4555
+ "type": "html",
4556
+ "required": false,
4557
+ "defaultValue": null,
4558
+ "sampleDataValue": null,
4559
+ "attributeGroup": "@grouping",
4560
+ "sequence": "220",
4561
+ "dependencyAttribute": null,
4562
+ "dependencyCondition": null,
4563
+ "dependencyValue": null,
4564
+ "escapeMode": "raw",
4565
+ "helpText": null,
4566
+ "entries": []
4567
+ },
4568
+ {
4569
+ "identifier": "STYLE",
4570
+ "apexlangName": "style",
4571
+ "attributeId": "20",
4572
+ "name": "Style",
4573
+ "type": "selectList",
4574
+ "required": false,
4575
+ "defaultValue": null,
4576
+ "sampleDataValue": null,
4577
+ "attributeGroup": null,
4578
+ "sequence": "200",
4579
+ "dependencyAttribute": null,
4580
+ "dependencyCondition": null,
4581
+ "dependencyValue": null,
4582
+ "escapeMode": "htmlAttribute",
4583
+ "helpText": "Set the style of timeline items.",
4584
+ "entries": [
4585
+ {
4586
+ "name": "compact",
4587
+ "display": "Compact",
4588
+ "returnValue": "t-Timeline--compact",
4589
+ "sequence": "10"
4590
+ }
4591
+ ]
4592
+ },
4593
+ {
4594
+ "identifier": "TITLE",
4595
+ "apexlangName": "title",
4596
+ "attributeId": "3",
4597
+ "name": "Title",
4598
+ "type": "sessionStateValue",
4599
+ "required": true,
4600
+ "defaultValue": null,
4601
+ "sampleDataValue": "TASK_NAME",
4602
+ "attributeGroup": null,
4603
+ "sequence": "30",
4604
+ "dependencyAttribute": null,
4605
+ "dependencyCondition": null,
4606
+ "dependencyValue": null,
4607
+ "escapeMode": null,
4608
+ "helpText": "Select a source column to be used as the title.",
4609
+ "entries": []
4610
+ },
4611
+ {
4612
+ "identifier": "USER_NAME",
4613
+ "apexlangName": "userName",
4614
+ "attributeId": "1",
4615
+ "name": "User Name",
4616
+ "type": "sessionStateValue",
4617
+ "required": true,
4618
+ "defaultValue": null,
4619
+ "sampleDataValue": "ASSIGNED_TO_NAME",
4620
+ "attributeGroup": null,
4621
+ "sequence": "10",
4622
+ "dependencyAttribute": null,
4623
+ "dependencyCondition": null,
4624
+ "dependencyValue": null,
4625
+ "escapeMode": null,
4626
+ "helpText": "Select a source column to be displayed as the user name associated with a timeline event.",
4627
+ "entries": []
4628
+ }
4629
+ ]
4630
+ }
4631
+ }
4632
+ }