@stndrds/schema 0.1.0-alpha.16 → 0.1.0-alpha.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/chunk-2PBQNUTS.mjs +7400 -0
  2. package/dist/chunk-4D23X5XN.mjs +7257 -0
  3. package/dist/chunk-4D476S25.mjs +7713 -0
  4. package/dist/chunk-6RPWHMTH.mjs +7101 -0
  5. package/dist/chunk-CMO3JEJL.mjs +7259 -0
  6. package/dist/chunk-CWPOGEK2.mjs +7707 -0
  7. package/dist/chunk-EWNSOD22.mjs +7707 -0
  8. package/dist/chunk-JWRGX3UW.mjs +7265 -0
  9. package/dist/chunk-KZSM5546.mjs +7706 -0
  10. package/dist/chunk-L7AQ7SZC.mjs +7432 -0
  11. package/dist/chunk-LZW2MI43.mjs +7404 -0
  12. package/dist/chunk-OUSLILLE.mjs +7259 -0
  13. package/dist/chunk-PMJZPJDP.mjs +7265 -0
  14. package/dist/chunk-V5QXU2OK.mjs +82 -0
  15. package/dist/chunk-XMGMXAHW.mjs +7706 -0
  16. package/dist/chunk-YEV46K3M.mjs +7259 -0
  17. package/dist/default-roles-AKWIWTLE.mjs +20 -0
  18. package/dist/index.d.mts +55 -5
  19. package/dist/index.d.ts +55 -5
  20. package/dist/index.js +890 -110
  21. package/dist/index.mjs +14 -2
  22. package/dist/runtime--rp-TG-h.d.mts +5181 -0
  23. package/dist/runtime--rp-TG-h.d.ts +5181 -0
  24. package/dist/runtime-DWhSpnn4.d.mts +5256 -0
  25. package/dist/runtime-DWhSpnn4.d.ts +5256 -0
  26. package/dist/runtime-Dw2exb5q.d.mts +5601 -0
  27. package/dist/runtime-Dw2exb5q.d.ts +5601 -0
  28. package/dist/runtime-DySuNV6Y.d.mts +5245 -0
  29. package/dist/runtime-DySuNV6Y.d.ts +5245 -0
  30. package/dist/runtime-DzdsFCyL.d.mts +5601 -0
  31. package/dist/runtime-DzdsFCyL.d.ts +5601 -0
  32. package/dist/runtime-uXhTgSIx.d.mts +5260 -0
  33. package/dist/runtime-uXhTgSIx.d.ts +5260 -0
  34. package/dist/runtime.d.mts +1 -1
  35. package/dist/runtime.d.ts +1 -1
  36. package/dist/runtime.js +974 -168
  37. package/dist/runtime.mjs +5 -1
  38. package/package.json +3 -3
package/dist/index.mjs CHANGED
@@ -5,6 +5,7 @@ import {
5
5
  CustomTabConfig,
6
6
  DEFAULT_LABEL_FALLBACK,
7
7
  DuplicateError,
8
+ EMPTY_VALUE_PLACEHOLDER,
8
9
  FileNotFoundError,
9
10
  FileService,
10
11
  FlowBuilder,
@@ -38,6 +39,7 @@ import {
38
39
  TableTabConfig,
39
40
  UserProfileNotFoundError,
40
41
  UserProfileService,
42
+ UserService,
41
43
  ValidationError,
42
44
  ViewBuilder,
43
45
  ViewService,
@@ -71,10 +73,12 @@ import {
71
73
  currencyConfigSchema,
72
74
  date,
73
75
  dateConfigSchema,
76
+ enrichValuesWithSelectLabels,
74
77
  extractAttributeNames,
75
78
  file,
76
79
  fileConfigSchema,
77
80
  flow,
81
+ formatAttributeValue,
78
82
  generateId,
79
83
  generatePrefixedId,
80
84
  getAttributeConfigSchema,
@@ -130,7 +134,7 @@ import {
130
134
  verifyNativeObjectsSync,
131
135
  verifyNativeViewsSync,
132
136
  view
133
- } from "./chunk-JDUTFH3J.mjs";
137
+ } from "./chunk-EWNSOD22.mjs";
134
138
  import {
135
139
  ALL_SYSTEM_RESOURCES,
136
140
  DEFAULT_ROLES,
@@ -140,7 +144,7 @@ import {
140
144
  SYSTEM_RESOURCES,
141
145
  SYSTEM_RESOURCE_LABELS,
142
146
  isDefaultRole
143
- } from "./chunk-FAR5ENGR.mjs";
147
+ } from "./chunk-V5QXU2OK.mjs";
144
148
 
145
149
  // src/types/filters.ts
146
150
  function isAdvancedFilterState(state) {
@@ -258,6 +262,9 @@ function isTableTab(tab) {
258
262
  function isCustomTab(tab) {
259
263
  return tab.type === "custom";
260
264
  }
265
+ function isActivityTab(tab) {
266
+ return tab.type === "activity";
267
+ }
261
268
 
262
269
  // src/views/registry.ts
263
270
  var ViewRegistry = class {
@@ -408,6 +415,7 @@ export {
408
415
  DEFAULT_ROLE_LABELS,
409
416
  DEFAULT_ROLE_PERMISSIONS,
410
417
  DuplicateError,
418
+ EMPTY_VALUE_PLACEHOLDER,
411
419
  FileNotFoundError,
412
420
  FileService,
413
421
  FlowBuilder,
@@ -445,6 +453,7 @@ export {
445
453
  TableTabConfig,
446
454
  UserProfileNotFoundError,
447
455
  UserProfileService,
456
+ UserService,
448
457
  ValidationError,
449
458
  ViewBuilder,
450
459
  ViewService,
@@ -478,10 +487,12 @@ export {
478
487
  currencyConfigSchema,
479
488
  date,
480
489
  dateConfigSchema,
490
+ enrichValuesWithSelectLabels,
481
491
  extractAttributeNames,
482
492
  file,
483
493
  fileConfigSchema,
484
494
  flow,
495
+ formatAttributeValue,
485
496
  generateId,
486
497
  generatePrefixedId,
487
498
  getAttributeConfigSchema,
@@ -489,6 +500,7 @@ export {
489
500
  getSyncPreview,
490
501
  getViewSyncPreview,
491
502
  group,
503
+ isActivityTab,
492
504
  isAdvancedFilterState,
493
505
  isCustomTab,
494
506
  isDefaultRole,