cc-core-cli 1.0.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 (291) hide show
  1. package/README.md +107 -0
  2. package/admin/.env +10 -0
  3. package/admin/docker-compose.yml +9 -0
  4. package/bin/index.js +113 -0
  5. package/genpkg/core-lib/package.json +49 -0
  6. package/package.json +28 -0
  7. package/template/media/system/icons/company.svg +1 -0
  8. package/template/media/system/icons/deploy.svg +2 -0
  9. package/template/media/system/icons/entities.svg +55 -0
  10. package/template/media/system/icons/gateway.svg +1 -0
  11. package/template/media/system/icons/import-export.svg +41 -0
  12. package/template/media/system/icons/integration.svg +1 -0
  13. package/template/media/system/icons/master_data.svg +53 -0
  14. package/template/media/system/icons/monitoring.svg +114 -0
  15. package/template/media/system/icons/provider.svg +1 -0
  16. package/template/media/system/icons/report.svg +69 -0
  17. package/template/media/system/icons/schedule.svg +1 -0
  18. package/template/media/system/icons/security.svg +1 -0
  19. package/template/media/system/icons/storage.svg +1 -0
  20. package/template/media/system/icons/template.svg +44 -0
  21. package/template/media/system/icons/theme-layout.svg +1 -0
  22. package/template/newrelic.sh +15 -0
  23. package/template/package-lock.json +13944 -0
  24. package/template/package.json +165 -0
  25. package/template/src/app.controller.ts +33 -0
  26. package/template/src/app.module.ts +163 -0
  27. package/template/src/app.service.ts +21 -0
  28. package/template/src/app_cluster.service.ts +58 -0
  29. package/template/src/core/core.controller.ts +410 -0
  30. package/template/src/core/core.module.ts +86 -0
  31. package/template/src/core/core.service.ts +715 -0
  32. package/template/src/core/setting/_settings/about.layout.json +49 -0
  33. package/template/src/core/setting/_settings/cache.layout.json +309 -0
  34. package/template/src/core/setting/_settings/schedule.layout.json +132 -0
  35. package/template/src/core/setting/_settings/security.layout.json +1622 -0
  36. package/template/src/core/setting/_settings/storage.layout.json +520 -0
  37. package/template/src/core/setting/_settings/swagger.layout.json +128 -0
  38. package/template/src/core/setting/_settings/theme_layout.layout.json +1195 -0
  39. package/template/src/main.ts +299 -0
  40. package/template/src/modules/modules.ts +16 -0
  41. package/template/tsconfig.build.json +4 -0
  42. package/template/tsconfig.json +22 -0
  43. package/template/version.json +5 -0
  44. package/template_admin/.env +10 -0
  45. package/template_admin/README.md +29 -0
  46. package/template_admin/config/service-account.json +1 -0
  47. package/template_admin/index.js +63 -0
  48. package/template_admin/newrelic.js +78 -0
  49. package/template_admin/next.config.js +76 -0
  50. package/template_admin/package-lock.json +7379 -0
  51. package/template_admin/package.json +23 -0
  52. package/template_admin/pages/404.js +13 -0
  53. package/template_admin/pages/[...url_key].js +21 -0
  54. package/template_admin/pages/_app.js +10 -0
  55. package/template_admin/pages/_document.js +43 -0
  56. package/template_admin/pages/callback.js +13 -0
  57. package/template_admin/pages/cognito.js +13 -0
  58. package/template_admin/pages/confirmpassword.js +12 -0
  59. package/template_admin/pages/forgotpassword.js +12 -0
  60. package/template_admin/pages/index.js +13 -0
  61. package/template_admin/pages/login.js +13 -0
  62. package/template_admin/pages/maintenance.js +12 -0
  63. package/template_admin/pages/newrelic.js +78 -0
  64. package/template_admin/pages/password_expired.js +13 -0
  65. package/template_admin/pages/permission_denied.js +13 -0
  66. package/template_admin/pages/profile.js +14 -0
  67. package/template_admin/pages/setting/[...setting_url_key].js +13 -0
  68. package/template_admin/pages/setting/entities/[subList]/detail.js +14 -0
  69. package/template_admin/pages/setting/entities/[subList]/detail_compare.js +8 -0
  70. package/template_admin/pages/setting/entities/[subList]/index.js +7 -0
  71. package/template_admin/pages/setting/entities/detail/index.js +14 -0
  72. package/template_admin/pages/setting/entities/index.js +14 -0
  73. package/template_admin/pages/social.js +13 -0
  74. package/template_admin/pages/token_expired.js +12 -0
  75. package/template_admin/public/icon-192x192.png +0 -0
  76. package/template_admin/public/icon-256x256.png +0 -0
  77. package/template_admin/public/icon-384x384.png +0 -0
  78. package/template_admin/public/icon-512x512.png +0 -0
  79. package/template_admin/public/manifest.json +32 -0
  80. package/template_admin/public/static/images/aws-cognito.png +0 -0
  81. package/template_admin/public/static/images/bin_icon.svg +1 -0
  82. package/template_admin/public/static/images/color-picker.png +0 -0
  83. package/template_admin/public/static/images/csv_icon.svg +1 -0
  84. package/template_admin/public/static/images/default-file.png +0 -0
  85. package/template_admin/public/static/images/default-img.png +0 -0
  86. package/template_admin/public/static/images/default-map.png +0 -0
  87. package/template_admin/public/static/images/default-profile.png +0 -0
  88. package/template_admin/public/static/images/doc_icon.svg +1 -0
  89. package/template_admin/public/static/images/exe_icon.svg +1 -0
  90. package/template_admin/public/static/images/gif_icon.svg +1 -0
  91. package/template_admin/public/static/images/google.png +0 -0
  92. package/template_admin/public/static/images/id-connect.png +0 -0
  93. package/template_admin/public/static/images/iso_icon.svg +1 -0
  94. package/template_admin/public/static/images/json_icon.png +0 -0
  95. package/template_admin/public/static/images/lang/af-ZA.svg +41 -0
  96. package/template_admin/public/static/images/lang/ar-AE.svg +38 -0
  97. package/template_admin/public/static/images/lang/ar-BH.svg +36 -0
  98. package/template_admin/public/static/images/lang/ar-DZ.svg +40 -0
  99. package/template_admin/public/static/images/lang/ar-EG.svg +38 -0
  100. package/template_admin/public/static/images/lang/ar-IQ.svg +46 -0
  101. package/template_admin/public/static/images/lang/ar-JO.svg +39 -0
  102. package/template_admin/public/static/images/lang/ar-KW.svg +38 -0
  103. package/template_admin/public/static/images/lang/ar-LB.svg +40 -0
  104. package/template_admin/public/static/images/lang/ar-LY.svg +41 -0
  105. package/template_admin/public/static/images/lang/ar-MA.svg +36 -0
  106. package/template_admin/public/static/images/lang/ar-OM.svg +70 -0
  107. package/template_admin/public/static/images/lang/ar-QA.svg +36 -0
  108. package/template_admin/public/static/images/lang/ar-SA.svg +62 -0
  109. package/template_admin/public/static/images/lang/ar-TN.svg +40 -0
  110. package/template_admin/public/static/images/lang/ar-YE.svg +37 -0
  111. package/template_admin/public/static/images/lang/az-AZ.svg +41 -0
  112. package/template_admin/public/static/images/lang/be-BY.svg +38 -0
  113. package/template_admin/public/static/images/lang/bg-BG.svg +37 -0
  114. package/template_admin/public/static/images/lang/bs-BA.svg +48 -0
  115. package/template_admin/public/static/images/lang/ca-ES.svg +89 -0
  116. package/template_admin/public/static/images/lang/cs-CZ.svg +37 -0
  117. package/template_admin/public/static/images/lang/cy-GB.svg +43 -0
  118. package/template_admin/public/static/images/lang/da-DK.svg +36 -0
  119. package/template_admin/public/static/images/lang/de-AT.svg +39 -0
  120. package/template_admin/public/static/images/lang/de-CH.svg +36 -0
  121. package/template_admin/public/static/images/lang/de-DE.svg +37 -0
  122. package/template_admin/public/static/images/lang/de-LI.svg +45 -0
  123. package/template_admin/public/static/images/lang/de-LU.svg +37 -0
  124. package/template_admin/public/static/images/lang/dv-MV.svg +37 -0
  125. package/template_admin/public/static/images/lang/el-GR.svg +46 -0
  126. package/template_admin/public/static/images/lang/en-AU.svg +51 -0
  127. package/template_admin/public/static/images/lang/en-BZ.svg +196 -0
  128. package/template_admin/public/static/images/lang/en-CA.svg +43 -0
  129. package/template_admin/public/static/images/lang/en-GB.svg +43 -0
  130. package/template_admin/public/static/images/lang/en-IE.svg +37 -0
  131. package/template_admin/public/static/images/lang/en-JM.svg +40 -0
  132. package/template_admin/public/static/images/lang/en-NZ.svg +51 -0
  133. package/template_admin/public/static/images/lang/en-PH.svg +51 -0
  134. package/template_admin/public/static/images/lang/en-SG.svg +44 -0
  135. package/template_admin/public/static/images/lang/en-TT.svg +40 -0
  136. package/template_admin/public/static/images/lang/en-US.svg +88 -0
  137. package/template_admin/public/static/images/lang/en-ZA.svg +41 -0
  138. package/template_admin/public/static/images/lang/en-ZW.svg +50 -0
  139. package/template_admin/public/static/images/lang/es-AR.svg +41 -0
  140. package/template_admin/public/static/images/lang/es-BO.svg +101 -0
  141. package/template_admin/public/static/images/lang/es-CL.svg +38 -0
  142. package/template_admin/public/static/images/lang/es-CO.svg +37 -0
  143. package/template_admin/public/static/images/lang/es-CR.svg +111 -0
  144. package/template_admin/public/static/images/lang/es-DO.svg +103 -0
  145. package/template_admin/public/static/images/lang/es-EC.svg +87 -0
  146. package/template_admin/public/static/images/lang/es-ES.svg +89 -0
  147. package/template_admin/public/static/images/lang/es-GT.svg +109 -0
  148. package/template_admin/public/static/images/lang/es-HN.svg +46 -0
  149. package/template_admin/public/static/images/lang/es-MX.svg +60 -0
  150. package/template_admin/public/static/images/lang/es-NI.svg +82 -0
  151. package/template_admin/public/static/images/lang/es-PA.svg +41 -0
  152. package/template_admin/public/static/images/lang/es-PE.svg +37 -0
  153. package/template_admin/public/static/images/lang/es-PR.svg +43 -0
  154. package/template_admin/public/static/images/lang/es-PY.svg +41 -0
  155. package/template_admin/public/static/images/lang/es-SV.svg +115 -0
  156. package/template_admin/public/static/images/lang/es-UY.svg +75 -0
  157. package/template_admin/public/static/images/lang/es-VE.svg +49 -0
  158. package/template_admin/public/static/images/lang/et-EE.svg +37 -0
  159. package/template_admin/public/static/images/lang/eu-ES.svg +89 -0
  160. package/template_admin/public/static/images/lang/fa-IR.svg +81 -0
  161. package/template_admin/public/static/images/lang/fi-FI.svg +36 -0
  162. package/template_admin/public/static/images/lang/fr-BE.svg +37 -0
  163. package/template_admin/public/static/images/lang/fr-CA.svg +43 -0
  164. package/template_admin/public/static/images/lang/fr-CH.svg +36 -0
  165. package/template_admin/public/static/images/lang/fr-FR.svg +37 -0
  166. package/template_admin/public/static/images/lang/fr-LU.svg +37 -0
  167. package/template_admin/public/static/images/lang/fr-MC.svg +36 -0
  168. package/template_admin/public/static/images/lang/gl-ES.svg +89 -0
  169. package/template_admin/public/static/images/lang/gu-IN.svg +59 -0
  170. package/template_admin/public/static/images/lang/he-IL.svg +37 -0
  171. package/template_admin/public/static/images/lang/hi-IN.svg +59 -0
  172. package/template_admin/public/static/images/lang/hr-BA.svg +48 -0
  173. package/template_admin/public/static/images/lang/hr-HR.svg +101 -0
  174. package/template_admin/public/static/images/lang/hu-HU.svg +37 -0
  175. package/template_admin/public/static/images/lang/hy-AM.svg +37 -0
  176. package/template_admin/public/static/images/lang/id-ID.svg +36 -0
  177. package/template_admin/public/static/images/lang/is-IS.svg +37 -0
  178. package/template_admin/public/static/images/lang/it-CH.svg +36 -0
  179. package/template_admin/public/static/images/lang/it-IT.svg +37 -0
  180. package/template_admin/public/static/images/lang/ja-JP.svg +36 -0
  181. package/template_admin/public/static/images/lang/ka-GE.svg +42 -0
  182. package/template_admin/public/static/images/lang/kk-KZ.svg +72 -0
  183. package/template_admin/public/static/images/lang/kn-IN.svg +59 -0
  184. package/template_admin/public/static/images/lang/ko-KR.svg +57 -0
  185. package/template_admin/public/static/images/lang/kok-IN.svg +59 -0
  186. package/template_admin/public/static/images/lang/ky-KG.svg +54 -0
  187. package/template_admin/public/static/images/lang/lt-LT.svg +37 -0
  188. package/template_admin/public/static/images/lang/lv-LV.svg +36 -0
  189. package/template_admin/public/static/images/lang/mi-NZ.svg +51 -0
  190. package/template_admin/public/static/images/lang/mk-MK.svg +46 -0
  191. package/template_admin/public/static/images/lang/mn-MN.svg +50 -0
  192. package/template_admin/public/static/images/lang/mr-IN.svg +59 -0
  193. package/template_admin/public/static/images/lang/ms-BN.svg +47 -0
  194. package/template_admin/public/static/images/lang/ms-MY.svg +53 -0
  195. package/template_admin/public/static/images/lang/mt-MT.svg +50 -0
  196. package/template_admin/public/static/images/lang/nb-NO.svg +37 -0
  197. package/template_admin/public/static/images/lang/nl-BE.svg +37 -0
  198. package/template_admin/public/static/images/lang/nl-NL.svg +37 -0
  199. package/template_admin/public/static/images/lang/nn-NO.svg +37 -0
  200. package/template_admin/public/static/images/lang/ns-ZA.svg +41 -0
  201. package/template_admin/public/static/images/lang/pa-IN.svg +59 -0
  202. package/template_admin/public/static/images/lang/pl-PL.svg +36 -0
  203. package/template_admin/public/static/images/lang/ps-AR.svg +68 -0
  204. package/template_admin/public/static/images/lang/pt-BR.svg +51 -0
  205. package/template_admin/public/static/images/lang/pt-PT.svg +55 -0
  206. package/template_admin/public/static/images/lang/qu-BO.svg +101 -0
  207. package/template_admin/public/static/images/lang/qu-EC.svg +87 -0
  208. package/template_admin/public/static/images/lang/qu-PE.svg +37 -0
  209. package/template_admin/public/static/images/lang/ro-RO.svg +37 -0
  210. package/template_admin/public/static/images/lang/ru-RU.svg +37 -0
  211. package/template_admin/public/static/images/lang/sa-IN.svg +59 -0
  212. package/template_admin/public/static/images/lang/se-FI.svg +36 -0
  213. package/template_admin/public/static/images/lang/se-NO.svg +37 -0
  214. package/template_admin/public/static/images/lang/se-SE.svg +36 -0
  215. package/template_admin/public/static/images/lang/sk-SK.svg +41 -0
  216. package/template_admin/public/static/images/lang/sl-SI.svg +51 -0
  217. package/template_admin/public/static/images/lang/sq-AL.svg +36 -0
  218. package/template_admin/public/static/images/lang/sr-BA.svg +48 -0
  219. package/template_admin/public/static/images/lang/sr-SP.svg +79 -0
  220. package/template_admin/public/static/images/lang/sv-FI.svg +36 -0
  221. package/template_admin/public/static/images/lang/sv-SE.svg +36 -0
  222. package/template_admin/public/static/images/lang/sw-KE.svg +55 -0
  223. package/template_admin/public/static/images/lang/syr-SY.svg +41 -0
  224. package/template_admin/public/static/images/lang/ta-IN.svg +59 -0
  225. package/template_admin/public/static/images/lang/te-IN.svg +59 -0
  226. package/template_admin/public/static/images/lang/th-TH.svg +40 -0
  227. package/template_admin/public/static/images/lang/tl-PH.svg +51 -0
  228. package/template_admin/public/static/images/lang/tn-ZA.svg +41 -0
  229. package/template_admin/public/static/images/lang/tr-TR.svg +39 -0
  230. package/template_admin/public/static/images/lang/tt-RU.svg +37 -0
  231. package/template_admin/public/static/images/lang/uk-UA.svg +36 -0
  232. package/template_admin/public/static/images/lang/ur-PK.svg +40 -0
  233. package/template_admin/public/static/images/lang/vi-VN.svg +36 -0
  234. package/template_admin/public/static/images/lang/xh-ZA.svg +41 -0
  235. package/template_admin/public/static/images/lang/zh-CN.svg +42 -0
  236. package/template_admin/public/static/images/lang/zh-HK.svg +42 -0
  237. package/template_admin/public/static/images/lang/zh-SG.svg +44 -0
  238. package/template_admin/public/static/images/lang/zh-TW.svg +43 -0
  239. package/template_admin/public/static/images/lang/zu-ZA.svg +41 -0
  240. package/template_admin/public/static/images/logo-company-default.svg +1 -0
  241. package/template_admin/public/static/images/logo.png +0 -0
  242. package/template_admin/public/static/images/m_logo.png +0 -0
  243. package/template_admin/public/static/images/maintenance-icon.png +0 -0
  244. package/template_admin/public/static/images/member_logo.png +0 -0
  245. package/template_admin/public/static/images/pdf_icon.svg +1 -0
  246. package/template_admin/public/static/images/png_icon.svg +1 -0
  247. package/template_admin/public/static/images/security.png +0 -0
  248. package/template_admin/public/static/images/translation.svg +82 -0
  249. package/template_admin/public/static/images/txt_icon.svg +1 -0
  250. package/template_admin/public/static/images/widget-bubble.png +0 -0
  251. package/template_admin/public/static/images/widget-column.png +0 -0
  252. package/template_admin/public/static/images/widget-combo.png +0 -0
  253. package/template_admin/public/static/images/widget-doughnut.png +0 -0
  254. package/template_admin/public/static/images/widget-line.png +0 -0
  255. package/template_admin/public/static/images/widget-pie.png +0 -0
  256. package/template_admin/public/static/images/widget-scatter.png +0 -0
  257. package/template_admin/public/static/images/widget-summary_box.png +0 -0
  258. package/template_admin/public/static/images/widget-treemap.png +0 -0
  259. package/template_admin/public/static/images/xls_icon.svg +1 -0
  260. package/template_admin/public/static/images/xml_icon.svg +1 -0
  261. package/template_admin/public/static/images/zip_icon.svg +1 -0
  262. package/template_admin/public/static/styles/activity_log.less +157 -0
  263. package/template_admin/public/static/styles/calendar.less +132 -0
  264. package/template_admin/public/static/styles/collections.less +123 -0
  265. package/template_admin/public/static/styles/compute_field.less +250 -0
  266. package/template_admin/public/static/styles/custom-antd.less +78 -0
  267. package/template_admin/public/static/styles/custom.less +0 -0
  268. package/template_admin/public/static/styles/custom_icon.less +556 -0
  269. package/template_admin/public/static/styles/date_search.less +53 -0
  270. package/template_admin/public/static/styles/detail.less +2670 -0
  271. package/template_admin/public/static/styles/entities.less +891 -0
  272. package/template_admin/public/static/styles/filter.less +24 -0
  273. package/template_admin/public/static/styles/filter_new.less +154 -0
  274. package/template_admin/public/static/styles/hook.less +136 -0
  275. package/template_admin/public/static/styles/import_export.less +62 -0
  276. package/template_admin/public/static/styles/input.less +386 -0
  277. package/template_admin/public/static/styles/layout.less +1211 -0
  278. package/template_admin/public/static/styles/login.less +222 -0
  279. package/template_admin/public/static/styles/mainheader.less +32 -0
  280. package/template_admin/public/static/styles/permission_denied.less +13 -0
  281. package/template_admin/public/static/styles/print_template.less +36 -0
  282. package/template_admin/public/static/styles/rabbitmq.less +3 -0
  283. package/template_admin/public/static/styles/restful.less +22 -0
  284. package/template_admin/public/static/styles/setting.less +409 -0
  285. package/template_admin/public/static/styles/style.less +1736 -0
  286. package/template_admin/public/static/styles/system.less +11 -0
  287. package/template_admin/public/static/styles/versioning_control.less +24 -0
  288. package/template_admin/public/static/styles/wysiwyg.less +8 -0
  289. package/template_admin/theme/main.less +1 -0
  290. package/template_admin/theme/vars.less +34 -0
  291. package/template_admin/version.json +1 -0
