hs-uix 2.0.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/utils.js CHANGED
@@ -31,29 +31,39 @@ var utils_exports = {};
31
31
  __export(utils_exports, {
32
32
  CrmDataTable: () => CrmDataTable,
33
33
  CrmKanban: () => CrmKanban,
34
+ buildActiveFilterChips: () => buildActiveFilterChips,
34
35
  buildCrmSearchConfig: () => buildCrmSearchConfig,
35
36
  buildOptions: () => buildOptions,
36
37
  createStatusTagSortComparator: () => createStatusTagSortComparator,
37
38
  crmSearchResultToOption: () => crmSearchResultToOption,
39
+ dateToTimestamp: () => dateToTimestamp,
38
40
  deriveCardFieldsFromColumns: () => deriveCardFieldsFromColumns,
39
- findOptionLabel: () => findOptionLabel,
41
+ filterRows: () => filterRows,
42
+ findOptionLabel: () => findOptionLabel2,
40
43
  formatCurrency: () => formatCurrency,
41
44
  formatCurrencyCompact: () => formatCurrencyCompact,
42
45
  formatDate: () => formatDate,
46
+ formatDateChip: () => formatDateChip,
43
47
  formatDateTime: () => formatDateTime,
44
48
  formatPercentage: () => formatPercentage,
45
49
  getAutoStatusTagVariant: () => getAutoStatusTagVariant,
46
50
  getAutoTagDisplayValue: () => getAutoTagDisplayValue,
47
51
  getAutoTagVariant: () => getAutoTagVariant,
52
+ getEmptyFilterValue: () => getEmptyFilterValue,
53
+ getEmptyFilterValues: () => getEmptyFilterValues,
48
54
  isDateTimeValueObject: () => isDateTimeValueObject,
49
55
  isDateValueObject: () => isDateValueObject,
56
+ isFilterActive: () => isFilterActive,
50
57
  isTimeValueObject: () => isTimeValueObject,
51
58
  makeCrmSearchMultiSelectField: () => makeCrmSearchMultiSelectField,
52
59
  makeCrmSearchSelectField: () => makeCrmSearchSelectField,
53
60
  normalizeCrmSearchRecord: () => normalizeCrmSearchRecord,
54
61
  normalizeCrmSearchRows: () => normalizeCrmSearchRows,
62
+ resetFilterValues: () => resetFilterValues,
55
63
  resolveCrmObjectType: () => resolveCrmObjectType,
64
+ searchRows: () => searchRows,
56
65
  sumBy: () => sumBy,
66
+ toStableKey: () => toStableKey,
57
67
  useCrmSearchDataSource: () => useCrmSearchDataSource,
58
68
  useCrmSearchOptions: () => useCrmSearchOptions
59
69
  });
@@ -66,11 +76,11 @@ var sumBy = (items, keyOrFn) => (items || []).reduce((total, item) => {
66
76
  }, 0);
67
77
 
68
78
  // src/utils/crmSearchAdapters.js
69
- var import_react5 = __toESM(require("react"));
70
- var import_ui_extensions5 = require("@hubspot/ui-extensions");
79
+ var import_react11 = __toESM(require("react"));
80
+ var import_ui_extensions11 = require("@hubspot/ui-extensions");
71
81
 
72
- // packages/datatable/src/DataTable.jsx
73
- var import_react2 = __toESM(require("react"));
82
+ // src/datatable/DataTable.jsx
83
+ var import_react7 = __toESM(require("react"));
74
84
 
75
85
  // src/utils/query.js
76
86
  var import_fuse = __toESM(require("fuse.js"));
@@ -78,12 +88,15 @@ var getEmptyFilterValue = (filter) => {
78
88
  const type = filter.type || "select";
79
89
  if (type === "multiselect") return [];
80
90
  if (type === "dateRange") return { from: null, to: null };
91
+ if (Object.prototype.hasOwnProperty.call(filter, "emptyValue")) return filter.emptyValue;
81
92
  return "";
82
93
  };
83
94
  var isFilterActive = (filter, value) => {
84
95
  const type = filter.type || "select";
85
96
  if (type === "multiselect") return Array.isArray(value) && value.length > 0;
86
97
  if (type === "dateRange") return value && (value.from || value.to);
98
+ if (value == null) return false;
99
+ if (Object.prototype.hasOwnProperty.call(filter, "emptyValue")) return value !== filter.emptyValue;
87
100
  return !!value;
88
101
  };
89
102
  var formatDateChip = (dateObj) => {
@@ -99,6 +112,47 @@ var dateToTimestamp = (dateObj) => {
99
112
  if (!dateObj) return null;
100
113
  return new Date(dateObj.year, dateObj.month, dateObj.date).getTime();
101
114
  };
115
+ var getEmptyFilterValues = (filters, options = {}) => {
116
+ const out = {};
117
+ for (const filter of filters || []) {
118
+ out[filter.name] = typeof options.getEmptyValue === "function" ? options.getEmptyValue(filter) : getEmptyFilterValue(filter);
119
+ }
120
+ return out;
121
+ };
122
+ var resetFilterValues = (filters, values = {}, key = "all", options = {}) => {
123
+ if (key === "all") return getEmptyFilterValues(filters, options);
124
+ const filter = (filters || []).find((item) => item.name === key);
125
+ const emptyValue = filter ? typeof options.getEmptyValue === "function" ? options.getEmptyValue(filter) : getEmptyFilterValue(filter) : options.fallbackEmptyValue ?? "";
126
+ return { ...values || {}, [key]: emptyValue };
127
+ };
128
+ var findOptionLabel = (filter, value) => {
129
+ var _a;
130
+ return ((_a = (filter.options || []).find((option) => option.value === value)) == null ? void 0 : _a.label) || value;
131
+ };
132
+ var buildActiveFilterChips = (filters, values = {}, options = {}) => {
133
+ const chips = [];
134
+ const isActive = options.isFilterActive || isFilterActive;
135
+ const dateFormatter = options.formatDate || formatDateChip;
136
+ const dateJoiner = options.dateJoiner ?? " ";
137
+ for (const filter of filters || []) {
138
+ const value = values == null ? void 0 : values[filter.name];
139
+ if (!isActive(filter, value)) continue;
140
+ const type = filter.type || "select";
141
+ const prefix = filter.chipLabel || filter.placeholder || filter.label || filter.name;
142
+ if (type === "multiselect") {
143
+ const labels = (Array.isArray(value) ? value : []).map((item) => findOptionLabel(filter, item)).join(", ");
144
+ chips.push({ key: filter.name, label: `${prefix}: ${labels}` });
145
+ } else if (type === "dateRange") {
146
+ const parts = [];
147
+ if (value == null ? void 0 : value.from) parts.push(`${options.dateFromPrefix ?? "from "}${dateFormatter(value.from)}`);
148
+ if (value == null ? void 0 : value.to) parts.push(`${options.dateToPrefix ?? "to "}${dateFormatter(value.to)}`);
149
+ chips.push({ key: filter.name, label: `${prefix}: ${parts.join(dateJoiner)}` });
150
+ } else {
151
+ chips.push({ key: filter.name, label: `${prefix}: ${findOptionLabel(filter, value)}` });
152
+ }
153
+ }
154
+ return chips;
155
+ };
102
156
  var toStableKey = (value) => {
103
157
  try {
104
158
  return JSON.stringify(value);
@@ -106,7 +160,7 @@ var toStableKey = (value) => {
106
160
  return String(value);
107
161
  }
108
162
  };
109
- var filterRows = (rows, filters, values) => {
163
+ var filterRows = (rows, filters, values = {}) => {
110
164
  let result = rows;
111
165
  for (const filter of filters || []) {
112
166
  const value = values[filter.name];
@@ -194,14 +248,908 @@ var useSelectionReset = ({ resetKey, enabled, isControlled, clearSelection }) =>
194
248
  }, [resetKey, enabled, isControlled, clearSelection]);
195
249
  };
196
250
 
197
- // packages/datatable/src/editValidation.js
251
+ // src/common-components/CollectionCount.js
252
+ var import_react2 = __toESM(require("react"));
253
+ var import_ui_extensions2 = require("@hubspot/ui-extensions");
254
+ var h = import_react2.default.createElement;
255
+ var resolveLabel = (label, count) => {
256
+ if (typeof label === "function") return label(count);
257
+ if (label && typeof label === "object") return count === 1 ? label.singular : label.plural;
258
+ return label || "items";
259
+ };
260
+ var formatCollectionCount = ({ shown, total, label = "items", formatter }) => {
261
+ const resolvedShown = Number(shown ?? total ?? 0);
262
+ const resolvedTotal = Number(total ?? resolvedShown);
263
+ if (typeof formatter === "function") return formatter(resolvedShown, resolvedTotal);
264
+ const resolvedLabel = resolveLabel(label, resolvedTotal);
265
+ return resolvedShown === resolvedTotal ? `${resolvedTotal} ${resolvedLabel}` : `${resolvedShown} of ${resolvedTotal} ${resolvedLabel}`;
266
+ };
267
+ var CollectionCount = ({
268
+ shown,
269
+ total,
270
+ label,
271
+ text,
272
+ formatter,
273
+ bold = false,
274
+ variant = "microcopy",
275
+ format
276
+ }) => h(
277
+ import_ui_extensions2.Text,
278
+ {
279
+ variant,
280
+ format: format || (bold ? { fontWeight: "bold" } : void 0)
281
+ },
282
+ text ?? formatCollectionCount({ shown, total, label, formatter })
283
+ );
284
+
285
+ // src/common-components/CollectionToolbar.js
286
+ var import_react6 = __toESM(require("react"));
287
+ var import_ui_extensions6 = require("@hubspot/ui-extensions");
288
+
289
+ // src/common-components/ActiveFilterChips.js
290
+ var import_react3 = __toESM(require("react"));
291
+ var import_ui_extensions3 = require("@hubspot/ui-extensions");
292
+ var h2 = import_react3.default.createElement;
293
+ var ActiveFilterChips = ({
294
+ chips = [],
295
+ showBadges = true,
296
+ showClearAll = true,
297
+ clearAllLabel = "Clear all",
298
+ onRemove,
299
+ gap = "sm"
300
+ }) => {
301
+ if (!Array.isArray(chips) || chips.length === 0) return null;
302
+ if (!showBadges && !showClearAll) return null;
303
+ return h2(
304
+ import_ui_extensions3.Flex,
305
+ { direction: "row", align: "center", gap, wrap: "wrap" },
306
+ ...showBadges ? chips.map((chip) => h2(
307
+ import_ui_extensions3.Tag,
308
+ {
309
+ key: chip.key,
310
+ variant: "default",
311
+ onDelete: () => onRemove == null ? void 0 : onRemove(chip.key)
312
+ },
313
+ chip.label
314
+ )) : [],
315
+ showClearAll ? h2(
316
+ import_ui_extensions3.Button,
317
+ {
318
+ variant: "transparent",
319
+ size: "extra-small",
320
+ onClick: () => onRemove == null ? void 0 : onRemove("all")
321
+ },
322
+ clearAllLabel
323
+ ) : null
324
+ );
325
+ };
326
+
327
+ // src/common-components/CollectionFilterControl.js
328
+ var import_react5 = __toESM(require("react"));
329
+ var import_ui_extensions5 = require("@hubspot/ui-extensions");
330
+
331
+ // src/common-components/Icon.js
332
+ var import_react4 = __toESM(require("react"));
333
+ var import_ui_extensions4 = require("@hubspot/ui-extensions");
334
+
335
+ // src/common-components/svgDefaults.js
336
+ var HS_FONT_FAMILY = '"Lexend Deca", Helvetica, Arial, sans-serif';
337
+ var HS_TEXT_COLOR = "#33475b";
338
+ var HS_SUBTLE_BG = "#F5F8FA";
339
+ var HS_TAG_SUBTLE_BORDER = "#7C98B6";
340
+ var HS_TAG_TEXT_COLOR = HS_TEXT_COLOR;
341
+ var HS_TAG_FONT_SIZE = 12;
342
+ var HS_TAG_LINE_HEIGHT = 22;
343
+ var HS_TAG_PADDING_X = 8;
344
+ var HS_TAG_PADDING_Y = 0;
345
+ var HS_TAG_BORDER_RADIUS = 0;
346
+ var HS_TAG_BORDER_WIDTH = 1;
347
+
348
+ // src/common-components/icons.generated.js
349
+ var GENERATED_ICONS = {
350
+ "Add": { "viewBox": "0 0 32 32", "paths": ["M3.85 17.79h10.33v10.38c0 1.01.82 1.82 1.82 1.82s1.82-.82 1.82-1.82V17.84h10.33c1.01 0 1.82-.82 1.82-1.82s-.82-1.82-1.82-1.82H17.82V3.82C17.82 2.81 17 2 16 2s-1.82.82-1.82 1.82v10.33H3.85c-1.01 0-1.82.82-1.82 1.82s.82 1.82 1.82 1.82"] },
351
+ "AdvancedFilters": { "viewBox": "0 0 32 32", "paths": ["M29 7H3c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1h26c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1m-2 7.88v-1c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h20c.55 0 1-.45 1-1m-3 8.87v-1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1"] },
352
+ "Appointment": { "viewBox": "0 0 32 32", "paths": ["M26.12 16.69c-2.98 0-4.41 3.26-4.41 3.26s-1.42-3.26-4.41-3.26-4 2.92-4 4.41c0 2.98 2.85 7.12 8.41 9.9 5.56-2.78 8.41-6.92 8.41-9.9 0-1.5-1.02-4.41-4.01-4.41Z", "M11.37 23.22H5c-.36 0-.65-.29-.65-.65V7.34c0-.31.25-.56.56-.56h1.65v1.84c0 .68.55 1.24 1.24 1.24s1.24-.55 1.24-1.24V6.78h7.94v1.84c0 .68.55 1.24 1.24 1.24s1.24-.55 1.24-1.24V6.78h1.56c.36 0 .65.29.65.65v7.2c0 .32.26.57.57.57h1.33c.32 0 .57-.26.57-.57V6.49c0-1.2-.98-2.18-2.18-2.18h-2.51V2.23c0-.68-.55-1.24-1.24-1.24s-1.24.55-1.24 1.24v2.08H9.03V2.23c0-.68-.55-1.24-1.24-1.24s-1.24.55-1.24 1.24v2.08h-2.5c-1.21 0-2.19.98-2.19 2.18V23.5c0 1.21.98 2.19 2.19 2.19h7.31c.25 0 .45-.2.45-.45v-1.57c0-.25-.2-.45-.45-.45Z"] },
353
+ "Approvals": { "viewBox": "0 0 32 32", "paths": ["M30 16c0-1.15-2.31-1.99-2.6-3.06-.29-1.1 1.28-2.98.73-3.95-.57-.97-2.98-.55-3.78-1.34-.8-.8-.36-3.21-1.34-3.78-.96-.56-2.84 1.03-3.95.73C17.99 4.32 17.16 2 16 2s-1.99 2.31-3.06 2.6c-1.1.29-2.98-1.28-3.95-.73-.97.57-.55 2.98-1.34 3.78-.8.8-3.21.36-3.78 1.34-.56.96 1.03 2.84.73 3.95C4.32 14.01 2 14.84 2 16s2.31 1.99 2.6 3.06c.29 1.1-1.28 2.98-.73 3.95.57.97 2.98.55 3.78 1.34.8.8.36 3.21 1.34 3.78.96.56 2.84-1.03 3.95-.73 1.07.28 1.9 2.6 3.06 2.6s1.99-2.31 3.06-2.6c1.1-.29 2.98 1.28 3.95.73.97-.57.55-2.98 1.34-3.78.8-.8 3.21-.36 3.78-1.34.56-.96-1.03-2.84-.73-3.95.28-1.07 2.6-1.9 2.6-3.06m-6.46-2.94-8.61 8.61c-.25.25-.58.38-.93.38s-.68-.13-.93-.39l-4.59-4.59a1.33 1.33 0 0 1 1.88-1.88l3.66 3.66 7.68-7.68a1.33 1.33 0 0 1 1.88 1.88h-.02Z"] },
354
+ "ArtificialIntelligence": { "viewBox": "0 0 32 32", "paths": ["m16.97 2.58 2.66 4.86c1.14 2.09 2.86 3.8 4.94 4.94l4.86 2.66c.77.42.77 1.53 0 1.94l-4.85 2.66c-2.09 1.14-3.8 2.86-4.94 4.94l-2.66 4.85c-.42.77-1.53.77-1.94 0l-2.66-4.86c-1.14-2.09-2.86-3.8-4.94-4.94l-4.86-2.66c-.77-.42-.77-1.53 0-1.94l4.86-2.66c2.09-1.14 3.8-2.86 4.94-4.94l2.64-4.85c.42-.77 1.53-.77 1.94 0Z"] },
355
+ "ArtificialIntelligenceEnhanced": { "viewBox": "0 0 32 32", "paths": ["m20.47 12.37-1.69 3.09a7.97 7.97 0 0 1-3.14 3.14l-3.09 1.69c-.49.27-.49.97 0 1.23l3.09 1.68c1.33.73 2.42 1.82 3.15 3.15l1.69 3.09c.27.49.97.49 1.23 0l1.69-3.09a7.97 7.97 0 0 1 3.14-3.14l3.09-1.69c.49-.27.49-.97 0-1.23l-3.09-1.69a7.97 7.97 0 0 1-3.14-3.14l-1.69-3.09a.698.698 0 0 0-1.23 0ZM8 2.46 6.78 4.69c-.52.96-1.31 1.76-2.28 2.28L2.27 8.19c-.35.2-.35.7 0 .9l2.23 1.22c.96.52 1.76 1.31 2.28 2.28L8 14.82c.2.35.7.35.9 0l1.22-2.24c.52-.96 1.31-1.76 2.28-2.28l2.23-1.22c.35-.2.35-.7 0-.9L12.4 6.96a5.63 5.63 0 0 1-2.28-2.28L8.9 2.45c-.2-.35-.7-.35-.9 0Z"] },
356
+ "Attach": { "viewBox": "0 0 32 32", "paths": ["M20.66 11.97a1.52 1.52 0 1 0-2.16-2.14l-7.49 7.49c-.57.65-.92 1.5-.92 2.44 0 2.04 1.66 3.7 3.7 3.7.93 0 1.77-.34 2.42-.9s10.82-10.82 10.82-10.82a5.88 5.88 0 0 0 1.42-3.84 5.898 5.898 0 0 0-9.75-4.47S5.91 16.21 5.91 16.21a8.05 8.05 0 0 0-2.36 5.71c0 4.47 3.62 8.09 8.09 8.09 2.24 0 4.26-.91 5.72-2.38l9.47-9.47a1.52 1.52 0 0 0-2.15-2.15l-9.47 9.46c-.92.94-2.2 1.53-3.61 1.53-2.78 0-5.04-2.25-5.04-5.04 0-1.42.59-2.7 1.53-3.61S20.88 5.56 20.88 5.56a2.83 2.83 0 0 1 2.07-.89c1.58 0 2.85 1.28 2.85 2.85 0 .81-.34 1.55-.88 2.06S14.1 20.4 14.1 20.4a.702.702 0 0 1-.99-.99l7.55-7.47Z"] },
357
+ "AudienceTargeting": { "viewBox": "0 0 32 32", "paths": ["M27.46 13.07c-1.08-4.21-4.39-7.5-8.61-8.55a3 3 0 0 0-3.48-2.44 3 3 0 0 0-2.44 2.44 11.89 11.89 0 0 0-8.45 8.56 2.915 2.915 0 0 0-2.44 3.32 2.92 2.92 0 0 0 2.44 2.44c1.04 4.21 4.28 7.52 8.47 8.64a3 3 0 0 0 3.48 2.44 3 3 0 0 0 2.44-2.44c4.24-1.07 7.55-4.37 8.62-8.61 1.59-.22 2.71-1.7 2.48-3.29a2.906 2.906 0 0 0-2.48-2.48zM18.5 25.66a3.03 3.03 0 0 0-2-1.45V21.5c0-.16-.14-.29-.31-.29h-.72a.29.29 0 0 0-.29.29v2.73c-.8.18-1.48.7-1.88 1.42a9.92 9.92 0 0 1-6.95-7.04 2.95 2.95 0 0 0 1.49-1.74h2.66c.17 0 .31-.14.31-.31v-.72c0-.16-.14-.29-.31-.29H7.95c-.15-.93-.73-1.72-1.57-2.15a9.95 9.95 0 0 1 6.92-6.96c.41.7 1.09 1.21 1.89 1.39v2.99c0 .16.13.3.29.31h.72c.17 0 .31-.14.31-.31V7.85c.84-.16 1.58-.67 2.01-1.41 3.43.91 6.12 3.57 7.06 6.99-.8.41-1.36 1.17-1.54 2.05h-2.87c-.16 0-.3.13-.31.29v.72c0 .17.14.31.31.31h2.97c.24.75.77 1.37 1.47 1.72a9.95 9.95 0 0 1-7.11 7.13Z"] },
358
+ "Automations": { "viewBox": "0 0 32 32", "paths": ["M19 11h-6.86c-.63 0-1.14-.51-1.14-1.14V3c0-.63.51-1.14 1.14-1.14H19c.63 0 1.14.51 1.14 1.14v6.86c0 .63-.51 1.14-1.14 1.14m-5.71-2.29h4.57V4.14h-4.57zM9.86 29.29H3c-.63 0-1.14-.51-1.14-1.14v-6.86c0-.63.51-1.14 1.14-1.14h6.86c.63 0 1.14.51 1.14 1.14v6.86c0 .63-.51 1.14-1.14 1.14M4.14 27h4.57v-4.57H4.14zM28.14 29.29h-6.86c-.63 0-1.14-.51-1.14-1.14v-6.86c0-.63.51-1.14 1.14-1.14h6.86c.63 0 1.14.51 1.14 1.14v6.86c0 .63-.51 1.14-1.14 1.14M22.43 27H27v-4.57h-4.57z", "M24.71 22.43c-.63 0-1.14-.51-1.14-1.14v-4.57h-16v4.57a1.14 1.14 0 1 1-2.28 0v-5.71c0-.63.51-1.14 1.14-1.14h18.29c.63 0 1.14.51 1.14 1.14v5.71c0 .63-.51 1.14-1.14 1.14Z", "M15.57 16.71c-.63 0-1.14-.51-1.14-1.14V9.86a1.14 1.14 0 1 1 2.28 0v5.71c0 .63-.51 1.14-1.14 1.14"] },
359
+ "Bank": { "viewBox": "0 0 32 32", "paths": ["M4.12 27.13h23.75c.53 0 .96.43.96.96v.95c0 .53-.43.96-.96.96H4.12a.96.96 0 0 1-.96-.96v-.95c0-.53.43-.96.96-.96m.87-14.76h22.03c.65 0 1.16-.53 1.16-1.18 0-.3-.12-.59-.33-.81L16.77 2.35a1.15 1.15 0 0 0-1.62-.02l-.02.02-10.97 8.04c-.45.45-.45 1.19 0 1.64.22.22.51.34.82.34Zm4.87 1.29H8.17a.67.67 0 0 0-.68.66v9.24H5.8c-.41 0-.74.32-.74.72V25c0 .41.33.74.74.74h20.39c.41 0 .74-.33.74-.74v-.71c0-.41-.33-.73-.73-.73h-1.7v-9.19a.67.67 0 0 0-.66-.68H22.2a.67.67 0 0 0-.68.66v9.24h-4v-9.22a.67.67 0 0 0-.66-.68h-1.7a.67.67 0 0 0-.68.66v9.24h-3.95v-9.22a.67.67 0 0 0-.63-.71z"] },
360
+ "Block": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2m9.69 14c0 1.91-.57 3.68-1.53 5.17l.02-.04L10.86 7.82c1.45-.94 3.23-1.5 5.14-1.51 5.35 0 9.69 4.34 9.69 9.69M6.31 16c0-1.91.57-3.68 1.53-5.17l-.02.04 13.32 13.3a9.47 9.47 0 0 1-5.13 1.53c-5.35 0-9.69-4.34-9.69-9.69Z"] },
361
+ "Blog": { "viewBox": "0 0 32 32", "paths": ["M26.91 4.23H9.46a3.05 3.05 0 0 0-3.05 3.05V24.3c0 .49-.4.89-.89.89s-.89-.4-.89-.89V11.65c-.06-.68-.62-1.2-1.31-1.2s-1.25.53-1.31 1.2v12.66c0 1.85 1.45 3.36 3.28 3.46h19.92c2.65 0 4.8-2.15 4.8-4.8V7.29a3.05 3.05 0 0 0-3.05-3.05h-.04Zm.44 18.75c0 1.2-.98 2.17-2.18 2.18H9.02V7.3c0-.24.2-.44.44-.44h17.46c.24 0 .44.2.44.44v15.68ZM12.08 8.6h12.21c.73 0 1.31.59 1.31 1.31v3.48c0 .73-.59 1.31-1.31 1.31H12.08c-.73 0-1.31-.59-1.31-1.31V9.91c0-.72.59-1.31 1.31-1.31m12.21 7.85H12.08c-.68.06-1.2.62-1.2 1.31s.53 1.25 1.2 1.31h12.33c.73 0 1.31-.59 1.31-1.31s-.59-1.31-1.31-1.31h-.11Zm0 4.37H11.97c-.73 0-1.31.59-1.31 1.31s.59 1.31 1.31 1.31H24.4c.73 0 1.31-.59 1.31-1.31s-.59-1.31-1.31-1.31z"] },
362
+ "Book": { "viewBox": "0 0 32 32", "paths": ["M9 2h17.5c.97 0 1.75.78 1.75 1.75v17.5c0 .97-.78 1.75-1.75 1.75H9.04c-.85 0-1.57.59-1.75 1.39q-.03.18-.03.36c0 .97.78 1.75 1.75 1.75h17.46c.85 0 1.56.59 1.75 1.39.02.12.04.24.04.36 0 .97-.78 1.75-1.75 1.75H9a5.25 5.25 0 0 1-5.25-5.25V7.25C3.75 4.35 6.1 2 9 2"] },
363
+ "Bookmark": { "viewBox": "0 0 32 32", "paths": ["M6 31.86c-.15 0-.3-.03-.44-.09-.43-.18-.71-.59-.71-1.06V1c0-.63.51-1.14 1.14-1.14h20.57c.63 0 1.14.51 1.14 1.14v29.71c0 .46-.28.88-.71 1.06s-.92.08-1.25-.25l-9.48-9.48-9.48 9.48c-.22.22-.51.33-.81.33ZM7.14 2.14v25.81l8.23-8.23c.26-.33.68-.5 1.1-.43.26.05.49.18.67.37l8.29 8.29V2.14z"] },
364
+ "BreezeRegenerate": { "viewBox": "0 0 32 32", "paths": ["M30.85 7.89c-3.66 0-6.72-3.05-6.72-6.71 0-.26-.21-.46-.47-.46s-.46.21-.46.47c0 3.66-3.06 6.71-6.72 6.71a.47.47 0 1 0 0 .94c3.66 0 6.72 3.05 6.72 6.71 0 .26.21.47.46.47s.47-.21.47-.47c0-3.66 3.06-6.71 6.72-6.71.26 0 .47-.21.47-.46a.47.47 0 0 0-.47-.47ZM23.92 20.03c-.67-.14-1.34.3-1.47.98-.87 4.25-4.51 7.44-8.84 7.75-2.6.19-5.1-.65-7.07-2.35a9.66 9.66 0 0 1-3.33-6.66 9.67 9.67 0 0 1 6.86-10l-1.11 1.38c-.44.53-.35 1.32.18 1.76.24.18.51.27.79.27.36 0 .73-.15.97-.46l2.83-3.5s.13-.17.16-.23c.3-.52.17-1.19-.3-1.57l-3.55-3.05c-.52-.45-1.31-.39-1.76.14-.45.52-.39 1.31.13 1.76L9.6 7.28C4 8.83.29 14.08.71 19.93A12.17 12.17 0 0 0 4.9 28.3c2.25 1.94 5.05 2.99 7.99 2.99.3 0 .6-.02.9-.04 5.44-.39 10.01-4.39 11.11-9.74.13-.68-.3-1.34-.98-1.48"] },
365
+ "BreezeSingleStar": { "viewBox": "0 0 32 32", "paths": ["M29.62 15.12c-6.94 0-12.74-5.79-12.74-12.73 0-.48-.4-.88-.88-.88s-.88.4-.88.88c0 6.94-5.8 12.73-12.74 12.73-.49 0-.88.4-.88.88 0 .49.39.88.88.88 6.94 0 12.74 5.79 12.74 12.73 0 .48.4.88.88.88s.88-.4.88-.88c0-6.94 5.8-12.73 12.74-12.73.49 0 .88-.4.88-.88 0-.49-.39-.88-.88-.88"] },
366
+ "Bulb": { "viewBox": "0 0 32 32", "paths": ["M16 2c-4.73.02-8.56 3.85-8.56 8.58 0 1.09.2 2.13.57 3.08l-.02-.06c.29.73.64 1.37 1.06 1.95l-.02-.03q.075.12.15.21s.12.15.12.15a6.36 6.36 0 0 1 1.29 3.87v.33-.02c0 .26.05.51.13.74v-.02c.31.75 1.04 1.26 1.89 1.26h6.74c.87 0 1.61-.54 1.9-1.31.08-.23.13-.49.13-.75v-.24c0-1.46.49-2.81 1.32-3.88v.02l.13-.18c.05-.06.09-.12.13-.18.4-.56.75-1.2 1.02-1.87l.02-.06c.35-.9.55-1.94.55-3.03a8.58 8.58 0 0 0-8.56-8.58Zm3.01 10.97a8.3 8.3 0 0 0-2.71 4.39v.06c-.09.39-.43.69-.83.69h-.16a.84.84 0 0 1-.69-.82c0-.05 0-.1.01-.15a9.74 9.74 0 0 1 1.96-4.06v.02h-.3c-.89 0-1.78.04-2.65.13h.11-.11c-.31 0-.58-.17-.72-.41a.852.852 0 0 1 .05-.92c.42-.58.94-1.21 1.47-1.85.69-.8 1.36-1.68 1.98-2.59l.06-.1c.14-.27.42-.46.74-.46.17 0 .33.05.46.14.25.15.41.41.41.72 0 .16-.05.31-.12.44-.72 1.08-1.44 2.02-2.21 2.91l.03-.04-.28.33c.3-.01.66-.02 1.01-.02.75 0 1.5.04 2.23.1h-.09c.34.04.6.28.69.6a.839.839 0 0 1-.33.91Zm.02 14.11h-6.02c-.46 0-.84.37-.84.84s.37.84.84.84h1.81a1.25 1.25 0 0 0 2.5 0h1.67c.46 0 .84-.37.84-.84s-.37-.84-.84-.84h.03Zm.53-1.67h-7.1c-.46 0-.84-.37-.84-.84s.37-.84.84-.84h7.1c.46 0 .84.37.84.84s-.37.84-.84.84"] },
367
+ "Calling": { "viewBox": "0 0 32 32", "paths": ["m3.68 4.3 1.63-1.63C5.73 2.25 6.3 2 6.94 2s1.21.26 1.63.67l4.36 4.36c.42.42.68 1 .68 1.63s-.26 1.22-.68 1.63l-3.18 3.18c-.28.28-.46.67-.46 1.09s.17.81.46 1.09l6.55 6.55a1.543 1.543 0 0 0 2.18 0l3.18-3.18c.42-.42 1-.68 1.63-.68s1.22.26 1.63.68l4.38 4.37c.42.42.68 1 .68 1.63s-.26 1.22-.68 1.63l-1.65 1.63c-1.74 1.74-4.56 2.12-7.77 1.22-1.18-.33-2.2-.71-3.17-1.18l.11.05a27.8 27.8 0 0 1-7.72-5.54 28 28 0 0 1-5.47-7.57l-.07-.16c-.23-.47-.42-.93-.61-1.41-1.45-3.86-1.34-7.38.7-9.42Z"] },
368
+ "CallingHangup": { "viewBox": "0 0 32 32", "paths": ["M24.91 12.01c-.38-.17-.76-.33-1.17-.47-2.24-.81-4.82-1.27-7.51-1.27h-.24.01-.23c-2.69 0-5.27.47-7.66 1.32l.16-.05c-.95.34-1.75.72-2.51 1.16l.07-.04c-2.37 1.36-3.82 3.21-3.82 5.24v1.91c0 1.05.85 1.91 1.91 1.91h5.09c1.05 0 1.91-.85 1.91-1.91v-3.74c0-.7.57-1.26 1.27-1.27h7.64c.7 0 1.27.57 1.27 1.27v3.74c0 1.06.85 1.92 1.91 1.92h5.1c1.05 0 1.91-.85 1.91-1.91V17.9c0-2.37-1.99-4.49-5.09-5.89Z"] },
369
+ "CallingMade": { "viewBox": "0 0 32 32", "paths": ["M2.83 15.62c.14.39.31.78.51 1.18 1.23 2.5 2.8 4.64 4.67 6.46 1.83 1.87 3.97 3.42 6.33 4.58l.14.06c.72.35 1.57.68 2.45.92l.11.03c2.66.72 5.05.44 6.5-1.02l1.35-1.37c.36-.35.57-.84.57-1.38s-.22-1.03-.57-1.38l-3.67-3.64c-.35-.35-.83-.57-1.37-.57s-1.02.22-1.37.57l-2.66 2.66c-.23.23-.56.38-.91.38s-.68-.14-.91-.38l-5.51-5.46c-.24-.23-.38-.56-.38-.91s.15-.68.38-.91l2.66-2.66c.35-.35.57-.83.57-1.37s-.22-1.02-.57-1.37L7.52 6.36c-.35-.35-.83-.57-1.37-.57s-1.02.22-1.37.57L3.41 7.72c-1.71 1.71-1.8 4.66-.58 7.9M28.18 3.08l-7.24 7.24-2.98-2.98c-.19-.19-.46-.31-.76-.31-.59 0-1.07.48-1.07 1.07 0 .29.12.56.31.76l3.73 3.73a1.09 1.09 0 0 0 1.52 0l7.99-7.99a1.09 1.09 0 0 0 0-1.52 1.09 1.09 0 0 0-1.52 0Z"] },
370
+ "CallingMissed": { "viewBox": "0 0 32 32", "paths": ["M3.24 16.52c.14.39.31.77.5 1.17 1.21 2.48 2.75 4.59 4.59 6.4a22.9 22.9 0 0 0 6.27 4.54l.13.06c.71.35 1.55.67 2.43.92l.11.03c2.64.71 5 .43 6.44-1.01l1.35-1.35c.35-.35.56-.83.56-1.35s-.21-1.01-.56-1.35l-3.62-3.62c-.35-.35-.83-.56-1.35-.56s-1.01.21-1.35.56L16.1 23.6c-.23.23-.55.37-.91.37s-.67-.14-.91-.37l-5.45-5.41c-.23-.23-.38-.55-.38-.91s.14-.67.38-.91l2.64-2.64c.35-.35.56-.83.56-1.35s-.21-1.01-.56-1.35l-3.6-3.64c-.35-.35-.83-.56-1.35-.56s-1.01.21-1.35.56L3.81 8.74c-1.69 1.7-1.78 4.62-.57 7.82Zm14.02-2.21c.19.19.45.31.74.31s.55-.12.74-.31l4.51-4.51 4.51 4.51c.19.19.45.31.74.31.58 0 1.05-.47 1.05-1.05 0-.29-.12-.55-.31-.74l-4.51-4.51 4.51-4.51c.19-.19.31-.45.31-.74s-.12-.55-.31-.74-.45-.31-.74-.31-.55.12-.74.31l-4.51 4.51-4.51-4.51c-.19-.19-.45-.31-.74-.31s-.55.12-.74.31-.31.45-.31.74.12.55.31.74l4.51 4.51-4.51 4.51c-.19.19-.31.45-.31.74s.12.55.31.74"] },
371
+ "CallingVoicemail": { "viewBox": "0 0 32 32", "paths": ["M8.45 22.48c-3.58 0-6.45-2.9-6.45-6.47s2.9-6.48 6.48-6.48 6.48 2.9 6.48 6.48c0 1.49-.51 2.9-1.43 4.05h4.92a6.4 6.4 0 0 1-1.43-4.05c0-3.58 2.9-6.48 6.48-6.48s6.48 2.9 6.48 6.48-2.66 6.26-6.06 6.47H8.42Zm.03-10.53c-2.24 0-4.06 1.82-4.06 4.06s1.69 3.95 3.85 4.06h.46c2.13-.13 3.81-1.92 3.81-4.05s-1.82-4.06-4.06-4.06Zm15.03 0c-2.24 0-4.06 1.82-4.06 4.06s1.67 3.92 3.82 4.05h.5c2.14-.13 3.82-1.91 3.82-4.05s-1.82-4.06-4.06-4.06z"] },
372
+ "CallTranscript": { "viewBox": "0 0 32 32", "paths": ["M27.19 10.56a1.3 1.3 0 0 0-.13-.35s0-.07 0-.07c-.06-.11-.13-.21-.22-.3l-7.52-7.5c-.09-.09-.19-.16-.3-.22s-.08 0-.08 0c-.08-.04-.17-.08-.26-.1H8.97c-2.3 0-4.17 1.85-4.21 4.15v20.11c0 2.2 1.73 3.74 4.21 3.74H23c2.47 0 4.21-1.54 4.21-3.74V10.57h-.03Zm-2.82 15.7c0 .77-.77.97-1.4.97H8.98c-.64 0-1.4-.17-1.4-.97V6.15c0-.77.63-1.4 1.4-1.4h7.95v5.14c0 1.3 1.04 2.34 2.33 2.34h5.11zM11.05 14.1l.65-.66c.17-.16.4-.26.66-.26s.49.1.66.26 1.74 1.75 1.74 1.75c.17.17.28.4.28.66s-.11.49-.28.66l-1.28 1.29a.604.604 0 0 0 0 .86l2.62 2.63a.63.63 0 0 0 .88 0L18.27 20c.16-.17.4-.28.65-.28s.49.11.65.28l1.75 1.74c.16.17.26.4.26.66s-.1.49-.26.66l-.66.7c-.53.44-1.22.7-1.97.7a3 3 0 0 1-1.16-.23h.02c-.48-.14-.88-.3-1.27-.5l.04.02c-1.2-.59-2.22-1.33-3.1-2.22-.89-.88-1.64-1.9-2.19-3.03l-.03-.07c-.09-.19-.17-.38-.23-.56-.58-1.55-.55-2.92.27-3.77Z"] },
373
+ "Campaigns": { "viewBox": "0 0 32 32", "paths": ["M25.72 19.65 21.46 6.22a.9.9 0 0 0-1.13-.58c-.06.02-.12.04-.17.07L1.46 16.45c-.37.21-.54.65-.42 1.06l1.5 4.71c.13.41.53.67.95.62l3.48-.38c.32 2.4 2.16 4.14 4.13 3.92s3.37-2.32 3.16-4.72l10.71-.86c.49-.05.84-.49.79-.98 0-.06-.02-.12-.04-.17m-14.8 5.15c-1.21.14-2.34-.96-2.56-2.46l4.51-.5c.12 1.48-.74 2.78-1.95 2.95Zm15.4-12.34a.74.74 0 0 1-.75-.74c0-.33.21-.62.53-.72l3.94-1.24c.4-.12.81.1.94.5s-.1.81-.5.94l-3.94 1.22a.9.9 0 0 1-.22.04m-1.7-2.27c-.17 0-.33-.06-.46-.16a.747.747 0 0 1-.11-1.05l1.86-2.3a.748.748 0 0 1 1.17.93l-1.86 2.31c-.15.17-.36.27-.58.27Zm4.64 6.02a.8.8 0 0 1-.22 0l-2.77-.93a.745.745 0 0 1 .47-1.41l2.74.89a.742.742 0 0 1-.21 1.45Z"] },
374
+ "Cap": { "viewBox": "0 0 32 32", "paths": ["m23.16 17.51-6.51 2.36q-.285.09-.63.09c-.345 0-.44-.03-.65-.1h.02l-.63-.22-3.88-1.43-1.99-.73-.87-.31v3.23c0 1.19.79 2.39 2.34 3.29.1.05.2.09.29.13 1.24.59 2.68 1.01 4.19 1.21h.07c.33.04.72.05 1.11.05s.78-.02 1.16-.05h-.05c1.59-.18 3.04-.59 4.38-1.2l-.09.04c.09-.04.19-.08.29-.13 1.56-.87 2.34-2.09 2.34-3.29v-3.29l-.88.34Zm6.32-5.84-2.82-1.02-2.52-.87-3.28-1.23 1.26.45-3.58-1.3-1.16-.43.27.1-.37-.14-.63-.23q-.285-.09-.63-.09c-.345 0-.44.03-.65.1h.02l-.63.22-1.26.46-3.62 1.3-2.52.87-4.85 1.75c-.69.25-.69.66 0 .87l4.85 1.75 2.52 1.02 3.58 1.3 1.26.46.63.23q.285.09.63.09c.345 0 .44-.03.65-.1h-.02l.63-.22 1.26-.46 2.88-1.04 4.83-1.76v6.65c0 .72.59 1.31 1.31 1.31s1.31-.59 1.31-1.31v-7.62l.63-.23c.71-.24.71-.65.02-.9Zm-12.24 1.17c-.36.19-.79.29-1.24.29s-.88-.11-1.26-.3h.02c-.3-.1-.51-.38-.51-.71s.21-.61.51-.71c.36-.19.79-.3 1.24-.3s.88.11 1.26.3h-.02a.75.75 0 0 1 .02 1.42Z"] },
375
+ "Cart": { "viewBox": "0 0 32 32", "paths": ["M9.18 27.18c0 1.29-1.04 2.33-2.33 2.33s-2.33-1.04-2.33-2.33 1.04-2.33 2.33-2.33 2.33 1.04 2.33 2.33m12.47 0c0 1.29-1.04 2.33-2.33 2.33s-2.33-1.04-2.33-2.33 1.04-2.33 2.33-2.33 2.33 1.04 2.33 2.33m6.39-24.69h-4.57c-.93 0-1.7.68-1.84 1.57s-.62 4.05-.62 4.05H5.41c-1.04 0-1.97.47-2.6 1.2-.5.6-.8 1.38-.8 2.23 0 .2.02.41.05.6v-.02l1.25 7.5a4.17 4.17 0 0 0 4.01 3.39h11.6c2-.04 3.65-1.49 4-3.39v-.03l1.25-7.5.87-5.86h3.1c1.03 0 1.87-.84 1.87-1.87s-.84-1.87-1.87-1.87h-.13l.03-.02Zm-8.08 12.17h-3.27l.17-2.81h3.57zm-8.74 0-.38-2.81h4.2l-.22 2.81zm3.5 1.86-.17 2.78h-2.7l-.37-2.78zm-5.74-4.7.37 2.84H6.19l-.46-2.81zm-2.06 7.16-.41-2.49H9.6l.37 2.78H7.25a.45.45 0 0 1-.33-.28Zm11.99.29h-2.5l.17-2.78h3.08l-.41 2.49a.48.48 0 0 1-.33.29Z"] },
376
+ "CheckCircle": { "viewBox": "0 0 32 32", "paths": ["M16 0C7.18 0 0 7.18 0 16s7.18 16 16 16 16-7.18 16-16S24.82 0 16 0m6.56 12.96-6.98 7.62c-.21.23-.5.36-.82.37h-.02c-.3 0-.59-.12-.81-.33l-4.44-4.44c-.45-.45-.45-1.17 0-1.62s1.17-.45 1.62 0l3.6 3.6 6.18-6.74c.43-.46 1.15-.5 1.61-.07s.5 1.15.07 1.61Z"] },
377
+ "CircleHollow": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14c7.71 0 13.98-6.24 14-13.96C30.02 8.31 23.78 2.02 16.04 2zm0 26.1c-6.66 0-12.05-5.4-12.05-12.05S9.34 3.99 16 3.99s12.05 5.4 12.05 12.05S22.65 28.09 16 28.09Z"] },
378
+ "CleanUP": { "viewBox": "0 0 32 32", "paths": ["M28.571 12.572c0-1.89-1.538-3.429-3.428-3.429h-3.428V3.429c0-1.89-1.538-3.43-3.429-3.43H16a3.433 3.433 0 0 0-3.43 3.43v5.714H9.144a3.433 3.433 0 0 0-3.43 3.43v4.57c0 .631.513 1.143 1.144 1.143h19.428v6.857c0 2.52-2.05 4.57-4.571 4.57h-1.76a6.82 6.82 0 0 0 1.76-4.57V24a1.143 1.143 0 1 0-2.285 0v1.143c0 2.52-2.051 4.57-4.572 4.57h-1.76a6.82 6.82 0 0 0 1.76-4.57V24a1.143 1.143 0 1 0-2.286 0v1.143c0 2.52-2.05 4.57-4.571 4.57H6.25A6.83 6.83 0 0 0 8 25.144v-3.43a1.143 1.143 0 1 0-2.286 0v3.43c0 2.52-2.05 4.57-4.571 4.57a1.143 1.143 0 1 0 0 2.287h20.57a6.864 6.864 0 0 0 6.857-6.857v-7.995l.001-.005zM8 12.572c0-.63.513-1.143 1.143-1.143h4.57c.632 0 1.144-.512 1.144-1.143V3.429c0-.63.513-1.143 1.143-1.143h2.286c.63 0 1.144.513 1.144 1.143v6.857c0 .631.511 1.143 1.142 1.143h4.57c.63 0 1.144.513 1.144 1.143V16H8z"] },
379
+ "Clipboard": { "viewBox": "0 0 32 32", "paths": ["M21.95 5.44h-.35c-.35-.57-1.01-1.05-2.11-1.05h-.51C18.69 3.01 17.46 2 16 2s-2.68 1.02-2.98 2.39h-.51c-1.07 0-1.73.49-2.07 1.05h-.38c-2.6 0-4.73 2.11-4.73 4.72v15.12A4.73 4.73 0 0 0 10.06 30h11.9c2.59 0 4.72-2.11 4.72-4.72V10.15c0-2.59-2.11-4.72-4.72-4.72Zm-5.94-2.47c.75 0 1.35.61 1.35 1.35s-.61 1.35-1.35 1.35-1.35-.61-1.35-1.35.61-1.35 1.35-1.35m7.89 22.3c0 1.07-.86 1.93-1.93 1.93h-11.9c-1.07 0-1.94-.86-1.94-1.93V10.15c0-1.07.87-1.93 1.94-1.93h.05v.22c0 .6.27 1.08.62 1.08h10.52c.35 0 .62-.48.62-1.08v-.22h.08c1.07 0 1.93.86 1.93 1.93v15.12Z"] },
380
+ "Code": { "viewBox": "0 0 32 32", "paths": ["M9.99 9.42a1.4 1.4 0 0 0-1.98 0l-5.6 5.6a1.4 1.4 0 0 0 0 1.98l5.6 5.6c.25.25.6.41.99.41.77 0 1.4-.63 1.4-1.4 0-.39-.16-.74-.41-.99l-4.61-4.61 4.61-4.6a1.4 1.4 0 0 0 0-1.98Zm14 0c-.25-.25-.6-.41-.99-.41-.77 0-1.4.63-1.4 1.4 0 .39.16.74.41.99l4.61 4.6-4.61 4.61c-.25.25-.41.6-.41.99 0 .77.63 1.4 1.4 1.4.39 0 .74-.16.99-.41l5.6-5.6a1.4 1.4 0 0 0 0-1.98l-5.6-5.6Zm-5.85-4.11a1.397 1.397 0 0 0-1.65 1.08s-3.73 18.67-3.73 18.67a1.397 1.397 0 0 0 1.08 1.65s.09 0 .14 0h.15c.67 0 1.24-.48 1.37-1.12s3.73-18.67 3.73-18.67a1.405 1.405 0 0 0-1.09-1.62Z"] },
381
+ "Comments": { "viewBox": "0 0 32 32", "paths": ["M5.77 21.12h2.69v5.38c0 .89.72 1.61 1.62 1.61.45 0 .85-.18 1.14-.47l6.53-6.53h8.49c2.08 0 3.76-1.69 3.77-3.77V7.65c0-2.08-1.69-3.76-3.77-3.77H5.77C3.69 3.88 2.01 5.57 2 7.65v9.69c0 2.08 1.69 3.76 3.77 3.77Zm8.08-8.62c0-1.19.96-2.15 2.15-2.15s2.15.96 2.15 2.15-.96 2.15-2.15 2.15-2.15-.96-2.15-2.15m-7.54 0c0-1.19.96-2.15 2.15-2.15s2.15.96 2.15 2.15-.96 2.15-2.15 2.15-2.15-.96-2.15-2.15m15.08 0c0-1.19.96-2.15 2.15-2.15s2.15.96 2.15 2.15-.96 2.15-2.15 2.15-2.15-.96-2.15-2.15"] },
382
+ "Commerce": { "viewBox": "0 0 32 32", "paths": ["M28.43 15.29c-.63 0-1.14-.51-1.14-1.14v-2.29c0-.63-.51-1.14-1.14-1.14H5.57a1.14 1.14 0 1 1 0-2.28h20.57c1.89 0 3.43 1.54 3.43 3.43v2.29c0 .63-.51 1.14-1.14 1.14Z", "M26.14 29H5.57c-3.15 0-5.71-2.56-5.71-5.71V9.58c0-3.16 2.56-5.72 5.71-5.72h18.29a1.14 1.14 0 1 1 0 2.28H5.57c-1.89 0-3.43 1.54-3.43 3.43v13.71c0 1.89 1.54 3.43 3.43 3.43h20.57c.63 0 1.14-.51 1.14-1.14v-3.43a1.14 1.14 0 1 1 2.28 0v3.43c0 1.89-1.54 3.43-3.43 3.43Z", "M30.71 23.29h-9.14c-1.89 0-3.43-1.54-3.43-3.43v-2.29c0-1.89 1.54-3.43 3.43-3.43h9.14c.63 0 1.14.51 1.14 1.14v6.86c0 .63-.51 1.14-1.14 1.14Zm-9.14-6.86c-.63 0-1.14.51-1.14 1.14v2.29c0 .63.51 1.14 1.14 1.14h8v-4.57z"] },
383
+ "Communication": { "viewBox": "0 0 32 32", "paths": ["M2.29 30.96c-.15 0-.3-.03-.44-.09-.43-.18-.71-.59-.71-1.06V5.28a4.03 4.03 0 0 1 4.03-4.03h21.65c2.22 0 4.03 1.81 4.03 4.03v14.44c0 2.22-1.81 4.03-4.03 4.03H9.98L3.1 30.63c-.22.22-.51.33-.81.33M5.17 3.53c-.96 0-1.75.78-1.75 1.74v21.78l5.27-5.27c.23-.23.54-.35.86-.33h17.27c.96 0 1.75-.78 1.75-1.75V5.28c0-.96-.78-1.74-1.75-1.74H5.17Z", "M17.77 16.1H6.86a1.14 1.14 0 1 1 0-2.28h10.91a1.14 1.14 0 1 1 0 2.28M25.14 11.53H6.86a1.14 1.14 0 1 1 0-2.28h18.28a1.14 1.14 0 1 1 0 2.28"] },
384
+ "Companies": { "viewBox": "0 0 32 32", "paths": ["M15.01 2.96H5.37A3.38 3.38 0 0 0 2 6.34v21.24c0 .8.65 1.45 1.45 1.45h4.28V24.2c0-.54.44-.99.99-.99h2.96c.54 0 .99.44.99.99v4.82h4.32c.8 0 1.45-.65 1.45-1.45V6.35c0-1.87-1.52-3.38-3.38-3.38h-.04Zm-.48 4.82H5.86c-.54 0-.99-.44-.99-.99s.44-.99.99-.99h8.69c.54 0 .99.44.99.99s-.44.99-.99.99zm.99 3.86c0 .54-.44.99-.99.99H5.86c-.54 0-.99-.44-.99-.99s.44-.99.99-.99h8.69c.54.01.97.45.97.99m-9.66 5.8c-.54 0-.99-.44-.99-.99s.44-.99.99-.99h8.69c.54 0 .99.44.99.99s-.44.99-.99.99zm20.77-4.82h-4.84c-.79 0-1.43.63-1.45 1.41v13.52c0 .8.65 1.45 1.45 1.45h6.76c.8 0 1.45-.65 1.45-1.45V16.01c0-1.87-1.51-3.38-3.37-3.38Zm-.48 9.66h-1.97c-.54 0-.99-.44-.99-.99s.44-.99.99-.99h1.97c.54 0 .99.44.99.99s-.44.99-.99.99m0-4.82h-1.97c-.54 0-.99-.44-.99-.99s.44-.99.99-.99h1.97c.54 0 .99.44.99.99s-.44.99-.99.99"] },
385
+ "Conditional": { "viewBox": "0 0 32 32", "paths": ["M28.33 18.8h-1.68v-6.16c0-.92-.76-1.67-1.68-1.67h-7.28V6.5h3.92c.93 0 1.68-.75 1.68-1.68s-.75-1.68-1.68-1.68h-11.2c-.93 0-1.68.75-1.68 1.68s.75 1.68 1.68 1.68h3.92v4.47H7.05c-.93 0-1.68.75-1.68 1.68v6.16H3.69c-.92 0-1.67.75-1.67 1.67v6.72c0 .93.75 1.69 1.67 1.69h6.73c.93 0 1.68-.75 1.68-1.68v-6.73c0-.93-.75-1.68-1.68-1.68H8.74v-4.47H23.3v4.47h-1.68c-.93 0-1.68.75-1.68 1.68v6.72c0 .93.75 1.68 1.68 1.68h6.72c.93 0 1.68-.75 1.68-1.68v-6.72c0-.92-.75-1.67-1.67-1.67ZM8.72 25.53H5.36v-3.36h3.36zm17.89 0h-3.33v-3.36h3.36l-.04 3.36Z"] },
386
+ "ContactDuplicate": { "viewBox": "0 0 32 32", "paths": ["M23.27 13.1c.94-.1 1.77-.52 2.39-1.35.94-1.35 1.46-2.91 1.46-4.47v-.21c.1-2.18-1.56-3.95-3.74-4.06s-3.95 1.56-4.06 3.74v.62c0 1.66.52 3.22 1.46 4.47.62.73 1.46 1.14 2.5 1.25Z", "M29.61 14.34c-.83-.94-1.77-1.66-2.91-2.18-.73 1.25-2.08 1.98-3.54 2.08-1.46-.1-2.7-.83-3.54-2.08l-.31.1c0 1.46-.31 2.81-.83 4.16-.1.21 0 .42.21.52.94.52 1.87 1.14 2.7 1.87.1 0 .1.1.21.1.52.1 1.04.21 1.56.21 2.5 0 4.78-1.04 6.45-2.91.52-.62.52-1.35 0-1.87M16.92 19.02l-.1-.1c-1.14 1.77-3.02 2.91-5.1 3.02-2.08-.1-3.95-1.25-5.1-2.91-1.56.73-3.02 1.77-4.16 3.12-.62.73-.62 1.77 0 2.5 4.37 5.2 12.17 5.82 17.37 1.46.52-.42.94-.83 1.35-1.35.21-.31.42-.83.31-1.25 0-.42-.21-.94-.52-1.25-1.04-1.46-2.39-2.5-4.06-3.22Z", "M11.72 20.27c1.46-.1 2.7-.83 3.54-1.98 1.35-1.87 2.08-4.16 2.08-6.55v-.31c0-3.12-2.5-5.72-5.72-5.72S6 8.31 6 11.43v.31c0 2.39.73 4.68 2.18 6.55.83 1.25 2.08 1.87 3.54 1.98"] },
387
+ "ContactProperties": { "viewBox": "0 0 32 32", "paths": ["M9.03 28.48V3.52a1.52 1.52 0 1 0-3.04 0v24.96a1.52 1.52 0 1 0 3.04 0M12.52 17h.01c.2 0 .4-.04.58-.12h-.01l11.98-5c.55-.23.92-.76.92-1.38s-.37-1.15-.91-1.38h-.01l-11.98-5c-.16-.06-.34-.1-.53-.1a1.5 1.5 0 0 0-1.5 1.48v9.98c0 .83.67 1.5 1.5 1.5h-.05Z"] },
388
+ "Contacts": { "viewBox": "0 0 32 32", "paths": ["M22.89 17.9c-1.35 2.12-3.63 3.53-6.26 3.66h-.02a7.84 7.84 0 0 1-6.23-3.57l-.02-.03c-2.01.93-3.71 2.22-5.1 3.79v.02c-.38.4-.6.94-.6 1.53 0 .55.2 1.06.53 1.46 2.8 3.23 6.91 5.26 11.49 5.26s8.6-1.99 11.38-5.14v-.02c.38-.41.6-.95.6-1.54s-.22-1.13-.59-1.54a15.2 15.2 0 0 0-5.1-3.82l-.09-.04Zm-6.28 1.65c1.78-.1 3.32-1 4.29-2.35v-.02c1.63-2.18 2.6-4.92 2.6-7.89v-.38.02C23.5 5.1 20.4 2 16.57 2S9.64 5.1 9.64 8.93v.38c0 2.98.98 5.73 2.64 7.95l-.02-.03c1 1.37 2.57 2.26 4.36 2.33h.01Z"] },
389
+ "Content": { "viewBox": "0 0 32 32", "paths": ["M8.21 9.98c-.98 0-1.78-.8-1.78-1.78s.8-1.78 1.78-1.78 1.78.8 1.78 1.78-.8 1.78-1.78 1.78m0-2.28c-.28 0-.51.23-.51.51s.23.51.51.51.51-.23.51-.51-.23-.51-.51-.51M13.92 15.57c-.75 0-1.5-.28-2.06-.85l-1.03-1.03a.653.653 0 0 0-.9 0l-1.55 1.55c-.45.45-1.17.45-1.62 0a1.14 1.14 0 0 1 0-1.62l1.55-1.55c1.1-1.1 3.03-1.1 4.13 0l1.03 1.03c.25.25.65.25.9 0l3.36-3.36c.56-.56 1.3-.85 2.07-.83.75.02 1.46.33 2.01.88l2.63 2.63c.45.45.45 1.17 0 1.62s-1.17.45-1.62 0l-2.63-2.63a.66.66 0 0 0-.46-.21c-.16 0-.28.05-.39.16l-3.36 3.36c-.57.57-1.32.85-2.06.85", "M25.86 29.29H5.29c-1.89 0-3.43-1.54-3.43-3.43V5.29c0-1.89 1.54-3.43 3.43-3.43h20.57c1.89 0 3.43 1.54 3.43 3.43v20.57c0 1.89-1.54 3.43-3.43 3.43M5.29 4.14c-.63 0-1.14.51-1.14 1.14v20.57c0 .63.51 1.14 1.14 1.14h20.57c.63 0 1.14-.51 1.14-1.14V5.29c0-.63-.51-1.14-1.14-1.14H5.29Z", "M23.57 20.14h-16a1.14 1.14 0 1 1 0-2.28h16a1.14 1.14 0 1 1 0 2.28M23.57 24.71h-16a1.14 1.14 0 1 1 0-2.28h16a1.14 1.14 0 1 1 0 2.28"] },
390
+ "CreditCard": { "viewBox": "0 0 32 32", "paths": ["M27.26 6.81H4.75c-1.5 0-2.72 1.21-2.75 2.7V22.4a2.74 2.74 0 0 0 2.71 2.78h22.55c1.51 0 2.74-1.23 2.74-2.74V9.51c-.02-1.5-1.24-2.7-2.74-2.7M3.75 9.52c.02-.53.46-.95 1-.95h22.51c.53 0 .97.42.99.95v1.3H3.75zm24.5 12.89c.02.55-.4 1.01-.94 1.03H4.75c-.55 0-1-.45-1-1V14.1h24.5v8.3Z"] },
391
+ "Credits": { "viewBox": "0 0 32 32", "paths": ["M10.86 32C4.873 32 0 27.13 0 21.143S4.873 10.286 10.86 10.286s10.858 4.87 10.858 10.857S16.848 32 10.86 32m0-19.429c-4.726 0-8.573 3.846-8.573 8.572s3.847 8.572 8.573 8.572 8.572-3.846 8.572-8.572-3.846-8.572-8.572-8.572", "M25.143 20.855c-.435 0-.85-.25-1.04-.672a1.14 1.14 0 0 1 .569-1.511 8.6 8.6 0 0 0 5.043-7.815c0-4.725-3.846-8.571-8.572-8.571a8.6 8.6 0 0 0-7.816 5.042 1.146 1.146 0 0 1-1.511.57 1.14 1.14 0 0 1-.572-1.512A10.89 10.89 0 0 1 21.143 0C27.13 0 32 4.87 32 10.857a10.88 10.88 0 0 1-6.387 9.896c-.151.069-.312.102-.47.102", "M26.08 13.714a1.14 1.14 0 0 1-1.098-1.458 4.244 4.244 0 0 0-5.24-5.239 1.134 1.134 0 0 1-1.412-.783 1.14 1.14 0 0 1 .783-1.413 6.526 6.526 0 0 1 8.066 8.065c-.143.502-.6.828-1.099.828M10.632 27.429a6.29 6.29 0 0 1-6.282-6.282 6.3 6.3 0 0 1 5.01-6.15c.592-.14 1.223.269 1.348.89a1.14 1.14 0 0 1-.888 1.347 4.01 4.01 0 0 0-3.184 3.913 4 4 0 0 0 3.996 3.996 3.985 3.985 0 0 0 3.971-3.554 1.15 1.15 0 0 1 1.262-1.011c.627.07 1.08.634 1.011 1.261a6.27 6.27 0 0 1-6.244 5.59Z"] },
392
+ "Crm": { "viewBox": "0 0 32 32", "paths": ["M25.57 29.29h-16c-1.89 0-3.43-1.54-3.43-3.43V5.29c0-1.89 1.54-3.43 3.43-3.43h16C27.46 1.86 29 3.4 29 5.29v20.57c0 1.89-1.54 3.43-3.43 3.43m-16-25.15c-.63 0-1.14.51-1.14 1.14v20.57c0 .63.51 1.14 1.14 1.14h16c.63 0 1.14-.51 1.14-1.14V5.29c0-.63-.51-1.14-1.14-1.14h-16Z", "M9.57 11H5a1.14 1.14 0 1 1 0-2.28h4.57a1.14 1.14 0 1 1 0 2.28M9.57 16.71H5a1.14 1.14 0 1 1 0-2.28h4.57a1.14 1.14 0 1 1 0 2.28M9.57 22.43H5a1.14 1.14 0 1 1 0-2.28h4.57a1.14 1.14 0 1 1 0 2.28M17.75 15.57c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4m0-5.71a1.71 1.71 0 1 0-.002 3.418 1.71 1.71 0 0 0 .002-3.418M14.14 22.43a1.143 1.143 0 0 1-1.02-1.67c.91-1.74 2.68-2.82 4.62-2.82s3.72 1.08 4.62 2.82a1.143 1.143 0 0 1-2.03 1.05c-.51-.98-1.5-1.59-2.6-1.59s-2.08.61-2.6 1.59c-.2.39-.6.61-1.01.61Z"] },
393
+ "CRMDevelopment": { "viewBox": "0 0 32 32", "paths": ["M14.27 21.31a1.145 1.145 0 0 1-1.11-1.44l2.46-9.16c.16-.61.79-.97 1.4-.81s.97.79.81 1.4l-2.46 9.16c-.14.51-.6.85-1.1.85M21.29 19.14c-.29 0-.58-.11-.81-.33a1.14 1.14 0 0 1 0-1.62l1.55-1.55-1.55-1.55a1.14 1.14 0 0 1 0-1.62 1.14 1.14 0 0 1 1.62 0l2.36 2.36a1.16 1.16 0 0 1 0 1.62l-2.36 2.36c-.22.22-.52.33-.81.33M9.86 19c-.29 0-.58-.11-.81-.33l-2.36-2.36a1.14 1.14 0 0 1 0-1.62l2.36-2.36a1.14 1.14 0 0 1 1.62 0c.45.45.45 1.17 0 1.62L9.12 15.5l1.55 1.55A1.14 1.14 0 0 1 9.86 19", "M25.86 29.29H5.29c-1.89 0-3.43-1.54-3.43-3.43V5.29c0-1.89 1.54-3.43 3.43-3.43h20.57c1.89 0 3.43 1.54 3.43 3.43v20.57c0 1.89-1.54 3.43-3.43 3.43M5.29 4.14c-.63 0-1.14.51-1.14 1.14v20.57c0 .63.51 1.14 1.14 1.14h20.57c.63 0 1.14-.51 1.14-1.14V5.29c0-.63-.51-1.14-1.14-1.14H5.29Z"] },
394
+ "Databases": { "viewBox": "0 0 32 32", "paths": ["M24.99 2H7.03C4.87 2 3.12 3.76 3.11 5.92v20.21A3.923 3.923 0 0 0 7.03 30h12.36c.46 0 .87-.19 1.17-.49l7.85-7.85c.3-.3.48-.71.49-1.17V5.92c0-2.15-1.74-3.9-3.89-3.92ZM6.47 26.13V5.92c0-.31.25-.56.56-.56H25c.31 0 .56.25.56.56V17.7h-5.05a3.93 3.93 0 0 0-3.93 3.93v5.05H7.03a.56.56 0 0 1-.56-.56Z"] },
395
+ "DataManagement": { "viewBox": "0 0 32 32", "paths": ["M16.29 16C9.88 16 4.86 13.11 4.86 9.43s5.02-6.57 11.43-6.57 11.43 2.89 11.43 6.57S22.7 16 16.29 16m0-10.86c-5.39 0-9.14 2.26-9.14 4.29s3.76 4.29 9.14 4.29 9.14-2.26 9.14-4.29-3.76-4.29-9.14-4.29", "M16.29 22.29c-6.41 0-11.43-2.89-11.43-6.57a1.14 1.14 0 1 1 2.28 0c0 2.03 3.76 4.29 9.14 4.29s9.14-2.26 9.14-4.29a1.14 1.14 0 1 1 2.28 0c0 3.69-5.02 6.57-11.43 6.57Z", "M16.29 28.57c-6.41 0-11.43-2.89-11.43-6.57V9.14a1.14 1.14 0 1 1 2.28 0V22c0 2.03 3.76 4.29 9.14 4.29s9.14-2.26 9.14-4.29a1.14 1.14 0 1 1 2.28 0c0 3.69-5.02 6.57-11.43 6.57Z", "M26.57 22.86c-.63 0-1.14-.51-1.14-1.14V9.43a1.14 1.14 0 1 1 2.28 0v12.29c0 .63-.51 1.14-1.14 1.14"] },
396
+ "DataSync": { "viewBox": "0 0 32 32", "paths": ["M8.93 15.3v-1.94a.4.4 0 0 1 .39-.36h16.01c.22 0 .39-.18.39-.39V9.5a.39.39 0 0 0-.39-.39H9.32a.39.39 0 0 1-.39-.39V6.76c0-.22-.19-.4-.41-.39a.36.36 0 0 0-.2.06l-6.15 3.96c-.18.12-.22.36-.1.53.03.04.06.08.1.1l6.13 4.6c.17.13.42.1.55-.08.05-.07.08-.15.08-.24m20.93 5.05-6.13-3.95a.393.393 0 0 0-.55.13.36.36 0 0 0-.06.2v2.02c0 .22-.18.39-.39.39l-15.44-.03a.39.39 0 0 0-.39.39v3.01c0 .22.18.39.39.39l15.42.05c.22 0 .39.18.39.39v1.88a.39.39 0 0 0 .63.31l6.13-4.6c.17-.13.2-.38.07-.55l-.06-.06Z"] },
397
+ "Date": { "viewBox": "0 0 32 32", "paths": ["M9.24 15.51h1.93c.53 0 .96.43.96.96v1.93c0 .53-.43.96-.96.96H9.24a.96.96 0 0 1-.96-.96v-1.93c0-.53.43-.96.96-.96m5.78 0h1.93c.53 0 .96.43.96.96v1.93c0 .53-.43.96-.96.96h-1.93a.96.96 0 0 1-.96-.96v-1.93c0-.53.43-.96.96-.96m5.79 0h1.93c.53 0 .96.43.96.96v1.93c0 .53-.43.96-.96.96h-1.93a.96.96 0 0 1-.96-.96v-1.93c0-.53.43-.96.96-.96M9.23 21.3h1.93c.53 0 .96.43.96.96v1.93c0 .53-.43.96-.96.96H9.23a.96.96 0 0 1-.96-.96v-1.93c0-.53.43-.96.96-.96m5.78 0h1.93c.53 0 .96.43.96.96v1.93c0 .53-.43.96-.96.96h-1.93a.96.96 0 0 1-.96-.96v-1.93c0-.53.43-.96.96-.96M10.69 2h-.05c-.8 0-1.45.65-1.45 1.45v2.41H6.83c-1.85 0-3.36 1.49-3.38 3.33v17.42c0 1.87 1.51 3.38 3.38 3.38h13.55c.38 0 .73-.15.99-.39s6.81-6.8 6.81-6.8c.23-.26.38-.6.38-.97V9.19c0-1.87-1.51-3.38-3.38-3.38h-2.36V3.45c0-.8-.65-1.45-1.45-1.45h-.05c-.79.02-1.42.66-1.42 1.45v2.41h-7.78V3.45c0-.79-.63-1.43-1.42-1.45ZM6.8 27.1a.49.49 0 0 1-.49-.49V13.58h19.34v7.6l-.12.12h-3.7c-1.07 0-1.94.87-1.94 1.94v3.73l-.12.12H6.8Z"] },
398
+ "Deals": { "viewBox": "0 0 32 32", "paths": ["m16.5 14.34-1.9 1.7c-.55.46-1.27.74-2.05.74-.98 0-1.85-.44-2.44-1.12-.47-.56-.75-1.28-.75-2.07 0-.98.44-1.86 1.13-2.45s1.46-1.39 1.46-1.39l.73-.61.97-.81s.05-.04.07-.07c.26-.25.43-.6.43-.99 0-.32-.11-.62-.3-.85-.25-.3-.63-.5-1.06-.5-.33 0-.63.12-.87.31S6 11.08 6 11.08H3.35c-.76 0-1.37.61-1.37 1.37v8.79s-.01.09-.01.15 0 .1.01.15 0 .02 0 .03v.04c.02.07.05.14.08.2s.03.05.05.08c.03.06.07.11.1.15s.07.08.07.08c.04.05.07.09.12.12s.04.04.04.04c.1.08.21.14.34.19s.07 0 .07 0c.12.05.26.07.41.07h4.55l2.14 2.23c.25.26.6.42.99.42.41 0 .78-.18 1.04-.47.19-.24.3-.55.3-.89 0-.4-.16-.76-.42-1.02v-.04c-.17-.17-.28-.4-.28-.66s.11-.49.28-.66c.16-.16.39-.26.64-.26.27 0 .5.11.67.29s4.03 4.17 4.03 4.17c.25.26.6.42.98.42.42 0 .79-.19 1.04-.48a1.464 1.464 0 0 0-.11-1.9s-1.71-1.77-1.71-1.77c-.17-.17-.28-.4-.28-.66s.11-.49.28-.66c.17-.16.4-.26.65-.26.27 0 .5.11.67.29s3.16 3.27 3.16 3.27c.25.26.6.42.99.42.76 0 1.37-.61 1.37-1.37 0-.37-.15-.71-.38-.95s-7.4-7.66-7.4-7.66Zm12.26-3.24h-2.77l-5.81-4.43h-.04s-.1-.07-.16-.1a.64.64 0 0 0-.3-.11s-.05 0-.05 0h-.52c-.09.01-.18.04-.26.07s-.04 0-.04 0c-.08.03-.15.07-.22.11-.07.05-.14.1-.2.16s-5.08 4.23-5.08 4.23l-1.65 1.52c-.3.25-.5.63-.5 1.05 0 .76.61 1.37 1.37 1.37h.03c.33 0 .63-.12.86-.32s1.79-1.64 1.79-1.64l1.42-1.18.81.84 8.57 8.89c.61.63 1.46 1.02 2.41 1.02h.31c.15 0 .29-.03.43-.07h-.01.06c.07-.04.13-.07.19-.11s.16-.1.16-.1v-.04l.12-.12s.06-.06.08-.09.06-.1.09-.15.04-.06.04-.09c.03-.05.06-.12.08-.18s0-.04 0-.05v-9.11c0-.72-.54-1.3-1.23-1.37Z"] },
399
+ "Delay": { "viewBox": "0 0 32 32", "paths": ["M25.69 10.61V5.23h.53c.89 0 1.62-.72 1.62-1.62s-.72-1.62-1.62-1.62H5.77c-.89 0-1.62.72-1.62 1.62s.72 1.62 1.62 1.62h.53v5.38c0 .56.29 1.05.72 1.34S13.08 16 13.08 16l-6.06 4.04c-.44.29-.72.79-.72 1.34v5.39h-.53c-.89 0-1.62.72-1.62 1.62s.72 1.62 1.62 1.62h20.46c.89 0 1.62-.72 1.62-1.62s-.72-1.62-1.62-1.62h-.53v-5.39c0-.56-.29-1.05-.72-1.34s-6.06-4.05-6.06-4.05l6.06-4.04c.43-.3.71-.79.71-1.34m-3.22 11.64v4.52h-2.15v-1.92c0-.75-.39-1.41-.97-1.8s-2.22-1.35-2.22-1.35c-.32-.21-.72-.33-1.14-.33s-.82.12-1.15.33-2.15 1.34-2.15 1.34a2.16 2.16 0 0 0-1.01 1.82v1.89H9.56v-4.51l6.46-4.31 6.46 4.31Zm0-12.5-6.46 4.3-6.46-4.3V5.23h12.93v4.52Z"] },
400
+ "Delete": { "viewBox": "0 0 32 32", "paths": ["M7.11 9.46H24.8c.77.07 1.45-.51 1.52-1.28s-.51-1.45-1.28-1.52h-3.5V5.42c0-1.88-1.52-3.42-3.4-3.42h-4.38c-1.88 0-3.41 1.53-3.41 3.41v1.21H7.13c-.78 0-1.42.63-1.42 1.42s.63 1.42 1.42 1.42Zm6.02-4.05c0-.34.28-.62.62-.62h4.37c.34 0 .61.27.61.61v1.22h-5.59V5.41Zm10.03 21.18 1.18-14.24c0-.55-.45-.99-.99-.99H8.43c-.55 0-.99.45-.99.99L8.72 26.6c.16 1.92 1.77 3.4 3.7 3.4h7.04c1.93 0 3.54-1.48 3.7-3.4Zm-2.98-10.54-.47 8.4c-.06.51-.49.89-.99.89-.5-.06-.88-.49-.88-.99l.47-8.4c.01-.49.41-.89.91-.9h.06c.52.04.93.47.93.99h-.02Zm-7.51-.99c.51 0 .93.37.99.88l.42 8.43c0 .5-.37.93-.87.99h-.06c-.51 0-.94-.38-.99-.89l-.47-8.4v-.05c0-.52.4-.95.92-.99z"] },
401
+ "Description": { "viewBox": "0 0 32 32", "paths": ["M25.39 2.46c-.28-.28-.67-.46-1.1-.46s-.82.17-1.1.46l-3.7 3.7H5.58A3.637 3.637 0 0 0 2 9.78v16.6c0 2 1.63 3.62 3.63 3.63h16.59c2 0 3.62-1.63 3.63-3.63v-6.22c0-.86-.7-1.56-1.56-1.56s-1.56.7-1.56 1.56v6.22c0 .29-.23.52-.52.52H5.58c-.29 0-.52-.23-.52-.52V9.77c0-.29.23-.52.52-.52h10.81l-5.64 5.64c-.17.17-.3.37-.37.6S8.3 21.7 8.3 21.7c-.06.16-.09.34-.09.53a1.545 1.545 0 0 0 2.09 1.45h-.01l6.22-2.07c.24-.08.44-.21.61-.38L29.54 8.78c.28-.28.46-.67.46-1.1s-.17-.82-.46-1.1L25.4 2.46Z"] },
402
+ "DeveloperProjects": { "viewBox": "0 0 32 32", "paths": ["M23.76 9.47c.07.17.11.38.13.59v.38c-.02.22-.07.42-.13.6l-.06.15c-.22.49-.61.88-1.07 1.1h-.01l-.15.07c-.17.07-.37.11-.58.13h-.38a2.7 2.7 0 0 1-.59-.13l-.15-.06c-.48-.23-.86-.62-1.08-1.09-.02-.07-.04-.12-.06-.17-.07-.17-.11-.38-.13-.59v-.38c.01-.14.03-.26.06-.38.02-.09.05-.16.07-.23s.04-.09.06-.14c.22-.49.6-.88 1.07-1.1h.01l.15-.07c.17-.07.37-.11.58-.13h.38c.21.02.41.07.59.13l.15.06c.48.23.86.62 1.08 1.09.02.07.04.12.06.17M30 3.73v24.53c0 .96-.78 1.73-1.73 1.73H3.73c-.96 0-1.73-.78-1.73-1.73V3.73C2 2.77 2.78 2 3.73 2h24.53c.96 0 1.73.78 1.73 1.73ZM5.56 10.5l3.52 3.52c.36.36.94.36 1.3 0l3.52-3.52c.36-.36.36-.94 0-1.3l-3.52-3.52a.917.917 0 0 0-1.3 0L5.56 9.2c-.36.36-.36.94 0 1.3m8.88 11.81c0-2.57-2.09-4.66-4.66-4.66s-4.66 2.09-4.66 4.66 2.09 4.66 4.66 4.66 4.66-2.09 4.66-4.66m11.59-3.21c0-.64-.52-1.17-1.17-1.17h-6.33c-.64 0-1.17.52-1.17 1.17v6.33c0 .64.52 1.17 1.17 1.17h6.33c.64 0 1.17-.52 1.17-1.17zm.43-9.02c0-.41-.33-.74-.72-.74h-.87c-.07-.27-.16-.5-.28-.72L25.2 8c.14-.13.22-.32.22-.53s-.08-.4-.22-.53l-.25-.27c-.13-.14-.32-.23-.52-.23s-.39.08-.52.23l-.62.62c-.2-.11-.42-.21-.66-.28h-.02v-.9c0-.41-.33-.74-.72-.74h-.36c-.4 0-.72.33-.72.74V7c-.27.07-.5.17-.72.29h.02l-.61-.63a.724.724 0 0 0-1.06 0l-.25.25c-.14.13-.22.32-.22.53s.08.4.22.53l.61.64c-.11.2-.2.43-.27.67v.02h-.87c-.4 0-.72.33-.72.74v.4c0 .41.32.74.72.74h.87c.07.26.16.48.27.69l-.61.62c-.14.13-.22.32-.22.53s.08.4.22.53l.26.27c.13.14.32.23.52.23s.39-.08.52-.23l.61-.62c.19.11.42.21.66.28h.02v.89c0 .41.33.74.72.74h.36c.4 0 .72-.33.72-.74v-.89c.27-.07.5-.17.72-.29h-.02l.61.63c.13.14.32.23.52.23s.39-.08.52-.23l.26-.27c.14-.13.22-.32.22-.53s-.08-.4-.22-.53l-.61-.63c.11-.2.2-.43.27-.67v-.02h.88c.4 0 .72-.33.72-.74v-.37Z"] },
403
+ "Documents": { "viewBox": "0 0 32 32", "paths": ["M20.67 8.07a.47.47 0 0 0-.47-.47H5.27a.47.47 0 0 0-.47.47v9.33c0 .26.21.47.47.47.77 0 1.4.63 1.4 1.4s-.63 1.4-1.4 1.4C3.47 20.67 2 19.21 2 17.4V8.07C2 6.27 3.46 4.8 5.27 4.8H20.2c1.8 0 3.27 1.46 3.27 3.27 0 .77-.63 1.4-1.4 1.4s-1.4-.63-1.4-1.4m6.07 3.27H11.81c-1.8 0-3.27 1.46-3.27 3.27v9.33c0 1.8 1.46 3.27 3.27 3.27h14.93c1.8 0 3.27-1.46 3.27-3.27v-9.33c0-1.8-1.46-3.27-3.27-3.27m-.93 12.6H12.74c-.52 0-.93-.42-.93-.93s.42-.93.93-.93h13.07c.52 0 .93.42.93.93s-.42.93-.93.93m0-3.73H12.74c-.52 0-.93-.42-.93-.93s.42-.93.93-.93h13.07c.52 0 .93.42.93.93s-.42.93-.93.93m0-3.73H12.74c-.52 0-.93-.42-.93-.93s.42-.93.93-.93h13.07c.52 0 .93.42.93.93s-.42.93-.93.93"] },
404
+ "Down": { "viewBox": "0 0 32 32", "paths": ["M16.7 23.5c.11-.06.21-.12.3-.19s.18-.11.18-.11h.08l12.19-11.64c.35-.32.56-.78.56-1.29a1.746 1.746 0 0 0-2.94-1.28S16.06 19.48 16.06 19.48L5.03 8.98A1.746 1.746 0 0 0 2 10.17c0 .53.24 1.01.61 1.33S14.8 23.15 14.8 23.15h.08l.18.11c.09.07.19.13.29.18.09.03.2.06.31.07q.15.045.33.06c.12 0 .24-.03.34-.06h-.01.07c.1 0 .2 0 .29-.03Z"] },
405
+ "DownCarat": { "viewBox": "0 0 32 32", "paths": ["M5.13 7.73c-.64 0-1.23.26-1.65.69s-.68 1.02-.68 1.67.26 1.24.68 1.67l11.67 11.83c.42.43 1 .69 1.65.69s1.23-.27 1.65-.69l11.67-11.83c.42-.43.68-1.02.68-1.67s-.26-1.24-.68-1.67-1-.69-1.64-.69z"] },
406
+ "Download": { "viewBox": "0 0 32 32", "paths": ["M25.63 16.69c.37-.48.59-1.08.59-1.74v-.03c0-1.68-1.37-3.05-3.05-3.05h-.18c-.68.03-1.29.29-1.77.7a6.747 6.747 0 0 0-13.43.95v.13c0 .42.05.83.13 1.23v-.04h-.77c-.42 0-.83.06-1.23.16h.03c-2.29.56-3.97 2.6-3.97 5.03s1.67 4.47 3.93 5.03h.04c.36.1.77.16 1.19.16h18.72c2.29-.07 4.12-1.95 4.12-4.25s-1.91-4.26-4.26-4.26h-.14l.03-.02Zm-5.57.9-3.92 3.92c-.16.16-.38.26-.62.26s-.46-.1-.62-.26l-3.92-3.92a.87.87 0 0 1 .57-1.53h2.67v-3.92h2.62v3.92h2.67a.87.87 0 0 1 .57 1.53Z"] },
407
+ "DragHandle": { "viewBox": "0 0 32 32", "paths": ["M12 2h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H12c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1m0 6h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H12c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1m0 6h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H12c-.55 0-1-.45-1-1V15c0-.55.45-1 1-1m0 6h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H12c-.55 0-1-.45-1-1V21c0-.55.45-1 1-1m6-18h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H18c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1m0 6h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H18c-.55 0-1-.45-1-1V9c0-.55.45-1 1-1m0 6h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H18c-.55 0-1-.45-1-1V15c0-.55.45-1 1-1m0 6h2.01c.55 0 1 .45 1 1v2.01c0 .55-.45 1-1 1H18c-.55 0-1-.45-1-1V21c0-.55.45-1 1-1m-6 5.99h2.01c.55 0 1 .45 1 1V29c0 .55-.45 1-1 1H12c-.55 0-1-.45-1-1v-2.01c0-.55.45-1 1-1m6 0h2.01c.55 0 1 .45 1 1V29c0 .55-.45 1-1 1H18c-.55 0-1-.45-1-1v-2.01c0-.55.45-1 1-1"] },
408
+ "Duplicate": { "viewBox": "0 0 32 32", "paths": ["M7.7 23.78h.59c-.04-.13-.06-.27-.06-.4V9.25a3.1 3.1 0 0 1 3.12-3.1h10.4v-.53c0-2-1.64-3.62-3.64-3.62H7.7c-2 0-3.62 1.62-3.63 3.62v14.53c0 2 1.63 3.62 3.63 3.63M20.16 8.21h-6.23c-2 0-3.62 1.63-3.63 3.63v14.53c0 2 1.63 3.62 3.63 3.63H24.3c2 0 3.62-1.63 3.63-3.63V11.85a3.65 3.65 0 0 0-3.63-3.63h-4.14Z"] },
409
+ "DynamicFilter": { "viewBox": "0 0 32 32", "paths": ["m19.76 10.14-5.5 1.12a.25.25 0 0 1-.3-.2c-.01-.06 0-.12.02-.17l3.89-8.29c.06-.13 0-.29-.13-.36-.04-.02-.09-.03-.14-.02l-6.64.64c-.1.02-.19.09-.22.19L6.71 16.79c-.04.14.03.28.17.32.05.01.1.02.14 0l3.93-.88c.15-.03.29.07.32.21v.11L8.18 29.66c-.04.14.05.29.19.33.12.03.24-.02.3-.13l11.38-19.31c.1-.11.09-.27-.02-.36a.27.27 0 0 0-.26-.05Z", "m17.81 8.81 1.54-.27 3.13-6.16c.06-.13 0-.29-.13-.36-.04-.02-.08-.03-.13-.02l-1.5.11-3.2 6.32c-.06.13 0 .29.13.36.05.02.1.03.15.02ZM24.95 9.18l-1.58.3-9.11 15.5-.87 3.69c-.02.15.08.28.22.31.1.02.2-.03.26-.11l11.4-19.31c.08-.13.04-.29-.09-.37a.29.29 0 0 0-.24-.02Z"] },
410
+ "Edit": { "viewBox": "0 0 32 32", "paths": ["m11.86 27.84.25-.1h.1c.08-.05.16-.11.23-.17l12.15-12.08c.28-.28.44-.65.43-1.05-.02-.84-.71-1.5-1.55-1.48-.38 0-.75.16-1.03.43L11.43 24.3l-.88-.87 10.97-10.87c.5-.66.38-1.6-.28-2.11a1.5 1.5 0 0 0-1.82 0L8.41 21.32l-.89-.87L18.54 9.56c.53-.64.45-1.59-.19-2.12a1.51 1.51 0 0 0-1.94.01L4.32 19.38c-.12.13-.21.27-.28.43v.14s.01.08 0 .13l-2.02 7.98q-.03.18 0 .36c0 .82.68 1.49 1.5 1.48.12.02.25.02.38 0l8.07-1.98-.1-.09ZM25.93 3.06a3.527 3.527 0 0 0-4.9 0L19.42 4.6c-.28.28-.44.66-.44 1.06s.16.77.44 1.05l5.87 5.8c.59.59 1.55.59 2.14 0l1.56-1.54a3.416 3.416 0 0 0 0-4.84l-3.07-3.07Z"] },
411
+ "Ellipses": { "viewBox": "0 0 32 32", "paths": ["M4.8 13.2C3.25 13.2 2 14.45 2 16s1.25 2.8 2.8 2.8zm0 5.6c1.55 0 2.8-1.25 2.8-2.8s-1.25-2.8-2.8-2.8zM16 13.2c-1.55 0-2.8 1.25-2.8 2.8s1.25 2.8 2.8 2.8zm0 5.6c1.55 0 2.8-1.25 2.8-2.8s-1.25-2.8-2.8-2.8zm11.2-5.6c-1.55 0-2.8 1.25-2.8 2.8s1.25 2.8 2.8 2.8zm0 5.6c1.55 0 2.8-1.25 2.8-2.8s-1.25-2.8-2.8-2.8z"] },
412
+ "Email": { "viewBox": "0 0 32 32", "paths": ["M5.48 25h21.03c1.92 0 3.48-1.56 3.48-3.48V10.48c0-1.92-1.56-3.48-3.48-3.48H5.48C3.56 7 2 8.56 2 10.48v11.04C2 23.44 3.56 25 5.48 25m.87-12.28a1 1 0 0 1 .77-1.64c.19 0 .37.05.53.15s7.02 6.24 7.02 6.24c.35.32.82.51 1.33.51s.98-.19 1.33-.51 7.02-6.24 7.02-6.24c.18-.16.41-.25.67-.25a1 1 0 0 1 .66 1.75s-3.48 3.11-3.48 3.11l3.54 3.43c.2.18.33.45.33.74a.997.997 0 0 1-1.72.69l-3.64-3.54-2.06 1.79c-.7.63-1.64 1.01-2.66 1.01s-1.96-.38-2.67-1.01l-2.02-1.79-3.63 3.54a.997.997 0 1 1-1.39-1.43s3.54-3.43 3.54-3.43z"] },
413
+ "EmailOpen": { "viewBox": "0 0 32 32", "paths": ["M5.5 28.51h21.02c1.92 0 3.48-1.56 3.48-3.48V13.97c0-1.43-.86-2.65-2.09-3.19h-.02l-9.9-6.68c-.55-.38-1.23-.61-1.97-.61s-1.42.23-1.98.62h.01l-9.88 6.67A3.48 3.48 0 0 0 2.01 14v11.04c0 1.92 1.56 3.48 3.48 3.48h.03ZM16.59 6.67l10.01 7.01c.26.18.43.48.43.82 0 .28-.12.53-.3.72l-4.55 4.42 3.48 3.11a1.003 1.003 0 0 1-.56 1.83c-.3 0-.56-.13-.74-.33s-.87-.75-.87-.75l-6.15-5.49c-.35-.31-.82-.51-1.33-.51s-.98.19-1.33.51-1.54 1.37-1.54 1.37l-4.63 4.11-.87.75c-.18.16-.41.25-.67.25-.55 0-1-.45-1-1 0-.3.13-.56.33-.75s3.48-3.11 3.48-3.11L5.29 15.2a.99.99 0 0 1-.3-.72c0-.34.17-.64.43-.82s2.4-1.68 2.4-1.68l2.15-1.5 1.55-1.09 3.91-2.74c.16-.11.36-.18.57-.18s.41.07.58.18Z"] },
414
+ "EmailThreadedReplies": { "viewBox": "0 0 32 32", "paths": ["M3.64 19.87v-8.19c0-2.63 1.47-3.41 3.33-3.41h19.72c0-1.33-.71-1.96-2.88-1.96H5.09C3.39 6.31 2.01 7.7 2 9.4v10.7c-.03.93.69 1.7 1.61 1.74h.02v-1.96Zm4.53 5.82H26.9c1.71 0 3.1-1.39 3.1-3.1v-9.81c0-1.71-1.39-3.1-3.1-3.1H8.17c-1.71 0-3.1 1.39-3.1 3.1v9.81c0 1.71 1.39 3.1 3.1 3.1m.78-10.92a.85.85 0 0 1-.21-.56c0-.49.39-.9.88-.9.17 0 .34.04.48.14l6.24 5.56c.68.6 1.7.6 2.37 0l6.24-5.56a.89.89 0 0 1 1.48.67c0 .25-.11.5-.29.67l-3.1 2.76 3.16 3.03c.36.33.39.9.06 1.26-.17.19-.41.29-.66.29a.88.88 0 0 1-.64-.28l-3.25-3.15-1.83 1.6c-.65.58-1.49.89-2.36.89-.88 0-1.72-.31-2.38-.89l-1.78-1.6-3.24 3.17a.892.892 0 0 1-1.54-.61c-.01-.26.09-.51.28-.69l3.15-3.06-3.06-2.75Z"] },
415
+ "Emoji": { "viewBox": "0 0 32 32", "paths": ["M16 30C8.27 30 2 23.73 2 16S8.27 2 16 2s14 6.27 14 14-6.27 13.99-14 14m0-26C9.37 4 4 9.37 4 16s5.37 12 12 12 12-5.37 12-12c0-6.62-5.37-11.99-12-12m6.48 9.87c0 1.09-.88 1.97-1.97 1.97s-1.97-.88-1.97-1.97.88-1.97 1.97-1.97 1.97.88 1.97 1.97m-10.99-1.99c1.09 0 1.97.88 1.97 1.97s-.88 1.97-1.97 1.97-1.97-.88-1.97-1.97.88-1.97 1.97-1.97m11.63 9.04c-1.94 1.56-4.4 2.53-7.1 2.6H16c-2.71-.08-5.18-1.07-7.12-2.66l.02.02a.98.98 0 0 1-.33-.73c0-.24.09-.46.23-.63.18-.2.44-.33.73-.33.24 0 .46.09.63.24a9.94 9.94 0 0 0 5.82 2.21H16c2.23-.09 4.26-.89 5.88-2.18l-.02.02c.17-.14.39-.23.63-.23.29 0 .54.13.72.32.14.17.23.39.23.63 0 .29-.13.55-.32.73Z"] },
416
+ "EmojiFillHappy": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2m4.87 9.77c1.07 0 1.94.87 1.94 1.94s-.87 1.94-1.94 1.94-1.94-.87-1.94-1.94.87-1.94 1.94-1.94m-9.75 0c1.07 0 1.94.87 1.94 1.94s-.87 1.94-1.94 1.94-1.94-.87-1.94-1.94.87-1.94 1.94-1.94m11.83 9.56c-1.89 1.54-4.3 2.5-6.94 2.58h-.02c-2.65-.08-5.06-1.04-6.97-2.6l.02.02a.89.89 0 0 1-.31-.67.892.892 0 0 1 1.48-.67 9.76 9.76 0 0 0 5.76 2.14h.02c2.21-.08 4.21-.88 5.81-2.16h-.02c.16-.12.36-.2.59-.2.49 0 .89.4.89.89 0 .27-.12.51-.31.67"] },
417
+ "EmojiFillNeutral": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2m4.87 9.77c1.07 0 1.94.87 1.94 1.94s-.87 1.94-1.94 1.94-1.94-.87-1.94-1.94.87-1.94 1.94-1.94m-9.75 0c1.07 0 1.94.87 1.94 1.94s-.87 1.94-1.94 1.94-1.94-.87-1.94-1.94.87-1.94 1.94-1.94m-.31 8.76h10.37c.57 0 1.04.46 1.04 1.04s-.46 1.04-1.04 1.04H10.81c-.57 0-1.04-.46-1.04-1.04s.46-1.04 1.04-1.04"] },
418
+ "EmojiFillSad": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2m4.67 9.96a1.87 1.87 0 1 1-.73 3.6h.01a1.867 1.867 0 0 1 .7-3.6zm-9.33 0a1.87 1.87 0 1 1-.73 3.6h.01a1.867 1.867 0 0 1 .7-3.6zm-2.19 9.61c1.83-1.62 4.21-2.65 6.83-2.77H16c2.65.11 5.03 1.14 6.87 2.78h-.01c.18.17.3.42.3.69 0 .23-.08.45-.22.61a.844.844 0 0 1-1.24.09 9.27 9.27 0 0 0-5.67-2.3h-.02c-2.19.09-4.17.93-5.7 2.26h.01a.9.9 0 0 1-.59.22c-.1 0-.2-.02-.29-.05a.92.92 0 0 1-.57-.71s-.01-.1-.01-.15c0-.27.11-.51.29-.69Z"] },
419
+ "EmojiLineNeutral": { "viewBox": "0 0 32 32", "paths": ["M16 30C8.27 30 2 23.73 2 16S8.27 2 16 2s14 6.27 14 14-6.27 13.99-14 14m0-26C9.37 4 4 9.37 4 16s5.37 12 12 12 12-5.37 12-12c0-6.62-5.37-11.99-12-12m6.48 9.87c0 1.09-.88 1.97-1.97 1.97s-1.97-.88-1.97-1.97.88-1.97 1.97-1.97 1.97.88 1.97 1.97m-10.99-1.99c1.09 0 1.97.88 1.97 1.97s-.88 1.97-1.97 1.97-1.97-.88-1.97-1.97.88-1.97 1.97-1.97m-.67 8.65h10.37c.57 0 1.04.46 1.04 1.04s-.46 1.04-1.04 1.04H10.82c-.57 0-1.04-.46-1.04-1.04s.46-1.04 1.04-1.04"] },
420
+ "EmojiLineSad": { "viewBox": "0 0 32 32", "paths": ["M16 30C8.27 30 2 23.73 2 16S8.27 2 16 2s14 6.27 14 14-6.27 13.99-14 14m0-26C9.37 4 4 9.37 4 16s5.37 12 12 12 12-5.37 12-12c0-6.62-5.37-11.99-12-12m6.48 9.87c0 1.09-.88 1.97-1.97 1.97s-1.97-.88-1.97-1.97.88-1.97 1.97-1.97 1.97.88 1.97 1.97m-10.99-1.99c1.09 0 1.97.88 1.97 1.97s-.88 1.97-1.97 1.97-1.97-.88-1.97-1.97.88-1.97 1.97-1.97m-2.32 9.57c1.84-1.56 4.21-2.54 6.82-2.63h.02c2.62.08 5 1.06 6.85 2.65h-.01c.2.17.32.42.32.71 0 .24-.09.46-.23.63a.883.883 0 0 1-1.29.09 9.42 9.42 0 0 0-5.61-2.15h-.02c-2.16.09-4.11.9-5.66 2.18h.02c-.16.13-.37.22-.6.22-.28 0-.53-.13-.69-.33a1.03 1.03 0 0 1 .1-1.36Z"] },
421
+ "Enlarge": { "viewBox": "0 0 32 32", "paths": ["M30 4v10.09c0 1.08-.87 1.95-1.95 1.95s-1.95-.87-1.95-1.95V8.52l-5.62 5.62c-.04.07-.1.13-.16.19L8.63 26.02h5.44c1.07.01 1.95.89 1.95 1.97 0 .54-.22 1.02-.57 1.38-.36.35-.85.57-1.38.57H3.97c-.55 0-1.05-.23-1.41-.6-.34-.36-.56-.84-.56-1.37v-10.1c0-1.08.87-1.95 1.95-1.95s1.95.87 1.95 1.95v5.58l11.8-11.78s.09-.08.14-.11l5.61-5.59h-5.44c-1.08 0-1.95-.88-1.95-1.96 0-.54.22-1.03.57-1.38.36-.35.84-.57 1.38-.57h10.05C29.13 2.06 30 2.93 30 4"] },
422
+ "Enrichment": { "viewBox": "0 0 32 32", "paths": ["m5.31 6.79 1.19 2.2c.34.61.82 1.1 1.43 1.44l2.18 1.2-2.18 1.2c-.61.34-1.09.83-1.43 1.44l-1.19 2.2-1.19-2.2c-.34-.61-.82-1.1-1.43-1.44l-2.18-1.2 2.18-1.2c.61-.34 1.09-.83 1.43-1.44zM13.74 3.62l.8 1.48c.23.41.55.74.96.97l1.47.81-1.47.81c-.41.23-.74.56-.96.97l-.8 1.48-.8-1.48c-.23-.41-.55-.74-.96-.97l-1.47-.81 1.47-.81c.41-.23.74-.56.96-.97zM31.31 12.75c.24.22.26.59.04.84L18.3 28.19a.58.58 0 0 1-.84.03l-8.14-7.88a.607.607 0 0 1-.02-.84l2.31-2.42c.23-.24.6-.24.83-.02l5.22 5.05L28 10.54c.22-.24.59-.26.83-.04z"] },
423
+ "Enroll": { "viewBox": "0 0 32 32", "paths": ["M28.65 20.95h-3.16V6.06c0-1.76-1.42-3.18-3.17-3.18H5.8A4.06 4.06 0 0 0 2 6.93v2.73c0 .75.61 1.36 1.36 1.36h4.07v14.02c0 1.16.48 2.21 1.26 2.95.72.69 1.71 1.12 2.79 1.12h14.45c2.25 0 4.07-1.82 4.07-4.07V22.3c0-.75-.6-1.35-1.35-1.36ZM22.33 5.59c.25 0 .46.2.46.46v14.9H14.2c-.75 0-1.36.61-1.36 1.36v2.65c0 .65-.41 1.2-.98 1.41s-.31 0-.31 0h-.05c-.37 0-.7-.14-.95-.37a1.32 1.32 0 0 1-.42-.97V6.96c0-.27-.03-.54-.08-.79v.03q0-.13-.05-.24c-.06-.11-.05-.24-.09-.36h12.43ZM4.71 8.3V6.83c0-.75.61-1.36 1.36-1.36s1.36.61 1.36 1.36v1.46H4.72ZM27.3 25.02c0 .75-.61 1.36-1.36 1.36H15.32c.14-.4.23-.86.23-1.34v-1.37H27.3zM13.29 10.11h6.32c.7-.06 1.24-.65 1.24-1.35s-.54-1.29-1.24-1.35h-6.45c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h.12Zm0 4.52h6.32c.7-.06 1.24-.65 1.24-1.35s-.54-1.29-1.24-1.35h-6.45c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h.12Zm0 4.53h6.32c.7-.06 1.24-.65 1.24-1.35s-.54-1.29-1.24-1.35h-6.45c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h.12Z"] },
424
+ "Exclamation": { "viewBox": "0 0 32 32", "paths": ["M19.74 26.26c0 2.07-1.67 3.74-3.74 3.74s-3.74-1.67-3.74-3.74 1.67-3.74 3.74-3.74 3.74 1.67 3.74 3.74M12.29 4.13A1.856 1.856 0 0 1 14.13 2h3.75c1.03 0 1.86.83 1.86 1.86 0 .09 0 .19-.02.28s-1.86 13.05-1.86 13.05c-.12.93-.9 1.63-1.85 1.63s-1.73-.71-1.85-1.63-1.88-13.07-1.88-13.07Z"] },
425
+ "ExclamationCircle": { "viewBox": "0 0 32 32", "paths": ["M15.86 31.86c-8.83 0-16-7.18-16-16s7.17-16 16-16 16 7.17 16 16-7.18 16-16 16m0-29.72C8.3 2.14 2.15 8.29 2.15 15.85S8.3 29.56 15.86 29.56s13.71-6.15 13.71-13.71S23.42 2.14 15.86 2.14", "M15.86 20.43c-.63 0-1.14-.51-1.14-1.14V6.71a1.14 1.14 0 1 1 2.28 0v12.57c0 .63-.51 1.14-1.14 1.14Z", "M15.86 26.14c-.94 0-1.71-.77-1.71-1.71s.77-1.71 1.71-1.71 1.71.77 1.71 1.71-.77 1.71-1.71 1.71m0-2.28a.57.57 0 1 0 0 1.14.57.57 0 0 0 0-1.14"] },
426
+ "ExternalLink": { "viewBox": "0 0 32 32", "paths": ["M26.91 5.78c-.07-.16-.16-.3-.28-.41a1.1 1.1 0 0 0-.4-.27c-.14-.06-.3-.09-.47-.09h-7.72c-.7 0-1.26.56-1.27 1.26 0 .7.57 1.27 1.27 1.27h4.64L11.86 18.35a1.272 1.272 0 0 0 1.8 1.8L24.47 9.34v4.64c0 .7.57 1.27 1.27 1.27s1.27-.57 1.27-1.27V6.27c0-.17-.03-.33-.09-.47Zm-4.57 11.91c-.7 0-1.27.57-1.27 1.27v5.15c0 .19-.16.35-.35.35H7.89c-.19 0-.35-.16-.35-.35V11.27c0-.19.16-.35.35-.35h5.15c.7 0 1.27-.57 1.27-1.27s-.57-1.27-1.27-1.27H7.89c-1.59 0-2.88 1.3-2.89 2.89v12.84a2.9 2.9 0 0 0 2.89 2.9h12.86c1.6 0 2.9-1.3 2.9-2.9v-5.14c0-.7-.57-1.27-1.27-1.27h-.03Z"] },
427
+ "Favorite": { "viewBox": "0 0 32 32", "paths": ["m17.11 3.44 2.51 7.74c.16.47.6.79 1.1.79h8.13c.63 0 1.15.51 1.15 1.14 0 .37-.18.72-.48.94l-6.58 4.79c-.4.29-.57.81-.42 1.28l2.51 7.73a1.144 1.144 0 0 1-1.76 1.29l-6.58-4.78c-.4-.29-.95-.29-1.35 0l-6.58 4.78A1.138 1.138 0 0 1 7 27.86l2.51-7.73c.15-.47-.02-.99-.42-1.28l-6.58-4.79a1.15 1.15 0 0 1-.26-1.6c.22-.3.57-.48.94-.48h8.16c.5 0 .94-.32 1.1-.79l2.51-7.74c.2-.6.84-.93 1.45-.74.35.11.62.39.74.74Z"] },
428
+ "FavoriteHollow": { "viewBox": "0 0 32 32", "paths": ["m15.99 6.53 1.71 5.28a3.17 3.17 0 0 0 2.99 2.15h5.54l-4.45 3.25c-1.1.8-1.57 2.21-1.15 3.52l1.71 5.26-4.5-3.26c-.54-.38-1.18-.58-1.84-.58s-1.31.21-1.85.6L9.67 26l1.72-5.27c.41-1.3-.05-2.71-1.15-3.51l-4.47-3.25h5.52c1.35 0 2.56-.86 3-2.17l1.7-5.26m0-3.91c-.12 0-.23.02-.35.05-.35.11-.62.39-.74.74l-2.51 7.75c-.16.47-.6.79-1.1.79H3.16c-.63 0-1.15.51-1.16 1.14 0 .37.18.72.48.94l6.59 4.79c.4.29.57.81.42 1.28l-2.52 7.74a1.144 1.144 0 0 0 1.09 1.51c.24 0 .48-.08.68-.22l6.59-4.78c.2-.14.44-.22.68-.22s.48.07.68.22l6.59 4.78c.21.15.44.23.68.23.35 0 .7-.16.93-.47.22-.3.28-.69.16-1.05l-2.51-7.74c-.15-.47.02-.99.42-1.28l6.56-4.79c.51-.37.63-1.09.26-1.6-.22-.3-.57-.48-.94-.48H20.7c-.5 0-.94-.32-1.1-.79l-2.51-7.75c-.16-.49-.61-.79-1.1-.79"] },
429
+ "File": { "viewBox": "0 0 32 32", "paths": ["M27.19 10.56a2 2 0 0 0-.12-.35s0-.07 0-.07c-.06-.11-.14-.21-.22-.3l-7.53-7.5c-.08-.08-.18-.16-.29-.22s-.08 0-.08 0c-.1-.05-.21-.09-.33-.11S9 2.01 9 2.01c-2.31 0-4.18 1.86-4.21 4.16v20.1c0 2.2 1.73 3.74 4.21 3.74h14.02c2.47 0 4.21-1.54 4.21-3.74V10.56h-.03Zm-2.81 15.7c0 .77-.76.97-1.4.97H8.99c-.64 0-1.4-.17-1.4-.97V6.16c0-.77.63-1.4 1.4-1.4h7.95V9.9c0 1.29 1.05 2.34 2.34 2.34h5.1z"] },
430
+ "FilledXCircleIcon": { "viewBox": "0 0 32 32", "paths": ["M16 1.14C7.79 1.14 1.14 7.79 1.14 16S7.79 30.86 16 30.86 30.86 24.2 30.86 16 24.2 1.14 16 1.14m5.38 18.62a1.14 1.14 0 0 1-.81 1.95c-.29 0-.58-.11-.81-.33L16 17.62l-3.76 3.76c-.23.22-.52.33-.81.33s-.59-.11-.81-.33a1.14 1.14 0 0 1 0-1.62L14.38 16l-3.76-3.76a1.14 1.14 0 0 1 0-1.62 1.14 1.14 0 0 1 1.62 0L16 14.38l3.76-3.76a1.14 1.14 0 0 1 1.62 0c.45.45.45 1.17 0 1.62L17.62 16z", "M16 0C7.18 0 0 7.18 0 16s7.18 16 16 16 16-7.18 16-16S24.82 0 16 0m0 29.71C8.44 29.71 2.29 23.56 2.29 16S8.44 2.28 16 2.28 29.71 8.44 29.71 16 23.56 29.71 16 29.71"] },
431
+ "Filter": { "viewBox": "0 0 32 32", "paths": ["M3.75 27.07H9v.58c0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75v-4.68c0-.97-.78-1.75-1.75-1.75S9 22 9 22.97v.63H3.75c-.97 0-1.75.78-1.75 1.75s.78 1.75 1.75 1.75zm24.47-3.47H14.81v3.5h13.41c.97 0 1.75-.78 1.75-1.75s-.78-1.75-1.75-1.75M3.75 17.74h15.74v.69c0 .9.73 1.64 1.64 1.64h.22c.9 0 1.64-.73 1.64-1.64v-4.88c0-.9-.73-1.64-1.64-1.64h-.22c-.9 0-1.64.73-1.64 1.64v.69H3.75c-.97 0-1.75.78-1.75 1.75s.78 1.75 1.75 1.75m24.47-3.5h-2.88v3.5h2.91c.97 0 1.75-.78 1.75-1.75s-.78-1.75-1.75-1.75zM3.75 8.43H9v.69c0 .9.73 1.64 1.64 1.64h.22c.9 0 1.64-.73 1.64-1.64V4.24c0-.9-.73-1.64-1.64-1.64h-.22C9.74 2.6 9 3.33 9 4.24v.65H3.75C2.78 4.89 2 5.67 2 6.64s.78 1.75 1.75 1.75zm11.07-3.54v3.54h13.41c.97 0 1.75-.78 1.75-1.75s-.78-1.75-1.75-1.75z"] },
432
+ "Folder": { "viewBox": "0 0 32 32", "paths": ["M5.77 28.39h20.47c2.07 0 3.76-1.68 3.76-3.76v-10.8c0-2.07-1.68-3.76-3.76-3.76H15.91a.54.54 0 0 1-.45-.38s-1.2-3.52-1.2-3.52c-.51-1.51-1.91-2.58-3.57-2.58H7.31a3.76 3.76 0 0 0-3.56 2.56v.03l-1.56 4.66c-.12.36-.2.77-.2 1.19v12.6c0 2.07 1.68 3.76 3.76 3.76z"] },
433
+ "FolderOpen": { "viewBox": "0 0 32 32", "paths": ["M5.19 26.87c.21.62.79 1.06 1.47 1.06h19.71c2 0 3.63-1.62 3.63-3.63V13.9c0-2-1.63-3.62-3.63-3.62h-7.84a.52.52 0 0 1-.49-.35s-1.13-3.39-1.13-3.39c-.5-1.45-1.85-2.48-3.44-2.48h-3.23c-1.59 0-2.95 1.03-3.44 2.45v.03l-1.5 4.49c-.12.34-.19.73-.19 1.14v1.23H22.7c.46 0 .84.3.98.71s.48 1.44.48 1.44l1.26 3.79 1.41 4.1a1.04 1.04 0 0 1-.99 1.36h-.12c-.4-.06-.72-.34-.84-.71s-.83-2.52-.83-2.52l-2.04-6.11H3.55c-.86 0-1.56.7-1.56 1.56q0 .27.09.51s3.11 9.33 3.11 9.33Z"] },
434
+ "Forward": { "viewBox": "0 0 32 32", "paths": ["M9.2 14.28h14.93l-3.54-3.54c-.62-.74-.52-1.85.22-2.46.31-.26.71-.4 1.12-.41.41 0 .81.15 1.13.41l6.4 6.4c.34.33.53.77.54 1.24 0 .46-.18.91-.51 1.24l-6.4 6.4c-.68.68-1.8.68-2.48 0s-.68-1.8 0-2.48L24 17.59H9.2c-2.15 0-3.89 1.74-3.89 3.89v1.11c-.07.87-.8 1.54-1.67 1.54-.86 0-1.58-.67-1.64-1.53v-1.12a7.22 7.22 0 0 1 7.19-7.2z"] },
435
+ "Gauge": { "viewBox": "0 0 32 32", "paths": ["m19.67 22.42 5.96-10.47a.898.898 0 0 0-.13-1.04.88.88 0 0 0-1.05-.15s-10.5 5.9-10.5 5.9c-.33.2-.62.43-.87.7-.76.77-1.24 1.82-1.24 2.99 0 2.34 1.89 4.23 4.23 4.23 1.17 0 2.23-.47 2.99-1.24q.36-.405.6-.9v-.02zM16 22.17c-.5 0-.95-.2-1.28-.53s-.54-.78-.54-1.28.21-.96.54-1.28a1.83 1.83 0 0 1 2.56 0c.33.33.53.78.53 1.28 0 1-.81 1.81-1.8 1.81Zm3.5-10.66 3.71-2.09c-2.06-1.26-4.55-2-7.21-2-7.72 0-13.98 6.25-14 13.97 0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75c0-5.8 4.7-10.5 10.5-10.5 1.26 0 2.46.23 3.57.64zm7.58 1.36-1.93 3.4c.84 1.47 1.34 3.24 1.35 5.12 0 .97.78 1.75 1.75 1.75S30 22.36 30 21.39c0-3.22-1.1-6.19-2.95-8.54l.02.03Z"] },
436
+ "GenerateChart": { "viewBox": "0 0 32 32", "paths": ["M28.38 7.92h-2.2c-.89 0-1.62.72-1.62 1.62v16.69h-2.1V4.15c0-.87-.7-1.59-1.57-1.61h-2.21c-.89 0-1.62.72-1.62 1.62v22.03h-2.15V11.7c0-.89-.72-1.62-1.62-1.62h-2.2c-.89 0-1.62.72-1.62 1.62v14.54H7.41v-9.15c0-.89-.72-1.62-1.62-1.62h-2.2c-.89 0-1.62.72-1.62 1.62v10.77c0 .89.72 1.62 1.62 1.62h24.77c.89 0 1.62-.72 1.62-1.62V9.49a1.62 1.62 0 0 0-1.61-1.57Z"] },
437
+ "Gift": { "viewBox": "0 0 32 32", "paths": ["m29.44 10.17-6.99-.63c.3-.16.57-.37.81-.62a3.9 3.9 0 0 0 1.06-3.97 2.953 2.953 0 0 0-3.73-1.88c-.15.05-.3.11-.44.19-1.52.58-3.1 2.93-3.61 4.57-.2-.03-.41-.03-.62 0a4.81 4.81 0 0 0-3.05-4.2c-1.89-.73-4.19-.07-4.8 1.66-.42 1.4 0 2.92 1.06 3.92.11.12.24.23.37.33l-6.95.65c-.31.04-.54.3-.54.61v3.4c0 .31.23.57.54.61l1.33.13h.23a.4.4 0 0 0 0 .16v10.89c0 .62.45 1.16 1.06 1.26l2.48.41V10.81c1.31-.31 2.66-.46 4.01-.47.89.16 1.81.19 2.71.07.05 0 0 .11.15.26s.35.3.35.3l-3.4.43-.12 16.89 4.63.78a.9.9 0 0 0 .4 0l4.38-.67V11.24l-3.41-.33s.55-.29.57-.46c.62.03 1.25 0 1.87-.09.18 0 4.54.63 4.54.63l-.16 16.89 2.65-.41c.62-.1 1.07-.64 1.06-1.26V14.99l1.56-.13a.61.61 0 0 0 .56-.61v-3.47c0-.32-.25-.58-.56-.61m-15.9-.63a5.17 5.17 0 0 1-2.96-1.14c-.76-.62-.87-1.73-.25-2.48.01-.01.02-.02.03-.04.86-.54 1.97-.5 2.79.1.78.61 1.36 1.43 1.67 2.37.12.81-.36 1.12-1.28 1.19m5.44 0c-.97 0-1.51-.3-1.39-1.19.27-.96.84-1.82 1.62-2.45a2.48 2.48 0 0 1 2.87 0c.67.78.58 1.95-.2 2.62-.01.01-.03.02-.04.03-.81.65-1.81 1-2.85.99Z"] },
438
+ "GithubBranch": { "viewBox": "0 0 32 32", "paths": ["M27.62 4.72c-.33-.76-.86-1.41-1.53-1.89s-1.46-.76-2.29-.82c-.82-.06-1.65.11-2.38.49a4.51 4.51 0 0 0-2.44 4c0 .93.29 1.84.83 2.6s1.3 1.33 2.17 1.65v1.26c0 .53-.21 1.04-.59 1.41-.38.38-.88.59-1.41.59h-7.99c-.69 0-1.37.14-2 .42v-3.67c1-.35 1.84-1.05 2.38-1.97s.73-1.99.55-3.04-.72-2-1.53-2.68-1.84-1.06-2.9-1.06-2.09.38-2.9 1.06S4.23 4.7 4.06 5.75s.02 2.12.55 3.04c.54.92 1.38 1.61 2.38 1.97v10.5c-1 .35-1.85 1.05-2.38 1.97-.54.92-.73 1.99-.55 3.04s.72 2 1.54 2.68 1.84 1.06 2.9 1.06 2.09-.38 2.9-1.06 1.36-1.63 1.54-2.68-.02-2.12-.55-3.04a4.53 4.53 0 0 0-2.38-1.97V19c0-.53.21-1.04.59-1.41.38-.38.88-.59 1.41-.59H20c1.33 0 2.6-.53 3.54-1.46C24.48 14.6 25 13.33 25 12v-1.26a4.504 4.504 0 0 0 2.63-6.04ZM9.56 26.55a1.499 1.499 0 1 1-2.12-2.12 1.499 1.499 0 1 1 2.12 2.12m0-18.99a1.499 1.499 0 1 1-2.12-2.12 1.499 1.499 0 1 1 2.12 2.12m14.99 0a1.499 1.499 0 1 1-2.12-2.12 1.499 1.499 0 1 1 2.12 2.12"] },
439
+ "Globe": { "viewBox": "0 0 32 32", "paths": ["M13.89 20.03c-5.04 0-9.14-4.1-9.14-9.14s4.1-9.14 9.14-9.14 9.14 4.1 9.14 9.14-4.1 9.14-9.14 9.14m0-16c-3.78 0-6.86 3.08-6.86 6.86s3.08 6.86 6.86 6.86 6.86-3.08 6.86-6.86-3.08-6.86-6.86-6.86", "M13.89 24.6c-3.51 0-7.02-1.34-9.7-4.01a1.14 1.14 0 0 1 0-1.62 1.14 1.14 0 0 1 1.62 0c4.46 4.46 11.71 4.46 16.16 0 4.46-4.46 4.46-11.71 0-16.16a1.14 1.14 0 0 1 0-1.62 1.14 1.14 0 0 1 1.62 0c5.35 5.35 5.35 14.05 0 19.4a13.7 13.7 0 0 1-9.7 4.01", "M19.6 31.46h-5.71c-.63 0-1.14-.51-1.14-1.14v-6.86a1.14 1.14 0 1 1 2.28 0v5.71h4.57a1.14 1.14 0 1 1 0 2.28Z", "M13.89 31.46H8.18a1.14 1.14 0 1 1 0-2.28h5.71a1.14 1.14 0 1 1 0 2.28"] },
440
+ "Goal": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2.01 16 2m0 24.5c-5.8 0-10.5-4.7-10.5-10.5S10.2 5.5 16 5.5 26.5 10.2 26.5 16 21.8 26.49 16 26.5m0-18.67c-4.51 0-8.17 3.66-8.17 8.17s3.66 8.17 8.17 8.17 8.17-3.66 8.17-8.17S20.51 7.84 16 7.83m0 12.83c-2.58 0-4.67-2.09-4.67-4.67s2.09-4.67 4.67-4.67 4.67 2.09 4.67 4.67-2.09 4.67-4.67 4.67m2.33-4.67c0 1.29-1.04 2.33-2.33 2.33s-2.33-1.04-2.33-2.33 1.04-2.33 2.33-2.33 2.33 1.04 2.33 2.33"] },
441
+ "Grid": { "viewBox": "0 0 32 32", "paths": ["M4.33 2h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33H4.33C3.04 8.99 2 7.95 2 6.66V4.33C2 3.04 3.04 2 4.33 2m0 10.5h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33H4.33C3.04 19.49 2 18.45 2 17.16v-2.33c0-1.29 1.04-2.33 2.33-2.33m0 10.5h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33H4.33C3.04 29.99 2 28.95 2 27.66v-2.33C2 24.04 3.04 23 4.33 23m10.5-21h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33h-2.33c-1.29 0-2.33-1.04-2.33-2.33V4.33C12.5 3.04 13.54 2 14.83 2m0 10.5h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33h-2.33c-1.29 0-2.33-1.04-2.33-2.33v-2.33c0-1.29 1.04-2.33 2.33-2.33m0 10.5h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33h-2.33c-1.29 0-2.33-1.04-2.33-2.33v-2.33c0-1.29 1.04-2.33 2.33-2.33m10.5-21h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33h-2.33C24.04 8.99 23 7.95 23 6.66V4.33C23 3.04 24.04 2 25.33 2m0 10.5h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33h-2.33c-1.29 0-2.33-1.04-2.33-2.33v-2.33c0-1.29 1.04-2.33 2.33-2.33m0 10.5h2.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33h-2.33c-1.29 0-2.33-1.04-2.33-2.33v-2.33c0-1.29 1.04-2.33 2.33-2.33"] },
442
+ "GuidedActions": { "viewBox": "0 0 32 32", "paths": ["M24.52 15.05 9.87 9.99c-.43-.15-.9 0-1.15.38-.25.37-.23.87.07 1.21l3.77 4.4-3.77 4.4a.999.999 0 0 0 .76 1.65c.11 0 .22-.02.33-.05l14.65-5.06c.4-.14.67-.52.67-.95s-.27-.81-.67-.95Z", "M16 2C8.28 2 2 8.28 2 16s6.28 14 14 14 14-6.28 14-14S23.72 2 16 2m0 25C9.93 27 5 22.07 5 16S9.93 5 16 5s11 4.93 11 11-4.93 11-11 11"] },
443
+ "Hide": { "viewBox": "0 0 32 32", "paths": ["M29.8 14.92c-1.42-2.42-2.91-3.95-4.99-5.3l-.05-.03 2.92-3.03c.3-.31.47-.73.47-1.2s-.18-.89-.48-1.21c-.32-.31-.75-.52-1.23-.52s-.93.2-1.24.52l-3.82 3.82c-1.58-.57-3.41-.89-5.31-.89h-.3c-5.82 0-10.88 3.18-13.57 7.89 0 0-.2.35-.2.87 0 .42.16.8.16.8 1.25 2.23 2.96 4.06 5.01 5.42l.05.04-2.91 3.02c-.46.48-.84.95-.84 1.5 0 1.08.84 1.76 1.75 1.76.59 0 1.08-.42 1.5-.83l3.89-3.89c1.6.6 3.46.94 5.38.96h.23c5.82 0 10.89-3.18 13.57-7.9 0 0 .22-.44.22-.85s-.13-.81-.2-.93ZM9.77 19.57c-1.62-.95-3.96-3.67-3.99-3.69s0-.06 0-.06c2.23-3.2 5.87-5.25 10.01-5.25h.19c1.55 0 2.56.24 2.56.24l-1.45 1.45c-.34-.1-.71-.17-1.08-.17a3.66 3.66 0 0 0-3.66 3.65c0 .38.06.74.17 1.09l-2.74 2.74Zm16.43-3.72c-2.23 3.19-5.99 5.23-10.01 5.23-1.66 0-2.74-.23-2.74-.23l1.59-1.59c.31.09.62.13.95.13a3.66 3.66 0 0 0 3.65-3.66c0-.33-.04-.65-.13-.95l2.69-2.69c1.62.95 3.96 3.67 3.99 3.7.02.03 0 .06 0 .06Z"] },
444
+ "HighlyEngagedLead": { "viewBox": "0 0 32 32", "paths": ["M24.01 11.77c-1.02-.3.16.88.06 2.78-.08 1.46-1.73 2.92-2.52 2.57-.92-.4.85-5.26-1.65-9.44-2.08-3.46-8.2-6.78-7.78-5.35C14.19 9.22 6.94 13 5.33 17.09c-1.92 4.9.15 11.11 6.5 12.89.19.05.32-.19.18-.32-1.26-1.26-2.56-2.78-2.76-4.61-.27-2.55.48-4.11.94-4.81.65-.96-.25 1.13.14 2.49.26.91 1.09 1.51 1.78 1.69.09.02.18-.06.17-.15-.06-.52-.56-1.95.74-5.02.91-2.16 3.57-4.66 4.68-4.93.21-.05.1.25.02.44-1.16 2.58-.99 4.25-.26 5.35.71 1.06 3.14 2.94 3.36 5.34.17 1.84-.16 2.99-1.16 4.13-.08.09 0 .24.12.2 3.93-1.36 7.43-5.65 7.57-10.12.15-4.86-2.59-7.65-3.35-7.88h.01Z"] },
445
+ "Home": { "viewBox": "0 0 32 32", "paths": ["M26.39 16.53v12.31h-7.12V21.5c0-.36-.29-.66-.65-.67h-4.89c-.36 0-.66.29-.67.65v7.36H5.94V16.53l9.9-8.78c.2-.17.49-.17.68 0l9.86 8.78Zm3.24-.24c-.53.48-.89.51-1.4.07-.28-.24-9.59-8.65-12.03-10.86C13.61 7.78 4.26 15.98 3.83 16.33c-.38.38-.99.38-1.36 0-.03-.03-.06-.06-.08-.09-.52-.49-.51-.83.1-1.4L15.52 3.42c.38-.35.96-.35 1.34 0l3.83 3.45V5.44c.01-.13.12-.23.25-.22h2.64c.13 0 .24.09.25.22v4.34l5.64 5.1c.7.65.66.93.16 1.4Z"] },
446
+ "HorizontalRule": { "viewBox": "0 0 32 32", "paths": ["M28.25 14.25H3.75C2.78 14.25 2 15.03 2 16s.78 1.75 1.75 1.75h24.5c.97 0 1.75-.78 1.75-1.75s-.78-1.75-1.75-1.75"] },
447
+ "HubDB": { "viewBox": "0 0 32 32", "paths": ["M28.91 9.65c0 4.22-5.78 7.65-12.91 7.65S3.08 13.87 3.08 9.65 8.86 2 16 2s12.91 3.42 12.91 7.65M16 25.56c-5.46 0-10.12-1.82-12.69-4.58-.13.41-.21.88-.22 1.37C3.09 26.57 8.87 30 16 30s12.91-3.42 12.91-7.65c0-.49-.08-.96-.23-1.4v.03c-2.58 2.76-7.24 4.58-12.7 4.58Zm0-6.35c-5.46 0-10.12-1.82-12.69-4.58-.13.41-.21.88-.22 1.37 0 4.22 5.78 7.65 12.91 7.65S28.91 20.23 28.91 16c0-.49-.08-.96-.23-1.4v.03c-2.58 2.76-7.24 4.58-12.7 4.58Z"] },
448
+ "ImageGallery": { "viewBox": "0 0 32 32", "paths": ["M25.84 8.13H12.65c-2.3 0-4.16 1.86-4.16 4.16v13.88c0 2.3 1.86 4.16 4.16 4.16h13.19c2.3 0 4.16-1.86 4.16-4.16V12.29c0-2.3-1.86-4.16-4.16-4.16m1.39 18.04c0 .77-.62 1.39-1.39 1.39H12.65c-.77 0-1.39-.62-1.39-1.39V12.29c0-.77.62-1.39 1.39-1.39h13.19c.77 0 1.39.62 1.39 1.39zm-2.5-7.88a1.02 1.02 0 0 0-1.13.27s-4.1 4.77-4.1 4.77c-.06.07-.16.12-.26.12-.06 0-.11-.01-.16-.04s-2.02-2.24-2.02-2.24c-.17-.13-.39-.21-.63-.21-.05 0-.11 0-.16.01-.27.04-.51.19-.66.39s-2.3 2.71-2.3 2.71c-.13.17-.2.38-.2.61 0 .57.46 1.03 1.03 1.03h10.19c.57 0 1.03-.46 1.03-1.03v-5.45c0-.42-.26-.79-.62-.94Zm-7.92-3.68c0 1.02-.83 1.85-1.85 1.85s-1.85-.83-1.85-1.85.83-1.85 1.85-1.85 1.85.83 1.85 1.85m3.7-9.72c0-.26-.21-.46-.46-.46H5.24c-.26 0-.46.21-.46.46v15.73c0 .26.21.46.46.46.77 0 1.39.62 1.39 1.39s-.62 1.39-1.39 1.39A3.24 3.24 0 0 1 2 20.62V4.9a3.24 3.24 0 0 1 3.24-3.24h14.81a3.24 3.24 0 0 1 3.24 3.24c0 .77-.62 1.39-1.39 1.39s-1.39-.62-1.39-1.39Z"] },
449
+ "Inbox": { "viewBox": "0 0 32 32", "paths": ["M29.86 17.35 25.1 5.54c-.28-.69-.94-1.16-1.72-1.16H8.59c-.77 0-1.44.48-1.71 1.15L2.13 17.32c-.09.2-.13.44-.14.69v7.77c0 1.02.82 1.84 1.84 1.85h24.31c1.02 0 1.85-.83 1.85-1.85v-7.75c0-.25-.05-.48-.14-.69Zm-20-9.26h12.28l3.26 8.11h-3.47c-.77 0-1.43.47-1.71 1.14s-1.07 2.63-1.07 2.63h-6.31l-1.07-2.61c-.28-.68-.94-1.15-1.71-1.15H6.59L9.85 8.1Z"] },
450
+ "Info": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 13.99-6.26 14-13.98V16c0-7.73-6.27-14-14-14m2.39 23.02H13.6v-9.59h4.79zm0-13.24H13.6V7.01h4.79z"] },
451
+ "InfoNoCircle": { "viewBox": "0 0 32 32", "paths": ["M16 29.71c-.63 0-1.14-.51-1.14-1.14V10.29a1.14 1.14 0 1 1 2.28 0v18.29c0 .63-.51 1.14-1.14 1.14Z", "M16 11.43h-5.71a1.14 1.14 0 1 1 0-2.28H16a1.14 1.14 0 1 1 0 2.28M22.86 29.71H9.15a1.14 1.14 0 1 1 0-2.28h13.71a1.14 1.14 0 1 1 0 2.28", "M16 5.71c-.94 0-1.71-.77-1.71-1.71s.77-1.71 1.71-1.71 1.71.77 1.71 1.71-.77 1.71-1.71 1.71m0-2.28a.57.57 0 1 0 0 1.14.57.57 0 0 0 0-1.14"] },
452
+ "InsertImage": { "viewBox": "0 0 32 32", "paths": ["M25.51 4h-19C4.02 4 2.01 6.01 2 8.5v15c0 2.48 2.01 4.49 4.49 4.5h19c2.48 0 4.49-2 4.51-4.47V8.5c0-2.48-2.01-4.49-4.49-4.5M27 23.53c0 .83-.67 1.5-1.5 1.5h-19c-.83 0-1.5-.67-1.5-1.5V8.5c0-.82.67-1.49 1.49-1.5H25.5c.83 0 1.5.67 1.5 1.5zm-2.94-11.42a1.505 1.505 0 0 0-1.66.4s-6 7-6 7c-.09.11-.23.17-.38.17-.08 0-.16-.02-.23-.06s-3-3.3-3-3.3c-.25-.2-.57-.32-.92-.32-.08 0-.15 0-.23.02-.41.05-.77.26-1 .57s-3.38 4-3.38 4c-.18.25-.29.56-.29.89 0 .83.67 1.5 1.5 1.5h15.01c.83 0 1.5-.67 1.5-1.5v-8c0-.63-.38-1.16-.92-1.39h-.01Zm-13.07-1.1c0 1.1-.9 2-2 2s-2-.9-2-2 .89-2 2-2 2 .89 2 2"] },
453
+ "InsertQuote": { "viewBox": "0 0 32 32", "paths": ["M9.7 13.21H6.91c-.25 0-.5.03-.73.08h.03V8.31c0-.39.31-.7.7-.7H9.7a2.1 2.1 0 1 0 0-4.2H6.91c-2.71 0-4.9 2.2-4.9 4.9v8.4q0 .3.09.57c-.05.24-.08.53-.08.82v5.6c0 2.71 2.2 4.9 4.9 4.9h2.79c2.71 0 4.9-2.2 4.9-4.9v-5.6c0-2.7-2.2-4.89-4.9-4.89Zm15.39 0H22.3c-.25 0-.5.03-.73.08h.03V8.31c0-.39.31-.7.7-.7h2.8a2.1 2.1 0 1 0 0-4.2h-2.8c-2.71 0-4.9 2.2-4.9 4.9v8.4q0 .3.09.57c-.05.24-.08.53-.08.82v5.6c0 2.71 2.2 4.9 4.9 4.9h2.8c2.71 0 4.9-2.2 4.9-4.9v-5.6c0-2.7-2.2-4.89-4.9-4.89h-.01Z"] },
454
+ "InsertVideo": { "viewBox": "0 0 32 32", "paths": ["M25.51 4h-19C4.02 4 2.01 6.01 2 8.5v15c0 2.48 2.01 4.49 4.49 4.5h19c2.48 0 4.49-1.99 4.51-4.47V8.5c0-2.48-2.01-4.49-4.49-4.5m-6.4 16.73c.03.9-.68 1.65-1.58 1.68h-11c-.88-.05-1.56-.8-1.53-1.68v-10.1c-.03-.88.65-1.63 1.53-1.69h11c.9.03 1.61.79 1.58 1.69zm7.94-.34c0 .42-.3.65-.68.42l-5.45-3.65v-2.88l5.45-3.65c.38-.27.68-.09.68.37z"] },
455
+ "Integrations": { "viewBox": "0 0 32 32", "paths": ["M27.65 8.54 16.62 2.18c-.18-.11-.4-.17-.64-.17s-.45.06-.64.17L4.31 8.54c-.37.23-.62.63-.62 1.1v12.73c0 .47.25.88.63 1.1l11.03 6.37c.18.11.4.17.64.17s.45-.06.64-.17l11.03-6.36c.38-.23.63-.63.64-1.1V9.65c0-.47-.26-.88-.65-1.1ZM15.99 4.75l8.48 4.9-8.48 4.9-8.48-4.9zm-9.75 7.1 8.48 4.9v9.78l-8.48-4.9zm11.03 14.68v-9.78l8.47-4.9v9.78z"] },
456
+ "Invoice": { "viewBox": "0 0 32 32", "paths": ["M25.67 2H6.33C4.47 2 2.96 3.51 2.96 5.37v21.25c0 1.86 1.51 3.37 3.37 3.37h19.34c1.86 0 3.37-1.51 3.37-3.37V5.37c0-1.86-1.51-3.37-3.37-3.37m1.69 24.63c0 .93-.75 1.69-1.69 1.69H6.33c-.93 0-1.69-.75-1.69-1.69V5.37c0-.93.75-1.69 1.69-1.69h19.34c.93 0 1.69.75 1.69 1.69v21.25Z", "M24.7 25.13h-5.97c-.4 0-.74.34-.74.74s.34.74.74.74h5.97c.4 0 .74-.34.74-.74s-.34-.74-.74-.74M7.3 7.52h10.75c.4 0 .74-.34.74-.74s-.34-.74-.74-.74H7.3c-.4 0-.74.34-.74.74s.34.74.74.74M25.35 22.77V10.02c0-.36-.29-.66-.65-.66H7.3c-.36 0-.65.3-.65.66v12.75s.02.17.04.21c.08.27.32.45.61.45h17.41c.36 0 .65-.3.65-.66Zm-6.73-.65H7.96v-3.1h10.67v3.1Zm0-4.41H7.96v-2.86h10.67v2.86Zm0-4.17H7.96v-2.87h10.67v2.87Zm5.41 8.58h-4.1v-3.1h4.1zm0-4.41h-4.1v-2.86h4.1zm0-4.17h-4.1v-2.87h4.1z"] },
457
+ "Kanban": { "viewBox": "0 0 32 32", "paths": ["M11.43 11.43h-8a1.14 1.14 0 1 1 0-2.28h8a1.14 1.14 0 1 1 0 2.28M28.57 11.43h-8a1.14 1.14 0 1 1 0-2.28h8a1.14 1.14 0 1 1 0 2.28", "M20.57 19.43c-.63 0-1.14-.51-1.14-1.14V3.43a1.14 1.14 0 1 1 2.28 0v14.86c0 .63-.51 1.14-1.14 1.14M11.43 19.43c-.63 0-1.14-.51-1.14-1.14V3.43a1.14 1.14 0 1 1 2.28 0v14.86c0 .63-.51 1.14-1.14 1.14", "M9.14 29.71H5.71c-1.89 0-3.43-1.54-3.43-3.43V5.71c0-1.89 1.54-3.43 3.43-3.43h20.57c1.89 0 3.43 1.54 3.43 3.43v14.86c0 1.89-1.54 3.43-3.43 3.43h-3.43c-1.89 0-3.43-1.54-3.43-3.43v-1.14h-6.86v6.86c0 1.89-1.54 3.43-3.43 3.43ZM5.71 4.57c-.63 0-1.14.51-1.14 1.14v20.57c0 .63.51 1.14 1.14 1.14h3.43c.63 0 1.14-.51 1.14-1.14v-8c0-.63.51-1.14 1.14-1.14h9.14c.63 0 1.14.51 1.14 1.14v2.29c0 .63.51 1.14 1.14 1.14h3.43c.63 0 1.14-.51 1.14-1.14V5.71c0-.63-.51-1.14-1.14-1.14z"] },
458
+ "Key": { "viewBox": "0 0 32 32", "paths": ["M18.97 13.76c.47-1.29.63-2.68.46-4.05a8.74 8.74 0 0 0-9.71-7.65 8.735 8.735 0 0 0-7.71 8.63c0 4.43 3.28 8.17 7.67 8.74 1.37.17 2.75.02 4.05-.45l5.52 5.52c.16.16.38.25.61.25h2.26c.48 0 .87.39.87.87v2.26c0 .23.09.45.25.61l1.24 1.24c.16.16.38.25.61.25h4.01c.48 0 .87-.39.87-.87v-3.99c0-.23-.09-.45-.25-.61L18.96 13.75ZM7.25 9.04c-.97 0-1.75-.78-1.75-1.75s.78-1.75 1.75-1.75S9 6.32 9 7.29s-.78 1.75-1.75 1.75"] },
459
+ "KnowledgeBase": { "viewBox": "0 0 32 32", "paths": ["M28.47 8c-.27-.86-.86-1.59-1.63-2.04a7.6 7.6 0 0 0-4.35-1.44c-2.36.15-4.63 1.01-6.48 2.48l-.15-.19a9.54 9.54 0 0 0-6.09-2.29c-1.76 0-3.49.5-4.98 1.44-.72.48-1.21 1.24-1.36 2.09-1.16.29-1.41.99-1.41 2.61v13.11a2.98 2.98 0 0 0 3.17 2.75h8.85c.29.6.9.98 1.56.98h.85c.67 0 1.27-.37 1.56-.98h8.85c1.63.1 3.04-1.12 3.16-2.75V10.66c0-1.67-.24-2.38-1.53-2.65ZM6.8 23.25c-2.23.72-2.31.53-2.31-1.74V9.12a1.9 1.9 0 0 1 1.06-1.81c3.78-2.47 7.96-.67 9.72.79v15.87l-.17-.07c-2.64-1.07-5.09-1.7-8.29-.66Zm18.37 0c-2.98-1.41-6.75 0-8.24.66-.08.04-.17.07-.26.09V8.13c1.56-1.17 5.25-3.61 9.68-.83.71.31 1.16 1.03 1.12 1.81v12.91c.02 1.72 0 2.31-2.28 1.24Z"] },
460
+ "Language": { "viewBox": "0 0 32 32", "paths": ["M29.94 14.75c0-.23-.05-.45-.09-.66s-.05-.34-.08-.5-.12-.59-.19-.89c-.02-.08-.04-.15-.06-.22-.2-.75-.43-1.4-.7-2.03l.03.09c-.39-.9-.82-1.67-1.3-2.39l.03.05s-.06-.07-.08-.11c-.24-.32-.47-.66-.72-.97s-.6-.69-.92-1.01c-2.52-2.53-6.02-4.1-9.87-4.1-.73 0-1.45.07-2.15.18h.08l-.44.08c-.36.06-.71.14-1.07.24s-.54.15-.79.24l-.49.17c-.41.15-.82.31-1.21.5l-.28.13c-.21.11-.42.23-.63.35s-.32.17-.51.28l-.47.3-.6.49c-.12.1-.25.18-.36.29-.34.28-.65.55-.94.85-.32.32-.63.66-.92 1.07-.23.27-.46.57-.66.89l-.02.04q-.06.09-.12.15c-.45.65-.87 1.4-1.22 2.18l-.04.09c-.71 1.62-1.12 3.51-1.12 5.5 0 3.87 1.56 7.37 4.09 9.9 2.04 2.02 4.7 3.42 7.68 3.87h.08c.34.06.7.1 1.07.14.38 0 .75.05 1.07.05h.06c3.84 0 7.32-1.55 9.84-4.07.23-.23.43-.47.64-.71.27-.31.51-.62.75-.94l.06-.08c.21-.3.42-.61.61-.93l.1-.17c.16-.25.32-.54.47-.85l.02-.05.13-.28c.13-.28.26-.56.36-.85s.1-.27.15-.4l.26-.79.13-.55c.06-.23.12-.46.16-.69s.08-.5.12-.76.08-.38.08-.54c0-.44.06-.88.06-1.33s-.06-.82-.06-1.27Zm-9.19-4.91c.28-.42 1.15-.5 1-.99a.91.91 0 0 1-.7-1.16c.14-.33.47-.57.85-.57.15 0 .29.04.41.1.27.14.44.42.68.6a.6.6 0 0 0 .82 0 .8.8 0 0 0 .12-.37s.06-.24.06-.24l.41.36c.84.84 1.55 1.8 2.11 2.86l.03.07c-.34.15-.73.24-1.14.24-.15 0-.3-.01-.45-.04h.02c-.36-.16-.81-.32-1.27-.45l-.07-.02c-.44.02-.84.14-1.19.34h.01a1.9 1.9 0 0 1-1.22.19h.01c-.41-.06-.71-.56-.48-.91Zm-2.4 10.72c-.42.58-1.07 1.07-1.42 1.62-.23.45-.48.84-.76 1.21v-.02c-.25.28-.62.45-.9.73-.35.4-.57.93-.57 1.52 0 .11 0 .22.02.32.1.69.29 1.32.56 1.9l-.02-.04c-.7-.05-1.34-.14-1.97-.28l.08.02c-.34-1.68-.61-3.39-.79-5.09-.01-.36-.1-.7-.24-1v.02c-.51-.97-2.14-1.17-2.21-2.25.04-.46.17-.89.37-1.27v.02c.13-.42.09-1-.32-1.16a1.4 1.4 0 0 0-.37-.08H9.8c-.41-.13-.61-.59-.92-.9s-1.07 0-1.51-.3-.61-.8-1.07-1.07-.84-.92-.45-1.29c-.48 0-.91-.16-1.27-.42 1.26-4.31 4.81-7.55 9.2-8.36h.07l.21.1c.19.03.41.05.63.05.39 0 .76-.06 1.11-.17h-.03a1.462 1.462 0 0 1 1.53.5c.05.09.08.19.08.3 0 .04 0 .08-.01.12-.1.48-.74.55-1.2.74-.42.18-.74.51-.91.92.37.09.7.24.97.46a.774.774 0 0 1 .2.97c-.2.32-.63.35-1.01.41-1.07.2-2.14 1.01-3.22.71-.22-.1-.47-.17-.74-.19-.26 0-.54.25-.45.49.59.29 1.29.89.95 1.46-.21.36-.75.46-.89.85s0 .93-.33.98a.58.58 0 0 1-.36-.17 1.76 1.76 0 0 0-1.95.01.76.76 0 0 0-.3.34c-.13.39.29.75.68.84.43.03.83.13 1.19.3h-.02c.49.3.66 1.06 1.22 1.18h.13c.3 0 .58-.06.84-.17h-.01c.14-.02.31-.03.48-.03.84 0 1.6.31 2.18.82.69.6 1.46 1.14 2.28 1.59l.06.03c.54.14 1.01.39 1.4.74a1.69 1.69 0 0 1-.21 2.02Zm6.94 2.83c-.41-.7-.66-1.54-.66-2.43 0-.18 0-.35.03-.53v.02c.08-.57.29-1.07.34-1.68a1.652 1.652 0 0 0-.57-1.53c-1.01-.7-2.51.53-3.56-.09-.3-.22-.55-.5-.71-.83-.32-.45-.55-.98-.66-1.54v-.02c-.01-.06-.02-.13-.02-.2 0-.52.29-.97.73-1.2q.225-.06.39-.18c.19-.17.17-.47.24-.72.18-.64.97-.87 1.62-.98.43-.11.93-.17 1.44-.17.16 0 .32 0 .48.02h-.02c.97.11 1.92.64 2.85.84.42 1.16.66 2.49.66 3.88 0 2.79-.97 5.35-2.58 7.37l.02-.02Z"] },
461
+ "Left": { "viewBox": "0 0 32 32", "paths": ["M22.95 2.48c-.31-.3-.74-.48-1.21-.48-.5 0-.94.21-1.26.54L8.83 14.73v.08l-.11.18c-.07.09-.13.19-.18.29-.03.1-.05.21-.07.32-.03.1-.05.22-.06.33 0 .13.03.24.06.35.01.11.04.22.07.32.06.1.12.2.19.29s.11.17.11.17v.08l11.65 12.19c.32.4.82.66 1.37.66.97 0 1.75-.78 1.75-1.75 0-.52-.23-.99-.59-1.31s-10.5-11.02-10.5-11.02l10.5-11.02c.29-.31.46-.72.46-1.18 0-.48-.2-.92-.52-1.24Z"] },
462
+ "LessCircle": { "viewBox": "0 0 32 32", "paths": ["M13.92 2.87", "M21.57 17H10.14a1.14 1.14 0 1 1 0-2.28h11.43a1.14 1.14 0 1 1 0 2.28", "M15.86 31.86c-8.83 0-16-7.18-16-16s7.17-16 16-16 16 7.18 16 16-7.18 16-16 16m0-29.72C8.3 2.14 2.15 8.29 2.15 15.85S8.3 29.56 15.86 29.56s13.71-6.15 13.71-13.71S23.42 2.14 15.86 2.14"] },
463
+ "Lesson": { "viewBox": "0 0 32 32", "paths": ["M24.62 2H7.38C5.3 2 3.61 3.69 3.61 5.77v20.46C3.61 28.31 5.3 30 7.38 30h17.23c2.08 0 3.77-1.69 3.77-3.77V5.77c0-2.08-1.69-3.77-3.77-3.77Zm-1.08 24.23H8.46c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08h15.08c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08m0-6.1H8.46c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08h15.08c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08m0-6.11H8.46c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08h15.08c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08m0-6.11H8.46c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08h15.08c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08"] },
464
+ "Light": { "viewBox": "0 0 32 32", "paths": ["M15.86 23.86c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0-13.72c-3.15 0-5.71 2.56-5.71 5.71s2.56 5.71 5.71 5.71 5.71-2.56 5.71-5.71-2.56-5.71-5.71-5.71M15.86 5.57c-.63 0-1.14-.51-1.14-1.14V1A1.14 1.14 0 1 1 17 1v3.43c0 .63-.51 1.14-1.14 1.14M15.86 31.86c-.63 0-1.14-.51-1.14-1.14v-3.43a1.14 1.14 0 1 1 2.28 0v3.43c0 .63-.51 1.14-1.14 1.14M30.71 17h-3.43a1.14 1.14 0 1 1 0-2.28h3.43a1.14 1.14 0 1 1 0 2.28M4.43 17H1a1.14 1.14 0 1 1 0-2.28h3.43a1.14 1.14 0 1 1 0 2.28M5.57 27.29c-.29 0-.58-.11-.81-.33a1.14 1.14 0 0 1 0-1.62l2.29-2.29a1.14 1.14 0 0 1 1.62 0c.45.45.45 1.17 0 1.62l-2.29 2.29c-.22.22-.52.33-.81.33M26.14 27.29c-.29 0-.58-.11-.81-.33l-2.29-2.29a1.14 1.14 0 0 1 0-1.62 1.15 1.15 0 0 1 1.62 0l2.29 2.29a1.14 1.14 0 0 1-.81 1.95M7.86 9c-.29 0-.58-.11-.81-.33L4.76 6.38a1.14 1.14 0 0 1 0-1.62 1.14 1.14 0 0 1 1.62 0l2.29 2.29A1.14 1.14 0 0 1 7.86 9M23.86 9c-.29 0-.58-.11-.81-.33a1.14 1.14 0 0 1 0-1.62l2.29-2.29a1.15 1.15 0 0 1 1.62 0c.45.45.45 1.17 0 1.62l-2.29 2.29c-.22.22-.52.33-.81.33"] },
465
+ "Link": { "viewBox": "0 0 32 32", "paths": ["M23 19.79c0-.97-.78-1.75-1.75-1.75s-1.75.78-1.75 1.75v6.57c0 .08-.07.15-.15.15h-6.7c-.08 0-.15-.07-.15-.15v-6.57c0-.97-.78-1.75-1.75-1.75S9 18.82 9 19.79v6.57c0 2.02 1.63 3.65 3.65 3.65h6.7c2.02 0 3.65-1.63 3.65-3.65zm0-14.14C23 3.63 21.37 2 19.35 2h-6.7C10.63 2 9 3.63 9 5.65v6.57c0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75V5.65c0-.08.07-.15.15-.15h6.7c.08 0 .15.07.15.15v6.57c0 .97.78 1.75 1.75 1.75S23 13.19 23 12.22zm-5.25 16.04V10.32c0-.97-.78-1.75-1.75-1.75s-1.75.78-1.75 1.75v11.37c0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75"] },
466
+ "Lists": { "viewBox": "0 0 32 32", "paths": ["M26.96 14.25a4.55 4.55 0 0 0 1.32-3.05 3.103 3.103 0 0 0-3.11-3.09 3.12 3.12 0 0 0-3.03 2.4v.02c1.58.91 2.63 2.59 2.64 4.52v8.8h3.5c.95 0 1.72-.77 1.72-1.72v-4.44a3.44 3.44 0 0 0-3.03-3.42h-.02ZM3.75 23.86h3.51v-8.8c.02-1.93 1.07-3.6 2.62-4.5h.03c-.33-1.41-1.56-2.44-3.04-2.44a3.11 3.11 0 0 0-3.11 3.09c.04 1.19.54 2.26 1.31 3.05-1.73.2-3.07 1.66-3.07 3.43v4.45c0 .95.77 1.72 1.72 1.72zm5.26-8.74v10.49c0 .95.77 1.72 1.72 1.72h10.53c.95 0 1.72-.77 1.72-1.72V15.12c0-1.93-1.57-3.5-3.5-3.5h-1.52c.27-.25.5-.54.7-.84v-.02c.17-.25.33-.53.45-.83v-.04c.24-.51.37-1.1.38-1.72 0-1.94-1.57-3.51-3.5-3.51s-3.5 1.57-3.5 3.5c.01.63.15 1.22.38 1.75v-.03c.13.33.28.62.46.88v-.02c.2.33.44.61.7.86s-1.54 0-1.54 0c-1.93 0-3.5 1.57-3.5 3.5Z"] },
467
+ "ListView": { "viewBox": "0 0 32 32", "paths": ["M4.33 2h23.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33H4.33C3.04 8.99 2 7.95 2 6.66V4.33C2 3.04 3.04 2 4.33 2m0 10.5h23.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33H4.33C3.04 19.49 2 18.45 2 17.16v-2.33c0-1.29 1.04-2.33 2.33-2.33m0 10.5h23.33c1.29 0 2.33 1.04 2.33 2.33v2.33c0 1.29-1.04 2.33-2.33 2.33H4.33C3.04 29.99 2 28.95 2 27.66v-2.33C2 24.04 3.04 23 4.33 23"] },
468
+ "Location": { "viewBox": "0 0 32 32", "paths": ["M16 2C10.1 2 5.32 6.78 5.32 12.68S16 30 16 30s10.68-11.39 10.68-17.32S21.9 2 16 2m0 15.59c-2.71 0-4.9-2.2-4.9-4.9s2.2-4.9 4.9-4.9 4.9 2.2 4.9 4.9-2.2 4.89-4.9 4.89Z"] },
469
+ "Locked": { "viewBox": "0 0 32 32", "paths": ["M25.68 11.7h-1.07v-1.07c0-4.76-3.86-8.62-8.62-8.62s-8.62 3.85-8.62 8.61v1.07H6.32c-2.08 0-3.77 1.69-3.77 3.77v10.76c0 2.08 1.69 3.77 3.77 3.77h19.37c2.08 0 3.77-1.69 3.77-3.77V15.46c0-2.08-1.69-3.77-3.77-3.77Zm-6.46 7.56c0 1.19-.96 2.15-2.15 2.15v3.22a1.071 1.071 0 0 1-2.14 0v-3.24c-1.19 0-2.16-.96-2.16-2.16s.96-2.16 2.16-2.16h2.15c1.19.02 2.14.98 2.15 2.17Zm-8.61-8.63c0-2.97 2.41-5.39 5.39-5.39s5.39 2.41 5.39 5.39v1.07H10.62v-1.07Z"] },
470
+ "LogPostalMail": { "viewBox": "0 0 32 32", "paths": ["M7.51 10.21h2.28c.59 0 1.08-.48 1.08-1.08s-.48-1.08-1.08-1.08H7.51V5.76c0-.59-.49-1.08-1.08-1.08s-1.08.48-1.08 1.08v2.28H3.07c-.59 0-1.08.48-1.08 1.08s.48 1.08 1.08 1.08h2.28v2.3c0 .59.48 1.08 1.08 1.08s1.08-.48 1.08-1.08v-2.28Zm22.47 9.81q0-.135-.09-.24c-.05-.06-1.25-1.48-3.91-1.48-.52 0-.48 0-.86.07-.32.04-.29.05-.58.05h-.03v-2.46c0-1.13-.92-2.04-2.05-2.04H10.11c-1.13 0-2.05.91-2.05 2.04v6.48c0 1.14.92 2.05 2.05 2.05h2.92c-.1.17-.2.42-.16.69.08.56.57.97 1.36 1.14.66.13 8.12.91 9.07.98h.09c.84 0 2.28-.81 2.43-.9 0 0 .36-.43 1.22-.79.25-.1.52-.17.76-.26.86-.27 1.76-.54 2.02-1.64.16-.67.16-3.38.16-3.7h-.02Zm-18.56 1.95c-.1.11-.25.18-.42.18-.33 0-.59-.26-.59-.59 0-.17.08-.33.19-.44l2.07-2.02-2.03-1.83a.57.57 0 0 1-.14-.38c0-.32.27-.59.59-.59a.5.5 0 0 1 .31.1l4.13 3.66a1.175 1.175 0 0 0 1.57 0l4.12-3.66c.1-.1.24-.15.39-.15.33 0 .59.26.59.59 0 .17-.08.33-.2.44l-1.5 1.34c-.17.03-.35.05-.54.05-.72 0-1.37.24-1.77.65a1.62 1.62 0 0 0-.36 1.65c-.4.34-.94.57-1.52.57s-1.15-.23-1.57-.59l-1.18-1.05zm17.66 1.57c-.15.64-.64.82-1.5 1.08-.27.09-.54.17-.81.28-.9.36-1.23.78-1.29.81-.58.33-1.64.87-2.1.8-.9-.06-8.36-.84-8.96-.97-.34-.07-.72-.23-.75-.48-.02-.1.08-.24.16-.31s.1-.17.1-.27l8.27-.02c0 .16.1.31.26.36.2.07.42-.03.49-.24.52-1.52 1.22-2.14 1.22-2.14.1-.09.15-.21.14-.34a.42.42 0 0 0-.2-.3c-.37-.2-.7-.15-.99-.1-.14.03-.29.04-.46.04-.36 0-.71-.08-1.08-.16-.41-.1-.84-.18-1.36-.18-1.68 0-1.7-.73-1.71-.96 0-.24.07-.44.23-.59.24-.26.73-.42 1.22-.42.54 0 .97-.12 1.4-.24.38-.1.75-.21 1.22-.22.63-.02 1.1.06 1.45.12.22.03.4.07.52.07.35 0 .36 0 .7-.06.37-.06.29-.06.73-.06 1.92 0 2.95.83 3.23 1.1 0 1.18-.03 2.95-.14 3.38Z"] },
471
+ "Marketing": { "viewBox": "0 0 32 32", "paths": ["M11.29 28.15c-2.52 0-4.57-2.05-4.57-4.57v-2.29a1.14 1.14 0 1 1 2.28 0v2.29c0 1.26 1.03 2.29 2.29 2.29s2.29-1.03 2.29-2.29v-2.29a1.14 1.14 0 1 1 2.28 0v2.29c0 2.52-2.05 4.57-4.57 4.57M28.31 12.67a1.145 1.145 0 0 1-.29-2.25l2.4-.64c.6-.16 1.24.2 1.4.81s-.2 1.24-.81 1.4l-2.4.64c-.1.03-.2.04-.3.04M24.9 7.98c-.29 0-.58-.11-.81-.33a1.14 1.14 0 0 1 0-1.62l1.84-1.84a1.15 1.15 0 0 1 1.62 0c.45.45.45 1.17 0 1.62l-1.84 1.84c-.22.22-.52.33-.81.33M30.21 19.11c-.1 0-.2-.01-.3-.04l-2.51-.67c-.61-.16-.97-.79-.81-1.4s.79-.97 1.4-.81l2.51.67a1.145 1.145 0 0 1-.29 2.25", "M24.12 22.44H2.4c-.52 0-.97-.35-1.1-.85l-1.4-5.21c-.13-.5.08-1.03.53-1.29L19.24 4.23c.31-.18.68-.2 1.01-.07.33.14.57.42.67.76L25.23 21c.09.34.02.71-.2.99s-.55.45-.91.45M3.28 20.15h19.36L19.1 6.95 2.33 16.63l.94 3.52Z"] },
472
+ "MarketingEvents": { "viewBox": "0 0 32 32", "paths": ["M27.05 6.52h-5.27l.13-1.12a.41.41 0 0 0-.35-.46h-1.11c-.16-.31-.36-.59-.6-.83C18.72 2.98 17.3 2 14.21 2c-6 .04-10.84 4.93-10.8 10.94v.32c0 2.11 0 6.55 3.41 6.55.77.09 1.53-.2 2.04-.78 1.22-1.62.54-5.36.31-6.65-.19-1.05-.23-5.27.76-6.32a6.12 6.12 0 0 1 4.68-2.64c1.45-.18 2.91.26 4.01 1.22.13.11.26.19.37.29h-.64c-.23 0-.41.18-.42.4v.08l.72 4.67c.03.2.2.36.41.36h1.91c.21 0 .38-.16.41-.37l.11-.82h2.33c.49 0 .9.4.9.9v.08c0 .49-.4.89-.9.9h-7.76c-.5 0-.9-.4-.91-.9v-.07c0-.5.41-.91.91-.91h1.63l-.42-2.74h-4.64c-.86 0-1.55.69-1.55 1.55v20.38c0 .86.69 1.55 1.55 1.55h14.42c.85 0 1.54-.69 1.54-1.54V8.07c0-.85-.68-1.54-1.53-1.55zM8.79 5.57c-1.17 1.19-1.17 4.39-1.01 6.38s.72 2.71.43 5.01c-.11.84-.51 1.54-1.36 1.54-1.5 0-2.11-1.86-2.11-5.27 0-3.84 2.56-7.88 4.52-8.43.23.15-.28.53-.47.76Zm11.12 16.48a4.213 4.213 0 0 1-4.27-4.16 4.213 4.213 0 0 1 4.16-4.27 4.213 4.213 0 0 1 4.27 4.16v.1a4.21 4.21 0 0 1-4.16 4.16Z"] },
473
+ "Marketplace": { "viewBox": "0 0 32 32", "paths": ["M25.38 16.19c-1.06-.19-1.92-.96-2.31-1.92 0-.1-.1-.1-.19-.1l-.1.1c-.48 1.25-1.73 2.02-2.98 2.02-1.63 0-3.27-.87-3.65-2.02 0-.1-.19-.19-.29 0-.58 1.25-1.92 2.02-3.27 2.02-1.44.1-2.79-.67-3.56-2.02 0-.1-.19-.1-.19 0-.87 1.35-1.35 2.02-3.08 2.02-.38 0-.77 0-1.15-.19v12.6h22.02V16.2c-.38.1-.77.1-1.25 0Zm-9.42 3.27c0-.38.29-.67.67-.67h6.92c.38 0 .67.29.67.67v4.04c0 .38-.29.67-.67.67h-6.92c-.38 0-.67-.29-.67-.67zM7.5 27.83v-7.21c0-.38.29-.67.67-.67h3.65c.38 0 .67.29.67.67v7.31h-5v-.1ZM9.23 3.31l-1.06 9.23c-.29 1.44-1.63 2.5-3.08 2.31-1.73 0-3.27-1.06-3.08-2.31s2.6-9.23 2.6-9.23zm6.44 0v9.23c0 1.35-1.35 2.31-3.08 2.31s-3.08-1.06-3.08-2.31c.1-1.63.77-9.23.77-9.23zm.96 0v9.23c0 1.35 1.35 2.31 3.08 2.31s3.08-1.06 3.08-2.31l-.77-9.23zm6.25 0 .96 9.23c0 1.35 1.35 2.31 3.08 2.31S30 13.79 30 12.54l-2.5-9.23z"] },
474
+ "Meetings": { "viewBox": "0 0 32 32", "paths": ["M25.11 5.81H22.7l-.01-2.4c0-.8-.66-1.44-1.45-1.44-.8 0-1.44.66-1.44 1.45v2.41l-7.7.04V3.46c-.02-.8-.67-1.44-1.47-1.44s-1.44.66-1.44 1.45v2.41l-2.4.01a3.38 3.38 0 0 0-3.35 3.39l.1 17.39a3.38 3.38 0 0 0 3.39 3.36l13.49-.08c.39 0 .75-.17 1-.43l6.71-6.79c.26-.26.41-.61.42-1.01l-.07-12.59a3.376 3.376 0 0 0-3.37-3.36ZM6.9 27.12a.47.47 0 0 1-.47-.44s-.07-13.06-.07-13.06l19.27-.11.04 7.6-.12.12-3.73.02c-1.06 0-1.92.87-1.92 1.94l.02 3.74-.12.12zm4.28-11.59H9.25c-.55.01-1 .47-1 1.02l.04 7.72c0 .55.46 1 1.01 1h1.93c.55-.01 1-.47 1-1.02l-.04-7.76a1.01 1.01 0 0 0-1.01-.96m5.83-.03H15c-.55.01-1 .47-1 1.02l.04 7.72c0 .55.46 1 1.01 1h2.01c.55-.01 1-.47 1-1.02l-.04-7.76a1.01 1.01 0 0 0-1.01-.96m3.82-.02h1.93c.53-.01.97.42.97.95v1.93c.01.53-.42.97-.95.97h-1.93a.954.954 0 0 1-.97-.95v-1.93c-.01-.53.42-.97.95-.97"] },
475
+ "Mention": { "viewBox": "0 0 32 32", "paths": ["M29.21 8.28c-.5-1.19-1.27-2.22-2.21-3.1-.98-.85-2.14-1.52-3.48-1.99-1.34-.46-2.87-.7-4.56-.7-2.35 0-4.53.36-6.59 1.06-2.06.72-3.88 1.76-5.4 3.1a14.2 14.2 0 0 0-3.64 4.93c-.9 1.94-1.32 4.1-1.32 6.53 0 1.68.26 3.23.79 4.65.55 1.39 1.32 2.61 2.35 3.59 1.03 1.01 2.27 1.78 3.74 2.32 1.45.57 3.11.83 4.93.83.87 0 1.66-.05 2.43-.18.76-.13 1.58-.34 2.45-.67.9-.31 1.95-.77 3.19-1.39l-1.16-2.09c-.79.41-1.53.77-2.19 1.03-.66.28-1.32.49-2.06.65-.71.13-1.56.18-2.56.18-1.48 0-2.79-.18-3.95-.59s-2.14-1.01-2.9-1.78c-.79-.8-1.37-1.73-1.79-2.84s-.63-2.37-.63-3.79c0-2.04.34-3.87 1-5.47.69-1.63 1.63-2.99 2.85-4.1 1.24-1.14 2.74-1.99 4.48-2.58 1.77-.59 3.69-.88 5.85-.88 1.79 0 3.32.28 4.61.88 1.27.59 2.24 1.45 2.93 2.53.66 1.11 1 2.45 1 4 0 1.03-.11 2.04-.34 2.99-.24.96-.55 1.78-.95 2.53-.4.72-.87 1.29-1.42 1.73-.55.41-1.13.62-1.77.62-.29 0-.53-.08-.76-.21-.24-.1-.4-.31-.53-.57-.11-.26-.13-.59-.08-.98L23.13 9h-3.19l-.34 2.19c-.05-.26-.16-.49-.29-.72-.34-.54-.76-.98-1.27-1.29-.53-.31-1.11-.46-1.77-.46-1.13 0-2.14.26-3.06.77-.95.52-1.74 1.19-2.43 2.01-.66.83-1.19 1.73-1.53 2.71-.37 1.01-.55 1.99-.55 2.97 0 1.11.21 2.09.61 2.92.4.85.95 1.52 1.66 1.99.71.49 1.5.72 2.43.72.84 0 1.61-.18 2.35-.54.71-.34 1.34-.85 1.87-1.52.21-.26.4-.57.55-.88.03.57.18 1.06.47 1.5.32.44.76.8 1.32 1.06.55.26 1.21.39 1.92.39 1.16 0 2.21-.28 3.19-.85s1.85-1.34 2.58-2.32c.74-.98 1.32-2.12 1.71-3.38.42-1.26.63-2.61.63-4s-.26-2.76-.79-3.95Zm-10.28 6.4c-.05.26-.11.57-.16.96-.11.75-.4 1.45-.87 2.14s-1.05 1.26-1.71 1.7-1.37.67-2.08.67c-.66 0-1.19-.26-1.58-.75-.4-.52-.58-1.21-.58-2.12 0-.96.18-1.91.58-2.81.42-.93.95-1.68 1.63-2.27.66-.59 1.42-.88 2.24-.88.53 0 .98.1 1.37.31s.69.49.9.88.32.85.32 1.39c0 .23-.03.49-.05.77Z"] },
476
+ "Messages": { "viewBox": "0 0 32 32", "paths": ["M29.34 5.71a2.83 2.83 0 0 0-2.49-2.51h-.01c-2.46-.42-5.3-.66-8.19-.66h-.63.03-.59c-2.89 0-5.72.24-8.48.7l.3-.04c-1.01.09-1.86.73-2.25 1.61v.02c2.06-.25 4.45-.4 6.88-.4h.54c3.03 0 6.01.25 8.9.73l-.31-.04c2.21.31 3.93 2.05 4.2 4.25v.02c.43 1.97.68 4.24.69 6.57v.28c0 1.47-.1 2.91-.28 4.33l.02-.17c.91-.4 1.55-1.24 1.65-2.24.41-1.88.65-4.03.66-6.24 0-2.21-.24-4.35-.69-6.42l.04.2v.02Zm-4.13 4.04a2.83 2.83 0 0 0-2.49-2.51h-.01c-2.46-.42-5.3-.66-8.19-.66h-.63.03-.58c-2.89 0-5.72.24-8.48.7l.3-.04a2.83 2.83 0 0 0-2.51 2.49c-.42 1.88-.66 4.03-.66 6.24s.24 4.35.7 6.42l-.04-.2a2.83 2.83 0 0 0 2.49 2.51h.01c1.71.3 3.73.52 5.79.59h.08l2.17 3.76c.15.25.42.42.74.42s.59-.17.74-.42 2.17-3.76 2.17-3.76c2.13-.08 4.15-.29 6.13-.63l-.27.04a2.82 2.82 0 0 0 2.51-2.48c.41-1.88.65-4.03.66-6.24 0-2.21-.24-4.35-.69-6.42l.04.2Z"] },
477
+ "Minus": { "viewBox": "0 0 32 32", "paths": ["M3.97 17.83H28.3c.95-.07 1.7-.86 1.7-1.83s-.75-1.76-1.69-1.83H3.83a1.83 1.83 0 0 0 0 3.66z"] },
478
+ "Mobile": { "viewBox": "0 0 32 32", "paths": ["M22.48 2H9.53C7.7 2 6.21 3.49 6.21 5.32v21.93a3.04 3.04 0 0 0 3.03 2.74h13.25c.87 0 1.66-.34 2.25-.89l.09-.07.09-.12c.54-.56.88-1.33.89-2.18V5.32c0-1.83-1.49-3.32-3.32-3.32Zm-6.47 26.13h-.02a1.419 1.419 0 1 1 1.42-1.42c0 .18-.03.34-.09.5-.19.54-.71.92-1.31.92M9 5.32c0-.29.23-.52.52-.52h12.95c.29 0 .52.23.52.52v18.2c-.09 0-.19-.01-.3-.01s-.21 0-.31.01H8.99V5.32Z"] },
479
+ "MoreCircle": { "viewBox": "0 0 32 32", "paths": ["M21.57 17H10.14a1.14 1.14 0 1 1 0-2.28h11.43a1.14 1.14 0 1 1 0 2.28", "M15.86 22.71c-.63 0-1.14-.51-1.14-1.14V10.14a1.14 1.14 0 1 1 2.28 0v11.43c0 .63-.51 1.14-1.14 1.14", "M15.86 31.86c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16m0-29.72C8.3 2.14 2.15 8.29 2.15 15.85S8.3 29.56 15.86 29.56s13.71-6.15 13.71-13.71S23.42 2.14 15.86 2.14"] },
480
+ "Move": { "viewBox": "0 0 32 32", "paths": ["m29.47 14.78-3.5-3.5c-.7-.7-1.75-.7-2.45 0s-.7 1.75 0 2.45l.53.53h-6.3v-6.3l.53.53c.7.7 1.75.7 2.45 0s.7-1.75 0-2.45l-3.5-3.5c-.7-.7-1.75-.7-2.45 0l-3.5 3.5c-.7.7-.7 1.75 0 2.45s1.75.7 2.45 0l.53-.53v6.3h-6.3l.52-.53c.7-.7.7-1.75 0-2.45s-1.75-.7-2.45 0l-3.5 3.5c-.7.7-.7 1.75 0 2.45l3.5 3.5c.7.7 1.75.7 2.45 0s.7-1.75 0-2.45l-.53-.52h6.3v6.3l-.53-.53c-.7-.7-1.75-.7-2.45 0s-.7 1.75 0 2.45l3.5 3.5c.7.7 1.75.7 2.45 0l3.5-3.5c.7-.7.7-1.75 0-2.45s-1.75-.7-2.45 0l-.53.53v-6.3h6.3l-.53.53c-.7.7-.7 1.75 0 2.45s1.75.7 2.45 0l3.5-3.5c.7-.7.7-1.75 0-2.45Z"] },
481
+ "NotEditable": { "viewBox": "0 0 32 32", "paths": ["M25.9 3c-.62-.62-1.48-1-2.43-1s-1.81.38-2.43 1l-1.56 1.56c-.27.27-.44.65-.44 1.06s.17.79.44 1.06l5.84 5.84c.27.27.65.44 1.06.44s.79-.17 1.06-.44L29 10.96c.62-.62 1-1.48 1-2.43s-.38-1.81-1-2.43l-3.09-3.09Zm-5.35 10.54.97-.97a1.498 1.498 0 0 0-1.06-2.56c-.42 0-.79.17-1.07.44l-.97.97zm2.99 2.98 1.04-1.05c.27-.27.43-.64.43-1.06 0-.83-.67-1.5-1.5-1.5-.42 0-.79.17-1.07.44l-1.03 1.04 2.12 2.12Zm-5.96-5.96.97-.97a1.498 1.498 0 1 0-2.12-2.12l-.97.97zm-3.15 10.88-2.92 2.92-.88-.88 2.92-2.92-2.11-2.11-2.92 2.92-.88-.88 2.92-2.92-2.12-2.12-4 4c-.12.12-.22.27-.29.43s-.05.14-.05.14 0 .09-.05.13l-2 8.01c-.03.11-.05.24-.05.37a1.498 1.498 0 0 0 1.88 1.45h-.01l8.01-2h.06l.25-.1.1-.05c.09-.05.16-.11.23-.18l3.98-4.01zM6.18 3.28l22.53 22.54c.38.37.62.89.62 1.46s-.24 1.09-.62 1.46c-.37.38-.89.62-1.46.62s-1.09-.24-1.46-.62L3.29 6.16c-.37-.37-.6-.89-.6-1.46 0-1.14.92-2.06 2.06-2.06.57 0 1.09.23 1.46.6z"] },
482
+ "Notification": { "viewBox": "0 0 32 32", "paths": ["m27.94 22.75-3.75-3.3v-9.24a8.209 8.209 0 1 0-16.42 0v9.23l-3.75 3.31c-.42.42-.43 1.1 0 1.52.19.19.44.3.71.32h22.56c.59-.03 1.05-.54 1.02-1.13-.01-.27-.13-.52-.32-.71h-.04Zm-8.9 3.92c.1 1.74-1.22 3.22-2.96 3.33-1.74.1-3.22-1.22-3.33-2.96v-.37z"] },
483
+ "NotificationOff": { "viewBox": "0 0 32 32", "paths": ["M23.53 18.24v-7.56c-.02-4.22-3.45-7.63-7.67-7.61A7.6 7.6 0 0 0 9.65 6.3zM8.25 13.36v5.93l-3.49 3.06a.987.987 0 0 0 0 1.41c.17.18.4.28.65.3H20.7L8.26 13.36Zm7.56 15.57c1.61 0 2.92-1.32 2.92-2.93H12.9c0 1.61 1.3 2.92 2.91 2.93m13.26-.49c.41-.02.8-.22 1.06-.54.52-.65.42-1.59-.23-2.11L4.06 3.58A1.5 1.5 0 0 0 2 5.76c.05.05.11.09.17.13L28.02 28.1c.29.24.67.36 1.05.33Z"] },
484
+ "NumericDataType": { "viewBox": "0 0 32 32", "paths": ["M19.74 29.77c-.86-.09-1.44-.78-1.36-1.55l.63-6.26h-7.8l-.66 6.54c-.08.73-.68 1.27-1.41 1.27h-.18c-.75-.08-1.31-.78-1.24-1.55l.63-6.26H3.42c-.78 0-1.42-.63-1.42-1.42s.63-1.42 1.42-1.42h5.24l.71-7.07H3.73a1.419 1.419 0 1 1 0-2.84h5.92l.58-5.71c.07-.73.67-1.27 1.41-1.27h.15c.77.08 1.34.77 1.27 1.55l-.54 5.42h7.8l.58-5.71c.07-.73.67-1.27 1.41-1.27h.15c.77.08 1.34.77 1.27 1.55l-.54 5.42h5.42c.78 0 1.42.63 1.42 1.42s-.63 1.42-1.42 1.42h-5.7l-.71 7.07h6.1c.78 0 1.42.63 1.42 1.42s-.63 1.42-1.42 1.42h-6.38l-.66 6.54c-.08.73-.68 1.27-1.41 1.27h-.06l-.02.02Zm-8.25-10.66h7.8l.71-7.07h-7.8z"] },
485
+ "ObjectAssociations": { "viewBox": "0 0 32 32", "paths": ["M24.72 19.21v-1.47a.29.29 0 0 0-.29-.29H12.91v7.31h11.53c.16 0 .29-.14.3-.3v-1.5c0-.06.01-.11.05-.16.08-.14.26-.18.4-.1l4.67 2.98.08.07c.09.14.07.32-.07.42l-4.67 3.46c-.05.04-.12.06-.19.07-.16 0-.29-.14-.29-.3v-1.49a.29.29 0 0 0-.29-.29H10.54c-.24 0-.43-.19-.43-.43v-9.82H2.54c-.28.02-.53-.2-.54-.48v-1.8c0-.28.23-.51.51-.51h7.59V4.8c0-.23.18-.42.41-.43h13.91a.31.31 0 0 0 .28-.29v-1.5c0-.06.01-.11.05-.16.09-.14.27-.18.41-.09l4.63 2.98s.06.04.08.07c.09.14.07.32-.07.42l-4.67 3.46s-.11.07-.18.07c-.17 0-.3-.13-.3-.3V7.55c0-.14-.1-.25-.23-.28H12.9v7.31h11.52c.16 0 .29-.14.29-.3v-1.51c0-.06.01-.11.05-.16.09-.14.27-.18.41-.09l4.63 2.98s.06.04.08.07c.09.14.07.32-.07.42l-4.67 3.46s-.11.07-.18.07a.3.3 0 0 1-.26-.3Z"] },
486
+ "ObjectAssociationsManyToMany": { "viewBox": "0 0 32 32", "paths": ["M25.34 19.34c.06 0 .11-.02.17-.06l4.38-3.27c.12-.1.15-.27.06-.4-.03-.03-.04-.04-.08-.06l-4.38-2.82a.29.29 0 0 0-.39.09c-.04.04-.04.1-.04.15v1.42c0 .15-.12.27-.27.28h-3.74V7.74l3.74.03c.15 0 .27.12.27.27v1.39c0 .15.12.28.28.28.06 0 .11-.02.17-.06l4.38-3.27c.12-.1.15-.27.06-.4-.03-.03-.04-.04-.08-.06L25.49 3.1a.29.29 0 0 0-.39.09c-.04.04-.04.1-.04.15v1.42c0 .15-.12.27-.27.28h-6c-.22 0-.4.17-.4.4v9.25h-4.9V5.43c0-.23-.18-.41-.4-.41H2.31c-.17 0-.3.14-.3.31v2.11c0 .17.13.3.31.3l8.53-.02v6.92H2.31c-.17 0-.3.14-.3.31v2.11c0 .17.13.31.31.3l8.53-.02v6.92H2.3c-.17 0-.3.14-.3.31v2.12c0 .17.13.3.3.3l8.93-.02h1.85c.22 0 .41-.19.41-.41V17.3h4.9v9.26c0 .22.19.41.41.41h1.85l4.13.03c.16 0 .28.12.28.27v1.39c0 .15.12.28.27.28.06 0 .12-.03.18-.06l4.38-3.27c.12-.1.15-.27.06-.4-.03-.03-.05-.04-.08-.06l-4.39-2.82a.28.28 0 0 0-.38.09c-.04.04-.04.1-.04.15v1.42c0 .15-.12.27-.28.28h-3.73v-6.93l3.74.03c.15 0 .27.12.27.27v1.39c0 .15.12.28.28.28v.02Z"] },
487
+ "ObjectAssociationsManyToOne": { "viewBox": "0 0 32 32", "paths": ["m29.88 15.97-4.5 3.38c-.05.04-.11.06-.17.06a.29.29 0 0 1-.29-.29v-1.45c0-.15-.13-.28-.29-.29l-1.28-.04h-6.97v9.56c0 .22-.2.41-.42.41h-1.91l-11.64.03c-.16 0-.16-2.82 0-2.81h11.23v-7.15l-11.29.03c-.11 0-.31-.09-.31-.25 0 0-.07-1.72 0-2.28.02-.16.15-.29.32-.29h11.28V7.44l-11.32.03a.32.32 0 0 1-.31-.25V4.84c.04-.11.15-.19.27-.19h13.68c.22 0 .41.19.41.42v9.55h7.13l1.13-.03c.15 0 .28-.14.28-.29v-1.46c0-.06.01-.11.04-.16.09-.13.27-.17.4-.09l4.52 2.91s.05.04.08.06a.3.3 0 0 1-.07.41", "M16.3 16.25h.37v.07h-.37zM16.29 13.5h.53v.03h-.53z"] },
488
+ "Office365": { "viewBox": "0 0 32 32", "paths": ["M4.38 24.58V7.57L19.44 2l8.18 2.62v22.92L19.44 30zl15.06 1.81V6.58L9.62 8.87v13.42z"] },
489
+ "Order": { "viewBox": "0 0 32 32", "paths": ["M26.53 7.27c-.08-.82-.77-1.46-1.6-1.46h-3.88v-.53c0-2.59-2.12-4.71-4.72-4.71h-.8c-2.6 0-4.72 2.12-4.72 4.71v.53H7c-.83 0-1.53.63-1.61 1.45L3.67 25.11a3.163 3.163 0 0 0 3.17 3.47l18.22-.14c1.85-.02 3.3-1.62 3.12-3.47zM12.79 5.28c0-1.5 1.22-2.72 2.73-2.72h.8c1.5 0 2.73 1.22 2.73 2.72v.53h-6.27v-.53Zm9.55 8.32-6.38 7.62c-.18.22-.45.35-.73.36h-.03c-.27 0-.54-.11-.72-.31l-3.9-4.16a.976.976 0 0 1 .05-1.4.993.993 0 0 1 1.4.05l3.13 3.34 5.66-6.76c.35-.42.98-.48 1.4-.12.42.35.48.98.12 1.4Z"] },
490
+ "Partial": { "viewBox": "0 0 32 32", "paths": ["M5.28 27.2h21.47c1.8 0 3.26-1.47 3.26-3.27V8.06c0-1.8-1.46-3.27-3.27-3.27H5.26A3.27 3.27 0 0 0 2 8.06v15.89c.01 1.8 1.47 3.25 3.27 3.25zm21.92-3.27c0 .26-.21.47-.47.47h-9.8V16H27.2zm0-15.87v5.13H16.93v-5.6h9.8c.26 0 .47.21.47.47v.02zm-22.4 0c0-.26.21-.47.47-.47h8.87v16.8H5.28a.47.47 0 0 1-.47-.47V8.05Z"] },
491
+ "PaymentSubscriptions": { "viewBox": "0 0 32 32", "paths": ["M21.2 13.94H4.09c-1.13-.02-2.06.88-2.09 2v9.39a2.03 2.03 0 0 0 2.07 2.01H21.2c1.12.02 2.04-.88 2.06-2v-9.39a2.04 2.04 0 0 0-2.06-2ZM3.3 15.95c0-.41.35-.73.75-.73H21.2c.41 0 .74.32.75.73v.95H3.3zm18.65 9.39c0 .41-.35.73-.75.73H4.09c-.41 0-.74-.32-.75-.73v-6.05h18.62v6.05Zm7.83-2.59-4.13 1.51a.32.32 0 0 1-.42-.19c-.02-.04-.02-.08-.02-.12v-4.18a.335.335 0 0 1 .51-.28l1.25.82c.68-1.33 1.04-2.8 1.03-4.29-.01-5.26-4.29-9.51-9.54-9.49-3.69 0-7.04 2.15-8.6 5.5H7.89c2.19-5.86 8.72-8.84 14.58-6.65a11.31 11.31 0 0 1 7.36 10.64c0 1.84-.45 3.66-1.32 5.28l1.33.86c.15.09.21.29.11.45-.04.07-.1.12-.18.14Z"] },
492
+ "Pin": { "viewBox": "0 0 32 32", "paths": ["m18.1 29.63-6.46-6.46L5 28.8c-.44.37-.97.64-1.56.77H3.3c-.04 0-.09.01-.14.01-.4 0-.73-.33-.73-.73v-.18c.14-.62.41-1.16.79-1.61s5.68-6.62 5.68-6.62l-6.48-6.5c-.24-.24-.4-.57-.4-.94 0-.57.36-1.05.86-1.23a8.623 8.623 0 0 1 5.88.61l-.05-.02 10.06-7.3-.5-.5c-.24-.24-.4-.58-.4-.95s.15-.71.4-.95l.27-.27c.24-.24.58-.4.95-.4s.71.15.95.4l9.11 9.11c.24.24.4.58.4.95s-.15.71-.4.95l-.27.27c-.24.24-.58.4-.95.4s-.71-.15-.95-.4l-.43-.41-7.3 10.08c.52 1.08.82 2.35.82 3.68 0 .75-.1 1.48-.28 2.18v-.06c-.18.5-.66.84-1.21.84-.36 0-.68-.14-.91-.37Z"] },
493
+ "PowerPointFile": { "viewBox": "0 0 32 32", "paths": ["M27.22 10.56h-.03a2 2 0 0 0-.12-.35v-.07a1.8 1.8 0 0 0-.22-.3l-7.53-7.5c-.09-.09-.18-.16-.28-.22h-.08q-.15-.075-.33-.12H9.01c-2.32 0-4.2 1.87-4.23 4.17v20.09c0 2.2 1.73 3.74 4.21 3.74h14.02c2.47 0 4.21-1.54 4.21-3.74zm-2.84 15.7c0 .77-.76.97-1.4.97H9c-.64 0-1.4-.17-1.4-.97V6.17c0-.78.63-1.4 1.4-1.4h7.94v5.14c0 1.29 1.04 2.34 2.34 2.34h5.1v14.02Zm-8.05-11.83c1.01-.07 2.01.22 2.82.83.68.6 1.04 1.49.98 2.39 0 .63-.16 1.26-.49 1.79s-.81.95-1.37 1.22c-.65.3-1.35.45-2.07.44h-1.96v3.64h-2.01V14.43zm-2.08 5.09h1.73c.55.04 1.09-.13 1.53-.46.36-.35.55-.84.52-1.33 0-1.14-.66-1.7-1.98-1.7h-1.79v3.5Z"] },
494
+ "Presentation": { "viewBox": "0 0 32 32", "paths": ["M4.9 4.7h22.44c.69-.07 1.23-.64 1.23-1.35S28.03 2.07 27.35 2H4.77c-.75 0-1.35.61-1.35 1.35S4.03 4.7 4.77 4.7zm21.38 2.93H5.96c-.82 0-1.49.67-1.49 1.49v13.21c0 .84.67 1.5 1.49 1.5h7.87l-3.91 3.91a1.322 1.322 0 1 0 1.87 1.87l4.8-4.81 4.81 4.81c.24.23.56.38.92.38h.01c.36 0 .69-.14.94-.38.24-.24.39-.57.39-.94s-.15-.7-.39-.94l-3.91-3.91h6.88c.83 0 1.5-.67 1.5-1.5V9.12c0-.81-.65-1.48-1.45-1.5Zm-1.15 13.56H7.11V10.27h18.04v10.92Z"] },
495
+ "Product": { "viewBox": "0 0 32 32", "paths": ["M29.31 7.47 16.71.2c-.21-.12-.46-.2-.73-.2s-.52.07-.73.2-12.6 7.27-12.6 7.27c-.43.26-.71.72-.71 1.25v14.55c0 .54.29 1 .72 1.26s12.6 7.28 12.6 7.28c.21.12.46.2.73.2s.52-.07.73-.2 12.6-7.27 12.6-7.27c.44-.26.73-.73.73-1.26V8.74c0-.54-.3-1.01-.74-1.26ZM15.99 3.13l9.7 5.59-3.36 1.94-9.5-5.7L16 3.13Zm-1.45 24.89-9.7-5.59V11.25l3.49 2.01 6.21 3.59v11.18Zm1.45-13.7-9.7-5.59 3.64-2.1 9.51 5.7-3.45 2Zm11.14 8.11-9.7 5.59V16.84l3.38-1.94v3.97a1.451 1.451 0 0 0 2.9 0v-5.66l3.38-1.94.02 11.16Z"] },
496
+ "Publish": { "viewBox": "0 0 32 32", "paths": ["M19.59 14.89c-.57 0-1.02-.46-1.02-1.02V5.74l-2.05 2.05c-.43.43-1.12.43-1.55 0s-.43-1.12 0-1.55l4-3.94c.08-.09.18-.16.29-.22.27-.13.59-.13.86 0 .12.06.24.14.33.25l3.94 3.92a1 1 0 0 1 .33.78c-.02.6-.5 1.09-1.11 1.11-.3 0-.58-.12-.78-.35l-2.05-2.05v8.09c.02.57-.42 1.04-.98 1.06h-.19ZM10.09 30c-1.88 0-3.4-1.52-3.4-3.4V11.92c0-1.88 1.52-3.4 3.4-3.4h2.84c.53-.01.96.4.98.93v.1c.02.5-.37.93-.87.95H10.1c-.79 0-1.43.64-1.46 1.42V26.6c0 .81.65 1.46 1.46 1.47h11.83c.81 0 1.46-.66 1.46-1.47V13.62c.1-.46.5-.79.97-.8.47-.03.89.3.96.77V26.6c0 1.88-1.52 3.4-3.4 3.4H10.1Zm6.05-13.08h-5.12a.72.72 0 0 1-.8-.63c-.05-.39.23-.75.63-.8h5.29c.39-.05.75.23.8.63.05.39-.23.75-.63.8zm4.87 4.28h-10c-.4 0-.72-.32-.72-.72s.32-.72.72-.72h10c.4 0 .72.32.72.72s-.32.72-.72.72m0 4.2h-10c-.4 0-.72-.32-.72-.72s.32-.72.72-.72h10c.4 0 .72.32.72.72s-.32.72-.72.72"] },
497
+ "Question": { "viewBox": "0 0 32 32", "paths": ["M18 27.82c0 1.2-.98 2.18-2.18 2.18s-2.18-.98-2.18-2.18.98-2.18 2.18-2.18 2.18.98 2.18 2.18m-2.18-4.77c-1.2 0-2.18-.98-2.18-2.18V17.6c0-1.2.98-2.18 2.18-2.18 2.5 0 4.53-2.03 4.53-4.53s-2.03-4.53-4.53-4.53c-1.99 0-3.67 1.28-4.29 3.05v.03c-.31.87-1.12 1.48-2.08 1.48-1.2 0-2.18-.98-2.18-2.18 0-.25.04-.49.12-.71v.02c1.22-3.54 4.53-6.04 8.42-6.04a8.89 8.89 0 0 1 8.89 8.89c0 4.14-2.82 7.61-6.65 8.61h-.06v1.38c0 1.2-.98 2.17-2.18 2.17Z"] },
498
+ "QuestionAnswer": { "viewBox": "0 0 32 32", "paths": ["M24.16 13.38h2.94c1.6.01 2.9 1.32 2.9 2.92v4.62c0 1.6-1.29 2.9-2.9 2.91h-.06v1.63c0 1.06-.85 1.92-1.91 1.92-.54 0-1.02-.22-1.36-.58s-2.68-2.98-2.68-2.98h-3.34a2.91 2.91 0 0 1-2.89-2.91v-1.32h-.37l-5.2 5.66c-.22.23-.53.37-.87.38-.18 0-.34-.04-.5-.1-.47-.2-.79-.66-.79-1.19V19.6H4.97a3.007 3.007 0 0 1-2.98-3.01V7.64c0-1.66 1.33-3 2.98-3.02h16.2c1.65.01 2.98 1.36 2.98 3.01v5.73Zm0 2.34v.88c0 1.66-1.33 3-2.98 3.02h-4.02v1.31c0 .32.25.58.56.59h4.38l2.65 2.84v-2.85h2.4c.31-.01.56-.27.56-.59v-4.63c0-.31-.25-.57-.56-.58h-2.99Zm-7.52-6.21v-.07c0-.44-.1-.85-.29-1.21-.18-.34-.43-.63-.74-.86-.3-.23-.65-.41-1.04-.51h-.02c-.35-.1-.76-.16-1.18-.16h-.02c-.45 0-.87.07-1.28.19h.03c-.41.12-.77.32-1.08.57-.32.25-.58.57-.77.93v.02c-.21.39-.35.84-.39 1.32s2.22.25 2.22.25c.02-.33.14-.63.33-.88.19-.24.49-.4.82-.4h.11c.27 0 .51.1.69.27.17.17.28.41.28.67v.06c0 .2-.07.39-.18.55-.12.16-.25.3-.4.43s-.46.44-.46.44q-.255.225-.48.45-.18.21-.33.45c-.09.17-.16.34-.21.53-.04.2-.07.43-.07.65v.54h2.18v-.75c.03-.11.07-.21.13-.3.06-.11.14-.2.23-.28l.38-.32c.25-.18.45-.37.65-.54q.285-.24.48-.54c.13-.19.24-.4.31-.63v-.02c.08-.23.12-.49.12-.76v-.08Zm-2.05 6.19c0-.19-.04-.36-.11-.52s-.17-.3-.29-.41a1.4 1.4 0 0 0-.43-.28c-.15-.07-.32-.11-.51-.11h-.02c-.19 0-.38.04-.54.11-.17.07-.31.16-.44.28a1.31 1.31 0 0 0-.4.94c0 .19.04.37.12.53.08.15.18.29.31.41.12.12.26.21.42.28.16.06.34.1.52.1h.07c.37 0 .7-.15.94-.39.21-.22.34-.53.34-.86v-.09Z"] },
499
+ "QuestionCircle": { "viewBox": "0 0 32 32", "paths": ["M15.86 31.86c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16m0-29.72C8.3 2.14 2.15 8.29 2.15 15.85S8.3 29.56 15.86 29.56s13.71-6.15 13.71-13.71S23.42 2.14 15.86 2.14", "M15.86 26.14a1.71 1.71 0 1 1-.002-3.418 1.71 1.71 0 0 1 .002 3.418m0-2.28a.57.57 0 1 0 0 1.14.57.57 0 0 0 0-1.14M15.86 20.64c-.63 0-1.14-.51-1.14-1.14 0-2.61 1.81-4.04 3.27-5.19 1.5-1.19 2.42-1.99 2.42-3.45 0-1.76-1.86-2.99-4.53-2.99-2.16 0-4.1 1.2-4.61 2.85-.19.6-.82.94-1.43.75-.6-.19-.94-.83-.75-1.43.81-2.63 3.61-4.46 6.8-4.46 4.01 0 6.82 2.17 6.82 5.28 0 2.64-1.82 4.08-3.29 5.24-1.49 1.18-2.4 1.97-2.4 3.4 0 .63-.51 1.14-1.14 1.14Z"] },
500
+ "Quickbooks": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2m-.78 23.18a2.02 2.02 0 0 1-2.02-2.02V12.58h-1.87c-1.89 0-3.42 1.53-3.42 3.42s1.53 3.42 3.42 3.42h.78v2.02h-.78a5.44 5.44 0 1 1 0-10.88h3.89zm5.44-3.73h-3.89V6.82c1.12 0 2.02.91 2.02 2.02v10.58h1.87c1.89 0 3.42-1.53 3.42-3.42s-1.53-3.42-3.42-3.42h-.78v-2.02h.78a5.44 5.44 0 1 1 0 10.88Z"] },
501
+ "ReadMore": { "viewBox": "0 0 32 32", "paths": ["M28.44 4.33c-.86 0-1.55.7-1.55 1.55v1.54c0 .28-.23.51-.52.52H5.63c-.29 0-.52-.23-.52-.52V5.76c0-.86-.7-1.56-1.56-1.56s-1.56.7-1.56 1.56v1.66c0 2 1.63 3.63 3.63 3.63h20.74c2 0 3.63-1.63 3.63-3.63V5.88c0-.87-.7-1.56-1.55-1.56ZM3.56 27.78c.86 0 1.56-.7 1.56-1.56v-1.54c0-.29.23-.52.51-.52h20.74c.29 0 .52.23.52.52v1.54c0 .86.7 1.55 1.55 1.55s1.55-.7 1.55-1.55v-1.54c0-2-1.63-3.63-3.63-3.63H5.63c-2 0-3.63 1.63-3.63 3.63v1.54c0 .86.69 1.56 1.55 1.56Zm2.6-13.09H3.44c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h2.72c.75 0 1.36-.61 1.36-1.36s-.61-1.36-1.36-1.36m22.48 0h-2.72c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h2.72c.75 0 1.36-.61 1.36-1.36s-.61-1.36-1.36-1.36m-14.98 0h-2.72c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h2.72c.75 0 1.36-.61 1.36-1.36s-.61-1.36-1.36-1.36m7.5 0h-2.72c-.75 0-1.36.61-1.36 1.36s.61 1.36 1.36 1.36h2.72c.75 0 1.36-.61 1.36-1.36s-.61-1.36-1.36-1.36"] },
502
+ "ReadOnlyView": { "viewBox": "0 0 32 32", "paths": ["M9.22 18.66c-.83 0-1.5-.67-1.5-1.5V6.53c0-.4.32-.73.73-.74h14.2c.36 0 .66.27.72.62l2.09-1.84H5.44c-.9 0-1.63.73-1.63 1.63v17.38l5.59-4.91h-.19Zm14.16-1.5c0 .83-.67 1.5-1.49 1.5h-5.4l-4.61 4.05h10.2c.47 0 .86.37.86.84v3.28c0 .16-.12.29-.27.29H10.12a.29.29 0 0 1-.29-.29v-2.29l-3.24 2.84.11.1c.3.36.75.57 1.23.57h17.74c.9 0 1.63-.73 1.63-1.63V9.16l-3.93 3.43.02 4.56Zm6.36-13.17a.97.97 0 0 0-1.38-.13c-.02.01-.03.03-.05.05L2.36 26.6c-.42.34-.48.96-.13 1.38.01.01.02.03.04.04.19.22.46.34.75.34.25 0 .5-.08.69-.25L29.64 5.42c.42-.34.49-.96.14-1.38a.12.12 0 0 0-.05-.05Z"] },
503
+ "RealEstateListing": { "viewBox": "0 0 32 32", "paths": ["M26.69 10.54 16.06.82a.335.335 0 0 0-.44 0L5 10.54c-.13.13-.13.34 0 .47l.57.58c.13.12.33.12.46 0l1.31-1.2v11.42h5.73v-7.05c0-.24.2-.44.44-.44h4.69c.24 0 .44.2.44.44v7.05h5.74v-11.4l1.31 1.19c.12.12.32.12.45 0l.57-.58a.32.32 0 0 0 .01-.46l-.02-.02ZM27.61 26.46v-1.2l-10.39 5.96c-.15.09-.32.13-.5.13-.26 0-.52-.1-.71-.3l-4.83-5-8.33 4.71a.99.99 0 0 1-1.36-.37c-.27-.48-.1-1.09.38-1.37l9-5.09a1 1 0 0 1 1.21.18l4.82 4.99 9.72-5.57-1.04-.6 5.33-.71z"] },
504
+ "RecentlySelected": { "viewBox": "0 0 32 32", "paths": ["M29.97 15.1c0-.3-.06-.6-.1-.89A12.86 12.86 0 0 0 17.73 3.13h-.63c-5.22 0-9.91 3.15-11.88 7.98H2.47c-.19 0-.35.11-.43.28s-.05.37.08.51l4.1 4.38c.08.09.2.15.33.15s.26-.05.35-.15L11 11.9a.46.46 0 0 0 .09-.5.47.47 0 0 0-.43-.29h-2.8l.3-.51c1.87-3.16 5.27-5.09 8.94-5.08h.2c4.94.12 9.14 3.66 10.07 8.51.08.41.13.83.15 1.25.2 2.89-.82 5.73-2.82 7.83-3.93 4.21-10.53 4.44-14.74.51-.7-.66-1.31-1.41-1.81-2.23a1.2 1.2 0 0 0-2.1 0c-.22.39-.22.86 0 1.25 3.67 6.09 11.57 8.06 17.67 4.39a13 13 0 0 0 2.77-2.24c2.47-2.59 3.74-6.11 3.48-9.69M16.58 8.69a.97.97 0 0 0-.97.97v7.42c0 .26.09.52.28.71.16.12.34.22.53.29l6.2 2.11a.97.97 0 0 0 1.19-.59c.16-.54-.11-1.11-.63-1.33l-5.6-1.87V9.7a.97.97 0 0 0-.93-1.01h-.08Z"] },
505
+ "Record": { "viewBox": "0 0 32 32", "paths": ["M20.5 15.5v-9C20.5 4.01 18.48 2 16 2s-4.5 2.02-4.5 4.5v9c0 2.49 2.02 4.5 4.5 4.5s4.5-2.02 4.5-4.5M8 12.11c-.83 0-1.5.67-1.5 1.5v1.78c.01 4.71 3.45 8.61 7.95 9.35h.06v2.25h-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5h12c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-4.5v-2.25c4.56-.75 7.99-4.66 8-9.37V13.6c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.78c-.14 3.48-3 6.25-6.5 6.25s-6.36-2.77-6.5-6.24V13.6c0-.83-.67-1.5-1.5-1.5Z"] },
506
+ "Redo": { "viewBox": "0 0 32 32", "paths": ["M2.06 20.27c1.75-5.58 5.96-9.44 11.08-10.08s10.26 2 13.35 6.5v-5.43c0-.97.78-1.75 1.75-1.75s1.75.78 1.75 1.75v9.39c0 .49-.21.93-.53 1.25s-.75.51-1.23.52l-9.43-.02c-.97 0-1.75-.78-1.75-1.75s.78-1.75 1.75-1.75h4.93c-2.31-3.59-6.32-5.72-10.17-5.25s-6.84 3.41-8.15 7.66c-.24.69-.89 1.18-1.66 1.18a1.746 1.746 0 0 1-1.68-2.23Z"] },
507
+ "Refresh": { "viewBox": "0 0 32 32", "paths": ["M2.92 13.11h7.36s.1.01.15.01c.55 0 .99-.44.99-.99 0-.34-.17-.63-.42-.81S8.87 9.17 8.87 9.17c1.86-2.08 4.54-3.38 7.54-3.38.32 0 .65.01.96.05h-.04c3.89.48 7.16 3.54 8.54 7.99a2.031 2.031 0 0 0 3.97-.6c0-.21-.03-.42-.09-.61-1.87-5.97-6.43-10.11-11.88-10.79-.44-.05-.95-.08-1.46-.08-4.1 0-7.79 1.76-10.36 4.56S3.69 3.96 3.69 3.96c-.19-.19-.45-.3-.73-.3-.57 0-1.04.46-1.04 1.03v7.37c0 .57.46 1.03 1.03 1.04Zm25.89 5.77h-7.37s-.1-.01-.15-.01c-.55 0-.99.44-.99.99 0 .34.17.63.42.81s2.14 2.14 2.14 2.14a10.08 10.08 0 0 1-7.54 3.38c-.32 0-.64-.01-.95-.04h.04c-3.89-.48-7.16-3.54-8.54-7.99a2.031 2.031 0 0 0-3.97.6c0 .21.03.42.09.61 1.84 5.93 6.4 10.11 11.88 10.79.48.06 1.03.1 1.58.1 4.07-.06 7.72-1.8 10.29-4.57s2.35 2.34 2.35 2.34c.19.19.45.3.73.3.57 0 1.04-.46 1.04-1.03v-7.37c0-.57-.47-1.04-1.04-1.04h-.04Z"] },
508
+ "Registration": { "viewBox": "0 0 32 32", "paths": ["m19.88 7.69 1.41-1.41c0-.75-.62-1.36-1.38-1.35h-7.85v5.08c0 1.28-1.04 2.31-2.31 2.31H4.71v13.85c0 .8.75.96 1.39.96h13.82c.63 0 1.39-.2 1.39-.96v-3.75l2.8-2.76v6.52c0 2.2-1.71 3.7-4.16 3.7H6.16c-2.46 0-4.15-1.52-4.15-3.7V10.93a1 1 0 0 1 0-.26c.01-.12.05-.24.11-.34v-.08c.07-.1.14-.2.22-.29l7.41-7.41c.08-.1.17-.19.28-.26h.09c.1-.05.22-.1.33-.12.09-.01.18-.01.26 0h9.23c1.43.01 2.76.76 3.5 1.98.59-.58 1.54-.58 2.13 0l4.02 4.03c.56.58.56 1.51 0 2.09L17.57 22.29c-.16.17-.37.29-.59.35l-6.02 2.01c-.15.05-.31.08-.47.08-.41.02-.81-.14-1.1-.44-.4-.4-.55-1-.37-1.54l2.05-6.02c.08-.22.2-.43.36-.59l5.51-5.51 2.97-2.93Z"] },
509
+ "Remove": { "viewBox": "0 0 32 32", "paths": ["M2.57 29.48c.32.32.75.51 1.24.51s.92-.2 1.24-.51L16.03 18.5l11 10.98c.32.32.75.51 1.24.51A1.752 1.752 0 0 0 29.51 27l-11-10.98 10.98-11c.28-.31.46-.72.46-1.17a1.741 1.741 0 0 0-2.92-1.28s-11 10.98-11 10.98l-11-10.98a1.741 1.741 0 1 0-2.47 2.45s10.98 11 10.98 11l-10.97 11c-.31.31-.51.75-.51 1.23s.19.92.51 1.23"] },
510
+ "Replace": { "viewBox": "0 0 32 32", "paths": ["M5.52 19h7.03c.97 0 1.76.79 1.76 1.76v5.27c0 .97-.79 1.76-1.76 1.76H5.52c-.97 0-1.76-.79-1.76-1.76v-5.27c0-.97.79-1.76 1.76-1.76m8.56-14.79H7.46c-.97 0-1.76.79-1.76 1.76v4.92H2.91c-.5 0-.91.41-.91.91 0 .25.1.48.27.64l4.53 4.53c.16.17.39.27.64.27s.48-.1.64-.27l4.53-4.53c.16-.16.26-.39.26-.63 0-.5-.41-.91-.91-.91H9.22V7.73h4.86c.97 0 1.76-.79 1.76-1.76s-.79-1.76-1.76-1.76h-.03Zm5.37 0h7.03c.97 0 1.76.79 1.76 1.76v5.27c0 .97-.79 1.76-1.76 1.76h-7.03c-.97 0-1.76-.79-1.76-1.76V5.97c0-.97.79-1.76 1.76-1.76m10.28 15.35-4.53-4.53c-.16-.17-.39-.27-.64-.27s-.48.1-.64.27l-4.53 4.53c-.16.16-.26.39-.26.63 0 .5.41.91.91.91h2.74v3.17h-4.83c-.97 0-1.76.79-1.76 1.76s.79 1.76 1.76 1.76h6.62c.97 0 1.76-.79 1.76-1.76v-4.92h2.79c.5 0 .91-.41.91-.91 0-.25-.1-.48-.27-.64Z"] },
511
+ "Reporting": { "viewBox": "0 0 32 32", "paths": ["M7.86 29H1c-.63 0-1.14-.51-1.14-1.14V17.57c0-.63.51-1.14 1.14-1.14h6.86c.63 0 1.14.51 1.14 1.14v10.29C9 28.49 8.49 29 7.86 29m-5.72-2.28h4.57v-8H2.14zM19.29 29h-6.86c-.63 0-1.14-.51-1.14-1.14v-16c0-.63.51-1.14 1.14-1.14h6.86c.63 0 1.14.51 1.14 1.14v16c0 .63-.51 1.14-1.14 1.14m-5.72-2.28h4.57V13.01h-4.57zM30.71 29h-6.86c-.63 0-1.14-.51-1.14-1.14V5c0-.63.51-1.14 1.14-1.14h6.86c.63 0 1.14.51 1.14 1.14v22.86c0 .63-.51 1.14-1.14 1.14M25 26.71h4.57V6.14H25z"] },
512
+ "Reports": { "viewBox": "0 0 32 32", "paths": ["M26.7 2.01H5.3C3.48 2.01 2 3.48 2 5.31v21.38c0 1.82 1.47 3.3 3.3 3.3h21.39c1.82 0 3.3-1.47 3.3-3.3V5.3c0-1.82-1.47-3.3-3.3-3.3Zm-.76 22.2c0 .51-.41.92-.92.92H6.99c-.51 0-.92-.41-.92-.92v-7.84c0-.51.41-.92.92-.92H8.6c.51 0 .92.41.92.92v6.92h2.01V12.45c0-.51.41-.92.92-.92h1.61c.51 0 .92.41.92.92v10.8h2.08V6.97c0-.51.41-.92.92-.92h1.61c.49.01.89.42.89.92V23.3h2.04V10.89c0-.51.41-.92.92-.92h1.61c.5 0 .9.39.92.89v13.35l-.02.02Z"] },
513
+ "Right": { "viewBox": "0 0 32 32", "paths": ["M23.52 15.26c-.06-.11-.12-.21-.19-.3s-.11-.17-.11-.17v-.08L11.57 2.5c-.32-.31-.75-.5-1.23-.5-.97 0-1.75.78-1.75 1.75 0 .43.15.82.41 1.13S19.5 15.9 19.5 15.9L9 26.93c-.37.32-.59.79-.59 1.32 0 .97.78 1.75 1.75 1.75.55 0 1.05-.26 1.37-.66s11.65-12.2 11.65-12.2v-.08l.11-.18c.07-.09.13-.19.18-.29.03-.1.05-.21.07-.32.03-.1.05-.22.06-.33 0-.13-.03-.24-.06-.35s0-.03 0-.05c0-.1 0-.2-.02-.29Z"] },
514
+ "Rotate": { "viewBox": "0 0 32 32", "paths": ["M25.89 16.13c-1.07 0-1.94.87-1.94 1.94v.03c0 4.37-3.54 7.91-7.91 7.91s-7.91-3.54-7.91-7.91 3.52-7.89 7.87-7.91v3.21c0 .57.47 1.03 1.04 1.03.28 0 .54-.11.73-.3l5.19-5.19c.19-.19.3-.45.3-.73s-.12-.55-.3-.73l-5.19-5.17c-.19-.19-.45-.3-.73-.3s-.55.12-.73.3c-.19.19-.3.44-.3.73v3.22c-6.56 0-11.87 5.31-11.87 11.87S9.45 30 16.01 30s11.87-5.31 11.87-11.87v-.06c0-1.07-.87-1.94-1.94-1.94h-.04Z"] },
515
+ "RotateLeads": { "viewBox": "0 0 32 32", "paths": ["M9.85 14.83v.2c0 1.89.62 3.64 1.66 5.06l-.02-.02c.63.91 1.65 1.51 2.81 1.57 1.17-.06 2.18-.66 2.81-1.56a8.55 8.55 0 0 0 1.64-5.03v-.23c0-2.45-1.99-4.44-4.45-4.44s-4.45 1.99-4.45 4.45m19.82-3.64a1.27 1.27 0 0 0-1.37-.36s-2.03.67-2.03.67l-.48.16c-1.8-4.69-6.28-7.96-11.51-7.96-6.79 0-12.3 5.51-12.3 12.3S7.3 28.12 13.94 28.3h.5c.28 0 .57 0 .86-.05h.1c1.06-.09 2.03-.3 2.95-.62l-.09.03c.35-.12.7-.26 1.04-.41l.07-.04a5.5 5.5 0 0 0 2.45-2.06v-.02c.2-.25.31-.56.31-.9 0-.29-.08-.56-.22-.79-.06-.15-.14-.28-.24-.4s-.06-.04-.06-.04a9.592 9.592 0 0 0-3.19-2.38l-.06-.03c-.87 1.38-2.35 2.31-4.05 2.39h-.01a5.06 5.06 0 0 1-4.05-2.33v-.02a9.9 9.9 0 0 0-3.28 2.42c-.11.13-.2.28-.26.43a10.57 10.57 0 0 1-3.02-7.42c0-5.88 4.77-10.65 10.65-10.65 4.5 0 8.34 2.79 9.9 6.73l.03.07-.36.13-1.95.66c-.52.17-.89.64-.89 1.21 0 .51.3.94.73 1.15s4.28 2.11 4.28 2.11a1.271 1.271 0 0 0 1.69-.56s2.1-4.29 2.1-4.29c.08-.17.14-.36.14-.57 0-.33-.12-.62-.32-.85Z"] },
516
+ "Sales": { "viewBox": "0 0 32 32", "paths": ["M29.43 13.14H2c-.63 0-1.14-.51-1.14-1.14V4c0-.63.51-1.14 1.14-1.14h27.43c.63 0 1.14.51 1.14 1.14v8c0 .63-.51 1.14-1.14 1.14M3.14 10.86h25.14V5.15H3.14z", "M26 21.14H5.43c-.63 0-1.14-.51-1.14-1.14v-8c0-.63.51-1.14 1.14-1.14H26c.63 0 1.14.51 1.14 1.14v8c0 .63-.51 1.14-1.14 1.14M6.57 18.86h18.29v-5.71H6.57z", "M22.57 29.14H8.86c-.63 0-1.14-.51-1.14-1.14v-8c0-.63.51-1.14 1.14-1.14h13.71c.63 0 1.14.51 1.14 1.14v8c0 .63-.51 1.14-1.14 1.14M10 26.86h11.43v-5.71H10z"] },
517
+ "SalesQuote": { "viewBox": "0 0 32 32", "paths": ["M17.45 13.69c.32-.32.54-.75.54-1.18s-.21-.86-.54-1.07c-.21-.11-.43-.32-.64-.43v3c.32 0 .54-.11.64-.32M14.66 7.58c0 .32.11.64.32.75s.32.21.54.32V6.5c-.21 0-.32.11-.43.21-.32.21-.43.54-.43.86Z", "M24.42 2H7.47C5.32 2 3.61 3.72 3.61 5.86v20.28c0 2.15 1.72 3.86 3.86 3.86h17.06c2.15 0 3.86-1.72 3.86-3.86V5.86C28.28 3.71 26.57 2 24.42 2M13.8 12.3c.21.54.43 1.07.86 1.5.32.21.64.32.97.32v-3.65c-.75-.21-1.39-.64-1.93-1.07s-.75-1.07-.75-1.72c0-.32.11-.64.21-.86.11-.32.32-.54.54-.75s.54-.43.86-.54c.32-.21.75-.32 1.18-.43V4.03c0-.21.21-.43.43-.32h.54c.21 0 .43.11.43.32V5.1c.54.11 1.07.21 1.5.54.54.32.86.75 1.18 1.18.11.64-.86 1.29-1.72.64-.32-.32-.64-.64-1.07-.86v2.68c.43.21.75.32 1.07.54s.64.43.97.64c.54.54.97 1.29.86 2.04 0 .75-.32 1.5-.86 2.04-.54.64-1.29.97-2.15 1.18v.86c0 .21-.21.43-.43.32h-.54c-.21 0-.43-.11-.43-.32v-.86c-.86-.11-1.72-.43-2.36-.86a3.36 3.36 0 0 1-1.18-2.15c-.11-.75 1.39-1.18 1.82-.43Zm9.87 14.27H8.65c-.64 0-1.07-.43-1.07-1.07s.43-1.07 1.07-1.07h15.02c.64 0 1.07.43 1.07 1.07 0 .54-.43 1.07-1.07 1.07m0-5.15H8.65c-.64 0-1.07-.43-1.07-1.07s.43-1.07 1.07-1.07h15.02c.64 0 1.07.43 1.07 1.07s-.43 1.07-1.07 1.07"] },
518
+ "SalesTemplates": { "viewBox": "0 0 32 32", "paths": ["M23.94 8.54h-9.35c-1.81 0-3.27 1.46-3.27 3.27v14.92c0 1.81 1.46 3.27 3.27 3.27h9.35c1.81 0 3.27-1.46 3.27-3.27V11.81c0-1.81-1.46-3.27-3.27-3.27m-.47 2.8c.08-.02.18-.04.27-.04.54 0 .97.44.97.97a.977.977 0 0 1-1.25.93s-8.45 0-8.45 0a.97.97 0 0 1-.01-1.86s8.45 0 8.45 0Zm0 11.22h-8.45a.97.97 0 0 1-.01-1.86s8.41 0 8.41 0a.97.97 0 0 1 .01 1.86s.04 0 .04 0m0-4.67h-8.45a.97.97 0 0 1-.01-1.86s8.41 0 8.41 0a.97.97 0 0 1 .01 1.86s.04 0 .04 0m-15.42 2.8a.47.47 0 0 1-.47-.47V5.27c0-.26.21-.47.47-.47h9.35c.26 0 .47.21.47.47v.02a1.4 1.4 0 0 0 2.8.02v-.04C20.67 3.46 19.21 2 17.4 2H8.05C6.24 2 4.78 3.46 4.78 5.27v14.95c0 1.81 1.46 3.27 3.27 3.27.77 0 1.4-.63 1.4-1.4s-.63-1.4-1.4-1.4"] },
519
+ "SaveEditableView": { "viewBox": "0 0 32 32", "paths": ["M28.02 2.05H3.98C2.91 2.02 2.02 2.87 2 3.94v21.19c0 .47.16.92.47 1.27l2.89 2.88c.37.42.9.66 1.46.66h21.2c1.07.03 1.96-.82 1.98-1.89V3.98c0-1.07-.88-1.93-1.95-1.93h-.04ZM24.79 28.5c0 .19-.14.34-.33.35H9.48c-.19 0-.35-.16-.35-.35v-3.87c0-.57.46-1.03 1.03-1.03h13.6c.56 0 1.02.44 1.03 1v3.89Zm.55-11.51c0 .99-.8 1.8-1.8 1.8H8.5c-.99.02-1.81-.77-1.83-1.76V4.08c0-.48.4-.87.89-.86h16.88c.48 0 .87.39.87.87l.02 12.89Z"] },
520
+ "Search": { "viewBox": "0 0 32 32", "paths": ["m29.66 27.7-8.36-8.36c1.4-1.8 2.24-4.09 2.24-6.58C23.54 6.82 18.72 2 12.78 2S2.01 6.82 2.01 12.76s4.82 10.76 10.76 10.76c2.49 0 4.78-.84 6.6-2.26l-.02.02 8.34 8.36c.24.22.57.36.92.36.76 0 1.38-.62 1.38-1.38 0-.36-.14-.68-.36-.93s.03 0 .03 0Zm-16.84-6.94c-4.4 0-7.96-3.58-7.96-7.97s3.57-7.97 7.97-7.97 7.97 3.57 7.97 7.97v.03c-.02 4.39-3.59 7.95-7.98 7.95Z"] },
521
+ "Section": { "viewBox": "0 0 32 32", "paths": ["M26.5 5.5h-21C3.57 5.5 2 7.07 2 9v14c0 1.93 1.57 3.5 3.5 3.5h21c1.93 0 3.5-1.57 3.5-3.5V9c0-1.93-1.57-3.5-3.5-3.5m0 3.5v5.25h-8.75V9zm-21 14V9h8.75v14zm12.25 0v-5.25h8.75V23z"] },
522
+ "Send": { "viewBox": "0 0 32 32", "paths": ["m26.57 2.26-22 13.48c-.95.59-.89 1.42.13 1.89l5.22 2.24L22.23 8.34c1.63-1.52 1.89-1.31.5.45L11.26 23.21V29c0 1.11.59 1.33 1.32.49l5.31-6.18 5.99 2.57c.19.11.42.17.66.17.76 0 1.39-.62 1.39-1.38S28.09 3.2 28.09 3.2c.11-1.1-.58-1.53-1.53-.95Z"] },
523
+ "Sequences": { "viewBox": "0 0 32 32", "paths": ["M18.26 11.08c1.25 0 2.27-1.02 2.27-2.27V4.28c0-1.26-1.02-2.28-2.27-2.28h-4.53c-1.25 0-2.26 1.02-2.26 2.27V8.8c0 1.25 1.02 2.27 2.27 2.27h.76v2.01h-.76c-1.25 0-2.27 1.02-2.27 2.27v4.53c0 1.25 1.02 2.27 2.27 2.27h.76v2.02h-2.28a.77.77 0 0 0-.65 1.18s3.74 4.27 3.74 4.27c.13.23.38.38.66.38s.53-.15.66-.38 3.74-4.27 3.74-4.27c.08-.12.13-.26.13-.42a.77.77 0 0 0-.77-.77h-2.22v-2.01h.76c1.25 0 2.27-1.02 2.27-2.27v-4.53c0-1.25-1.02-2.27-2.27-2.27h-.76v-2.01h.75Zm-.76 8.05h-3.02v-3.02h3.02zM14.48 8.05V5.03h3.02v3.02z"] },
524
+ "Service": { "viewBox": "0 0 32 32", "paths": ["M28.14 29.28H3c-.36 0-.69-.17-.91-.45s-.29-.65-.2-.99l1.05-3.93c.4-1.5 1.76-2.54 3.31-2.54h18.62c1.55 0 2.91 1.04 3.31 2.54l1.05 3.93c.09.34.02.71-.2.99s-.55.45-.91.45ZM4.49 27h22.16l-.67-2.49c-.13-.5-.59-.85-1.1-.85H6.26c-.52 0-.97.35-1.1.85zM25.86 19c-.63 0-1.14-.51-1.14-1.14 0-5.04-4.1-9.14-9.14-9.14s-9.14 4.1-9.14 9.14a1.14 1.14 0 1 1-2.28 0c0-6.3 5.13-11.43 11.43-11.43s11.43 5.13 11.43 11.43c0 .63-.51 1.14-1.14 1.14ZM18.06 4.14h-4.99a1.14 1.14 0 1 1 0-2.28h4.99a1.14 1.14 0 1 1 0 2.28", "M15.57 8.71c-.63 0-1.14-.51-1.14-1.14V3a1.14 1.14 0 1 1 2.28 0v4.57c0 .63-.51 1.14-1.14 1.14"] },
525
+ "Settings": { "viewBox": "0 0 32 32", "paths": ["M27.88 13.38h-2.55c-.21-.79-.49-1.47-.84-2.12l.02.05 1.8-1.8c.4-.38.65-.93.65-1.52s-.24-1.14-.65-1.52l-.73-.77c-.38-.39-.93-.65-1.52-.65s-1.14.24-1.52.65l-1.83 1.8c-.57-.32-1.23-.6-1.93-.8l-.06-.02V4.12c0-1.17-.96-2.13-2.13-2.13h-1.06c-1.18 0-2.13.96-2.13 2.13v2.55c-.79.21-1.48.49-2.13.84l.05-.02-1.8-1.8c-.38-.4-.94-.66-1.54-.66s-1.16.26-1.54.66l-.73.73c-.4.38-.65.93-.65 1.52s.24 1.14.65 1.52l1.8 1.83c-.32.57-.6 1.23-.8 1.93l-.02.06H4.15c-1.17 0-2.13.96-2.13 2.13v1.14c0 1.18.95 2.13 2.13 2.13H6.7c.21.76.49 1.41.83 2.04l-.02-.05-1.8 1.8c-.4.38-.65.93-.65 1.52s.24 1.14.65 1.52l.77.77c.38.4.93.65 1.52.65s1.14-.24 1.52-.65l1.8-1.79c.56.32 1.23.6 1.93.8l.06.02v2.55c0 1.17.96 2.13 2.13 2.13h1.06c1.17 0 2.13-.96 2.13-2.13v-2.55a9.7 9.7 0 0 0 2.13-.84l-.05.02 1.8 1.8c.38.4.93.65 1.52.65s1.14-.24 1.52-.65l.77-.77c.4-.38.65-.93.65-1.53s-.24-1.14-.65-1.52l-1.8-1.81c.32-.57.6-1.23.8-1.93l.02-.06h2.55c1.17 0 2.13-.96 2.13-2.13v-1.06c0-1.18-.96-2.13-2.13-2.13v.02Zm-5.41 3.17a6.7 6.7 0 0 1-.38 1.72c-.05.15-.12.29-.18.44a6.56 6.56 0 0 1-3.15 3.17l-.04.02-.45.18c-.5.19-1.09.33-1.69.38h-1.11a6.7 6.7 0 0 1-1.72-.38l-.44-.18a6.56 6.56 0 0 1-3.17-3.15l-.02-.04c-.06-.15-.13-.3-.18-.45-.19-.5-.33-1.09-.38-1.69v-1.11c.03-.39.1-.76.18-1.11.06-.26.14-.46.21-.66v.04c.04-.15.11-.3.17-.45a6.56 6.56 0 0 1 3.15-3.17l.04-.02.45-.18c.5-.19 1.09-.33 1.69-.38h1.11c.62.05 1.19.19 1.72.38l.44.18c1.41.66 2.53 1.78 3.17 3.15l.02.04c.06.15.13.3.18.45.19.5.33 1.09.38 1.69v1.11Zm-6.46-4.72c-2.31 0-4.18 1.87-4.18 4.18s1.87 4.18 4.18 4.18 4.18-1.87 4.18-4.18-1.87-4.18-4.18-4.18"] },
526
+ "Share": { "viewBox": "0 0 32 32", "paths": ["M22.98 30H9.01c-1.93 0-3.49-1.56-3.49-3.49V16.04c0-1.93 1.56-3.49 3.49-3.49h1.7a1.16 1.16 0 0 1 0 2.32h-1.7c-.64 0-1.16.52-1.16 1.16V26.5c0 .64.52 1.16 1.16 1.16h13.97c.64 0 1.16-.52 1.16-1.16V16.03c0-.64-.52-1.16-1.16-1.16h-1.75a1.16 1.16 0 0 1 0-2.32h1.75c1.93 0 3.49 1.56 3.49 3.49v10.47c0 1.93-1.56 3.49-3.49 3.49m-.9-19.85c-.32 0-.61-.13-.82-.34l-4.99-4.99-4.99 4.99a1.16 1.16 0 0 1-1.64-1.64s5.82-5.82 5.82-5.82a1.156 1.156 0 0 1 1.64 0l5.82 5.82c.21.21.34.5.34.83 0 .64-.52 1.16-1.16 1.16Zm-5.82 10.47c-.64 0-1.16-.52-1.16-1.16V3.16a1.16 1.16 0 0 1 2.32 0v16.29c0 .64-.52 1.16-1.16 1.16Z"] },
527
+ "SidebarCollapse": { "viewBox": "0 0 32 32", "paths": ["M27.91 4s.09.04.09.09v23.83s-.04.09-.09.09H4.09S4 27.97 4 27.92V4.09S4.04 4 4.09 4h23.83m0-2H4.09C2.94 2 2 2.93 2 4.09v23.83c0 1.15.93 2.09 2.09 2.09h23.83c1.15 0 2.09-.93 2.09-2.09V4.09c0-1.15-.93-2.09-2.09-2.09m-8.23 19.75-6.15-5.8 6.04-5.7c.5-.48.53-1.27.05-1.77-.47-.5-1.26-.52-1.76-.05l-7 6.6c-.5.46-.53 1.24-.07 1.74.01.02.02.03.04.05.04.05.08.1.13.15l7 6.6c.24.22.55.34.86.34.33 0 .66-.14.91-.4.47-.5.45-1.29-.05-1.76"] },
528
+ "SidebarExpand": { "viewBox": "0 0 32 32", "paths": ["M27.91 2H4.09C2.93 2 2 2.94 2 4.09v23.83C2 29.07 2.93 30 4.09 30h23.82c1.15 0 2.09-.93 2.09-2.08V4.09C30 2.94 29.06 2 27.91 2M16.35 23.99c0 1.1-.9 2-2 2h-6c-1.1 0-2-.9-2-2v-16c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2z"] },
529
+ "Signal": { "viewBox": "0 0 32 32", "paths": ["M16 23.429a2 2 0 1 0 0 4 2 2 0 0 0 0-4M15.976 5.668c-5.484 0-10.811 2.072-15 5.835a1.143 1.143 0 1 0 1.527 1.7c3.769-3.385 8.553-5.25 13.473-5.25 4.937 0 9.734 1.876 13.508 5.28a1.14 1.14 0 0 0 1.614-.083 1.143 1.143 0 0 0-.083-1.613c-4.195-3.786-9.536-5.87-15.039-5.87", "M15.989 11.81c-3.88 0-7.646 1.465-10.603 4.126a1.144 1.144 0 0 0 1.53 1.7c2.536-2.284 5.758-3.542 9.073-3.542 3.318 0 6.544 1.262 9.083 3.552a1.14 1.14 0 0 0 1.614-.083 1.143 1.143 0 0 0-.083-1.614c-2.96-2.67-6.73-4.14-10.614-4.14Z", "M15.994 17.938c-2.262 0-4.464.852-6.2 2.398a1.142 1.142 0 1 0 1.52 1.707c1.317-1.173 2.98-1.82 4.68-1.82 1.702 0 3.366.649 4.684 1.826a1.14 1.14 0 0 0 1.613-.092c.42-.471.38-1.194-.091-1.614-1.738-1.55-3.942-2.405-6.206-2.405Z"] },
530
+ "SignalPoor": { "viewBox": "0 0 32 32", "paths": ["M31.015 11.537c-3.09-2.79-6.823-4.676-10.794-5.456a1.143 1.143 0 0 0-.441 2.242c3.565.701 6.92 2.4 9.704 4.91a1.14 1.14 0 0 0 1.614-.083 1.143 1.143 0 0 0-.083-1.613ZM13.122 6.973a1.15 1.15 0 0 0-1.34-.904c-3.97.77-7.707 2.65-10.807 5.434a1.144 1.144 0 0 0 1.527 1.7c2.791-2.508 6.152-4.198 9.716-4.89.62-.12 1.025-.72.904-1.34ZM20.319 12.425a1.142 1.142 0 1 0-.637 2.196 13.7 13.7 0 0 1 5.39 3.025 1.14 1.14 0 0 0 1.614-.083 1.143 1.143 0 0 0-.082-1.614c-1.845-1.663-3.96-2.849-6.285-3.524M13.098 13.2a1.14 1.14 0 0 0-1.414-.78 16 16 0 0 0-6.298 3.516 1.144 1.144 0 0 0 1.53 1.7 13.7 13.7 0 0 1 5.4-3.021c.607-.175.957-.808.782-1.414ZM20.57 19.189a1.143 1.143 0 0 0-1.139 1.982c.5.288.907.575 1.246.877a1.144 1.144 0 0 0 1.523-1.705 9.6 9.6 0 0 0-1.63-1.154M11.433 19.18a9.6 9.6 0 0 0-1.639 1.156 1.142 1.142 0 1 0 1.522 1.705c.34-.302.75-.59 1.252-.877a1.143 1.143 0 1 0-1.135-1.984ZM16 21.869c.63 0 1.143-.512 1.143-1.143V5.746a1.143 1.143 0 0 0-2.286 0v14.98c0 .631.512 1.143 1.143 1.143"] },
531
+ "Signature": { "viewBox": "0 0 32 32", "paths": ["M15 27.5h-.1c-.39 0-.77-.07-1.13-.19h.02a4.2 4.2 0 0 1-2.58-2.18v-.02c-1.34-2.67-.01-6.44 1.43-10.8l.27-.79c.41-1.24 1.08-3.2 1.39-4.62a27.8 27.8 0 0 0-4.56 6.63l-.07.16c-1.46 2.66-2.97 5.91-4.29 9.26l-.21.61c-.23.76-.93 1.3-1.75 1.3a1.83 1.83 0 0 1-1.83-1.83c0-.93 2.96-7.56 4.86-11.02 3.81-7.21 7.05-10.26 9.87-9.36.56.16 1.03.51 1.33.98s.11.2.11.2c.89 1.72.07 4.49-1.39 8.89l-.28.81c-.99 2.96-2.28 6.68-1.64 7.99.14.29.28.32.36.34l.21.07c.66-.2 1.75-3.11 2.21-4.35.49-1.45 1.02-2.68 1.64-3.86l-.07.14c.33-.73.91-1.29 1.63-1.59h.02c.17-.07.37-.1.58-.1.95 0 1.73.73 1.82 1.66v.3c0 1.02-.16 2-.47 2.91l.02-.07c-.19.78-.66 2.77-.37 3.05s2.54.48 5.85-.19q.3-.12.66-.12c1.01 0 1.83.82 1.83 1.83s-.75 1.76-1.7 1.82c-4.57.94-7.64.68-9.12-.75q-.165-.15-.3-.33c-1 1.82-2.26 3.23-4.26 3.23Z"] },
532
+ "SimpleBot": { "viewBox": "0 0 32 32", "paths": ["M7.59 19.92s3.05.33 7.75.36v1.66c-1.34 0-2.66.11-3.94.31l.15-.02c-.86.06-1.55.69-1.7 1.52-.22.89-.35 1.9-.35 2.94v.06c0 .64.05 1.27.13 1.89v-.07c1.87.89 4.07 1.42 6.39 1.42 2.15 0 4.19-.45 6.05-1.26l-.1.04c.1-.61.16-1.31.16-2.02 0-1.03-.12-2.03-.34-3l.02.09c-.13-.85-.81-1.51-1.66-1.6-1.04-.17-2.24-.28-3.47-.3h-.02v-1.67c4.75 0 7.73-.36 7.74-.36 2.01-.17 2.7-1.06 2.92-1.8.41-1.07.65-2.31.66-3.61-.01-1.3-.25-2.55-.68-3.69l.02.07c-.22-.73-.9-1.62-2.91-1.79 0 0-3.02-.33-7.75-.36V6.98c1.1-.29 1.9-1.28 1.9-2.45 0-1.4-1.13-2.54-2.54-2.54s-2.54 1.13-2.54 2.54c0 1.17.8 2.16 1.88 2.45h.02v1.75c-4.75 0-7.73.36-7.74.36-2.04.17-2.72 1.09-2.91 1.77-.41 1.08-.65 2.33-.66 3.64 0 1.3.25 2.53.67 3.67l-.02-.07c.18.74.83 1.65 2.89 1.82Zm13.86-7.1a2.9 2.9 0 0 1 2.8 2.73v.03c0 .34-.28.62-.62.63-.34 0-.62-.28-.63-.62-.07-.81-.72-1.45-1.53-1.5-.82.05-1.47.69-1.54 1.49 0 .35-.28.62-.63.62h-.02a.64.64 0 0 1-.62-.64v-.02c.07-1.5 1.28-2.69 2.78-2.72Zm-10.96 0a2.9 2.9 0 0 1 2.8 2.73v.03c0 .34-.28.62-.62.63-.34 0-.62-.28-.63-.62-.07-.81-.72-1.45-1.53-1.5-.83.04-1.49.68-1.57 1.49s0 .06 0 .08c0 .35-.28.64-.64.64s-.64-.28-.64-.64v-.08c.08-1.51 1.3-2.71 2.81-2.76Z"] },
533
+ "SiteTree": { "viewBox": "0 0 32 32", "paths": ["M19.03 17.68h-8.3v7.84h8.3c0-1.24 1-2.24 2.24-2.24h2.24c1.24 0 2.24 1 2.24 2.24v2.24c0 1.24-1 2.24-2.24 2.24h-2.24c-1.24 0-2.24-1-2.24-2.24H9.61c-.62 0-1.12-.5-1.12-1.12V8.72c-1.24 0-2.24-1-2.24-2.24V4.24C6.25 3 7.25 2 8.49 2h2.24c1.24 0 2.24 1 2.24 2.24v2.24c0 1.24-1 2.24-2.24 2.24v6.72h8.3c0-1.24 1-2.24 2.24-2.24h2.24c1.24 0 2.24 1 2.24 2.24v2.24c0 1.24-1 2.24-2.24 2.24h-2.24c-1.24 0-2.24-1-2.24-2.24"] },
534
+ "Sleep": { "viewBox": "0 0 32 32", "paths": ["M16.71 30.43c-8.19 0-14.86-6.66-14.86-14.86C1.86 9.36 5.75 4 11.77 1.92c.6-.21 1.25.11 1.45.71s-.11 1.25-.71 1.45c-5.09 1.76-8.37 6.27-8.37 11.49 0 6.93 5.64 12.57 12.57 12.57 4.47 0 8.42-2.41 10.57-6.3-.71.12-1.41.17-2.18.17-4.66 0-9.03-1.88-11.69-5.02-2.05-2.42-2.9-5.42-2.39-8.47.1-.62.69-1.03 1.32-.94.62.1 1.04.69.94 1.32-.4 2.4.25 4.69 1.88 6.61 2.23 2.63 5.95 4.21 9.95 4.21 1.35 0 2.42-.19 3.81-.66.41-.14.87-.04 1.18.27s.41.77.27 1.18c-2.09 6.02-7.45 9.91-13.65 9.91Z"] },
535
+ "Snooze": { "viewBox": "0 0 32 32", "paths": ["M14.71 30.57c-8.19 0-14.85-6.66-14.85-14.86 0-6.2 3.89-11.56 9.91-13.65.6-.21 1.25.11 1.45.71s-.11 1.25-.71 1.45C5.43 5.99 2.14 10.5 2.14 15.71c0 6.93 5.64 12.57 12.57 12.57 4.47 0 8.42-2.41 10.57-6.3-.71.12-1.41.17-2.18.17-4.66 0-9.03-1.88-11.69-5.02-2.05-2.42-2.9-5.42-2.39-8.46.1-.62.7-1.03 1.32-.94.62.1 1.04.69.94 1.32-.4 2.4.25 4.69 1.88 6.61 2.23 2.63 5.95 4.21 9.95 4.21 1.35 0 2.42-.19 3.81-.66.42-.14.87-.04 1.18.27s.41.77.27 1.18c-2.09 6.02-7.45 9.91-13.65 9.91ZM30.71 8.86H25c-.46 0-.88-.28-1.06-.71s-.08-.92.25-1.25l3.76-3.76H25a1.14 1.14 0 1 1 0-2.28h5.71c.46 0 .88.28 1.06.71s.08.92-.25 1.25l-3.76 3.76h2.95a1.14 1.14 0 1 1 0 2.28", "M20.43 13.43h-4.57c-.46 0-.88-.28-1.06-.71s-.08-.92.25-1.25l2.62-2.62h-1.81a1.14 1.14 0 1 1 0-2.28h4.57c.46 0 .88.28 1.06.71s.08.92-.25 1.25l-2.62 2.62h1.81a1.14 1.14 0 1 1 0 2.28"] },
536
+ "SocialBlockInstagram": { "viewBox": "0 0 32 32", "paths": ["M21.7 16c0 3.15-2.55 5.7-5.7 5.7s-5.7-2.55-5.7-5.7 2.55-5.7 5.7-5.7 5.7 2.55 5.7 5.7m8.21-6.9a9.6 9.6 0 0 0-.61-3.23l.02.06c-.29-.77-.73-1.42-1.28-1.96-.53-.55-1.18-.99-1.91-1.27h-.04c-.94-.37-2.03-.59-3.17-.6-1.8-.1-2.34-.1-6.9-.1s-5.09 0-6.9.1c-1.14.02-2.23.23-3.23.61l.06-.02c-.77.29-1.42.73-1.96 1.28-.55.54-.99 1.19-1.27 1.92v.04c-.37.94-.59 2.02-.6 3.16-.1 1.82-.1 2.35-.1 6.91s0 5.1.1 6.9c.02 1.14.23 2.23.61 3.23l-.02-.06c.29.77.73 1.42 1.28 1.96.54.56 1.19.99 1.92 1.27h.04c.94.37 2.02.59 3.16.6 1.81.1 2.35.1 6.9.1s5.1 0 6.9-.1c1.14-.02 2.23-.23 3.23-.61l-.06.02a5.7 5.7 0 0 0 3.22-3.19v-.04c.37-.94.59-2.02.61-3.16.11-1.82.11-2.35.11-6.92s0-5.09-.1-6.9Zm-13.9 15.68c-4.84 0-8.76-3.93-8.76-8.77s3.92-8.77 8.77-8.77 8.76 3.92 8.77 8.75c0 4.85-3.92 8.78-8.77 8.78h-.01Zm9.12-15.84c-1.13 0-2.05-.92-2.05-2.05s.92-2.05 2.05-2.05 2.05.92 2.05 2.05-.92 2.05-2.05 2.05"] },
537
+ "SocialBlockLinkedin": { "viewBox": "0 0 32 32", "paths": ["M29.99 24.75A5.31 5.31 0 0 1 24.76 30H7.24c-2.88-.04-5.21-2.37-5.24-5.24V7.25A5.31 5.31 0 0 1 7.23 2h17.5c2.9.04 5.24 2.4 5.24 5.3v17.45zM8.45 6.7c-.06 0-.14-.01-.22-.01a2.19 2.19 0 1 0 0 4.38c.08 0 .15 0 .22-.01.06 0 .14.01.22.01a2.19 2.19 0 1 0 0-4.38c-.08 0-.15 0-.22.01m2.12 18.73V12.8H6.33v12.63zm15.13 0v-7.25c0-3.88-2.12-5.69-4.86-5.69h-.12c-1.56 0-2.93.84-3.66 2.1v.02l-.01-1.8h-4.23s.06 1.19 0 12.65h4.24v-7.25c0-.31.05-.62.15-.9v.02c.32-.88 1.14-1.51 2.11-1.54 1.53 0 2.12 1.15 2.12 2.86v6.76h4.24z"] },
538
+ "SocialBlockPinterest": { "viewBox": "0 0 32 32", "paths": ["M29.92 7.23v17.41a5.285 5.285 0 0 1-5.22 5.23H11.54a13 13 0 0 0 1.94-3.71l.03-.09s.16-.62.97-3.79a3.94 3.94 0 0 0 3.26 1.73h.12c4.42 0 7.39-4.03 7.39-9.5 0-4.08-3.47-7.9-8.73-7.9-6.55 0-9.86 4.7-9.86 8.62 0 2.37.91 4.47 2.83 5.28.06.03.14.05.22.05.24 0 .44-.17.48-.4.06-.24.19-.86.27-1.06.03-.07.05-.16.05-.26 0-.2-.09-.39-.24-.5-.57-.7-.91-1.6-.91-2.58v-.19c0-3.6 2.92-6.52 6.52-6.52h.29-.01c3.71 0 5.72 2.25 5.72 5.28 0 3.98-1.76 7.39-4.37 7.39h-.14a2.104 2.104 0 0 1-2.03-2.68c.42-1.73 1.22-3.62 1.22-4.86a1.852 1.852 0 0 0-1.83-2.11h-.02c-1.48 0-2.66 1.53-2.66 3.55 0 .79.16 1.55.44 2.24v-.04c-1.52 6.33-1.8 7.52-1.8 7.52-.16.82-.26 1.76-.26 2.73 0 .66.04 1.31.13 1.95v-.07H7.27a5.293 5.293 0 0 1-5.22-5.27V7.23A5.29 5.29 0 0 1 7.26 2h17.42c2.9 0 5.25 2.33 5.28 5.22s-.04 0-.04 0Z"] },
539
+ "SocialBlockRss": { "viewBox": "0 0 32 32", "paths": ["M29.97 24.75V7.25A5.31 5.31 0 0 0 24.74 2H7.24C4.36 2.04 2.03 4.37 2 7.24v17.51A5.3 5.3 0 0 0 7.24 30h17.51A5.3 5.3 0 0 0 30 24.76s-.03 0-.03 0Zm-20.77.64c-1.41 0-2.56-1.14-2.56-2.56s1.14-2.56 2.56-2.56 2.56 1.14 2.56 2.56c0 1.41-1.14 2.56-2.56 2.56m8.48-1.36c-.61 0-1.11-.5-1.11-1.11 0-4.1-3.32-7.42-7.42-7.42-.61 0-1.11-.5-1.11-1.11s.5-1.11 1.11-1.11c5.31 0 9.62 4.31 9.63 9.63v.02c0 .6-.47 1.08-1.06 1.11h-.03Zm7.42 0c-.61 0-1.11-.5-1.11-1.11 0-8.2-6.65-14.84-14.84-14.84-.61 0-1.11-.5-1.11-1.11s.5-1.11 1.11-1.11h.03c9.43 0 17.08 7.64 17.09 17.07 0 .62-.5 1.11-1.11 1.11h-.05Z"] },
540
+ "SocialBlockTwitter": { "viewBox": "0 0 32 32", "paths": ["M29.99 24.75A5.3 5.3 0 0 1 24.75 30H7.24c-2.88-.04-5.21-2.37-5.24-5.24V7.25A5.31 5.31 0 0 1 7.23 2h17.5a5.3 5.3 0 0 1 5.25 5.24v17.51zm-6.86-13.36c.79-.48 1.39-1.22 1.69-2.09v-.03c-.69.42-1.51.74-2.38.92h-.05c-.7-.74-1.69-1.2-2.79-1.2-2.1 0-3.81 1.7-3.82 3.81s0 .06 0 .09c0 .28.03.55.1.81v-.02c-3.2-.15-6.02-1.67-7.9-3.98l-.02-.02c-.34.55-.54 1.23-.54 1.94v.04c0 1.3.65 2.45 1.64 3.14h.01c-.67-.02-1.28-.19-1.84-.47h.03a3.916 3.916 0 0 0 3.16 3.77h.02c-.27.09-.58.14-.9.14h-.03c-.25 0-.49-.03-.73-.08h.03c.5 1.54 1.9 2.63 3.56 2.65a7.67 7.67 0 0 1-4.75 1.63h-.01c-.32 0-.64-.02-.95-.07h.04c1.66 1.08 3.69 1.72 5.86 1.72h.02c5.98 0 10.82-4.85 10.82-10.82v-.49c.76-.53 1.39-1.19 1.89-1.95l.02-.03a7.7 7.7 0 0 1-2.17.6h-.04l.01-.02Z"] },
541
+ "SocialBlockX": { "viewBox": "0 0 32 32", "paths": ["m17.28 15.66 6.17 8.82h-2.66l-4.98-7.12-.77-1.11-6.47-9.26h2.66l5.28 7.56zm12.71 9.1a5.31 5.31 0 0 1-5.25 5.25H7.24A5.3 5.3 0 0 1 2 24.76V7.25A5.3 5.3 0 0 1 7.24 2h17.49c2.88.03 5.22 2.36 5.25 5.25v17.5h.01Zm-11.84-10.1 7.65-8.9h-1.73l-6.69 7.78-5.34-7.78H6.2l7.94 11.56-7.29 8.48h1.73l6.34-7.37 5.06 7.37h5.84l-7.65-11.14h-.01Z"] },
542
+ "SocialBlockXing": { "viewBox": "0 0 32 32", "paths": ["M29.99 24.75A5.3 5.3 0 0 1 24.75 30H7.24c-2.88-.04-5.21-2.37-5.24-5.24V7.25A5.31 5.31 0 0 1 7.23 2h17.5a5.3 5.3 0 0 1 5.25 5.24v17.51zM12.2 9.57a1.07 1.07 0 0 0-.95-.63H7.84c-.17 0-.32.07-.42.19-.05.08-.07.17-.07.27s.03.19.08.27 2.28 3.93 2.28 3.93l-3.58 6.36c-.05.07-.08.16-.08.25s.03.18.08.26c.09.14.25.23.42.23h3.39c.41-.03.76-.29.91-.65 3.49-6.17 3.6-6.37 3.6-6.37l-2.28-4.05zm13.21-5.25H22c-.41.03-.75.29-.9.64-7.22 12.89-7.47 13.31-7.47 13.31l4.78 8.77c.16.38.53.64.95.65h3.38c.17 0 .32-.08.41-.21.05-.07.08-.16.08-.26s-.03-.18-.08-.26-4.74-8.71-4.74-8.71l7.42-13.18c.05-.07.07-.16.07-.25s-.03-.18-.07-.26a.41.41 0 0 0-.36-.21h-.06z"] },
543
+ "SocialBlockYoutube": { "viewBox": "0 0 32 32", "paths": ["M30.01 24.75A5.3 5.3 0 0 1 24.77 30H7.24a5.3 5.3 0 0 1-5.25-5.24V7.24C2.03 4.36 4.36 2.03 7.23 2h17.5a5.3 5.3 0 0 1 5.25 5.24v17.51H30Zm-4.33-8.48a2.55 2.55 0 0 0-2.11-1.97h-.01c-1.94-.2-4.19-.31-6.47-.31h-1.15.06c-.37 0-.8-.01-1.23-.01-2.2 0-4.38.1-6.53.31l.27-.02c-1.06.14-1.9.94-2.12 1.96v.02c-.25 1.21-.39 2.6-.39 4.03 0 .25 0 .5.01.75v-.04c-.01.24-.02.51-.02.79 0 1.4.14 2.76.41 4.08l-.02-.13a2.57 2.57 0 0 0 2.11 1.97h.01c1.85.18 4 .28 6.18.28.46 0 .92 0 1.38-.01h-.07.84c2.35 0 4.67-.12 6.95-.35l-.29.02c1.05-.16 1.89-.94 2.12-1.96v-.02c.25-1.19.39-2.56.39-3.96 0-.27 0-.55-.02-.82v.04c.01-.26.02-.55.02-.86 0-1.35-.13-2.68-.37-3.96l.02.13v.02ZM11.7 17.62h-1.46v7.7H8.89v-7.7H7.46v-1.27h4.24zm2.18-13.89h-1.35l-.93 3.55-.98-3.55H9.19c.28.84.58 1.68.86 2.51.28.76.57 1.72.8 2.71l.03.18v3.68h1.35V9.14l1.64-5.41Zm1.46 21.61h-1.22v-.72c-.32.45-.81.76-1.38.82s-.06 0-.09 0c-.32 0-.59-.22-.67-.51a2.7 2.7 0 0 1-.12-.82v-5.45h1.21v4.91c0 .07-.01.15-.01.23s0 .16.01.24c0 .15.12.27.27.27h.01c.25 0 .49-.18.76-.56v-5.09h1.23v6.69h.01Zm2.19-17.1v-.18c0-.52-.15-1-.4-1.41-.32-.42-.82-.69-1.39-.69h-.11c-.55 0-1.04.28-1.34.7-.27.42-.43.92-.43 1.46v2.68c0 .52.15 1 .4 1.41.33.42.84.69 1.42.69s1.09-.27 1.42-.7c.25-.4.4-.88.4-1.4v-.19zm-1.23 2.6c0 .62-.19.93-.58.93-.41 0-.58-.31-.58-.93V8.01c0-.63.18-.95.58-.95s.58.33.58.95zm3.65 12.5v.21c0 .4-.05.78-.15 1.15v-.03c-.08.44-.45.77-.91.77h-.06c-.52-.05-.97-.33-1.25-.74s0 .66 0 .66h-1.22v-9h1.23v2.95c.28-.41.73-.68 1.25-.72s.03 0 .04 0c.46 0 .84.33.93.76.09.34.14.72.14 1.12v2.88h-.01Zm-1.21-2.77c0-.6-.18-.91-.53-.91-.24.02-.45.13-.6.3v4.07c.15.17.36.28.6.3.35 0 .53-.3.53-.9v-2.85Zm3.3-7.76V6.06h-1.23v5.16c-.28.39-.53.56-.76.56h-.01a.29.29 0 0 1-.29-.29s0-.01 0-.01c0-.07-.01-.15-.01-.23s0-.16.01-.24 0-4.95 0-4.95h-1.22v5.45c0 .3.04.59.13.87v-.02c.11.29.39.49.71.49h.07a2.02 2.02 0 0 0 1.4-.81s0 .78 0 .78h1.21Zm2.49 10.39c0 .12.01.25.01.39s0 .27-.02.41v-.02c-.04.27-.14.52-.28.73-.31.43-.81.72-1.38.72h-.18c-.57 0-1.08-.27-1.39-.7-.25-.4-.4-.87-.4-1.38v-2.73c0-.51.15-.98.4-1.38.33-.42.84-.69 1.41-.69h.13c.56 0 1.05.27 1.35.7.25.4.4.88.4 1.4v1.56h-2.46v1.21c0 .63.19.93.63.93h.01c.27 0 .49-.2.53-.46v-.82h1.25v.14Zm-1.22-2.01v-.63c0-.63-.19-.93-.6-.93s-.6.31-.6.93v.63h1.21Z"] },
544
+ "SocialBlockYoutubeplay": { "viewBox": "0 0 32 32", "paths": ["M29.49 22.78c-.3 1.49-1.5 2.63-3 2.82h-.02c-2.63.26-5.69.41-8.78.41-.59 0-1.18 0-1.77-.02h.09c-.53.01-1.15.02-1.77.02-3.07 0-6.1-.15-9.1-.43l.38.03a3.59 3.59 0 0 1-3.02-2.8v-.02c-.31-1.7-.49-3.65-.49-5.64 0-.4 0-.8.02-1.2v.06c-.02-.36-.03-.79-.03-1.21 0-1.97.19-3.9.55-5.76l-.03.19a3.56 3.56 0 0 1 3-2.83h.02c2.61-.26 5.64-.41 8.71-.41.62 0 1.24 0 1.85.02h-.09c.53-.01 1.15-.02 1.77-.02 3.07 0 6.1.15 9.1.43l-.38-.03c1.5.22 2.69 1.35 2.99 2.81v.02c.33 1.69.51 3.63.51 5.62 0 .41 0 .82-.02 1.22V16c.02.37.03.8.03 1.24 0 1.96-.19 3.87-.54 5.72l.03-.19Zm-7.93-7.62-8.04-5.01a1.07 1.07 0 0 0-1.02 0c-.28.18-.46.48-.47.83v10c0 .37.2.7.5.88.14.08.31.12.48.12h.03c.18 0 .36-.06.5-.16s7.96-4.99 7.96-4.99c.28-.18.47-.49.47-.84v-.03a.99.99 0 0 0-.42-.8Z"] },
545
+ "SocialFacebook": { "viewBox": "0 0 32 32", "paths": ["M18.17 30V17.24h4.28l.65-4.99h-4.93V9.08c0-1.44.4-2.4 2.48-2.4h2.63V2.2c-.47-.06-2.04-.2-3.79-.2-3.8 0-6.4 2.33-6.4 6.57v3.68H8.73v4.99h4.28V30h5.18-.01Z"] },
546
+ "SocialGoogleplus": { "viewBox": "0 0 32 32", "paths": ["M19.31 14.7H10.9v3.06h5.04c-.19 1.31-1.48 3.84-5.04 3.84-3.1 0-5.62-2.51-5.62-5.62s2.51-5.62 5.62-5.62h.08c1.34 0 2.57.52 3.47 1.38s2.42-2.34 2.42-2.34a8.62 8.62 0 0 0-5.88-2.31h-.09c-4.92 0-8.9 3.99-8.9 8.9s3.99 8.9 8.9 8.9c5.14 0 8.55-3.62 8.55-8.72v-.09c0-.49-.05-.98-.13-1.45v.05h-.01ZM30 17.27V14.7h-2.53v-2.55h-2.58v2.55h-2.52v2.57h2.52v2.55h2.55v-2.55z"] },
547
+ "SortAlpAsc": { "viewBox": "0 0 32 32", "paths": ["M13.19 23.74h-2.45V2.88c0-.48-.39-.88-.88-.88H8.11c-.48 0-.88.39-.88.88v20.87h-2.4c-1.15 0-1.43.67-.61 1.48l4.76 4.78 4.79-4.79c.83-.81.56-1.47-.59-1.47Zm3.95 4.29 6.66-8.37h-6.55v-1.91h9.15v1.97l-6.69 8.34h6.79V30h-9.35v-1.97ZM21.09 2H23l5.25 12.25h-2.49l-1.14-2.8h-5.31l-1.11 2.8h-2.44zm2.78 7.6-1.9-4.97-1.93 4.97h3.82Z"] },
548
+ "SortAlpDesc": { "viewBox": "0 0 32 32", "paths": ["M13.19 23.74h-2.41V2.88c0-.48-.39-.88-.88-.88H8.15c-.48 0-.88.39-.88.88v20.87H4.84c-1.15 0-1.43.67-.61 1.48l4.8 4.78 4.79-4.79c.8-.81.53-1.47-.63-1.47Zm3.96-11.45 6.66-8.37h-6.55V2h9.15v1.99l-6.7 8.34h6.83v1.92h-9.39zm3.95 5.46h1.89L28.24 30h-2.47l-1.14-2.8h-5.32l-1.1 2.8h-2.44zm2.76 7.58-1.88-4.95-1.92 4.98z"] },
549
+ "SortAmtAsc": { "viewBox": "0 0 32 32", "paths": ["M12.31 23.74H9.88V2.88C9.88 2.4 9.49 2 9 2H7.25c-.48 0-.88.39-.88.88v20.87H3.96c-1.15 0-1.43.67-.61 1.48l4.78 4.78 4.79-4.79c.82-.81.54-1.47-.6-1.47Zm16.81 1.01v3.5h-10.5v-3.5zm-1.75-7v3.5h-8.75v-3.5zm-1.75-6.99v3.5h-7v-3.5zm-1.75-7v3.5h-5.25v-3.5z"] },
550
+ "SortAmtDesc": { "viewBox": "0 0 32 32", "paths": ["M12.3 23.75H9.87V2.88c0-.48-.39-.88-.88-.88H7.24c-.48 0-.88.39-.88.88v20.88H3.95c-1.15 0-1.43.67-.61 1.48l4.77 4.77 4.79-4.79c.82-.8.55-1.46-.6-1.46Zm6.32-16.48v-3.5h10.5v3.5zm0 6.99v-3.5h8.75v3.5zm0 7v-3.5h7v3.5zm0 6.99v-3.5h5.25v3.5z"] },
551
+ "SortNumAsc": { "viewBox": "0 0 32 32", "paths": ["M14.05 23.74h-2.43V2.88c0-.48-.39-.88-.88-.88H8.99c-.48 0-.88.39-.88.88v20.87H5.7c-1.15 0-1.43.67-.61 1.48l4.78 4.78 4.79-4.79c.82-.81.54-1.47-.6-1.47Zm7.74-19.21-2.42 2-1.21-1.44L21.98 2h1.89v12.25h-2.08V4.54Zm-1.1 25.46 3.07-4.44c-.18.08-.39.14-.6.17h-.01c-.2.03-.43.05-.66.05h-.02c-.53 0-1.03-.11-1.48-.31h.02a3.8 3.8 0 0 1-1.22-.8 3.8 3.8 0 0 1-.81-1.19v-.02c-.22-.45-.34-.97-.35-1.52s0-.05 0-.08c0-.61.13-1.18.35-1.7v.03c.2-.51.5-.95.86-1.32.39-.37.84-.67 1.35-.87h.03c.46-.16.98-.25 1.53-.25h.26H23h.05c.61 0 1.19.12 1.73.33h-.03c.54.2 1 .5 1.39.87.76.72 1.23 1.74 1.23 2.87v.1c0 .63-.12 1.24-.34 1.8v-.03c-.12.35-.25.64-.39.91l.02-.04c-.15.28-.32.57-.52.88l-3 4.58h-2.46Zm4.62-8.2c0-.32-.06-.62-.16-.89v.02a2.25 2.25 0 0 0-1.17-1.27h-.01c-.28-.14-.6-.22-.95-.22h-.1c-.62 0-1.17.26-1.57.67-.39.43-.63 1-.63 1.63v.16c0 .32.06.63.16.91v-.02c.1.29.26.53.46.74.2.2.44.36.7.48h.01c.26.11.56.18.88.18.34 0 .67-.07.97-.2h-.02c.57-.21 1.01-.66 1.22-1.21.12-.3.2-.62.21-.96Z"] },
552
+ "SortNumDesc": { "viewBox": "0 0 32 32", "paths": ["M14.05 23.74h-2.42V2.88c0-.48-.39-.88-.88-.88H9c-.48 0-.88.39-.88.88v20.87H5.7c-1.15 0-1.43.67-.61 1.48l4.79 4.78 4.79-4.79c.81-.81.53-1.47-.61-1.47Zm7.74-3.47-2.42 1.99-1.22-1.43 3.82-3.08h1.91V30h-2.09v-9.72Zm-1.11-6.03 3.07-4.38c-.18.08-.39.14-.6.17h-.01c-.2.03-.43.05-.66.05h-.02c-.53 0-1.03-.11-1.48-.31H21a3.8 3.8 0 0 1-1.22-.8 3.8 3.8 0 0 1-.81-1.19v-.02a3.7 3.7 0 0 1-.33-1.55v-.07c0-.61.13-1.18.35-1.7v.03c.2-.51.5-.95.86-1.32.39-.36.86-.64 1.38-.81h.03c.51-.21 1.11-.32 1.73-.32h.07c.61 0 1.19.12 1.73.33h-.03c.54.2 1 .5 1.39.87.76.72 1.23 1.74 1.23 2.87v.1c0 .63-.12 1.24-.34 1.8v-.03c-.12.35-.25.64-.39.91l.02-.04c-.15.28-.32.57-.52.88l-3.01 4.57h-2.47Zm4.62-8.2c0-.32-.06-.62-.16-.89v.02a2.25 2.25 0 0 0-1.17-1.27h-.01c-.24-.1-.52-.16-.81-.16h-.23c-.62 0-1.17.26-1.57.67-.39.43-.63 1-.63 1.63v.16c0 .32.06.63.16.91v-.02c.1.29.26.53.46.74.2.2.44.36.7.48h.01c.26.11.56.18.88.18.35-.01.67-.1.97-.23h-.02c.57-.21 1.01-.66 1.22-1.21.12-.3.19-.63.2-.97s0-.02 0-.02Z"] },
553
+ "SortTable": { "viewBox": "0 0 32 32", "paths": ["M29.38 21.96a1.147 1.147 0 0 0-1.617 0l-3.85 3.852V5.714a1.143 1.143 0 0 0-2.286 0v20.099l-3.853-3.852a1.144 1.144 0 0 0-1.615 1.617l5.803 5.802a1.143 1.143 0 0 0 1.616 0l5.802-5.802a1.144 1.144 0 0 0 0-1.617M15.84 8.422 10.039 2.62a1.145 1.145 0 0 0-1.616 0L2.62 8.422a1.144 1.144 0 0 0 1.617 1.617l3.85-3.851v20.098a1.143 1.143 0 0 0 2.286 0V6.187l3.853 3.852a1.14 1.14 0 0 0 1.616-.001 1.14 1.14 0 0 0-.001-1.616"] },
554
+ "SortTableAsc": { "viewBox": "0 0 32 32", "paths": ["m17.04 3.3 7.64 7.23a1.5 1.5 0 0 1-2.06 2.18l-5.1-4.83.05 19.73c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5l-.05-19.75-5.12 4.85a1.5 1.5 0 0 1-2.06-2.18l7.64-7.23c.12-.11.48-.42.99-.42.47 0 .97.3 1.08.42Z"] },
555
+ "SortTableAscNew": { "viewBox": "0 0 32 32", "paths": ["M22.61 9.566 16.81 3.764c-.43-.43-1.188-.43-1.618 0L9.39 9.566a1.142 1.142 0 1 0 1.617 1.616l3.85-3.852V27.43a1.143 1.143 0 0 0 2.286 0V7.33l3.85 3.852c.224.223.516.335.809.335a1.142 1.142 0 0 0 .809-1.95"] },
556
+ "SortTableDesc": { "viewBox": "0 0 32 32", "paths": ["m14.96 28.7-7.64-7.23a1.5 1.5 0 0 1 2.06-2.18l5.1 4.83-.05-19.73c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5l.05 19.75 5.12-4.85a1.5 1.5 0 0 1 2.06 2.18l-7.64 7.23c-.12.11-.48.42-.99.42-.47 0-.97-.3-1.08-.42Z"] },
557
+ "SortTableDescNew": { "viewBox": "0 0 32 32", "paths": ["M22.126 20.817a1.143 1.143 0 0 0-1.616.001l-3.85 3.852V4.57a1.143 1.143 0 0 0-2.286 0V24.67l-3.852-3.853a1.144 1.144 0 0 0-1.617 1.617l5.803 5.803a1.147 1.147 0 0 0 1.617 0l5.802-5.803a1.14 1.14 0 0 0-.001-1.617"] },
558
+ "SpellCheck": { "viewBox": "0 0 32 32", "paths": ["M3.55 16.03c.86 0 1.55-.7 1.55-1.55v-2.6h2.08v2.6c0 .86.7 1.56 1.56 1.56s1.56-.7 1.56-1.56V4.11c0-.87-.7-1.56-1.55-1.56h-5.2C2.69 2.55 2 3.25 2 4.1v10.37c0 .86.7 1.55 1.55 1.55ZM5.11 5.66h2.07v3.11H5.11zm8.81-3.11h-.02c-.86 0-1.55.7-1.55 1.55v10.37c0 .86.7 1.55 1.55 1.55h5.18c.86 0 1.55-.7 1.55-1.55V4.11c0-.86-.68-1.55-1.53-1.56h-5.19Zm1.55 3.11h2.07v2.07h-2.07zm2.07 7.29h-2.07v-2.11h2.07zm6.74-10.4c-.86 0-1.55.7-1.55 1.55v10.37c0 .86.7 1.55 1.55 1.55h4.15c.86 0 1.56-.7 1.56-1.56s-.7-1.56-1.56-1.56h-2.59V5.61h2.6c.86 0 1.56-.7 1.56-1.56s-.7-1.56-1.56-1.56l-4.15.04ZM8.69 22.71a1.543 1.543 0 0 0 0 2.18l4.15 4.15a1.543 1.543 0 0 0 2.18 0l8.25-8.28c.34-.29.56-.71.56-1.19 0-.86-.7-1.55-1.55-1.55-.48 0-.91.22-1.19.56s-7.2 7.2-7.2 7.2l-3.01-3.06a1.543 1.543 0 0 0-2.18 0Z"] },
559
+ "Sprocket": { "viewBox": "0 0 32 32", "paths": ["M23.2 11.21V7.88c.88-.42 1.48-1.29 1.48-2.31V5.5c0-1.41-1.15-2.56-2.56-2.56h-.07c-1.41 0-2.56 1.15-2.56 2.56v.07c0 1.02.6 1.9 1.46 2.31h.02v3.34c-1.33.2-2.5.74-3.47 1.53h.01L8.37 5.63c.06-.22.1-.47.11-.73 0-1.6-1.29-2.89-2.89-2.89S2.7 3.3 2.7 4.9a2.89 2.89 0 0 0 2.88 2.89c.53 0 1.02-.15 1.44-.4h-.01l8.99 7c-.76 1.13-1.21 2.53-1.21 4.03s.5 3.03 1.35 4.22l-.02-.02-2.78 2.73c-.18-.05-.38-.08-.59-.08-1.31 0-2.37 1.06-2.37 2.37s1.06 2.37 2.37 2.37 2.37-1.06 2.37-2.37v-.03c0-.24-.05-.47-.12-.69v.02l2.67-2.66c1.2.9 2.72 1.45 4.36 1.45 4.03 0 7.3-3.27 7.3-7.3a7.29 7.29 0 0 0-6.06-7.19h-.04Zm-1.12 10.95c-2.07 0-3.75-1.68-3.75-3.75s1.68-3.75 3.75-3.75 3.75 1.68 3.75 3.75c0 2.08-1.68 3.75-3.74 3.75Z"] },
560
+ "StopRecord": { "viewBox": "0 0 32 32", "paths": ["M9.5 15.81v-2.18c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v1.78c0 1.05.18 2.05.5 2.99l-.02-.07 2.53-2.52ZM20.23 5.07C19.61 3.27 17.94 2 15.97 2a4.5 4.5 0 0 0-4.5 4.5v7.32l8.76-8.76Zm2.2 11.22c-.41 2.9-2.68 5.17-5.54 5.57h-.03l-2.81 2.84.47.1v2.25h-2.83l-2.65 2.61c.26.22.59.35.96.35h12.01c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5H17.5V24.8c4.56-.75 8-4.67 8.01-9.38v-1.77c0-.13-.02-.26-.05-.38s-3.02 3.04-3.02 3.04Zm3.4-12.99L3.28 25.85c-.38.37-.62.89-.62 1.46s.24 1.09.62 1.46c.37.38.89.62 1.46.62s1.09-.24 1.46-.62L28.72 6.18c.38-.37.62-.89.62-1.46s-.24-1.09-.62-1.46c-.37-.36-.87-.58-1.43-.58s-1.09.24-1.46.62"] },
561
+ "Strike": { "viewBox": "0 0 32 32", "paths": ["M8.54 13.59h7.39c-3.88-.68-4.1-2.12-4.23-3.2 0-.12-.31-3 3.25-3.61a6.33 6.33 0 0 1 5.31 1.14h-.01c.36.33.84.53 1.38.53a2.01 2.01 0 0 0 1.38-3.47 10.33 10.33 0 0 0-6.59-2.37c-.78 0-1.53.08-2.26.25h.07c-5.34.99-6.81 5.32-6.49 7.99.1 1.02.39 1.95.83 2.78l-.02-.04ZM28 15.32H4a2 2 0 1 0 0 4h16.22a3.12 3.12 0 0 1 .71 2.52v-.02c-.13 1.71-1.46 2.93-3.74 3.44-2.94.65-5.43-1.75-5.45-1.76-.36-.37-.87-.6-1.43-.6-1.1 0-2 .9-2 2 0 .55.22 1.04.58 1.41a11.04 11.04 0 0 0 7.22 3.07h.02c.68 0 1.35-.08 1.99-.23h-.06c4-.88 6.6-3.52 6.85-6.99 0-.15.01-.32.01-.5 0-.82-.12-1.61-.34-2.35v.06h3.41c1.1 0 2-.9 2-2s-.9-2-2-2v-.05Z"] },
562
+ "Styles": { "viewBox": "0 0 32 32", "paths": ["M2.56 28.02c.19-.13.34-.3.46-.5.37-.59.59-1.27.63-1.97.32-3.24 2.88-5.14 5.24-3.54s2.73 4.61-.07 6.23q-.69.405-1.44.69H7.3c-.89.35-1.82.61-2.77.78h-.09c-.44.09-.89.15-1.34.2h-.09c-.57 0-1.03-.46-1.03-1.03 0-.38.22-.73.55-.91V28Zm10.87-4.99c-.39.4-1.04.4-1.43 0l-2.85-2.88c-.19-.19-.3-.45-.3-.73 0-.57.45-1.03 1.01-1.04.28 0 .55.11.75.31l2.83 2.88a1.037 1.037 0 0 1-.01 1.47Zm-2.41-5.93L24.79 3.26a2.887 2.887 0 0 1 4.03-.62c1.28.94 1.56 2.74.62 4.03-.17.24-.38.44-.61.62L15 21.12z"] },
563
+ "Success": { "viewBox": "0 0 32 32", "paths": ["M27.24 6.78 12.23 21.79l-7.47-7.47A1.619 1.619 0 0 0 2 15.47c0 .45.18.85.47 1.14l8.62 8.61a1.62 1.62 0 0 0 2.28 0L29.53 9.07a1.619 1.619 0 0 0-1.15-2.76c-.45 0-.85.18-1.14.47"] },
564
+ "SwitchDataSetField": { "viewBox": "0 0 32 32", "paths": ["M27.41 30c-2.24 0-3.47 0-4.43-.86-.8-.72-.97-1.63-1-2.99-2.18-.02-3.49-.15-4.49-1.05-1.22-1.1-1.22-2.66-1.22-5.25v-2.68H12.9v1.03c0 4.1-3.41 4.1-5.44 4.1s-5.44 0-5.44-4.1v-4.4c0-4.1 3.41-4.1 5.44-4.1s5.44 0 5.44 4.1v1.03h3.37v-2.68c0-2.59 0-4.15 1.22-5.25 1-.9 2.32-1.03 4.49-1.05.04-1.35.2-2.27 1-2.99C23.94 2 25.17 2 27.41 2c.56 0 1.04 0 1.46.01.64.02 1.15.55 1.13 1.2-.02.64-.59 1.11-1.2 1.13-.4-.01-.87-.02-1.39-.01-1.49 0-2.57 0-2.87.26-.24.22-.24 1.14-.24 2.42s0 2.2.24 2.42c.3.27 1.38.27 2.87.27.52 0 .99 0 1.39-.01.6 0 1.18.49 1.2 1.13s-.49 1.18-1.13 1.2c-.42.01-.9.01-1.46.01-2.24 0-3.47 0-4.43-.87-.8-.72-.97-1.63-1-2.98-1.55.01-2.52.08-2.93.45-.43.39-.45 1.36-.45 3.51v7.7c0 2.16.02 3.13.45 3.51.41.37 1.38.44 2.93.45.04-1.35.2-2.26 1-2.98.96-.86 2.19-.86 4.43-.86.56 0 1.04 0 1.46.01.64.02 1.15.55 1.13 1.2-.02.64-.59 1.13-1.2 1.13-.4-.01-.87-.02-1.39-.01-1.5 0-2.58 0-2.87.26-.24.22-.24 1.14-.24 2.42s0 2.2.24 2.42c.3.27 1.38.27 2.87.27.52-.01.99 0 1.39-.01h.03c.63 0 1.15.5 1.17 1.13.02.64-.49 1.18-1.13 1.2-.42.01-.9.01-1.46.01ZM7.44 12.03c-2.98 0-3.11.4-3.11 1.77v4.4c0 1.37.13 1.77 3.11 1.77s3.11-.4 3.11-1.77v-4.4c0-1.37-.13-1.77-3.11-1.77"] },
565
+ "Table": { "viewBox": "0 0 32 32", "paths": ["M26.37 4.2H5.63C3.63 4.2 2 5.83 2 7.83v16.34c0 2 1.63 3.63 3.63 3.63h20.74c2 0 3.63-1.63 3.63-3.63V7.83c0-2-1.63-3.63-3.63-3.63m.52 7.26v5.06h-9.33v-5.06zm-12.44 0v5.06H5.11v-5.06h9.33ZM5.64 24.68c-.28 0-.51-.23-.51-.51v-4.54h9.33v5.06H5.63Zm20.74 0h-8.81v-5.06h9.33v4.54c0 .29-.23.52-.52.52"] },
566
+ "Tablet": { "viewBox": "0 0 32 32", "paths": ["m25.77 29.02.07-.09c.55-.59.89-1.38.89-2.25V5.33c0-1.84-1.49-3.32-3.33-3.33H8.59C6.75 2 5.27 3.49 5.26 5.33v21.84c.1 1.59 1.41 2.84 3.01 2.84H23.5c.85 0 1.62-.35 2.18-.9l.08-.09ZM14.6 26.74v-.03a1.419 1.419 0 1 1 1.42 1.42c-.61 0-1.13-.38-1.33-.92-.06-.15-.09-.31-.09-.47M8.59 4.8H23.4c.29 0 .53.24.53.53v18.16H8.06V5.33c0-.29.24-.53.53-.53"] },
567
+ "Tag": { "viewBox": "0 0 32 32", "paths": ["M26.93 1.97h-9.38c-.85 0-1.62.35-2.17.91S2.9 15.39 2.9 15.39c-.56.56-.9 1.33-.9 2.18s.34 1.62.9 2.18l9.37 9.37c.56.56 1.33.9 2.18.9s1.62-.34 2.18-.9L29.08 16.6c.56-.55.91-1.32.91-2.17V5.06c0-1.71-1.38-3.09-3.07-3.09Zm-4.92 10.02a2 2 0 1 1 2-2 2.01 2.01 0 0 1-2 1.95V12Z"] },
568
+ "Tasks": { "viewBox": "0 0 32 32", "paths": ["M29.68 20.52c-1.12-2.26-1.78-4.91-1.78-7.72V5.7c0-.13-.02-.26-.06-.37-.31-1.54-1.65-2.7-3.27-2.7H5.33c-1.61 0-2.96 1.16-3.26 2.68v.02q-.06.165-.06.36v7.09c0 3.74 1.02 7.25 2.81 10.25l-.05-.09c.84 1.4 2.34 2.32 4.06 2.34h16.65v.74c0 .51-.41.91-.91.91H5.33c-.51 0-.91-.41-.91-.91 0-.67-.54-1.21-1.21-1.21S2 25.35 2 26.02c0 1.84 1.49 3.33 3.33 3.33h19.23c1.84 0 3.33-1.49 3.33-3.33V25c.68-.27 1.23-.74 1.6-1.33.31-.51.5-1.11.5-1.75 0-.52-.12-1-.33-1.44v.02Zm-22.82 1.2c-1.53-2.56-2.43-5.65-2.43-8.95v-1.62h21.05v1.63c0 3.2.75 6.23 2.09 8.92l-.05-.12c.07.12.11.27.11.43s-.04.3-.11.43c-.16.26-.45.43-.78.43H8.87c-.85 0-1.6-.46-2.01-1.14s0-.01 0-.01"] },
569
+ "Test": { "viewBox": "0 0 32 32", "paths": ["M29.73 27.46c.17-.34.27-.74.27-1.17 0-.62-.21-1.19-.57-1.65s-8.04-9.72-8.04-9.72V6.27h.54a1.62 1.62 0 1 0 0-3.24H10.04a1.62 1.62 0 1 0 0 3.24h.54v8.65l-8.04 9.73a2.701 2.701 0 0 0 2.16 4.32h22.61c1.06 0 1.97-.61 2.41-1.5v-.02Zm-12.66-2.81c0-.6.48-1.08 1.08-1.08h5.41c.6 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08h-5.41c-.6 0-1.08-.48-1.08-1.08m-3.61-8.16c.23-.28.37-.64.37-1.03V6.28h4.32v9.24c0 .39.14.75.37 1.03s3.17 3.78 3.17 3.78h-11.4z"] },
570
+ "Text": { "viewBox": "0 0 32 32", "paths": ["M25.33 2H6.67c-1.1 0-2 .9-2 2s.9 2 2 2H14v22c0 1.1.9 2 2 2s2-.9 2-2V6h7.33c1.1 0 2-.9 2-2s-.9-2-2-2"] },
571
+ "TextBodyExpanded": { "viewBox": "0 0 32 32", "paths": ["M5 23.29h3.43v3.43H5z", "M8.43 27.86H5c-.63 0-1.14-.51-1.14-1.14v-3.43c0-.63.51-1.14 1.14-1.14h3.43c.63 0 1.14.51 1.14 1.14v3.43c0 .63-.51 1.14-1.14 1.14m-2.29-2.29h1.14v-1.14H6.14zM23.29 23.29h3.43v3.43h-3.43z", "M26.71 27.86h-3.43c-.63 0-1.14-.51-1.14-1.14v-3.43c0-.63.51-1.14 1.14-1.14h3.43c.63 0 1.14.51 1.14 1.14v3.43c0 .63-.51 1.14-1.14 1.14m-2.28-2.29h1.14v-1.14h-1.14zM14.14 23.29h3.43v3.43h-3.43z", "M17.57 27.86h-3.43c-.63 0-1.14-.51-1.14-1.14v-3.43c0-.63.51-1.14 1.14-1.14h3.43c.63 0 1.14.51 1.14 1.14v3.43c0 .63-.51 1.14-1.14 1.14m-2.28-2.29h1.14v-1.14h-1.14zM14.14 14.14h3.43v3.43h-3.43z", "M17.57 18.71h-3.43c-.63 0-1.14-.51-1.14-1.14v-3.43c0-.63.51-1.14 1.14-1.14h3.43c.63 0 1.14.51 1.14 1.14v3.43c0 .63-.51 1.14-1.14 1.14m-2.28-2.28h1.14v-1.14h-1.14zM23.29 14.14h3.43v3.43h-3.43z", "M26.71 18.71h-3.43c-.63 0-1.14-.51-1.14-1.14v-3.43c0-.63.51-1.14 1.14-1.14h3.43c.63 0 1.14.51 1.14 1.14v3.43c0 .63-.51 1.14-1.14 1.14m-2.28-2.28h1.14v-1.14h-1.14zM23.29 5h3.43v3.43h-3.43z", "M26.71 9.57h-3.43c-.63 0-1.14-.51-1.14-1.14V5c0-.63.51-1.14 1.14-1.14h3.43c.63 0 1.14.51 1.14 1.14v3.43c0 .63-.51 1.14-1.14 1.14m-2.28-2.28h1.14V6.15h-1.14z"] },
572
+ "TextColor": { "viewBox": "0 0 32 32", "paths": ["M6.22 29.9a1.608 1.608 0 0 0 2.07-.96s2.01-5.45 2.01-5.45h11.35l2.01 5.44c.23.63.83 1.08 1.54 1.08a1.63 1.63 0 0 0 1.53-2.19S17.53 2.9 17.53 2.9v-.06l-.1-.15-.08-.14-.1-.13-.1-.12-.18-.08-.11-.09-.16-.09-.13-.06h-1.26l-.12.06-.16.09-.03.09-.14.12-.1.11-.1.13-.08.14-.08.15v.06L5.24 27.82a1.608 1.608 0 0 0 .96 2.07h.01ZM16 8.1l4.47 12.11h-8.94z"] },
573
+ "TextDataType": { "viewBox": "0 0 32 32", "paths": ["M7.77 11.33a.87.87 0 0 0-.35-.46.95.95 0 0 0-.53-.17c-.2-.03-.39.03-.56.14s-.3.28-.38.49l-3.91 9.36c-.03.11-.04.2-.04.3 0 .22.07.41.2.57.14.16.35.24.64.24.18 0 .34-.05.49-.17.15-.11.27-.27.34-.46l.81-1.91h4.67l.81 1.89c.08.2.2.36.35.47.16.12.32.18.51.18.22 0 .42-.08.6-.25s.28-.39.28-.67c0-.12-.03-.24-.08-.38l-3.87-9.17Zm-2.52 6.13 1.56-3.67 1.58 3.67H5.26ZM19.68 13.74c-.57-.37-1.23-.55-1.96-.55-.37 0-.71.06-1.04.18q-.495.195-.87.48c-.23.17-.41.35-.55.53v-3.29c0-.27-.08-.5-.27-.68-.17-.18-.39-.28-.67-.28s-.5.1-.67.28-.27.41-.27.68v9.84c0 .28.1.51.27.69s.4.25.67.25.5-.1.67-.27c.18-.18.27-.41.27-.68v-.11a3.786 3.786 0 0 0 1.33.85c.37.14.76.2 1.18.2.71 0 1.35-.18 1.92-.55s1.02-.88 1.36-1.53c.34-.66.51-1.41.51-2.27s-.17-1.61-.51-2.26-.81-1.15-1.38-1.53v.02Zm-.2 5.12c-.19.4-.46.72-.8.95s-.74.34-1.2.34-.87-.11-1.21-.34c-.35-.23-.62-.54-.81-.95-.19-.39-.29-.85-.29-1.34s.1-.95.29-1.35c.19-.38.46-.7.81-.93.34-.23.74-.34 1.21-.34s.86.11 1.2.34c.33.23.6.54.8.93.19.39.3.85.3 1.35s-.11.94-.3 1.34M29.78 19.82c-.15-.18-.36-.26-.63-.26-.23 0-.4.04-.52.14-.11.1-.25.18-.39.26-.12.06-.28.11-.47.14-.18.04-.41.04-.67.04-.47 0-.88-.11-1.24-.34s-.64-.54-.85-.94c-.2-.39-.31-.84-.31-1.34s.1-.96.3-1.36.48-.7.86-.94c.37-.23.82-.34 1.36-.34.11 0 .26.02.48.05.21.03.38.09.47.15.11.06.21.13.3.2s.18.13.29.18c.11.04.25.07.42.07.24 0 .42-.09.55-.27.12-.18.18-.38.18-.59 0-.31-.12-.59-.37-.81-.25-.23-.59-.4-1.03-.53s-.96-.18-1.56-.18c-.81 0-1.51.18-2.14.56-.62.37-1.1.88-1.45 1.53-.35.66-.53 1.41-.53 2.27s.17 1.55.49 2.21c.33.66.8 1.17 1.4 1.56.6.38 1.32.57 2.14.57.55 0 1.07-.07 1.54-.19.47-.13.86-.31 1.15-.52s.44-.46.44-.71-.07-.46-.22-.63Z"] },
574
+ "TextSnippet": { "viewBox": "0 0 32 32", "paths": ["M17.62 2h10.77c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08H17.62c-.59 0-1.08-.48-1.08-1.08S17.02 2 17.62 2m0 6.46h10.77c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08H17.62c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08m0 6.46h10.77c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08H17.62c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08m-14 6.46h24.77c.59 0 1.08.48 1.08 1.08s-.48 1.08-1.08 1.08H3.62c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08m0 6.46h24.77c.59 0 1.08.48 1.08 1.08S28.99 30 28.39 30H3.62c-.59 0-1.08-.48-1.08-1.08s.48-1.08 1.08-1.08M12.23 2H3.62c-.59 0-1.08.48-1.08 1.08 0 .59.48 1.08 1.08 1.08h3.23v11.85c0 .59.48 1.08 1.08 1.08s1.08-.48 1.08-1.08V4.15h3.23c.59 0 1.08-.48 1.08-1.08s-.48-1.08-1.08-1.08Z"] },
575
+ "ThumbsDown": { "viewBox": "0 0 32 32", "paths": ["M26.79 2.62h1.07c1.18 0 2.14.96 2.14 2.14V17.6c0 1.18-.96 2.14-2.14 2.14h-1.07c-1.18 0-2.14-.96-2.14-2.14V4.76c0-1.18.96-2.14 2.14-2.14M19.3 4.76c.59 0 1.07.48 1.07 1.07V17.6l-1.96 8.8c-.11.48-.54.83-1.04.83h-1.28c-.59 0-1.07-.48-1.07-1.07V17.6H6.19c-1.18 0-2.14-.96-2.14-2.14a2.142 2.142 0 0 1 2.88-2.01h-.01v-.17a2.16 2.16 0 0 1-1.79-2.12C5.13 9.97 6.1 9 7.29 9c.13 0 .25.01.38.03h-.01v-.16a2.14 2.14 0 0 1 .71-4.12h10.94Zm0-2.14H8.36c-2.34.03-4.24 1.93-4.24 4.28 0 .45.07.88.2 1.29v-.03c-.79.77-1.27 1.85-1.27 3.03 0 .45.07.88.19 1.28v-.03c-.78.77-1.25 1.84-1.25 3.02 0 2.34 1.88 4.25 4.22 4.28h6.66v6.42c0 1.77 1.44 3.21 3.21 3.21h1.29c1.53 0 2.8-1.07 3.13-2.49v-.02l2.01-8.79c0-.07.01-.15.01-.24s0-.16-.01-.25 0-11.76 0-11.76c0-1.77-1.44-3.21-3.21-3.21Z"] },
576
+ "ThumbsUp": { "viewBox": "0 0 32 32", "paths": ["M4.14 12.26h1.07c1.18 0 2.14.96 2.14 2.14v12.84c0 1.18-.96 2.14-2.14 2.14H4.14c-1.18 0-2.14-.96-2.14-2.14V14.4c0-1.18.96-2.14 2.14-2.14m11.77-7.5c.59 0 1.07.48 1.07 1.07v8.56h8.83c1.18 0 2.14.96 2.14 2.14a2.142 2.142 0 0 1-2.88 2.01h.01v.17c1.02.18 1.79 1.06 1.79 2.12 0 1.19-.96 2.15-2.15 2.15-.13 0-.25-.01-.38-.03h.01v.16a2.14 2.14 0 0 1-.71 4.12H12.7c-.59 0-1.07-.48-1.07-1.07V14.39l1.96-8.79c.11-.48.54-.83 1.04-.83h1.28Zm0-2.14h-1.28c-1.53 0-2.8 1.07-3.13 2.49v.02l-2 8.79c0 .07-.01.15-.01.23s0 .16.01.24 0 11.76 0 11.76c0 1.77 1.44 3.21 3.21 3.21h10.93a4.28 4.28 0 0 0 4.23-4.28c0-.45-.07-.88-.2-1.28v.03c.79-.77 1.27-1.85 1.27-3.03 0-.45-.07-.88-.19-1.28v.03c.78-.77 1.26-1.85 1.26-3.03a4.28 4.28 0 0 0-4.23-4.28h-6.66V5.82c0-1.77-1.44-3.21-3.21-3.21Z"] },
577
+ "Ticket": { "viewBox": "0 0 32 32", "paths": ["m22.59 6.2-4.25-4.25-2.13 2.12-9.03 9.04 2.66 2.65-1.02 1.02-2.71-2.61-3.68 3.68c-.27.27-.44.65-.44 1.06s.17.79.44 1.06l9.53 9.64c.27.27.65.44 1.06.44s.79-.17 1.06-.44l.58-.58.48-.47 2.65-2.66-2.65-2.65 1.02-1.02 2.66 2.66 9.03-9.04 2.13-2.12-2.1-2.21-2.12-2.12c-.4.38-.95.62-1.55.62-1.24 0-2.25-1.01-2.25-2.25 0-.6.23-1.14.62-1.55Zm-9.04 15.37-3.19-3.19 1.02-1.02 3.19 3.19zm7.09-8.2-1.02 1.02.24 1.42v.07a.47.47 0 0 1-.68.42s-1.27-.67-1.27-.67l-1.27.67s-.1.02-.15.02-.1 0-.15-.02a.47.47 0 0 1-.39-.45v-.08l.25-1.41-1.02-1.02a.43.43 0 0 1-.13-.26s0-.05 0-.07c0-.24.17-.43.4-.47l1.41-.2.63-1.17c.04-.07.1-.13.17-.17a.5.5 0 0 1 .25-.07c.18 0 .33.1.42.24s.64 1.28.64 1.28l1.42.22c.11.01.2.06.27.13a.463.463 0 0 1-.01.63v-.06Z"] },
578
+ "Time": { "viewBox": "0 0 32 32", "paths": ["M25.86 15.55c0-5.44-4.41-9.84-9.84-9.84s-9.85 4.41-9.85 9.84 4.41 9.84 9.84 9.84 9.84-4.41 9.84-9.84ZM17 9.65v5.9h3.94c.5.05.89.47.89.98s-.39.93-.89.98h-4.93c-.55 0-.99-.44-.99-.99V9.64c.05-.5.47-.89.98-.89s.93.39.98.89Zm6.67-6.72c-.22-.13-.48-.21-.77-.21-.53 0-1 .28-1.26.71-.13.22-.21.49-.21.77 0 .53.28.99.7 1.25 2.31 1.43 4.07 3.56 4.99 6.09l.03.08a1.477 1.477 0 0 0 2.85-.55c0-.16-.02-.31-.07-.45-1.18-3.25-3.37-5.91-6.19-7.65l-.06-.04ZM9.89 5.45a1.47 1.47 0 0 0 .49-2.03 1.5 1.5 0 0 0-1.27-.7c-.28 0-.55.08-.77.21-2.89 1.78-5.09 4.44-6.24 7.61l-.03.1c-.05.15-.08.31-.08.49 0 .82.66 1.48 1.48 1.48.64 0 1.19-.41 1.39-.98.95-2.62 2.71-4.76 4.97-6.15l.05-.03ZM25.7 25.24a1.477 1.477 0 1 0-2.64 1.33s.99 1.91.99 1.91a1.477 1.477 0 1 0 2.64-1.33s-.99-1.91-.99-1.91m-17.4-.66c-.19-.1-.42-.16-.66-.16-.58 0-1.07.33-1.32.81s-.99 1.97-.99 1.97a1.477 1.477 0 0 0 1.39 1.98c.53 0 .99-.28 1.25-.69s.99-1.97.99-1.97c.09-.18.14-.4.14-.63 0-.57-.32-1.06-.79-1.31Z"] },
579
+ "Translate": { "viewBox": "0 0 32 32", "paths": ["M16.67 19.77c-.19 0-.36-.03-.53-.1-2.21-.72-4-1.66-5.66-2.96-.24-.2-.45-.36-.63-.52-.21.18-.41.34-.63.51-1.64 1.25-3.32 2.14-5.59 2.98-.16.05-.31.08-.46.08-.51 0-.91-.29-1.09-.78a1.2 1.2 0 0 1-.08-.41c0-.46.3-.88.8-1.07 1.51-.51 3.33-1.24 5.39-2.85.02-.02.04-.03.05-.04-1.38-1.6-2.42-3.52-3.1-5.74H2.95c-.55 0-.93-.46-.93-1.11s.38-1.05.93-1.05h5.69V5.09c0-.59.48-1.03 1.14-1.03s1.15.43 1.15 1.03v1.62h5.97c.54 0 .93.45.93 1.05s-.39 1.11-.93 1.11h-2.3c-.68 2.21-1.74 4.14-3.15 5.74.16.13.32.25.48.37 1.38 1 3.16 1.89 5.04 2.48.5.16.81.57.81 1.06 0 .14-.03.29-.09.43-.23.72-.8.8-1.04.8h.02ZM7.46 8.88c.53 1.5 1.35 2.93 2.4 4.17 1.05-1.23 1.86-2.67 2.35-4.17zm21.5 19.05c-.22 0-.42-.06-.62-.21-.18-.14-.31-.32-.41-.55l-1.34-3.15h-6.83l-1.32 3.15c-.1.25-.23.44-.41.56-.16.13-.38.2-.6.2-.34 0-.59-.09-.76-.28-.16-.19-.23-.42-.23-.71 0-.13.02-.24.06-.36l5.67-13.68c.08-.25.22-.45.43-.58.18-.13.38-.19.6-.19.29 0 .5.06.7.21.2.13.34.31.43.55l5.59 13.49q.09.195.09.45c0 .33-.11.6-.33.79a1 1 0 0 1-.72.3h.02Zm-3.26-6.06-2.53-6.01-2.52 6.01z"] },
580
+ "Trophy": { "viewBox": "0 0 32 32", "paths": ["M28.84 6.67h-5.06V4.72c0-.64-.52-1.16-1.16-1.16H9.39c-.64 0-1.16.52-1.16 1.16v1.95H3.16C2.52 6.67 2 7.19 2 7.83v2.72c0 1.75 1.09 3.5 3.01 4.89 1.5 1.08 3.32 1.81 5.3 2.03h.05c.83 1.45 1.94 2.65 3.27 3.56l.04.02v3.5h-2.33c-1.75 0-3.11 1.01-3.11 2.72v.59c0 .32.27.58.59.58H23.2c.32 0 .58-.26.59-.58v-.59c0-1.75-1.4-2.72-3.11-2.72h-2.33v-3.5c1.36-.93 2.48-2.13 3.28-3.53l.03-.05c2.03-.22 3.85-.95 5.38-2.05l-.03.02c1.91-1.37 3.01-3.16 3.01-4.89V7.83c0-.65-.52-1.16-1.15-1.16ZM6.83 12.93c-.88-.5-1.53-1.35-1.75-2.35v-.8h3.15c.04 1.51.27 2.95.65 4.32l-.03-.12c-.77-.27-1.44-.62-2.04-1.06l.02.02Zm20.06-2.37c0 .78-.87 1.75-1.75 2.37-.58.42-1.26.77-1.97 1.02l-.06.02c.36-1.25.58-2.69.62-4.17v-.02h3.12z"] },
581
+ "Undo": { "viewBox": "0 0 32 32", "paths": ["M29.94 20.29c-1.75-5.58-5.96-9.44-11.08-10.08s-10.26 2-13.35 6.5v-5.43c0-.97-.78-1.75-1.75-1.75s-1.75.78-1.75 1.75v9.39c0 .49.21.93.53 1.25.32.31.75.5 1.22.5h9.44c.97 0 1.75-.78 1.75-1.75s-.78-1.75-1.75-1.75H8.26c2.31-3.59 6.32-5.72 10.17-5.25 3.85.46 6.86 3.39 8.16 7.63.24.69.89 1.18 1.66 1.18a1.746 1.746 0 0 0 1.68-2.23s0 .04 0 .04Z"] },
582
+ "Up": { "viewBox": "0 0 32 32", "paths": ["M15.36 8.56c-.11.06-.21.12-.3.19s-.18.11-.18.11h-.08L2.66 20.46c-.4.32-.66.81-.66 1.36a1.741 1.741 0 0 0 3.05 1.15s10.96-10.43 10.96-10.43l10.95 10.43a1.741 1.741 0 1 0 2.4-2.51S17.22 8.89 17.22 8.89h-.08l-.18-.11c-.09-.08-.19-.15-.29-.22-.09-.03-.2-.06-.31-.07-.1-.03-.21-.05-.32-.06-.12 0-.23.03-.34.06h.01c-.12 0-.23.03-.33.07h.01Z"] },
583
+ "UpCarat": { "viewBox": "0 0 32 32", "paths": ["M27.66 24.26c.64 0 1.23-.26 1.65-.69s.68-1.02.68-1.67-.26-1.24-.68-1.67L17.65 8.43c-.42-.43-1-.69-1.65-.69s-1.23.27-1.65.69L2.68 20.23c-.42.43-.68 1.02-.68 1.67s.26 1.24.68 1.67 1 .69 1.65.69z"] },
584
+ "Upgrade": { "viewBox": "0 0 32 32", "paths": ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2m7.9 13.27c-.43.59-1.24.72-1.83.29a1.3 1.3 0 0 1-.29-.29L17.47 11v13.37c0 1.07-.29 1.5-1.5 1.5s-1.5-.26-1.5-1.5V11l-4.31 4.31a1.338 1.338 0 0 1-2.12 0c-.59-.38-.76-1.16-.38-1.74.1-.15.23-.28.38-.38l6.87-6.87c.58-.59 1.52-.59 2.11-.01l.01.01 6.87 6.87c.58.43.7 1.24.27 1.81q-.12.15-.27.27"] },
585
+ "Upload": { "viewBox": "0 0 32 32", "paths": ["M25.63 16.69c.37-.48.59-1.08.59-1.74v-.03c0-1.68-1.37-3.05-3.05-3.05h-.18c-.68.03-1.29.29-1.77.7a6.747 6.747 0 0 0-13.43.95v.13c0 .42.05.83.13 1.23v-.04h-.77c-.42 0-.83.06-1.23.16h.03c-2.29.56-3.97 2.6-3.97 5.03s1.67 4.47 3.93 5.03h.04c.36.1.77.16 1.19.16h7.05v-5.66h-2.67a.87.87 0 0 1-.57-1.53s3.92-3.92 3.92-3.92c.16-.16.38-.26.62-.26s.46.1.62.26l3.92 3.92a.87.87 0 0 1-.57 1.53h-2.67v5.67h9.05c2.29-.08 4.12-1.95 4.12-4.26s-1.91-4.26-4.26-4.26h-.14l.03-.02Z"] },
586
+ "VerticalMenu": { "viewBox": "0 0 32 32", "paths": ["M16 2c1.93 0 3.5 1.57 3.5 3.5S17.93 9 16 9s-3.5-1.57-3.5-3.5S14.07 2 16 2m0 10.51c1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5-3.5-1.57-3.5-3.5 1.57-3.5 3.5-3.5m0 10.5c1.93 0 3.5 1.57 3.5 3.5s-1.57 3.5-3.5 3.5-3.5-1.57-3.5-3.5 1.57-3.5 3.5-3.5"] },
587
+ "Video": { "viewBox": "0 0 32 32", "paths": ["m29.13 9.52-6.79 4.54c-.11.07-.17.19-.17.32v3.27c0 .13.06.25.17.32l6.79 4.54c.49.3.87 0 .87-.53V10c0-.59-.38-.81-.87-.47ZM18 7.39H3.95A2.084 2.084 0 0 0 2 9.55v12.9c-.04 1.13.83 2.08 1.95 2.15H18c1.15-.04 2.05-.99 2.01-2.15V9.55c.04-1.16-.87-2.11-2.01-2.16"] },
588
+ "VideoFile": { "viewBox": "0 0 32 32", "paths": ["M30.03 10.54a2 2 0 0 0-.12-.35s0-.07 0-.07c-.07-.12-.15-.21-.24-.3L22.15 2.3c-.08-.07-.18-.14-.29-.19s-.08 0-.08 0c-.08-.04-.17-.07-.27-.1s-9.72 0-9.72 0a4.22 4.22 0 0 0-4.22 4.12v3.42c-3.23.68-5.63 3.5-5.63 6.89s2.39 6.21 5.58 6.88h.05v2.94c0 2.21 1.74 3.75 4.22 3.75h14.06c2.48 0 4.22-1.54 4.22-3.75V10.54h-.03ZM6.62 12.93l.98.54 5.63 3.24-2.85 1.63-2.81 1.63-.98.54.04-7.58Zm20.63 13.35c0 .77-.76.98-1.41.98H11.78c-.64 0-1.41-.17-1.41-.98v-2.93c3.23-.68 5.63-3.5 5.63-6.89s-2.39-6.21-5.58-6.88h-.05V6.12c0-.78.63-1.41 1.41-1.41h7.97v5.16c0 1.29 1.05 2.34 2.34 2.34h5.16v14.06Z"] },
589
+ "VideoPlayerSubtitles": { "viewBox": "0 0 32 32", "paths": ["M28.91 4.63H3.09c-.6 0-1.09.49-1.09 1.09v15.31c0 .6.49 1.09 1.09 1.09h6.34v4.86c0 .32.38.5.63.3l6.3-5.15H28.9c.6 0 1.09-.49 1.09-1.09V5.72c0-.6-.49-1.09-1.09-1.09ZM4.44 9.08c0-.19.16-.35.35-.35h7.18c.19 0 .35.16.35.35v1.49c0 .19-.16.35-.35.35H4.79c-.19 0-.35-.16-.35-.35zm13.59 6.93c0 .19-.16.35-.35.35H4.79c-.19 0-.35-.16-.35-.35v-1.49c0-.19.16-.35.35-.35h12.89c.19 0 .35.16.35.35zm9.53 0c0 .19-.16.35-.35.35h-7.17c-.19 0-.35-.16-.35-.35v-1.49c0-.19.16-.35.35-.35h7.18c.19 0 .35.16.35.35v1.49Zm0-5.44c0 .19-.16.35-.35.35H14.32c-.19 0-.35-.16-.35-.35V9.08c0-.19.16-.35.35-.35h12.89c.19 0 .35.16.35.35z"] },
590
+ "View": { "viewBox": "0 0 32 32", "paths": ["M16 12.35c2.02 0 3.65 1.63 3.65 3.65s-1.63 3.65-3.65 3.65-3.65-1.63-3.65-3.65 1.63-3.65 3.65-3.65m13.8 2.73c-1.15-2.4-5.76-7.85-13.73-7.85-6.18 0-11.18 3.18-13.87 7.89 0 0-.2.35-.2.87 0 .42.16.8.16.8 3.98 6.48 9.99 7.97 14.05 7.97 5.72 0 10.89-3.18 13.57-7.9 0 0 .22-.44.22-.85s-.14-.8-.2-.93m-3.6.94c-2.23 3.19-5.99 5.23-10.01 5.23-4.46 0-6.42-1.51-6.42-1.51-1.86-1.1-3.96-3.67-3.99-3.69s0-.06 0-.06c2.23-3.2 5.87-5.25 10.01-5.25h.19c5.43 0 7.24 2.08 10.06 5.05.09.1.16.15.16.17.02.03 0 .06 0 .06"] },
591
+ "ViewDetails": { "viewBox": "0 0 32 32", "paths": ["m29.71 28.56-4.08-4.23a5.71 5.71 0 0 0-4.62-9.05c-3.14 0-5.7 2.56-5.7 5.7s2.55 5.7 5.7 5.7c1.22 0 2.37-.38 3.35-1.08l4.14 4.16c.17.15.38.23.61.23.52.02.91-.33.89-.81 0-.22-.16-.48-.29-.62m-8.68-3.68c-2.14 0-3.87-1.75-3.87-3.88s1.74-3.88 3.88-3.88 3.88 1.75 3.88 3.89-1.75 3.87-3.89 3.87m-7.68.23H5.94c-.93 0-1.69-.77-1.69-1.7V5.95c0-.93.74-1.7 1.69-1.71h13.71c.93 0 1.69.77 1.69 1.7v6.44c0 .54.59.92 1.13.92.73 0 1.11-.46 1.11-.89V5.95c0-2.17-1.76-3.93-3.93-3.94H5.94C3.76 2.01 2 3.77 2 5.95v17.5c0 2.18 1.76 3.94 3.94 3.94h7.41c.79 0 1.33-.34 1.33-1.12 0-.87-.61-1.16-1.33-1.16m6.28-17.3c0-.49-.4-.89-.89-.89H6.85c-.49 0-.89.4-.89.89s.4.89.89.89h11.9c.49 0 .89-.4.89-.89Zm-3.04 5.32c0-.49-.4-.89-.89-.89H6.85c-.49 0-.89.4-.89.89s.4.89.89.89h8.85c.49 0 .89-.4.89-.89m-9.75 4.44c-.49 0-.89.4-.89.89s.4.89.89.89h6.43c.49 0 .89-.4.89-.89s-.4-.89-.89-.89z"] },
592
+ "Warning": { "viewBox": "0 0 32 32", "paths": ["M5.47 28.59h21.07A3.47 3.47 0 0 0 30 25.12c0-.64-.17-1.23-.47-1.75v.02L19 5.14c-.61-1.04-1.73-1.73-3-1.73s-2.39.69-2.99 1.71v.02L2.46 23.39a3.476 3.476 0 0 0 3 5.2ZM16 21.04c1.1 0 2 .89 2 2s-.89 2-2 2-2-.89-2-2a2 2 0 0 1 2-2m-2-9.92s-.01-.1-.01-.15c0-.55.45-1 1-1h2.02c.55 0 1 .45 1 1 0 .05 0 .1-.01.16s-1 6.99-1 6.99c0 .55-.45 1-1 1s-1-.45-1-1z"] },
593
+ "Website": { "viewBox": "0 0 32 32", "paths": ["M25.8 4.8H6.2A4.2 4.2 0 0 0 2 9v14a4.2 4.2 0 0 0 4.2 4.2h19.6A4.2 4.2 0 0 0 30 23V9a4.2 4.2 0 0 0-4.2-4.2M12.27 8.61v-.15c0-.47.38-.86.86-.86h.15c.47 0 .86.38.86.86v.15c0 .47-.38.86-.86.86h-.15a.86.86 0 0 1-.86-.86M9.54 7.6c.47 0 .86.38.86.86v.15c0 .47-.38.86-.86.86h-.15a.86.86 0 0 1-.86-.86v-.15c0-.47.38-.86.86-.86zM4.8 8.74v-.29c0-.47.38-.86.86-.86h.29c.41.06.73.41.73.84v.17c0 .47-.38.86-.86.86h-.17c-.43 0-.78-.31-.84-.72ZM27.2 23c0 .77-.63 1.4-1.4 1.4H6.2c-.77 0-1.4-.63-1.4-1.4V12.27h22.4z"] },
594
+ "Workflows": { "viewBox": "0 0 32 32", "paths": ["M29.24 22.68h-2.13v-4.36c0-1.33-1.08-2.41-2.42-2.42h-7.27v-3.87h.73c1.2 0 2.18-.98 2.18-2.18V5.5c0-1.2-.98-2.18-2.18-2.18h-4.38c-1.2 0-2.18.98-2.18 2.18v4.35c0 1.2.98 2.18 2.18 2.18h.72v3.87H7.25c-1.33 0-2.41 1.08-2.42 2.42v4.36H2.77c-.43.01-.78.37-.78.8 0 .15.04.28.11.4s3.58 4.41 3.58 4.41c.11.24.36.41.64.41s.52-.16.64-.4 3.58-4.41 3.58-4.41a.804.804 0 0 0-.63-1.19H7.74v-3.87H24.2v3.87h-2.1a.807.807 0 0 0-.65 1.19s3.58 4.41 3.58 4.41c.12.24.36.41.64.41s.52-.16.64-.4 3.58-4.41 3.58-4.41a.802.802 0 0 0-.66-1.19ZM14.52 9.12v-2.9h2.9v2.9z"] },
595
+ "XCircle": { "viewBox": "0 0 32 32", "paths": ["M20.43 21.57c-.29 0-.58-.11-.81-.33l-9.14-9.14a1.14 1.14 0 0 1 0-1.62 1.14 1.14 0 0 1 1.62 0l9.14 9.14a1.14 1.14 0 0 1-.81 1.95", "M11.29 21.57c-.29 0-.58-.11-.81-.33a1.14 1.14 0 0 1 0-1.62l9.14-9.14a1.14 1.14 0 0 1 1.62 0c.45.45.45 1.17 0 1.62l-9.14 9.14c-.22.22-.52.33-.81.33", "M15.86 31.86c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16m0-29.72C8.3 2.14 2.15 8.29 2.15 15.85S8.3 29.56 15.86 29.56s13.71-6.15 13.71-13.71S23.42 2.14 15.86 2.14"] },
596
+ "ZoomIn": { "viewBox": "0 0 32 32", "paths": ["M14.42 26.75c2.85 0 5.47-.97 7.55-2.6l-.03.02 5.29 5.34a1.619 1.619 0 0 0 2.76-1.15c0-.45-.18-.85-.47-1.14l-5.33-5.33c1.59-2.06 2.55-4.68 2.55-7.52C26.74 7.54 21.2 2 14.37 2S2 7.55 2 14.38s5.54 12.37 12.37 12.37h.05m0-21.54c5.06 0 9.16 4.1 9.16 9.16s-4.1 9.16-9.16 9.16-9.16-4.1-9.16-9.16 4.1-9.15 9.16-9.16m-4.31 10.76h2.69v2.69c0 .89.72 1.62 1.62 1.62s1.62-.72 1.62-1.62v-2.69h2.69c.89 0 1.62-.72 1.62-1.62s-.72-1.62-1.62-1.62h-2.68V9.99c0-.89-.72-1.62-1.62-1.62s-1.62.72-1.62 1.62v2.69h-2.7c-.89 0-1.62.72-1.62 1.62s.72 1.62 1.62 1.62z"] },
597
+ "ZoomOut": { "viewBox": "0 0 32 32", "paths": ["M14.42 26.75c2.85 0 5.47-.97 7.56-2.6l-.03.02 5.28 5.34a1.619 1.619 0 0 0 2.76-1.15c0-.45-.18-.85-.47-1.14l-5.33-5.33c1.59-2.06 2.55-4.68 2.55-7.52C26.74 7.54 21.2 2 14.37 2S2 7.55 2 14.38s5.54 12.37 12.37 12.37h.05m0-21.55c5.06 0 9.16 4.1 9.16 9.16s-4.1 9.16-9.16 9.16-9.16-4.1-9.16-9.16c.01-5.05 4.11-9.14 9.16-9.15Zm-4.31 10.78h8.62c.89 0 1.62-.72 1.62-1.62s-.72-1.62-1.62-1.62h-8.62c-.89 0-1.62.72-1.62 1.62s.72 1.62 1.62 1.62"] }
598
+ };
599
+
600
+ // src/common-components/Icon.js
601
+ var NATIVE_ICON_NAMES = /* @__PURE__ */ new Set([
602
+ "add",
603
+ "appointment",
604
+ "approvals",
605
+ "artificialIntelligence",
606
+ "artificialIntelligenceEnhanced",
607
+ "attach",
608
+ "bank",
609
+ "block",
610
+ "book",
611
+ "bulb",
612
+ "calling",
613
+ "callingHangup",
614
+ "callingMade",
615
+ "callingMissed",
616
+ "callingVoicemail",
617
+ "callTranscript",
618
+ "campaigns",
619
+ "cap",
620
+ "checkCircle",
621
+ "circleFilled",
622
+ "circleHollow",
623
+ "clock",
624
+ "comment",
625
+ "contact",
626
+ "copy",
627
+ "crm",
628
+ "dataSync",
629
+ "date",
630
+ "delay",
631
+ "delete",
632
+ "description",
633
+ "developerProjects",
634
+ "documents",
635
+ "downCarat",
636
+ "download",
637
+ "edit",
638
+ "ellipses",
639
+ "email",
640
+ "emailOpen",
641
+ "emailThreadedReplies",
642
+ "enrichment",
643
+ "enroll",
644
+ "exclamation",
645
+ "exclamationCircle",
646
+ "facebook",
647
+ "faceHappy",
648
+ "faceHappyFilled",
649
+ "faceNeutral",
650
+ "faceNeutralFilled",
651
+ "faceSad",
652
+ "faceSadFilled",
653
+ "favoriteHollow",
654
+ "file",
655
+ "filledXCircleIcon",
656
+ "filter",
657
+ "flame",
658
+ "folder",
659
+ "folderOpen",
660
+ "forward",
661
+ "gauge",
662
+ "generateChart",
663
+ "gift",
664
+ "globe",
665
+ "globeLine",
666
+ "goal",
667
+ "googlePlus",
668
+ "guidedActions",
669
+ "hash",
670
+ "hide",
671
+ "home",
672
+ "hubDB",
673
+ "image",
674
+ "imageGallery",
675
+ "inbox",
676
+ "info",
677
+ "infoNoCircle",
678
+ "insertVideo",
679
+ "instagram",
680
+ "integrations",
681
+ "invoice",
682
+ "key",
683
+ "language",
684
+ "left",
685
+ "lessCircle",
686
+ "lesson",
687
+ "light",
688
+ "link",
689
+ "linkedin",
690
+ "listView",
691
+ "location",
692
+ "locked",
693
+ "mention",
694
+ "messages",
695
+ "mobile",
696
+ "moreCircle",
697
+ "notEditable",
698
+ "notification",
699
+ "notificationOff",
700
+ "objectAssociations",
701
+ "objectAssociationsManyToMany",
702
+ "objectAssociationsManyToOne",
703
+ "office365",
704
+ "order",
705
+ "paymentSubscriptions",
706
+ "pin",
707
+ "pinterest",
708
+ "powerPointFile",
709
+ "presentation",
710
+ "product",
711
+ "publish",
712
+ "question",
713
+ "questionAnswer",
714
+ "questionCircle",
715
+ "quickbooks",
716
+ "quote",
717
+ "readMore",
718
+ "readOnlyView",
719
+ "realEstateListing",
720
+ "recentlySelected",
721
+ "record",
722
+ "redo",
723
+ "refresh",
724
+ "registration",
725
+ "remove",
726
+ "replace",
727
+ "reports",
728
+ "right",
729
+ "robot",
730
+ "rotate",
731
+ "rss",
732
+ "salesQuote",
733
+ "salesTemplates",
734
+ "save",
735
+ "search",
736
+ "send",
737
+ "sequences",
738
+ "settings",
739
+ "shoppingCart",
740
+ "signal",
741
+ "signalPoor",
742
+ "signature",
743
+ "snooze",
744
+ "sortAlpAsc",
745
+ "sortAlpDesc",
746
+ "sortAmtAsc",
747
+ "sortAmtDesc",
748
+ "sortNumAsc",
749
+ "sortNumDesc",
750
+ "sortTableAsc",
751
+ "sortTableDesc",
752
+ "spellCheck",
753
+ "sprocket",
754
+ "star",
755
+ "stopRecord",
756
+ "strike",
757
+ "styles",
758
+ "success",
759
+ "tablet",
760
+ "tag",
761
+ "tasks",
762
+ "test",
763
+ "text",
764
+ "textBodyExpanded",
765
+ "textColor",
766
+ "textDataType",
767
+ "textSnippet",
768
+ "thumbsDown",
769
+ "thumbsUp",
770
+ "ticket",
771
+ "translate",
772
+ "trophy",
773
+ "twitter",
774
+ "undo",
775
+ "upCarat",
776
+ "upload",
777
+ "video",
778
+ "videoFile",
779
+ "videoPlayerSubtitles",
780
+ "view",
781
+ "viewDetails",
782
+ "warning",
783
+ "website",
784
+ "workflows",
785
+ "x",
786
+ "xCircle",
787
+ "xing",
788
+ "youtube",
789
+ "youtubePlay",
790
+ "zoomIn",
791
+ "zoomOut"
792
+ ]);
793
+ var NATIVE_COLORS = /* @__PURE__ */ new Set(["inherit", "alert", "warning", "success"]);
794
+ var NATIVE_SIZE_TOKENS = {
795
+ sm: "sm",
796
+ small: "sm",
797
+ md: "md",
798
+ medium: "md",
799
+ lg: "lg",
800
+ large: "lg"
801
+ };
802
+ var SEMANTIC_HEX = {
803
+ inherit: HS_TEXT_COLOR,
804
+ alert: "#F2545B",
805
+ warning: "#D39913",
806
+ success: "#00BDA5"
807
+ };
808
+ var SIZE_TOKENS = {
809
+ xs: 12,
810
+ "extra-small": 12,
811
+ sm: 14,
812
+ "small": 14,
813
+ md: 16,
814
+ "med": 16,
815
+ "medium": 16,
816
+ lg: 20,
817
+ "large": 20,
818
+ xl: 24,
819
+ "extra-large": 24
820
+ };
821
+ var resolveSize = (size) => {
822
+ if (typeof size === "number") return size;
823
+ if (typeof size === "string" && SIZE_TOKENS[size] != null) return SIZE_TOKENS[size];
824
+ return 16;
825
+ };
826
+ var escapeXmlAttr = (s) => String(s).replace(/&/g, "&amp;").replace(/"/g, "&quot;").replace(/</g, "&lt;").replace(/>/g, "&gt;");
827
+ var PLUS_24 = "M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z";
828
+ var CURATED_ICONS = {
829
+ checkBare: { paths: ["M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"] },
830
+ plusBare: { paths: [PLUS_24] },
831
+ // Close = a plus rotated 45° → a clean X (reuses transform support, no new
832
+ // path data to hand-author/get-wrong).
833
+ Close: { paths: [PLUS_24], transform: "rotate(45 12 12)" },
834
+ // Universal media-transport glyphs, authored at 32×32 to match the scraped
835
+ // canvas so they sit at the same optical size as the rest of the set.
836
+ Play: { viewBox: "0 0 32 32", paths: ["M9 6v20l17-10z"] },
837
+ Pause: { viewBox: "0 0 32 32", paths: ["M10 6h4v20h-4z M18 6h4v20h-4z"] },
838
+ Stop: { viewBox: "0 0 32 32", paths: ["M8 8h16v16H8z"] },
839
+ // Hand-authored to match HubSpot's filled/rounded weight (verified visually
840
+ // against the scraped set) for genuine gaps the scrape didn't cover.
841
+ Unlocked: {
842
+ viewBox: "0 0 32 32",
843
+ paths: [
844
+ "M9.5 14v-3.4c0-3.57 2.9-6.46 6.46-6.46 2.66 0 5.02 1.64 5.97 4.07a1.6 1.6 0 1 1-2.98 1.16 3.23 3.23 0 0 0-2.99-2.03c-1.78 0-3.23 1.45-3.23 3.23V14z",
845
+ { d: "M6.3 14h19.4a3.2 3.2 0 0 1 3.2 3.2v8.6a3.2 3.2 0 0 1-3.2 3.2H6.3a3.2 3.2 0 0 1-3.2-3.2v-8.6A3.2 3.2 0 0 1 6.3 14Zm9.7 4.4a2.1 2.1 0 0 0-1.05 3.92V25a1.05 1.05 0 0 0 2.1 0v-2.68A2.1 2.1 0 0 0 16 18.4Z", fillRule: "evenodd" }
846
+ ]
847
+ },
848
+ Print: {
849
+ viewBox: "0 0 32 32",
850
+ paths: [
851
+ "M9 4h14a1 1 0 0 1 1 1v6H8V5a1 1 0 0 1 1-1z",
852
+ { d: "M5 12h22a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-3v-3H8v3H5a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2zm18 3.2a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4z", fillRule: "evenodd" },
853
+ "M10 21h12v6a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1z"
854
+ ]
855
+ },
856
+ Shrink: {
857
+ viewBox: "0 0 32 32",
858
+ paths: [
859
+ "M14.05 4.1c1.08 0 1.95.87 1.95 1.95v8a1.95 1.95 0 0 1-1.95 1.95h-8a1.95 1.95 0 1 1 0-3.9h3.28L3.17 5.93A1.95 1.95 0 0 1 5.93 3.17l6.17 6.17V6.05c0-1.08.87-1.95 1.95-1.95Z",
860
+ "M17.95 27.9a1.95 1.95 0 0 1-1.95-1.95v-8a1.95 1.95 0 0 1 1.95-1.95h8a1.95 1.95 0 1 1 0 3.9h-3.28l6.18 6.17a1.95 1.95 0 0 1-2.76 2.76l-6.17-6.17v3.29c0 1.08-.87 1.95-1.95 1.95Z"
861
+ ]
862
+ },
863
+ Heart: { viewBox: "0 0 32 32", paths: ["M16 26.5C9 21 5 17 5 12.4 5 9.1 7.6 6.5 11 6.5c2 0 3.8 1 5 2.6 1.2-1.6 3-2.6 5-2.6 3.4 0 6 2.6 6 5.9 0 4.6-4 8.6-11 14.1Z"] },
864
+ CircleFilled: { viewBox: "0 0 32 32", paths: ["M16 2C8.27 2 2 8.27 2 16s6.27 14 14 14 14-6.27 14-14S23.73 2 16 2z"] },
865
+ // Dark = crescent moon, pairs with the scraped Light (sun) for theme toggles.
866
+ Dark: { viewBox: "0 0 32 32", paths: ["M19 3.5A12 12 0 1 0 28.5 19 9.6 9.6 0 0 1 19 3.5Z"] },
867
+ Export: { viewBox: "0 0 32 32", paths: ["M16 3l5 5h-3.5v7h-3V8H11z", "M6 16h4v6h12v-6h4v8a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2z"] },
868
+ Import: { viewBox: "0 0 32 32", paths: ["M16 16l5-5h-3.5V4h-3v7H11z", "M6 17h4v5h12v-5h4v7a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2z"] },
869
+ // Backward = horizontal mirror of the scraped Forward arrow (x' = 32 - x).
870
+ // Derived so it stays in sync if Forward is ever re-scraped.
871
+ ...GENERATED_ICONS.Forward ? { Backward: { ...GENERATED_ICONS.Forward, transform: "translate(32 0) scale(-1 1)" } } : {}
872
+ };
873
+ var ICONS = { ...GENERATED_ICONS, ...CURATED_ICONS };
874
+ var ICON_NAME_ALIASES = {
875
+ call: "calling",
876
+ phone: "calling",
877
+ meeting: "appointment",
878
+ note: "comment",
879
+ notes: "comment",
880
+ task: "tasks",
881
+ open: "record",
882
+ openRecord: "record",
883
+ office: "record",
884
+ company: "record",
885
+ external: "link",
886
+ externalLink: "link",
887
+ down: "Down",
888
+ up: "Up",
889
+ pencil: "edit",
890
+ trash: "delete"
891
+ };
892
+ var NATIVE_ICON_NAME_ALIASES = new Map([
893
+ ...[...NATIVE_ICON_NAMES].map((nativeName) => [nativeName.toLowerCase(), nativeName]),
894
+ ...Object.entries(ICON_NAME_ALIASES).map(([alias, nativeName]) => [alias.toLowerCase(), nativeName])
895
+ ]);
896
+ var resolveIconName = (name) => {
897
+ if (typeof name !== "string") return name;
898
+ if (NATIVE_ICON_NAMES.has(name)) return name;
899
+ if (ICONS[name]) return name;
900
+ const nativeOrAlias = NATIVE_ICON_NAME_ALIASES.get(name.toLowerCase());
901
+ if (nativeOrAlias) return nativeOrAlias;
902
+ return name;
903
+ };
904
+ var canUseNative = (name, color, size) => NATIVE_ICON_NAMES.has(resolveIconName(name)) && (color == null || NATIVE_COLORS.has(color)) && (size == null || typeof size === "string" && NATIVE_SIZE_TOKENS[size] != null);
905
+ var makeIconDataUri = (nameOrEntry, opts = {}) => {
906
+ const entry = nameOrEntry && typeof nameOrEntry === "object" ? nameOrEntry : ICONS[nameOrEntry];
907
+ if (!entry || !entry.paths) return null;
908
+ const size = resolveSize(opts.size);
909
+ const rawColor = opts.color;
910
+ const color = rawColor && SEMANTIC_HEX[rawColor] || rawColor || HS_TEXT_COLOR;
911
+ const viewBox = entry.viewBox ?? "0 0 24 24";
912
+ const body = entry.paths.map((p) => {
913
+ const d = typeof p === "string" ? p : p.d;
914
+ const fill = typeof p === "object" && p.fill || color;
915
+ const fillRule = typeof p === "object" && p.fillRule ? ` fill-rule="${p.fillRule}"` : "";
916
+ return `<path d="${escapeXmlAttr(d)}" fill="${fill}"${fillRule} />`;
917
+ }).join("");
918
+ const inner = entry.transform ? `<g transform="${escapeXmlAttr(entry.transform)}">${body}</g>` : body;
919
+ const svg = `<svg xmlns="http://www.w3.org/2000/svg" width="${size}" height="${size}" viewBox="${viewBox}">` + inner + `</svg>`;
920
+ return {
921
+ src: `data:image/svg+xml;utf8,${encodeURIComponent(svg)}`,
922
+ width: size,
923
+ height: size
924
+ };
925
+ };
926
+ var ICON_NAMES = Object.keys(ICONS);
927
+ var NATIVE_ICON_NAME_LIST = [...NATIVE_ICON_NAMES].sort(
928
+ (a, b) => a.localeCompare(b)
929
+ );
930
+ var Icon = ({ name, color, size, screenReaderText, onClick, href }) => {
931
+ const resolvedName = resolveIconName(name);
932
+ const renderNativeIcon = () => import_react4.default.createElement(import_ui_extensions4.Icon, {
933
+ name: resolvedName,
934
+ ...color != null ? { color } : {},
935
+ ...size != null ? { size: NATIVE_SIZE_TOKENS[size] } : {},
936
+ ...screenReaderText != null ? { screenReaderText } : {}
937
+ });
938
+ const renderNative = () => {
939
+ const icon = renderNativeIcon();
940
+ if (onClick == null && href == null) return icon;
941
+ return import_react4.default.createElement(
942
+ import_ui_extensions4.Link,
943
+ {
944
+ ...onClick != null ? { onClick } : {},
945
+ ...href != null ? { href } : {}
946
+ },
947
+ icon
948
+ );
949
+ };
950
+ if (canUseNative(name, color, size)) return renderNative();
951
+ const result = makeIconDataUri(resolvedName, { size, color });
952
+ if (!result) {
953
+ return canUseNative(name, color, size) ? renderNative() : null;
954
+ }
955
+ return import_react4.default.createElement(import_ui_extensions4.Image, {
956
+ src: result.src,
957
+ width: result.width,
958
+ height: result.height,
959
+ alt: screenReaderText ?? name,
960
+ ...onClick != null ? { onClick } : {},
961
+ ...href != null ? { href } : {}
962
+ });
963
+ };
964
+
965
+ // src/common-components/CollectionFilterControl.js
966
+ var h3 = import_react5.default.createElement;
967
+ var DEFAULT_LABELS = {
968
+ all: "All",
969
+ dateFrom: "From",
970
+ dateTo: "To"
971
+ };
972
+ var CollectionFilterControl = ({
973
+ filter,
974
+ value,
975
+ onChange,
976
+ namePrefix = "collection-filter",
977
+ labels: labelOverrides,
978
+ selectVariant = "transparent",
979
+ includeAll,
980
+ allValue
981
+ }) => {
982
+ if (!filter) return null;
983
+ const labels = { ...DEFAULT_LABELS, ...labelOverrides || {} };
984
+ const type = filter.type || "select";
985
+ const name = filter.name;
986
+ const controlName = `${namePrefix}-${name}`;
987
+ const handleChange = (next) => onChange == null ? void 0 : onChange(name, next);
988
+ if (type === "multiselect") {
989
+ return h3(import_ui_extensions5.MultiSelect, {
990
+ key: name,
991
+ name: controlName,
992
+ placeholder: filter.placeholder || filter.label || labels.all,
993
+ value: Array.isArray(value) ? value : [],
994
+ options: filter.options || [],
995
+ onChange: handleChange
996
+ });
997
+ }
998
+ if (type === "dateRange") {
999
+ const rangeValue = value || { from: null, to: null };
1000
+ return h3(
1001
+ import_ui_extensions5.Flex,
1002
+ { key: name, direction: "row", align: "center", gap: "xs" },
1003
+ h3(import_ui_extensions5.DateInput, {
1004
+ name: `${controlName}-from`,
1005
+ placeholder: filter.fromLabel ?? labels.dateFrom,
1006
+ format: "medium",
1007
+ value: rangeValue.from ?? null,
1008
+ onChange: (next) => handleChange({ ...rangeValue, from: next })
1009
+ }),
1010
+ h3(Icon, { name: "right", size: "sm" }),
1011
+ h3(import_ui_extensions5.DateInput, {
1012
+ name: `${controlName}-to`,
1013
+ placeholder: filter.toLabel ?? labels.dateTo,
1014
+ format: "medium",
1015
+ value: rangeValue.to ?? null,
1016
+ onChange: (next) => handleChange({ ...rangeValue, to: next })
1017
+ })
1018
+ );
1019
+ }
1020
+ const resolvedIncludeAll = includeAll ?? filter.includeAll ?? true;
1021
+ const resolvedAllValue = filter.emptyValue ?? allValue ?? filter.allValue ?? "";
1022
+ const allLabel = filter.allLabel ?? filter.placeholder ?? filter.label ?? labels.all;
1023
+ const options = resolvedIncludeAll ? [{ label: allLabel, value: resolvedAllValue }, ...filter.options || []] : filter.options || [];
1024
+ return h3(import_ui_extensions5.Select, {
1025
+ key: name,
1026
+ name: controlName,
1027
+ variant: selectVariant,
1028
+ placeholder: filter.placeholder || filter.label || labels.all,
1029
+ value: value ?? resolvedAllValue,
1030
+ options,
1031
+ onChange: handleChange
1032
+ });
1033
+ };
1034
+
1035
+ // src/common-components/CollectionToolbar.js
1036
+ var h4 = import_react6.default.createElement;
1037
+ var DEFAULT_LABELS2 = {
1038
+ filtersButton: "Filters",
1039
+ clearAll: "Clear all"
1040
+ };
1041
+ var isVisible = (config) => config && (config.visible ?? config.show ?? true);
1042
+ var CollectionToolbar = ({
1043
+ search,
1044
+ filters,
1045
+ chips,
1046
+ right,
1047
+ footer,
1048
+ labels: labelOverrides,
1049
+ leftFlex = 3,
1050
+ rightFlex = 1,
1051
+ rightAlignSelf = "end",
1052
+ gap = "sm",
1053
+ idPrefix,
1054
+ uniqueNames = true
1055
+ }) => {
1056
+ const [showMoreFilters, setShowMoreFilters] = (0, import_react6.useState)(false);
1057
+ const reactId = (0, import_react6.useId)();
1058
+ const instanceId = String(idPrefix || reactId).replace(/[^a-zA-Z0-9_-]/g, "");
1059
+ const nameWithInstance = (name) => uniqueNames && name ? `${name}-${instanceId}` : name;
1060
+ const labels = { ...DEFAULT_LABELS2, ...labelOverrides || {} };
1061
+ const filterItems = Array.isArray(filters == null ? void 0 : filters.items) ? filters.items : [];
1062
+ const filterValues = (filters == null ? void 0 : filters.values) || {};
1063
+ const filterInlineLimit = (filters == null ? void 0 : filters.inlineLimit) ?? filterItems.length;
1064
+ const inlineFilters = filterItems.slice(0, filterInlineLimit);
1065
+ const overflowFilters = filterItems.slice(filterInlineLimit);
1066
+ const showSearch = isVisible(search);
1067
+ const hasSearch = showSearch && !!search;
1068
+ const hasFilters = inlineFilters.length > 0 || overflowFilters.length > 0;
1069
+ const hasChips = chips && Array.isArray(chips.items) && chips.items.length > 0;
1070
+ const hasLeft = hasSearch || hasFilters || hasChips;
1071
+ const hasRight = !!right;
1072
+ if (!hasLeft && !hasRight && !footer) return null;
1073
+ const filterLabels = { ...labels, ...(filters == null ? void 0 : filters.labels) || {} };
1074
+ const searchHandler = (search == null ? void 0 : search.onChange) || (search == null ? void 0 : search.onInput);
1075
+ const searchProps = hasSearch ? {
1076
+ name: nameWithInstance(search.name || "collection-search"),
1077
+ placeholder: search.placeholder,
1078
+ value: search.value,
1079
+ clearable: search.clearable !== false,
1080
+ ...search.onInput ? { onInput: search.onInput } : {},
1081
+ ...searchHandler ? { onChange: searchHandler } : {}
1082
+ } : null;
1083
+ const renderFilter = (filter) => h4(CollectionFilterControl, {
1084
+ key: filter.name,
1085
+ namePrefix: nameWithInstance((filters == null ? void 0 : filters.namePrefix) || "collection-filter"),
1086
+ filter,
1087
+ value: filterValues[filter.name],
1088
+ onChange: filters == null ? void 0 : filters.onChange,
1089
+ labels: filterLabels,
1090
+ includeAll: filters == null ? void 0 : filters.includeAll,
1091
+ allValue: filters == null ? void 0 : filters.allValue,
1092
+ selectVariant: filters == null ? void 0 : filters.selectVariant
1093
+ });
1094
+ const left = hasLeft ? h4(
1095
+ import_ui_extensions6.Box,
1096
+ { flex: leftFlex },
1097
+ h4(
1098
+ import_ui_extensions6.Flex,
1099
+ { direction: "column", gap },
1100
+ hasSearch || hasFilters ? h4(
1101
+ import_ui_extensions6.Flex,
1102
+ { direction: "row", align: "center", gap, wrap: "wrap" },
1103
+ hasSearch ? h4(import_ui_extensions6.SearchInput, searchProps) : null,
1104
+ ...inlineFilters.map(renderFilter),
1105
+ overflowFilters.length > 0 ? h4(
1106
+ import_ui_extensions6.Button,
1107
+ {
1108
+ variant: "transparent",
1109
+ size: (filters == null ? void 0 : filters.overflowButtonSize) || "small",
1110
+ onClick: () => setShowMoreFilters((prev) => !prev)
1111
+ },
1112
+ h4(Icon, { name: "filter", size: "sm" }),
1113
+ " ",
1114
+ (filters == null ? void 0 : filters.filtersButtonLabel) || labels.filtersButton
1115
+ ) : null
1116
+ ) : null,
1117
+ showMoreFilters && overflowFilters.length > 0 ? h4(
1118
+ import_ui_extensions6.Flex,
1119
+ { direction: "row", align: "center", gap, wrap: "wrap" },
1120
+ ...overflowFilters.map(renderFilter)
1121
+ ) : null,
1122
+ chips ? h4(ActiveFilterChips, {
1123
+ chips: chips.items,
1124
+ showBadges: chips.showBadges,
1125
+ showClearAll: chips.showClearAll,
1126
+ clearAllLabel: chips.clearAllLabel || labels.clearAll,
1127
+ onRemove: chips.onRemove,
1128
+ gap: chips.gap || gap
1129
+ }) : null
1130
+ )
1131
+ ) : null;
1132
+ const rightNode = hasRight ? h4(
1133
+ import_ui_extensions6.Box,
1134
+ { flex: rightFlex, alignSelf: rightAlignSelf },
1135
+ h4(import_ui_extensions6.Flex, { direction: "row", align: "center", gap, justify: "end", wrap: "wrap" }, right)
1136
+ ) : null;
1137
+ return h4(
1138
+ import_ui_extensions6.Flex,
1139
+ { direction: "column", gap: "xs" },
1140
+ h4(import_ui_extensions6.Flex, { direction: "row", gap }, left, rightNode),
1141
+ footer || null
1142
+ );
1143
+ };
1144
+
1145
+ // src/datatable/editValidation.js
198
1146
  var editValidationError = (result) => {
199
1147
  if (result === true || result === void 0 || result === null) return null;
200
1148
  return typeof result === "string" ? result : "Invalid value";
201
1149
  };
202
1150
 
203
- // packages/datatable/src/DataTable.jsx
204
- var import_ui_extensions2 = require("@hubspot/ui-extensions");
1151
+ // src/datatable/DataTable.jsx
1152
+ var import_ui_extensions7 = require("@hubspot/ui-extensions");
205
1153
  var NARROW_EDIT_TYPES = /* @__PURE__ */ new Set(["checkbox", "toggle"]);
206
1154
  var DATE_PATTERN = /^\d{4}[-/]\d{2}[-/]\d{2}/;
207
1155
  var BOOL_VALUES = /* @__PURE__ */ new Set(["true", "false", "yes", "no", "0", "1"]);
@@ -310,6 +1258,10 @@ var DataTable = ({
310
1258
  // show "Clear all" reset button; defaults to showFilterBadges when omitted
311
1259
  filterInlineLimit = 2,
312
1260
  // number of filters shown inline before overflow
1261
+ toolbarLeftFlex = 3,
1262
+ // left toolbar column flex weight (search/filters/chips)
1263
+ toolbarRightFlex = 1,
1264
+ // right toolbar column flex weight (count/actions)
313
1265
  // Pagination
314
1266
  pageSize = 10,
315
1267
  maxVisiblePageButtons,
@@ -353,6 +1305,8 @@ var DataTable = ({
353
1305
  // error message string or boolean — shows ErrorState
354
1306
  totalCount,
355
1307
  // server total (server-side only)
1308
+ clientTotalCount,
1309
+ // optional client-mode total when data is lazy-loaded
356
1310
  page: externalPage,
357
1311
  // controlled page (server-side only)
358
1312
  searchValue,
@@ -441,46 +1395,39 @@ var DataTable = ({
441
1395
  renderErrorState
442
1396
  // ({ error, title, message }) => ReactNode
443
1397
  }) => {
444
- const initialSortState = (0, import_react2.useMemo)(() => {
1398
+ const initialSortState = (0, import_react7.useMemo)(() => {
445
1399
  return normalizeSortState(columns, defaultSort);
446
1400
  }, [columns, defaultSort]);
447
- const [internalSearchTerm, setInternalSearchTerm] = (0, import_react2.useState)(
1401
+ const [internalSearchTerm, setInternalSearchTerm] = (0, import_react7.useState)(
448
1402
  () => serverSide && searchValue != null ? searchValue : ""
449
1403
  );
450
- const [internalFilterValues, setInternalFilterValues] = (0, import_react2.useState)(() => {
451
- const init = {};
452
- filters.forEach((f) => {
453
- init[f.name] = getEmptyFilterValue(f);
454
- });
455
- return init;
456
- });
457
- const [internalSortState, setInternalSortState] = (0, import_react2.useState)(initialSortState);
458
- const [currentPage, setCurrentPage] = (0, import_react2.useState)(1);
459
- const [showMoreFilters, setShowMoreFilters] = (0, import_react2.useState)(false);
460
- const lastAppliedSearchRef = (0, import_react2.useRef)(
1404
+ const [internalFilterValues, setInternalFilterValues] = (0, import_react7.useState)(() => getEmptyFilterValues(filters));
1405
+ const [internalSortState, setInternalSortState] = (0, import_react7.useState)(initialSortState);
1406
+ const [currentPage, setCurrentPage] = (0, import_react7.useState)(1);
1407
+ const lastAppliedSearchRef = (0, import_react7.useRef)(
461
1408
  serverSide && searchValue != null ? searchValue : ""
462
1409
  );
463
1410
  const searchTerm = serverSide && searchValue != null ? searchValue : internalSearchTerm;
464
- (0, import_react2.useEffect)(() => {
1411
+ (0, import_react7.useEffect)(() => {
465
1412
  if (!serverSide || searchValue == null) return;
466
1413
  if (searchValue === lastAppliedSearchRef.current) return;
467
1414
  lastAppliedSearchRef.current = searchValue;
468
1415
  setInternalSearchTerm(searchValue);
469
1416
  }, [serverSide, searchValue]);
470
1417
  const filterValues = serverSide && externalFilterValues != null ? externalFilterValues : internalFilterValues;
471
- const externalSortState = (0, import_react2.useMemo)(
1418
+ const externalSortState = (0, import_react7.useMemo)(
472
1419
  () => normalizeSortState(columns, externalSort),
473
1420
  [columns, externalSort]
474
1421
  );
475
1422
  const sortState = serverSide && externalSort != null ? externalSortState : internalSortState;
476
1423
  const activePage = serverSide && externalPage != null ? externalPage : currentPage;
477
- (0, import_react2.useEffect)(() => {
1424
+ (0, import_react7.useEffect)(() => {
478
1425
  if (!serverSide) setCurrentPage(1);
479
1426
  }, [internalSearchTerm, internalFilterValues, internalSortState, serverSide]);
480
- const fireSearchCallback = (0, import_react2.useCallback)((term) => {
1427
+ const fireSearchCallback = (0, import_react7.useCallback)((term) => {
481
1428
  if (serverSide && onSearchChange) onSearchChange(term);
482
1429
  }, [serverSide, onSearchChange]);
483
- const fireParamsChange = (0, import_react2.useCallback)((overrides) => {
1430
+ const fireParamsChange = (0, import_react7.useCallback)((overrides) => {
484
1431
  if (!onParamsChange) return;
485
1432
  const nextSortState = overrides.sort != null ? normalizeSortState(columns, overrides.sort) : sortState;
486
1433
  onParamsChange({
@@ -490,13 +1437,13 @@ var DataTable = ({
490
1437
  page: overrides.page != null ? overrides.page : activePage
491
1438
  });
492
1439
  }, [onParamsChange, columns, searchTerm, filterValues, sortState, activePage]);
493
- const resetPage = (0, import_react2.useCallback)(() => {
1440
+ const resetPage = (0, import_react7.useCallback)(() => {
494
1441
  if (resetPageOnChange) {
495
1442
  setCurrentPage(1);
496
1443
  if (serverSide && onPageChange) onPageChange(1);
497
1444
  }
498
1445
  }, [resetPageOnChange, serverSide, onPageChange]);
499
- const dispatchSearchChange = (0, import_react2.useCallback)((term) => {
1446
+ const dispatchSearchChange = (0, import_react7.useCallback)((term) => {
500
1447
  lastAppliedSearchRef.current = term;
501
1448
  fireSearchCallback(term);
502
1449
  fireParamsChange({ search: term, page: resetPageOnChange ? 1 : void 0 });
@@ -506,19 +1453,19 @@ var DataTable = ({
506
1453
  searchDebounce,
507
1454
  dispatchSearchChange
508
1455
  );
509
- const handleSearchChange = (0, import_react2.useCallback)((term) => {
1456
+ const handleSearchChange = (0, import_react7.useCallback)((term) => {
510
1457
  setInternalSearchTerm(term);
511
1458
  resetPage();
512
1459
  dispatchSearchDebounced(term);
513
1460
  }, [dispatchSearchDebounced, resetPage]);
514
- const handleFilterChange = (0, import_react2.useCallback)((name, value) => {
1461
+ const handleFilterChange = (0, import_react7.useCallback)((name, value) => {
515
1462
  const next = { ...filterValues, [name]: value };
516
1463
  setInternalFilterValues(next);
517
1464
  if (serverSide && onFilterChange) onFilterChange(next);
518
1465
  resetPage();
519
1466
  fireParamsChange({ filters: next, page: resetPageOnChange ? 1 : void 0 });
520
1467
  }, [filterValues, serverSide, onFilterChange, fireParamsChange, resetPage, resetPageOnChange]);
521
- const handleSortChange = (0, import_react2.useCallback)((field) => {
1468
+ const handleSortChange = (0, import_react7.useCallback)((field) => {
522
1469
  const current = sortState[field] || "none";
523
1470
  const nextDirection = current === "none" ? "ascending" : current === "ascending" ? "descending" : "none";
524
1471
  const reset = {};
@@ -531,12 +1478,12 @@ var DataTable = ({
531
1478
  resetPage();
532
1479
  fireParamsChange({ sort: next, page: resetPageOnChange ? 1 : void 0 });
533
1480
  }, [sortState, columns, serverSide, onSortChange, fireParamsChange, resetPage, resetPageOnChange]);
534
- const handlePageChange = (0, import_react2.useCallback)((page) => {
1481
+ const handlePageChange = (0, import_react7.useCallback)((page) => {
535
1482
  setCurrentPage(page);
536
1483
  if (serverSide && onPageChange) onPageChange(page);
537
1484
  fireParamsChange({ page });
538
1485
  }, [serverSide, onPageChange, fireParamsChange]);
539
- const filteredData = (0, import_react2.useMemo)(() => {
1486
+ const filteredData = (0, import_react7.useMemo)(() => {
540
1487
  if (serverSide) return data;
541
1488
  let result = filterRows(data, filters, filterValues);
542
1489
  if (searchTerm && searchFields.length > 0) {
@@ -547,7 +1494,7 @@ var DataTable = ({
547
1494
  }
548
1495
  return result;
549
1496
  }, [data, filterValues, searchTerm, filters, searchFields, serverSide, fuzzySearch, fuzzyOptions]);
550
- const sortedData = (0, import_react2.useMemo)(() => {
1497
+ const sortedData = (0, import_react7.useMemo)(() => {
551
1498
  if (serverSide) return filteredData;
552
1499
  const activeField = Object.keys(sortState).find((k) => sortState[k] !== "none");
553
1500
  if (!activeField) return filteredData;
@@ -576,7 +1523,7 @@ var DataTable = ({
576
1523
  return 0;
577
1524
  });
578
1525
  }, [filteredData, sortState, serverSide, columns]);
579
- const groupedData = (0, import_react2.useMemo)(() => {
1526
+ const groupedData = (0, import_react7.useMemo)(() => {
580
1527
  if (!groupBy) return null;
581
1528
  const source = serverSide ? data : sortedData;
582
1529
  const groups = {};
@@ -600,7 +1547,7 @@ var DataTable = ({
600
1547
  rows: groups[key]
601
1548
  }));
602
1549
  }, [sortedData, data, groupBy, serverSide]);
603
- const [expandedGroups, setExpandedGroups] = (0, import_react2.useState)(() => {
1550
+ const [expandedGroups, setExpandedGroups] = (0, import_react7.useState)(() => {
604
1551
  if (!groupBy) return /* @__PURE__ */ new Set();
605
1552
  const defaultExpanded = groupBy.defaultExpanded !== false;
606
1553
  if (defaultExpanded && groupedData) {
@@ -608,7 +1555,7 @@ var DataTable = ({
608
1555
  }
609
1556
  return /* @__PURE__ */ new Set();
610
1557
  });
611
- (0, import_react2.useEffect)(() => {
1558
+ (0, import_react7.useEffect)(() => {
612
1559
  if (!groupedData) return;
613
1560
  const defaultExpanded = (groupBy == null ? void 0 : groupBy.defaultExpanded) !== false;
614
1561
  if (defaultExpanded) {
@@ -619,7 +1566,7 @@ var DataTable = ({
619
1566
  });
620
1567
  }
621
1568
  }, [groupedData, groupBy]);
622
- const toggleGroup = (0, import_react2.useCallback)((key) => {
1569
+ const toggleGroup = (0, import_react7.useCallback)((key) => {
623
1570
  setExpandedGroups((prev) => {
624
1571
  const next = new Set(prev);
625
1572
  if (next.has(key)) next.delete(key);
@@ -627,20 +1574,22 @@ var DataTable = ({
627
1574
  return next;
628
1575
  });
629
1576
  }, []);
630
- const datasetRows = (0, import_react2.useMemo)(() => {
1577
+ const datasetRows = (0, import_react7.useMemo)(() => {
631
1578
  if (!groupedData) return serverSide ? data : sortedData;
632
1579
  return groupedData.flatMap((group) => group.rows);
633
1580
  }, [groupedData, sortedData, data, serverSide]);
634
- const totalItems = serverSide ? totalCount || data.length : datasetRows.length;
1581
+ const resolvedTotalCount = typeof totalCount === "number" ? totalCount : void 0;
1582
+ const resolvedClientTotalCount = typeof clientTotalCount === "number" ? clientTotalCount : void 0;
1583
+ const totalItems = serverSide ? resolvedTotalCount || data.length : Math.max(datasetRows.length, resolvedClientTotalCount || 0);
635
1584
  const pageCount = Math.ceil(totalItems / pageSize);
636
- const paginatedRows = (0, import_react2.useMemo)(() => {
1585
+ const paginatedRows = (0, import_react7.useMemo)(() => {
637
1586
  if (serverSide) return datasetRows;
638
1587
  return datasetRows.slice(
639
1588
  (activePage - 1) * pageSize,
640
1589
  activePage * pageSize
641
1590
  );
642
1591
  }, [serverSide, datasetRows, activePage, pageSize]);
643
- const displayRows = (0, import_react2.useMemo)(() => {
1592
+ const displayRows = (0, import_react7.useMemo)(() => {
644
1593
  if (!groupedData) return paginatedRows.map((row) => ({ type: "data", row }));
645
1594
  const pageRows = new Set(paginatedRows);
646
1595
  const rows = [];
@@ -655,53 +1604,19 @@ var DataTable = ({
655
1604
  return rows;
656
1605
  }, [groupedData, paginatedRows, expandedGroups]);
657
1606
  const footerData = serverSide ? data : filteredData;
658
- const activeChips = (0, import_react2.useMemo)(() => {
659
- const chips = [];
660
- filters.forEach((filter) => {
661
- const value = filterValues[filter.name];
662
- if (!isFilterActive(filter, value)) return;
663
- const type = filter.type || "select";
664
- const prefix = filter.chipLabel || filter.placeholder || filter.name;
665
- if (type === "multiselect") {
666
- const labels2 = value.map((v) => {
667
- var _a;
668
- return ((_a = filter.options.find((o) => o.value === v)) == null ? void 0 : _a.label) || v;
669
- }).join(", ");
670
- chips.push({ key: filter.name, label: `${prefix}: ${labels2}` });
671
- } else if (type === "dateRange") {
672
- const parts = [];
673
- if (value.from) parts.push(`from ${formatDateChip(value.from)}`);
674
- if (value.to) parts.push(`to ${formatDateChip(value.to)}`);
675
- chips.push({ key: filter.name, label: `${prefix}: ${parts.join(" ")}` });
676
- } else {
677
- const option = filter.options.find((o) => o.value === value);
678
- chips.push({ key: filter.name, label: `${prefix}: ${(option == null ? void 0 : option.label) || value}` });
679
- }
680
- });
681
- return chips;
682
- }, [filterValues, filters]);
683
- const handleFilterRemove = (0, import_react2.useCallback)((key) => {
684
- if (key === "all") {
685
- const cleared = {};
686
- filters.forEach((f) => {
687
- cleared[f.name] = getEmptyFilterValue(f);
688
- });
689
- setInternalFilterValues(cleared);
690
- if (serverSide && onFilterChange) onFilterChange(cleared);
691
- resetPage();
692
- fireParamsChange({ filters: cleared, page: resetPageOnChange ? 1 : void 0 });
693
- } else {
694
- const filter = filters.find((f) => f.name === key);
695
- const emptyVal = filter ? getEmptyFilterValue(filter) : "";
696
- const next = { ...filterValues, [key]: emptyVal };
697
- setInternalFilterValues(next);
698
- if (serverSide && onFilterChange) onFilterChange(next);
699
- resetPage();
700
- fireParamsChange({ filters: next, page: resetPageOnChange ? 1 : void 0 });
701
- }
1607
+ const activeChips = (0, import_react7.useMemo)(
1608
+ () => buildActiveFilterChips(filters, filterValues),
1609
+ [filterValues, filters]
1610
+ );
1611
+ const handleFilterRemove = (0, import_react7.useCallback)((key) => {
1612
+ const next = resetFilterValues(filters, filterValues, key);
1613
+ setInternalFilterValues(next);
1614
+ if (serverSide && onFilterChange) onFilterChange(next);
1615
+ resetPage();
1616
+ fireParamsChange({ filters: next, page: resetPageOnChange ? 1 : void 0 });
702
1617
  }, [filters, filterValues, serverSide, onFilterChange, resetPage, fireParamsChange, resetPageOnChange]);
703
- const displayCount = serverSide ? totalCount || data.length : filteredData.length;
704
- const totalDataCount = serverSide ? totalCount || data.length : data.length;
1618
+ const displayCount = serverSide ? resolvedTotalCount || data.length : Math.max(filteredData.length, resolvedClientTotalCount || 0);
1619
+ const totalDataCount = serverSide ? resolvedTotalCount || data.length : Math.max(data.length, resolvedClientTotalCount || 0);
705
1620
  const shownOnPageCount = displayRows.filter((item) => item.type === "data").length;
706
1621
  const pluralLabel = ((recordLabel == null ? void 0 : recordLabel.plural) || "records").toLowerCase();
707
1622
  const singularLabel = ((recordLabel == null ? void 0 : recordLabel.singular) || "record").toLowerCase();
@@ -722,13 +1637,13 @@ var DataTable = ({
722
1637
  const resolvedRetryMessage = (labels == null ? void 0 : labels.retryMessage) || "Please try again.";
723
1638
  const resolvedShowClearFiltersButton = showClearFiltersButton ?? showFilterBadges;
724
1639
  const recordCountLabel = rowCountText ? rowCountText(shownOnPageCount, displayCount) : displayCount === totalDataCount ? `${totalDataCount} ${countLabel(totalDataCount)}` : `${displayCount} of ${totalDataCount} ${countLabel(totalDataCount)}`;
725
- const [internalSelectedIds, setInternalSelectedIds] = (0, import_react2.useState)(/* @__PURE__ */ new Set());
726
- (0, import_react2.useEffect)(() => {
1640
+ const [internalSelectedIds, setInternalSelectedIds] = (0, import_react7.useState)(/* @__PURE__ */ new Set());
1641
+ (0, import_react7.useEffect)(() => {
727
1642
  if (externalSelectedIds != null) {
728
1643
  setInternalSelectedIds(new Set(externalSelectedIds));
729
1644
  }
730
1645
  }, [externalSelectedIds]);
731
- const selectionQueryKey = (0, import_react2.useMemo)(() => {
1646
+ const selectionQueryKey = (0, import_react7.useMemo)(() => {
732
1647
  if (!resetSelectionOnQueryChange) return "";
733
1648
  return toStableKey({
734
1649
  search: searchTerm,
@@ -736,11 +1651,11 @@ var DataTable = ({
736
1651
  sort: serializeSortState(sortState)
737
1652
  });
738
1653
  }, [searchTerm, filterValues, sortState, resetSelectionOnQueryChange]);
739
- const combinedSelectionResetKey = (0, import_react2.useMemo)(
1654
+ const combinedSelectionResetKey = (0, import_react7.useMemo)(
740
1655
  () => `${selectionQueryKey}::${selectionResetKey == null ? "" : toStableKey(selectionResetKey)}`,
741
1656
  [selectionQueryKey, selectionResetKey]
742
1657
  );
743
- const clearSelection = (0, import_react2.useCallback)(() => setInternalSelectedIds(/* @__PURE__ */ new Set()), []);
1658
+ const clearSelection = (0, import_react7.useCallback)(() => setInternalSelectedIds(/* @__PURE__ */ new Set()), []);
744
1659
  useSelectionReset({
745
1660
  resetKey: combinedSelectionResetKey,
746
1661
  enabled: selectable,
@@ -754,29 +1669,29 @@ var DataTable = ({
754
1669
  const countInToolbar = showToolbarCount && !countInTitleRow;
755
1670
  const hasToolbarContent = hasToolbarLeft || countInToolbar;
756
1671
  const showRowActionsColumn = !!rowActions && !(hideRowActionsWhenSelectionActive && selectable && selectedIds.size > 0);
757
- const applySelection = (0, import_react2.useCallback)((nextSet) => {
1672
+ const applySelection = (0, import_react7.useCallback)((nextSet) => {
758
1673
  if (externalSelectedIds == null) {
759
1674
  setInternalSelectedIds(nextSet);
760
1675
  }
761
1676
  if (onSelectionChange) onSelectionChange([...nextSet]);
762
1677
  }, [externalSelectedIds, onSelectionChange]);
763
- const pageRowIds = (0, import_react2.useMemo)(() => {
1678
+ const pageRowIds = (0, import_react7.useMemo)(() => {
764
1679
  if (serverSide) {
765
1680
  return data.map((row) => row[rowIdField]).filter((id) => id != null);
766
1681
  }
767
1682
  return displayRows.filter((r) => r.type === "data").map((r) => r.row[rowIdField]).filter((id) => id != null);
768
1683
  }, [serverSide, data, displayRows, rowIdField]);
769
- const allRowIds = (0, import_react2.useMemo)(
1684
+ const allRowIds = (0, import_react7.useMemo)(
770
1685
  () => datasetRows.map((row) => row[rowIdField]).filter((id) => id != null),
771
1686
  [datasetRows, rowIdField]
772
1687
  );
773
- const handleSelectRow = (0, import_react2.useCallback)((rowId, checked) => {
1688
+ const handleSelectRow = (0, import_react7.useCallback)((rowId, checked) => {
774
1689
  const next = new Set(selectedIds);
775
1690
  if (checked) next.add(rowId);
776
1691
  else next.delete(rowId);
777
1692
  applySelection(next);
778
1693
  }, [selectedIds, applySelection]);
779
- const handleSelectAll = (0, import_react2.useCallback)((checked) => {
1694
+ const handleSelectAll = (0, import_react7.useCallback)((checked) => {
780
1695
  const next = new Set(selectedIds);
781
1696
  pageRowIds.forEach((id) => {
782
1697
  if (checked) next.add(id);
@@ -784,10 +1699,10 @@ var DataTable = ({
784
1699
  });
785
1700
  applySelection(next);
786
1701
  }, [selectedIds, pageRowIds, applySelection]);
787
- const allVisibleSelected = (0, import_react2.useMemo)(() => {
1702
+ const allVisibleSelected = (0, import_react7.useMemo)(() => {
788
1703
  return pageRowIds.length > 0 && pageRowIds.every((id) => selectedIds.has(id));
789
1704
  }, [pageRowIds, selectedIds]);
790
- const handleSelectAllRows = (0, import_react2.useCallback)(() => {
1705
+ const handleSelectAllRows = (0, import_react7.useCallback)(() => {
791
1706
  const idsToAdd = serverSide ? pageRowIds : allRowIds;
792
1707
  const next = new Set(selectedIds);
793
1708
  idsToAdd.forEach((id) => next.add(id));
@@ -800,13 +1715,13 @@ var DataTable = ({
800
1715
  });
801
1716
  }
802
1717
  }, [serverSide, pageRowIds, allRowIds, selectedIds, applySelection, onSelectAllRequest, totalCount, data.length]);
803
- const handleDeselectAll = (0, import_react2.useCallback)(() => {
1718
+ const handleDeselectAll = (0, import_react7.useCallback)(() => {
804
1719
  applySelection(/* @__PURE__ */ new Set());
805
1720
  }, [applySelection]);
806
- const [editingCell, setEditingCell] = (0, import_react2.useState)(null);
807
- const [editValue, setEditValue] = (0, import_react2.useState)(null);
808
- const [editError, setEditError] = (0, import_react2.useState)(null);
809
- const startEditing = (0, import_react2.useCallback)((rowId, field, currentValue) => {
1721
+ const [editingCell, setEditingCell] = (0, import_react7.useState)(null);
1722
+ const [editValue, setEditValue] = (0, import_react7.useState)(null);
1723
+ const [editError, setEditError] = (0, import_react7.useState)(null);
1724
+ const startEditing = (0, import_react7.useCallback)((rowId, field, currentValue) => {
810
1725
  setEditingCell({ rowId, field });
811
1726
  setEditValue(currentValue);
812
1727
  setEditError(null);
@@ -815,7 +1730,7 @@ var DataTable = ({
815
1730
  if (row) onEditStart(row, field, currentValue);
816
1731
  }
817
1732
  }, [onEditStart, data, rowIdField]);
818
- const commitEdit = (0, import_react2.useCallback)((row, field, value, options = {}) => {
1733
+ const commitEdit = (0, import_react7.useCallback)((row, field, value, options = {}) => {
819
1734
  const { keepEditing = false } = options;
820
1735
  const col = columns.find((c) => c.field === field);
821
1736
  if (col == null ? void 0 : col.editValidate) {
@@ -867,42 +1782,42 @@ var DataTable = ({
867
1782
  };
868
1783
  switch (type) {
869
1784
  case "textarea":
870
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TextArea, { ...extra, name: fieldName, label: "", value: editValue ?? "", onChange: commit, onBlur: exitEdit, ...validationProps, onInput: handleInput });
1785
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TextArea, { ...extra, name: fieldName, label: "", value: editValue ?? "", onChange: commit, onBlur: exitEdit, ...validationProps, onInput: handleInput });
871
1786
  case "number":
872
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.NumberInput, { ...extra, name: fieldName, label: "", value: editValue, onChange: commit, onBlur: exitEdit, ...validationProps, onInput: handleInput });
1787
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.NumberInput, { ...extra, name: fieldName, label: "", value: editValue, onChange: commit, onBlur: exitEdit, ...validationProps, onInput: handleInput });
873
1788
  case "currency":
874
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.CurrencyInput, { currencyCode: "USD", ...extra, name: fieldName, label: "", value: editValue, onChange: commit, onBlur: exitEdit, ...validationProps, onInput: handleInput });
1789
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.CurrencyInput, { currencyCode: "USD", ...extra, name: fieldName, label: "", value: editValue, onChange: commit, onBlur: exitEdit, ...validationProps, onInput: handleInput });
875
1790
  case "stepper":
876
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.StepperInput, { ...extra, name: fieldName, label: "", value: editValue, onChange: commit, onBlur: exitEdit, ...validationProps, onInput: handleInput });
1791
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.StepperInput, { ...extra, name: fieldName, label: "", value: editValue, onChange: commit, onBlur: exitEdit, ...validationProps, onInput: handleInput });
877
1792
  case "select":
878
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Select, { variant: "transparent", ...extra, name: fieldName, label: "", value: editValue, onChange: commit, options: resolveEditOptions(col, data) });
1793
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Select, { variant: "transparent", ...extra, name: fieldName, label: "", value: editValue, onChange: commit, options: resolveEditOptions(col, data) });
879
1794
  case "multiselect":
880
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.MultiSelect, { ...extra, name: fieldName, label: "", value: editValue || [], onChange: commit, options: resolveEditOptions(col, data) });
1795
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.MultiSelect, { ...extra, name: fieldName, label: "", value: editValue || [], onChange: commit, options: resolveEditOptions(col, data) });
881
1796
  case "date":
882
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.DateInput, { ...extra, name: fieldName, label: "", value: editValue, onChange: commit });
1797
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.DateInput, { ...extra, name: fieldName, label: "", value: editValue, onChange: commit });
883
1798
  case "time":
884
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TimeInput, { ...extra, name: fieldName, label: "", value: editValue, onChange: commit });
1799
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TimeInput, { ...extra, name: fieldName, label: "", value: editValue, onChange: commit });
885
1800
  case "datetime":
886
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "row", align: "center", gap: "xs", wrap: "nowrap" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.DateInput, { ...extra, name: `${fieldName}-date`, label: "", value: editValue == null ? void 0 : editValue.date, onChange: (val) => {
1801
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Flex, { direction: "row", align: "center", gap: "xs", wrap: "nowrap" }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.DateInput, { ...extra, name: `${fieldName}-date`, label: "", value: editValue == null ? void 0 : editValue.date, onChange: (val) => {
887
1802
  const next = { ...editValue, date: val };
888
1803
  handleInput(next);
889
1804
  commitEdit(row, col.field, next, { keepEditing: true });
890
- }, onBlur: maybeExitDatetimeEdit }), /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TimeInput, { ...extra.timeProps || {}, name: `${fieldName}-time`, label: "", value: editValue == null ? void 0 : editValue.time, onChange: (val) => {
1805
+ }, onBlur: maybeExitDatetimeEdit }), /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TimeInput, { ...extra.timeProps || {}, name: `${fieldName}-time`, label: "", value: editValue == null ? void 0 : editValue.time, onChange: (val) => {
891
1806
  const next = { ...editValue, time: val };
892
1807
  handleInput(next);
893
1808
  commitEdit(row, col.field, next, { keepEditing: true });
894
1809
  }, onBlur: maybeExitDatetimeEdit }));
895
1810
  case "toggle":
896
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Toggle, { ...extra, name: fieldName, label: "", checked: !!editValue, onChange: commit });
1811
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Toggle, { ...extra, name: fieldName, label: "", checked: !!editValue, onChange: commit });
897
1812
  case "checkbox":
898
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Checkbox, { ...extra, name: fieldName, checked: !!editValue, onChange: commit });
1813
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Checkbox, { ...extra, name: fieldName, checked: !!editValue, onChange: commit });
899
1814
  default:
900
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Input, { ...extra, name: fieldName, label: "", value: editValue ?? "", onChange: commit, onBlur: exitEdit, ...validationProps, onInput: handleInput });
1815
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Input, { ...extra, name: fieldName, label: "", value: editValue ?? "", onChange: commit, onBlur: exitEdit, ...validationProps, onInput: handleInput });
901
1816
  }
902
1817
  };
903
1818
  const resolvedEditMode = editMode || (columns.some((col) => col.editable) ? "discrete" : null);
904
1819
  const useColumnRendering = selectable || !!resolvedEditMode || editingRowId != null || showRowActionsColumn || !renderRow;
905
- const autoWidths = (0, import_react2.useMemo)(
1820
+ const autoWidths = (0, import_react7.useMemo)(
906
1821
  () => autoWidth ? computeAutoWidths(columns, data) : {},
907
1822
  [columns, data, autoWidth]
908
1823
  );
@@ -915,7 +1830,7 @@ var DataTable = ({
915
1830
  var _a;
916
1831
  return col.cellWidth || col.width || ((_a = autoWidths[col.field]) == null ? void 0 : _a.cellWidth) || defaultWidth;
917
1832
  };
918
- const [inlineErrors, setInlineErrors] = (0, import_react2.useState)({});
1833
+ const [inlineErrors, setInlineErrors] = (0, import_react7.useState)({});
919
1834
  const renderInlineControl = (col, row) => {
920
1835
  const type = col.editType || "text";
921
1836
  const rowId = row[rowIdField];
@@ -956,33 +1871,33 @@ var DataTable = ({
956
1871
  };
957
1872
  switch (type) {
958
1873
  case "textarea":
959
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TextArea, { ...extra, name: fieldName, label: "", value: value ?? "", onChange: fire, ...validationProps, onInput: emitInput });
1874
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TextArea, { ...extra, name: fieldName, label: "", value: value ?? "", onChange: fire, ...validationProps, onInput: emitInput });
960
1875
  case "number":
961
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.NumberInput, { ...extra, name: fieldName, label: "", value, onChange: fire, ...validationProps, onInput: emitInput });
1876
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.NumberInput, { ...extra, name: fieldName, label: "", value, onChange: fire, ...validationProps, onInput: emitInput });
962
1877
  case "currency":
963
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.CurrencyInput, { currencyCode: "USD", ...extra, name: fieldName, label: "", value, onChange: fire, ...validationProps, onInput: emitInput });
1878
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.CurrencyInput, { currencyCode: "USD", ...extra, name: fieldName, label: "", value, onChange: fire, ...validationProps, onInput: emitInput });
964
1879
  case "stepper":
965
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.StepperInput, { ...extra, name: fieldName, label: "", value, onChange: fire, ...validationProps, onInput: emitInput });
1880
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.StepperInput, { ...extra, name: fieldName, label: "", value, onChange: fire, ...validationProps, onInput: emitInput });
966
1881
  case "select":
967
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Select, { ...extra, name: fieldName, label: "", value, onChange: fire, options: resolveEditOptions(col, data) });
1882
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Select, { ...extra, name: fieldName, label: "", value, onChange: fire, options: resolveEditOptions(col, data) });
968
1883
  case "multiselect":
969
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.MultiSelect, { ...extra, name: fieldName, label: "", value: value || [], onChange: fire, options: resolveEditOptions(col, data) });
1884
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.MultiSelect, { ...extra, name: fieldName, label: "", value: value || [], onChange: fire, options: resolveEditOptions(col, data) });
970
1885
  case "date":
971
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.DateInput, { ...extra, name: fieldName, label: "", value, onChange: fire });
1886
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.DateInput, { ...extra, name: fieldName, label: "", value, onChange: fire });
972
1887
  case "time":
973
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TimeInput, { ...extra, name: fieldName, label: "", value, onChange: fire });
1888
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TimeInput, { ...extra, name: fieldName, label: "", value, onChange: fire });
974
1889
  case "datetime":
975
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "row", align: "center", gap: "xs", wrap: "nowrap" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.DateInput, { ...extra, name: `${fieldName}-date`, label: "", value: value == null ? void 0 : value.date, onChange: (val) => {
1890
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Flex, { direction: "row", align: "center", gap: "xs", wrap: "nowrap" }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.DateInput, { ...extra, name: `${fieldName}-date`, label: "", value: value == null ? void 0 : value.date, onChange: (val) => {
976
1891
  fire({ ...value, date: val });
977
- } }), /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TimeInput, { ...extra.timeProps || {}, name: `${fieldName}-time`, label: "", value: value == null ? void 0 : value.time, onChange: (val) => {
1892
+ } }), /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TimeInput, { ...extra.timeProps || {}, name: `${fieldName}-time`, label: "", value: value == null ? void 0 : value.time, onChange: (val) => {
978
1893
  fire({ ...value, time: val });
979
1894
  } }));
980
1895
  case "toggle":
981
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Toggle, { ...extra, name: fieldName, label: "", checked: !!value, onChange: fire });
1896
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Toggle, { ...extra, name: fieldName, label: "", checked: !!value, onChange: fire });
982
1897
  case "checkbox":
983
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Checkbox, { ...extra, name: fieldName, checked: !!value, onChange: fire });
1898
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Checkbox, { ...extra, name: fieldName, checked: !!value, onChange: fire });
984
1899
  default:
985
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Input, { ...extra, name: fieldName, label: "", value: value ?? "", onChange: fire, ...validationProps, onInput: emitInput });
1900
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Input, { ...extra, name: fieldName, label: "", value: value ?? "", onChange: fire, ...validationProps, onInput: emitInput });
986
1901
  }
987
1902
  };
988
1903
  const renderCellContent = (row, col) => {
@@ -995,6 +1910,15 @@ var DataTable = ({
995
1910
  }
996
1911
  const isEditing = (editingCell == null ? void 0 : editingCell.rowId) === rowId && (editingCell == null ? void 0 : editingCell.field) === col.field;
997
1912
  if (isEditing && col.editable) return renderEditControl(col, row);
1913
+ if (resolvedEditMode === "discrete" && col.editable && (col.editType === "select" || col.editType === "multiselect")) {
1914
+ const extra = col.editProps || {};
1915
+ const fieldName = `edit-${rowId}-${col.field}`;
1916
+ const value = row[col.field];
1917
+ const commit = (val) => commitEdit(row, col.field, val);
1918
+ const options = resolveEditOptions(col, data);
1919
+ const placeholder = extra.placeholder ?? "Select";
1920
+ return col.editType === "select" ? /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Select, { variant: "transparent", placeholder, ...extra, name: fieldName, label: "", value, onChange: commit, options }) : /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.MultiSelect, { placeholder, ...extra, name: fieldName, label: "", value: value || [], onChange: commit, options });
1921
+ }
998
1922
  const rawValue = row[col.field];
999
1923
  const rawStr = String(rawValue ?? "");
1000
1924
  if (col.truncate && rawStr.length > 0) {
@@ -1002,30 +1926,30 @@ var DataTable = ({
1002
1926
  if (col.renderCell) {
1003
1927
  const content2 = col.renderCell(rawValue, row);
1004
1928
  if (col.editable) {
1005
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Link, { variant: "dark", onClick: () => startEditing(rowId, col.field, rawValue) }, content2 || "--");
1929
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Link, { variant: "dark", onClick: () => startEditing(rowId, col.field, rawValue) }, content2 || "--");
1006
1930
  }
1007
1931
  return content2;
1008
1932
  }
1009
1933
  if (col.editable) {
1010
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Text, { truncate: { tooltipText: rawStr } }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Link, { variant: "dark", onClick: () => startEditing(rowId, col.field, rawValue) }, rawStr || "--"));
1934
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Text, { truncate: { tooltipText: rawStr } }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Link, { variant: "dark", onClick: () => startEditing(rowId, col.field, rawValue) }, rawStr || "--"));
1011
1935
  }
1012
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Text, { truncate: { tooltipText: rawStr } }, rawStr);
1936
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Text, { truncate: { tooltipText: rawStr } }, rawStr);
1013
1937
  }
1014
1938
  const maxLen = typeof col.truncate === "number" ? col.truncate : col.truncate.maxLength || 100;
1015
1939
  if (rawStr.length > maxLen) {
1016
1940
  const truncatedStr = rawStr.slice(0, maxLen) + "\u2026";
1017
1941
  const content2 = col.renderCell ? col.renderCell(truncatedStr, row) : truncatedStr;
1018
1942
  if (col.editable) {
1019
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Link, { variant: "dark", onClick: () => startEditing(rowId, col.field, rawValue) }, content2 || "--");
1943
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Link, { variant: "dark", onClick: () => startEditing(rowId, col.field, rawValue) }, content2 || "--");
1020
1944
  }
1021
- return col.renderCell ? content2 : /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Text, { truncate: { tooltipText: rawStr } }, content2 || "--");
1945
+ return col.renderCell ? content2 : /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Text, { truncate: { tooltipText: rawStr } }, content2 || "--");
1022
1946
  }
1023
1947
  }
1024
1948
  const content = col.renderCell ? col.renderCell(rawValue, row) : rawValue;
1025
1949
  const isEmpty = content == null || content === "";
1026
1950
  if (col.editable) {
1027
- return /* @__PURE__ */ import_react2.default.createElement(
1028
- import_ui_extensions2.Link,
1951
+ return /* @__PURE__ */ import_react7.default.createElement(
1952
+ import_ui_extensions7.Link,
1029
1953
  {
1030
1954
  variant: "dark",
1031
1955
  onClick: () => startEditing(rowId, col.field, rawValue)
@@ -1035,90 +1959,42 @@ var DataTable = ({
1035
1959
  }
1036
1960
  return isEmpty ? "--" : content;
1037
1961
  };
1038
- const renderFilterControl2 = (filter) => {
1039
- const type = filter.type || "select";
1040
- if (type === "multiselect") {
1041
- return /* @__PURE__ */ import_react2.default.createElement(
1042
- import_ui_extensions2.MultiSelect,
1043
- {
1044
- key: filter.name,
1045
- name: `filter-${filter.name}`,
1046
- label: "",
1047
- placeholder: filter.placeholder || "All",
1048
- value: filterValues[filter.name] || [],
1049
- onChange: (val) => handleFilterChange(filter.name, val),
1050
- options: filter.options
1051
- }
1052
- );
1053
- }
1054
- if (type === "dateRange") {
1055
- const rangeVal = filterValues[filter.name] || { from: null, to: null };
1056
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { key: filter.name, direction: "row", align: "center", gap: "xs" }, /* @__PURE__ */ import_react2.default.createElement(
1057
- import_ui_extensions2.DateInput,
1058
- {
1059
- name: `filter-${filter.name}-from`,
1060
- label: "",
1061
- placeholder: resolvedDateFromLabel,
1062
- format: "medium",
1063
- value: rangeVal.from,
1064
- onChange: (val) => handleFilterChange(filter.name, { ...rangeVal, from: val })
1065
- }
1066
- ), /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Icon, { name: "dataSync", size: "sm" }), /* @__PURE__ */ import_react2.default.createElement(
1067
- import_ui_extensions2.DateInput,
1068
- {
1069
- size: "sm",
1070
- name: `filter-${filter.name}-to`,
1071
- label: "",
1072
- placeholder: resolvedDateToLabel,
1073
- format: "medium",
1074
- value: rangeVal.to,
1075
- onChange: (val) => handleFilterChange(filter.name, { ...rangeVal, to: val })
1076
- }
1077
- ));
1078
- }
1079
- return /* @__PURE__ */ import_react2.default.createElement(
1080
- import_ui_extensions2.Select,
1081
- {
1082
- key: filter.name,
1083
- name: `filter-${filter.name}`,
1084
- variant: "transparent",
1085
- placeholder: filter.placeholder || "All",
1086
- value: filterValues[filter.name],
1087
- onChange: (val) => handleFilterChange(filter.name, val),
1088
- options: [
1089
- { label: filter.placeholder || "All", value: "" },
1090
- ...filter.options
1091
- ]
1092
- }
1093
- );
1094
- };
1095
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "column", gap: "xs" }, title && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "row", align: "center", justify: "between", gap: "sm" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Text, { format: { fontWeight: "demibold" } }, title), countInTitleRow && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Text, { variant: "microcopy", format: rowCountBold ? { fontWeight: "bold" } : void 0 }, recordCountLabel)), hasToolbarContent && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "row", gap: "sm" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Box, { flex: 3 }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "column", gap: "sm" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "row", align: "center", gap: "sm", wrap: "wrap" }, showSearch && searchFields.length > 0 && /* @__PURE__ */ import_react2.default.createElement(
1096
- import_ui_extensions2.SearchInput,
1962
+ const toolbarCount = countInToolbar ? /* @__PURE__ */ import_react7.default.createElement(CollectionCount, { text: recordCountLabel, bold: rowCountBold }) : null;
1963
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Flex, { direction: "column", gap: "xs" }, title && /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Flex, { direction: "row", align: "center", justify: "between", gap: "sm" }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Text, { format: { fontWeight: "demibold" } }, title), countInTitleRow && /* @__PURE__ */ import_react7.default.createElement(CollectionCount, { text: recordCountLabel, bold: rowCountBold })), hasToolbarContent && /* @__PURE__ */ import_react7.default.createElement(
1964
+ CollectionToolbar,
1097
1965
  {
1098
- name: "datatable-search",
1099
- placeholder: searchPlaceholder,
1100
- value: internalSearchTerm,
1101
- onChange: handleSearchChange
1966
+ search: {
1967
+ visible: showSearch && searchFields.length > 0,
1968
+ name: "datatable-search",
1969
+ placeholder: searchPlaceholder,
1970
+ value: internalSearchTerm,
1971
+ onChange: handleSearchChange
1972
+ },
1973
+ filters: {
1974
+ items: filters,
1975
+ values: filterValues,
1976
+ inlineLimit: filterInlineLimit,
1977
+ namePrefix: "datatable-filter",
1978
+ onChange: handleFilterChange,
1979
+ filtersButtonLabel: resolvedFiltersButtonLabel,
1980
+ labels: {
1981
+ all: "All",
1982
+ dateFrom: resolvedDateFromLabel,
1983
+ dateTo: resolvedDateToLabel
1984
+ }
1985
+ },
1986
+ chips: {
1987
+ items: activeChips,
1988
+ showBadges: showFilterBadges,
1989
+ showClearAll: resolvedShowClearFiltersButton,
1990
+ clearAllLabel: resolvedClearAllLabel,
1991
+ onRemove: handleFilterRemove
1992
+ },
1993
+ right: toolbarCount,
1994
+ leftFlex: toolbarLeftFlex,
1995
+ rightFlex: toolbarRightFlex
1102
1996
  }
1103
- ), filters.slice(0, filterInlineLimit).map(renderFilterControl2), filters.length > filterInlineLimit && /* @__PURE__ */ import_react2.default.createElement(
1104
- import_ui_extensions2.Button,
1105
- {
1106
- variant: "transparent",
1107
- size: "small",
1108
- onClick: () => setShowMoreFilters((prev) => !prev)
1109
- },
1110
- /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Icon, { name: "filter", size: "sm" }),
1111
- " ",
1112
- resolvedFiltersButtonLabel
1113
- )), showMoreFilters && filters.length > filterInlineLimit && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "row", align: "center", gap: "sm", wrap: "wrap" }, filters.slice(filterInlineLimit).map(renderFilterControl2)), activeChips.length > 0 && (showFilterBadges || resolvedShowClearFiltersButton) && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "row", align: "center", gap: "sm", wrap: "wrap" }, showFilterBadges && activeChips.map((chip) => /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Tag, { key: chip.key, variant: "default", onDelete: () => handleFilterRemove(chip.key) }, chip.label)), resolvedShowClearFiltersButton && /* @__PURE__ */ import_react2.default.createElement(
1114
- import_ui_extensions2.Button,
1115
- {
1116
- variant: "transparent",
1117
- size: "extra-small",
1118
- onClick: () => handleFilterRemove("all")
1119
- },
1120
- resolvedClearAllLabel
1121
- )))), countInToolbar && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Box, { flex: 1, alignSelf: "end" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "row", justify: "end" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Text, { variant: "microcopy", format: rowCountBold ? { fontWeight: "bold" } : void 0 }, recordCountLabel)))), showSelectionBar && selectable && selectedIds.size > 0 && (renderSelectionBar ? renderSelectionBar({
1997
+ ), showSelectionBar && selectable && selectedIds.size > 0 && (renderSelectionBar ? renderSelectionBar({
1122
1998
  selectedIds,
1123
1999
  selectedCount: selectedIds.size,
1124
2000
  displayCount,
@@ -1127,27 +2003,27 @@ var DataTable = ({
1127
2003
  onSelectAll: handleSelectAllRows,
1128
2004
  onDeselectAll: handleDeselectAll,
1129
2005
  selectionActions
1130
- }) : /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "row", gap: "sm" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Box, { flex: 3 }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "row", align: "center", gap: "sm", wrap: "nowrap" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Text, { inline: true, format: { fontWeight: "demibold" } }, typeof resolvedSelectedLabel === "function" ? resolvedSelectedLabel(selectedIds.size, countLabel(selectedIds.size)) : resolvedSelectedLabel), selectedIds.size < (serverSide ? totalCount || data.length : allRowIds.length) && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Button, { variant: "transparent", size: "extra-small", onClick: handleSelectAllRows }, typeof resolvedSelectAllLabel === "function" ? resolvedSelectAllLabel(displayCount, countLabel(displayCount)) : resolvedSelectAllLabel), /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Button, { variant: "transparent", size: "extra-small", onClick: handleDeselectAll }, resolvedDeselectAllLabel), selectionActions.map((action, i) => /* @__PURE__ */ import_react2.default.createElement(
1131
- import_ui_extensions2.Button,
2006
+ }) : /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Flex, { direction: "row", gap: "sm" }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Box, { flex: 3 }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Flex, { direction: "row", align: "center", gap: "sm", wrap: "nowrap" }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Text, { inline: true, format: { fontWeight: "demibold" } }, typeof resolvedSelectedLabel === "function" ? resolvedSelectedLabel(selectedIds.size, countLabel(selectedIds.size)) : resolvedSelectedLabel), selectedIds.size < (serverSide ? totalCount || data.length : allRowIds.length) && /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Button, { variant: "transparent", size: "extra-small", onClick: handleSelectAllRows }, typeof resolvedSelectAllLabel === "function" ? resolvedSelectAllLabel(displayCount, countLabel(displayCount)) : resolvedSelectAllLabel), /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Button, { variant: "transparent", size: "extra-small", onClick: handleDeselectAll }, resolvedDeselectAllLabel), selectionActions.map((action, i) => /* @__PURE__ */ import_react7.default.createElement(
2007
+ import_ui_extensions7.Button,
1132
2008
  {
1133
2009
  key: i,
1134
2010
  variant: action.variant || "transparent",
1135
2011
  size: "extra-small",
1136
2012
  onClick: () => action.onClick([...selectedIds])
1137
2013
  },
1138
- action.icon && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Icon, { name: action.icon, size: "sm" }),
2014
+ action.icon && /* @__PURE__ */ import_react7.default.createElement(Icon, { name: action.icon, size: "sm" }),
1139
2015
  " ",
1140
2016
  action.label
1141
- )))), showRowCount && displayCount > 0 && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Box, { flex: 1, alignSelf: "center" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "row", justify: "end" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Text, { variant: "microcopy", format: rowCountBold ? { fontWeight: "bold" } : void 0 }, recordCountLabel))))), loading ? renderLoadingState ? renderLoadingState({ label: resolvedLoadingLabel }) : (
2017
+ )))), showRowCount && displayCount > 0 && /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Box, { flex: 1, alignSelf: "center" }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Flex, { direction: "row", justify: "end" }, /* @__PURE__ */ import_react7.default.createElement(CollectionCount, { text: recordCountLabel, bold: rowCountBold }))))), loading ? renderLoadingState ? renderLoadingState({ label: resolvedLoadingLabel }) : (
1142
2018
  // Same EmptyState layout as the empty state, just the "building" image
1143
2019
  // + a loading message — so loading and empty match with no layout shift.
1144
- /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Tile, null, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "column", align: "center", justify: "center" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.EmptyState, { title: resolvedLoadingLabel, imageName: "building", layout: "vertical" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Text, null, resolvedLoadingMessage))))
2020
+ /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Tile, null, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Flex, { direction: "column", align: "center", justify: "center" }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.EmptyState, { title: resolvedLoadingLabel, imageName: "building", layout: "vertical" }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Text, null, resolvedLoadingMessage))))
1145
2021
  ) : error ? renderErrorState ? renderErrorState({
1146
2022
  error,
1147
2023
  title: typeof error === "string" ? error : resolvedErrorTitle,
1148
2024
  message: typeof error === "string" ? resolvedRetryMessage : resolvedErrorMessage
1149
- }) : /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.ErrorState, { title: typeof error === "string" ? error : resolvedErrorTitle }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Text, null, typeof error === "string" ? resolvedRetryMessage : resolvedErrorMessage)) : displayRows.length === 0 ? renderEmptyState ? renderEmptyState({ title: resolvedEmptyTitle, message: resolvedEmptyMessage }) : /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Tile, null, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "column", align: "center", justify: "center" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.EmptyState, { title: resolvedEmptyTitle, layout: "vertical" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Text, null, resolvedEmptyMessage)))) : /* @__PURE__ */ import_react2.default.createElement(
1150
- import_ui_extensions2.Table,
2025
+ }) : /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.ErrorState, { title: typeof error === "string" ? error : resolvedErrorTitle }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Text, null, typeof error === "string" ? resolvedRetryMessage : resolvedErrorMessage)) : displayRows.length === 0 ? renderEmptyState ? renderEmptyState({ title: resolvedEmptyTitle, message: resolvedEmptyMessage }) : /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Tile, null, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Flex, { direction: "column", align: "center", justify: "center" }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.EmptyState, { title: resolvedEmptyTitle, layout: "vertical" }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Text, null, resolvedEmptyMessage)))) : /* @__PURE__ */ import_react7.default.createElement(
2026
+ import_ui_extensions7.Table,
1151
2027
  {
1152
2028
  bordered,
1153
2029
  flush,
@@ -1159,8 +2035,8 @@ var DataTable = ({
1159
2035
  showButtonLabels,
1160
2036
  ...maxVisiblePageButtons != null ? { maxVisiblePageButtons } : {}
1161
2037
  },
1162
- /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableHead, null, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableRow, null, selectable && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableHeader, { width: "min" }, /* @__PURE__ */ import_react2.default.createElement(
1163
- import_ui_extensions2.Checkbox,
2038
+ /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableHead, null, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableRow, null, selectable && /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableHeader, { width: "min" }, /* @__PURE__ */ import_react7.default.createElement(
2039
+ import_ui_extensions7.Checkbox,
1164
2040
  {
1165
2041
  name: "datatable-select-all",
1166
2042
  "aria-label": "Select all rows",
@@ -1169,8 +2045,8 @@ var DataTable = ({
1169
2045
  }
1170
2046
  )), columns.map((col) => {
1171
2047
  const headerAlign = resolvedEditMode === "inline" && col.editable ? void 0 : col.align;
1172
- return /* @__PURE__ */ import_react2.default.createElement(
1173
- import_ui_extensions2.TableHeader,
2048
+ return /* @__PURE__ */ import_react7.default.createElement(
2049
+ import_ui_extensions7.TableHeader,
1174
2050
  {
1175
2051
  key: col.field,
1176
2052
  width: getHeaderWidth(col),
@@ -1178,22 +2054,29 @@ var DataTable = ({
1178
2054
  sortDirection: col.sortable ? sortState[col.field] || "none" : "never",
1179
2055
  onSortChange: col.sortable ? () => handleSortChange(col.field) : void 0
1180
2056
  },
1181
- col.description ? /* @__PURE__ */ import_react2.default.createElement(import_react2.default.Fragment, null, col.label, "\xA0", /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Link, { inline: true, variant: "dark", overlay: /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Tooltip, null, col.description) }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Icon, { name: "info", screenReaderText: typeof col.description === "string" ? col.description : void 0 }))) : col.label
2057
+ col.description ? /* @__PURE__ */ import_react7.default.createElement(import_react7.default.Fragment, null, col.label, "\xA0", /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Link, { inline: true, variant: "dark", overlay: /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Tooltip, null, col.description) }, /* @__PURE__ */ import_react7.default.createElement(Icon, { name: "info", screenReaderText: typeof col.description === "string" ? col.description : void 0 }))) : col.label
1182
2058
  );
1183
- }), showRowActionsColumn && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableHeader, { width: "min" }))),
1184
- /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableBody, null, displayRows.map(
1185
- (item, idx) => item.type === "group-header" ? /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableRow, { key: `group-${item.group.key}` }, selectable && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableCell, { width: "min" }), columns.map((col, colIdx) => {
2059
+ }), showRowActionsColumn && /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableHeader, { width: "min" }))),
2060
+ /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableBody, null, displayRows.map(
2061
+ (item, idx) => item.type === "group-header" ? /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableRow, { key: `group-${item.group.key}` }, selectable && /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableCell, { width: "min" }), columns.map((col, colIdx) => {
1186
2062
  var _a, _b, _c;
1187
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableCell, { key: col.field, width: getCellWidth(col), align: colIdx === 0 ? void 0 : col.align }, colIdx === 0 ? /* @__PURE__ */ import_react2.default.createElement(
1188
- import_ui_extensions2.Link,
2063
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableCell, { key: col.field, width: getCellWidth(col), align: colIdx === 0 ? void 0 : col.align }, colIdx === 0 ? /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Flex, { direction: "row", align: "center", gap: "xs", wrap: "nowrap" }, /* @__PURE__ */ import_react7.default.createElement(
2064
+ Icon,
2065
+ {
2066
+ name: expandedGroups.has(item.group.key) ? "Down" : "Right",
2067
+ onClick: () => toggleGroup(item.group.key),
2068
+ screenReaderText: expandedGroups.has(item.group.key) ? "Collapse group" : "Expand group"
2069
+ }
2070
+ ), /* @__PURE__ */ import_react7.default.createElement(
2071
+ import_ui_extensions7.Link,
1189
2072
  {
1190
2073
  variant: "dark",
1191
2074
  onClick: () => toggleGroup(item.group.key)
1192
2075
  },
1193
- /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "row", align: "center", gap: "xs", wrap: "nowrap" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Icon, { name: expandedGroups.has(item.group.key) ? "downCarat" : "right" }), /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Text, { format: { fontWeight: "demibold" } }, item.group.label))
1194
- ) : ((_a = groupBy.aggregations) == null ? void 0 : _a[col.field]) ? groupBy.aggregations[col.field](item.group.rows, item.group.key) : ((_c = (_b = groupBy.groupValues) == null ? void 0 : _b[item.group.key]) == null ? void 0 : _c[col.field]) ?? "");
1195
- }), showRowActionsColumn && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableCell, { width: "min" })) : useColumnRendering ? /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableRow, { key: item.row[rowIdField] ?? idx }, selectable && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableCell, { width: "min" }, /* @__PURE__ */ import_react2.default.createElement(
1196
- import_ui_extensions2.Checkbox,
2076
+ /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Text, { format: { fontWeight: "demibold" } }, item.group.label)
2077
+ )) : ((_a = groupBy.aggregations) == null ? void 0 : _a[col.field]) ? groupBy.aggregations[col.field](item.group.rows, item.group.key) : ((_c = (_b = groupBy.groupValues) == null ? void 0 : _b[item.group.key]) == null ? void 0 : _c[col.field]) ?? "");
2078
+ }), showRowActionsColumn && /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableCell, { width: "min" })) : useColumnRendering ? /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableRow, { key: item.row[rowIdField] ?? idx }, selectable && /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableCell, { width: "min" }, /* @__PURE__ */ import_react7.default.createElement(
2079
+ import_ui_extensions7.Checkbox,
1197
2080
  {
1198
2081
  name: `select-${item.row[rowIdField]}`,
1199
2082
  "aria-label": "Select row",
@@ -1206,52 +2089,71 @@ var DataTable = ({
1206
2089
  const isRowEditing = editingRowId != null && rowId === editingRowId && col.editable;
1207
2090
  const isShowingInput = isDiscreteEditing || isRowEditing || resolvedEditMode === "inline" && col.editable;
1208
2091
  const cellAlign = isShowingInput ? void 0 : col.align;
1209
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableCell, { key: col.field, width: isDiscreteEditing || isRowEditing ? "auto" : getCellWidth(col), align: cellAlign }, renderCellContent(item.row, col));
1210
- }), showRowActionsColumn && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableCell, { width: "min" }, /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Flex, { direction: "row", align: "center", gap: "xs", wrap: "nowrap" }, (() => {
2092
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableCell, { key: col.field, width: isDiscreteEditing || isRowEditing ? "auto" : getCellWidth(col), align: cellAlign }, renderCellContent(item.row, col));
2093
+ }), showRowActionsColumn && /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableCell, { width: "min" }, /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.Flex, { direction: "row", align: "center", gap: "xs", wrap: "nowrap" }, (() => {
1211
2094
  const resolvedRowActions = typeof rowActions === "function" ? rowActions(item.row) : rowActions;
1212
2095
  const actions = Array.isArray(resolvedRowActions) ? resolvedRowActions : [];
1213
- return actions.map((action, i) => /* @__PURE__ */ import_react2.default.createElement(
1214
- import_ui_extensions2.Button,
2096
+ return actions.map((action, i) => /* @__PURE__ */ import_react7.default.createElement(
2097
+ import_ui_extensions7.Button,
1215
2098
  {
1216
2099
  key: i,
1217
2100
  variant: action.variant || "transparent",
1218
2101
  size: "extra-small",
1219
2102
  onClick: () => action.onClick(item.row)
1220
2103
  },
1221
- action.icon && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.Icon, { name: action.icon, size: "sm" }),
2104
+ action.icon && /* @__PURE__ */ import_react7.default.createElement(Icon, { name: action.icon, size: "sm" }),
1222
2105
  action.label && ` ${action.label}`
1223
2106
  ));
1224
2107
  })()))) : renderRow(item.row)
1225
2108
  )),
1226
- (footer || columns.some((col) => col.footer)) && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableFooter, null, typeof footer === "function" ? footer(footerData) : /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableRow, null, selectable && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableHeader, { width: "min" }), columns.map((col) => {
2109
+ (footer || columns.some((col) => col.footer)) && /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableFooter, null, typeof footer === "function" ? footer(footerData) : /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableRow, null, selectable && /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableHeader, { width: "min" }), columns.map((col) => {
1227
2110
  const footerDef = col.footer;
1228
2111
  const content = typeof footerDef === "function" ? footerDef(footerData) : footerDef || "";
1229
- return /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableHeader, { key: col.field, align: col.align }, content);
1230
- }), showRowActionsColumn && /* @__PURE__ */ import_react2.default.createElement(import_ui_extensions2.TableHeader, { width: "min" })))
2112
+ return /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableHeader, { key: col.field, align: col.align }, content);
2113
+ }), showRowActionsColumn && /* @__PURE__ */ import_react7.default.createElement(import_ui_extensions7.TableHeader, { width: "min" })))
1231
2114
  ));
1232
2115
  };
1233
2116
 
1234
- // packages/kanban/src/Kanban.jsx
1235
- var import_react4 = __toESM(require("react"));
2117
+ // src/kanban/Kanban.jsx
2118
+ var import_react10 = __toESM(require("react"));
1236
2119
 
1237
- // src/common-components/StyledText.js
1238
- var import_react3 = __toESM(require("react"));
1239
- var import_ui_extensions3 = require("@hubspot/ui-extensions");
1240
-
1241
- // src/common-components/svgDefaults.js
1242
- var HS_FONT_FAMILY = '"Lexend Deca", Helvetica, Arial, sans-serif';
1243
- var HS_TEXT_COLOR = "#33475b";
1244
- var HS_SUBTLE_BG = "#F5F8FA";
1245
- var HS_TAG_SUBTLE_BORDER = "#7C98B6";
1246
- var HS_TAG_TEXT_COLOR = HS_TEXT_COLOR;
1247
- var HS_TAG_FONT_SIZE = 12;
1248
- var HS_TAG_LINE_HEIGHT = 22;
1249
- var HS_TAG_PADDING_X = 8;
1250
- var HS_TAG_PADDING_Y = 0;
1251
- var HS_TAG_BORDER_RADIUS = 0;
1252
- var HS_TAG_BORDER_WIDTH = 1;
2120
+ // src/common-components/CollectionSortSelect.js
2121
+ var import_react8 = __toESM(require("react"));
2122
+ var import_ui_extensions8 = require("@hubspot/ui-extensions");
2123
+ var h5 = import_react8.default.createElement;
2124
+ var sanitizeId = (value) => String(value || "").replace(/[^a-zA-Z0-9_-]/g, "");
2125
+ var CollectionSortSelect = ({
2126
+ name = "collection-sort",
2127
+ value,
2128
+ options = [],
2129
+ placeholder = "Sort",
2130
+ onChange,
2131
+ includeEmpty = true,
2132
+ emptyValue = "",
2133
+ variant = "transparent",
2134
+ idPrefix,
2135
+ uniqueName = true
2136
+ }) => {
2137
+ const reactId = (0, import_react8.useId)();
2138
+ const instanceId = sanitizeId(idPrefix || reactId);
2139
+ const resolvedName = uniqueName && name ? `${name}-${instanceId}` : name;
2140
+ const mappedOptions = (options || []).map((option) => ({
2141
+ label: option.label,
2142
+ value: option.value
2143
+ }));
2144
+ return h5(import_ui_extensions8.Select, {
2145
+ name: resolvedName,
2146
+ value: value ?? emptyValue,
2147
+ variant,
2148
+ placeholder,
2149
+ options: includeEmpty ? [{ label: placeholder, value: emptyValue }, ...mappedOptions] : mappedOptions,
2150
+ onChange
2151
+ });
2152
+ };
1253
2153
 
1254
2154
  // src/common-components/StyledText.js
2155
+ var import_react9 = __toESM(require("react"));
2156
+ var import_ui_extensions9 = require("@hubspot/ui-extensions");
1255
2157
  var VARIANT_PRESETS = {
1256
2158
  bodytext: { fontSize: 14, lineHeight: 24, fontWeight: 400 },
1257
2159
  microcopy: { fontSize: 12, lineHeight: 18, fontWeight: 400 }
@@ -1426,8 +2328,8 @@ var makeStyledTextDataUri = (text, opts = {}) => {
1426
2328
  };
1427
2329
  };
1428
2330
 
1429
- // packages/kanban/src/Kanban.jsx
1430
- var import_ui_extensions4 = require("@hubspot/ui-extensions");
2331
+ // src/kanban/Kanban.jsx
2332
+ var import_ui_extensions10 = require("@hubspot/ui-extensions");
1431
2333
  var DEFAULT_DENSITY = "compact";
1432
2334
  var DEFAULT_MAX_CARDS = 10;
1433
2335
  var DEFAULT_MAX_EXPANDED = 50;
@@ -1443,7 +2345,7 @@ var applyTruncate = (value, truncate, fallback) => {
1443
2345
  if (value.length <= limit) return value;
1444
2346
  return value.slice(0, limit).trimEnd() + "\u2026";
1445
2347
  };
1446
- var DEFAULT_LABELS = {
2348
+ var DEFAULT_LABELS3 = {
1447
2349
  search: "Search cards...",
1448
2350
  // Only the total is surfaced — callers asked for a single headline number
1449
2351
  // rather than a "loaded / total" fraction. Fall back to the bare label when
@@ -1491,7 +2393,6 @@ var canStageReceiveRow = (stage, row, canMove) => {
1491
2393
  if (typeof stage.canEnter === "function" && !stage.canEnter(row)) return false;
1492
2394
  return true;
1493
2395
  };
1494
- var isFieldDirectionSortOption = (option) => !!(option && option.field && (option.direction === "asc" || option.direction === "desc"));
1495
2396
  var resolveDividers = (cardDividers, density) => {
1496
2397
  if (cardDividers === true) {
1497
2398
  return { afterTitle: true, afterSubtitle: true, afterBody: true, afterFooter: true };
@@ -1559,10 +2460,10 @@ var KanbanCard = ({
1559
2460
  const titleHref = fields.title ? resolveHref(fields.title.href, row) : null;
1560
2461
  const rawTitleValue = fields.title ? fields.title.render ? fields.title.render(resolveFieldValue(fields.title, row), row) : resolveFieldValue(fields.title, row) : null;
1561
2462
  const titleValue = fields.title && typeof rawTitleValue === "string" ? applyTruncate(rawTitleValue, fields.title.truncate, DEFAULT_TITLE_TRUNCATE) : rawTitleValue;
1562
- const titleNode = titleHref ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Link, { href: titleHref }, titleValue) : /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Text, { format: { fontWeight: "demibold" } }, titleValue);
2463
+ const titleNode = titleHref ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Link, { href: titleHref }, titleValue) : /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Text, { format: { fontWeight: "demibold" } }, titleValue);
1563
2464
  const metaNodes = fields.meta.filter((f) => !f.visible || f.visible(row)).map((f) => {
1564
2465
  const val = resolveFieldValue(f, row);
1565
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Text, { key: f.field || f.label, variant: "microcopy" }, f.render ? f.render(val, row) : val);
2466
+ return /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Text, { key: f.field || f.label, variant: "microcopy" }, f.render ? f.render(val, row) : val);
1566
2467
  });
1567
2468
  const showSubtitle = density === "comfortable" && fields.subtitle;
1568
2469
  const subtitleNode = showSubtitle ? fields.subtitle.render ? fields.subtitle.render(resolveFieldValue(fields.subtitle, row), row) : resolveFieldValue(fields.subtitle, row) : null;
@@ -1574,9 +2475,9 @@ var KanbanCard = ({
1574
2475
  const val = resolveFieldValue(f, row);
1575
2476
  const rendered = f.render ? f.render(val, row) : val;
1576
2477
  const key = f.key || f.field || f.label || `footer-${idx}`;
1577
- return /* @__PURE__ */ import_react4.default.createElement(import_react4.default.Fragment, { key }, rendered);
2478
+ return /* @__PURE__ */ import_react10.default.createElement(import_react10.default.Fragment, { key }, rendered);
1578
2479
  };
1579
- const stageControlNode = stageControl === "none" ? null : /* @__PURE__ */ import_react4.default.createElement(
2480
+ const stageControlNode = stageControl === "none" ? null : /* @__PURE__ */ import_react10.default.createElement(
1580
2481
  StageControl,
1581
2482
  {
1582
2483
  row,
@@ -1590,33 +2491,33 @@ var KanbanCard = ({
1590
2491
  labels
1591
2492
  }
1592
2493
  );
1593
- const titleRow = /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", justify: "between", align: "center", gap: "sm" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Box, { flex: 1 }, titleNode), selectable ? /* @__PURE__ */ import_react4.default.createElement(
1594
- import_ui_extensions4.Checkbox,
2494
+ const titleRow = /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "row", justify: "between", align: "center", gap: "sm" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Box, { flex: 1 }, titleNode), selectable ? /* @__PURE__ */ import_react10.default.createElement(
2495
+ import_ui_extensions10.Checkbox,
1595
2496
  {
1596
2497
  name: `kanban-select-${rowId}`,
1597
2498
  checked: selected,
1598
2499
  onChange: () => onToggleSelect(rowId)
1599
2500
  }
1600
2501
  ) : null);
1601
- const metaRow = metaNodes.length === 0 ? null : /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", justify: "end", align: "center", gap: "xs" }, metaNodes);
1602
- const bodyRow = bodyFields.length === 0 ? null : bodyAs === "descriptionList" ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.DescriptionList, { direction: "row" }, bodyFields.map((f, idx) => {
2502
+ const metaRow = metaNodes.length === 0 ? null : /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "row", justify: "end", align: "center", gap: "xs" }, metaNodes);
2503
+ const bodyRow = bodyFields.length === 0 ? null : bodyAs === "descriptionList" ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.DescriptionList, { direction: "row" }, bodyFields.map((f, idx) => {
1603
2504
  const val = resolveFieldValue(f, row);
1604
2505
  const rendered = f.render ? f.render(val, row) : val ?? "\u2014";
1605
2506
  const key = f.key || f.field || f.label || `body-${idx}`;
1606
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.DescriptionListItem, { key, label: f.label || "" }, rendered);
1607
- })) : /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "column", gap: "flush" }, bodyFields.map((f, idx) => {
2507
+ return /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.DescriptionListItem, { key, label: f.label || "" }, rendered);
2508
+ })) : /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "column", gap: "flush" }, bodyFields.map((f, idx) => {
1608
2509
  const val = resolveFieldValue(f, row);
1609
2510
  const rendered = f.render ? f.render(val, row) : val ?? "\u2014";
1610
2511
  const key = f.key || f.field || f.label || `body-${idx}`;
1611
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Text, { key, variant: "microcopy" }, f.label ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Text, { inline: true, variant: "microcopy" }, `${f.label}: `) : null, rendered);
2512
+ return /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Text, { key, variant: "microcopy" }, f.label ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Text, { inline: true, variant: "microcopy" }, `${f.label}: `) : null, rendered);
1612
2513
  }));
1613
- const footerAlertsNode = footerAlerts.length === 0 ? null : /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "column", gap: "xs" }, footerAlerts.map((f, idx) => renderFooterField(f, idx)));
2514
+ const footerAlertsNode = footerAlerts.length === 0 ? null : /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "column", gap: "xs" }, footerAlerts.map((f, idx) => renderFooterField(f, idx)));
1614
2515
  const footerActionsNode = footerActionsField ? renderFooterField(footerActionsField, footerFields.length - 1) : null;
1615
2516
  const inlineStageControl = stageControlPlacement === "inline" ? stageControlNode : null;
1616
2517
  const separateRowStageControl = stageControlPlacement === "separateRow" ? stageControlNode : null;
1617
- const footerMainRow = inlineStageControl || footerActionsNode ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", justify: "between", align: "start", gap: "sm" }, inlineStageControl ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Box, { alignSelf: "center" }, inlineStageControl) : /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Box, null), footerActionsNode ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Box, { flex: 1 }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", justify: "end", align: "start" }, footerActionsNode)) : null) : null;
1618
- const footerRow = !footerAlertsNode && !footerMainRow ? null : /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "column", gap: "xs" }, footerAlertsNode, footerMainRow);
1619
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Tile, { compact: density === "compact" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "column", gap: density === "compact" ? "xs" : "sm" }, titleRow, dividers.afterTitle && (metaRow || bodyRow || footerRow || separateRowStageControl) ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Divider, null) : null, subtitleNode ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Text, { variant: "microcopy" }, subtitleNode) : null, dividers.afterSubtitle && subtitleNode && (metaRow || bodyRow || footerRow || separateRowStageControl) ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Divider, null) : null, metaRow, bodyRow, dividers.afterBody && bodyRow && (footerRow || separateRowStageControl) ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Divider, null) : null, footerRow, dividers.afterFooter && footerRow && separateRowStageControl ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Divider, null) : null, separateRowStageControl));
2518
+ const footerMainRow = inlineStageControl || footerActionsNode ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "row", justify: "between", align: "start", gap: "sm" }, inlineStageControl ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Box, { alignSelf: "center" }, inlineStageControl) : /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Box, null), footerActionsNode ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Box, { flex: 1 }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "row", justify: "end", align: "start" }, footerActionsNode)) : null) : null;
2519
+ const footerRow = !footerAlertsNode && !footerMainRow ? null : /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "column", gap: "xs" }, footerAlertsNode, footerMainRow);
2520
+ return /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Tile, { compact: density === "compact" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "column", gap: density === "compact" ? "xs" : "sm" }, titleRow, dividers.afterTitle && (metaRow || bodyRow || footerRow || separateRowStageControl) ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Divider, null) : null, subtitleNode ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Text, { variant: "microcopy" }, subtitleNode) : null, dividers.afterSubtitle && subtitleNode && (metaRow || bodyRow || footerRow || separateRowStageControl) ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Divider, null) : null, metaRow, bodyRow, dividers.afterBody && bodyRow && (footerRow || separateRowStageControl) ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Divider, null) : null, footerRow, dividers.afterFooter && footerRow && separateRowStageControl ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Divider, null) : null, separateRowStageControl));
1620
2521
  };
1621
2522
  var StageControl = ({
1622
2523
  row,
@@ -1630,7 +2531,7 @@ var StageControl = ({
1630
2531
  labels
1631
2532
  }) => {
1632
2533
  if (isChanging) {
1633
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.LoadingSpinner, { size: "xs" });
2534
+ return /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.LoadingSpinner, { size: "xs" });
1634
2535
  }
1635
2536
  const availableStages = (stages || []).filter(
1636
2537
  (stage) => stage.value === currentStage.value || canStageReceiveRow(stage, row, canMove)
@@ -1638,17 +2539,17 @@ var StageControl = ({
1638
2539
  if (mode === "menu") {
1639
2540
  const targetStages = availableStages.filter((stage) => stage.value !== currentStage.value);
1640
2541
  if (targetStages.length === 0) {
1641
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Button, { variant: "transparent", size: "extra-small", disabled: true }, labels.moveTo);
2542
+ return /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Button, { variant: "transparent", size: "extra-small", disabled: true }, labels.moveTo);
1642
2543
  }
1643
- return /* @__PURE__ */ import_react4.default.createElement(
1644
- import_ui_extensions4.Dropdown,
2544
+ return /* @__PURE__ */ import_react10.default.createElement(
2545
+ import_ui_extensions10.Dropdown,
1645
2546
  {
1646
2547
  variant: "transparent",
1647
2548
  buttonText: labels.moveTo,
1648
2549
  buttonSize: "xs"
1649
2550
  },
1650
- targetStages.map((stage) => /* @__PURE__ */ import_react4.default.createElement(
1651
- import_ui_extensions4.Dropdown.ButtonItem,
2551
+ targetStages.map((stage) => /* @__PURE__ */ import_react10.default.createElement(
2552
+ import_ui_extensions10.Dropdown.ButtonItem,
1652
2553
  {
1653
2554
  key: stage.value,
1654
2555
  onClick: () => onStageChangeRequest(row, stage.value, currentStage.value)
@@ -1657,8 +2558,8 @@ var StageControl = ({
1657
2558
  ))
1658
2559
  );
1659
2560
  }
1660
- return /* @__PURE__ */ import_react4.default.createElement(
1661
- import_ui_extensions4.Select,
2561
+ return /* @__PURE__ */ import_react10.default.createElement(
2562
+ import_ui_extensions10.Select,
1662
2563
  {
1663
2564
  name: `stage-${rowId}`,
1664
2565
  label: "",
@@ -1692,12 +2593,12 @@ var KanbanColumn = ({
1692
2593
  children
1693
2594
  }) => {
1694
2595
  const countLabel = labels.cardCount(totalCount != null ? totalCount : bucketCount);
1695
- const countNode = countDisplay === "text" ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Text, { format: { fontWeight: "demibold" } }, countLabel) : countDisplay === "none" ? null : /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Tag, { variant: "default" }, countLabel);
2596
+ const countNode = countDisplay === "text" ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Text, { format: { fontWeight: "demibold" } }, countLabel) : countDisplay === "none" ? null : /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Tag, { variant: "default" }, countLabel);
1696
2597
  if (collapsed) {
1697
2598
  const rotated = makeRotatedLabelDataUri(stage.label);
1698
2599
  const rotatedCount = countDisplay === "none" ? null : makeRotatedTagDataUri(countLabel);
1699
- const stageIdentifier = stage.icon ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Icon, { name: stage.icon, size: "sm", screenReaderText: stage.label }) : /* @__PURE__ */ import_react4.default.createElement(
1700
- import_ui_extensions4.Image,
2600
+ const stageIdentifier = stage.icon ? /* @__PURE__ */ import_react10.default.createElement(Icon, { name: stage.icon, size: "sm", screenReaderText: stage.label }) : /* @__PURE__ */ import_react10.default.createElement(
2601
+ import_ui_extensions10.Image,
1701
2602
  {
1702
2603
  src: rotated.src,
1703
2604
  width: rotated.width,
@@ -1705,17 +2606,17 @@ var KanbanColumn = ({
1705
2606
  alt: stage.label
1706
2607
  }
1707
2608
  );
1708
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Tile, { compact: true }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "column", gap: "xs", align: "center" }, /* @__PURE__ */ import_react4.default.createElement(
1709
- import_ui_extensions4.Button,
2609
+ return /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Tile, { compact: true }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "column", gap: "xs", align: "center" }, /* @__PURE__ */ import_react10.default.createElement(
2610
+ import_ui_extensions10.Button,
1710
2611
  {
1711
2612
  variant: "transparent",
1712
2613
  size: "sm",
1713
2614
  onClick: onToggleCollapsed,
1714
2615
  tooltip: `Expand ${stage.label}`
1715
2616
  },
1716
- /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Icon, { name: "right", size: "sm", screenReaderText: `Expand ${stage.label}` })
1717
- ), stageIdentifier, rotatedCount ? /* @__PURE__ */ import_react4.default.createElement(
1718
- import_ui_extensions4.Image,
2617
+ /* @__PURE__ */ import_react10.default.createElement(Icon, { name: "right", size: "sm", screenReaderText: `Expand ${stage.label}` })
2618
+ ), stageIdentifier, rotatedCount ? /* @__PURE__ */ import_react10.default.createElement(
2619
+ import_ui_extensions10.Image,
1719
2620
  {
1720
2621
  src: rotatedCount.src,
1721
2622
  width: rotatedCount.width,
@@ -1725,135 +2626,21 @@ var KanbanColumn = ({
1725
2626
  ) : null));
1726
2627
  }
1727
2628
  const footerContent = stage.footer ? stage.footer(rows) : columnFooter ? columnFooter(rows, stage) : null;
1728
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Tile, { compact: true }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "column", gap: "xs" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", align: "center", justify: "between", gap: "xs" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", align: "center", gap: "xs" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Text, { format: { fontWeight: "demibold" } }, stage.shortLabel || stage.label), countNode, loading ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.LoadingSpinner, { size: "xs" }) : null), /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Button, { variant: "transparent", size: "sm", onClick: onToggleCollapsed, tooltip: "Collapse" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Icon, { name: "left", size: "sm", screenReaderText: `Collapse ${stage.label}` }))), footerContent ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Text, { variant: "microcopy" }, footerContent) : null, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Divider, null), children, error ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Alert, { variant: "danger", title: labels.errorTitle }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", gap: "xs", align: "center" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Text, { variant: "microcopy" }, error), onLoadMore ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Button, { variant: "transparent", size: "xs", onClick: () => onLoadMore(stage.value) }, labels.retryLoadMore) : null)) : null, !error && hasMore && onLoadMore && !loading && bucketCount > 0 ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", justify: "center" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Link, { onClick: () => onLoadMore(stage.value) }, labels.loadMore(bucketCount, totalCount))) : null, !error && loading && hasMore ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.LoadingSpinner, { size: "sm", layout: "centered", label: labels.loadingMore }) : null, !error && !hasMore && bucketCount > rows.length ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", justify: "center" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Link, { onClick: onToggleExpanded }, expanded ? labels.showLess : labels.showMore(rows.length, bucketCount))) : null, rows.length === 0 && bucketCount === 0 && !loading ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Text, { variant: "microcopy", format: { italic: true } }, labels.emptyColumn) : null));
1729
- };
1730
- var SortModalBody = ({ sortOptions, sortValue, onSortChange, labels }) => {
1731
- const hasFieldDirection = Array.isArray(sortOptions) && sortOptions.length > 0 && sortOptions.every(isFieldDirectionSortOption);
1732
- if (!hasFieldDirection) {
1733
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "column", gap: "xs" }, sortOptions.map((opt) => /* @__PURE__ */ import_react4.default.createElement(
1734
- import_ui_extensions4.Button,
1735
- {
1736
- key: opt.value,
1737
- variant: sortValue === opt.value ? "primary" : "secondary",
1738
- onClick: () => onSortChange(opt.value)
1739
- },
1740
- opt.label
1741
- )));
1742
- }
1743
- const currentOption = sortOptions.find((o) => o.value === sortValue) || sortOptions[0];
1744
- const currentField = currentOption.field;
1745
- const currentDirection = currentOption.direction;
1746
- const uniqueFields = [];
1747
- const seen = /* @__PURE__ */ new Set();
1748
- for (const opt of sortOptions) {
1749
- if (!seen.has(opt.field)) {
1750
- seen.add(opt.field);
1751
- uniqueFields.push({ value: opt.field, label: opt.fieldLabel || opt.field });
1752
- }
1753
- }
1754
- const fieldOpts = sortOptions.filter((o) => o.field === currentField);
1755
- const ascOption = fieldOpts.find((o) => o.direction === "asc");
1756
- const descOption = fieldOpts.find((o) => o.direction === "desc");
1757
- const handleFieldChange = (newField) => {
1758
- const next = sortOptions.find((o) => o.field === newField && o.direction === currentDirection) || sortOptions.find((o) => o.field === newField && o.direction === "desc") || sortOptions.find((o) => o.field === newField);
1759
- if (next) onSortChange(next.value);
1760
- };
1761
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Inline, { align: "center", gap: "small" }, /* @__PURE__ */ import_react4.default.createElement(
1762
- import_ui_extensions4.Select,
1763
- {
1764
- name: "kanban-sort-field",
1765
- label: "",
1766
- value: currentField,
1767
- onChange: handleFieldChange,
1768
- options: uniqueFields
1769
- }
1770
- ), /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Inline, { align: "center", gap: "flush" }, descOption ? /* @__PURE__ */ import_react4.default.createElement(
1771
- import_ui_extensions4.Button,
1772
- {
1773
- variant: currentDirection === "desc" ? "primary" : "secondary",
1774
- onClick: () => onSortChange(descOption.value)
1775
- },
1776
- labels.sortDescending
1777
- ) : null, ascOption ? /* @__PURE__ */ import_react4.default.createElement(
1778
- import_ui_extensions4.Button,
1779
- {
1780
- variant: currentDirection === "asc" ? "primary" : "secondary",
1781
- onClick: () => onSortChange(ascOption.value)
1782
- },
1783
- labels.sortAscending
1784
- ) : null));
1785
- };
1786
- var renderFilterControl = ({ filter, value, onChange, labels }) => {
1787
- const type = filter.type || "select";
1788
- if (type === "multiselect") {
1789
- return /* @__PURE__ */ import_react4.default.createElement(
1790
- import_ui_extensions4.MultiSelect,
1791
- {
1792
- key: filter.name,
1793
- name: `kanban-filter-${filter.name}`,
1794
- label: "",
1795
- placeholder: filter.placeholder || "All",
1796
- value: value || [],
1797
- onChange: (val) => onChange(filter.name, val),
1798
- options: filter.options
1799
- }
1800
- );
1801
- }
1802
- if (type === "dateRange") {
1803
- const rangeVal = value || { from: null, to: null };
1804
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { key: filter.name, direction: "row", align: "center", gap: "xs" }, /* @__PURE__ */ import_react4.default.createElement(
1805
- import_ui_extensions4.DateInput,
1806
- {
1807
- size: "sm",
1808
- name: `kanban-filter-${filter.name}-from`,
1809
- label: "",
1810
- placeholder: labels.dateFrom,
1811
- format: "medium",
1812
- value: rangeVal.from,
1813
- onChange: (val) => onChange(filter.name, { ...rangeVal, from: val })
1814
- }
1815
- ), /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Icon, { name: "dataSync", size: "sm" }), /* @__PURE__ */ import_react4.default.createElement(
1816
- import_ui_extensions4.DateInput,
1817
- {
1818
- size: "sm",
1819
- name: `kanban-filter-${filter.name}-to`,
1820
- label: "",
1821
- placeholder: labels.dateTo,
1822
- format: "medium",
1823
- value: rangeVal.to,
1824
- onChange: (val) => onChange(filter.name, { ...rangeVal, to: val })
1825
- }
1826
- ));
1827
- }
1828
- return /* @__PURE__ */ import_react4.default.createElement(
1829
- import_ui_extensions4.Select,
1830
- {
1831
- key: filter.name,
1832
- name: `kanban-filter-${filter.name}`,
1833
- variant: "transparent",
1834
- placeholder: filter.placeholder || "All",
1835
- value,
1836
- onChange: (val) => onChange(filter.name, val),
1837
- options: [
1838
- { label: filter.placeholder || "All", value: "" },
1839
- ...filter.options
1840
- ]
1841
- }
1842
- );
2629
+ return /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Tile, { compact: true }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "column", gap: "xs" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "row", align: "center", justify: "between", gap: "xs" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "row", align: "center", gap: "xs" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Text, { format: { fontWeight: "demibold" } }, stage.shortLabel || stage.label), countNode, loading ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.LoadingSpinner, { size: "xs" }) : null), /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Button, { variant: "transparent", size: "sm", onClick: onToggleCollapsed, tooltip: "Collapse" }, /* @__PURE__ */ import_react10.default.createElement(Icon, { name: "left", size: "sm", screenReaderText: `Collapse ${stage.label}` }))), footerContent ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Text, { variant: "microcopy" }, footerContent) : null, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Divider, null), children, error ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Alert, { variant: "danger", title: labels.errorTitle }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "row", gap: "xs", align: "center" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Text, { variant: "microcopy" }, error), onLoadMore ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Button, { variant: "transparent", size: "xs", onClick: () => onLoadMore(stage.value) }, labels.retryLoadMore) : null)) : null, !error && hasMore && onLoadMore && !loading && bucketCount > 0 ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "row", justify: "center" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Link, { onClick: () => onLoadMore(stage.value) }, labels.loadMore(bucketCount, totalCount))) : null, !error && loading && hasMore ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.LoadingSpinner, { size: "sm", layout: "centered", label: labels.loadingMore }) : null, !error && !hasMore && bucketCount > rows.length ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "row", justify: "center" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Link, { onClick: onToggleExpanded }, expanded ? labels.showLess : labels.showMore(rows.length, bucketCount))) : null, rows.length === 0 && bucketCount === 0 && !loading ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Text, { variant: "microcopy", format: { italic: true } }, labels.emptyColumn) : null));
1843
2630
  };
1844
2631
  var renderMetricsPanel = (metrics) => {
1845
2632
  if (!metrics) return null;
1846
2633
  if (!Array.isArray(metrics)) return metrics;
1847
2634
  if (metrics.length === 0) return null;
1848
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Statistics, null, metrics.map((m, i) => /* @__PURE__ */ import_react4.default.createElement(
1849
- import_ui_extensions4.StatisticsItem,
2635
+ return /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Statistics, null, metrics.map((m, i) => /* @__PURE__ */ import_react10.default.createElement(
2636
+ import_ui_extensions10.StatisticsItem,
1850
2637
  {
1851
2638
  key: m.id || m.label || i,
1852
2639
  label: m.label,
1853
2640
  number: m.number != null ? String(m.number) : ""
1854
2641
  },
1855
- m.trend ? /* @__PURE__ */ import_react4.default.createElement(
1856
- import_ui_extensions4.StatisticsTrend,
2642
+ m.trend ? /* @__PURE__ */ import_react10.default.createElement(
2643
+ import_ui_extensions10.StatisticsTrend,
1857
2644
  {
1858
2645
  direction: m.trend.direction || "increase",
1859
2646
  value: m.trend.value,
@@ -1881,78 +2668,52 @@ var KanbanToolbar = ({
1881
2668
  metrics,
1882
2669
  showMetrics,
1883
2670
  onToggleMetrics,
1884
- labels
2671
+ labels,
2672
+ toolbarLeftFlex,
2673
+ toolbarRightFlex
1885
2674
  }) => {
1886
- const [showMoreFilters, setShowMoreFilters] = (0, import_react4.useState)(false);
1887
- const inlineFilters = (filters || []).slice(0, filterInlineLimit);
1888
- const overflowFilters = (filters || []).slice(filterInlineLimit);
1889
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "column", gap: "xs" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", gap: "sm" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Box, { flex: 3 }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "column", gap: "sm" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", align: "center", gap: "sm", wrap: "wrap" }, showSearch ? /* @__PURE__ */ import_react4.default.createElement(
1890
- import_ui_extensions4.SearchInput,
2675
+ const rightControls = (sortOptions == null ? void 0 : sortOptions.length) > 0 || metrics ? /* @__PURE__ */ import_react10.default.createElement(import_react10.default.Fragment, null, sortOptions && sortOptions.length > 0 ? /* @__PURE__ */ import_react10.default.createElement(
2676
+ CollectionSortSelect,
1891
2677
  {
1892
- name: "kanban-search",
1893
- placeholder: searchPlaceholder,
1894
- value: searchValue,
1895
- onChange: onSearchChange
2678
+ name: "kanban-sort",
2679
+ value: sortValue,
2680
+ placeholder: labels.sortButton,
2681
+ options: sortOptions,
2682
+ onChange: onSortChange
1896
2683
  }
1897
- ) : null, inlineFilters.map(
1898
- (filter) => renderFilterControl({
1899
- filter,
1900
- value: filterValues[filter.name],
1901
- onChange: onFilterChange,
1902
- labels
1903
- })
1904
- ), overflowFilters.length > 0 ? /* @__PURE__ */ import_react4.default.createElement(
1905
- import_ui_extensions4.Button,
1906
- {
1907
- variant: "transparent",
1908
- size: "small",
1909
- onClick: () => setShowMoreFilters((prev) => !prev)
1910
- },
1911
- /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Icon, { name: "filter", size: "sm" }),
1912
- " ",
1913
- labels.filtersButton
1914
- ) : null), showMoreFilters && overflowFilters.length > 0 ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", align: "center", gap: "sm", wrap: "wrap" }, overflowFilters.map(
1915
- (filter) => renderFilterControl({
1916
- filter,
1917
- value: filterValues[filter.name],
1918
- onChange: onFilterChange,
1919
- labels
1920
- })
1921
- )) : null, activeChips.length > 0 && (showFilterBadges || showClearFiltersButton) ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", align: "center", gap: "sm", wrap: "wrap" }, showFilterBadges ? activeChips.map((chip) => /* @__PURE__ */ import_react4.default.createElement(
1922
- import_ui_extensions4.Tag,
1923
- {
1924
- key: chip.key,
1925
- variant: "default",
1926
- onDelete: () => onFilterRemove(chip.key)
1927
- },
1928
- chip.label
1929
- )) : null, showClearFiltersButton ? /* @__PURE__ */ import_react4.default.createElement(
1930
- import_ui_extensions4.Button,
2684
+ ) : null, metrics ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Button, { variant: "secondary", size: "small", onClick: onToggleMetrics }, /* @__PURE__ */ import_react10.default.createElement(Icon, { name: "gauge", size: "sm" }), " ", labels.metricsButton) : null) : null;
2685
+ return /* @__PURE__ */ import_react10.default.createElement(
2686
+ CollectionToolbar,
1931
2687
  {
1932
- variant: "transparent",
1933
- size: "extra-small",
1934
- onClick: () => onFilterRemove("all")
1935
- },
1936
- labels.clearAll
1937
- ) : null) : null)), (sortOptions == null ? void 0 : sortOptions.length) > 0 || metrics ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Box, { flex: 1, alignSelf: "start" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", align: "center", gap: "sm", justify: "end" }, sortOptions && sortOptions.length > 0 ? /* @__PURE__ */ import_react4.default.createElement(
1938
- import_ui_extensions4.Button,
1939
- {
1940
- variant: "secondary",
1941
- size: "small",
1942
- overlay: /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Modal, { id: "kanban-sort-modal", title: labels.sortButton }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.ModalBody, null, /* @__PURE__ */ import_react4.default.createElement(
1943
- SortModalBody,
1944
- {
1945
- sortOptions,
1946
- sortValue,
1947
- onSortChange,
1948
- labels
1949
- }
1950
- )))
1951
- },
1952
- /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Icon, { name: "sortAmtDesc", size: "sm" }),
1953
- " ",
1954
- labels.sortButton
1955
- ) : null, metrics ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Button, { variant: "secondary", size: "small", onClick: onToggleMetrics }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Icon, { name: "reports", size: "sm" }), " ", labels.metricsButton) : null)) : null), showMetrics && metrics ? renderMetricsPanel(metrics) : null);
2688
+ search: {
2689
+ visible: showSearch,
2690
+ name: "kanban-search",
2691
+ placeholder: searchPlaceholder,
2692
+ value: searchValue,
2693
+ onChange: onSearchChange
2694
+ },
2695
+ filters: {
2696
+ items: filters,
2697
+ values: filterValues,
2698
+ inlineLimit: filterInlineLimit,
2699
+ namePrefix: "kanban-filter",
2700
+ onChange: onFilterChange,
2701
+ labels
2702
+ },
2703
+ chips: {
2704
+ items: activeChips,
2705
+ showBadges: showFilterBadges,
2706
+ showClearAll: showClearFiltersButton,
2707
+ clearAllLabel: labels.clearAll,
2708
+ onRemove: onFilterRemove
2709
+ },
2710
+ right: rightControls,
2711
+ footer: showMetrics && metrics ? renderMetricsPanel(metrics) : null,
2712
+ labels,
2713
+ leftFlex: toolbarLeftFlex,
2714
+ rightFlex: toolbarRightFlex
2715
+ }
2716
+ );
1956
2717
  };
1957
2718
  var DefaultSelectionBar = ({
1958
2719
  selectedIds,
@@ -1966,15 +2727,15 @@ var DefaultSelectionBar = ({
1966
2727
  labels
1967
2728
  }) => {
1968
2729
  const pluralForCount = (n) => countLabel(n);
1969
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Tile, { compact: true }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Inline, { align: "center", justify: "between", gap: "small" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Inline, { align: "center", gap: "small" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Text, { inline: true, format: { fontWeight: "demibold" } }, typeof labels.selected === "function" ? labels.selected(selectedCount, pluralForCount(selectedCount)) : `${selectedCount} selected`), !allSelected ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Button, { variant: "transparent", size: "extra-small", onClick: onSelectAll }, typeof labels.selectAll === "function" ? labels.selectAll(displayCount, pluralForCount(displayCount)) : labels.selectAll) : null, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Button, { variant: "transparent", size: "extra-small", onClick: onDeselectAll }, labels.deselectAll)), (selectionActions || []).length > 0 ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Inline, { align: "center", gap: "extra-small" }, selectionActions.map((action, i) => /* @__PURE__ */ import_react4.default.createElement(
1970
- import_ui_extensions4.Button,
2730
+ return /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Tile, { compact: true }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Inline, { align: "center", justify: "between", gap: "small" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Inline, { align: "center", gap: "small" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Text, { inline: true, format: { fontWeight: "demibold" } }, typeof labels.selected === "function" ? labels.selected(selectedCount, pluralForCount(selectedCount)) : `${selectedCount} selected`), !allSelected ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Button, { variant: "transparent", size: "extra-small", onClick: onSelectAll }, typeof labels.selectAll === "function" ? labels.selectAll(displayCount, pluralForCount(displayCount)) : labels.selectAll) : null, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Button, { variant: "transparent", size: "extra-small", onClick: onDeselectAll }, labels.deselectAll)), (selectionActions || []).length > 0 ? /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Inline, { align: "center", gap: "extra-small" }, selectionActions.map((action, i) => /* @__PURE__ */ import_react10.default.createElement(
2731
+ import_ui_extensions10.Button,
1971
2732
  {
1972
2733
  key: action.key || action.label || i,
1973
2734
  variant: action.variant || "transparent",
1974
2735
  size: "extra-small",
1975
2736
  onClick: () => action.onClick([...selectedIds])
1976
2737
  },
1977
- action.icon ? /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Icon, { name: action.icon, size: "sm" }) : null,
2738
+ action.icon ? /* @__PURE__ */ import_react10.default.createElement(Icon, { name: action.icon, size: "sm" }) : null,
1978
2739
  " ",
1979
2740
  action.label
1980
2741
  ))) : null));
@@ -2026,6 +2787,8 @@ var Kanban = ({
2026
2787
  filterInlineLimit = DEFAULT_FILTER_INLINE_LIMIT,
2027
2788
  showFilterBadges = true,
2028
2789
  showClearFiltersButton,
2790
+ toolbarLeftFlex = 3,
2791
+ toolbarRightFlex = 1,
2029
2792
  sortOptions,
2030
2793
  defaultSort,
2031
2794
  sort,
@@ -2056,23 +2819,17 @@ var Kanban = ({
2056
2819
  renderErrorState
2057
2820
  }) => {
2058
2821
  var _a;
2059
- const labels = (0, import_react4.useMemo)(() => ({ ...DEFAULT_LABELS, ...labelsProp || {} }), [labelsProp]);
2060
- const [internalSearch, setInternalSearch] = (0, import_react4.useState)(searchValue != null ? searchValue : "");
2061
- const [internalFilters, setInternalFilters] = (0, import_react4.useState)(() => {
2062
- const init = {};
2063
- (filters || []).forEach((f) => {
2064
- init[f.name] = getEmptyFilterValue(f);
2065
- });
2066
- return init;
2067
- });
2068
- const [internalSort, setInternalSort] = (0, import_react4.useState)(defaultSort || (((_a = sortOptions == null ? void 0 : sortOptions[0]) == null ? void 0 : _a.value) ?? ""));
2069
- const [internalCollapsed, setInternalCollapsed] = (0, import_react4.useState)([]);
2070
- const [internalExpanded, setInternalExpanded] = (0, import_react4.useState)([]);
2071
- const [internalSelection, setInternalSelection] = (0, import_react4.useState)([]);
2072
- const [internalShowMetrics, setInternalShowMetrics] = (0, import_react4.useState)(false);
2073
- const [transitionPrompts, setTransitionPrompts] = (0, import_react4.useState)({});
2822
+ const labels = (0, import_react10.useMemo)(() => ({ ...DEFAULT_LABELS3, ...labelsProp || {} }), [labelsProp]);
2823
+ const [internalSearch, setInternalSearch] = (0, import_react10.useState)(searchValue != null ? searchValue : "");
2824
+ const [internalFilters, setInternalFilters] = (0, import_react10.useState)(() => getEmptyFilterValues(filters));
2825
+ const [internalSort, setInternalSort] = (0, import_react10.useState)(defaultSort || (((_a = sortOptions == null ? void 0 : sortOptions[0]) == null ? void 0 : _a.value) ?? ""));
2826
+ const [internalCollapsed, setInternalCollapsed] = (0, import_react10.useState)([]);
2827
+ const [internalExpanded, setInternalExpanded] = (0, import_react10.useState)([]);
2828
+ const [internalSelection, setInternalSelection] = (0, import_react10.useState)([]);
2829
+ const [internalShowMetrics, setInternalShowMetrics] = (0, import_react10.useState)(false);
2830
+ const [transitionPrompts, setTransitionPrompts] = (0, import_react10.useState)({});
2074
2831
  const resolvedShowMetrics = controlledShowMetrics != null ? controlledShowMetrics : internalShowMetrics;
2075
- const toggleMetrics = (0, import_react4.useCallback)(() => {
2832
+ const toggleMetrics = (0, import_react10.useCallback)(() => {
2076
2833
  const next = !resolvedShowMetrics;
2077
2834
  if (onMetricsToggle) onMetricsToggle(next);
2078
2835
  if (controlledShowMetrics == null) setInternalShowMetrics(next);
@@ -2086,14 +2843,14 @@ var Kanban = ({
2086
2843
  const resolvedExpanded = expandedStages != null ? expandedStages : internalExpanded;
2087
2844
  const resolvedSelection = selectedIds != null ? selectedIds : internalSelection;
2088
2845
  const searchEnabled = showSearch && Array.isArray(searchFields) && searchFields.length > 0;
2089
- const stagesByValue = (0, import_react4.useMemo)(() => {
2846
+ const stagesByValue = (0, import_react10.useMemo)(() => {
2090
2847
  const map = {};
2091
2848
  for (const stage of stages || []) {
2092
2849
  map[stage.value] = stage;
2093
2850
  }
2094
2851
  return map;
2095
2852
  }, [stages]);
2096
- const fireParamsChange = (0, import_react4.useCallback)((overrides = {}) => {
2853
+ const fireParamsChange = (0, import_react10.useCallback)((overrides = {}) => {
2097
2854
  if (!onParamsChange) return;
2098
2855
  onParamsChange({
2099
2856
  search: overrides.search != null ? overrides.search : resolvedSearch,
@@ -2102,14 +2859,14 @@ var Kanban = ({
2102
2859
  collapsedStages: overrides.collapsedStages != null ? overrides.collapsedStages : resolvedCollapsed
2103
2860
  });
2104
2861
  }, [onParamsChange, resolvedCollapsed, resolvedFilters, resolvedSearch, resolvedSort]);
2105
- const lastAppliedSearchRef = (0, import_react4.useRef)(searchValue != null ? searchValue : "");
2106
- (0, import_react4.useEffect)(() => {
2862
+ const lastAppliedSearchRef = (0, import_react10.useRef)(searchValue != null ? searchValue : "");
2863
+ (0, import_react10.useEffect)(() => {
2107
2864
  if (searchValue == null) return;
2108
2865
  if (searchValue === lastAppliedSearchRef.current) return;
2109
2866
  lastAppliedSearchRef.current = searchValue;
2110
2867
  setInternalSearch(searchValue);
2111
2868
  }, [searchValue]);
2112
- const dispatchSearch = (0, import_react4.useCallback)(
2869
+ const dispatchSearch = (0, import_react10.useCallback)(
2113
2870
  (val) => {
2114
2871
  lastAppliedSearchRef.current = val;
2115
2872
  if (onSearchChange) onSearchChange(val);
@@ -2118,14 +2875,14 @@ var Kanban = ({
2118
2875
  [fireParamsChange, onSearchChange]
2119
2876
  );
2120
2877
  const dispatchSearchDebounced = useDebouncedDispatch(internalSearch, searchDebounce, dispatchSearch);
2121
- const handleSearch = (0, import_react4.useCallback)(
2878
+ const handleSearch = (0, import_react10.useCallback)(
2122
2879
  (val) => {
2123
2880
  setInternalSearch(val);
2124
2881
  dispatchSearchDebounced(val);
2125
2882
  },
2126
2883
  [dispatchSearchDebounced]
2127
2884
  );
2128
- const handleFilter = (0, import_react4.useCallback)(
2885
+ const handleFilter = (0, import_react10.useCallback)(
2129
2886
  (name, val) => {
2130
2887
  const next = { ...resolvedFilters, [name]: val };
2131
2888
  if (filterValues == null) setInternalFilters(next);
@@ -2134,28 +2891,16 @@ var Kanban = ({
2134
2891
  },
2135
2892
  [fireParamsChange, onFilterChange, filterValues, resolvedFilters]
2136
2893
  );
2137
- const handleFilterRemove = (0, import_react4.useCallback)(
2894
+ const handleFilterRemove = (0, import_react10.useCallback)(
2138
2895
  (key) => {
2139
- if (key === "all") {
2140
- const cleared = {};
2141
- (filters || []).forEach((f) => {
2142
- cleared[f.name] = getEmptyFilterValue(f);
2143
- });
2144
- if (filterValues == null) setInternalFilters(cleared);
2145
- if (onFilterChange) onFilterChange(cleared);
2146
- fireParamsChange({ filters: cleared });
2147
- return;
2148
- }
2149
- const filter = (filters || []).find((f) => f.name === key);
2150
- const emptyVal = filter ? getEmptyFilterValue(filter) : "";
2151
- const next = { ...resolvedFilters, [key]: emptyVal };
2896
+ const next = resetFilterValues(filters, resolvedFilters, key);
2152
2897
  if (filterValues == null) setInternalFilters(next);
2153
2898
  if (onFilterChange) onFilterChange(next);
2154
2899
  fireParamsChange({ filters: next });
2155
2900
  },
2156
2901
  [filters, filterValues, fireParamsChange, onFilterChange, resolvedFilters]
2157
2902
  );
2158
- const handleSort = (0, import_react4.useCallback)(
2903
+ const handleSort = (0, import_react10.useCallback)(
2159
2904
  (val) => {
2160
2905
  if (onSortChange) onSortChange(val);
2161
2906
  if (sort == null) setInternalSort(val);
@@ -2163,7 +2908,7 @@ var Kanban = ({
2163
2908
  },
2164
2909
  [fireParamsChange, onSortChange, sort]
2165
2910
  );
2166
- const handleCollapsed = (0, import_react4.useCallback)(
2911
+ const handleCollapsed = (0, import_react10.useCallback)(
2167
2912
  (stageValue) => {
2168
2913
  const next = resolvedCollapsed.includes(stageValue) ? resolvedCollapsed.filter((v) => v !== stageValue) : [...resolvedCollapsed, stageValue];
2169
2914
  if (onCollapsedStagesChange) onCollapsedStagesChange(next);
@@ -2172,7 +2917,7 @@ var Kanban = ({
2172
2917
  },
2173
2918
  [fireParamsChange, resolvedCollapsed, collapsedStages, onCollapsedStagesChange]
2174
2919
  );
2175
- const handleExpanded = (0, import_react4.useCallback)(
2920
+ const handleExpanded = (0, import_react10.useCallback)(
2176
2921
  (stageValue) => {
2177
2922
  const next = resolvedExpanded.includes(stageValue) ? resolvedExpanded.filter((v) => v !== stageValue) : [...resolvedExpanded, stageValue];
2178
2923
  if (onExpandedStagesChange) onExpandedStagesChange(next);
@@ -2180,7 +2925,7 @@ var Kanban = ({
2180
2925
  },
2181
2926
  [resolvedExpanded, expandedStages, onExpandedStagesChange]
2182
2927
  );
2183
- const handleToggleSelect = (0, import_react4.useCallback)(
2928
+ const handleToggleSelect = (0, import_react10.useCallback)(
2184
2929
  (rowId) => {
2185
2930
  const next = resolvedSelection.includes(rowId) ? resolvedSelection.filter((id) => id !== rowId) : [...resolvedSelection, rowId];
2186
2931
  if (onSelectionChange) onSelectionChange(next);
@@ -2188,7 +2933,7 @@ var Kanban = ({
2188
2933
  },
2189
2934
  [resolvedSelection, selectedIds, onSelectionChange]
2190
2935
  );
2191
- const clearTransitionPrompt = (0, import_react4.useCallback)((rowId) => {
2936
+ const clearTransitionPrompt = (0, import_react10.useCallback)((rowId) => {
2192
2937
  setTransitionPrompts((prev) => {
2193
2938
  if (!Object.prototype.hasOwnProperty.call(prev, rowId)) return prev;
2194
2939
  const next = { ...prev };
@@ -2196,14 +2941,14 @@ var Kanban = ({
2196
2941
  return next;
2197
2942
  });
2198
2943
  }, []);
2199
- const commitStageChange = (0, import_react4.useCallback)(
2944
+ const commitStageChange = (0, import_react10.useCallback)(
2200
2945
  (row, newStage, oldStage, result) => {
2201
2946
  clearTransitionPrompt(row[rowIdField]);
2202
2947
  if (onStageChange) onStageChange(row, newStage, oldStage, result);
2203
2948
  },
2204
2949
  [clearTransitionPrompt, onStageChange, rowIdField]
2205
2950
  );
2206
- const selectionQueryKey = (0, import_react4.useMemo)(() => {
2951
+ const selectionQueryKey = (0, import_react10.useMemo)(() => {
2207
2952
  if (!resetSelectionOnQueryChange) return "";
2208
2953
  return toStableKey({
2209
2954
  search: resolvedSearch,
@@ -2211,25 +2956,25 @@ var Kanban = ({
2211
2956
  sort: resolvedSort || null
2212
2957
  });
2213
2958
  }, [resetSelectionOnQueryChange, resolvedFilters, resolvedSearch, resolvedSort]);
2214
- const combinedSelectionResetKey = (0, import_react4.useMemo)(
2959
+ const combinedSelectionResetKey = (0, import_react10.useMemo)(
2215
2960
  () => `${selectionQueryKey}::${selectionResetKey == null ? "" : toStableKey(selectionResetKey)}`,
2216
2961
  [selectionQueryKey, selectionResetKey]
2217
2962
  );
2218
- const clearSelection = (0, import_react4.useCallback)(() => setInternalSelection([]), []);
2963
+ const clearSelection = (0, import_react10.useCallback)(() => setInternalSelection([]), []);
2219
2964
  useSelectionReset({
2220
2965
  resetKey: combinedSelectionResetKey,
2221
2966
  enabled: selectable,
2222
2967
  isControlled: selectedIds != null,
2223
2968
  clearSelection
2224
2969
  });
2225
- const getStageFor = (0, import_react4.useCallback)(
2970
+ const getStageFor = (0, import_react10.useCallback)(
2226
2971
  (row) => {
2227
2972
  if (typeof groupBy === "function") return groupBy(row);
2228
2973
  return row[groupBy];
2229
2974
  },
2230
2975
  [groupBy]
2231
2976
  );
2232
- const filteredData = (0, import_react4.useMemo)(() => {
2977
+ const filteredData = (0, import_react10.useMemo)(() => {
2233
2978
  let result = filterRows(data, filters, resolvedFilters);
2234
2979
  const searchLower = (resolvedSearch || "").toLowerCase().trim();
2235
2980
  if (searchEnabled && searchLower) {
@@ -2240,7 +2985,7 @@ var Kanban = ({
2240
2985
  }
2241
2986
  return result;
2242
2987
  }, [data, resolvedSearch, resolvedFilters, filters, searchEnabled, searchFields, fuzzySearch, fuzzyOptions]);
2243
- const buckets = (0, import_react4.useMemo)(() => {
2988
+ const buckets = (0, import_react10.useMemo)(() => {
2244
2989
  const map = {};
2245
2990
  for (const stage of stages) map[stage.value] = [];
2246
2991
  for (const row of filteredData) {
@@ -2254,12 +2999,12 @@ var Kanban = ({
2254
2999
  }
2255
3000
  return map;
2256
3001
  }, [filteredData, stages, getStageFor]);
2257
- const sortComparator = (0, import_react4.useMemo)(() => {
3002
+ const sortComparator = (0, import_react10.useMemo)(() => {
2258
3003
  if (!sortOptions || !resolvedSort) return null;
2259
3004
  const opt = sortOptions.find((s) => s.value === resolvedSort);
2260
3005
  return (opt == null ? void 0 : opt.comparator) || null;
2261
3006
  }, [sortOptions, resolvedSort]);
2262
- const sortedBuckets = (0, import_react4.useMemo)(() => {
3007
+ const sortedBuckets = (0, import_react10.useMemo)(() => {
2263
3008
  if (!sortComparator) return buckets;
2264
3009
  const out = {};
2265
3010
  for (const key of Object.keys(buckets)) {
@@ -2267,37 +3012,16 @@ var Kanban = ({
2267
3012
  }
2268
3013
  return out;
2269
3014
  }, [buckets, sortComparator]);
2270
- const activeChips = (0, import_react4.useMemo)(() => {
2271
- const chips = [];
2272
- for (const filter of filters || []) {
2273
- const val = resolvedFilters[filter.name];
2274
- if (!isFilterActive(filter, val)) continue;
2275
- const type = filter.type || "select";
2276
- const prefix = filter.chipLabel || filter.placeholder || filter.name;
2277
- if (type === "multiselect") {
2278
- const labelList = val.map((v) => {
2279
- var _a2;
2280
- return ((_a2 = filter.options.find((o) => o.value === v)) == null ? void 0 : _a2.label) || v;
2281
- }).join(", ");
2282
- chips.push({ key: filter.name, label: `${prefix}: ${labelList}` });
2283
- } else if (type === "dateRange") {
2284
- const parts = [];
2285
- if (val.from) parts.push(`from ${formatDateChip(val.from)}`);
2286
- if (val.to) parts.push(`to ${formatDateChip(val.to)}`);
2287
- chips.push({ key: filter.name, label: `${prefix}: ${parts.join(" ")}` });
2288
- } else {
2289
- const opt = filter.options.find((o) => o.value === val);
2290
- chips.push({ key: filter.name, label: `${prefix}: ${(opt == null ? void 0 : opt.label) || val}` });
2291
- }
2292
- }
2293
- return chips;
2294
- }, [filters, resolvedFilters]);
2295
- const partitioned = (0, import_react4.useMemo)(() => partitionFields(cardFields || []), [cardFields]);
2296
- const dividers = (0, import_react4.useMemo)(() => resolveDividers(cardDividers, cardDensity), [cardDividers, cardDensity]);
3015
+ const activeChips = (0, import_react10.useMemo)(
3016
+ () => buildActiveFilterChips(filters, resolvedFilters),
3017
+ [filters, resolvedFilters]
3018
+ );
3019
+ const partitioned = (0, import_react10.useMemo)(() => partitionFields(cardFields || []), [cardFields]);
3020
+ const dividers = (0, import_react10.useMemo)(() => resolveDividers(cardDividers, cardDensity), [cardDividers, cardDensity]);
2297
3021
  const resolvedMaxBody = maxBodyLines || (cardDensity === "comfortable" ? 5 : 3);
2298
3022
  const resolvedStageControl = stageControl || (cardDensity === "comfortable" ? "select" : "menu");
2299
3023
  const resolvedStageControlPlacement = stageControlPlacement || (resolvedStageControl === "menu" ? "inline" : "separateRow");
2300
- const handleStageChangeRequest = (0, import_react4.useCallback)(
3024
+ const handleStageChangeRequest = (0, import_react10.useCallback)(
2301
3025
  (row, newStage, oldStage) => {
2302
3026
  var _a2;
2303
3027
  if (!newStage || newStage === oldStage) return;
@@ -2319,14 +3043,14 @@ var Kanban = ({
2319
3043
  },
2320
3044
  [canMove, commitStageChange, rowIdField, stagesByValue]
2321
3045
  );
2322
- const renderCardNode = (0, import_react4.useCallback)(
3046
+ const renderCardNode = (0, import_react10.useCallback)(
2323
3047
  (row, stage) => {
2324
3048
  var _a2;
2325
3049
  const rowId = row[rowIdField];
2326
3050
  const activePrompt = transitionPrompts[rowId];
2327
3051
  const promptStage = activePrompt ? stagesByValue[activePrompt.toStage] : null;
2328
3052
  if ((_a2 = promptStage == null ? void 0 : promptStage.onEnterRequired) == null ? void 0 : _a2.render) {
2329
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Tile, { key: rowId, compact: cardDensity === "compact" }, promptStage.onEnterRequired.render({
3053
+ return /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Tile, { key: rowId, compact: cardDensity === "compact" }, promptStage.onEnterRequired.render({
2330
3054
  row: activePrompt.row,
2331
3055
  fromStage: activePrompt.fromStage,
2332
3056
  toStage: activePrompt.toStage,
@@ -2342,7 +3066,7 @@ var Kanban = ({
2342
3066
  onStageChange: (newStage) => handleStageChangeRequest(row, newStage, stage.value)
2343
3067
  });
2344
3068
  }
2345
- return /* @__PURE__ */ import_react4.default.createElement(
3069
+ return /* @__PURE__ */ import_react10.default.createElement(
2346
3070
  KanbanCard,
2347
3071
  {
2348
3072
  key: rowId,
@@ -2418,21 +3142,21 @@ var Kanban = ({
2418
3142
  error,
2419
3143
  title: labels.errorTitle,
2420
3144
  message: typeof error === "string" ? error : labels.errorMessage
2421
- }) : /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Alert, { variant: "danger", title: labels.errorTitle }, typeof error === "string" ? error : labels.errorMessage) : loading && data.length === 0 ? renderLoadingState ? renderLoadingState({ label: labels.loading }) : (
3145
+ }) : /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Alert, { variant: "danger", title: labels.errorTitle }, typeof error === "string" ? error : labels.errorMessage) : loading && data.length === 0 ? renderLoadingState ? renderLoadingState({ label: labels.loading }) : (
2422
3146
  // Same EmptyState layout as the empty state (just the "building" image +
2423
3147
  // a loading message) so loading and empty match with no layout shift.
2424
- /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Tile, null, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "column", align: "center", justify: "center" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.EmptyState, { title: labels.loading, imageName: "building", layout: "vertical" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Text, null, labels.loadingMessage))))
3148
+ /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Tile, null, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "column", align: "center", justify: "center" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.EmptyState, { title: labels.loading, imageName: "building", layout: "vertical" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Text, null, labels.loadingMessage))))
2425
3149
  ) : filteredData.length === 0 ? renderEmptyState ? renderEmptyState({
2426
3150
  title: labels.emptyTitle,
2427
3151
  message: labels.emptyMessage
2428
- }) : /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Tile, null, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "column", align: "center", justify: "center" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.EmptyState, { title: labels.emptyTitle, layout: "vertical" }, /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Text, null, labels.emptyMessage)))) : /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "row", gap: "sm", wrap: "nowrap" }, stages.map((stage) => {
3152
+ }) : /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Tile, null, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "column", align: "center", justify: "center" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.EmptyState, { title: labels.emptyTitle, layout: "vertical" }, /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Text, null, labels.emptyMessage)))) : /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "row", gap: "sm", wrap: "nowrap" }, stages.map((stage) => {
2429
3153
  const stageRows = sortedBuckets[stage.value] || [];
2430
3154
  const meta = stageMeta == null ? void 0 : stageMeta[stage.value];
2431
3155
  const isExpanded = resolvedExpanded.includes(stage.value);
2432
3156
  const clamp = isExpanded ? maxCardsExpanded : maxCardsPerColumn;
2433
3157
  const visibleRows = stageRows.slice(0, clamp);
2434
3158
  const isCollapsed = resolvedCollapsed.includes(stage.value);
2435
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.AutoGrid, { key: stage.value, columnWidth: isCollapsed ? 72 : effectiveColumnWidth }, /* @__PURE__ */ import_react4.default.createElement(
3159
+ return /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.AutoGrid, { key: stage.value, columnWidth: isCollapsed ? 72 : effectiveColumnWidth }, /* @__PURE__ */ import_react10.default.createElement(
2436
3160
  KanbanColumn,
2437
3161
  {
2438
3162
  stage,
@@ -2455,7 +3179,7 @@ var Kanban = ({
2455
3179
  ));
2456
3180
  }));
2457
3181
  const resolvedShowClearFiltersButton = showClearFiltersButton ?? showFilterBadges;
2458
- return /* @__PURE__ */ import_react4.default.createElement(import_ui_extensions4.Flex, { direction: "column", gap: "sm" }, /* @__PURE__ */ import_react4.default.createElement(
3182
+ return /* @__PURE__ */ import_react10.default.createElement(import_ui_extensions10.Flex, { direction: "column", gap: "sm" }, /* @__PURE__ */ import_react10.default.createElement(
2459
3183
  KanbanToolbar,
2460
3184
  {
2461
3185
  showSearch: searchEnabled,
@@ -2476,9 +3200,11 @@ var Kanban = ({
2476
3200
  metrics,
2477
3201
  showMetrics: resolvedShowMetrics,
2478
3202
  onToggleMetrics: toggleMetrics,
2479
- labels
3203
+ labels,
3204
+ toolbarLeftFlex,
3205
+ toolbarRightFlex
2480
3206
  }
2481
- ), showSelectionBar && selectable && selectedCount > 0 ? renderSelectionBar ? renderSelectionBar(selectionBarProps) : /* @__PURE__ */ import_react4.default.createElement(DefaultSelectionBar, { ...selectionBarProps }) : null, mainContent);
3207
+ ), showSelectionBar && selectable && selectedCount > 0 ? renderSelectionBar ? renderSelectionBar(selectionBarProps) : /* @__PURE__ */ import_react10.default.createElement(DefaultSelectionBar, { ...selectionBarProps }) : null, mainContent);
2482
3208
  };
2483
3209
 
2484
3210
  // src/utils/objectPath.js
@@ -2569,7 +3295,7 @@ var buildCrmSearchConfig = (params = EMPTY_OBJECT, options = EMPTY_OBJECT) => {
2569
3295
  sorts: withStableSort(mappedSorts ?? baseConfig.sorts),
2570
3296
  pageLength: pageLength ?? params.pageLength ?? baseConfig.pageLength
2571
3297
  };
2572
- if (propertyMap && Object.keys(propertyMap).length && params.filters) {
3298
+ if (!filterMap && propertyMap && Object.keys(propertyMap).length && params.filters) {
2573
3299
  const filters = Object.entries(params.filters).filter(([, value]) => value !== void 0 && value !== null && value !== "" && !(Array.isArray(value) && value.length === 0)).map(([name, value]) => {
2574
3300
  const propertyName = propertyMap[name] || name;
2575
3301
  if (Array.isArray(value)) return { propertyName, operator: "IN", values: value };
@@ -2596,15 +3322,18 @@ var useCrmSearchDataSource = (params = EMPTY_OBJECT, options = EMPTY_OBJECT) =>
2596
3322
  error,
2597
3323
  mapResponse
2598
3324
  } = options;
2599
- const config = (0, import_react5.useMemo)(() => buildCrmSearchConfig(params, options), [params, options]);
2600
- const response = (0, import_ui_extensions5.useCrmSearch)(config, format);
2601
- return (0, import_react5.useMemo)(() => {
3325
+ const config = (0, import_react11.useMemo)(() => buildCrmSearchConfig(params, options), [params, options]);
3326
+ const response = (0, import_ui_extensions11.useCrmSearch)(config, format);
3327
+ return (0, import_react11.useMemo)(() => {
3328
+ var _a;
2602
3329
  const rows = mapResponse ? mapResponse(response) : normalizeCrmSearchRows(response, { idField: rowIdField, ...row || EMPTY_OBJECT });
2603
3330
  const resolvedTotal = typeof totalCount === "function" ? totalCount(response) : totalCount ?? pickTotal(response, rows.length);
2604
3331
  return {
2605
3332
  data: rows,
2606
3333
  rows,
2607
3334
  response,
3335
+ pagination: response == null ? void 0 : response.pagination,
3336
+ hasMore: ((_a = response == null ? void 0 : response.pagination) == null ? void 0 : _a.hasNextPage) ?? (response == null ? void 0 : response.hasMore) ?? false,
2608
3337
  loading: typeof loading === "function" ? loading(response) : loading ?? !!(response == null ? void 0 : response.isLoading),
2609
3338
  isLoading: typeof loading === "function" ? loading(response) : loading ?? !!(response == null ? void 0 : response.isLoading),
2610
3339
  error: typeof error === "function" ? error(response) : error ?? coerceError(response == null ? void 0 : response.error),
@@ -2633,7 +3362,7 @@ var crmSearchResultToOption = (row, options = EMPTY_OBJECT) => {
2633
3362
  var useCrmSearchOptions = (params = EMPTY_OBJECT, options = EMPTY_OBJECT) => {
2634
3363
  const dataSource = useCrmSearchDataSource(params, options);
2635
3364
  const optionConfig = options.option || options;
2636
- return (0, import_react5.useMemo)(() => ({
3365
+ return (0, import_react11.useMemo)(() => ({
2637
3366
  ...dataSource,
2638
3367
  options: dataSource.rows.map((row) => crmSearchResultToOption(row, optionConfig))
2639
3368
  }), [dataSource, optionConfig]);
@@ -2695,6 +3424,37 @@ var buildAutoFiltersFromRows = ({ rows, fields, labelsRef, maxOptions = 25 }) =>
2695
3424
  var resolveCrmObjectType = (objectType) => CRM_OBJECT_TYPES[objectType] || objectType;
2696
3425
  var DEFAULT_CRM_FORMAT = { propertiesToFormat: "all" };
2697
3426
  var defaultCrmMapRecord = (record) => ({ objectId: record.objectId, ...record.properties });
3427
+ var stableStringify = (value) => {
3428
+ const normalize = (item) => {
3429
+ if (Array.isArray(item)) return item.map(normalize);
3430
+ if (isPlainObject(item)) {
3431
+ return Object.keys(item).sort().reduce((acc, key) => {
3432
+ acc[key] = normalize(item[key]);
3433
+ return acc;
3434
+ }, {});
3435
+ }
3436
+ if (typeof item === "function") return item.name || "[function]";
3437
+ return item;
3438
+ };
3439
+ try {
3440
+ return JSON.stringify(normalize(value));
3441
+ } catch {
3442
+ return String(value);
3443
+ }
3444
+ };
3445
+ var appendUniqueRows = (previousRows, nextRows, rowIdField) => {
3446
+ if (!previousRows.length) return nextRows || EMPTY_ARRAY;
3447
+ if (!(nextRows == null ? void 0 : nextRows.length)) return previousRows;
3448
+ const seen = new Set(previousRows.map((row) => getByPath(row, rowIdField) ?? (row == null ? void 0 : row.objectId) ?? (row == null ? void 0 : row.id)));
3449
+ const additions = nextRows.filter((row) => {
3450
+ const id = getByPath(row, rowIdField) ?? (row == null ? void 0 : row.objectId) ?? (row == null ? void 0 : row.id);
3451
+ if (id == null) return true;
3452
+ if (seen.has(id)) return false;
3453
+ seen.add(id);
3454
+ return true;
3455
+ });
3456
+ return additions.length ? [...previousRows, ...additions] : previousRows;
3457
+ };
2698
3458
  var crmSortsFromState = (sort, propertyMap) => {
2699
3459
  if (!sort || !sort.field || !sort.direction) return void 0;
2700
3460
  const propertyName = propertyMap && propertyMap[sort.field] || sort.field;
@@ -2712,9 +3472,9 @@ var CrmDataTable = ({
2712
3472
  // Hybrid model: fetch ONE batch and do everything client-side while the whole
2713
3473
  // result set fits in the batch (no refetch). Once a fetch comes back capped
2714
3474
  // (more matches than the batch), search / filter / sort start refetching a
2715
- // fresh batch server-side so they reach the whole dataset pagination always
2716
- // stays client-side (the broken useCrmSearch cursor is never used). Set
2717
- // `serverSide` to force server-side querying from the first render.
3475
+ // fresh batch server-side so they reach the whole dataset. Pagination stays
3476
+ // client-side over the fetched batch; `serverSide` forces server-side querying
3477
+ // from the first render.
2718
3478
  serverSide = false,
2719
3479
  filters,
2720
3480
  autoFilters = false,
@@ -2730,30 +3490,30 @@ var CrmDataTable = ({
2730
3490
  dataTableProps = EMPTY_OBJECT,
2731
3491
  ...props
2732
3492
  }) => {
2733
- var _a;
2734
- const [params, setParams] = (0, import_react5.useState)({ search: "", filters: {}, sort: null });
2735
- const resolvedProperties = (0, import_react5.useMemo)(() => properties, [properties]);
2736
- const resolvedColumns = (0, import_react5.useMemo)(
3493
+ var _a, _b;
3494
+ const [params, setParams] = (0, import_react11.useState)({ search: "", filters: {}, sort: null });
3495
+ const resolvedProperties = (0, import_react11.useMemo)(() => properties, [properties]);
3496
+ const resolvedColumns = (0, import_react11.useMemo)(
2737
3497
  () => columns || inferCrmColumns(resolvedProperties),
2738
3498
  [columns, resolvedProperties]
2739
3499
  );
2740
3500
  const resolvedSearchFields = searchFields || resolvedProperties;
2741
- const autoFilterFields = (0, import_react5.useMemo)(
3501
+ const autoFilterFields = (0, import_react11.useMemo)(
2742
3502
  () => normalizeAutoFilterFields(autoFilters, resolvedProperties),
2743
3503
  [autoFilters, resolvedProperties]
2744
3504
  );
2745
- const autoFilterLabelsRef = (0, import_react5.useRef)({});
2746
- const defaultPropertyMap = (0, import_react5.useMemo)(
3505
+ const autoFilterLabelsRef = (0, import_react11.useRef)({});
3506
+ const defaultPropertyMap = (0, import_react11.useMemo)(
2747
3507
  () => Object.fromEntries(resolvedProperties.map((property) => [property, property])),
2748
3508
  [resolvedProperties]
2749
3509
  );
2750
3510
  const effectivePropertyMap = propertyMap || defaultPropertyMap;
2751
- const resolvedSortMap = (0, import_react5.useMemo)(
3511
+ const resolvedSortMap = (0, import_react11.useMemo)(
2752
3512
  () => sortMap || ((sort) => crmSortsFromState(sort, effectivePropertyMap)),
2753
3513
  [sortMap, effectivePropertyMap]
2754
3514
  );
2755
3515
  const resolvedMapRecord = mapRecord || defaultCrmMapRecord;
2756
- const dataSourceOptions = (0, import_react5.useMemo)(
3516
+ const dataSourceOptions = (0, import_react11.useMemo)(
2757
3517
  () => ({
2758
3518
  objectType: resolveCrmObjectType(objectType),
2759
3519
  properties: resolvedProperties,
@@ -2767,52 +3527,84 @@ var CrmDataTable = ({
2767
3527
  }),
2768
3528
  [objectType, resolvedProperties, pageLength, format, filterMap, effectivePropertyMap, resolvedSortMap, rowIdField, resolvedMapRecord]
2769
3529
  );
2770
- const [serverQuerying, setServerQuerying] = (0, import_react5.useState)(!!serverSide);
3530
+ const [serverQuerying, setServerQuerying] = (0, import_react11.useState)(!!serverSide);
2771
3531
  const effectiveParams = serverQuerying ? params : EMPTY_CRM_PARAMS;
2772
3532
  const dataSource = useCrmSearchDataSource(effectiveParams, dataSourceOptions);
2773
- (0, import_react5.useEffect)(() => {
2774
- if (!serverQuerying && typeof dataSource.totalCount === "number" && dataSource.totalCount > dataSource.data.length) {
3533
+ const queryKey = (0, import_react11.useMemo)(
3534
+ () => stableStringify({ effectiveParams, objectType, properties: resolvedProperties, pageLength }),
3535
+ [effectiveParams, objectType, resolvedProperties, pageLength]
3536
+ );
3537
+ const [accumulatedRows, setAccumulatedRows] = (0, import_react11.useState)(EMPTY_ARRAY);
3538
+ const [requestedPage, setRequestedPage] = (0, import_react11.useState)(1);
3539
+ const lastQueryKeyRef = (0, import_react11.useRef)(queryKey);
3540
+ const loadedRows = accumulatedRows.length ? accumulatedRows : dataSource.data;
3541
+ (0, import_react11.useEffect)(() => {
3542
+ var _a2;
3543
+ if (lastQueryKeyRef.current !== queryKey) {
3544
+ lastQueryKeyRef.current = queryKey;
3545
+ setAccumulatedRows(dataSource.data);
3546
+ return;
3547
+ }
3548
+ const currentPage = ((_a2 = dataSource.pagination) == null ? void 0 : _a2.currentPage) || 1;
3549
+ setAccumulatedRows((prev) => currentPage <= 1 ? dataSource.data : appendUniqueRows(prev, dataSource.data, rowIdField));
3550
+ }, [queryKey, dataSource.data, (_a = dataSource.pagination) == null ? void 0 : _a.currentPage, rowIdField]);
3551
+ (0, import_react11.useEffect)(() => {
3552
+ if (!serverQuerying && typeof dataSource.totalCount === "number" && dataSource.totalCount > loadedRows.length) {
2775
3553
  setServerQuerying(true);
2776
3554
  }
2777
- }, [serverQuerying, dataSource.totalCount, dataSource.data.length]);
2778
- const generatedFilters = (0, import_react5.useMemo)(
3555
+ }, [serverQuerying, dataSource.totalCount, loadedRows.length]);
3556
+ const ensurePageLoaded = (0, import_react11.useCallback)((page) => {
3557
+ var _a2, _b2, _c;
3558
+ const pageNumber = Number(page) || 1;
3559
+ const requiredRows = pageNumber * pageSize;
3560
+ if (requiredRows <= loadedRows.length) return;
3561
+ if (!dataSource.hasMore || dataSource.loading || ((_a2 = dataSource.response) == null ? void 0 : _a2.isRefetching)) return;
3562
+ (_c = (_b2 = dataSource.pagination) == null ? void 0 : _b2.nextPage) == null ? void 0 : _c.call(_b2);
3563
+ }, [pageSize, loadedRows.length, dataSource.hasMore, dataSource.loading, dataSource.response, dataSource.pagination]);
3564
+ (0, import_react11.useEffect)(() => {
3565
+ ensurePageLoaded(requestedPage);
3566
+ }, [requestedPage, ensurePageLoaded]);
3567
+ const generatedFilters = (0, import_react11.useMemo)(
2779
3568
  () => buildAutoFiltersFromRows({
2780
- rows: dataSource.data,
3569
+ rows: loadedRows,
2781
3570
  fields: autoFilterFields,
2782
3571
  labelsRef: autoFilterLabelsRef,
2783
3572
  maxOptions: autoFilterMaxOptions
2784
3573
  }),
2785
- [dataSource.data, autoFilterFields, autoFilterMaxOptions]
3574
+ [loadedRows, autoFilterFields, autoFilterMaxOptions]
2786
3575
  );
2787
3576
  const resolvedFilters = filters || generatedFilters;
2788
- const table = import_react5.default.createElement(DataTable, {
3577
+ const table = import_react11.default.createElement(DataTable, {
2789
3578
  title: title || `${prettifyPropertyName(objectType)} records`,
2790
- data: dataSource.data,
2791
- loading: dataSource.loading || ((_a = dataSource.response) == null ? void 0 : _a.isRefetching),
3579
+ data: loadedRows,
3580
+ loading: dataSource.loading || ((_b = dataSource.response) == null ? void 0 : _b.isRefetching),
2792
3581
  error: dataSource.error,
2793
3582
  columns: resolvedColumns,
2794
3583
  rowIdField,
2795
3584
  pageSize,
3585
+ clientTotalCount: dataSource.totalCount,
2796
3586
  filters: resolvedFilters,
2797
3587
  searchFields: resolvedSearchFields,
2798
3588
  searchPlaceholder: searchPlaceholder || `Search ${prettifyPropertyName(objectType).toLowerCase()}...`,
2799
3589
  searchDebounce: 300,
2800
3590
  onParamsChange: (next) => {
2801
3591
  setParams((prev) => ({ ...prev, search: next.search, filters: next.filters, sort: next.sort }));
3592
+ setRequestedPage(next.page || 1);
3593
+ ensurePageLoaded(next.page);
2802
3594
  },
2803
3595
  ...dataTableProps,
2804
3596
  ...props
2805
3597
  });
2806
3598
  const total = dataSource.totalCount;
2807
- const capped = typeof total === "number" && total > dataSource.data.length;
3599
+ const capped = typeof total === "number" && total > loadedRows.length;
2808
3600
  if (!capped) return table;
2809
- return import_react5.default.createElement(
2810
- import_ui_extensions5.Flex,
3601
+ return import_react11.default.createElement(
3602
+ import_ui_extensions11.Flex,
2811
3603
  { direction: "column", gap: "xs" },
2812
- import_react5.default.createElement(
2813
- import_ui_extensions5.Text,
3604
+ import_react11.default.createElement(
3605
+ import_ui_extensions11.Text,
2814
3606
  { variant: "microcopy" },
2815
- `Showing the first ${dataSource.data.length} of ${total} matching. Refine your search or filters to narrow the results.`
3607
+ dataSource.hasMore ? `Loaded ${loadedRows.length} of ${total} matching. Use the table pagination to load more CRM results.` : `Showing ${loadedRows.length} of ${total} matching. Refine your search or filters to narrow the results.`
2816
3608
  ),
2817
3609
  table
2818
3610
  );
@@ -2838,29 +3630,31 @@ var CrmKanban = ({
2838
3630
  format = DEFAULT_CRM_FORMAT,
2839
3631
  mapRecord,
2840
3632
  rowIdField = "objectId",
3633
+ stageMeta,
3634
+ onLoadMore,
2841
3635
  kanbanProps = EMPTY_OBJECT,
2842
3636
  ...props
2843
3637
  }) => {
2844
- var _a;
2845
- const [params, setParams] = (0, import_react5.useState)(EMPTY_CRM_PARAMS);
2846
- const resolvedProperties = (0, import_react5.useMemo)(() => properties, [properties]);
3638
+ var _a, _b;
3639
+ const [params, setParams] = (0, import_react11.useState)(EMPTY_CRM_PARAMS);
3640
+ const resolvedProperties = (0, import_react11.useMemo)(() => properties, [properties]);
2847
3641
  const resolvedSearchFields = searchFields || resolvedProperties;
2848
- const autoFilterFields = (0, import_react5.useMemo)(
3642
+ const autoFilterFields = (0, import_react11.useMemo)(
2849
3643
  () => normalizeAutoFilterFields(autoFilters, resolvedProperties),
2850
3644
  [autoFilters, resolvedProperties]
2851
3645
  );
2852
- const autoFilterLabelsRef = (0, import_react5.useRef)({});
2853
- const defaultPropertyMap = (0, import_react5.useMemo)(
3646
+ const autoFilterLabelsRef = (0, import_react11.useRef)({});
3647
+ const defaultPropertyMap = (0, import_react11.useMemo)(
2854
3648
  () => Object.fromEntries(resolvedProperties.map((property) => [property, property])),
2855
3649
  [resolvedProperties]
2856
3650
  );
2857
3651
  const effectivePropertyMap = propertyMap || defaultPropertyMap;
2858
- const resolvedSortMap = (0, import_react5.useMemo)(
3652
+ const resolvedSortMap = (0, import_react11.useMemo)(
2859
3653
  () => sortMap || ((sort) => crmSortsFromState(sort, effectivePropertyMap)),
2860
3654
  [sortMap, effectivePropertyMap]
2861
3655
  );
2862
3656
  const resolvedMapRecord = mapRecord || defaultCrmMapRecord;
2863
- const dataSourceOptions = (0, import_react5.useMemo)(
3657
+ const dataSourceOptions = (0, import_react11.useMemo)(
2864
3658
  () => ({
2865
3659
  objectType: resolveCrmObjectType(objectType),
2866
3660
  properties: resolvedProperties,
@@ -2874,28 +3668,54 @@ var CrmKanban = ({
2874
3668
  }),
2875
3669
  [objectType, resolvedProperties, pageLength, format, filterMap, effectivePropertyMap, resolvedSortMap, rowIdField, resolvedMapRecord]
2876
3670
  );
2877
- const [serverQuerying, setServerQuerying] = (0, import_react5.useState)(!!serverSide);
3671
+ const [serverQuerying, setServerQuerying] = (0, import_react11.useState)(!!serverSide);
2878
3672
  const effectiveParams = serverQuerying ? params : EMPTY_CRM_PARAMS;
2879
3673
  const dataSource = useCrmSearchDataSource(effectiveParams, dataSourceOptions);
2880
- (0, import_react5.useEffect)(() => {
2881
- if (!serverQuerying && typeof dataSource.totalCount === "number" && dataSource.totalCount > dataSource.data.length) {
3674
+ const queryKey = (0, import_react11.useMemo)(
3675
+ () => stableStringify({ effectiveParams, objectType, properties: resolvedProperties, pageLength }),
3676
+ [effectiveParams, objectType, resolvedProperties, pageLength]
3677
+ );
3678
+ const [accumulatedRows, setAccumulatedRows] = (0, import_react11.useState)(EMPTY_ARRAY);
3679
+ const lastQueryKeyRef = (0, import_react11.useRef)(queryKey);
3680
+ const loadedRows = accumulatedRows.length ? accumulatedRows : dataSource.data;
3681
+ (0, import_react11.useEffect)(() => {
3682
+ var _a2;
3683
+ if (lastQueryKeyRef.current !== queryKey) {
3684
+ lastQueryKeyRef.current = queryKey;
3685
+ setAccumulatedRows(dataSource.data);
3686
+ return;
3687
+ }
3688
+ const currentPage = ((_a2 = dataSource.pagination) == null ? void 0 : _a2.currentPage) || 1;
3689
+ setAccumulatedRows((prev) => currentPage <= 1 ? dataSource.data : appendUniqueRows(prev, dataSource.data, rowIdField));
3690
+ }, [queryKey, dataSource.data, (_a = dataSource.pagination) == null ? void 0 : _a.currentPage, rowIdField]);
3691
+ (0, import_react11.useEffect)(() => {
3692
+ if (!serverQuerying && typeof dataSource.totalCount === "number" && dataSource.totalCount > loadedRows.length) {
2882
3693
  setServerQuerying(true);
2883
3694
  }
2884
- }, [serverQuerying, dataSource.totalCount, dataSource.data.length]);
2885
- const generatedFilters = (0, import_react5.useMemo)(
3695
+ }, [serverQuerying, dataSource.totalCount, loadedRows.length]);
3696
+ const handleLoadMore = (0, import_react11.useCallback)((stage) => {
3697
+ var _a2, _b2, _c;
3698
+ if (onLoadMore) {
3699
+ onLoadMore(stage);
3700
+ return;
3701
+ }
3702
+ if (!dataSource.hasMore || dataSource.loading || ((_a2 = dataSource.response) == null ? void 0 : _a2.isRefetching)) return;
3703
+ (_c = (_b2 = dataSource.pagination) == null ? void 0 : _b2.nextPage) == null ? void 0 : _c.call(_b2);
3704
+ }, [onLoadMore, dataSource.hasMore, dataSource.loading, dataSource.response, dataSource.pagination]);
3705
+ const generatedFilters = (0, import_react11.useMemo)(
2886
3706
  () => buildAutoFiltersFromRows({
2887
- rows: dataSource.data,
3707
+ rows: loadedRows,
2888
3708
  fields: autoFilterFields,
2889
3709
  labelsRef: autoFilterLabelsRef,
2890
3710
  maxOptions: autoFilterMaxOptions
2891
3711
  }),
2892
- [dataSource.data, autoFilterFields, autoFilterMaxOptions]
3712
+ [loadedRows, autoFilterFields, autoFilterMaxOptions]
2893
3713
  );
2894
3714
  const resolvedFilters = filters || generatedFilters;
2895
- const resolvedStages = (0, import_react5.useMemo)(() => {
3715
+ const resolvedStages = (0, import_react11.useMemo)(() => {
2896
3716
  if (stages) return stages;
2897
3717
  const seen = [];
2898
- for (const row of dataSource.data) {
3718
+ for (const row of loadedRows) {
2899
3719
  const value = typeof groupBy === "function" ? groupBy(row) : row[groupBy];
2900
3720
  if (value != null && value !== "" && !seen.includes(value)) seen.push(value);
2901
3721
  }
@@ -2903,15 +3723,31 @@ var CrmKanban = ({
2903
3723
  value,
2904
3724
  label: typeof stageLabels === "function" ? stageLabels(value) : stageLabels && stageLabels[value] || prettifyPropertyName(String(value))
2905
3725
  }));
2906
- }, [stages, stageLabels, dataSource.data, groupBy]);
2907
- const board = import_react5.default.createElement(Kanban, {
3726
+ }, [stages, stageLabels, loadedRows, groupBy]);
3727
+ const resolvedStageMeta = (0, import_react11.useMemo)(() => {
3728
+ if (stageMeta || !dataSource.hasMore) return stageMeta;
3729
+ return Object.fromEntries(resolvedStages.map((stage) => {
3730
+ var _a2;
3731
+ return [
3732
+ stage.value,
3733
+ {
3734
+ hasMore: true,
3735
+ loading: dataSource.loading || ((_a2 = dataSource.response) == null ? void 0 : _a2.isRefetching),
3736
+ totalCount: dataSource.totalCount
3737
+ }
3738
+ ];
3739
+ }));
3740
+ }, [stageMeta, dataSource.hasMore, dataSource.loading, dataSource.response, dataSource.totalCount, resolvedStages]);
3741
+ const board = import_react11.default.createElement(Kanban, {
2908
3742
  title: title || `${prettifyPropertyName(objectType)} board`,
2909
- data: dataSource.data,
2910
- loading: dataSource.loading || ((_a = dataSource.response) == null ? void 0 : _a.isRefetching),
3743
+ data: loadedRows,
3744
+ loading: dataSource.loading || ((_b = dataSource.response) == null ? void 0 : _b.isRefetching),
2911
3745
  error: dataSource.error,
2912
3746
  rowIdField,
2913
3747
  groupBy,
2914
3748
  stages: resolvedStages,
3749
+ stageMeta: resolvedStageMeta,
3750
+ onLoadMore: dataSource.hasMore || onLoadMore ? handleLoadMore : void 0,
2915
3751
  filters: resolvedFilters,
2916
3752
  searchFields: resolvedSearchFields,
2917
3753
  searchPlaceholder: searchPlaceholder || `Search ${prettifyPropertyName(objectType).toLowerCase()}...`,
@@ -2923,15 +3759,15 @@ var CrmKanban = ({
2923
3759
  ...props
2924
3760
  });
2925
3761
  const total = dataSource.totalCount;
2926
- const capped = typeof total === "number" && total > dataSource.data.length;
3762
+ const capped = typeof total === "number" && total > loadedRows.length;
2927
3763
  if (!capped) return board;
2928
- return import_react5.default.createElement(
2929
- import_ui_extensions5.Flex,
3764
+ return import_react11.default.createElement(
3765
+ import_ui_extensions11.Flex,
2930
3766
  { direction: "column", gap: "xs" },
2931
- import_react5.default.createElement(
2932
- import_ui_extensions5.Text,
3767
+ import_react11.default.createElement(
3768
+ import_ui_extensions11.Text,
2933
3769
  { variant: "microcopy" },
2934
- `Showing the first ${dataSource.data.length} of ${total} matching. Refine your search or filters to narrow the results.`
3770
+ dataSource.hasMore ? `Loaded ${loadedRows.length} of ${total} matching. Use Load more to fetch more CRM results.` : `Showing ${loadedRows.length} of ${total} matching. Refine your search or filters to narrow the results.`
2935
3771
  ),
2936
3772
  board
2937
3773
  );
@@ -3017,7 +3853,7 @@ var buildOptions = (items, { labelKey = "label", valueKey = "value", description
3017
3853
  const mappedDescription = mapDescription ? mapDescription(item) : description;
3018
3854
  return mappedDescription == null ? { label, value } : { label, value, description: mappedDescription };
3019
3855
  });
3020
- var findOptionLabel = (options, value, fallback = "") => {
3856
+ var findOptionLabel2 = (options, value, fallback = "") => {
3021
3857
  const match = (options || []).find((option) => (option == null ? void 0 : option.value) === value);
3022
3858
  return (match == null ? void 0 : match.label) ?? fallback;
3023
3859
  };
@@ -3247,29 +4083,39 @@ var deriveCardFieldsFromColumns = (columns, opts = {}) => {
3247
4083
  0 && (module.exports = {
3248
4084
  CrmDataTable,
3249
4085
  CrmKanban,
4086
+ buildActiveFilterChips,
3250
4087
  buildCrmSearchConfig,
3251
4088
  buildOptions,
3252
4089
  createStatusTagSortComparator,
3253
4090
  crmSearchResultToOption,
4091
+ dateToTimestamp,
3254
4092
  deriveCardFieldsFromColumns,
4093
+ filterRows,
3255
4094
  findOptionLabel,
3256
4095
  formatCurrency,
3257
4096
  formatCurrencyCompact,
3258
4097
  formatDate,
4098
+ formatDateChip,
3259
4099
  formatDateTime,
3260
4100
  formatPercentage,
3261
4101
  getAutoStatusTagVariant,
3262
4102
  getAutoTagDisplayValue,
3263
4103
  getAutoTagVariant,
4104
+ getEmptyFilterValue,
4105
+ getEmptyFilterValues,
3264
4106
  isDateTimeValueObject,
3265
4107
  isDateValueObject,
4108
+ isFilterActive,
3266
4109
  isTimeValueObject,
3267
4110
  makeCrmSearchMultiSelectField,
3268
4111
  makeCrmSearchSelectField,
3269
4112
  normalizeCrmSearchRecord,
3270
4113
  normalizeCrmSearchRows,
4114
+ resetFilterValues,
3271
4115
  resolveCrmObjectType,
4116
+ searchRows,
3272
4117
  sumBy,
4118
+ toStableKey,
3273
4119
  useCrmSearchDataSource,
3274
4120
  useCrmSearchOptions
3275
4121
  });