@stndrds/schema 0.1.0-alpha.16 → 0.1.0-alpha.17
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/chunk-4D23X5XN.mjs +7257 -0
- package/dist/chunk-6RPWHMTH.mjs +7101 -0
- package/dist/chunk-CMO3JEJL.mjs +7259 -0
- package/dist/chunk-JWRGX3UW.mjs +7265 -0
- package/dist/chunk-OUSLILLE.mjs +7259 -0
- package/dist/chunk-PMJZPJDP.mjs +7265 -0
- package/dist/chunk-YEV46K3M.mjs +7259 -0
- package/dist/index.d.mts +42 -3
- package/dist/index.d.ts +42 -3
- package/dist/index.js +398 -65
- package/dist/index.mjs +11 -1
- package/dist/runtime--rp-TG-h.d.mts +5181 -0
- package/dist/runtime--rp-TG-h.d.ts +5181 -0
- package/dist/runtime.d.mts +1 -1
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +497 -124
- package/dist/runtime.mjs +3 -1
- package/package.json +2 -2
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,
|
|
@@ -71,10 +72,12 @@ import {
|
|
|
71
72
|
currencyConfigSchema,
|
|
72
73
|
date,
|
|
73
74
|
dateConfigSchema,
|
|
75
|
+
enrichValuesWithSelectLabels,
|
|
74
76
|
extractAttributeNames,
|
|
75
77
|
file,
|
|
76
78
|
fileConfigSchema,
|
|
77
79
|
flow,
|
|
80
|
+
formatAttributeValue,
|
|
78
81
|
generateId,
|
|
79
82
|
generatePrefixedId,
|
|
80
83
|
getAttributeConfigSchema,
|
|
@@ -130,7 +133,7 @@ import {
|
|
|
130
133
|
verifyNativeObjectsSync,
|
|
131
134
|
verifyNativeViewsSync,
|
|
132
135
|
view
|
|
133
|
-
} from "./chunk-
|
|
136
|
+
} from "./chunk-PMJZPJDP.mjs";
|
|
134
137
|
import {
|
|
135
138
|
ALL_SYSTEM_RESOURCES,
|
|
136
139
|
DEFAULT_ROLES,
|
|
@@ -258,6 +261,9 @@ function isTableTab(tab) {
|
|
|
258
261
|
function isCustomTab(tab) {
|
|
259
262
|
return tab.type === "custom";
|
|
260
263
|
}
|
|
264
|
+
function isActivityTab(tab) {
|
|
265
|
+
return tab.type === "activity";
|
|
266
|
+
}
|
|
261
267
|
|
|
262
268
|
// src/views/registry.ts
|
|
263
269
|
var ViewRegistry = class {
|
|
@@ -408,6 +414,7 @@ export {
|
|
|
408
414
|
DEFAULT_ROLE_LABELS,
|
|
409
415
|
DEFAULT_ROLE_PERMISSIONS,
|
|
410
416
|
DuplicateError,
|
|
417
|
+
EMPTY_VALUE_PLACEHOLDER,
|
|
411
418
|
FileNotFoundError,
|
|
412
419
|
FileService,
|
|
413
420
|
FlowBuilder,
|
|
@@ -478,10 +485,12 @@ export {
|
|
|
478
485
|
currencyConfigSchema,
|
|
479
486
|
date,
|
|
480
487
|
dateConfigSchema,
|
|
488
|
+
enrichValuesWithSelectLabels,
|
|
481
489
|
extractAttributeNames,
|
|
482
490
|
file,
|
|
483
491
|
fileConfigSchema,
|
|
484
492
|
flow,
|
|
493
|
+
formatAttributeValue,
|
|
485
494
|
generateId,
|
|
486
495
|
generatePrefixedId,
|
|
487
496
|
getAttributeConfigSchema,
|
|
@@ -489,6 +498,7 @@ export {
|
|
|
489
498
|
getSyncPreview,
|
|
490
499
|
getViewSyncPreview,
|
|
491
500
|
group,
|
|
501
|
+
isActivityTab,
|
|
492
502
|
isAdvancedFilterState,
|
|
493
503
|
isCustomTab,
|
|
494
504
|
isDefaultRole,
|