@fibery/views 17.0.4 → 18.0.2

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 (236) hide show
  1. package/lib/index.js +17 -0
  2. package/lib/jest.config.d.ts +2 -0
  3. package/lib/jest.config.js +33 -0
  4. package/lib/src/field-utils/avatar.d.ts +20 -0
  5. package/lib/src/field-utils/avatar.js +42 -0
  6. package/lib/src/field-utils/back-references.d.ts +15 -0
  7. package/lib/src/field-utils/back-references.js +21 -0
  8. package/lib/src/field-utils/comments.d.ts +60 -0
  9. package/lib/src/field-utils/comments.js +46 -0
  10. package/lib/src/field-utils/date-time.d.ts +14 -0
  11. package/lib/src/field-utils/date-time.js +56 -0
  12. package/lib/src/field-utils/enum-value.d.ts +13 -0
  13. package/lib/src/field-utils/enum-value.js +29 -0
  14. package/lib/src/field-utils/file.d.ts +4 -0
  15. package/lib/src/field-utils/file.js +18 -0
  16. package/lib/src/field-utils/icon.d.ts +10 -0
  17. package/lib/src/field-utils/icon.js +26 -0
  18. package/lib/src/field-utils/number.d.ts +31 -0
  19. package/lib/src/field-utils/number.js +91 -0
  20. package/lib/src/field-utils/reference-collection.d.ts +18 -0
  21. package/lib/src/field-utils/reference-collection.js +45 -0
  22. package/lib/src/field-utils/reference.d.ts +7 -0
  23. package/lib/src/field-utils/reference.js +57 -0
  24. package/lib/src/field-utils/relation-view.d.ts +2 -0
  25. package/lib/src/field-utils/relation-view.js +12 -0
  26. package/lib/src/field-utils/rich-text.d.ts +12 -0
  27. package/lib/src/field-utils/rich-text.js +27 -0
  28. package/lib/src/field-utils/text.d.ts +35 -0
  29. package/lib/src/field-utils/text.js +40 -0
  30. package/lib/src/field-utils/user-active.d.ts +8 -0
  31. package/lib/src/field-utils/user-active.js +28 -0
  32. package/lib/src/field-utils/user-role.d.ts +6 -0
  33. package/lib/src/field-utils/user-role.js +25 -0
  34. package/lib/src/field-utils/workflow.d.ts +15 -0
  35. package/lib/src/field-utils/workflow.js +56 -0
  36. package/lib/src/index.d.ts +16 -0
  37. package/lib/src/index.js +258 -0
  38. package/lib/src/private/board.d.ts +11 -0
  39. package/lib/src/private/board.js +326 -0
  40. package/lib/src/private/calendar.d.ts +10 -0
  41. package/lib/src/private/calendar.js +122 -0
  42. package/lib/src/private/feed.d.ts +10 -0
  43. package/lib/src/private/feed.js +119 -0
  44. package/lib/src/private/form.d.ts +3 -0
  45. package/lib/src/private/form.js +61 -0
  46. package/lib/src/private/map.d.ts +10 -0
  47. package/lib/src/private/map.js +119 -0
  48. package/lib/src/private/smart-folder.d.ts +23 -0
  49. package/lib/src/private/smart-folder.js +274 -0
  50. package/lib/src/private/test-data/garbage-test.d.ts +649 -0
  51. package/lib/src/private/test-data/garbage-test.js +520 -0
  52. package/lib/src/private/test-data/kanban.d.ts +1123 -0
  53. package/lib/src/private/test-data/kanban.js +1203 -0
  54. package/lib/src/private/test-data/tasks.d.ts +3216 -0
  55. package/lib/src/private/test-data/tasks.js +2731 -0
  56. package/lib/src/private/timeline.d.ts +10 -0
  57. package/lib/src/private/timeline.js +323 -0
  58. package/lib/src/private/units.d.ts +6 -0
  59. package/lib/src/private/units.js +144 -0
  60. package/lib/src/private/utils.d.ts +17 -0
  61. package/lib/src/private/utils.js +267 -0
  62. package/lib/src/tsfixme.d.ts +1 -0
  63. package/lib/src/tsfixme.js +2 -0
  64. package/lib/src/unit-definitions/avatar-collection.d.ts +2 -0
  65. package/lib/src/unit-definitions/avatar-collection.js +53 -0
  66. package/lib/src/unit-definitions/avatar-input.d.ts +2 -0
  67. package/lib/src/unit-definitions/avatar-input.js +12 -0
  68. package/lib/src/unit-definitions/avatar.d.ts +2 -0
  69. package/lib/src/unit-definitions/avatar.js +80 -0
  70. package/lib/src/unit-definitions/back-references-list.d.ts +2 -0
  71. package/lib/src/unit-definitions/back-references-list.js +38 -0
  72. package/lib/src/unit-definitions/bool-checkbox.d.ts +2 -0
  73. package/lib/src/unit-definitions/bool-checkbox.js +25 -0
  74. package/lib/src/unit-definitions/bool.d.ts +2 -0
  75. package/lib/src/unit-definitions/bool.js +22 -0
  76. package/lib/src/unit-definitions/collection-count.d.ts +2 -0
  77. package/lib/src/unit-definitions/collection-count.js +32 -0
  78. package/lib/src/unit-definitions/color-input.d.ts +2 -0
  79. package/lib/src/unit-definitions/color-input.js +21 -0
  80. package/lib/src/unit-definitions/comments-list.d.ts +2 -0
  81. package/lib/src/unit-definitions/comments-list.js +25 -0
  82. package/lib/src/unit-definitions/date-range-combobox.d.ts +2 -0
  83. package/lib/src/unit-definitions/date-range-combobox.js +22 -0
  84. package/lib/src/unit-definitions/date-range.d.ts +2 -0
  85. package/lib/src/unit-definitions/date-range.js +22 -0
  86. package/lib/src/unit-definitions/date-time-combobox.d.ts +2 -0
  87. package/lib/src/unit-definitions/date-time-combobox.js +22 -0
  88. package/lib/src/unit-definitions/date.d.ts +2 -0
  89. package/lib/src/unit-definitions/date.js +22 -0
  90. package/lib/src/unit-definitions/email-input.d.ts +2 -0
  91. package/lib/src/unit-definitions/email-input.js +12 -0
  92. package/lib/src/unit-definitions/email.d.ts +2 -0
  93. package/lib/src/unit-definitions/email.js +17 -0
  94. package/lib/src/unit-definitions/emoji.d.ts +2 -0
  95. package/lib/src/unit-definitions/emoji.js +17 -0
  96. package/lib/src/unit-definitions/file-collection-count.d.ts +2 -0
  97. package/lib/src/unit-definitions/file-collection-count.js +30 -0
  98. package/lib/src/unit-definitions/file-compact-collection.d.ts +2 -0
  99. package/lib/src/unit-definitions/file-compact-collection.js +30 -0
  100. package/lib/src/unit-definitions/file-compact-reference.d.ts +2 -0
  101. package/lib/src/unit-definitions/file-compact-reference.js +36 -0
  102. package/lib/src/unit-definitions/file-reference.d.ts +2 -0
  103. package/lib/src/unit-definitions/file-reference.js +26 -0
  104. package/lib/src/unit-definitions/files-gallery.d.ts +2 -0
  105. package/lib/src/unit-definitions/files-gallery.js +30 -0
  106. package/lib/src/unit-definitions/files-l-list-item.d.ts +2 -0
  107. package/lib/src/unit-definitions/files-l-list-item.js +26 -0
  108. package/lib/src/unit-definitions/files-l-list.d.ts +2 -0
  109. package/lib/src/unit-definitions/files-l-list.js +30 -0
  110. package/lib/src/unit-definitions/files-list-item.d.ts +2 -0
  111. package/lib/src/unit-definitions/files-list-item.js +26 -0
  112. package/lib/src/unit-definitions/files-list.d.ts +2 -0
  113. package/lib/src/unit-definitions/files-list.js +30 -0
  114. package/lib/src/unit-definitions/geometry-preview.d.ts +2 -0
  115. package/lib/src/unit-definitions/geometry-preview.js +17 -0
  116. package/lib/src/unit-definitions/icon-button.d.ts +2 -0
  117. package/lib/src/unit-definitions/icon-button.js +29 -0
  118. package/lib/src/unit-definitions/icon-input.d.ts +2 -0
  119. package/lib/src/unit-definitions/icon-input.js +12 -0
  120. package/lib/src/unit-definitions/id.d.ts +2 -0
  121. package/lib/src/unit-definitions/id.js +29 -0
  122. package/lib/src/unit-definitions/index.d.ts +27 -0
  123. package/lib/src/unit-definitions/index.js +57 -0
  124. package/lib/src/unit-definitions/json-input.d.ts +2 -0
  125. package/lib/src/unit-definitions/json-input.js +21 -0
  126. package/lib/src/unit-definitions/location-input.d.ts +2 -0
  127. package/lib/src/unit-definitions/location-input.js +18 -0
  128. package/lib/src/unit-definitions/location.d.ts +2 -0
  129. package/lib/src/unit-definitions/location.js +17 -0
  130. package/lib/src/unit-definitions/not-found.d.ts +2 -0
  131. package/lib/src/unit-definitions/not-found.js +24 -0
  132. package/lib/src/unit-definitions/number-input.d.ts +2 -0
  133. package/lib/src/unit-definitions/number-input.js +22 -0
  134. package/lib/src/unit-definitions/number.d.ts +2 -0
  135. package/lib/src/unit-definitions/number.js +27 -0
  136. package/lib/src/unit-definitions/phone-input.d.ts +2 -0
  137. package/lib/src/unit-definitions/phone-input.js +12 -0
  138. package/lib/src/unit-definitions/phone.d.ts +2 -0
  139. package/lib/src/unit-definitions/phone.js +12 -0
  140. package/lib/src/unit-definitions/progress-bar.d.ts +2 -0
  141. package/lib/src/unit-definitions/progress-bar.js +32 -0
  142. package/lib/src/unit-definitions/reference-collection-combobox.d.ts +2 -0
  143. package/lib/src/unit-definitions/reference-collection-combobox.js +21 -0
  144. package/lib/src/unit-definitions/reference-collection-list.d.ts +2 -0
  145. package/lib/src/unit-definitions/reference-collection-list.js +22 -0
  146. package/lib/src/unit-definitions/reference-collection-view.d.ts +2 -0
  147. package/lib/src/unit-definitions/reference-collection-view.js +19 -0
  148. package/lib/src/unit-definitions/reference-collection.d.ts +2 -0
  149. package/lib/src/unit-definitions/reference-collection.js +27 -0
  150. package/lib/src/unit-definitions/reference-combobox.d.ts +2 -0
  151. package/lib/src/unit-definitions/reference-combobox.js +21 -0
  152. package/lib/src/unit-definitions/reference-icon.d.ts +2 -0
  153. package/lib/src/unit-definitions/reference-icon.js +12 -0
  154. package/lib/src/unit-definitions/reference.d.ts +2 -0
  155. package/lib/src/unit-definitions/reference.js +49 -0
  156. package/lib/src/unit-definitions/rich-text-document.d.ts +2 -0
  157. package/lib/src/unit-definitions/rich-text-document.js +22 -0
  158. package/lib/src/unit-definitions/rich-text-snippet.d.ts +2 -0
  159. package/lib/src/unit-definitions/rich-text-snippet.js +39 -0
  160. package/lib/src/unit-definitions/single-location-preview.d.ts +2 -0
  161. package/lib/src/unit-definitions/single-location-preview.js +17 -0
  162. package/lib/src/unit-definitions/text-input.d.ts +2 -0
  163. package/lib/src/unit-definitions/text-input.js +22 -0
  164. package/lib/src/unit-definitions/text.d.ts +2 -0
  165. package/lib/src/unit-definitions/text.js +22 -0
  166. package/lib/src/unit-definitions/title-input.d.ts +2 -0
  167. package/lib/src/unit-definitions/title-input.js +16 -0
  168. package/lib/src/unit-definitions/title.d.ts +2 -0
  169. package/lib/src/unit-definitions/title.js +34 -0
  170. package/lib/src/unit-definitions/type-badge-abbr.d.ts +2 -0
  171. package/lib/src/unit-definitions/type-badge-abbr.js +25 -0
  172. package/lib/src/unit-definitions/type-badge.d.ts +2 -0
  173. package/lib/src/unit-definitions/type-badge.js +25 -0
  174. package/lib/src/unit-definitions/type-icon.d.ts +2 -0
  175. package/lib/src/unit-definitions/type-icon.js +25 -0
  176. package/lib/src/unit-definitions/url-input.d.ts +2 -0
  177. package/lib/src/unit-definitions/url-input.js +12 -0
  178. package/lib/src/unit-definitions/url.d.ts +2 -0
  179. package/lib/src/unit-definitions/url.js +17 -0
  180. package/lib/src/unit-definitions/user-button.d.ts +2 -0
  181. package/lib/src/unit-definitions/user-button.js +23 -0
  182. package/lib/src/unit-definitions/user-role-input.d.ts +2 -0
  183. package/lib/src/unit-definitions/user-role-input.js +12 -0
  184. package/lib/src/unit-definitions/user-role.d.ts +2 -0
  185. package/lib/src/unit-definitions/user-role.js +29 -0
  186. package/lib/src/unit-utils/access.d.ts +9 -0
  187. package/lib/src/unit-utils/access.js +14 -0
  188. package/lib/src/unit-utils/can-edit-field.d.ts +6 -0
  189. package/lib/src/unit-utils/can-edit-field.js +8 -0
  190. package/lib/src/unit-utils/common.d.ts +14 -0
  191. package/lib/src/unit-utils/common.js +43 -0
  192. package/lib/src/unit-utils/decimal.d.ts +42 -0
  193. package/lib/src/unit-utils/decimal.js +414 -0
  194. package/lib/src/unit-utils/dynamic-keys.d.ts +7 -0
  195. package/lib/src/unit-utils/dynamic-keys.js +13 -0
  196. package/lib/src/unit-utils/enums.d.ts +27 -0
  197. package/lib/src/unit-utils/enums.js +69 -0
  198. package/lib/src/unit-utils/formatters.d.ts +50 -0
  199. package/lib/src/unit-utils/formatters.js +163 -0
  200. package/lib/src/unit-utils/get-export-value.d.ts +45 -0
  201. package/lib/src/unit-utils/get-export-value.js +83 -0
  202. package/lib/src/unit-utils/get-field-label.d.ts +6 -0
  203. package/lib/src/unit-utils/get-field-label.js +10 -0
  204. package/lib/src/unit-utils/get-unmatched-unit-label.d.ts +2 -0
  205. package/lib/src/unit-utils/get-unmatched-unit-label.js +9 -0
  206. package/lib/src/unit-utils/schema.d.ts +4 -0
  207. package/lib/src/unit-utils/schema.js +12 -0
  208. package/lib/src/units/board.d.ts +43 -0
  209. package/lib/src/units/board.js +51 -0
  210. package/lib/src/units/canvas/all-units-data-definitions.d.ts +18 -0
  211. package/lib/src/units/canvas/all-units-data-definitions.js +40 -0
  212. package/lib/src/units/canvas/index.d.ts +42 -0
  213. package/lib/src/units/canvas/index.js +48 -0
  214. package/lib/src/units/canvas/type-badge-abbr.d.ts +36 -0
  215. package/lib/src/units/canvas/type-badge-abbr.js +11 -0
  216. package/lib/src/units/canvas/type-badge.d.ts +36 -0
  217. package/lib/src/units/canvas/type-badge.js +11 -0
  218. package/lib/src/units/default.d.ts +43 -0
  219. package/lib/src/units/default.js +51 -0
  220. package/lib/src/units/gallery.d.ts +3 -0
  221. package/lib/src/units/gallery.js +18 -0
  222. package/lib/src/units/gantt.d.ts +44 -0
  223. package/lib/src/units/gantt.js +59 -0
  224. package/lib/src/units/get-unit-definitions-for-view-type.d.ts +2 -0
  225. package/lib/src/units/get-unit-definitions-for-view-type.js +64 -0
  226. package/lib/src/units/grid.d.ts +42 -0
  227. package/lib/src/units/grid.js +67 -0
  228. package/lib/src/units/list.d.ts +43 -0
  229. package/lib/src/units/list.js +49 -0
  230. package/lib/src/units/make-factory.d.ts +50 -0
  231. package/lib/src/units/make-factory.js +245 -0
  232. package/lib/src/units/types.d.ts +73 -0
  233. package/lib/src/units/types.js +2 -0
  234. package/package.json +42 -52
  235. package/lib/views.js +0 -1813
  236. /package/{index.js → lib/index.d.ts} +0 -0
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FileCollectionCount = exports.UserRole = exports.UserButton = exports.Url = exports.TypeIcon = exports.TypeBadge = exports.TypeBadgeAbbr = exports.Title = exports.Text = exports.RichTextSnippet = exports.Reference = exports.ReferenceIcon = exports.ReferenceCollection = exports.ProgressBar = exports.Phone = exports.Number = exports.Location = exports.Id = exports.IconButton = exports.Emoji = exports.Email = exports.DateRange = exports.Date = exports.CollectionCount = exports.Bool = exports.Avatar = exports.AvatarCollection = void 0;
4
+ var avatar_collection_1 = require("./avatar-collection");
5
+ Object.defineProperty(exports, "AvatarCollection", { enumerable: true, get: function () { return avatar_collection_1.AvatarCollection; } });
6
+ var avatar_1 = require("./avatar");
7
+ Object.defineProperty(exports, "Avatar", { enumerable: true, get: function () { return avatar_1.Avatar; } });
8
+ var bool_1 = require("./bool");
9
+ Object.defineProperty(exports, "Bool", { enumerable: true, get: function () { return bool_1.Bool; } });
10
+ var collection_count_1 = require("./collection-count");
11
+ Object.defineProperty(exports, "CollectionCount", { enumerable: true, get: function () { return collection_count_1.CollectionCount; } });
12
+ var date_1 = require("./date");
13
+ Object.defineProperty(exports, "Date", { enumerable: true, get: function () { return date_1.Date; } });
14
+ var date_range_1 = require("./date-range");
15
+ Object.defineProperty(exports, "DateRange", { enumerable: true, get: function () { return date_range_1.DateRange; } });
16
+ var email_1 = require("./email");
17
+ Object.defineProperty(exports, "Email", { enumerable: true, get: function () { return email_1.Email; } });
18
+ var emoji_1 = require("./emoji");
19
+ Object.defineProperty(exports, "Emoji", { enumerable: true, get: function () { return emoji_1.Emoji; } });
20
+ var icon_button_1 = require("./icon-button");
21
+ Object.defineProperty(exports, "IconButton", { enumerable: true, get: function () { return icon_button_1.IconButton; } });
22
+ var id_1 = require("./id");
23
+ Object.defineProperty(exports, "Id", { enumerable: true, get: function () { return id_1.Id; } });
24
+ var location_1 = require("./location");
25
+ Object.defineProperty(exports, "Location", { enumerable: true, get: function () { return location_1.Location; } });
26
+ var number_1 = require("./number");
27
+ Object.defineProperty(exports, "Number", { enumerable: true, get: function () { return number_1.Number; } });
28
+ var phone_1 = require("./phone");
29
+ Object.defineProperty(exports, "Phone", { enumerable: true, get: function () { return phone_1.Phone; } });
30
+ var progress_bar_1 = require("./progress-bar");
31
+ Object.defineProperty(exports, "ProgressBar", { enumerable: true, get: function () { return progress_bar_1.ProgressBar; } });
32
+ var reference_collection_1 = require("./reference-collection");
33
+ Object.defineProperty(exports, "ReferenceCollection", { enumerable: true, get: function () { return reference_collection_1.ReferenceCollection; } });
34
+ var reference_icon_1 = require("./reference-icon");
35
+ Object.defineProperty(exports, "ReferenceIcon", { enumerable: true, get: function () { return reference_icon_1.ReferenceIcon; } });
36
+ var reference_1 = require("./reference");
37
+ Object.defineProperty(exports, "Reference", { enumerable: true, get: function () { return reference_1.Reference; } });
38
+ var rich_text_snippet_1 = require("./rich-text-snippet");
39
+ Object.defineProperty(exports, "RichTextSnippet", { enumerable: true, get: function () { return rich_text_snippet_1.RichTextSnippet; } });
40
+ var text_1 = require("./text");
41
+ Object.defineProperty(exports, "Text", { enumerable: true, get: function () { return text_1.Text; } });
42
+ var title_1 = require("./title");
43
+ Object.defineProperty(exports, "Title", { enumerable: true, get: function () { return title_1.Title; } });
44
+ var type_badge_abbr_1 = require("./type-badge-abbr");
45
+ Object.defineProperty(exports, "TypeBadgeAbbr", { enumerable: true, get: function () { return type_badge_abbr_1.TypeBadgeAbbr; } });
46
+ var type_badge_1 = require("./type-badge");
47
+ Object.defineProperty(exports, "TypeBadge", { enumerable: true, get: function () { return type_badge_1.TypeBadge; } });
48
+ var type_icon_1 = require("./type-icon");
49
+ Object.defineProperty(exports, "TypeIcon", { enumerable: true, get: function () { return type_icon_1.TypeIcon; } });
50
+ var url_1 = require("./url");
51
+ Object.defineProperty(exports, "Url", { enumerable: true, get: function () { return url_1.Url; } });
52
+ var user_button_1 = require("./user-button");
53
+ Object.defineProperty(exports, "UserButton", { enumerable: true, get: function () { return user_button_1.UserButton; } });
54
+ var user_role_1 = require("./user-role");
55
+ Object.defineProperty(exports, "UserRole", { enumerable: true, get: function () { return user_role_1.UserRole; } });
56
+ var file_collection_count_1 = require("./file-collection-count");
57
+ Object.defineProperty(exports, "FileCollectionCount", { enumerable: true, get: function () { return file_collection_count_1.FileCollectionCount; } });
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const JsonInput: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JsonInput = void 0;
4
+ const query_1 = require("@fibery/query-utils/src/query");
5
+ const common_1 = require("../unit-utils/common");
6
+ const get_field_label_1 = require("../unit-utils/get-field-label");
7
+ const can_edit_field_1 = require("../unit-utils/can-edit-field");
8
+ const type = "json-input";
9
+ exports.JsonInput = {
10
+ type,
11
+ name: "Input",
12
+ canEdit: can_edit_field_1.canEditField,
13
+ makeUnit: (0, common_1.makeUnitMethod)(type),
14
+ getLabel: get_field_label_1.getFieldLabel,
15
+ getQuerySelect({ typeObject, unit: { expression } }) {
16
+ return (0, query_1.getQuerySelectForExpression)({ typeObject, expression });
17
+ },
18
+ calculateErrors: common_1.calculateUnitExpressionErrors,
19
+ getExportValue: () => null,
20
+ canExport: () => false,
21
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const LocationInput: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LocationInput = void 0;
4
+ const text_1 = require("./text");
5
+ const common_1 = require("../unit-utils/common");
6
+ const get_export_value_1 = require("../unit-utils/get-export-value");
7
+ const type = "location-input";
8
+ exports.LocationInput = {
9
+ type,
10
+ name: "Address",
11
+ makeUnit: (0, common_1.makeUnitMethod)(type),
12
+ getLabel: text_1.Text.getLabel,
13
+ getQuerySelect: text_1.Text.getQuerySelect,
14
+ calculateErrors: text_1.Text.calculateErrors,
15
+ canEdit: text_1.Text.canEdit,
16
+ getExportValue: get_export_value_1.getLocationExportValue,
17
+ canExport: () => true,
18
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const Location: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Location = void 0;
4
+ const text_1 = require("./text");
5
+ const common_1 = require("../unit-utils/common");
6
+ const get_export_value_1 = require("../unit-utils/get-export-value");
7
+ exports.Location = {
8
+ type: "location",
9
+ name: "Address",
10
+ makeUnit: (0, common_1.makeUnitMethod)("location"),
11
+ getLabel: text_1.Text.getLabel,
12
+ getQuerySelect: text_1.Text.getQuerySelect,
13
+ calculateErrors: text_1.Text.calculateErrors,
14
+ canEdit: text_1.Text.canEdit,
15
+ getExportValue: get_export_value_1.getLocationExportValue,
16
+ canExport: () => true,
17
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const NotFound: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.NotFound = void 0;
4
+ const get_unmatched_unit_label_1 = require("../unit-utils/get-unmatched-unit-label");
5
+ const type = "not-found";
6
+ exports.NotFound = {
7
+ type,
8
+ name: "Not found",
9
+ canEdit: () => false,
10
+ makeUnit() {
11
+ throw new Error("Not implemented");
12
+ },
13
+ getLabel({ unit }) {
14
+ return (0, get_unmatched_unit_label_1.getUnmatchedUnitLabel)(unit);
15
+ },
16
+ getQuerySelect() {
17
+ return {};
18
+ },
19
+ calculateErrors() {
20
+ return [];
21
+ },
22
+ getExportValue: () => null,
23
+ canExport: () => false,
24
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const NumberInput: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.NumberInput = void 0;
4
+ const query_1 = require("@fibery/query-utils/src/query");
5
+ const common_1 = require("../unit-utils/common");
6
+ const get_field_label_1 = require("../unit-utils/get-field-label");
7
+ const can_edit_field_1 = require("../unit-utils/can-edit-field");
8
+ const get_export_value_1 = require("../unit-utils/get-export-value");
9
+ const type = "number-input";
10
+ exports.NumberInput = {
11
+ type,
12
+ name: "Input",
13
+ makeUnit: (0, common_1.makeUnitMethod)(type),
14
+ getLabel: get_field_label_1.getFieldLabel,
15
+ getQuerySelect({ typeObject, unit: { expression } }) {
16
+ return (0, query_1.getQuerySelectForExpression)({ typeObject, expression });
17
+ },
18
+ calculateErrors: common_1.calculateUnitExpressionErrors,
19
+ canEdit: can_edit_field_1.canEditField,
20
+ getExportValue: get_export_value_1.getNumberExportValue,
21
+ canExport: () => true,
22
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const Number: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Number = void 0;
4
+ const utils_1 = require("@fibery/expression-utils/src/utils");
5
+ const query_1 = require("@fibery/query-utils/src/query");
6
+ const common_1 = require("../unit-utils/common");
7
+ const get_export_value_1 = require("../unit-utils/get-export-value");
8
+ const type = "number";
9
+ exports.Number = {
10
+ type,
11
+ name: "Input",
12
+ makeUnit: (0, common_1.makeUnitMethod)(type),
13
+ getLabel({ typeObject, unit }) {
14
+ const { expression } = unit;
15
+ const fieldObject = (0, utils_1.getFieldObjectByFieldExpression)({ typeObject, expression });
16
+ return fieldObject.title;
17
+ },
18
+ getQuerySelect({ typeObject, unit: { expression } }) {
19
+ return (0, query_1.getQuerySelectForExpression)({ typeObject, expression });
20
+ },
21
+ calculateErrors: common_1.calculateUnitExpressionErrors,
22
+ canEdit({ typeObject, unit: { expression } }) {
23
+ return (0, common_1.canEditFieldExpression)(typeObject, expression);
24
+ },
25
+ getExportValue: get_export_value_1.getNumberExportValue,
26
+ canExport: () => true,
27
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const PhoneInput: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PhoneInput = void 0;
4
+ const text_input_1 = require("./text-input");
5
+ const common_1 = require("../unit-utils/common");
6
+ const type = "phone-input";
7
+ exports.PhoneInput = {
8
+ ...text_input_1.TextInput,
9
+ type,
10
+ name: "Phone input",
11
+ makeUnit: (0, common_1.makeUnitMethod)(type),
12
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const Phone: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Phone = void 0;
4
+ const text_1 = require("./text");
5
+ const common_1 = require("../unit-utils/common");
6
+ const type = "phone";
7
+ exports.Phone = {
8
+ ...text_1.Text,
9
+ type,
10
+ name: "Input",
11
+ makeUnit: (0, common_1.makeUnitMethod)(type),
12
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const ProgressBar: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ProgressBar = void 0;
4
+ const query_1 = require("@fibery/query-utils/src/query");
5
+ const utils_1 = require("@fibery/expression-utils/src/utils");
6
+ const common_1 = require("../unit-utils/common");
7
+ const get_export_value_1 = require("../unit-utils/get-export-value");
8
+ const get_field_label_1 = require("../unit-utils/get-field-label");
9
+ const type = "progress-bar";
10
+ exports.ProgressBar = {
11
+ type,
12
+ name: "Progress bar",
13
+ makeUnit: (0, common_1.makeUnitMethod)(type),
14
+ getLabel({ typeObject, unit }) {
15
+ const { expression } = unit;
16
+ const fieldObject = (0, utils_1.getFieldObjectByFieldExpression)({ typeObject, expression });
17
+ return `${fieldObject.title} (progress bar)`;
18
+ },
19
+ getQuerySelect({ typeObject, unit: { expression } }) {
20
+ return (0, query_1.getQuerySelectForExpression)({
21
+ typeObject,
22
+ expression,
23
+ });
24
+ },
25
+ calculateErrors: common_1.calculateUnitExpressionErrors,
26
+ canEdit() {
27
+ return false;
28
+ },
29
+ getExportValue: get_export_value_1.getNumberExportValue,
30
+ canExport: () => true,
31
+ getExportLabel: get_field_label_1.getFieldLabel,
32
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const ReferenceCollectionCombobox: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ReferenceCollectionCombobox = void 0;
4
+ const common_1 = require("../unit-utils/common");
5
+ const get_export_value_1 = require("../unit-utils/get-export-value");
6
+ const get_field_label_1 = require("../unit-utils/get-field-label");
7
+ const can_edit_field_1 = require("../unit-utils/can-edit-field");
8
+ const type = "reference-collection-combobox";
9
+ exports.ReferenceCollectionCombobox = {
10
+ type,
11
+ name: "Compact List",
12
+ canEdit: can_edit_field_1.canEditField,
13
+ makeUnit: (0, common_1.makeUnitMethod)(type),
14
+ getLabel: get_field_label_1.getFieldLabel,
15
+ getQuerySelect: () => {
16
+ throw new Error(`getQuerySelect for ${type} should be implemented in view's local unit registry`);
17
+ },
18
+ calculateErrors: common_1.calculateUnitExpressionErrors,
19
+ getExportValue: get_export_value_1.getExportValue,
20
+ canExport: () => true,
21
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const ReferenceCollectionList: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ReferenceCollectionList = void 0;
4
+ const common_1 = require("../unit-utils/common");
5
+ const get_export_value_1 = require("../unit-utils/get-export-value");
6
+ const get_field_label_1 = require("../unit-utils/get-field-label");
7
+ const can_edit_field_1 = require("../unit-utils/can-edit-field");
8
+ const type = "reference-collection-list";
9
+ exports.ReferenceCollectionList = {
10
+ type,
11
+ name: "Relation List",
12
+ canEdit: can_edit_field_1.canEditField,
13
+ makeUnit: (0, common_1.makeUnitMethod)(type),
14
+ getLabel: get_field_label_1.getFieldLabel,
15
+ getQuerySelect: () => {
16
+ // reference-collection-list is used on OE only and querySelect is redefined in ../object-editor-units/reference-collection-list-definition.ts
17
+ return {};
18
+ },
19
+ calculateErrors: common_1.calculateUnitExpressionErrors,
20
+ getExportValue: get_export_value_1.getReferenceCollectionExportValue,
21
+ canExport: () => true,
22
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const ReferenceCollectionView: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ReferenceCollectionView = void 0;
4
+ const common_1 = require("../unit-utils/common");
5
+ const get_export_value_1 = require("../unit-utils/get-export-value");
6
+ const get_field_label_1 = require("../unit-utils/get-field-label");
7
+ const can_edit_field_1 = require("../unit-utils/can-edit-field");
8
+ const type = "reference-collection-view";
9
+ exports.ReferenceCollectionView = {
10
+ type,
11
+ name: "Relation Views",
12
+ canEdit: can_edit_field_1.canEditField,
13
+ makeUnit: (0, common_1.makeUnitMethod)(type),
14
+ getLabel: get_field_label_1.getFieldLabel,
15
+ getQuerySelect: () => ({}),
16
+ calculateErrors: common_1.calculateUnitExpressionErrors,
17
+ getExportValue: get_export_value_1.getReferenceCollectionExportValue,
18
+ canExport: () => true,
19
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const ReferenceCollection: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ReferenceCollection = void 0;
4
+ const common_1 = require("../unit-utils/common");
5
+ const reference_collection_1 = require("../field-utils/reference-collection");
6
+ const get_export_value_1 = require("../unit-utils/get-export-value");
7
+ const get_field_label_1 = require("../unit-utils/get-field-label");
8
+ const can_edit_field_1 = require("../unit-utils/can-edit-field");
9
+ const type = "reference-collection";
10
+ exports.ReferenceCollection = {
11
+ type,
12
+ name: "Compact List",
13
+ getLabel: get_field_label_1.getFieldLabel,
14
+ makeUnit: (0, common_1.makeUnitMethod)(type),
15
+ getQuerySelect({ typeObject, unit: { expression } }) {
16
+ const [field] = expression;
17
+ const fieldObject = typeObject.fieldObjectsByName[field];
18
+ return (0, reference_collection_1.calculateReferenceCollectionQuery)({
19
+ fieldObject,
20
+ limit: reference_collection_1.REFERENCE_COLLECTION_LIMIT,
21
+ });
22
+ },
23
+ calculateErrors: common_1.calculateUnitExpressionErrors,
24
+ canEdit: can_edit_field_1.canEditField,
25
+ getExportValue: get_export_value_1.getReferenceCollectionExportValue,
26
+ canExport: () => true,
27
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const ReferenceCombobox: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ReferenceCombobox = void 0;
4
+ const common_1 = require("../unit-utils/common");
5
+ const get_export_value_1 = require("../unit-utils/get-export-value");
6
+ const get_field_label_1 = require("../unit-utils/get-field-label");
7
+ const can_edit_field_1 = require("../unit-utils/can-edit-field");
8
+ const type = "reference-combobox";
9
+ exports.ReferenceCombobox = {
10
+ type,
11
+ name: "Compact List",
12
+ canEdit: can_edit_field_1.canEditField,
13
+ makeUnit: (0, common_1.makeUnitMethod)(type),
14
+ getLabel: get_field_label_1.getFieldLabel,
15
+ getQuerySelect: () => {
16
+ throw new Error(`getQuerySelect for ${type} should be implemented in view's local unit registry`);
17
+ },
18
+ calculateErrors: common_1.calculateUnitExpressionErrors,
19
+ getExportValue: get_export_value_1.getReferenceExportValue,
20
+ canExport: () => true,
21
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const ReferenceIcon: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ReferenceIcon = void 0;
4
+ const reference_1 = require("./reference");
5
+ const common_1 = require("../unit-utils/common");
6
+ const type = "reference-icon";
7
+ exports.ReferenceIcon = {
8
+ ...reference_1.Reference,
9
+ type,
10
+ name: "Icon",
11
+ makeUnit: (0, common_1.makeUnitMethod)(type),
12
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const Reference: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Reference = void 0;
4
+ const array_1 = require("@fibery/helpers/utils/array");
5
+ const utils_1 = require("@fibery/expression-utils/src/utils");
6
+ const get_field_label_1 = require("../unit-utils/get-field-label");
7
+ const select_1 = require("@fibery/query-utils/src/select");
8
+ const reference_1 = require("../field-utils/reference");
9
+ const common_1 = require("../unit-utils/common");
10
+ const get_export_value_1 = require("../unit-utils/get-export-value");
11
+ const type = "reference";
12
+ exports.Reference = {
13
+ type,
14
+ name: "Icon + Text",
15
+ getLabel: get_field_label_1.getFieldLabel,
16
+ makeUnit: (args) => {
17
+ if (!args) {
18
+ return { type, kind: "field" };
19
+ }
20
+ (0, utils_1.assertIsValidExpression)(args.expression);
21
+ return { type, kind: "field", expression: args.expression };
22
+ },
23
+ getQuerySelect({ typeObject, unit: { expression } }) {
24
+ const field = (0, array_1.single)(expression);
25
+ const fieldObject = typeObject.fieldObjectsByName[field];
26
+ return (0, select_1.denormalizeSelect)({ [field]: (0, reference_1.getReferenceFieldNormalizedSelectClause)(fieldObject, [field]) });
27
+ },
28
+ calculateErrors({ typeObject, unit }) {
29
+ const errors = (0, common_1.calculateUnitExpressionErrors)({ typeObject, unit });
30
+ if (errors.length > 0) {
31
+ return errors;
32
+ }
33
+ if (typeObject.idFieldObject === null) {
34
+ errors.push(`${typeObject.name} does not have id field for ${unit.type} unit`);
35
+ }
36
+ if (typeObject.publicIdFieldObject === null) {
37
+ errors.push(`${typeObject.name} does not have public id field for ${unit.type} unit`);
38
+ }
39
+ if (typeObject.titleFieldObject === null) {
40
+ errors.push(`${typeObject.name} does not have title field for ${unit.type} unit`);
41
+ }
42
+ return errors;
43
+ },
44
+ canEdit({ typeObject, unit: { expression } }) {
45
+ return (0, common_1.canEditFieldExpression)(typeObject, expression);
46
+ },
47
+ getExportValue: get_export_value_1.getReferenceExportValue,
48
+ canExport: () => true,
49
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const RichTextDocument: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RichTextDocument = void 0;
4
+ const can_edit_field_1 = require("../unit-utils/can-edit-field");
5
+ const get_field_label_1 = require("../unit-utils/get-field-label");
6
+ const common_1 = require("../unit-utils/common");
7
+ const rich_text_1 = require("../field-utils/rich-text");
8
+ const get_export_value_1 = require("../unit-utils/get-export-value");
9
+ const type = "rich-text-document";
10
+ exports.RichTextDocument = {
11
+ type,
12
+ name: "Document",
13
+ canEdit: can_edit_field_1.canEditField,
14
+ getLabel: get_field_label_1.getFieldLabel,
15
+ calculateErrors: common_1.calculateUnitExpressionErrors,
16
+ makeUnit: (0, common_1.makeUnitMethod)(type),
17
+ getQuerySelect({ typeObject, unit }) {
18
+ return (0, rich_text_1.getRichTextQuerySelect)({ typeObject, unit, includeSnippet: false });
19
+ },
20
+ getExportValue: get_export_value_1.getSnippetExportValue,
21
+ canExport: () => true,
22
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const RichTextSnippet: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RichTextSnippet = void 0;
4
+ const query_1 = require("@fibery/query-utils/src/query");
5
+ const utils_1 = require("@fibery/expression-utils/src/utils");
6
+ const common_1 = require("../unit-utils/common");
7
+ const get_export_value_1 = require("../unit-utils/get-export-value");
8
+ const type = "rich-text-snippet";
9
+ exports.RichTextSnippet = {
10
+ type,
11
+ name: "Snippet",
12
+ canEdit() {
13
+ return false;
14
+ },
15
+ makeUnit: (0, common_1.makeUnitMethod)(type),
16
+ getLabel({ typeObject, unit }) {
17
+ const { expression } = unit;
18
+ const fieldObject = (0, utils_1.getFieldObjectByFieldExpression)({
19
+ typeObject,
20
+ expression,
21
+ });
22
+ return `${fieldObject.title} (Snippet)`;
23
+ },
24
+ getQuerySelect({ typeObject, unit: { expression } }) {
25
+ return (0, query_1.getQuerySelectForExpression)({
26
+ typeObject,
27
+ expression: [...expression, "Collaboration~Documents/Snippet"],
28
+ selectsByTypeLookup: {
29
+ "Collaboration~Documents/Document": {
30
+ "fibery/id": "fibery/id",
31
+ "Collaboration~Documents/secret": "Collaboration~Documents/secret",
32
+ },
33
+ },
34
+ });
35
+ },
36
+ calculateErrors: common_1.calculateUnitExpressionErrors,
37
+ getExportValue: get_export_value_1.getSnippetExportValue,
38
+ canExport: () => true,
39
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const SingleLocationPreview: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SingleLocationPreview = void 0;
4
+ const text_1 = require("./text");
5
+ const common_1 = require("../unit-utils/common");
6
+ const type = "single-location-preview";
7
+ exports.SingleLocationPreview = {
8
+ type,
9
+ name: "Preview",
10
+ makeUnit: (0, common_1.makeUnitMethod)(type),
11
+ getLabel: text_1.Text.getLabel,
12
+ getQuerySelect: text_1.Text.getQuerySelect,
13
+ calculateErrors: text_1.Text.calculateErrors,
14
+ canEdit: text_1.Text.canEdit,
15
+ getExportValue: text_1.Text.getExportValue,
16
+ canExport: () => true,
17
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const TextInput: UnitDataDefinition<FieldUnit>;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TextInput = void 0;
4
+ const query_1 = require("@fibery/query-utils/src/query");
5
+ const common_1 = require("../unit-utils/common");
6
+ const get_field_label_1 = require("../unit-utils/get-field-label");
7
+ const get_export_value_1 = require("../unit-utils/get-export-value");
8
+ const can_edit_field_1 = require("../unit-utils/can-edit-field");
9
+ const type = "text-input";
10
+ exports.TextInput = {
11
+ type,
12
+ name: "Input",
13
+ canEdit: can_edit_field_1.canEditField,
14
+ makeUnit: (0, common_1.makeUnitMethod)(type),
15
+ getLabel: get_field_label_1.getFieldLabel,
16
+ getQuerySelect({ typeObject, unit: { expression } }) {
17
+ return (0, query_1.getQuerySelectForExpression)({ typeObject, expression });
18
+ },
19
+ calculateErrors: common_1.calculateUnitExpressionErrors,
20
+ getExportValue: get_export_value_1.getExportValue,
21
+ canExport: () => true,
22
+ };
@@ -0,0 +1,2 @@
1
+ import { FieldUnit, UnitDataDefinition } from "../units/types";
2
+ export declare const Text: UnitDataDefinition<FieldUnit>;