@univerjs-pro/bases 0.25.0-insiders.20260608-e4336f7

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 (157) hide show
  1. package/README.md +42 -0
  2. package/lib/cjs/facade.js +1 -0
  3. package/lib/cjs/index.js +1 -0
  4. package/lib/cjs/locale/ar-SA.js +1 -0
  5. package/lib/cjs/locale/ca-ES.js +1 -0
  6. package/lib/cjs/locale/de-DE.js +1 -0
  7. package/lib/cjs/locale/en-US.js +1 -0
  8. package/lib/cjs/locale/es-ES.js +1 -0
  9. package/lib/cjs/locale/fa-IR.js +1 -0
  10. package/lib/cjs/locale/fr-FR.js +1 -0
  11. package/lib/cjs/locale/id-ID.js +1 -0
  12. package/lib/cjs/locale/it-IT.js +1 -0
  13. package/lib/cjs/locale/ja-JP.js +1 -0
  14. package/lib/cjs/locale/ko-KR.js +1 -0
  15. package/lib/cjs/locale/pl-PL.js +1 -0
  16. package/lib/cjs/locale/pt-BR.js +1 -0
  17. package/lib/cjs/locale/ru-RU.js +1 -0
  18. package/lib/cjs/locale/sk-SK.js +1 -0
  19. package/lib/cjs/locale/vi-VN.js +1 -0
  20. package/lib/cjs/locale/zh-CN.js +1 -0
  21. package/lib/cjs/locale/zh-HK.js +1 -0
  22. package/lib/cjs/locale/zh-TW.js +1 -0
  23. package/lib/es/facade.js +1 -0
  24. package/lib/es/index.js +1 -0
  25. package/lib/es/locale/ar-SA.js +1 -0
  26. package/lib/es/locale/ca-ES.js +1 -0
  27. package/lib/es/locale/de-DE.js +1 -0
  28. package/lib/es/locale/en-US.js +1 -0
  29. package/lib/es/locale/es-ES.js +1 -0
  30. package/lib/es/locale/fa-IR.js +1 -0
  31. package/lib/es/locale/fr-FR.js +1 -0
  32. package/lib/es/locale/id-ID.js +1 -0
  33. package/lib/es/locale/it-IT.js +1 -0
  34. package/lib/es/locale/ja-JP.js +1 -0
  35. package/lib/es/locale/ko-KR.js +1 -0
  36. package/lib/es/locale/pl-PL.js +1 -0
  37. package/lib/es/locale/pt-BR.js +1 -0
  38. package/lib/es/locale/ru-RU.js +1 -0
  39. package/lib/es/locale/sk-SK.js +1 -0
  40. package/lib/es/locale/vi-VN.js +1 -0
  41. package/lib/es/locale/zh-CN.js +1 -0
  42. package/lib/es/locale/zh-HK.js +1 -0
  43. package/lib/es/locale/zh-TW.js +1 -0
  44. package/lib/facade.js +1 -0
  45. package/lib/index.js +1 -0
  46. package/lib/locale/ar-SA.js +1 -0
  47. package/lib/locale/ca-ES.js +1 -0
  48. package/lib/locale/de-DE.js +1 -0
  49. package/lib/locale/en-US.js +1 -0
  50. package/lib/locale/es-ES.js +1 -0
  51. package/lib/locale/fa-IR.js +1 -0
  52. package/lib/locale/fr-FR.js +1 -0
  53. package/lib/locale/id-ID.js +1 -0
  54. package/lib/locale/it-IT.js +1 -0
  55. package/lib/locale/ja-JP.js +1 -0
  56. package/lib/locale/ko-KR.js +1 -0
  57. package/lib/locale/pl-PL.js +1 -0
  58. package/lib/locale/pt-BR.js +1 -0
  59. package/lib/locale/ru-RU.js +1 -0
  60. package/lib/locale/sk-SK.js +1 -0
  61. package/lib/locale/vi-VN.js +1 -0
  62. package/lib/locale/zh-CN.js +1 -0
  63. package/lib/locale/zh-HK.js +1 -0
  64. package/lib/locale/zh-TW.js +1 -0
  65. package/lib/types/commands/cell.command.d.ts +32 -0
  66. package/lib/types/commands/field.command.d.ts +53 -0
  67. package/lib/types/commands/record.command.d.ts +39 -0
  68. package/lib/types/commands/table.command.d.ts +18 -0
  69. package/lib/types/commands/undo-redo.d.ts +2 -0
  70. package/lib/types/commands/view.command.d.ts +107 -0
  71. package/lib/types/controllers/base-active-dirty.controller.d.ts +16 -0
  72. package/lib/types/controllers/base-formula-calculation.controller.d.ts +23 -0
  73. package/lib/types/controllers/base-formula-optional-identifier.d.ts +1 -0
  74. package/lib/types/controllers/base-remote-formula.controller.d.ts +13 -0
  75. package/lib/types/facade/f-base.d.ts +362 -0
  76. package/lib/types/facade/f-event.d.ts +61 -0
  77. package/lib/types/facade/f-field.d.ts +191 -0
  78. package/lib/types/facade/f-permission.d.ts +299 -0
  79. package/lib/types/facade/f-range.d.ts +179 -0
  80. package/lib/types/facade/f-record.d.ts +137 -0
  81. package/lib/types/facade/f-table.d.ts +769 -0
  82. package/lib/types/facade/f-univer.d.ts +148 -0
  83. package/lib/types/facade/f-view.d.ts +275 -0
  84. package/lib/types/facade/index.d.ts +10 -0
  85. package/lib/types/fields/date-format.d.ts +6 -0
  86. package/lib/types/fields/field-core-plugin.d.ts +21 -0
  87. package/lib/types/fields/number-format.d.ts +15 -0
  88. package/lib/types/index.d.ts +48 -0
  89. package/lib/types/locale/ar-SA.d.ts +3 -0
  90. package/lib/types/locale/ca-ES.d.ts +3 -0
  91. package/lib/types/locale/de-DE.d.ts +3 -0
  92. package/lib/types/locale/en-US.d.ts +59 -0
  93. package/lib/types/locale/es-ES.d.ts +3 -0
  94. package/lib/types/locale/fa-IR.d.ts +3 -0
  95. package/lib/types/locale/fr-FR.d.ts +3 -0
  96. package/lib/types/locale/id-ID.d.ts +3 -0
  97. package/lib/types/locale/it-IT.d.ts +3 -0
  98. package/lib/types/locale/ja-JP.d.ts +3 -0
  99. package/lib/types/locale/ko-KR.d.ts +3 -0
  100. package/lib/types/locale/pl-PL.d.ts +3 -0
  101. package/lib/types/locale/pt-BR.d.ts +3 -0
  102. package/lib/types/locale/ru-RU.d.ts +3 -0
  103. package/lib/types/locale/sk-SK.d.ts +3 -0
  104. package/lib/types/locale/vi-VN.d.ts +3 -0
  105. package/lib/types/locale/zh-CN.d.ts +3 -0
  106. package/lib/types/locale/zh-HK.d.ts +3 -0
  107. package/lib/types/locale/zh-TW.d.ts +3 -0
  108. package/lib/types/models/base-cell-data.d.ts +14 -0
  109. package/lib/types/models/base-snapshot.d.ts +1 -0
  110. package/lib/types/models/default-table.d.ts +12 -0
  111. package/lib/types/models/field-snapshot.d.ts +1 -0
  112. package/lib/types/models/record-snapshot.d.ts +1 -0
  113. package/lib/types/models/table-snapshot.d.ts +1 -0
  114. package/lib/types/models/value.d.ts +1 -0
  115. package/lib/types/models/view-snapshot.d.ts +1 -0
  116. package/lib/types/mutations/json1.mutation.d.ts +7 -0
  117. package/lib/types/mutations/utils.d.ts +2 -0
  118. package/lib/types/ot/json1-adapter.d.ts +103 -0
  119. package/lib/types/ot/json1-invalidation.d.ts +2 -0
  120. package/lib/types/ot/json1-op-applier.d.ts +6 -0
  121. package/lib/types/ot/json1-op-factory.d.ts +64 -0
  122. package/lib/types/ot/json1-path.d.ts +13 -0
  123. package/lib/types/plugin.d.ts +35 -0
  124. package/lib/types/search/base-search.d.ts +24 -0
  125. package/lib/types/services/base-active-dirty.service.d.ts +24 -0
  126. package/lib/types/services/base-command.service.d.ts +122 -0
  127. package/lib/types/services/base-compression.service.d.ts +46 -0
  128. package/lib/types/services/base-field-registry.service.d.ts +17 -0
  129. package/lib/types/services/base-formula.service.d.ts +71 -0
  130. package/lib/types/services/base-performance.service.d.ts +5 -0
  131. package/lib/types/services/base-permission.service.d.ts +76 -0
  132. package/lib/types/services/base-projection.service.d.ts +97 -0
  133. package/lib/types/services/base-resource.service.d.ts +15 -0
  134. package/lib/types/services/base-view-registry.service.d.ts +15 -0
  135. package/lib/types/views/view-core-plugin.d.ts +21 -0
  136. package/lib/umd/facade.js +1 -0
  137. package/lib/umd/index.js +1 -0
  138. package/lib/umd/locale/ar-SA.js +1 -0
  139. package/lib/umd/locale/ca-ES.js +1 -0
  140. package/lib/umd/locale/de-DE.js +1 -0
  141. package/lib/umd/locale/en-US.js +1 -0
  142. package/lib/umd/locale/es-ES.js +1 -0
  143. package/lib/umd/locale/fa-IR.js +1 -0
  144. package/lib/umd/locale/fr-FR.js +1 -0
  145. package/lib/umd/locale/id-ID.js +1 -0
  146. package/lib/umd/locale/it-IT.js +1 -0
  147. package/lib/umd/locale/ja-JP.js +1 -0
  148. package/lib/umd/locale/ko-KR.js +1 -0
  149. package/lib/umd/locale/pl-PL.js +1 -0
  150. package/lib/umd/locale/pt-BR.js +1 -0
  151. package/lib/umd/locale/ru-RU.js +1 -0
  152. package/lib/umd/locale/sk-SK.js +1 -0
  153. package/lib/umd/locale/vi-VN.js +1 -0
  154. package/lib/umd/locale/zh-CN.js +1 -0
  155. package/lib/umd/locale/zh-HK.js +1 -0
  156. package/lib/umd/locale/zh-TW.js +1 -0
  157. package/package.json +86 -0
