@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,163 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.formatDateTimeRange = exports.formatDateRange = exports.formatNumberWithUnitAsStringByFieldObject = exports.formatNumberWithUnitAsString = exports.formatNumberWithoutUnit = exports.formatPercent = exports.formatCurrency = exports.formatNumber = exports.formatArbitraryNumber = exports.defaultTimeFormat = exports.defaultDateTimeFormat = exports.defaultDateFormat = exports.defaultLocale = void 0;
7
+ exports.formatUnitUrl = formatUnitUrl;
8
+ const isNil_1 = __importDefault(require("lodash/isNil"));
9
+ const date_time_1 = require("../field-utils/date-time");
10
+ const number_1 = require("../field-utils/number");
11
+ const decimal_1 = __importDefault(require("./decimal"));
12
+ exports.defaultLocale = "en-US";
13
+ exports.defaultDateFormat = "MMM D, YYYY";
14
+ exports.defaultDateTimeFormat = "MMM D, YYYY HH:mm";
15
+ exports.defaultTimeFormat = "HH:mm";
16
+ const applyDisplaySettings = (parts, displaySettings) => {
17
+ if (!displaySettings) {
18
+ return parts.map((part) => part.value).join("");
19
+ }
20
+ return parts
21
+ .map((part) => {
22
+ if (part.type === "group") {
23
+ return displaySettings.thousandSeparator;
24
+ }
25
+ if (part.type === "decimal") {
26
+ return displaySettings.decimalSeparator;
27
+ }
28
+ return part.value;
29
+ })
30
+ .join("");
31
+ };
32
+ const formatArbitraryNumber = (value, displaySettings, options = {}) => {
33
+ const formatter = new Intl.NumberFormat(exports.defaultLocale, {
34
+ style: "decimal",
35
+ ...options,
36
+ });
37
+ return applyDisplaySettings(formatter.formatToParts(value), displaySettings);
38
+ };
39
+ exports.formatArbitraryNumber = formatArbitraryNumber;
40
+ const formatNumber = (useGrouping, precision, value, displaySettings) => {
41
+ const formatter = new Intl.NumberFormat(exports.defaultLocale, {
42
+ style: "decimal",
43
+ useGrouping,
44
+ minimumFractionDigits: precision,
45
+ maximumFractionDigits: precision,
46
+ signDisplay: "negative",
47
+ });
48
+ return applyDisplaySettings(formatter.formatToParts(value), displaySettings);
49
+ };
50
+ exports.formatNumber = formatNumber;
51
+ const formatCurrency = (currency, useGrouping, precision, value, displaySettings) => {
52
+ const formatter = new Intl.NumberFormat(exports.defaultLocale, {
53
+ style: "currency",
54
+ currency,
55
+ useGrouping,
56
+ minimumFractionDigits: precision,
57
+ maximumFractionDigits: precision,
58
+ signDisplay: "negative",
59
+ });
60
+ return applyDisplaySettings(formatter.formatToParts(Number(value)), displaySettings);
61
+ };
62
+ exports.formatCurrency = formatCurrency;
63
+ const formatPercent = (useGrouping, precision, value, displaySettings) => {
64
+ const formatter = new Intl.NumberFormat(exports.defaultLocale, {
65
+ style: "percent",
66
+ useGrouping,
67
+ minimumFractionDigits: precision,
68
+ maximumFractionDigits: precision,
69
+ signDisplay: "negative",
70
+ });
71
+ return applyDisplaySettings(formatter.formatToParts(Number(value)), displaySettings);
72
+ };
73
+ exports.formatPercent = formatPercent;
74
+ const formatNumberWithoutUnit = ({ value, format = number_1.NumberFormat.NUMBER, displaySettings, currencyCode, precision, useThousandSeparator, }) => {
75
+ try {
76
+ switch (format) {
77
+ case number_1.NumberFormat.NUMBER: {
78
+ const valueWithPrecision = new decimal_1.default(value).toFixed(precision, decimal_1.default.ROUND_HALF_CEIL);
79
+ return (0, exports.formatNumber)(useThousandSeparator, precision, Number(valueWithPrecision), displaySettings);
80
+ }
81
+ case number_1.NumberFormat.MONEY: {
82
+ return (0, exports.formatCurrency)(currencyCode, useThousandSeparator, precision, value, displaySettings);
83
+ }
84
+ case number_1.NumberFormat.PERCENT: {
85
+ return (0, exports.formatPercent)(useThousandSeparator, precision, value, displaySettings);
86
+ }
87
+ default:
88
+ return value;
89
+ }
90
+ }
91
+ catch (error) {
92
+ return value;
93
+ }
94
+ };
95
+ exports.formatNumberWithoutUnit = formatNumberWithoutUnit;
96
+ const formatNumberWithUnitAsString = ({ value, format = number_1.NumberFormat.NUMBER, displaySettings, unit, currencyCode, precision, useThousandSeparator, withNumberUnit = true, }) => {
97
+ if ((0, isNil_1.default)(value)) {
98
+ return "";
99
+ }
100
+ const formattedValue = (0, exports.formatNumberWithoutUnit)({
101
+ value,
102
+ format,
103
+ displaySettings,
104
+ currencyCode,
105
+ precision,
106
+ useThousandSeparator,
107
+ });
108
+ const showUnit = format === number_1.NumberFormat.NUMBER && unit && withNumberUnit;
109
+ const suffix = showUnit ? ` ${unit}` : "";
110
+ return `${formattedValue}${suffix}`;
111
+ };
112
+ exports.formatNumberWithUnitAsString = formatNumberWithUnitAsString;
113
+ const formatNumberWithUnitAsStringByFieldObject = (fieldObject, value, displaySettings) => {
114
+ const { numberFormat, numberPrecision, numberUnit, numberCurrencyCode, numberUseThousandSeparator } = (0, number_1.parseNumberFieldMeta)(fieldObject);
115
+ return (0, exports.formatNumberWithUnitAsString)({
116
+ value,
117
+ format: numberFormat,
118
+ displaySettings,
119
+ unit: numberUnit,
120
+ currencyCode: numberCurrencyCode,
121
+ precision: numberPrecision,
122
+ useThousandSeparator: numberUseThousandSeparator,
123
+ withNumberUnit: true,
124
+ });
125
+ };
126
+ exports.formatNumberWithUnitAsStringByFieldObject = formatNumberWithUnitAsStringByFieldObject;
127
+ const formatDateRange = ({ value, type, format = exports.defaultDateFormat, }) => {
128
+ const formattedStart = value ? (0, date_time_1.parseStart)({ value: value.start, type }).format(format) : "No Start Date";
129
+ const formattedEnd = value ? (0, date_time_1.parseEnd)({ value: value.end, type }).format(format) : "No End Date";
130
+ return `${formattedStart} → ${formattedEnd}`;
131
+ };
132
+ exports.formatDateRange = formatDateRange;
133
+ const formatDateTimeRange = ({ value, type, dateFormat = exports.defaultDateFormat, timeFormat = exports.defaultTimeFormat, dateTimeFormat = exports.defaultDateTimeFormat, }) => {
134
+ if (!value) {
135
+ return `No Start Date → No End Date`;
136
+ }
137
+ const startDate = (0, date_time_1.parseStart)({ value: value.start, type });
138
+ const endDate = (0, date_time_1.parseEnd)({ value: value.end, type });
139
+ if (startDate && endDate && startDate.isSame(endDate, "day")) {
140
+ return `${startDate.format(dateFormat)} ${startDate.format(timeFormat)} → ${endDate.format(timeFormat)}`;
141
+ }
142
+ return `${startDate.format(dateTimeFormat)} → ${endDate.format(dateTimeFormat)}`;
143
+ };
144
+ exports.formatDateTimeRange = formatDateTimeRange;
145
+ function formatUnitUrl(url) {
146
+ try {
147
+ const trimmed = url.trim();
148
+ // if not a full URL we return it as-is
149
+ if (url === "" || url === " " || url === "/" || url === "https://" || url === "http://" || url === "www.") {
150
+ return { host: trimmed };
151
+ }
152
+ // otherwise, clean up a full URL
153
+ const cleaned = trimmed
154
+ .replace(/^https?:\/\//, "")
155
+ .replace(/^www\./, "")
156
+ .replace(/\/+$/, "");
157
+ const host = cleaned.length > 200 ? cleaned.slice(0, 197) + "…" : cleaned;
158
+ return { host };
159
+ }
160
+ catch {
161
+ return { host: url };
162
+ }
163
+ }
@@ -0,0 +1,45 @@
1
+ import { FieldUnit } from "../units/types";
2
+ import { FieldObject, TypeObject } from "@fibery/schema";
3
+ import { NumberDisplaySettings } from "../field-utils/number";
4
+ import { FiberyObject } from "@fibery/expression-utils/src/types";
5
+ export declare const getExportValue: ({ object, unit }: {
6
+ object: FiberyObject;
7
+ unit: FieldUnit;
8
+ }) => any;
9
+ export declare const getReferenceCollectionExportValue: ({ unit, typeObject, object, }: {
10
+ object: FiberyObject;
11
+ unit: FieldUnit;
12
+ typeObject: TypeObject;
13
+ }) => FiberyObject[] | (string | undefined)[] | null;
14
+ export declare const getReferenceExportValue: ({ unit, typeObject, object, }: {
15
+ object: FiberyObject;
16
+ unit: FieldUnit;
17
+ typeObject: TypeObject;
18
+ }) => string | null | undefined;
19
+ export declare const getSnippetExportValue: ({ object, unit }: {
20
+ object: FiberyObject;
21
+ unit: FieldUnit;
22
+ }) => any;
23
+ export declare const formatDateRangeExportValue: (value: {
24
+ start: string;
25
+ end: string;
26
+ } | null, fieldObject: FieldObject | null) => string | null;
27
+ export declare const getDateRangeExportValue: ({ object, unit, typeObject, }: {
28
+ object: FiberyObject;
29
+ unit: FieldUnit;
30
+ typeObject: TypeObject;
31
+ }) => string | null;
32
+ export declare const getLocationExportValue: ({ object, unit }: {
33
+ object: FiberyObject;
34
+ unit: FieldUnit;
35
+ }) => any;
36
+ export declare const getTitleExportValue: ({ object, typeObject }: {
37
+ object: FiberyObject;
38
+ typeObject: TypeObject;
39
+ }) => string | undefined;
40
+ export declare const getNumberExportValue: ({ object, unit, typeObject, displaySettings, }: {
41
+ object: FiberyObject;
42
+ typeObject: TypeObject;
43
+ unit: FieldUnit;
44
+ displaySettings: NumberDisplaySettings;
45
+ }) => string;
@@ -0,0 +1,83 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getNumberExportValue = exports.getTitleExportValue = exports.getLocationExportValue = exports.getDateRangeExportValue = exports.formatDateRangeExportValue = exports.getSnippetExportValue = exports.getReferenceExportValue = exports.getReferenceCollectionExportValue = exports.getExportValue = void 0;
4
+ const query_1 = require("@fibery/query-utils/src/query");
5
+ const date_fns_1 = require("date-fns");
6
+ const number_1 = require("../field-utils/number");
7
+ const formatters_1 = require("./formatters");
8
+ const getExportValue = ({ object, unit }) => {
9
+ return (0, query_1.getValueByFieldExpression)(object, unit.expression);
10
+ };
11
+ exports.getExportValue = getExportValue;
12
+ const getReferenceCollectionExportValue = ({ unit, typeObject, object, }) => {
13
+ const value = (0, query_1.getValueByFieldExpression)(object, unit.expression);
14
+ if (!value || value.length === 0) {
15
+ return value;
16
+ }
17
+ const [field] = unit.expression;
18
+ const fieldObject = typeObject.fieldObjectsByName[field];
19
+ return value.map((v) => v[fieldObject.typeObject.titleField]);
20
+ };
21
+ exports.getReferenceCollectionExportValue = getReferenceCollectionExportValue;
22
+ const getReferenceExportValue = ({ unit, typeObject, object, }) => {
23
+ const value = (0, query_1.getValueByFieldExpression)(object, unit.expression);
24
+ if (!value) {
25
+ return value;
26
+ }
27
+ const [field] = unit.expression;
28
+ const fieldObject = typeObject.fieldObjectsByName[field];
29
+ return value[fieldObject.typeObject.titleField];
30
+ };
31
+ exports.getReferenceExportValue = getReferenceExportValue;
32
+ const getSnippetExportValue = ({ object, unit }) => {
33
+ const value = (0, exports.getExportValue)({ object, unit });
34
+ return value?.["Collaboration~Documents/Snippet"];
35
+ };
36
+ exports.getSnippetExportValue = getSnippetExportValue;
37
+ const formatDateRangeExportValue = (value, fieldObject) => {
38
+ if (value) {
39
+ const start = value.start;
40
+ let end = value.end;
41
+ if (fieldObject?.type === "fibery/date-range") {
42
+ end = (0, date_fns_1.formatISO)((0, date_fns_1.subDays)((0, date_fns_1.parseISO)(end), 1), { representation: "date" });
43
+ }
44
+ else if (fieldObject?.type === "fibery/date-time-range") {
45
+ end = (0, date_fns_1.subSeconds)((0, date_fns_1.parseISO)(end), 1).toISOString();
46
+ }
47
+ return `${start} - ${end}`;
48
+ }
49
+ return value;
50
+ };
51
+ exports.formatDateRangeExportValue = formatDateRangeExportValue;
52
+ const getDateRangeExportValue = ({ object, unit, typeObject, }) => {
53
+ const value = (0, exports.getExportValue)({ object, unit });
54
+ const fieldObject = (0, query_1.extractFieldObjectFromExpression)({ expression: unit.expression, typeObject });
55
+ return (0, exports.formatDateRangeExportValue)(value, fieldObject);
56
+ };
57
+ exports.getDateRangeExportValue = getDateRangeExportValue;
58
+ const getLocationExportValue = ({ object, unit }) => {
59
+ const value = (0, exports.getExportValue)({ object, unit });
60
+ return value ? JSON.stringify(value) : value;
61
+ };
62
+ exports.getLocationExportValue = getLocationExportValue;
63
+ const getTitleExportValue = ({ object, typeObject }) => {
64
+ return object?.[typeObject.titleField];
65
+ };
66
+ exports.getTitleExportValue = getTitleExportValue;
67
+ const getNumberExportValue = ({ object, unit, typeObject, displaySettings, }) => {
68
+ const [field] = unit.expression;
69
+ const fieldObject = typeObject.fieldObjectsByName[field];
70
+ const value = (0, query_1.getValueByFieldExpression)(object, unit.expression);
71
+ const { numberFormat, numberPrecision, numberUnit, numberCurrencyCode, numberUseThousandSeparator } = (0, number_1.parseNumberFieldMeta)(fieldObject);
72
+ return (0, formatters_1.formatNumberWithUnitAsString)({
73
+ value,
74
+ format: numberFormat,
75
+ displaySettings,
76
+ unit: numberUnit,
77
+ currencyCode: numberCurrencyCode,
78
+ precision: numberPrecision,
79
+ useThousandSeparator: numberUseThousandSeparator,
80
+ withNumberUnit: true,
81
+ });
82
+ };
83
+ exports.getNumberExportValue = getNumberExportValue;
@@ -0,0 +1,6 @@
1
+ import { TypeObject } from "@fibery/schema";
2
+ import { FieldUnit } from "../units/types";
3
+ export declare const getFieldLabel: ({ typeObject, unit }: {
4
+ typeObject: TypeObject;
5
+ unit: FieldUnit;
6
+ }) => string;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getFieldLabel = void 0;
4
+ const utils_1 = require("@fibery/expression-utils/src/utils");
5
+ const getFieldLabel = ({ typeObject, unit }) => {
6
+ const { expression } = unit;
7
+ const fieldObject = (0, utils_1.getFieldObjectByFieldExpression)({ typeObject, expression });
8
+ return fieldObject.title;
9
+ };
10
+ exports.getFieldLabel = getFieldLabel;
@@ -0,0 +1,2 @@
1
+ import { Unit } from "../units/types";
2
+ export declare const getUnmatchedUnitLabel: (unit: Unit) => string;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getUnmatchedUnitLabel = void 0;
7
+ const omit_1 = __importDefault(require("lodash/omit"));
8
+ const getUnmatchedUnitLabel = (unit) => JSON.stringify((0, omit_1.default)(unit, ["checked"]));
9
+ exports.getUnmatchedUnitLabel = getUnmatchedUnitLabel;
@@ -0,0 +1,4 @@
1
+ import { Schema } from "@fibery/schema";
2
+ export declare const extractTypePart: (type: string) => string;
3
+ export declare const extractTypeNamespacePart: (type: string) => string;
4
+ export declare const getTypeById: (schema: Schema, id: string) => import("@fibery/schema").TypeObject | undefined;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getTypeById = exports.extractTypeNamespacePart = exports.extractTypePart = void 0;
4
+ const schema_1 = require("@fibery/schema");
5
+ const extractTypePart = (type) => (0, schema_1.parseType)(type).name;
6
+ exports.extractTypePart = extractTypePart;
7
+ const extractTypeNamespacePart = (type) => (0, schema_1.parseType)(type).namespace;
8
+ exports.extractTypeNamespacePart = extractTypeNamespacePart;
9
+ const getTypeById = (schema, id) => {
10
+ return Object.hasOwn(schema.typeObjectsById, id) ? schema.typeObjectsById[id] : undefined;
11
+ };
12
+ exports.getTypeById = getTypeById;
@@ -0,0 +1,43 @@
1
+ import { TypeObject } from "@fibery/schema";
2
+ export declare const getTypeUnits: () => import("./types").PureUnit[], getUnitName: (unit: import("./types").Unit) => string | null, getUnitsForType: (typeObject: TypeObject, options?: {
3
+ showHiddenFields?: boolean;
4
+ isSharingMode?: boolean;
5
+ }) => {
6
+ unit: import("./types").Unit;
7
+ fieldObject: import("@fibery/schema").FieldObject;
8
+ }[], getUnitsForField: (fieldObject: import("@fibery/schema").FieldObject, options?: {
9
+ showHiddenFields?: boolean;
10
+ isSharingMode?: boolean;
11
+ }) => import("./types").Unit[], getUnitsForTypePerField: (typeObject: TypeObject, options?: {
12
+ showHiddenFields?: boolean;
13
+ isSharingMode?: boolean;
14
+ }) => {
15
+ fieldObject: import("@fibery/schema").FieldObject;
16
+ units: import("./types").Unit[];
17
+ }[], getUnitLabel: (fieldObject: import("@fibery/schema").FieldObject, unit: import("./types").Unit) => string, getHardcodedUnitsForView: (typeObject: TypeObject) => ({
18
+ expression: import("./types").UnitExpression;
19
+ type: "avatar" | "avatar-collection" | "avatar-input" | "back-references-list" | "bool" | "bool-checkbox" | "collection-count" | "color-input" | "comments-list" | "date" | "date-time" | "date-time-combobox" | "date-range" | "date-range-combobox" | "email" | "email-input" | "emoji" | "field" | "files-gallery" | "files-list" | "files-list-item" | "files-l-list" | "files-l-list-item" | "file-reference" | "file-compact-collection" | "file-compact-reference" | "file-collection-count" | "geometry-preview" | "icon-button" | "icon-input" | "id" | "json-input" | "location" | "location-input" | "number" | "number-input" | "phone" | "phone-input" | "progress-bar" | "reference" | "reference-icon" | "reference-combobox" | "reference-collection" | "reference-collection-list" | "reference-collection-view" | "reference-collection-combobox" | "rich-text-snippet" | "rich-text-document" | "single-location-preview" | "text" | "text-input" | "title" | "title-input" | "url" | "url-input" | "user-role" | "user-role-input";
20
+ kind: "field";
21
+ settings?: Record<string, unknown> | undefined;
22
+ hideWhenEmpty?: boolean | undefined;
23
+ } | {
24
+ type: "user-button" | "icon-button";
25
+ kind: "user-button";
26
+ hideWhenEmpty?: boolean | undefined;
27
+ data: {
28
+ id: string;
29
+ typeId: string;
30
+ };
31
+ label: string;
32
+ icon?: string | undefined;
33
+ } | {
34
+ expression?: import("./types").UnitExpression | undefined;
35
+ type: "type-icon" | "type-badge" | "type-badge-abbr";
36
+ kind: "db";
37
+ hideWhenEmpty?: boolean | undefined;
38
+ })[], getCardUnitsSelect: ({ schema, typeObject, units }: {
39
+ schema: import("@fibery/schema").Schema;
40
+ typeObject: TypeObject;
41
+ units: import("./types").Unit[];
42
+ }) => any, getUnitDataDefinition: (unit: import("./types").Unit) => import("./types").UnitDataDefinition<import("./types").FieldUnit> | import("./types").UnitDataDefinition<import("./types").DbUnit> | import("./types").UnitDataDefinition<import("./types").ButtonUnit>;
43
+ export declare const getDefaultUnits: (typeObject: TypeObject) => import("./types").PureUnit[];
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var _a;
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.getDefaultUnits = exports.getUnitDataDefinition = exports.getCardUnitsSelect = exports.getHardcodedUnitsForView = exports.getUnitLabel = exports.getUnitsForTypePerField = exports.getUnitsForField = exports.getUnitsForType = exports.getUnitName = exports.getTypeUnits = void 0;
38
+ const avatar_1 = require("../field-utils/avatar");
39
+ const make_factory_1 = require("./make-factory");
40
+ const allUnitDefinitions = __importStar(require("../unit-definitions"));
41
+ _a = (0, make_factory_1.makeUnitDefinitionsFactory)(allUnitDefinitions), exports.getTypeUnits = _a.getTypeUnits, exports.getUnitName = _a.getUnitName, exports.getUnitsForType = _a.getUnitsForType, exports.getUnitsForField = _a.getUnitsForField, exports.getUnitsForTypePerField = _a.getUnitsForTypePerField, exports.getUnitLabel = _a.getUnitLabel, exports.getHardcodedUnitsForView = _a.getHardcodedUnitsForView, exports.getCardUnitsSelect = _a.getCardUnitsSelect, exports.getUnitDataDefinition = _a.getUnitDataDefinition;
42
+ const getDefaultUnits = (typeObject) => {
43
+ const { Title, Avatar, TypeBadgeAbbr } = allUnitDefinitions;
44
+ return [
45
+ Title && Title.makeUnit(),
46
+ typeObject && (0, avatar_1.isAvatarExtensionEnabledType)(typeObject)
47
+ ? Avatar && Avatar.makeUnit()
48
+ : TypeBadgeAbbr && TypeBadgeAbbr.makeUnit(),
49
+ ].filter(Boolean);
50
+ };
51
+ exports.getDefaultUnits = getDefaultUnits;
@@ -0,0 +1,18 @@
1
+ export { Bool } from "../../unit-definitions/bool";
2
+ export { CollectionCount } from "../../unit-definitions/collection-count";
3
+ export { Date } from "../../unit-definitions/date";
4
+ export { DateRange } from "../../unit-definitions/date-range";
5
+ export { Email } from "../../unit-definitions/email";
6
+ export { Id } from "../../unit-definitions/id";
7
+ export { Number } from "../../unit-definitions/number";
8
+ export { Phone } from "../../unit-definitions/phone";
9
+ export { Reference } from "../../unit-definitions/reference";
10
+ export { ReferenceCollection } from "../../unit-definitions/reference-collection";
11
+ export { Text } from "../../unit-definitions/text";
12
+ export { Title } from "../../unit-definitions/title";
13
+ export { Url } from "../../unit-definitions/url";
14
+ export { Location } from "../../unit-definitions/location";
15
+ export { Emoji } from "../../unit-definitions/emoji";
16
+ export { Avatar } from "../../unit-definitions/avatar";
17
+ export { TypeBadge } from "./type-badge";
18
+ export { TypeBadgeAbbr } from "./type-badge-abbr";
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TypeBadgeAbbr = exports.TypeBadge = exports.Avatar = exports.Emoji = exports.Location = exports.Url = exports.Title = exports.Text = exports.ReferenceCollection = exports.Reference = exports.Phone = exports.Number = exports.Id = exports.Email = exports.DateRange = exports.Date = exports.CollectionCount = exports.Bool = void 0;
4
+ var bool_1 = require("../../unit-definitions/bool");
5
+ Object.defineProperty(exports, "Bool", { enumerable: true, get: function () { return bool_1.Bool; } });
6
+ var collection_count_1 = require("../../unit-definitions/collection-count");
7
+ Object.defineProperty(exports, "CollectionCount", { enumerable: true, get: function () { return collection_count_1.CollectionCount; } });
8
+ var date_1 = require("../../unit-definitions/date");
9
+ Object.defineProperty(exports, "Date", { enumerable: true, get: function () { return date_1.Date; } });
10
+ var date_range_1 = require("../../unit-definitions/date-range");
11
+ Object.defineProperty(exports, "DateRange", { enumerable: true, get: function () { return date_range_1.DateRange; } });
12
+ var email_1 = require("../../unit-definitions/email");
13
+ Object.defineProperty(exports, "Email", { enumerable: true, get: function () { return email_1.Email; } });
14
+ var id_1 = require("../../unit-definitions/id");
15
+ Object.defineProperty(exports, "Id", { enumerable: true, get: function () { return id_1.Id; } });
16
+ var number_1 = require("../../unit-definitions/number");
17
+ Object.defineProperty(exports, "Number", { enumerable: true, get: function () { return number_1.Number; } });
18
+ var phone_1 = require("../../unit-definitions/phone");
19
+ Object.defineProperty(exports, "Phone", { enumerable: true, get: function () { return phone_1.Phone; } });
20
+ var reference_1 = require("../../unit-definitions/reference");
21
+ Object.defineProperty(exports, "Reference", { enumerable: true, get: function () { return reference_1.Reference; } });
22
+ var reference_collection_1 = require("../../unit-definitions/reference-collection");
23
+ Object.defineProperty(exports, "ReferenceCollection", { enumerable: true, get: function () { return reference_collection_1.ReferenceCollection; } });
24
+ var text_1 = require("../../unit-definitions/text");
25
+ Object.defineProperty(exports, "Text", { enumerable: true, get: function () { return text_1.Text; } });
26
+ var title_1 = require("../../unit-definitions/title");
27
+ Object.defineProperty(exports, "Title", { enumerable: true, get: function () { return title_1.Title; } });
28
+ var url_1 = require("../../unit-definitions/url");
29
+ Object.defineProperty(exports, "Url", { enumerable: true, get: function () { return url_1.Url; } });
30
+ var location_1 = require("../../unit-definitions/location");
31
+ Object.defineProperty(exports, "Location", { enumerable: true, get: function () { return location_1.Location; } });
32
+ var emoji_1 = require("../../unit-definitions/emoji");
33
+ Object.defineProperty(exports, "Emoji", { enumerable: true, get: function () { return emoji_1.Emoji; } });
34
+ var avatar_1 = require("../../unit-definitions/avatar");
35
+ Object.defineProperty(exports, "Avatar", { enumerable: true, get: function () { return avatar_1.Avatar; } });
36
+ // These two are canvas-specific
37
+ var type_badge_1 = require("./type-badge");
38
+ Object.defineProperty(exports, "TypeBadge", { enumerable: true, get: function () { return type_badge_1.TypeBadge; } });
39
+ var type_badge_abbr_1 = require("./type-badge-abbr");
40
+ Object.defineProperty(exports, "TypeBadgeAbbr", { enumerable: true, get: function () { return type_badge_abbr_1.TypeBadgeAbbr; } });
@@ -0,0 +1,42 @@
1
+ export declare const getTypeUnits: () => import("../types").PureUnit[], getUnitName: (unit: import("../types").Unit) => string | null, getUnitsForField: (fieldObject: import("@fibery/schema").FieldObject, options?: {
2
+ showHiddenFields?: boolean;
3
+ isSharingMode?: boolean;
4
+ }) => import("../types").Unit[], getUnitsForType: (typeObject: import("@fibery/schema").TypeObject, options?: {
5
+ showHiddenFields?: boolean;
6
+ isSharingMode?: boolean;
7
+ }) => {
8
+ unit: import("../types").Unit;
9
+ fieldObject: import("@fibery/schema").FieldObject;
10
+ }[], getUnitsForTypePerField: (typeObject: import("@fibery/schema").TypeObject, options?: {
11
+ showHiddenFields?: boolean;
12
+ isSharingMode?: boolean;
13
+ }) => {
14
+ fieldObject: import("@fibery/schema").FieldObject;
15
+ units: import("../types").Unit[];
16
+ }[], getUnitLabel: (fieldObject: import("@fibery/schema").FieldObject, unit: import("../types").Unit) => string, getCardUnitsSelect: ({ schema, typeObject, units }: {
17
+ schema: import("@fibery/schema").Schema;
18
+ typeObject: import("@fibery/schema").TypeObject;
19
+ units: import("../types").Unit[];
20
+ }) => any, getHardcodedUnitsForView: (typeObject: import("@fibery/schema").TypeObject) => ({
21
+ expression: import("../types").UnitExpression;
22
+ type: "avatar" | "avatar-collection" | "avatar-input" | "back-references-list" | "bool" | "bool-checkbox" | "collection-count" | "color-input" | "comments-list" | "date" | "date-time" | "date-time-combobox" | "date-range" | "date-range-combobox" | "email" | "email-input" | "emoji" | "field" | "files-gallery" | "files-list" | "files-list-item" | "files-l-list" | "files-l-list-item" | "file-reference" | "file-compact-collection" | "file-compact-reference" | "file-collection-count" | "geometry-preview" | "icon-button" | "icon-input" | "id" | "json-input" | "location" | "location-input" | "number" | "number-input" | "phone" | "phone-input" | "progress-bar" | "reference" | "reference-icon" | "reference-combobox" | "reference-collection" | "reference-collection-list" | "reference-collection-view" | "reference-collection-combobox" | "rich-text-snippet" | "rich-text-document" | "single-location-preview" | "text" | "text-input" | "title" | "title-input" | "url" | "url-input" | "user-role" | "user-role-input";
23
+ kind: "field";
24
+ settings?: Record<string, unknown> | undefined;
25
+ hideWhenEmpty?: boolean | undefined;
26
+ } | {
27
+ type: "user-button" | "icon-button";
28
+ kind: "user-button";
29
+ hideWhenEmpty?: boolean | undefined;
30
+ data: {
31
+ id: string;
32
+ typeId: string;
33
+ };
34
+ label: string;
35
+ icon?: string | undefined;
36
+ } | {
37
+ expression?: import("../types").UnitExpression | undefined;
38
+ type: "type-icon" | "type-badge" | "type-badge-abbr";
39
+ kind: "db";
40
+ hideWhenEmpty?: boolean | undefined;
41
+ })[];
42
+ export declare const getDefaultUnits: () => import("../types").PureUnit[];
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var _a;
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.getDefaultUnits = exports.getHardcodedUnitsForView = exports.getCardUnitsSelect = exports.getUnitLabel = exports.getUnitsForTypePerField = exports.getUnitsForType = exports.getUnitsForField = exports.getUnitName = exports.getTypeUnits = void 0;
38
+ const make_factory_1 = require("../make-factory");
39
+ const rich_text_snippet_1 = require("../../unit-definitions/rich-text-snippet");
40
+ const unitDefinitions = __importStar(require("./all-units-data-definitions"));
41
+ const allUnitDefinitions = { ...unitDefinitions, RichTextSnippet: rich_text_snippet_1.RichTextSnippet };
42
+ // noinspection JSUnusedGlobalSymbols
43
+ _a = (0, make_factory_1.makeUnitDefinitionsFactory)(allUnitDefinitions), exports.getTypeUnits = _a.getTypeUnits, exports.getUnitName = _a.getUnitName, exports.getUnitsForField = _a.getUnitsForField, exports.getUnitsForType = _a.getUnitsForType, exports.getUnitsForTypePerField = _a.getUnitsForTypePerField, exports.getUnitLabel = _a.getUnitLabel, exports.getCardUnitsSelect = _a.getCardUnitsSelect, exports.getHardcodedUnitsForView = _a.getHardcodedUnitsForView;
44
+ const getDefaultUnits = () => {
45
+ const { Title, TypeBadge } = allUnitDefinitions;
46
+ return [Title && Title.makeUnit(), TypeBadge && TypeBadge.makeUnit()].filter(Boolean);
47
+ };
48
+ exports.getDefaultUnits = getDefaultUnits;
@@ -0,0 +1,36 @@
1
+ import { TypeObject } from "@fibery/schema";
2
+ export declare const TypeBadgeAbbr: {
3
+ getQuerySelect({ typeObject }: {
4
+ typeObject: TypeObject;
5
+ }): import("@fibery/expression-utils").Select;
6
+ type: string;
7
+ name: string;
8
+ canEdit: (params: {
9
+ typeObject: TypeObject;
10
+ unit: import("../types").DbUnit;
11
+ }) => boolean;
12
+ makeUnit: (params?: {
13
+ expression: import("../types").UnitExpression;
14
+ }) => import("../types").PureUnit;
15
+ getLabel: (params: {
16
+ typeObject: TypeObject;
17
+ unit: import("../types").DbUnit;
18
+ }) => string;
19
+ calculateErrors: (params: {
20
+ typeObject: TypeObject;
21
+ unit: import("../types").DbUnit;
22
+ }) => import("../../tsfixme").$TSFixMe[];
23
+ getExportValue: (params: {
24
+ typeObject: TypeObject;
25
+ unit: import("../types").DbUnit;
26
+ object: import("@fibery/expression-utils/src/types").FiberyObject;
27
+ displaySettings: import("../../field-utils/number").NumberDisplaySettings;
28
+ }) => unknown;
29
+ canExport: (params: {
30
+ unit: import("../types").DbUnit;
31
+ }) => boolean;
32
+ getExportLabel?: ((params: {
33
+ typeObject: TypeObject;
34
+ unit: import("../types").DbUnit;
35
+ }) => string) | undefined;
36
+ };
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TypeBadgeAbbr = void 0;
4
+ const select_1 = require("@fibery/query-utils/src/select");
5
+ const type_badge_abbr_1 = require("../../unit-definitions/type-badge-abbr");
6
+ exports.TypeBadgeAbbr = {
7
+ ...type_badge_abbr_1.TypeBadgeAbbr,
8
+ getQuerySelect({ typeObject }) {
9
+ return typeObject.name === "fibery/view" ? (0, select_1.toSelectMapClause)(["fibery/type"]) : {};
10
+ },
11
+ };