@@ -0,0 +1,1195 @@
1
+ {
2
+ "detail": {
3
+ "title": {},
4
+ "blocks": [
5
+ {
6
+ "key": "98d7cb9007125b8c55a0",
7
+ "type": "collapse",
8
+ "force_render": true,
9
+ "allow_add": false,
10
+ "data_source": "",
11
+ "body": [
12
+ {
13
+ "title": "Global",
14
+ "source_key": "global",
15
+ "key": "9c1fff3c98a74b20f906",
16
+ "blocks": [
17
+ {
18
+ "key": "c80f903d6fdaafbd0f65",
19
+ "type": "column",
20
+ "layout": {
21
+ "num_of_col": 2,
22
+ "fields": [
23
+ [
24
+ {
25
+ "field": "file",
26
+ "type": "standard_component",
27
+ "unique_key": "standard_component_file_8c0994a927cb0a026b92",
28
+ "key": "default_profile",
29
+ "label": "Default Profile",
30
+ "link_type": "key",
31
+ "trigger": [],
32
+ "allow_extensions": [
33
+ "png",
34
+ "jpeg",
35
+ "jpg",
36
+ "svg"
37
+ ],
38
+ "path_file": "system/global_setting/profile"
39
+ }
40
+ ],
41
+ [
42
+ {
43
+ "field": "entity_layout",
44
+ "type": "standard_component",
45
+ "unique_key": "standard_component_entity_layout_697ce53c3836353d0582",
46
+ "key": "my_profile_form",
47
+ "label": "My Profile Form",
48
+ "required": true,
49
+ "link_type": "key",
50
+ "entity": "other_entity",
51
+ "relate_ref": "user",
52
+ "trigger": []
53
+ },
54
+ {
55
+ "field": "input",
56
+ "type": "standard_component",
57
+ "unique_key": "standard_component_input_bc64401b16c5e6846dd4",
58
+ "key": "my_profile_format",
59
+ "label": "My Profile Format",
60
+ "link_type": "key",
61
+ "entity": "other_entity",
62
+ "input_type": "single_line",
63
+ "relate_ref": "user",
64
+ "trigger": []
65
+ }
66
+ ]
67
+ ]
68
+ }
69
+ }
70
+ ],
71
+ "actions": []
72
+ },
73
+ {
74
+ "title": "Login",
75
+ "key": "67a40e61895a8f56c67b",
76
+ "blocks": [
77
+ {
78
+ "key": "6d7ed53df747852a5189",
79
+ "type": "column",
80
+ "layout": {
81
+ "num_of_col": 3,
82
+ "fields": [
83
+ [
84
+ {
85
+ "field": "radio",
86
+ "type": "standard_component",
87
+ "unique_key": "standard_component_radio_242dbf739e9d854b3744",
88
+ "key": "layout",
89
+ "label": "Layout",
90
+ "required": true,
91
+ "link_type": "key",
92
+ "options": [
93
+ {
94
+ "label": "setting.theme_layout.login_layout_v1",
95
+ "value": "v1"
96
+ },
97
+ {
98
+ "label": "setting.theme_layout.login_layout_v2",
99
+ "value": "v2"
100
+ },
101
+ {
102
+ "label": "setting.theme_layout.login_layout_v3",
103
+ "value": "v3"
104
+ }
105
+ ],
106
+ "option_type": "button",
107
+ "trigger": []
108
+ }
109
+ ],
110
+ [
111
+ {
112
+ "field": "color_picker",
113
+ "type": "standard_component",
114
+ "unique_key": "standard_component_color_picker_e111455f23c61c6cdfbf",
115
+ "key": "logo_background_color",
116
+ "label": "Logo Background Color",
117
+ "required": false,
118
+ "link_type": "key",
119
+ "trigger": [],
120
+ "allow_alpha": true
121
+ }
122
+ ],
123
+ [
124
+ {
125
+ "field": "color_picker",
126
+ "type": "standard_component",
127
+ "unique_key": "standard_component_color_picker_e5c3b59576e0d6debd6f",
128
+ "key": "background_color",
129
+ "label": "Background Color",
130
+ "required": false,
131
+ "link_type": "key",
132
+ "trigger": [],
133
+ "allow_alpha": true
134
+ }
135
+ ]
136
+ ]
137
+ }
138
+ },
139
+ {
140
+ "key": "fec71ee1a473be569596",
141
+ "type": "column",
142
+ "layout": {
143
+ "num_of_col": 2,
144
+ "fields": [
145
+ [
146
+ {
147
+ "field": "file",
148
+ "type": "standard_component",
149
+ "unique_key": "standard_component_file_0496df53fa2ca5154fe0",
150
+ "key": "logo",
151
+ "label": "Logo",
152
+ "required": false,
153
+ "link_type": "key",
154
+ "trigger": [],
155
+ "allow_extensions": [
156
+ "png",
157
+ "jpg",
158
+ "jpeg",
159
+ "svg"
160
+ ],
161
+ "path_file": "system/general_setting/logo",
162
+ "max_file_size": 10
163
+ }
164
+ ],
165
+ [
166
+ {
167
+ "field": "file",
168
+ "type": "standard_component",
169
+ "unique_key": "standard_component_file_d1d601aa5d22b3ca3d02",
170
+ "key": "background_image",
171
+ "label": "Background Image",
172
+ "required": false,
173
+ "link_type": "key",
174
+ "trigger": [],
175
+ "allow_extensions": [
176
+ "png",
177
+ "jpg",
178
+ "jpeg",
179
+ "svg"
180
+ ],
181
+ "path_file": "system/general_setting/bg",
182
+ "max_file_size": 10
183
+ }
184
+ ]
185
+ ]
186
+ }
187
+ },
188
+ {
189
+ "key": "6f86da399efa24442ec0",
190
+ "type": "column",
191
+ "layout": {
192
+ "num_of_col": 1,
193
+ "fields": [
194
+ [
195
+ {
196
+ "field": "input",
197
+ "type": "standard_component",
198
+ "unique_key": "standard_component_input_8affb780c4cbfe1ddb79",
199
+ "key": "background_content",
200
+ "label": "Background Content",
201
+ "link_type": "key",
202
+ "input_type": "wysiwyg",
203
+ "trigger": []
204
+ }
205
+ ]
206
+ ]
207
+ }
208
+ }
209
+ ],
210
+ "source_key": "login",
211
+ "actions": []
212
+ },
213
+ {
214
+ "title": "Header",
215
+ "source_key": "header",
216
+ "actions": [],
217
+ "blocks": [
218
+ {
219
+ "key": "574a3e3eabd1e444bb98",
220
+ "type": "column",
221
+ "layout": {
222
+ "num_of_col": 6,
223
+ "fields": [
224
+ [
225
+ {
226
+ "field": "color_picker",
227
+ "type": "standard_component",
228
+ "unique_key": "standard_component_color_picker_fd86fc7f603a1e44959f",
229
+ "key": "breadcrumb_hover_color",
230
+ "label": "Breadcrumb Hover Color",
231
+ "link_type": "key",
232
+ "trigger": [],
233
+ "allow_alpha": false
234
+ },
235
+ {
236
+ "field": "color_picker",
237
+ "type": "standard_component",
238
+ "unique_key": "standard_component_color_picker_f46232e3c2828ae86d42",
239
+ "key": "menu_active_color",
240
+ "label": "Menu Active Color",
241
+ "link_type": "key",
242
+ "trigger": [],
243
+ "allow_alpha": true
244
+ }
245
+ ],
246
+ [
247
+ {
248
+ "field": "color_picker",
249
+ "type": "standard_component",
250
+ "unique_key": "standard_component_color_picker_63cd4264860092f38299",
251
+ "key": "background_color",
252
+ "label": "Background Color",
253
+ "link_type": "key",
254
+ "trigger": [],
255
+ "allow_alpha": true
256
+ },
257
+ {
258
+ "field": "color_picker",
259
+ "type": "standard_component",
260
+ "unique_key": "standard_component_color_picker_4de5cfa335d23f27763c",
261
+ "key": "menu_background_color",
262
+ "label": "Menu Background Color",
263
+ "link_type": "key",
264
+ "trigger": []
265
+ }
266
+ ],
267
+ [
268
+ {
269
+ "field": "color_picker",
270
+ "type": "standard_component",
271
+ "unique_key": "standard_component_color_picker_92ee1cdae282ff30305f",
272
+ "key": "menu_text_color",
273
+ "label": "Menu Text Color",
274
+ "link_type": "key",
275
+ "trigger": [],
276
+ "allow_alpha": true
277
+ }
278
+ ],
279
+ [
280
+ {
281
+ "field": "color_picker",
282
+ "type": "standard_component",
283
+ "unique_key": "standard_component_color_picker_53f8f5c0264eeef0aca5",
284
+ "key": "menu_text_active_color",
285
+ "label": "Menu Text Active Color",
286
+ "link_type": "key",
287
+ "trigger": [],
288
+ "allow_alpha": true
289
+ }
290
+ ]
291
+ ]
292
+ }
293
+ }
294
+ ],
295
+ "key": "407f5059c7309df01659"
296
+ },
297
+ {
298
+ "title": "Footer",
299
+ "source_key": "footer",
300
+ "actions": [],
301
+ "blocks": [
302
+ {
303
+ "key": "54166ce7b2cff59b2692",
304
+ "type": "column",
305
+ "layout": {
306
+ "num_of_col": 1,
307
+ "fields": [
308
+ [
309
+ {
310
+ "field": "input",
311
+ "type": "standard_component",
312
+ "unique_key": "standard_component_input_c77b2a7686179d6bf1eb",
313
+ "key": "content",
314
+ "label": "Content",
315
+ "link_type": "key",
316
+ "input_type": "wysiwyg",
317
+ "trigger": []
318
+ }
319
+ ]
320
+ ]
321
+ }
322
+ }
323
+ ],
324
+ "key": "1d8c155b834ad6bb14f2"
325
+ },
326
+ {
327
+ "title": " List & Detail",
328
+ "source_key": "list_detail",
329
+ "actions": [],
330
+ "blocks": [
331
+ {
332
+ "key": "e6127290f7644b3de6dd",
333
+ "type": "column",
334
+ "layout": {
335
+ "num_of_col": 6,
336
+ "fields": [
337
+ [
338
+ {
339
+ "field": "color_picker",
340
+ "type": "standard_component",
341
+ "unique_key": "standard_component_color_picker_5d60c19bef62742224f4",
342
+ "key": "primary_color",
343
+ "label": "Primary Color",
344
+ "required": false,
345
+ "link_type": "key",
346
+ "trigger": [],
347
+ "allow_color_code": false
348
+ },
349
+ {
350
+ "field": "color_picker",
351
+ "type": "standard_component",
352
+ "unique_key": "standard_component_color_picker_e80e136ba6590b1ccfaa",
353
+ "key": "background_color",
354
+ "label": "Background Color",
355
+ "link_type": "key",
356
+ "trigger": []
357
+ },
358
+ {
359
+ "field": "color_picker",
360
+ "type": "standard_component",
361
+ "unique_key": "standard_component_color_picker_8afe80f33024eb6ef096",
362
+ "key": "table_body_sort_bg",
363
+ "label": "Table Body Sort Background Color",
364
+ "link_type": "key",
365
+ "trigger": []
366
+ }
367
+ ],
368
+ [
369
+ {
370
+ "field": "color_picker",
371
+ "type": "standard_component",
372
+ "unique_key": "standard_component_color_picker_2b630c4dd8fd1d43f52f",
373
+ "key": "font_color",
374
+ "label": "Font Color",
375
+ "required": false,
376
+ "link_type": "key",
377
+ "trigger": [],
378
+ "allow_color_code": false
379
+ },
380
+ {
381
+ "field": "color_picker",
382
+ "type": "standard_component",
383
+ "unique_key": "standard_component_color_picker_1143bd31e6af3b4166ce",
384
+ "key": "table_header_bg",
385
+ "label": "Table Header Background Color",
386
+ "link_type": "key",
387
+ "trigger": []
388
+ },
389
+ {
390
+ "field": "color_picker",
391
+ "type": "standard_component",
392
+ "unique_key": "standard_component_color_picker_ed5f7a7f83fce9d196a0",
393
+ "key": "table_row_hover_bg",
394
+ "label": "Table Row Hover Background Color",
395
+ "link_type": "key",
396
+ "trigger": []
397
+ }
398
+ ],
399
+ [
400
+ {
401
+ "field": "color_picker",
402
+ "type": "standard_component",
403
+ "unique_key": "standard_component_color_picker_10ddfca4867e5b6b6eb0",
404
+ "key": "action_color",
405
+ "label": "Action Color",
406
+ "link_type": "key",
407
+ "trigger": [],
408
+ "allow_color_code": false
409
+ },
410
+ {
411
+ "field": "color_picker",
412
+ "type": "standard_component",
413
+ "unique_key": "standard_component_color_picker_f5d7a0943a5fa4c84d89",
414
+ "key": "table_header_color",
415
+ "label": "Table Header Text Color",
416
+ "link_type": "key",
417
+ "trigger": []
418
+ },
419
+ {
420
+ "field": "color_picker",
421
+ "type": "standard_component",
422
+ "unique_key": "standard_component_color_picker_ed5f7a7f83fce9d196f3",
423
+ "key": "boolean_value_true",
424
+ "label": "Boolean true value color",
425
+ "link_type": "key",
426
+ "trigger": []
427
+ }
428
+ ],
429
+ [
430
+ {
431
+ "field": "color_picker",
432
+ "type": "standard_component",
433
+ "unique_key": "standard_component_color_picker_54f666b6492e54254ffc",
434
+ "key": "hover_color",
435
+ "label": "Hover Color",
436
+ "link_type": "key",
437
+ "trigger": [],
438
+ "allow_color_code": false
439
+ },
440
+ {
441
+ "field": "color_picker",
442
+ "type": "standard_component",
443
+ "unique_key": "standard_component_color_picker_fa5c48a6e723ed0904a7",
444
+ "key": "table_header_sort_bg",
445
+ "label": "Table Header Sort Background Color",
446
+ "link_type": "key",
447
+ "trigger": []
448
+ },
449
+ {
450
+ "field": "color_picker",
451
+ "type": "standard_component",
452
+ "unique_key": "standard_component_color_picker_ed5f7a7f83fce9d196f8",
453
+ "key": "boolean_value_false",
454
+ "label": "Boolean false value color",
455
+ "link_type": "key",
456
+ "trigger": []
457
+ }
458
+ ]
459
+ ]
460
+ }
461
+ },
462
+ {
463
+ "key": "aa3dd49c2e6f425e96f6",
464
+ "type": "column",
465
+ "layout": {
466
+ "num_of_col": 3,
467
+ "fields": [
468
+ [
469
+ {
470
+ "field": "input",
471
+ "type": "standard_component",
472
+ "unique_key": "standard_component_input_4b5e45f150ffb34a6158",
473
+ "key": "format_date",
474
+ "label": "Date Format",
475
+ "description": "Moment format",
476
+ "required": true,
477
+ "default_value": "D/MMM/YY",
478
+ "link_type": "key",
479
+ "entity": "not_use",
480
+ "input_type": "single_line",
481
+ "trigger": []
482
+ },
483
+ {
484
+ "field": "select",
485
+ "type": "standard_component",
486
+ "unique_key": "standard_component_select_2fa76b39aec9ea0569a9",
487
+ "key": "record_per_page",
488
+ "label": "Record Per Page",
489
+ "required": true,
490
+ "default_value": [
491
+ "10",
492
+ "20",
493
+ "50",
494
+ "100"
495
+ ],
496
+ "link_type": "key",
497
+ "entity": "custom",
498
+ "options": [],
499
+ "mode": "tags",
500
+ "trigger": []
501
+ }
502
+ ],
503
+ [
504
+ {
505
+ "field": "input",
506
+ "type": "standard_component",
507
+ "unique_key": "standard_component_input_21ba78e0559cfaba96ee",
508
+ "key": "format_datetime",
509
+ "label": "DateTime Format",
510
+ "description": "Moment format",
511
+ "required": true,
512
+ "default_value": "D/MMM/YY h:mm A",
513
+ "link_type": "key",
514
+ "entity": "not_use",
515
+ "input_type": "single_line",
516
+ "trigger": []
517
+ }
518
+ ],
519
+ [
520
+ {
521
+ "field": "input",
522
+ "type": "standard_component",
523
+ "unique_key": "standard_component_input_fd81ed9966efd0c8489a",
524
+ "key": "format_time",
525
+ "label": "Time Format",
526
+ "description": "Moment format",
527
+ "default_value": "h:mm A",
528
+ "link_type": "key",
529
+ "entity": "not_use",
530
+ "input_type": "single_line",
531
+ "trigger": []
532
+ }
533
+ ]
534
+ ]
535
+ }
536
+ },
537
+ {
538
+ "key": "4eba966610bb08f1fcec",
539
+ "type": "column",
540
+ "layout": {
541
+ "num_of_col": 1,
542
+ "fields": [
543
+ [
544
+ {
545
+ "field": "label",
546
+ "type": "standard_component",
547
+ "unique_key": "standard_component_label_06e402ade005eb91e307",
548
+ "label": "Currency",
549
+ "entity": "test_setting_layout",
550
+ "format": "<p><br></p><p><strong style=\"font-size: 1.17em;\">Currency</strong><br></p>",
551
+ "hide_label": true,
552
+ "show_empty": false
553
+ }
554
+ ]
555
+ ]
556
+ }
557
+ },
558
+ {
559
+ "key": "b9ff2d5616410cb26f53",
560
+ "type": "column",
561
+ "layout": {
562
+ "num_of_col": 2,
563
+ "fields": [
564
+ [
565
+ {
566
+ "field": "input",
567
+ "type": "standard_component",
568
+ "unique_key": "standard_component_input_563d50f529d10b23b6dd",
569
+ "key": "prefix",
570
+ "label": "Prefix",
571
+ "link_type": "key",
572
+ "entity": "not_use",
573
+ "input_type": "single_line",
574
+ "trigger": [],
575
+ "use_function": false,
576
+ "name": "prefix"
577
+ }
578
+ ],
579
+ [
580
+ {
581
+ "field": "input",
582
+ "type": "standard_component",
583
+ "unique_key": "standard_component_input_84ec46a8d1ef174c16df",
584
+ "key": "suffix",
585
+ "label": "Suffix",
586
+ "link_type": "key",
587
+ "entity": "not_use",
588
+ "input_type": "single_line",
589
+ "trigger": [],
590
+ "use_function": false,
591
+ "name": "suffix"
592
+ }
593
+ ]
594
+ ]
595
+ }
596
+ },
597
+ {
598
+ "key": "7c7e7719e4db3a2eaeb9",
599
+ "type": "column",
600
+ "layout": {
601
+ "num_of_col": 3,
602
+ "fields": [
603
+ [
604
+ {
605
+ "field": "input",
606
+ "type": "standard_component",
607
+ "unique_key": "standard_component_input_fc3de00bbf8d0a1fcabd",
608
+ "key": "thousand_separator",
609
+ "label": "Thousand Separator",
610
+ "required": true,
611
+ "link_type": "key",
612
+ "entity": "not_use",
613
+ "input_type": "single_line",
614
+ "trigger": [],
615
+ "use_function": false,
616
+ "name": "thousand_separator",
617
+ "reg_exp_pattern": "^[^0-9]*$"
618
+ }
619
+ ],
620
+ [
621
+ {
622
+ "field": "input",
623
+ "type": "standard_component",
624
+ "unique_key": "standard_component_input_14fc58cca76df191c0ee",
625
+ "key": "decimal_separator",
626
+ "label": "Decimal Separator",
627
+ "required": true,
628
+ "link_type": "key",
629
+ "entity": "not_use",
630
+ "input_type": "single_line",
631
+ "trigger": [],
632
+ "use_function": false,
633
+ "name": "decimal_separator",
634
+ "reg_exp_pattern": "^[^0-9]*$"
635
+ }
636
+ ],
637
+ [
638
+ {
639
+ "field": "input_number",
640
+ "type": "standard_component",
641
+ "unique_key": "standard_component_input_number_284004fa899555e23ed6",
642
+ "key": "decimal_place",
643
+ "label": "Decimal Length",
644
+ "link_type": "key",
645
+ "trigger": [],
646
+ "decimal_place": 0,
647
+ "name": "decimal_place"
648
+ }
649
+ ]
650
+ ]
651
+ }
652
+ },
653
+ {
654
+ "key": "9715c0c6caa059c42bf5",
655
+ "type": "column",
656
+ "layout": {
657
+ "num_of_col": 2,
658
+ "fields": [
659
+ [
660
+ {
661
+ "field": "label",
662
+ "type": "standard_component",
663
+ "unique_key": "standard_component_label_fa2aae267ecfd77bb0d9",
664
+ "label": "Widget",
665
+ "entity": "test_setting",
666
+ "format": "<p><br></p><p><strong style=\"font-size: 1.17em;\">Widget</strong><br></p>",
667
+ "hide_label": true
668
+ }
669
+ ],
670
+ []
671
+ ]
672
+ }
673
+ },
674
+ {
675
+ "key": "349341a9405a931cad01",
676
+ "type": "column",
677
+ "layout": {
678
+ "num_of_col": 3,
679
+ "fields": [
680
+ [
681
+ {
682
+ "field": "color_picker",
683
+ "type": "standard_component",
684
+ "unique_key": "standard_component_color_picker_35b2edc3377077482152",
685
+ "key": "widget_background_color",
686
+ "label": "Background Color",
687
+ "required": true,
688
+ "link_type": "key",
689
+ "trigger": [],
690
+ "allow_alpha": true
691
+ }
692
+ ],
693
+ [
694
+ {
695
+ "field": "color_picker",
696
+ "type": "standard_component",
697
+ "unique_key": "standard_component_color_picker_75f4af34b7097690a957",
698
+ "key": "widget_border_color",
699
+ "label": "Border Color",
700
+ "required": true,
701
+ "link_type": "key",
702
+ "trigger": [],
703
+ "allow_alpha": true
704
+ }
705
+ ],
706
+ [
707
+ {
708
+ "field": "color_picker",
709
+ "type": "standard_component",
710
+ "unique_key": "standard_component_color_picker_8171278606874f16efca",
711
+ "key": "widget_bar_color",
712
+ "label": "Bar Color",
713
+ "required": true,
714
+ "link_type": "key",
715
+ "trigger": [],
716
+ "allow_alpha": true
717
+ }
718
+ ]
719
+ ]
720
+ }
721
+ },
722
+ {
723
+ "key": "d00c683f5512b036f52c",
724
+ "type": "column",
725
+ "layout": {
726
+ "num_of_col": 4,
727
+ "fields": [
728
+ [
729
+ {
730
+ "field": "color_picker",
731
+ "type": "standard_component",
732
+ "unique_key": "standard_component_color_picker_31240a562b517d220f3d",
733
+ "key": "widget_summary_box_background_color",
734
+ "label": "Summary Box Background Color",
735
+ "required": true,
736
+ "link_type": "key",
737
+ "trigger": [],
738
+ "allow_alpha": true
739
+ }
740
+ ],
741
+ [
742
+ {
743
+ "field": "color_picker",
744
+ "type": "standard_component",
745
+ "unique_key": "standard_component_color_picker_371093b068b71b59613f",
746
+ "key": "widget_default_color",
747
+ "label": "Default Color",
748
+ "required": true,
749
+ "link_type": "key",
750
+ "trigger": [],
751
+ "allow_alpha": true,
752
+ "allow_multiple": true
753
+ }
754
+ ]
755
+ ]
756
+ }
757
+ },
758
+ {
759
+ "key": "e27ea32e4e31019e7f6b",
760
+ "type": "column",
761
+ "layout": {
762
+ "num_of_col": 3,
763
+ "fields": [
764
+ [
765
+ {
766
+ "field": "input_number",
767
+ "type": "standard_component",
768
+ "unique_key": "standard_component_input_number_1438f6f4236a5c6fd907",
769
+ "key": "widget_border_width",
770
+ "label": "Border Width",
771
+ "required": true,
772
+ "default_value": 2,
773
+ "link_type": "key",
774
+ "min_value": 1,
775
+ "suffix": "px",
776
+ "trigger": [],
777
+ "decimal_place": 0
778
+ },
779
+ {
780
+ "field": "input_number",
781
+ "type": "standard_component",
782
+ "unique_key": "standard_component_input_number_2b42e5ce176a46718249",
783
+ "key": "widget_cutout_percentage",
784
+ "label": "Cutout Percentage",
785
+ "required": true,
786
+ "default_value": 0,
787
+ "link_type": "key",
788
+ "min_value": 1,
789
+ "suffix": "%",
790
+ "trigger": [],
791
+ "decimal_place": 0
792
+ }
793
+ ],
794
+ [
795
+ {
796
+ "field": "select",
797
+ "type": "standard_component",
798
+ "unique_key": "standard_component_select_4450ae35f89503ffdd92",
799
+ "key": "widget_point_style",
800
+ "label": "Point Style",
801
+ "required": true,
802
+ "default_value": "circle",
803
+ "link_type": "key",
804
+ "entity": "custom",
805
+ "options": [
806
+ "circle",
807
+ "cross",
808
+ "crossRot",
809
+ "dash",
810
+ "line",
811
+ "rect",
812
+ "rectRounded",
813
+ "rectRot",
814
+ "star",
815
+ "triangle"
816
+ ],
817
+ "mode": "single",
818
+ "trigger": []
819
+ }
820
+ ],
821
+ [
822
+ {
823
+ "field": "select",
824
+ "type": "standard_component",
825
+ "unique_key": "standard_component_select_150018cd3548e7ffcc94",
826
+ "key": "widget_column_type",
827
+ "label": "Column Type",
828
+ "required": true,
829
+ "default_value": "bar",
830
+ "link_type": "key",
831
+ "entity": "custom",
832
+ "options": [
833
+ "bar",
834
+ "horizontalBar"
835
+ ],
836
+ "mode": "single",
837
+ "trigger": []
838
+ }
839
+ ]
840
+ ]
841
+ }
842
+ }
843
+ ],
844
+ "key": "71c22335346ae7a5b99d"
845
+ },
846
+ {
847
+ "title": "Toast",
848
+ "source_key": "toast",
849
+ "actions": [],
850
+ "blocks": [
851
+ {
852
+ "key": "i46newwwd9wufibb4ptr",
853
+ "type": "column",
854
+ "layout": {
855
+ "num_of_col": 6,
856
+ "fields": [
857
+ [
858
+ {
859
+ "field": "select",
860
+ "type": "standard_component",
861
+ "unique_key": "standard_component_select_0cxyw03hbs5427eijg6r",
862
+ "key": "toast_position",
863
+ "label": "Position",
864
+ "required": true,
865
+ "default_value": "top-center",
866
+ "link_type": "key",
867
+ "entity": "custom",
868
+ "options": [
869
+ "top-center",
870
+ "top-right",
871
+ "top-left",
872
+ "bottom-right",
873
+ "bottom-left",
874
+ "bottom-center"
875
+ ],
876
+ "mode": "single",
877
+ "trigger": []
878
+ }
879
+ ],
880
+ [
881
+ {
882
+ "field": "select",
883
+ "type": "standard_component",
884
+ "unique_key": "standard_component_select_k8d950b4knx45vxukfx1",
885
+ "key": "toast_size",
886
+ "label": "Size",
887
+ "required": true,
888
+ "default_value": "full",
889
+ "link_type": "key",
890
+ "entity": "custom",
891
+ "options": [
892
+ "full",
893
+ "normal"
894
+ ],
895
+ "mode": "single",
896
+ "trigger": []
897
+ }
898
+ ],
899
+ [
900
+ {
901
+ "field": "input_number",
902
+ "type": "standard_component",
903
+ "unique_key": "standard_component_input_number_97y2zta2kuohyhgxfg49",
904
+ "key": "toast_delay",
905
+ "label": "Auto Close Delay",
906
+ "default_value": 10,
907
+ "link_type": "key",
908
+ "min_value": 1,
909
+ "suffix": "second",
910
+ "trigger": [],
911
+ "decimal_place": 0
912
+ }
913
+ ],
914
+ [
915
+ {
916
+ "field": "switch",
917
+ "type": "standard_component",
918
+ "unique_key": "standard_component_switch_uevds270y7bqkjvos1u1",
919
+ "key": "toast_icon_close",
920
+ "label": "Close on click",
921
+ "default_value": false,
922
+ "link_type": "key",
923
+ "yes_label": "Yes",
924
+ "no_label": "No",
925
+ "trigger": [],
926
+ "name": "toast_icon_close"
927
+ }
928
+ ]
929
+ ]
930
+ }
931
+ },
932
+ {
933
+ "key": "j9v9g1p15fhskppmz6vg",
934
+ "type": "column",
935
+ "layout": {
936
+ "num_of_col": 2,
937
+ "fields": [
938
+ [
939
+ {
940
+ "field": "label",
941
+ "type": "standard_component",
942
+ "unique_key": "standard_component_label_5lbdt9u61ytip7g8zkdr",
943
+ "label": "Success",
944
+ "entity": "test_setting",
945
+ "format": "<p><strong style=\"font-size: 1.17em;\">Success</strong><br></p>",
946
+ "hide_label": true
947
+ }
948
+ ],
949
+ []
950
+ ]
951
+ }
952
+ },
953
+ {
954
+ "key": "upst94ymxe9mxxg9sn7j",
955
+ "type": "column",
956
+ "layout": {
957
+ "num_of_col": 6,
958
+ "fields": [
959
+ [
960
+ {
961
+ "field": "color_picker",
962
+ "type": "standard_component",
963
+ "unique_key": "standard_component_color_picker_n7plflwjce1220h4boyj",
964
+ "key": "toast_success_background_color",
965
+ "label": "Background Color",
966
+ "link_type": "key",
967
+ "trigger": [],
968
+ "allow_alpha": false
969
+ }
970
+ ],
971
+ [
972
+ {
973
+ "field": "color_picker",
974
+ "type": "standard_component",
975
+ "unique_key": "standard_component_color_picker_szlzjdctdfse21vajxaa",
976
+ "key": "toast_success_title_color",
977
+ "label": "Title Color",
978
+ "link_type": "key",
979
+ "trigger": [],
980
+ "allow_alpha": false
981
+ }
982
+ ],
983
+ [
984
+ {
985
+ "field": "color_picker",
986
+ "type": "standard_component",
987
+ "unique_key": "standard_component_color_picker_g9atv7eoun8pjann7r53",
988
+ "key": "toast_success_description_color",
989
+ "label": "Description Color",
990
+ "link_type": "key",
991
+ "trigger": [],
992
+ "allow_alpha": false
993
+ }
994
+ ],
995
+ [
996
+ {
997
+ "field": "input_icon",
998
+ "type": "standard_component",
999
+ "unique_key": "standard_component_color_picker_txk36zueb3po52loyi14",
1000
+ "key": "toast_success_icon",
1001
+ "label": "Icon",
1002
+ "link_type": "key",
1003
+ "trigger": [],
1004
+ "allow_alpha": false
1005
+ }
1006
+ ]
1007
+ ]
1008
+ }
1009
+ },
1010
+ {
1011
+ "key": "jngh2k4gnvpi318zr9gv",
1012
+ "type": "column",
1013
+ "layout": {
1014
+ "num_of_col": 2,
1015
+ "fields": [
1016
+ [
1017
+ {
1018
+ "field": "label",
1019
+ "type": "standard_component",
1020
+ "unique_key": "standard_component_label_foz8dgwh9i4egqierj01",
1021
+ "label": "Warning",
1022
+ "entity": "test_setting",
1023
+ "format": "<p><strong style=\"font-size: 1.17em;\">Warning</strong><br></p>",
1024
+ "hide_label": true
1025
+ }
1026
+ ],
1027
+ []
1028
+ ]
1029
+ }
1030
+ },
1031
+ {
1032
+ "key": "2jzd0me81e3s6qzcpfku",
1033
+ "type": "column",
1034
+ "layout": {
1035
+ "num_of_col": 6,
1036
+ "fields": [
1037
+ [
1038
+ {
1039
+ "field": "color_picker",
1040
+ "type": "standard_component",
1041
+ "unique_key": "standard_component_color_picker_shibr219f12e5hvlrml8",
1042
+ "key": "toast_warning_background_color",
1043
+ "label": "Background Color",
1044
+ "link_type": "key",
1045
+ "trigger": [],
1046
+ "allow_alpha": false
1047
+ }
1048
+ ],
1049
+ [
1050
+ {
1051
+ "field": "color_picker",
1052
+ "type": "standard_component",
1053
+ "unique_key": "standard_component_color_picker_xxmon5qym40fs2rcacur",
1054
+ "key": "toast_warning_title_color",
1055
+ "label": "Title Color",
1056
+ "link_type": "key",
1057
+ "trigger": [],
1058
+ "allow_alpha": false
1059
+ }
1060
+ ],
1061
+ [
1062
+ {
1063
+ "field": "color_picker",
1064
+ "type": "standard_component",
1065
+ "unique_key": "standard_component_color_picker_jrvq8h7s7j315xwt256f",
1066
+ "key": "toast_warning_description_color",
1067
+ "label": "Description Color",
1068
+ "link_type": "key",
1069
+ "trigger": [],
1070
+ "allow_alpha": false
1071
+ }
1072
+ ],
1073
+ [
1074
+ {
1075
+ "field": "input_icon",
1076
+ "type": "standard_component",
1077
+ "unique_key": "standard_component_color_picker_b55rbarjdja210hrol3s",
1078
+ "key": "toast_warning_icon",
1079
+ "label": "Icon",
1080
+ "link_type": "key",
1081
+ "trigger": [],
1082
+ "allow_alpha": false
1083
+ }
1084
+ ]
1085
+ ]
1086
+ }
1087
+ },
1088
+ {
1089
+ "key": "ozwgbp3ibwxt2hkyz1o8",
1090
+ "type": "column",
1091
+ "layout": {
1092
+ "num_of_col": 2,
1093
+ "fields": [
1094
+ [
1095
+ {
1096
+ "field": "label",
1097
+ "type": "standard_component",
1098
+ "unique_key": "standard_component_label_whbnp0az2nxih6te7be2",
1099
+ "label": "Error",
1100
+ "entity": "test_setting",
1101
+ "format": "<p><strong style=\"font-size: 1.17em;\">Error</strong><br></p>",
1102
+ "hide_label": true
1103
+ }
1104
+ ],
1105
+ []
1106
+ ]
1107
+ }
1108
+ },
1109
+ {
1110
+ "key": "xq8f99olnf4l68e0bxi9",
1111
+ "type": "column",
1112
+ "layout": {
1113
+ "num_of_col": 6,
1114
+ "fields": [
1115
+ [
1116
+ {
1117
+ "field": "color_picker",
1118
+ "type": "standard_component",
1119
+ "unique_key": "standard_component_color_picker_jnwu0vkwut00tqukkzs9",
1120
+ "key": "toast_error_background_color",
1121
+ "label": "Background Color",
1122
+ "link_type": "key",
1123
+ "trigger": [],
1124
+ "allow_alpha": false
1125
+ }
1126
+ ],
1127
+ [
1128
+ {
1129
+ "field": "color_picker",
1130
+ "type": "standard_component",
1131
+ "unique_key": "standard_component_color_picker_6nlhesbbdvdk9e3d0hf1",
1132
+ "key": "toast_error_title_color",
1133
+ "label": "Title Color",
1134
+ "link_type": "key",
1135
+ "trigger": [],
1136
+ "allow_alpha": false
1137
+ }
1138
+ ],
1139
+ [
1140
+ {
1141
+ "field": "color_picker",
1142
+ "type": "standard_component",
1143
+ "unique_key": "standard_component_color_picker_ie93e244xxm7r7wg4uep",
1144
+ "key": "toast_error_description_color",
1145
+ "label": "Description Color",
1146
+ "link_type": "key",
1147
+ "trigger": [],
1148
+ "allow_alpha": false
1149
+ }
1150
+ ],
1151
+ [
1152
+ {
1153
+ "field": "input_icon",
1154
+ "type": "standard_component",
1155
+ "unique_key": "standard_component_color_picker_qcf6m48g8ki6vg7kvdb1",
1156
+ "key": "toast_error_icon",
1157
+ "label": "Icon",
1158
+ "link_type": "key",
1159
+ "trigger": [],
1160
+ "allow_alpha": false
1161
+ }
1162
+ ]
1163
+ ]
1164
+ }
1165
+ }
1166
+ ],
1167
+ "key": "2r0zeowhwcprqkbx7ya4"
1168
+ }
1169
+ ]
1170
+ }
1171
+ ],
1172
+ "redirect_mode": "refresh"
1173
+ },
1174
+ "name": "Theme & Layout",
1175
+ "code": "theme_layout",
1176
+ "type": [
1177
+ "form"
1178
+ ],
1179
+ "allow_actions": [
1180
+ {
1181
+ "action": "create",
1182
+ "role_restrictions": []
1183
+ },
1184
+ {
1185
+ "action": "update",
1186
+ "role_restrictions": []
1187
+ }
1188
+ ],
1189
+ "deploy_package_settings": [
1190
+ "general"
1191
+ ],
1192
+ "restriction": [],
1193
+ "hide_activity_log": true,
1194
+ "hide_refresh": true
1195
+ }