@@ -0,0 +1 @@
1
+ function _0x18bc(){const _0x26cf25=['26435fHppYT','3UWWKqd','Formula','bases','Single\x20Option','Barcode','Person','Create\x20field','Record\x20ID','Updated\x20By','Date','44eYtrcx','Location','6261600fYVyfy','Progress','Group','Created\x20At','Flow','Number','Multiple\x20Options','Currency','Two-way\x20Link','Field\x20title\x20is\x20required','Delete\x20record','387660DZNPgv','Rating','Gantt','Grid','579320QFwPNJ','Update\x20view\x20settings','Calendar','Invalid\x20cell\x20value','Numbering','2341638piztjr','35UlmVht','2214185bEwcYa','Lookup','Phone\x20Number','1898672LOmhZy','Button'];_0x18bc=function(){return _0x26cf25;};return _0x18bc();}function _0x5a09(_0x333cb0,_0x4c5445){_0x333cb0=_0x333cb0-0xb5;const _0x18bc90=_0x18bc();let _0x5a092b=_0x18bc90[_0x333cb0];return _0x5a092b;}const _0x3e0fd9=_0x5a09;(function(_0x5538a9,_0x26af15){const _0x21bb27=_0x5a09,_0x5e102f=_0x5538a9();while(!![]){try{const _0x3ec526=parseInt(_0x21bb27(0xc7))/0x1*(-parseInt(_0x21bb27(0xd2))/0x2)+-parseInt(_0x21bb27(0xc8))/0x3*(-parseInt(_0x21bb27(0xc5))/0x4)+parseInt(_0x21bb27(0xc2))/0x5+parseInt(_0x21bb27(0xb7))/0x6+parseInt(_0x21bb27(0xc1))/0x7*(parseInt(_0x21bb27(0xbb))/0x8)+parseInt(_0x21bb27(0xc0))/0x9+-parseInt(_0x21bb27(0xd4))/0xa;if(_0x3ec526===_0x26af15)break;else _0x5e102f['push'](_0x5e102f['shift']());}catch(_0x894005){_0x5e102f['push'](_0x5e102f['shift']());}}}(_0x18bc,0x60d62));const e={'bases':{'bases':{'fieldType':{'text':'Text','singleSelect':_0x3e0fd9(0xcb),'multiSelect':_0x3e0fd9(0xda),'person':_0x3e0fd9(0xcd),'group':_0x3e0fd9(0xd6),'date':_0x3e0fd9(0xd1),'attachment':'Attachment','number':_0x3e0fd9(0xd9),'checkbox':'Checkbox','link':'Link','formula':_0x3e0fd9(0xc9),'lookup':_0x3e0fd9(0xc3),'flow':_0x3e0fd9(0xd8),'button':_0x3e0fd9(0xc6),'numbering':_0x3e0fd9(0xbf),'phone':_0x3e0fd9(0xc4),'email':'Email','location':_0x3e0fd9(0xd3),'barcode':_0x3e0fd9(0xcc),'progress':_0x3e0fd9(0xd5),'currency':_0x3e0fd9(0xdb),'rating':_0x3e0fd9(0xb8),'twoWayLink':_0x3e0fd9(0xdc),'recordId':_0x3e0fd9(0xcf),'createdBy':'Created\x20By','updatedBy':_0x3e0fd9(0xd0),'createdAt':_0x3e0fd9(0xd7),'updatedAt':'Updated\x20At','summary':'Summary'},'viewType':{'grid':_0x3e0fd9(0xba),'kanban':'Kanban','calendar':_0x3e0fd9(0xbd),'gantt':_0x3e0fd9(0xb9),'gallery':'Gallery'},'error':{'fieldNameRequired':_0x3e0fd9(0xb5),'invalidFieldType':'Invalid\x20field\x20type','invalidCellValue':_0x3e0fd9(0xbe),'invalidKanbanGroupField':'Kanban\x20requires\x20a\x20groupable\x20field','invalidCalendarDateField':'Calendar\x20requires\x20a\x20date\x20field','invalidGanttDateField':'Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields'},'command':{'updateCell':'Update\x20cell','createField':_0x3e0fd9(0xce),'deleteField':'Delete\x20field','createRecord':'Create\x20record','deleteRecord':_0x3e0fd9(0xb6),'updateViewConfig':_0x3e0fd9(0xbc)}}}[_0x3e0fd9(0xca)]};export{e as default};
@@ -0,0 +1 @@
1
+ function _0x2261(_0x52d073,_0x4b6e9d){_0x52d073=_0x52d073-0x194;const _0x55e9e7=_0x55e9();let _0x2261b9=_0x55e9e7[_0x52d073];return _0x2261b9;}const _0x2862dc=_0x2261;function _0x55e9(){const _0x54d9f9=['708030FalTrC','Grid','935053HoZFmv','Text','Phone\x20Number','472KHQKii','Create\x20field','6vLBSbP','Kanban\x20requires\x20a\x20groupable\x20field','Formula','Rating','Gallery','Email','Created\x20By','Lookup','10862170WAkIpa','Two-way\x20Link','127593ecKwuf','Currency','5YmZNSS','Checkbox','Created\x20At','bases','Invalid\x20field\x20type','63580957jFLgpM','921732Yrkqef','Single\x20Option','Field\x20title\x20is\x20required','Group','63rsCQpH','Record\x20ID','Delete\x20record','Button','Calendar','Summary','Updated\x20At','Multiple\x20Options','581588nZlbLj','Calendar\x20requires\x20a\x20date\x20field','Numbering','Update\x20cell','Attachment','Updated\x20By','Location','Invalid\x20cell\x20value'];_0x55e9=function(){return _0x54d9f9;};return _0x55e9();}(function(_0x2a570b,_0x4fe4fd){const _0x4ea1ad=_0x2261,_0x2e77ea=_0x2a570b();while(!![]){try{const _0x28a37c=-parseInt(_0x4ea1ad(0x1a4))/0x1+-parseInt(_0x4ea1ad(0x1a9))/0x2*(parseInt(_0x4ea1ad(0x1bb))/0x3)+-parseInt(_0x4ea1ad(0x19a))/0x4*(parseInt(_0x4ea1ad(0x1b5))/0x5)+parseInt(_0x4ea1ad(0x1a2))/0x6*(-parseInt(_0x4ea1ad(0x1bf))/0x7)+parseInt(_0x4ea1ad(0x1a7))/0x8*(-parseInt(_0x4ea1ad(0x1b3))/0x9)+-parseInt(_0x4ea1ad(0x1b1))/0xa+parseInt(_0x4ea1ad(0x1ba))/0xb;if(_0x28a37c===_0x4fe4fd)break;else _0x2e77ea['push'](_0x2e77ea['shift']());}catch(_0x5295ff){_0x2e77ea['push'](_0x2e77ea['shift']());}}}(_0x55e9,0xc1a70));const e={'bases':{'bases':{'fieldType':{'text':_0x2862dc(0x1a5),'singleSelect':_0x2862dc(0x1bc),'multiSelect':_0x2862dc(0x199),'person':'Person','group':_0x2862dc(0x1be),'date':'Date','attachment':_0x2862dc(0x19e),'number':'Number','checkbox':_0x2862dc(0x1b6),'link':'Link','formula':_0x2862dc(0x1ab),'lookup':_0x2862dc(0x1b0),'flow':'Flow','button':_0x2862dc(0x195),'numbering':_0x2862dc(0x19c),'phone':_0x2862dc(0x1a6),'email':_0x2862dc(0x1ae),'location':_0x2862dc(0x1a0),'barcode':'Barcode','progress':'Progress','currency':_0x2862dc(0x1b4),'rating':_0x2862dc(0x1ac),'twoWayLink':_0x2862dc(0x1b2),'recordId':_0x2862dc(0x1c0),'createdBy':_0x2862dc(0x1af),'updatedBy':_0x2862dc(0x19f),'createdAt':_0x2862dc(0x1b7),'updatedAt':_0x2862dc(0x198),'summary':_0x2862dc(0x197)},'viewType':{'grid':_0x2862dc(0x1a3),'kanban':'Kanban','calendar':_0x2862dc(0x196),'gantt':'Gantt','gallery':_0x2862dc(0x1ad)},'error':{'fieldNameRequired':_0x2862dc(0x1bd),'invalidFieldType':_0x2862dc(0x1b9),'invalidCellValue':_0x2862dc(0x1a1),'invalidKanbanGroupField':_0x2862dc(0x1aa),'invalidCalendarDateField':_0x2862dc(0x19b),'invalidGanttDateField':'Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields'},'command':{'updateCell':_0x2862dc(0x19d),'createField':_0x2862dc(0x1a8),'deleteField':'Delete\x20field','createRecord':'Create\x20record','deleteRecord':_0x2862dc(0x194),'updateViewConfig':'Update\x20view\x20settings'}}}[_0x2862dc(0x1b8)]};export{e as default};
@@ -0,0 +1 @@
1
+ const _0x348a9d=_0x68bc;(function(_0x5485e4,_0x65e6b7){const _0x4cecae=_0x68bc,_0x1a5675=_0x5485e4();while(!![]){try{const _0x5a12de=-parseInt(_0x4cecae(0xab))/0x1+-parseInt(_0x4cecae(0xb6))/0x2+parseInt(_0x4cecae(0x9d))/0x3*(parseInt(_0x4cecae(0xa0))/0x4)+-parseInt(_0x4cecae(0x96))/0x5*(-parseInt(_0x4cecae(0x97))/0x6)+-parseInt(_0x4cecae(0x99))/0x7*(parseInt(_0x4cecae(0xc0))/0x8)+-parseInt(_0x4cecae(0xaa))/0x9*(-parseInt(_0x4cecae(0xbc))/0xa)+parseInt(_0x4cecae(0x9f))/0xb;if(_0x5a12de===_0x65e6b7)break;else _0x1a5675['push'](_0x1a5675['shift']());}catch(_0x19f238){_0x1a5675['push'](_0x1a5675['shift']());}}}(_0x5736,0xd3031));function _0x68bc(_0x5adcfb,_0x1038c3){_0x5adcfb=_0x5adcfb-0x95;const _0x57364a=_0x5736();let _0x68bc5=_0x57364a[_0x5adcfb];return _0x68bc5;}const e={'bases':{'bases':{'fieldType':{'text':_0x348a9d(0x9c),'singleSelect':'Single\x20Option','multiSelect':_0x348a9d(0xbe),'person':'Person','group':_0x348a9d(0xaf),'date':_0x348a9d(0xb8),'attachment':'Attachment','number':_0x348a9d(0xac),'checkbox':'Checkbox','link':_0x348a9d(0xb2),'formula':_0x348a9d(0xa7),'lookup':_0x348a9d(0xa2),'flow':_0x348a9d(0xa6),'button':_0x348a9d(0xa5),'numbering':_0x348a9d(0xa9),'phone':'Phone\x20Number','email':_0x348a9d(0xbf),'location':'Location','barcode':_0x348a9d(0x9b),'progress':_0x348a9d(0x9a),'currency':'Currency','rating':'Rating','twoWayLink':_0x348a9d(0xae),'recordId':_0x348a9d(0xbd),'createdBy':_0x348a9d(0xb1),'updatedBy':_0x348a9d(0xa8),'createdAt':_0x348a9d(0x9e),'updatedAt':_0x348a9d(0xb5),'summary':_0x348a9d(0xa4)},'viewType':{'grid':_0x348a9d(0xba),'kanban':'Kanban','calendar':'Calendar','gantt':'Gantt','gallery':_0x348a9d(0xbb)},'error':{'fieldNameRequired':_0x348a9d(0xa3),'invalidFieldType':_0x348a9d(0x98),'invalidCellValue':'Invalid\x20cell\x20value','invalidKanbanGroupField':'Kanban\x20requires\x20a\x20groupable\x20field','invalidCalendarDateField':'Calendar\x20requires\x20a\x20date\x20field','invalidGanttDateField':_0x348a9d(0xb9)},'command':{'updateCell':_0x348a9d(0xb4),'createField':_0x348a9d(0xb7),'deleteField':_0x348a9d(0xb0),'createRecord':_0x348a9d(0x95),'deleteRecord':_0x348a9d(0xb3),'updateViewConfig':_0x348a9d(0xad)}}}[_0x348a9d(0xa1)]};export{e as default};function _0x5736(){const _0x3c851b=['435350OLLbBl','Number','Update\x20view\x20settings','Two-way\x20Link','Group','Delete\x20field','Created\x20By','Link','Delete\x20record','Update\x20cell','Updated\x20At','1872706OpbkOG','Create\x20field','Date','Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields','Grid','Gallery','24690YMFswF','Record\x20ID','Multiple\x20Options','Email','8WqkxSu','Create\x20record','2729315XDZRcd','18WSZXbR','Invalid\x20field\x20type','5673367ADQzvy','Progress','Barcode','Text','952785fbcfbV','Created\x20At','10401974CVlkCe','4MmLMkC','bases','Lookup','Field\x20title\x20is\x20required','Summary','Button','Flow','Formula','Updated\x20By','Numbering','531zzXVrk'];_0x5736=function(){return _0x3c851b;};return _0x5736();}
@@ -0,0 +1 @@
1
+ function _0x374b(_0x4ed523,_0x174197){_0x4ed523=_0x4ed523-0x93;const _0x2aa01c=_0x2aa0();let _0x374bfc=_0x2aa01c[_0x4ed523];return _0x374bfc;}const _0xd58376=_0x374b;(function(_0x3638a8,_0x15a6a2){const _0x39c24d=_0x374b,_0x6903f0=_0x3638a8();while(!![]){try{const _0x188b80=-parseInt(_0x39c24d(0x9f))/0x1*(-parseInt(_0x39c24d(0xa7))/0x2)+parseInt(_0x39c24d(0xa2))/0x3*(parseInt(_0x39c24d(0xbe))/0x4)+parseInt(_0x39c24d(0xae))/0x5+parseInt(_0x39c24d(0xa9))/0x6*(-parseInt(_0x39c24d(0xa4))/0x7)+-parseInt(_0x39c24d(0xaa))/0x8+parseInt(_0x39c24d(0xad))/0x9*(parseInt(_0x39c24d(0xa0))/0xa)+-parseInt(_0x39c24d(0xa3))/0xb;if(_0x188b80===_0x15a6a2)break;else _0x6903f0['push'](_0x6903f0['shift']());}catch(_0x24602d){_0x6903f0['push'](_0x6903f0['shift']());}}}(_0x2aa0,0x8985b));const e={'bases':{'fieldType':{'text':'Text','singleSelect':_0xd58376(0x96),'multiSelect':_0xd58376(0xb3),'person':_0xd58376(0xb8),'group':_0xd58376(0xb6),'date':_0xd58376(0x9c),'attachment':'Attachment','number':'Number','checkbox':'Checkbox','link':_0xd58376(0x9b),'formula':_0xd58376(0x9d),'lookup':'Lookup','flow':_0xd58376(0xb5),'button':'Button','numbering':_0xd58376(0xa5),'phone':_0xd58376(0xa1),'email':'Email','location':_0xd58376(0x94),'barcode':_0xd58376(0xb9),'progress':_0xd58376(0xb2),'currency':_0xd58376(0x99),'rating':_0xd58376(0x97),'twoWayLink':'Two-way\x20Link','recordId':_0xd58376(0xac),'createdBy':_0xd58376(0xbd),'updatedBy':_0xd58376(0x95),'createdAt':_0xd58376(0x93),'updatedAt':_0xd58376(0xab),'summary':'Summary'},'viewType':{'grid':_0xd58376(0xb1),'kanban':_0xd58376(0xb4),'calendar':_0xd58376(0x98),'gantt':_0xd58376(0xbf),'gallery':_0xd58376(0x9a)},'error':{'fieldNameRequired':_0xd58376(0xaf),'invalidFieldType':_0xd58376(0xbb),'invalidCellValue':_0xd58376(0xb7),'invalidKanbanGroupField':'Kanban\x20requires\x20a\x20groupable\x20field','invalidCalendarDateField':_0xd58376(0xb0),'invalidGanttDateField':'Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields'},'command':{'updateCell':_0xd58376(0xba),'createField':_0xd58376(0xa8),'deleteField':_0xd58376(0x9e),'createRecord':_0xd58376(0xa6),'deleteRecord':_0xd58376(0xbc),'updateViewConfig':'Update\x20view\x20settings'}}};function _0x2aa0(){const _0x3243d2=['190yfSeNK','Phone\x20Number','442281dsnKMJ','22268840Tzbxfi','1036kYseGR','Numbering','Create\x20record','2vtIssR','Create\x20field','12234MYRkhZ','4863840lZdWrz','Updated\x20At','Record\x20ID','517977GGVIDO','2550470HPqBoB','Field\x20title\x20is\x20required','Calendar\x20requires\x20a\x20date\x20field','Grid','Progress','Multiple\x20Options','Kanban','Flow','Group','Invalid\x20cell\x20value','Person','Barcode','Update\x20cell','Invalid\x20field\x20type','Delete\x20record','Created\x20By','28vYRoDb','Gantt','Created\x20At','Location','Updated\x20By','Single\x20Option','Rating','Calendar','Currency','Gallery','Link','Date','Formula','Delete\x20field','861893aqXraL'];_0x2aa0=function(){return _0x3243d2;};return _0x2aa0();}export{e as default};
@@ -0,0 +1 @@
1
+ function _0x6b37(_0xf6f660,_0x5a7831){_0xf6f660=_0xf6f660-0x140;const _0x576d49=_0x576d();let _0x6b3728=_0x576d49[_0xf6f660];return _0x6b3728;}const _0x29570c=_0x6b37;function _0x576d(){const _0x1817d6=['Group','275862aoHXkf','147144DeUnXD','Update\x20cell','Flow','Kanban\x20requires\x20a\x20groupable\x20field','Rating','Created\x20By','128ejcrkU','Single\x20Option','Text','Button','Checkbox','Calendar\x20requires\x20a\x20date\x20field','10jlTcxk','Calendar','Gallery','bases','50iTEOwf','Delete\x20field','Phone\x20Number','Gantt','Multiple\x20Options','1015680KYvvle','Number','Record\x20ID','Date','Formula','Barcode','Update\x20view\x20settings','Progress','Numbering','Location','35WOQoGB','2009256LItgpb','Updated\x20By','Invalid\x20field\x20type','1063324biKFnq','387CqsjBs','Attachment','Create\x20field','Currency','Created\x20At','Summary','4441hxvBqr','841390xAihju','Delete\x20record'];_0x576d=function(){return _0x1817d6;};return _0x576d();}(function(_0x1aed52,_0x1b6dd1){const _0x2294af=_0x6b37,_0x5ecd11=_0x1aed52();while(!![]){try{const _0x33e9de=parseInt(_0x2294af(0x15f))/0x1*(parseInt(_0x2294af(0x16a))/0x2)+-parseInt(_0x2294af(0x14a))/0x3+parseInt(_0x2294af(0x158))/0x4*(parseInt(_0x2294af(0x141))/0x5)+parseInt(_0x2294af(0x163))/0x6*(parseInt(_0x2294af(0x154))/0x7)+-parseInt(_0x2294af(0x164))/0x8*(parseInt(_0x2294af(0x159))/0x9)+-parseInt(_0x2294af(0x145))/0xa*(-parseInt(_0x2294af(0x160))/0xb)+parseInt(_0x2294af(0x155))/0xc;if(_0x33e9de===_0x1b6dd1)break;else _0x5ecd11['push'](_0x5ecd11['shift']());}catch(_0x87318d){_0x5ecd11['push'](_0x5ecd11['shift']());}}}(_0x576d,0x71d18));const e={'bases':{'bases':{'fieldType':{'text':_0x29570c(0x16c),'singleSelect':_0x29570c(0x16b),'multiSelect':_0x29570c(0x149),'person':'Person','group':_0x29570c(0x162),'date':_0x29570c(0x14d),'attachment':_0x29570c(0x15a),'number':_0x29570c(0x14b),'checkbox':_0x29570c(0x16e),'link':'Link','formula':_0x29570c(0x14e),'lookup':'Lookup','flow':_0x29570c(0x166),'button':_0x29570c(0x16d),'numbering':_0x29570c(0x152),'phone':_0x29570c(0x147),'email':'Email','location':_0x29570c(0x153),'barcode':_0x29570c(0x14f),'progress':_0x29570c(0x151),'currency':_0x29570c(0x15c),'rating':_0x29570c(0x168),'twoWayLink':'Two-way\x20Link','recordId':_0x29570c(0x14c),'createdBy':_0x29570c(0x169),'updatedBy':_0x29570c(0x156),'createdAt':_0x29570c(0x15d),'updatedAt':'Updated\x20At','summary':_0x29570c(0x15e)},'viewType':{'grid':'Grid','kanban':'Kanban','calendar':_0x29570c(0x142),'gantt':_0x29570c(0x148),'gallery':_0x29570c(0x143)},'error':{'fieldNameRequired':'Field\x20title\x20is\x20required','invalidFieldType':_0x29570c(0x157),'invalidCellValue':'Invalid\x20cell\x20value','invalidKanbanGroupField':_0x29570c(0x167),'invalidCalendarDateField':_0x29570c(0x140),'invalidGanttDateField':'Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields'},'command':{'updateCell':_0x29570c(0x165),'createField':_0x29570c(0x15b),'deleteField':_0x29570c(0x146),'createRecord':'Create\x20record','deleteRecord':_0x29570c(0x161),'updateViewConfig':_0x29570c(0x150)}}}[_0x29570c(0x144)]};export{e as default};
@@ -0,0 +1 @@
1
+ function _0x3c39(){const _0x15b668=['Gallery','Formula','Calendar\x20requires\x20a\x20date\x20field','Link','Number','Multiple\x20Options','Flow','Location','Record\x20ID','Invalid\x20cell\x20value','Two-way\x20Link','1802240MVTbVo','Button','1580872WAXhgr','3259459hYzqfJ','Update\x20view\x20settings','Checkbox','50780vRwUPh','Delete\x20field','Progress','Group','Created\x20By','Invalid\x20field\x20type','Gantt','Create\x20field','Barcode','Updated\x20By','Calendar','Attachment','45162bPqhvC','Text','88092yhymDZ','Create\x20record','Field\x20title\x20is\x20required','1716324pQbgSl','Email','Updated\x20At','bases','Currency','Date','Update\x20cell'];_0x3c39=function(){return _0x15b668;};return _0x3c39();}const _0x5089ee=_0x633c;(function(_0x400223,_0x2fd37e){const _0x36560d=_0x633c,_0x26bec1=_0x400223();while(!![]){try{const _0x4870bc=parseInt(_0x36560d(0x1ad))/0x1+-parseInt(_0x36560d(0x190))/0x2+parseInt(_0x36560d(0x192))/0x3+-parseInt(_0x36560d(0x1a9))/0x4+parseInt(_0x36560d(0x1a7))/0x5+-parseInt(_0x36560d(0x195))/0x6+parseInt(_0x36560d(0x1aa))/0x7;if(_0x4870bc===_0x2fd37e)break;else _0x26bec1['push'](_0x26bec1['shift']());}catch(_0x113f8c){_0x26bec1['push'](_0x26bec1['shift']());}}}(_0x3c39,0x31688));function _0x633c(_0x3281bc,_0x18aa51){_0x3281bc=_0x3281bc-0x18d;const _0x3c393b=_0x3c39();let _0x633c12=_0x3c393b[_0x3281bc];return _0x633c12;}const e={'bases':{'bases':{'fieldType':{'text':_0x5089ee(0x191),'singleSelect':'Single\x20Option','multiSelect':_0x5089ee(0x1a1),'person':'Person','group':_0x5089ee(0x1b0),'date':_0x5089ee(0x19a),'attachment':_0x5089ee(0x18f),'number':_0x5089ee(0x1a0),'checkbox':_0x5089ee(0x1ac),'link':_0x5089ee(0x19f),'formula':_0x5089ee(0x19d),'lookup':'Lookup','flow':_0x5089ee(0x1a2),'button':_0x5089ee(0x1a8),'numbering':'Numbering','phone':'Phone\x20Number','email':_0x5089ee(0x196),'location':_0x5089ee(0x1a3),'barcode':_0x5089ee(0x1b5),'progress':_0x5089ee(0x1af),'currency':_0x5089ee(0x199),'rating':'Rating','twoWayLink':_0x5089ee(0x1a6),'recordId':_0x5089ee(0x1a4),'createdBy':_0x5089ee(0x1b1),'updatedBy':_0x5089ee(0x18d),'createdAt':'Created\x20At','updatedAt':_0x5089ee(0x197),'summary':'Summary'},'viewType':{'grid':'Grid','kanban':'Kanban','calendar':_0x5089ee(0x18e),'gantt':_0x5089ee(0x1b3),'gallery':_0x5089ee(0x19c)},'error':{'fieldNameRequired':_0x5089ee(0x194),'invalidFieldType':_0x5089ee(0x1b2),'invalidCellValue':_0x5089ee(0x1a5),'invalidKanbanGroupField':'Kanban\x20requires\x20a\x20groupable\x20field','invalidCalendarDateField':_0x5089ee(0x19e),'invalidGanttDateField':'Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields'},'command':{'updateCell':_0x5089ee(0x19b),'createField':_0x5089ee(0x1b4),'deleteField':_0x5089ee(0x1ae),'createRecord':_0x5089ee(0x193),'deleteRecord':'Delete\x20record','updateViewConfig':_0x5089ee(0x1ab)}}}[_0x5089ee(0x198)]};export{e as default};
@@ -0,0 +1 @@
1
+ const _0x4253b6=_0x1b0d;function _0x20da(){const _0x284195=['Grid','Date','2780OSNLOo','Update\x20cell','Delete\x20record','Field\x20title\x20is\x20required','Record\x20ID','Checkbox','Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields','73020uesMoM','Progress','Delete\x20field','Created\x20By','2WyOvUB','79251pSAcgN','Number','bases','Gantt','Numbering','Group','Phone\x20Number','Calendar\x20requires\x20a\x20date\x20field','1688897HDetOj','Multiple\x20Options','Rating','Invalid\x20cell\x20value','6jpneau','Create\x20record','Formula','Update\x20view\x20settings','Calendar','56tOlXRQ','Lookup','4993670qMdONM','Button','Updated\x20By','298232ysmYdc','Link','9621FbRLUG','Flow','Invalid\x20field\x20type','1059480eZpFZT','Summary','Currency','Create\x20field','Location'];_0x20da=function(){return _0x284195;};return _0x20da();}(function(_0x2bc998,_0x397f3f){const _0x3b877e=_0x1b0d,_0x31847f=_0x2bc998();while(!![]){try{const _0x3d8ea3=-parseInt(_0x3b877e(0x102))/0x1+parseInt(_0x3b877e(0x119))/0x2*(parseInt(_0x3b877e(0x11a))/0x3)+parseInt(_0x3b877e(0xfd))/0x4*(parseInt(_0x3b877e(0x115))/0x5)+parseInt(_0x3b877e(0xf8))/0x6*(parseInt(_0x3b877e(0x122))/0x7)+parseInt(_0x3b877e(0x107))/0x8+-parseInt(_0x3b877e(0x104))/0x9*(-parseInt(_0x3b877e(0x10e))/0xa)+-parseInt(_0x3b877e(0xff))/0xb;if(_0x3d8ea3===_0x397f3f)break;else _0x31847f['push'](_0x31847f['shift']());}catch(_0x2b9a6e){_0x31847f['push'](_0x31847f['shift']());}}}(_0x20da,0x24837));const e={'bases':{'bases':{'fieldType':{'text':'Text','singleSelect':'Single\x20Option','multiSelect':_0x4253b6(0x123),'person':'Person','group':_0x4253b6(0x11f),'date':_0x4253b6(0x10d),'attachment':'Attachment','number':_0x4253b6(0x11b),'checkbox':_0x4253b6(0x113),'link':_0x4253b6(0x103),'formula':_0x4253b6(0xfa),'lookup':_0x4253b6(0xfe),'flow':_0x4253b6(0x105),'button':_0x4253b6(0x100),'numbering':_0x4253b6(0x11e),'phone':_0x4253b6(0x120),'email':'Email','location':_0x4253b6(0x10b),'barcode':'Barcode','progress':_0x4253b6(0x116),'currency':_0x4253b6(0x109),'rating':_0x4253b6(0xf6),'twoWayLink':'Two-way\x20Link','recordId':_0x4253b6(0x112),'createdBy':_0x4253b6(0x118),'updatedBy':_0x4253b6(0x101),'createdAt':'Created\x20At','updatedAt':'Updated\x20At','summary':_0x4253b6(0x108)},'viewType':{'grid':_0x4253b6(0x10c),'kanban':'Kanban','calendar':_0x4253b6(0xfc),'gantt':_0x4253b6(0x11d),'gallery':'Gallery'},'error':{'fieldNameRequired':_0x4253b6(0x111),'invalidFieldType':_0x4253b6(0x106),'invalidCellValue':_0x4253b6(0xf7),'invalidKanbanGroupField':'Kanban\x20requires\x20a\x20groupable\x20field','invalidCalendarDateField':_0x4253b6(0x121),'invalidGanttDateField':_0x4253b6(0x114)},'command':{'updateCell':_0x4253b6(0x10f),'createField':_0x4253b6(0x10a),'deleteField':_0x4253b6(0x117),'createRecord':_0x4253b6(0xf9),'deleteRecord':_0x4253b6(0x110),'updateViewConfig':_0x4253b6(0xfb)}}}[_0x4253b6(0x11c)]};function _0x1b0d(_0x27392b,_0x4d633e){_0x27392b=_0x27392b-0xf6;const _0x20da50=_0x20da();let _0x1b0dd3=_0x20da50[_0x27392b];return _0x1b0dd3;}export{e as default};
@@ -0,0 +1 @@
1
+ const _0x8a1ccc=_0x84fa;function _0xc630(){const _0x41a8f1=['Summary','Update\x20view\x20settings','Lookup','Email','18eDhcHE','42fUuTeQ','Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields','Currency','Numbering','Person','Calendar','Invalid\x20field\x20type','Delete\x20field','457749moPvCW','6750370xBpdMb','Gantt','682392ZXsdyq','Phone\x20Number','Number','Updated\x20At','Create\x20record','Single\x20Option','Link','496PwiYeU','Grid','Field\x20title\x20is\x20required','Record\x20ID','197278CoXprc','Flow','7210UGAMvL','Formula','185286pTRMzZ','bases','Location','Attachment','520303XTGwur','Kanban\x20requires\x20a\x20groupable\x20field','Gallery','Checkbox','Barcode','Created\x20At','Progress','Delete\x20record'];_0xc630=function(){return _0x41a8f1;};return _0xc630();}(function(_0x129fcb,_0x4e5767){const _0x1318b2=_0x84fa,_0x38a9ff=_0x129fcb();while(!![]){try{const _0x15de71=parseInt(_0x1318b2(0x18a))/0x1+parseInt(_0x1318b2(0x19e))/0x2*(parseInt(_0x1318b2(0x18e))/0x3)+-parseInt(_0x1318b2(0x186))/0x4*(parseInt(_0x1318b2(0x18c))/0x5)+parseInt(_0x1318b2(0x19f))/0x6*(parseInt(_0x1318b2(0x192))/0x7)+-parseInt(_0x1318b2(0x17f))/0x8+-parseInt(_0x1318b2(0x1a7))/0x9+-parseInt(_0x1318b2(0x17d))/0xa;if(_0x15de71===_0x4e5767)break;else _0x38a9ff['push'](_0x38a9ff['shift']());}catch(_0x4e7aad){_0x38a9ff['push'](_0x38a9ff['shift']());}}}(_0xc630,0x4532a));function _0x84fa(_0x48998d,_0x30848b){_0x48998d=_0x48998d-0x17d;const _0xc6300b=_0xc630();let _0x84fa3c=_0xc6300b[_0x48998d];return _0x84fa3c;}const e={'bases':{'bases':{'fieldType':{'text':'Text','singleSelect':_0x8a1ccc(0x184),'multiSelect':'Multiple\x20Options','person':_0x8a1ccc(0x1a3),'group':'Group','date':'Date','attachment':_0x8a1ccc(0x191),'number':_0x8a1ccc(0x181),'checkbox':_0x8a1ccc(0x195),'link':_0x8a1ccc(0x185),'formula':_0x8a1ccc(0x18d),'lookup':_0x8a1ccc(0x19c),'flow':_0x8a1ccc(0x18b),'button':'Button','numbering':_0x8a1ccc(0x1a2),'phone':_0x8a1ccc(0x180),'email':_0x8a1ccc(0x19d),'location':_0x8a1ccc(0x190),'barcode':_0x8a1ccc(0x196),'progress':_0x8a1ccc(0x198),'currency':_0x8a1ccc(0x1a1),'rating':'Rating','twoWayLink':'Two-way\x20Link','recordId':_0x8a1ccc(0x189),'createdBy':'Created\x20By','updatedBy':'Updated\x20By','createdAt':_0x8a1ccc(0x197),'updatedAt':_0x8a1ccc(0x182),'summary':_0x8a1ccc(0x19a)},'viewType':{'grid':_0x8a1ccc(0x187),'kanban':'Kanban','calendar':_0x8a1ccc(0x1a4),'gantt':_0x8a1ccc(0x17e),'gallery':_0x8a1ccc(0x194)},'error':{'fieldNameRequired':_0x8a1ccc(0x188),'invalidFieldType':_0x8a1ccc(0x1a5),'invalidCellValue':'Invalid\x20cell\x20value','invalidKanbanGroupField':_0x8a1ccc(0x193),'invalidCalendarDateField':'Calendar\x20requires\x20a\x20date\x20field','invalidGanttDateField':_0x8a1ccc(0x1a0)},'command':{'updateCell':'Update\x20cell','createField':'Create\x20field','deleteField':_0x8a1ccc(0x1a6),'createRecord':_0x8a1ccc(0x183),'deleteRecord':_0x8a1ccc(0x199),'updateViewConfig':_0x8a1ccc(0x19b)}}}[_0x8a1ccc(0x18f)]};export{e as default};
@@ -0,0 +1 @@
1
+ function _0x2e7c(){const _0x292869=['Email','Attachment','Single\x20Option','Kanban\x20requires\x20a\x20groupable\x20field','Create\x20field','Checkbox','6xobITd','5106996auqwHC','Number','704648MLmlfj','Calendar\x20requires\x20a\x20date\x20field','1188689jWPbsm','Button','Lookup','Currency','Update\x20cell','Group','Update\x20view\x20settings','Calendar','Location','9135470PBBGCs','Record\x20ID','Create\x20record','Updated\x20By','Formula','Progress','bases','4739240DZllsm','Grid','Invalid\x20cell\x20value','7048209msOLjW','Barcode','Kanban','18KWvYyr','3087116PqaDwL','Phone\x20Number','Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields','Person','Numbering','Created\x20At','10LKysoa','Invalid\x20field\x20type','Flow','Delete\x20record'];_0x2e7c=function(){return _0x292869;};return _0x2e7c();}const _0x3565ba=_0x5e28;function _0x5e28(_0x567ce9,_0x389cf5){_0x567ce9=_0x567ce9-0x1eb;const _0x2e7c62=_0x2e7c();let _0x5e289c=_0x2e7c62[_0x567ce9];return _0x5e289c;}(function(_0xab4e6c,_0x4ba905){const _0x58c77e=_0x5e28,_0x51d40f=_0xab4e6c();while(!![]){try{const _0xcbcc34=parseInt(_0x58c77e(0x1ec))/0x1+parseInt(_0x58c77e(0x216))/0x2*(parseInt(_0x58c77e(0x213))/0x3)+-parseInt(_0x58c77e(0x203))/0x4*(-parseInt(_0x58c77e(0x209))/0x5)+parseInt(_0x58c77e(0x214))/0x6+-parseInt(_0x58c77e(0x1ff))/0x7+-parseInt(_0x58c77e(0x1fc))/0x8+parseInt(_0x58c77e(0x202))/0x9*(-parseInt(_0x58c77e(0x1f5))/0xa);if(_0xcbcc34===_0x4ba905)break;else _0x51d40f['push'](_0x51d40f['shift']());}catch(_0x39468a){_0x51d40f['push'](_0x51d40f['shift']());}}}(_0x2e7c,0xd25eb));const e={'bases':{'bases':{'fieldType':{'text':'Text','singleSelect':_0x3565ba(0x20f),'multiSelect':'Multiple\x20Options','person':_0x3565ba(0x206),'group':_0x3565ba(0x1f1),'date':'Date','attachment':_0x3565ba(0x20e),'number':_0x3565ba(0x215),'checkbox':_0x3565ba(0x212),'link':'Link','formula':_0x3565ba(0x1f9),'lookup':_0x3565ba(0x1ee),'flow':_0x3565ba(0x20b),'button':_0x3565ba(0x1ed),'numbering':_0x3565ba(0x207),'phone':_0x3565ba(0x204),'email':_0x3565ba(0x20d),'location':_0x3565ba(0x1f4),'barcode':_0x3565ba(0x200),'progress':_0x3565ba(0x1fa),'currency':_0x3565ba(0x1ef),'rating':'Rating','twoWayLink':'Two-way\x20Link','recordId':_0x3565ba(0x1f6),'createdBy':'Created\x20By','updatedBy':_0x3565ba(0x1f8),'createdAt':_0x3565ba(0x208),'updatedAt':'Updated\x20At','summary':'Summary'},'viewType':{'grid':_0x3565ba(0x1fd),'kanban':_0x3565ba(0x201),'calendar':_0x3565ba(0x1f3),'gantt':'Gantt','gallery':'Gallery'},'error':{'fieldNameRequired':'Field\x20title\x20is\x20required','invalidFieldType':_0x3565ba(0x20a),'invalidCellValue':_0x3565ba(0x1fe),'invalidKanbanGroupField':_0x3565ba(0x210),'invalidCalendarDateField':_0x3565ba(0x1eb),'invalidGanttDateField':_0x3565ba(0x205)},'command':{'updateCell':_0x3565ba(0x1f0),'createField':_0x3565ba(0x211),'deleteField':'Delete\x20field','createRecord':_0x3565ba(0x1f7),'deleteRecord':_0x3565ba(0x20c),'updateViewConfig':_0x3565ba(0x1f2)}}}[_0x3565ba(0x1fb)]};export{e as default};
@@ -0,0 +1 @@
1
+ const _0x7cd9b2=_0x3550;(function(_0x37112b,_0x2f12a2){const _0xa5ef7b=_0x3550,_0x3af0c0=_0x37112b();while(!![]){try{const _0x141a74=-parseInt(_0xa5ef7b(0x1ec))/0x1*(parseInt(_0xa5ef7b(0x1fc))/0x2)+parseInt(_0xa5ef7b(0x1e8))/0x3*(-parseInt(_0xa5ef7b(0x1f6))/0x4)+parseInt(_0xa5ef7b(0x1ed))/0x5*(-parseInt(_0xa5ef7b(0x1e7))/0x6)+-parseInt(_0xa5ef7b(0x1f8))/0x7+-parseInt(_0xa5ef7b(0x1f9))/0x8+parseInt(_0xa5ef7b(0x1ea))/0x9*(parseInt(_0xa5ef7b(0x1ee))/0xa)+parseInt(_0xa5ef7b(0x1e2))/0xb*(parseInt(_0xa5ef7b(0x204))/0xc);if(_0x141a74===_0x2f12a2)break;else _0x3af0c0['push'](_0x3af0c0['shift']());}catch(_0xd9c079){_0x3af0c0['push'](_0x3af0c0['shift']());}}}(_0x32b6,0x9bb1a));const e={'bases':{'bases':{'fieldType':{'text':_0x7cd9b2(0x20e),'singleSelect':'Single\x20Option','multiSelect':'Multiple\x20Options','person':_0x7cd9b2(0x210),'group':'Group','date':_0x7cd9b2(0x207),'attachment':_0x7cd9b2(0x203),'number':_0x7cd9b2(0x1f7),'checkbox':'Checkbox','link':_0x7cd9b2(0x1e9),'formula':_0x7cd9b2(0x1f3),'lookup':_0x7cd9b2(0x1f4),'flow':_0x7cd9b2(0x206),'button':_0x7cd9b2(0x201),'numbering':_0x7cd9b2(0x1e3),'phone':_0x7cd9b2(0x1f1),'email':_0x7cd9b2(0x202),'location':_0x7cd9b2(0x1eb),'barcode':'Barcode','progress':_0x7cd9b2(0x205),'currency':_0x7cd9b2(0x1e4),'rating':'Rating','twoWayLink':_0x7cd9b2(0x1f2),'recordId':'Record\x20ID','createdBy':_0x7cd9b2(0x1fa),'updatedBy':_0x7cd9b2(0x20b),'createdAt':'Created\x20At','updatedAt':_0x7cd9b2(0x212),'summary':_0x7cd9b2(0x1fd)},'viewType':{'grid':'Grid','kanban':_0x7cd9b2(0x211),'calendar':_0x7cd9b2(0x1ff),'gantt':_0x7cd9b2(0x208),'gallery':_0x7cd9b2(0x209)},'error':{'fieldNameRequired':_0x7cd9b2(0x20d),'invalidFieldType':'Invalid\x20field\x20type','invalidCellValue':_0x7cd9b2(0x1fb),'invalidKanbanGroupField':_0x7cd9b2(0x20f),'invalidCalendarDateField':_0x7cd9b2(0x20a),'invalidGanttDateField':_0x7cd9b2(0x200)},'command':{'updateCell':_0x7cd9b2(0x1e5),'createField':_0x7cd9b2(0x1f0),'deleteField':_0x7cd9b2(0x20c),'createRecord':_0x7cd9b2(0x1ef),'deleteRecord':_0x7cd9b2(0x1fe),'updateViewConfig':_0x7cd9b2(0x1e6)}}}[_0x7cd9b2(0x1f5)]};function _0x3550(_0x1b14b1,_0x3c1c13){_0x1b14b1=_0x1b14b1-0x1e2;const _0x32b61a=_0x32b6();let _0x355035=_0x32b61a[_0x1b14b1];return _0x355035;}export{e as default};function _0x32b6(){const _0x184072=['Create\x20field','Phone\x20Number','Two-way\x20Link','Formula','Lookup','bases','56GXobqv','Number','3193547JrGwcL','10151216gGEujd','Created\x20By','Invalid\x20cell\x20value','1950924IJfMlU','Summary','Delete\x20record','Calendar','Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields','Button','Email','Attachment','12MyxFiV','Progress','Flow','Date','Gantt','Gallery','Calendar\x20requires\x20a\x20date\x20field','Updated\x20By','Delete\x20field','Field\x20title\x20is\x20required','Text','Kanban\x20requires\x20a\x20groupable\x20field','Person','Kanban','Updated\x20At','42912661EhxsJL','Numbering','Currency','Update\x20cell','Update\x20view\x20settings','24KMGBWS','86088BkbKab','Link','2628kxouIV','Location','1ifKBsu','1258780nmpkfL','28970YZvmQM','Create\x20record'];_0x32b6=function(){return _0x184072;};return _0x32b6();}
@@ -0,0 +1 @@
1
+ const _0x2cb7c4=_0x59b5;(function(_0x3edf19,_0x5d5a44){const _0x32e5f9=_0x59b5,_0x47135f=_0x3edf19();while(!![]){try{const _0x18d11a=parseInt(_0x32e5f9(0xe4))/0x1*(-parseInt(_0x32e5f9(0xe7))/0x2)+-parseInt(_0x32e5f9(0x105))/0x3+-parseInt(_0x32e5f9(0xf6))/0x4*(parseInt(_0x32e5f9(0xd7))/0x5)+-parseInt(_0x32e5f9(0xe1))/0x6+parseInt(_0x32e5f9(0xef))/0x7*(-parseInt(_0x32e5f9(0xff))/0x8)+-parseInt(_0x32e5f9(0xed))/0x9+-parseInt(_0x32e5f9(0xfe))/0xa*(-parseInt(_0x32e5f9(0xdb))/0xb);if(_0x18d11a===_0x5d5a44)break;else _0x47135f['push'](_0x47135f['shift']());}catch(_0x490145){_0x47135f['push'](_0x47135f['shift']());}}}(_0xdc30,0x771b4));function _0x59b5(_0x109463,_0x469beb){_0x109463=_0x109463-0xd5;const _0xdc3029=_0xdc30();let _0x59b556=_0xdc3029[_0x109463];return _0x59b556;}const e={'bases':{'bases':{'fieldType':{'text':'Text','singleSelect':_0x2cb7c4(0xe5),'multiSelect':_0x2cb7c4(0x106),'person':_0x2cb7c4(0x100),'group':_0x2cb7c4(0xf4),'date':_0x2cb7c4(0xe6),'attachment':_0x2cb7c4(0xf2),'number':'Number','checkbox':_0x2cb7c4(0xf1),'link':_0x2cb7c4(0xeb),'formula':'Formula','lookup':_0x2cb7c4(0xfd),'flow':_0x2cb7c4(0xda),'button':_0x2cb7c4(0xde),'numbering':_0x2cb7c4(0x101),'phone':_0x2cb7c4(0xec),'email':_0x2cb7c4(0x102),'location':_0x2cb7c4(0xd9),'barcode':_0x2cb7c4(0xf8),'progress':_0x2cb7c4(0xe0),'currency':'Currency','rating':'Rating','twoWayLink':_0x2cb7c4(0xf7),'recordId':_0x2cb7c4(0xf9),'createdBy':_0x2cb7c4(0xdd),'updatedBy':_0x2cb7c4(0x104),'createdAt':_0x2cb7c4(0x103),'updatedAt':_0x2cb7c4(0xdf),'summary':'Summary'},'viewType':{'grid':_0x2cb7c4(0xe9),'kanban':_0x2cb7c4(0xf0),'calendar':_0x2cb7c4(0xf5),'gantt':_0x2cb7c4(0xee),'gallery':_0x2cb7c4(0xdc)},'error':{'fieldNameRequired':_0x2cb7c4(0xd6),'invalidFieldType':_0x2cb7c4(0xe8),'invalidCellValue':_0x2cb7c4(0xfc),'invalidKanbanGroupField':_0x2cb7c4(0xe2),'invalidCalendarDateField':'Calendar\x20requires\x20a\x20date\x20field','invalidGanttDateField':_0x2cb7c4(0xd5)},'command':{'updateCell':_0x2cb7c4(0xfa),'createField':_0x2cb7c4(0xea),'deleteField':_0x2cb7c4(0xf3),'createRecord':_0x2cb7c4(0xd8),'deleteRecord':_0x2cb7c4(0xfb),'updateViewConfig':'Update\x20view\x20settings'}}}[_0x2cb7c4(0xe3)]};export{e as default};function _0xdc30(){const _0x5d46c9=['Created\x20By','Button','Updated\x20At','Progress','1894950orECvc','Kanban\x20requires\x20a\x20groupable\x20field','bases','53OHvOcZ','Single\x20Option','Date','32308MtbOle','Invalid\x20field\x20type','Grid','Create\x20field','Link','Phone\x20Number','5665869PupDBy','Gantt','2714936MJkPlK','Kanban','Checkbox','Attachment','Delete\x20field','Group','Calendar','784XlWwqD','Two-way\x20Link','Barcode','Record\x20ID','Update\x20cell','Delete\x20record','Invalid\x20cell\x20value','Lookup','640YnmsqV','16lMYHrf','Person','Numbering','Email','Created\x20At','Updated\x20By','1488168qoWDza','Multiple\x20Options','Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields','Field\x20title\x20is\x20required','13935SOvrxR','Create\x20record','Location','Flow','705958jYEyeD','Gallery'];_0xdc30=function(){return _0x5d46c9;};return _0xdc30();}
@@ -0,0 +1 @@
1
+ function _0x5217(){const _0x2f3ef2=['Checkbox','836lBNQGK','Formula','Created\x20By','Gallery','129857AfSAEC','Delete\x20field','Create\x20field','Gantt','Attachment','12mYWUwa','Text','Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields','Record\x20ID','Single\x20Option','994200UqxzEw','Phone\x20Number','Group','Update\x20cell','Invalid\x20cell\x20value','4606596kXrMWA','Rating','10WPEhne','Calendar','Kanban','Kanban\x20requires\x20a\x20groupable\x20field','Person','Numbering','Currency','Updated\x20At','Created\x20At','65290CWAxYP','Calendar\x20requires\x20a\x20date\x20field','63056SeJZay','2502fgfxnQ','Multiple\x20Options','468CLhdfl','10758847sEKYMc','bases','Summary','Button','24XJREfP','Barcode'];_0x5217=function(){return _0x2f3ef2;};return _0x5217();}const _0x52746b=_0x4609;function _0x4609(_0xb250a9,_0x217b27){_0xb250a9=_0xb250a9-0x19f;const _0x52177f=_0x5217();let _0x460918=_0x52177f[_0xb250a9];return _0x460918;}(function(_0x1a4c15,_0x372fd3){const _0x3d6ba9=_0x4609,_0x1648f9=_0x1a4c15();while(!![]){try{const _0x4482fe=parseInt(_0x3d6ba9(0x1be))/0x1+parseInt(_0x3d6ba9(0x1ba))/0x2*(parseInt(_0x3d6ba9(0x1b0))/0x3)+-parseInt(_0x3d6ba9(0x1b7))/0x4*(parseInt(_0x3d6ba9(0x1ad))/0x5)+-parseInt(_0x3d6ba9(0x1b2))/0x6*(-parseInt(_0x3d6ba9(0x1af))/0x7)+-parseInt(_0x3d6ba9(0x1c8))/0x8+-parseInt(_0x3d6ba9(0x1a2))/0x9*(-parseInt(_0x3d6ba9(0x1a4))/0xa)+-parseInt(_0x3d6ba9(0x1b3))/0xb*(parseInt(_0x3d6ba9(0x1c3))/0xc);if(_0x4482fe===_0x372fd3)break;else _0x1648f9['push'](_0x1648f9['shift']());}catch(_0x52880f){_0x1648f9['push'](_0x1648f9['shift']());}}}(_0x5217,0x7d0ed));const e={'bases':{'bases':{'fieldType':{'text':_0x52746b(0x1c4),'singleSelect':_0x52746b(0x1c7),'multiSelect':_0x52746b(0x1b1),'person':_0x52746b(0x1a8),'group':_0x52746b(0x19f),'date':'Date','attachment':_0x52746b(0x1c2),'number':'Number','checkbox':_0x52746b(0x1b9),'link':'Link','formula':_0x52746b(0x1bb),'lookup':'Lookup','flow':'Flow','button':_0x52746b(0x1b6),'numbering':_0x52746b(0x1a9),'phone':_0x52746b(0x1c9),'email':'Email','location':'Location','barcode':_0x52746b(0x1b8),'progress':'Progress','currency':_0x52746b(0x1aa),'rating':_0x52746b(0x1a3),'twoWayLink':'Two-way\x20Link','recordId':_0x52746b(0x1c6),'createdBy':_0x52746b(0x1bc),'updatedBy':'Updated\x20By','createdAt':_0x52746b(0x1ac),'updatedAt':_0x52746b(0x1ab),'summary':_0x52746b(0x1b5)},'viewType':{'grid':'Grid','kanban':_0x52746b(0x1a6),'calendar':_0x52746b(0x1a5),'gantt':_0x52746b(0x1c1),'gallery':_0x52746b(0x1bd)},'error':{'fieldNameRequired':'Field\x20title\x20is\x20required','invalidFieldType':'Invalid\x20field\x20type','invalidCellValue':_0x52746b(0x1a1),'invalidKanbanGroupField':_0x52746b(0x1a7),'invalidCalendarDateField':_0x52746b(0x1ae),'invalidGanttDateField':_0x52746b(0x1c5)},'command':{'updateCell':_0x52746b(0x1a0),'createField':_0x52746b(0x1c0),'deleteField':_0x52746b(0x1bf),'createRecord':'Create\x20record','deleteRecord':'Delete\x20record','updateViewConfig':'Update\x20view\x20settings'}}}[_0x52746b(0x1b4)]};export{e as default};
@@ -0,0 +1 @@
1
+ const _0x27feca=_0x2a02;function _0x2f0d(){const _0x788899=['Numbering','2038IdliLJ','Two-way\x20Link','Date','907428TVjBBX','Delete\x20field','Progress','Create\x20record','Formula','Group','Rating','7720aehwrx','Kanban\x20requires\x20a\x20groupable\x20field','Location','768470KQmODB','Update\x20cell','Barcode','26064Llbuuk','Calendar\x20requires\x20a\x20date\x20field','192nASZTy','917COYfMo','5769sFDvAN','1784MEKUaB','Record\x20ID','2369610bEwplv','Created\x20At','Currency','Person','Update\x20view\x20settings','Lookup','Flow','Delete\x20record','Number','Phone\x20Number','Updated\x20By','Text','813alvDXE','Multiple\x20Options','Summary','77YeZnsp','Field\x20title\x20is\x20required','Kanban','Checkbox','Gantt','Create\x20field'];_0x2f0d=function(){return _0x788899;};return _0x2f0d();}(function(_0x462e0e,_0x2a9c2c){const _0x7e5448=_0x2a02,_0x386c44=_0x462e0e();while(!![]){try{const _0x6805b8=-parseInt(_0x7e5448(0x168))/0x1*(-parseInt(_0x7e5448(0x172))/0x2)+-parseInt(_0x7e5448(0x159))/0x3*(-parseInt(_0x7e5448(0x15a))/0x4)+-parseInt(_0x7e5448(0x17c))/0x5*(parseInt(_0x7e5448(0x184))/0x6)+-parseInt(_0x7e5448(0x185))/0x7*(parseInt(_0x7e5448(0x182))/0x8)+-parseInt(_0x7e5448(0x15c))/0x9+parseInt(_0x7e5448(0x17f))/0xa+-parseInt(_0x7e5448(0x16b))/0xb*(parseInt(_0x7e5448(0x175))/0xc);if(_0x6805b8===_0x2a9c2c)break;else _0x386c44['push'](_0x386c44['shift']());}catch(_0x2df253){_0x386c44['push'](_0x386c44['shift']());}}}(_0x2f0d,0x78a2b));const e={'bases':{'bases':{'fieldType':{'text':_0x27feca(0x167),'singleSelect':'Single\x20Option','multiSelect':_0x27feca(0x169),'person':_0x27feca(0x15f),'group':_0x27feca(0x17a),'date':_0x27feca(0x174),'attachment':'Attachment','number':_0x27feca(0x164),'checkbox':_0x27feca(0x16e),'link':'Link','formula':_0x27feca(0x179),'lookup':_0x27feca(0x161),'flow':_0x27feca(0x162),'button':'Button','numbering':_0x27feca(0x171),'phone':_0x27feca(0x165),'email':'Email','location':_0x27feca(0x17e),'barcode':_0x27feca(0x181),'progress':_0x27feca(0x177),'currency':_0x27feca(0x15e),'rating':_0x27feca(0x17b),'twoWayLink':_0x27feca(0x173),'recordId':_0x27feca(0x15b),'createdBy':'Created\x20By','updatedBy':_0x27feca(0x166),'createdAt':_0x27feca(0x15d),'updatedAt':'Updated\x20At','summary':_0x27feca(0x16a)},'viewType':{'grid':'Grid','kanban':_0x27feca(0x16d),'calendar':'Calendar','gantt':_0x27feca(0x16f),'gallery':'Gallery'},'error':{'fieldNameRequired':_0x27feca(0x16c),'invalidFieldType':'Invalid\x20field\x20type','invalidCellValue':'Invalid\x20cell\x20value','invalidKanbanGroupField':_0x27feca(0x17d),'invalidCalendarDateField':_0x27feca(0x183),'invalidGanttDateField':'Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields'},'command':{'updateCell':_0x27feca(0x180),'createField':_0x27feca(0x170),'deleteField':_0x27feca(0x176),'createRecord':_0x27feca(0x178),'deleteRecord':_0x27feca(0x163),'updateViewConfig':_0x27feca(0x160)}}}['bases']};function _0x2a02(_0x229cef,_0x4f27ac){_0x229cef=_0x229cef-0x159;const _0x2f0d29=_0x2f0d();let _0x2a0229=_0x2f0d29[_0x229cef];return _0x2a0229;}export{e as default};
@@ -0,0 +1 @@
1
+ const _0x2abf90=_0x54fa;(function(_0x65fd36,_0x3ad1e7){const _0x5206d2=_0x54fa,_0x3c81bf=_0x65fd36();while(!![]){try{const _0x2f919a=parseInt(_0x5206d2(0x1df))/0x1*(parseInt(_0x5206d2(0x1e9))/0x2)+parseInt(_0x5206d2(0x1f8))/0x3+parseInt(_0x5206d2(0x1ee))/0x4+parseInt(_0x5206d2(0x1db))/0x5+parseInt(_0x5206d2(0x1f4))/0x6+-parseInt(_0x5206d2(0x1f1))/0x7+parseInt(_0x5206d2(0x203))/0x8*(-parseInt(_0x5206d2(0x1fd))/0x9);if(_0x2f919a===_0x3ad1e7)break;else _0x3c81bf['push'](_0x3c81bf['shift']());}catch(_0x398136){_0x3c81bf['push'](_0x3c81bf['shift']());}}}(_0x4356,0x39a00));const e={'bases':{'bases':{'fieldType':{'text':_0x2abf90(0x1f7),'singleSelect':_0x2abf90(0x1f6),'multiSelect':_0x2abf90(0x1eb),'person':_0x2abf90(0x1ed),'group':'Group','date':'Date','attachment':_0x2abf90(0x1e5),'number':_0x2abf90(0x1e1),'checkbox':_0x2abf90(0x1ff),'link':_0x2abf90(0x1e4),'formula':_0x2abf90(0x201),'lookup':_0x2abf90(0x1dd),'flow':_0x2abf90(0x1dc),'button':'Button','numbering':_0x2abf90(0x1fa),'phone':_0x2abf90(0x1f3),'email':'Email','location':_0x2abf90(0x1e7),'barcode':_0x2abf90(0x1fc),'progress':'Progress','currency':_0x2abf90(0x1f2),'rating':_0x2abf90(0x1de),'twoWayLink':'Two-way\x20Link','recordId':_0x2abf90(0x1fe),'createdBy':_0x2abf90(0x1fb),'updatedBy':_0x2abf90(0x1f9),'createdAt':_0x2abf90(0x1f0),'updatedAt':_0x2abf90(0x1e3),'summary':_0x2abf90(0x200)},'viewType':{'grid':_0x2abf90(0x202),'kanban':_0x2abf90(0x204),'calendar':_0x2abf90(0x205),'gantt':_0x2abf90(0x1ea),'gallery':'Gallery'},'error':{'fieldNameRequired':_0x2abf90(0x1f5),'invalidFieldType':'Invalid\x20field\x20type','invalidCellValue':'Invalid\x20cell\x20value','invalidKanbanGroupField':_0x2abf90(0x1e0),'invalidCalendarDateField':_0x2abf90(0x1e6),'invalidGanttDateField':_0x2abf90(0x1ec)},'command':{'updateCell':'Update\x20cell','createField':'Create\x20field','deleteField':'Delete\x20field','createRecord':_0x2abf90(0x1e2),'deleteRecord':'Delete\x20record','updateViewConfig':_0x2abf90(0x1ef)}}}[_0x2abf90(0x1e8)]};function _0x4356(){const _0x2c77b1=['Number','Create\x20record','Updated\x20At','Link','Attachment','Calendar\x20requires\x20a\x20date\x20field','Location','bases','8zqQhkB','Gantt','Multiple\x20Options','Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields','Person','1052092QwiOIO','Update\x20view\x20settings','Created\x20At','2071657QdMXMN','Currency','Phone\x20Number','100356GqTVMG','Field\x20title\x20is\x20required','Single\x20Option','Text','97734EMpaZy','Updated\x20By','Numbering','Created\x20By','Barcode','9jDlDYo','Record\x20ID','Checkbox','Summary','Formula','Grid','2005216nxSFZI','Kanban','Calendar','1430520xgnPph','Flow','Lookup','Rating','46051GQFuUz','Kanban\x20requires\x20a\x20groupable\x20field'];_0x4356=function(){return _0x2c77b1;};return _0x4356();}function _0x54fa(_0xaf35e4,_0x515a52){_0xaf35e4=_0xaf35e4-0x1db;const _0x435649=_0x4356();let _0x54faf7=_0x435649[_0xaf35e4];return _0x54faf7;}export{e as default};
@@ -0,0 +1 @@
1
+ const _0x11bd85=_0x2358;(function(_0x34b1cc,_0x46bb0b){const _0x74f4a2=_0x2358,_0x52fd33=_0x34b1cc();while(!![]){try{const _0x508847=parseInt(_0x74f4a2(0x1da))/0x1*(parseInt(_0x74f4a2(0x1f9))/0x2)+parseInt(_0x74f4a2(0x1f0))/0x3+parseInt(_0x74f4a2(0x1fa))/0x4*(-parseInt(_0x74f4a2(0x1ea))/0x5)+-parseInt(_0x74f4a2(0x1f2))/0x6*(parseInt(_0x74f4a2(0x1ef))/0x7)+parseInt(_0x74f4a2(0x1f4))/0x8*(-parseInt(_0x74f4a2(0x208))/0x9)+-parseInt(_0x74f4a2(0x1d9))/0xa*(parseInt(_0x74f4a2(0x1ee))/0xb)+-parseInt(_0x74f4a2(0x200))/0xc*(-parseInt(_0x74f4a2(0x201))/0xd);if(_0x508847===_0x46bb0b)break;else _0x52fd33['push'](_0x52fd33['shift']());}catch(_0x5293e1){_0x52fd33['push'](_0x52fd33['shift']());}}}(_0x5764,0x798dd));function _0x5764(){const _0x109687=['Formula','Gallery','26GTWiVb','8oILibP','Numbering','Delete\x20field','Currency','Kanban','Calendar','12ZJfMLN','11946831mnsHyy','Created\x20At','Barcode','Record\x20ID','Two-way\x20Link','Kanban\x20requires\x20a\x20groupable\x20field','Gantt\x20requires\x20start\x20and\x20end\x20date\x20fields','9vRmqYB','Grid','751130OomMWO','53563gswjDo','Link','bases','Single\x20Option','Invalid\x20cell\x20value','Update\x20view\x20settings','Group','Button','Updated\x20By','Create\x20field','Checkbox','Create\x20record','Calendar\x20requires\x20a\x20date\x20field','Rating','Invalid\x20field\x20type','Created\x20By','1493025bpNYVs','Delete\x20record','Date','Lookup','77ioJzJm','533813tJwRvi','1953936mJerXE','Multiple\x20Options','42aPfWdb','Number','895352FrvWDj','Text','Person'];_0x5764=function(){return _0x109687;};return _0x5764();}function _0x2358(_0x58a236,_0x3f25d6){_0x58a236=_0x58a236-0x1d9;const _0x57646a=_0x5764();let _0x23585c=_0x57646a[_0x58a236];return _0x23585c;}const e={'bases':{'bases':{'fieldType':{'text':_0x11bd85(0x1f5),'singleSelect':_0x11bd85(0x1dd),'multiSelect':_0x11bd85(0x1f1),'person':_0x11bd85(0x1f6),'group':_0x11bd85(0x1e0),'date':_0x11bd85(0x1ec),'attachment':'Attachment','number':_0x11bd85(0x1f3),'checkbox':_0x11bd85(0x1e4),'link':_0x11bd85(0x1db),'formula':_0x11bd85(0x1f7),'lookup':_0x11bd85(0x1ed),'flow':'Flow','button':_0x11bd85(0x1e1),'numbering':_0x11bd85(0x1fb),'phone':'Phone\x20Number','email':'Email','location':'Location','barcode':_0x11bd85(0x203),'progress':'Progress','currency':_0x11bd85(0x1fd),'rating':_0x11bd85(0x1e7),'twoWayLink':_0x11bd85(0x205),'recordId':_0x11bd85(0x204),'createdBy':_0x11bd85(0x1e9),'updatedBy':_0x11bd85(0x1e2),'createdAt':_0x11bd85(0x202),'updatedAt':'Updated\x20At','summary':'Summary'},'viewType':{'grid':_0x11bd85(0x209),'kanban':_0x11bd85(0x1fe),'calendar':_0x11bd85(0x1ff),'gantt':'Gantt','gallery':_0x11bd85(0x1f8)},'error':{'fieldNameRequired':'Field\x20title\x20is\x20required','invalidFieldType':_0x11bd85(0x1e8),'invalidCellValue':_0x11bd85(0x1de),'invalidKanbanGroupField':_0x11bd85(0x206),'invalidCalendarDateField':_0x11bd85(0x1e6),'invalidGanttDateField':_0x11bd85(0x207)},'command':{'updateCell':'Update\x20cell','createField':_0x11bd85(0x1e3),'deleteField':_0x11bd85(0x1fc),'createRecord':_0x11bd85(0x1e5),'deleteRecord':_0x11bd85(0x1eb),'updateViewConfig':_0x11bd85(0x1df)}}}[_0x11bd85(0x1dc)]};export{e as default};
@@ -0,0 +1 @@
1
+ function _0x5eac(_0x195fc0,_0x5d4c53){_0x195fc0=_0x195fc0-0x1ea;const _0x560b8c=_0x560b();let _0x5eac0b=_0x560b8c[_0x195fc0];return _0x5eac0b;}const _0x114a06=_0x5eac;function _0x560b(){const _0x44bb10=['1157106GsNweS','852DWQnzX','20960484utaMUT','Số\x20điện\x20thoại','Lưới','Nút','Tạo\x20trường','Một\x20lựa\x20chọn','Cập\x20nhật\x20cài\x20đặt\x20chế\x20độ\x20xem','Tóm\x20tắt','Văn\x20bản','7730KaIXfz','Công\x20thức','Loại\x20trường\x20không\x20hợp\x20lệ','Nhiều\x20lựa\x20chọn','Ngày','38079khqkjy','2434964KXtkte','Vị\x20trí','168knYYqC','Liên\x20kết','Gantt','Thư\x20viện','ID\x20bản\x20ghi','Cập\x20nhật\x20ô','242341wPPZct','Tệp\x20đính\x20kèm','8583QmzcFR','Tạo\x20bản\x20ghi','Tra\x20cứu','Xóa\x20bản\x20ghi','Kanban\x20cần\x20một\x20trường\x20có\x20thể\x20nhóm','10nEQItQ','230vkREHw','Người\x20tạo','77fjBBpm','Kanban','Lịch','Thời\x20gian\x20tạo','Nhóm','Tiến\x20độ','Người','Đánh\x20giá','Gantt\x20cần\x20trường\x20ngày\x20bắt\x20đầu\x20và\x20kết\x20thúc','Thời\x20gian\x20cập\x20nhật'];_0x560b=function(){return _0x44bb10;};return _0x560b();}(function(_0x33e9ce,_0x10bdd4){const _0x1e9895=_0x5eac,_0x42b08c=_0x33e9ce();while(!![]){try{const _0x3ee6ed=-parseInt(_0x1e9895(0x1ed))/0x1*(-parseInt(_0x1e9895(0x202))/0x2)+parseInt(_0x1e9895(0x212))/0x3*(parseInt(_0x1e9895(0x1f8))/0x4)+parseInt(_0x1e9895(0x1ea))/0x5*(parseInt(_0x1e9895(0x1f7))/0x6)+parseInt(_0x1e9895(0x208))/0x7+parseInt(_0x1e9895(0x20a))/0x8*(parseInt(_0x1e9895(0x207))/0x9)+parseInt(_0x1e9895(0x1eb))/0xa*(parseInt(_0x1e9895(0x210))/0xb)+-parseInt(_0x1e9895(0x1f9))/0xc;if(_0x3ee6ed===_0x10bdd4)break;else _0x42b08c['push'](_0x42b08c['shift']());}catch(_0x5ab66c){_0x42b08c['push'](_0x42b08c['shift']());}}}(_0x560b,0x777c1));const e={'bases':{'fieldType':{'text':_0x114a06(0x201),'singleSelect':_0x114a06(0x1fe),'multiSelect':_0x114a06(0x205),'person':_0x114a06(0x1f3),'group':_0x114a06(0x1f1),'date':_0x114a06(0x206),'attachment':_0x114a06(0x211),'number':'Số','checkbox':'Hộp\x20kiểm','link':_0x114a06(0x20b),'formula':_0x114a06(0x203),'lookup':_0x114a06(0x214),'flow':'Luồng','button':_0x114a06(0x1fc),'numbering':'Đánh\x20số','phone':_0x114a06(0x1fa),'email':'Email','location':_0x114a06(0x209),'barcode':'Mã\x20vạch','progress':_0x114a06(0x1f2),'currency':'Tiền\x20tệ','rating':_0x114a06(0x1f4),'twoWayLink':'Liên\x20kết\x20hai\x20chiều','recordId':_0x114a06(0x20e),'createdBy':_0x114a06(0x1ec),'updatedBy':'Người\x20cập\x20nhật','createdAt':_0x114a06(0x1f0),'updatedAt':_0x114a06(0x1f6),'summary':_0x114a06(0x200)},'viewType':{'grid':_0x114a06(0x1fb),'kanban':_0x114a06(0x1ee),'calendar':_0x114a06(0x1ef),'gantt':_0x114a06(0x20c),'gallery':_0x114a06(0x20d)},'error':{'fieldNameRequired':'Tiêu\x20đề\x20trường\x20là\x20bắt\x20buộc','invalidFieldType':_0x114a06(0x204),'invalidCellValue':'Giá\x20trị\x20ô\x20không\x20hợp\x20lệ','invalidKanbanGroupField':_0x114a06(0x216),'invalidCalendarDateField':'Lịch\x20cần\x20một\x20trường\x20ngày','invalidGanttDateField':_0x114a06(0x1f5)},'command':{'updateCell':_0x114a06(0x20f),'createField':_0x114a06(0x1fd),'deleteField':'Xóa\x20trường','createRecord':_0x114a06(0x213),'deleteRecord':_0x114a06(0x215),'updateViewConfig':_0x114a06(0x1ff)}}};export{e as default};
@@ -0,0 +1 @@
1
+ function _0xb978(_0x3b6066,_0x1ab786){_0x3b6066=_0x3b6066-0xa2;const _0x507d1c=_0x507d();let _0xb97837=_0x507d1c[_0x3b6066];return _0xb97837;}const _0x16d86e=_0xb978;(function(_0x3350b5,_0x126244){const _0x20d7ae=_0xb978,_0x302e6c=_0x3350b5();while(!![]){try{const _0x28dbdf=parseInt(_0x20d7ae(0xb2))/0x1+-parseInt(_0x20d7ae(0xb9))/0x2*(-parseInt(_0x20d7ae(0xab))/0x3)+-parseInt(_0x20d7ae(0xb1))/0x4+parseInt(_0x20d7ae(0xb8))/0x5+-parseInt(_0x20d7ae(0xb4))/0x6+-parseInt(_0x20d7ae(0xa3))/0x7+parseInt(_0x20d7ae(0xa7))/0x8;if(_0x28dbdf===_0x126244)break;else _0x302e6c['push'](_0x302e6c['shift']());}catch(_0x3cf307){_0x302e6c['push'](_0x302e6c['shift']());}}}(_0x507d,0x391a9));const e={'bases':{'fieldType':{'text':'文本','singleSelect':'单选','multiSelect':'多选','person':'人员','group':'分组','date':'日期','attachment':'附件','number':'数字','checkbox':_0x16d86e(0xb5),'link':'链接','formula':'公式','lookup':'查找','flow':'流程','button':'按钮','numbering':'编号','phone':_0x16d86e(0xb0),'email':'邮箱','location':'位置','barcode':'条码','progress':'进度','currency':'货币','rating':'评分','twoWayLink':_0x16d86e(0xb3),'recordId':_0x16d86e(0xaf),'createdBy':_0x16d86e(0xb6),'updatedBy':_0x16d86e(0xa9),'createdAt':_0x16d86e(0xa8),'updatedAt':'更新时间','summary':'汇总'},'viewType':{'grid':'表格','kanban':'看板','calendar':'日历','gantt':'甘特','gallery':'画廊'},'error':{'fieldNameRequired':_0x16d86e(0xa2),'invalidFieldType':_0x16d86e(0xac),'invalidCellValue':_0x16d86e(0xad),'invalidKanbanGroupField':_0x16d86e(0xaa),'invalidCalendarDateField':_0x16d86e(0xae),'invalidGanttDateField':_0x16d86e(0xa5)},'command':{'updateCell':'更新单元格','createField':_0x16d86e(0xba),'deleteField':_0x16d86e(0xa6),'createRecord':'创建记录','deleteRecord':_0x16d86e(0xb7),'updateViewConfig':_0x16d86e(0xa4)}}};export{e as default};function _0x507d(){const _0x31f3d0=['记录\x20ID','电话号码','513868WpEFGx','116117xriZPa','双向关联','375438cryYaZ','复选框','创建人','删除记录','1122845ijDIpC','3764rZXPCp','创建字段','字段标题不能为空','1930677rFayNE','更新视图设置','甘特视图需要开始和结束日期字段','删除字段','1841632iJMQbq','创建时间','修改人','看板需要可分组字段','207iteKql','字段类型无效','单元格值无效','日历需要日期字段'];_0x507d=function(){return _0x31f3d0;};return _0x507d();}
@@ -0,0 +1 @@
1
+ function _0x55b4(_0x2a501c,_0x4b53f0){_0x2a501c=_0x2a501c-0x1a6;const _0x2a6853=_0x2a68();let _0x55b4bc=_0x2a6853[_0x2a501c];return _0x55b4bc;}const _0x4e5fcc=_0x55b4;(function(_0x505105,_0x37c9f6){const _0x5a46c4=_0x55b4,_0x2f82fc=_0x505105();while(!![]){try{const _0x576c95=parseInt(_0x5a46c4(0x1aa))/0x1*(parseInt(_0x5a46c4(0x1bc))/0x2)+-parseInt(_0x5a46c4(0x1b4))/0x3*(parseInt(_0x5a46c4(0x1ad))/0x4)+parseInt(_0x5a46c4(0x1b9))/0x5*(-parseInt(_0x5a46c4(0x1ae))/0x6)+-parseInt(_0x5a46c4(0x1a8))/0x7+-parseInt(_0x5a46c4(0x1b1))/0x8+-parseInt(_0x5a46c4(0x1ac))/0x9+parseInt(_0x5a46c4(0x1ba))/0xa*(parseInt(_0x5a46c4(0x1bd))/0xb);if(_0x576c95===_0x37c9f6)break;else _0x2f82fc['push'](_0x2f82fc['shift']());}catch(_0x40c112){_0x2f82fc['push'](_0x2f82fc['shift']());}}}(_0x2a68,0x1a512));const e={'bases':{'fieldType':{'text':'文字','singleSelect':'單選','multiSelect':'多選','person':'人員','group':'群組','date':'日期','attachment':'附件','number':'數字','checkbox':_0x4e5fcc(0x1bf),'link':'連結','formula':'公式','lookup':'查找','flow':'流程','button':'按鈕','numbering':'編號','phone':_0x4e5fcc(0x1bb),'email':'電郵','location':'位置','barcode':'條碼','progress':'進度','currency':'貨幣','rating':'評分','twoWayLink':_0x4e5fcc(0x1b5),'recordId':'記錄\x20ID','createdBy':_0x4e5fcc(0x1b6),'updatedBy':'修改者','createdAt':_0x4e5fcc(0x1b0),'updatedAt':'更新時間','summary':'摘要'},'viewType':{'grid':'表格','kanban':'看板','calendar':'日曆','gantt':_0x4e5fcc(0x1b8),'gallery':'圖庫'},'error':{'fieldNameRequired':_0x4e5fcc(0x1ab),'invalidFieldType':_0x4e5fcc(0x1b7),'invalidCellValue':_0x4e5fcc(0x1b3),'invalidKanbanGroupField':_0x4e5fcc(0x1af),'invalidCalendarDateField':'日曆需要日期欄位','invalidGanttDateField':'甘特圖需要開始和結束日期欄位'},'command':{'updateCell':_0x4e5fcc(0x1a9),'createField':_0x4e5fcc(0x1a6),'deleteField':'刪除欄位','createRecord':_0x4e5fcc(0x1b2),'deleteRecord':_0x4e5fcc(0x1a7),'updateViewConfig':_0x4e5fcc(0x1be)}}};export{e as default};function _0x2a68(){const _0x40e537=['電話號碼','2Toghfe','629420GPxDEr','更新檢視設定','核取方塊','建立欄位','刪除記錄','975093uiBKjF','更新儲存格','124621MUeOzM','欄位標題為必填','1128222VtAyDQ','504PWOQCv','6XZAlSi','看板需要可分組欄位','建立時間','1282896bEXFIM','建立記錄','儲存格值無效','4098FLNxfN','雙向連結','建立者','欄位類型無效','甘特圖','531660xWUTDq','120yscYVI'];_0x2a68=function(){return _0x40e537;};return _0x2a68();}
@@ -0,0 +1 @@
1
+ const _0x96d310=_0x11c6;(function(_0x5b3c30,_0x59c07a){const _0x30c038=_0x11c6,_0x4a3e23=_0x5b3c30();while(!![]){try{const _0x4c12c4=-parseInt(_0x30c038(0x1a7))/0x1*(parseInt(_0x30c038(0x18e))/0x2)+-parseInt(_0x30c038(0x19a))/0x3*(parseInt(_0x30c038(0x1a2))/0x4)+-parseInt(_0x30c038(0x19f))/0x5+parseInt(_0x30c038(0x1a3))/0x6*(-parseInt(_0x30c038(0x194))/0x7)+parseInt(_0x30c038(0x1a1))/0x8+-parseInt(_0x30c038(0x19d))/0x9*(-parseInt(_0x30c038(0x190))/0xa)+parseInt(_0x30c038(0x1a9))/0xb;if(_0x4c12c4===_0x59c07a)break;else _0x4a3e23['push'](_0x4a3e23['shift']());}catch(_0x4d713f){_0x4a3e23['push'](_0x4a3e23['shift']());}}}(_0x4002,0x7292b));function _0x11c6(_0x264d4e,_0x5c41cb){_0x264d4e=_0x264d4e-0x18d;const _0x400213=_0x4002();let _0x11c6d5=_0x400213[_0x264d4e];return _0x11c6d5;}function _0x4002(){const _0x249ad3=['2727459gmZnFb','行事曆需要日期欄位','甘特圖需要開始和結束日期欄位','行事曆','刪除記錄','電子郵件','9dKUNNI','更新時間','建立欄位','1197cCJMWy','儲存格值無效','700495UTFPRS','欄位類型無效','1820640qQHLft','46652vFRgqX','12nmmONS','記錄\x20ID','雙向連結','更新檢視設定','14AYPhyr','看板需要可分組欄位','11937200tFQCQO','刪除欄位','電話號碼','109200SVGHei','修改者','65810dPSfJQ','建立時間','甘特圖','建立記錄'];_0x4002=function(){return _0x249ad3;};return _0x4002();}const e={'bases':{'fieldType':{'text':'文字','singleSelect':'單選','multiSelect':'多選','person':'人員','group':'群組','date':'日期','attachment':'附件','number':'數字','checkbox':'核取方塊','link':'連結','formula':'公式','lookup':'查找','flow':'流程','button':'按鈕','numbering':'編號','phone':_0x96d310(0x18d),'email':_0x96d310(0x199),'location':'位置','barcode':'條碼','progress':'進度','currency':'貨幣','rating':'評分','twoWayLink':_0x96d310(0x1a5),'recordId':_0x96d310(0x1a4),'createdBy':'建立者','updatedBy':_0x96d310(0x18f),'createdAt':_0x96d310(0x191),'updatedAt':_0x96d310(0x19b),'summary':'摘要'},'viewType':{'grid':'表格','kanban':'看板','calendar':_0x96d310(0x197),'gantt':_0x96d310(0x192),'gallery':'圖庫'},'error':{'fieldNameRequired':'欄位標題為必填','invalidFieldType':_0x96d310(0x1a0),'invalidCellValue':_0x96d310(0x19e),'invalidKanbanGroupField':_0x96d310(0x1a8),'invalidCalendarDateField':_0x96d310(0x195),'invalidGanttDateField':_0x96d310(0x196)},'command':{'updateCell':'更新儲存格','createField':_0x96d310(0x19c),'deleteField':_0x96d310(0x1aa),'createRecord':_0x96d310(0x193),'deleteRecord':_0x96d310(0x198),'updateViewConfig':_0x96d310(0x1a6)}}};export{e as default};
@@ -0,0 +1,32 @@
1
+ import type { BaseCellValue as CellValue, IBaseCellData, ICommand } from '@univerjs/core';
2
+ export interface IUpdateBaseCellCommandParams {
3
+ unitId: string;
4
+ tableId: string;
5
+ recordId: string;
6
+ fieldId: string;
7
+ value: CellValue;
8
+ }
9
+ export interface ISetBaseRecordValuesCommandParams {
10
+ unitId: string;
11
+ tableId: string;
12
+ patches: Array<{
13
+ recordId: string;
14
+ values: Record<string, CellValue>;
15
+ }>;
16
+ }
17
+ export interface ISetBaseRangeValuesCommandParams {
18
+ unitId: string;
19
+ tableId: string;
20
+ patches: Array<{
21
+ row: number;
22
+ col: number;
23
+ value: CellValue | IBaseCellData | null;
24
+ } | {
25
+ recordId: string;
26
+ fieldId: string;
27
+ value: CellValue | IBaseCellData | null;
28
+ }>;
29
+ }
30
+ export declare const UpdateBaseCellCommand: ICommand<IUpdateBaseCellCommandParams>;
31
+ export declare const SetBaseRecordValuesCommand: ICommand<ISetBaseRecordValuesCommandParams>;
32
+ export declare const SetBaseRangeValuesCommand: ICommand<ISetBaseRangeValuesCommandParams>;
@@ -0,0 +1,53 @@
1
+ import type { ICommand, IFieldSnapshot } from '@univerjs/core';
2
+ export interface ICreateBaseFieldCommandParams {
3
+ unitId: string;
4
+ tableId: string;
5
+ field: IFieldSnapshot;
6
+ index?: number;
7
+ }
8
+ export declare const CreateBaseFieldCommand: ICommand<ICreateBaseFieldCommandParams>;
9
+ export interface IUpdateBaseFieldCommandParams {
10
+ unitId: string;
11
+ tableId: string;
12
+ fieldId: string;
13
+ patch: Partial<IFieldSnapshot>;
14
+ }
15
+ export interface IChangeBaseFieldTypeCommandParams {
16
+ unitId: string;
17
+ tableId: string;
18
+ fieldId: string;
19
+ input: Pick<IFieldSnapshot, 'type' | 'config'>;
20
+ }
21
+ export interface IDuplicateBaseFieldCommandParams {
22
+ unitId: string;
23
+ tableId: string;
24
+ sourceFieldId: string;
25
+ field: IFieldSnapshot;
26
+ index?: number;
27
+ }
28
+ export interface IUpdateBaseFieldDescriptionCommandParams {
29
+ unitId: string;
30
+ tableId: string;
31
+ fieldId: string;
32
+ description: string;
33
+ }
34
+ export interface IDeleteBaseFieldCommandParams {
35
+ unitId: string;
36
+ tableId: string;
37
+ fieldId: string;
38
+ }
39
+ export interface IMoveBaseFieldCommandParams {
40
+ unitId: string;
41
+ tableId: string;
42
+ fieldId: string;
43
+ target: {
44
+ beforeFieldId?: string;
45
+ afterFieldId?: string;
46
+ };
47
+ }
48
+ export declare const UpdateBaseFieldCommand: ICommand<IUpdateBaseFieldCommandParams>;
49
+ export declare const DuplicateBaseFieldCommand: ICommand<IDuplicateBaseFieldCommandParams>;
50
+ export declare const UpdateBaseFieldDescriptionCommand: ICommand<IUpdateBaseFieldDescriptionCommandParams>;
51
+ export declare const ChangeBaseFieldTypeCommand: ICommand<IChangeBaseFieldTypeCommandParams>;
52
+ export declare const DeleteBaseFieldCommand: ICommand<IDeleteBaseFieldCommandParams>;
53
+ export declare const MoveBaseFieldCommand: ICommand<IMoveBaseFieldCommandParams>;
@@ -0,0 +1,39 @@
1
+ import type { ICommand, IRecordSnapshot } from '@univerjs/core';
2
+ export interface ICreateBaseRecordCommandParams {
3
+ unitId: string;
4
+ tableId: string;
5
+ record: IRecordSnapshot;
6
+ }
7
+ export interface IBatchCreateBaseRecordsCommandParams {
8
+ unitId: string;
9
+ tableId: string;
10
+ records: IRecordSnapshot[];
11
+ }
12
+ export interface IDeleteBaseRecordCommandParams {
13
+ unitId: string;
14
+ tableId: string;
15
+ recordId: string;
16
+ }
17
+ export interface IBatchDeleteBaseRecordsCommandParams {
18
+ unitId: string;
19
+ tableId: string;
20
+ recordIds: string[];
21
+ }
22
+ export interface IDuplicateBaseRecordCommandParams {
23
+ unitId: string;
24
+ tableId: string;
25
+ sourceRecordId: string;
26
+ record: IRecordSnapshot;
27
+ }
28
+ export interface IUpdateBaseRecordOrderCommandParams {
29
+ unitId: string;
30
+ tableId: string;
31
+ recordId: string;
32
+ orderKey: string;
33
+ }
34
+ export declare const CreateBaseRecordCommand: ICommand<ICreateBaseRecordCommandParams>;
35
+ export declare const BatchCreateBaseRecordsCommand: ICommand<IBatchCreateBaseRecordsCommandParams>;
36
+ export declare const DeleteBaseRecordCommand: ICommand<IDeleteBaseRecordCommandParams>;
37
+ export declare const BatchDeleteBaseRecordsCommand: ICommand<IBatchDeleteBaseRecordsCommandParams>;
38
+ export declare const DuplicateBaseRecordCommand: ICommand<IDuplicateBaseRecordCommandParams>;
39
+ export declare const UpdateBaseRecordOrderCommand: ICommand<IUpdateBaseRecordOrderCommandParams>;
@@ -0,0 +1,18 @@
1
+ import type { ICommand, ITableSnapshot } from '@univerjs/core';
2
+ export interface ICreateBaseTableCommandParams {
3
+ unitId: string;
4
+ table: ITableSnapshot;
5
+ index?: number;
6
+ }
7
+ export interface IRenameBaseTableCommandParams {
8
+ unitId: string;
9
+ tableId: string;
10
+ name: string;
11
+ }
12
+ export interface IDeleteBaseTableCommandParams {
13
+ unitId: string;
14
+ tableId: string;
15
+ }
16
+ export declare const CreateBaseTableCommand: ICommand<ICreateBaseTableCommandParams>;
17
+ export declare const RenameBaseTableCommand: ICommand<IRenameBaseTableCommandParams>;
18
+ export declare const DeleteBaseTableCommand: ICommand<IDeleteBaseTableCommandParams>;
@@ -0,0 +1,2 @@
1
+ import type { BaseDataModel, IAccessor, JSONXActions } from '@univerjs/core';
2
+ export declare function executeBaseUndoableMutation(accessor: IAccessor, unitId: string, createRedoOp: (base: BaseDataModel) => JSONXActions): boolean;
@@ -0,0 +1,107 @@
1
+ import type { FilterConfig, GroupConfig, ICommand, IViewSnapshot, SortConfig } from '@univerjs/core';
2
+ export interface ISetBaseViewFieldVisibleCommandParams {
3
+ unitId: string;
4
+ tableId: string;
5
+ viewId: string;
6
+ fieldId: string;
7
+ visible: boolean;
8
+ }
9
+ export declare const SetBaseViewFieldVisibleCommand: ICommand<ISetBaseViewFieldVisibleCommandParams>;
10
+ export interface ICreateBaseViewCommandParams {
11
+ unitId: string;
12
+ tableId: string;
13
+ view: IViewSnapshot;
14
+ index?: number;
15
+ }
16
+ export interface IRenameBaseViewCommandParams {
17
+ unitId: string;
18
+ tableId: string;
19
+ viewId: string;
20
+ name: string;
21
+ }
22
+ export interface IDeleteBaseViewCommandParams {
23
+ unitId: string;
24
+ tableId: string;
25
+ viewId: string;
26
+ }
27
+ export interface IMoveBaseViewCommandParams {
28
+ unitId: string;
29
+ tableId: string;
30
+ viewId: string;
31
+ target: {
32
+ beforeViewId?: string;
33
+ afterViewId?: string;
34
+ };
35
+ }
36
+ export interface IUpdateBaseViewConfigCommandParams {
37
+ unitId: string;
38
+ tableId: string;
39
+ viewId: string;
40
+ patch: Record<string, unknown>;
41
+ }
42
+ export interface ISetBaseKanbanGroupFieldCommandParams {
43
+ unitId: string;
44
+ tableId: string;
45
+ viewId: string;
46
+ fieldId: string;
47
+ }
48
+ export interface IUpdateBaseKanbanConfigCommandParams {
49
+ unitId: string;
50
+ tableId: string;
51
+ viewId: string;
52
+ patch: Record<string, unknown>;
53
+ }
54
+ export interface IEnsureBaseTemporalViewDateFieldsCommandParams {
55
+ unitId: string;
56
+ tableId: string;
57
+ viewId: string;
58
+ ensureEndDateField?: boolean;
59
+ }
60
+ export interface ISetBaseViewFilterCommandParams {
61
+ unitId: string;
62
+ tableId: string;
63
+ viewId: string;
64
+ filter: FilterConfig | null;
65
+ }
66
+ export interface ISetBaseViewSortCommandParams {
67
+ unitId: string;
68
+ tableId: string;
69
+ viewId: string;
70
+ sort: SortConfig[];
71
+ }
72
+ export interface ISetBaseViewGroupCommandParams {
73
+ unitId: string;
74
+ tableId: string;
75
+ viewId: string;
76
+ group: GroupConfig[];
77
+ }
78
+ export interface ISetBaseViewFieldWidthCommandParams {
79
+ unitId: string;
80
+ tableId: string;
81
+ viewId: string;
82
+ fieldId: string;
83
+ width: number;
84
+ }
85
+ export interface ISetBaseViewFieldOrderCommandParams {
86
+ unitId: string;
87
+ tableId: string;
88
+ viewId: string;
89
+ fieldId: string;
90
+ target: {
91
+ beforeFieldId?: string;
92
+ afterFieldId?: string;
93
+ };
94
+ }
95
+ export declare const CreateBaseViewCommand: ICommand<ICreateBaseViewCommandParams>;
96
+ export declare const RenameBaseViewCommand: ICommand<IRenameBaseViewCommandParams>;
97
+ export declare const DeleteBaseViewCommand: ICommand<IDeleteBaseViewCommandParams>;
98
+ export declare const MoveBaseViewCommand: ICommand<IMoveBaseViewCommandParams>;
99
+ export declare const UpdateBaseViewConfigCommand: ICommand<IUpdateBaseViewConfigCommandParams>;
100
+ export declare const SetBaseKanbanGroupFieldCommand: ICommand<ISetBaseKanbanGroupFieldCommandParams>;
101
+ export declare const UpdateBaseKanbanConfigCommand: ICommand<IUpdateBaseKanbanConfigCommandParams>;
102
+ export declare const EnsureBaseTemporalViewDateFieldsCommand: ICommand<IEnsureBaseTemporalViewDateFieldsCommandParams>;
103
+ export declare const SetBaseViewFilterCommand: ICommand<ISetBaseViewFilterCommandParams>;
104
+ export declare const SetBaseViewSortCommand: ICommand<ISetBaseViewSortCommandParams>;
105
+ export declare const SetBaseViewGroupCommand: ICommand<ISetBaseViewGroupCommandParams>;
106
+ export declare const SetBaseViewFieldWidthCommand: ICommand<ISetBaseViewFieldWidthCommandParams>;
107
+ export declare const SetBaseViewFieldOrderCommand: ICommand<ISetBaseViewFieldOrderCommandParams>;
@@ -0,0 +1,16 @@
1
+ import { Disposable, Injector, IUniverInstanceService } from '@univerjs/core';
2
+ export declare class BaseActiveDirtyController extends Disposable {
3
+ private readonly _injector;
4
+ private readonly _univerInstanceService;
5
+ constructor(_injector: Injector, _univerInstanceService: IUniverInstanceService);
6
+ private _initialize;
7
+ private _getActiveDirtyManagerService;
8
+ private _getTable;
9
+ private _getJson1DirtyData;
10
+ private _getStructureDirtyTableIds;
11
+ private _groupCellInvalidations;
12
+ private _toDirtyRangePatch;
13
+ private _getAllTableIds;
14
+ private _getDirtySuperTableMap;
15
+ private _getAllBaseDirtySuperTableMap;
16
+ }
@@ -0,0 +1,23 @@
1
+ import { Disposable, ICommandService, Injector, IUniverInstanceService } from '@univerjs/core';
2
+ export declare class BaseFormulaCalculationController extends Disposable {
3
+ private readonly _injector;
4
+ private readonly _commandService;
5
+ private readonly _univerInstanceService;
6
+ private readonly _formulaService;
7
+ private _applyingFormulaResults;
8
+ constructor(_injector: Injector, _commandService: ICommandService, _univerInstanceService: IUniverInstanceService);
9
+ private _initialize;
10
+ private _onCommandExecuted;
11
+ private _shouldSyncFormulaData;
12
+ private _registerSuperTables;
13
+ private _requestCalculation;
14
+ private _syncFormulaData;
15
+ private _applyFormulaResult;
16
+ private _getSuperTableService;
17
+ private _createDirtyData;
18
+ private _createJson1DirtyData;
19
+ private _getStructureDirtyTableIds;
20
+ private _groupCellInvalidations;
21
+ private _toDirtyRangePatch;
22
+ private _createStructureDirtyData;
23
+ }
@@ -0,0 +1 @@
1
+ export declare function createBaseOptionalFormulaIdentifier<T>(id: string): import("@wendellhu/redi").IdentifierDecorator<T>;
@@ -0,0 +1,13 @@
1
+ import type { ISuperTableService as ISuperTableServiceType } from '@univerjs-pro/engine-formula';
2
+ import { Disposable, ICommandService, IUniverInstanceService } from '@univerjs/core';
3
+ export declare class BaseRemoteFormulaController extends Disposable {
4
+ private readonly _commandService;
5
+ private readonly _univerInstanceService;
6
+ private readonly _superTableService?;
7
+ private readonly _formulaService;
8
+ constructor(_commandService: ICommandService, _univerInstanceService: IUniverInstanceService, _superTableService?: ISuperTableServiceType | undefined);
9
+ private _initialize;
10
+ private _onCommandExecuted;
11
+ private _shouldRefreshSuperTables;
12
+ private _registerSuperTables;
13
+ }