@jskit-ai/agent-docs 0.1.126 → 0.1.127
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/guide/agent/app-setup/a-more-interesting-shell.md +5 -3
- package/guide/agent/app-setup/upgrade-beta-1-to-final.md +95 -3
- package/guide/agent/app-setup/users.md +1 -1
- package/guide/agent/generators/advanced-cruds.md +19 -14
- package/guide/agent/generators/crud-generators.md +1 -1
- package/package.json +1 -1
- package/patterns/INDEX.md +1 -1
- package/patterns/client-requests.md +6 -4
- package/patterns/generated-ui-contract-tracking.md +2 -2
- package/patterns/live-actions.md +1 -1
- package/reference/autogen/KERNEL_MAP.md +0 -93
- package/reference/autogen/README.md +1 -0
- package/reference/autogen/packages/assistant-core.md +0 -11
- package/reference/autogen/packages/assistant-runtime.md +7 -0
- package/reference/autogen/packages/crud-core.md +0 -72
- package/reference/autogen/packages/http-web.md +624 -0
- package/reference/autogen/packages/kernel.md +0 -93
- package/reference/autogen/packages/resource-crud-core.md +94 -0
- package/reference/autogen/packages/users-web.md +0 -593
- package/reference/autogen/packages/workspaces-web.md +30 -42
- package/skills/jskit/references/crud-operations.md +3 -2
- package/skills/jskit/references/ui-operations.md +3 -0
|
@@ -28,12 +28,6 @@ Exports
|
|
|
28
28
|
- `createUsersBootstrapUserHandler()`
|
|
29
29
|
- `registerUsersBootstrapPayloadHandlers(app)`
|
|
30
30
|
|
|
31
|
-
### `src/client/bulkActions.js`
|
|
32
|
-
Exports
|
|
33
|
-
- `defineCrudListBulkActions(actions = [])`
|
|
34
|
-
Local functions
|
|
35
|
-
- `normalizeCrudListBulkAction(rawAction = {}, index = 0)`
|
|
36
|
-
|
|
37
31
|
### `src/client/components/AccountSettingsClientElement.vue`
|
|
38
32
|
Exports
|
|
39
33
|
- None
|
|
@@ -41,76 +35,6 @@ Local functions
|
|
|
41
35
|
- `normalizeSection(value)`
|
|
42
36
|
- `readRouteSection()`
|
|
43
37
|
|
|
44
|
-
### `src/client/components/CrudAddEditScreen.vue`
|
|
45
|
-
Exports
|
|
46
|
-
- None
|
|
47
|
-
Local functions
|
|
48
|
-
- `resolveFieldErrors(fieldKey)`
|
|
49
|
-
- `resolveCancelTo(target = cancelTo.value)`
|
|
50
|
-
|
|
51
|
-
### `src/client/components/CrudDeleteAction.vue`
|
|
52
|
-
Exports
|
|
53
|
-
- None
|
|
54
|
-
Local functions
|
|
55
|
-
- `closeDialog()`
|
|
56
|
-
- `handleDialogModelUpdate(isOpen)`
|
|
57
|
-
|
|
58
|
-
### `src/client/components/CrudListBulkActionSurface.vue`
|
|
59
|
-
Exports
|
|
60
|
-
- None
|
|
61
|
-
Local functions
|
|
62
|
-
- `clearSelection()`
|
|
63
|
-
- `execute(action = {})`
|
|
64
|
-
- `isActionDisabled(action = {})`
|
|
65
|
-
- `isActionExecuting(action = {})`
|
|
66
|
-
|
|
67
|
-
### `src/client/components/CrudListDateFilterControl.vue`
|
|
68
|
-
Exports
|
|
69
|
-
- None
|
|
70
|
-
Local functions
|
|
71
|
-
- `restoreFocus()`
|
|
72
|
-
- `openMenu()`
|
|
73
|
-
- `closeMenu()`
|
|
74
|
-
- `clearDate()`
|
|
75
|
-
- `selectDate(value)`
|
|
76
|
-
- `handleActivatorKeydown(event)`
|
|
77
|
-
|
|
78
|
-
### `src/client/components/CrudListFilterSurface.vue`
|
|
79
|
-
Exports
|
|
80
|
-
- None
|
|
81
|
-
Local functions
|
|
82
|
-
- `optionItems(filter = {})`
|
|
83
|
-
- `placeholder(filter = {}, fallback = "")`
|
|
84
|
-
- `clearChip(chip = {})`
|
|
85
|
-
- `clearFilters()`
|
|
86
|
-
|
|
87
|
-
### `src/client/components/CrudListRecordActionMenu.vue`
|
|
88
|
-
Exports
|
|
89
|
-
- None
|
|
90
|
-
Local functions
|
|
91
|
-
- `isRowActionLoading(action = {})`
|
|
92
|
-
- `isRowActionDisabled(action = {})`
|
|
93
|
-
- `runRowAction(action = {})`
|
|
94
|
-
|
|
95
|
-
### `src/client/components/CrudListScreen.vue`
|
|
96
|
-
Exports
|
|
97
|
-
- None
|
|
98
|
-
Local functions
|
|
99
|
-
- `resolveListRecordTitle(record)`
|
|
100
|
-
- `formatListCardValue(value)`
|
|
101
|
-
- `resolveViewLocation(record)`
|
|
102
|
-
- `resolveEditLocation(record)`
|
|
103
|
-
- `hasRowActionsFor(record, index)`
|
|
104
|
-
- `isBulkRowSelected(row = {})`
|
|
105
|
-
- `setBulkRowSelected(row = {}, selected = true)`
|
|
106
|
-
- `allSelectableRowsSelected()`
|
|
107
|
-
- `someSelectableRowsSelected()`
|
|
108
|
-
- `setSelectableRowsSelected(selected = true)`
|
|
109
|
-
|
|
110
|
-
### `src/client/components/CrudViewScreen.vue`
|
|
111
|
-
Exports
|
|
112
|
-
- None
|
|
113
|
-
|
|
114
38
|
### `src/client/components/ProfileClientElement.vue`
|
|
115
39
|
Exports
|
|
116
40
|
- None
|
|
@@ -146,504 +70,20 @@ Exports
|
|
|
146
70
|
- `normalizeReturnToPath(value, { fallback = "/", accountSettingsPath = "/account", allowedOrigins = [] } = {})`
|
|
147
71
|
- `normalizeSettingsPayload(value)`
|
|
148
72
|
|
|
149
|
-
### `src/client/composables/crud/crudBindingSupport.js`
|
|
150
|
-
Exports
|
|
151
|
-
- `CRUD_BINDING_MODE_ROUTE`
|
|
152
|
-
- `CRUD_BINDING_MODE_MERGE`
|
|
153
|
-
- `CRUD_BINDING_MODE_EXPLICIT`
|
|
154
|
-
- `CRUD_BINDING_MODE_NONE`
|
|
155
|
-
- `normalizeCrudBindingMode(value = "")`
|
|
156
|
-
- `normalizeCrudBindingConfig(binding = {})`
|
|
157
|
-
- `resolveCrudBindingValues(values, context = {})`
|
|
158
|
-
- `resolveCrudBoundValues({ binding = {}, routeValues = {}, context = {} } = {})`
|
|
159
|
-
|
|
160
|
-
### `src/client/composables/crud/crudHttpClientSupport.js`
|
|
161
|
-
Exports
|
|
162
|
-
- `CRUD_API_ACCESS_AUTHENTICATED`
|
|
163
|
-
- `CRUD_API_ACCESS_PUBLIC`
|
|
164
|
-
- `normalizeCrudApiAccess(value = "")`
|
|
165
|
-
- `resolveCrudHttpClient(resource = null, { client = null } = {})`
|
|
166
|
-
|
|
167
|
-
### `src/client/composables/crud/crudJsonApiTransportSupport.js`
|
|
168
|
-
Exports
|
|
169
|
-
- `inferCrudJsonApiTransport(resource = null, { mode = "", operationName = "" } = {})`
|
|
170
|
-
- `inferCrudLookupJsonApiTransport({ namespace = "", apiPath = "" } = {})`
|
|
171
|
-
- `resolveCrudJsonApiTransport(transport = null, resource = null, options = {})`
|
|
172
|
-
- `resolveLookupFieldMap(resource = null)`
|
|
173
|
-
Local functions
|
|
174
|
-
- `isRecord(value)`
|
|
175
|
-
- `resolveSchemaFieldDefinitions(definition = null)`
|
|
176
|
-
- `isJsonApiResourceTransport(transport = null)`
|
|
177
|
-
- `resolveCrudJsonApiResourceType(resource = null)`
|
|
178
|
-
|
|
179
|
-
### `src/client/composables/crud/crudLookupFieldLabelSupport.js`
|
|
180
|
-
Exports
|
|
181
|
-
- `resolveLookupItemLabel(item = {}, labelKey = "")`
|
|
182
|
-
- `resolveLookupFieldDisplayValue(record = {}, field = {}, relationKind = "", valueKey = "", labelKey = "")`
|
|
183
|
-
- `resolveRecordTitle(record = {}, { fallbackKey = "", defaultValue = DEFAULT_RECORD_TITLE } = {})`
|
|
184
|
-
Local functions
|
|
185
|
-
- `hasDisplayValue(value)`
|
|
186
|
-
- `resolveComposedLabel(source = {}, candidates = LOOKUP_LABEL_COMPOSITION_CANDIDATES)`
|
|
187
|
-
- `resolveLookupFieldDescriptor(field = {}, relationKind = "", valueKey = "", labelKey = "")`
|
|
188
|
-
- `resolveFallbackLookupKey(key = "")`
|
|
189
|
-
|
|
190
|
-
### `src/client/composables/crud/crudLookupFieldRuntime.js`
|
|
191
|
-
Exports
|
|
192
|
-
- `createCrudLookupFieldRuntime({ formFields = [], adapter = null, recordIdParam = "recordId", queryKeyPrefix = [], placementSourcePrefix = "", lookupContainerKey = "lookups" } = {})`
|
|
193
|
-
Local functions
|
|
194
|
-
- `normalizeQueryKeyPrefix(value)`
|
|
195
|
-
- `isSameLookupValue(left, right)`
|
|
196
|
-
- `normalizeLookupValue(value)`
|
|
197
|
-
- `createSelectedLookupItem(selectedValue, selectedRecord = {}, entry = {})`
|
|
198
|
-
|
|
199
|
-
### `src/client/composables/crud/crudSchemaFormHelpers.js`
|
|
200
|
-
Exports
|
|
201
|
-
- `normalizeCrudFormFields(fields = [])`
|
|
202
|
-
- `createCrudFormModel(fields = [])`
|
|
203
|
-
- `buildCrudFormPayload(fields = [], model = {})`
|
|
204
|
-
- `applyCrudPayloadToForm(fields = [], model = {}, payload = {})`
|
|
205
|
-
- `resolveCrudRouteBoundFieldValues(fields = [], routeParams = {})`
|
|
206
|
-
- `applyCrudRouteBoundFieldValues(fields = [], target = {}, routeParams = {})`
|
|
207
|
-
- `resolveCrudFieldErrors(fieldErrors = {}, fieldKey = "")`
|
|
208
|
-
Local functions
|
|
209
|
-
- `resolveStableFieldErrorList(fieldKey, message)`
|
|
210
|
-
- `resolveFormFieldType(field = {})`
|
|
211
|
-
- `resolveFormFieldFormat(field = {})`
|
|
212
|
-
- `isNullableFormField(field = {})`
|
|
213
|
-
- `isLookupFormField(field = {})`
|
|
214
|
-
- `padDateTimePart(value)`
|
|
215
|
-
- `normalizeTimeWhitespace(value)`
|
|
216
|
-
- `toTimeInputValue(value)`
|
|
217
|
-
- `toDateTimeLocalInputValue(value)`
|
|
218
|
-
- `toDateInputValue(value)`
|
|
219
|
-
- `applyDateTimePrecision(isoValue, temporalPrecision)`
|
|
220
|
-
- `toIsoUtcDateTimeValue(value, temporalPrecision)`
|
|
221
|
-
- `resolveFormFieldInitialValue(field = {})`
|
|
222
|
-
- `shouldSerializeClearedFieldAsNull(field = {})`
|
|
223
|
-
|
|
224
|
-
### `src/client/composables/internal/crudListFilterLookupSupport.js`
|
|
225
|
-
Exports
|
|
226
|
-
- `normalizeLookupQueryKeyPrefix(value = [])`
|
|
227
|
-
- `normalizeLookupLabelResolverMap(value = {})`
|
|
228
|
-
- `normalizeLookupRequestQueryParamsMap(value = {})`
|
|
229
|
-
- `resolveLookupSelectedValues(filter = {}, rawValue = undefined)`
|
|
230
|
-
- `createLookupOptionsFromItems(items = [], filter = {}, labelResolver = null)`
|
|
231
|
-
- `mergeSelectedLookupOptions(options = [], selectedValues = [], cachedOptions = new Map())`
|
|
232
|
-
- `resolveLookupOptionLabel(options = [], cachedOptions = new Map(), value = "", fallback = "Option")`
|
|
233
|
-
Local functions
|
|
234
|
-
- `createLookupOptionFromItem(item = {}, filter = {}, labelResolver = null)`
|
|
235
|
-
|
|
236
|
-
### `src/client/composables/internal/crudListParentTitleSupport.js`
|
|
237
|
-
Exports
|
|
238
|
-
- `resolveCrudListParentDescriptor({ resource = {}, route = null, recordIdParam = "recordId" } = {})`
|
|
239
|
-
- `resolveCrudListParentRecordTitle(record = {}, descriptor = null)`
|
|
240
|
-
- `resolveCrudListParentTitleFromItems(items = [], descriptor = null)`
|
|
241
|
-
Local functions
|
|
242
|
-
- `singularizeLabel(value = "")`
|
|
243
|
-
- `toTitleLabel(value = "")`
|
|
244
|
-
- `resolveEntityLabel(routeParamKey = "", relationNamespace = "")`
|
|
245
|
-
- `resolveLookupFieldMeta(resource = {}, fieldKey = "")`
|
|
246
|
-
|
|
247
|
-
### `src/client/composables/internal/useOperationScope.js`
|
|
248
|
-
Exports
|
|
249
|
-
- `useOperationScope({ ownershipFilter = ROUTE_VISIBILITY_WORKSPACE, surfaceId = "", access = "auto", placementSource = "users-web.operation", apiSuffix = "", model, readEnabled = true, queryKeyFactory = null, permissionSets = {}, realtime = null } = {})`
|
|
250
|
-
Local functions
|
|
251
|
-
- `normalizePermissionSets(permissionSets = {})`
|
|
252
|
-
- `hasAnyPermissions(permissionSets = {})`
|
|
253
|
-
|
|
254
|
-
### `src/client/composables/records/useAddEdit.js`
|
|
255
|
-
Exports
|
|
256
|
-
- `useAddEdit({ ownershipFilter = ROUTE_VISIBILITY_WORKSPACE, surfaceId = "", access = "auto", resource = null, apiSuffix = "", queryKeyFactory = null, viewPermissions = [], savePermissions = [], readMethod = "GET", readEnabled = true, writeMethod = "PATCH", client = null, transport = null, requestRecovery = null, requestRecoveryLabel = "Resource", placementSource = "users-web.add-edit", fallbackLoadError = "Unable to load resource.", fallbackSaveError = "Unable to save resource.", fieldErrorKeys = [], clearOnRouteChange = true, model, input, mapLoadedToModel, buildRawPayload, buildSavePayload, onSaveSuccess, requestQueryParams = null, recordIdParam = "recordId", routeParams = null, routeRecordId = null, apiUrlTemplate = "", viewUrlTemplate = "", listUrlTemplate = "", saveRecordIdSelector = null, messages = {}, realtime = null, adapter = null } = {})`
|
|
257
|
-
|
|
258
|
-
### `src/client/composables/records/useCrudAddEdit.js`
|
|
259
|
-
Exports
|
|
260
|
-
- `useCrudAddEdit({ resource = null, operationName = "", formFields = [], addEditOptions = {}, saveSuccess = {}, fieldBinding = null, createModel = null, buildPayload = null, mapPayloadToModel = null, input = null } = {})`
|
|
261
|
-
Local functions
|
|
262
|
-
- `normalizeFieldErrorKeys(keys = [])`
|
|
263
|
-
- `normalizeSaveSuccessOptions(options = {})`
|
|
264
|
-
|
|
265
|
-
### `src/client/composables/records/useCrudList.js`
|
|
266
|
-
Exports
|
|
267
|
-
- `useCrudList({ resource = null, requestQueryParams = null, parentBinding = null, recordIdParam = "recordId", route = null, realtime = undefined, ...listOptions } = {})`
|
|
268
|
-
Local functions
|
|
269
|
-
- `resolveRequestQueryParamsInput(requestQueryParams, context = {})`
|
|
270
|
-
- `resolveCrudParentRequestQueryParams({ resource = {}, route = null, recordIdParam = "recordId" } = {})`
|
|
271
|
-
|
|
272
|
-
### `src/client/composables/records/useCrudView.js`
|
|
273
|
-
Exports
|
|
274
|
-
- `useCrudView({ resource = null, paramBinding = null, route = null, ...viewOptions } = {})`
|
|
275
|
-
|
|
276
|
-
### `src/client/composables/records/useList.js`
|
|
277
|
-
Exports
|
|
278
|
-
- `useList({ ownershipFilter = ROUTE_VISIBILITY_WORKSPACE, surfaceId = "", access = "auto", apiSuffix = "", queryKeyFactory = null, viewPermissions = [], readEnabled = true, placementSource = "users-web.list", fallbackLoadError = "Unable to load list.", initialPageParam = null, getNextPageParam, selectItems, client = null, transport = null, requestOptions, queryOptions, requestRecovery, requestRecoveryLabel = "List", realtime = null, adapter = null, recordIdParam = "recordId", recordIdSelector = null, viewUrlTemplate = "", editUrlTemplate = "", search = null, queryParams = null, routeQueryValueResolvers = null, requestQueryParams = null, requestFieldsets = null, syncToRoute = false } = {})`
|
|
279
|
-
|
|
280
|
-
### `src/client/composables/records/useView.js`
|
|
281
|
-
Exports
|
|
282
|
-
- `useView({ resource = null, ownershipFilter = ROUTE_VISIBILITY_WORKSPACE, surfaceId = "", access = "auto", apiSuffix = "", queryKeyFactory = null, viewPermissions = [], readMethod = "GET", readEnabled = true, client = null, transport = null, requestRecovery = null, requestRecoveryLabel = "Resource", placementSource = "users-web.view", fallbackLoadError = "Unable to load resource.", notFoundStatuses = [404], notFoundMessage = "Record not found.", model, mapLoadedToModel, requestQueryParams = null, requestFieldsets = null, recordIdParam = "recordId", routeParams = null, routeRecordId = null, apiUrlTemplate = "", listUrlTemplate = "", editUrlTemplate = "", includeRecordIdInQueryKey = false, realtime = undefined, adapter = null } = {})`
|
|
283
|
-
|
|
284
|
-
### `src/client/composables/runtime/addEditUiRuntime.js`
|
|
285
|
-
Exports
|
|
286
|
-
- `createAddEditUiRuntime({ recordIdParam = "recordId", routeParams = null, routeParamNames = null, routePath = "", routeRecordId = null, apiUrlTemplate = "", viewUrlTemplate = "", listUrlTemplate = "", saveRecordIdSelector = null } = {})`
|
|
287
|
-
Local functions
|
|
288
|
-
- `toResolvedRecordId({ routeParams, recordIdParam, routeRecordId })`
|
|
289
|
-
- `resolveSavedRecordId(payload, saveRecordIdSelector)`
|
|
290
|
-
|
|
291
|
-
### `src/client/composables/runtime/listUiRuntime.js`
|
|
292
|
-
Exports
|
|
293
|
-
- `createListUiRuntime({ items, isInitialLoading, recordIdParam = "recordId", recordIdSelector = null, routeParams = null, routeParamNames = null, routePath = "", viewUrlTemplate = "", editUrlTemplate = "" } = {})`
|
|
294
|
-
Local functions
|
|
295
|
-
- `resolveRecordId(record, recordIdSelector)`
|
|
296
|
-
|
|
297
|
-
### `src/client/composables/runtime/modelStateHelpers.js`
|
|
298
|
-
Exports
|
|
299
|
-
- `captureModelSnapshot(model)`
|
|
300
|
-
- `restoreModelSnapshot(model, snapshot)`
|
|
301
|
-
- `watchResourceModelState({ resource, model, mapLoadedToModel, resolveMapContext = null } = {})`
|
|
302
|
-
Local functions
|
|
303
|
-
- `isObjectLike(value)`
|
|
304
|
-
- `deepClone(value)`
|
|
305
|
-
|
|
306
|
-
### `src/client/composables/runtime/operationAdapters.js`
|
|
307
|
-
Exports
|
|
308
|
-
- `createUsersOperationAdapter()`
|
|
309
|
-
- `resolveOperationAdapter(adapter, { context = "users-web operation adapter" } = {})`
|
|
310
|
-
|
|
311
|
-
### `src/client/composables/runtime/operationUiHelpers.js`
|
|
312
|
-
Exports
|
|
313
|
-
- `setupRouteChangeCleanup({ enabled = true, route = null, feedback = null, fieldBag = null } = {})`
|
|
314
|
-
- `setupOperationErrorReporting({ enabled = true, source = "users-web.operation", loadError = null, notFoundError = null, loadActionFactory = null, notFoundActionFactory = null, loadChannel = "", notFoundChannel = "", loadSeverity = "error", notFoundSeverity = "warning", dedupeWindowMs = 2000 } = {})`
|
|
315
|
-
Local functions
|
|
316
|
-
- `normalizeMessage(value)`
|
|
317
|
-
|
|
318
|
-
### `src/client/composables/runtime/operationValidationHelpers.js`
|
|
319
|
-
Exports
|
|
320
|
-
- `validateOperationInput({ input, rawPayload = {}, fieldBag = null, feedback = null, validationMessage = "Validation failed." } = {})`
|
|
321
|
-
|
|
322
|
-
### `src/client/composables/runtime/useAddEditCore.js`
|
|
323
|
-
Exports
|
|
324
|
-
- `useAddEditCore({ model, resource, queryKey, canSave, fieldBag, feedback, input, mapLoadedToModel, buildRawPayload, buildSavePayload, onSaveSuccess, messages = {} } = {})`
|
|
325
|
-
|
|
326
|
-
### `src/client/composables/runtime/useCommandCore.js`
|
|
327
|
-
Exports
|
|
328
|
-
- `useCommandCore({ model, resource, writeMethod = "POST", canRun, fieldBag, feedback, input, buildRawPayload, buildCommandPayload, buildCommandOptions, onRunSuccess, onRunError, suppressSuccessMessage = false, messages = {} } = {})`
|
|
329
|
-
|
|
330
|
-
### `src/client/composables/runtime/useEndpointResource.js`
|
|
331
|
-
Exports
|
|
332
|
-
- `buildEndpointReadRequestOptions({ method = "GET", query = null, transport = null } = {})`
|
|
333
|
-
- `buildEndpointWriteRequestOptions({ method = "PATCH", body = undefined, options = null, transport = null } = {})`
|
|
334
|
-
- `useEndpointResource({ queryKey, path = "", enabled = true, client = null, readMethod = "GET", writeMethod = "PATCH", readQuery = null, transport = null, refreshOnPull = false, realtime = null, queryOptions = null, mutationOptions = null, requestRecovery = null, requestRecoveryLabel = "Request", fallbackLoadError = "Unable to load resource.", fallbackSaveError = "Unable to save resource." } = {})`
|
|
335
|
-
Local functions
|
|
336
|
-
- `resolveRequestQuery(value = null)`
|
|
337
|
-
|
|
338
|
-
### `src/client/composables/runtime/useFieldErrorBag.js`
|
|
339
|
-
Exports
|
|
340
|
-
- `useFieldErrorBag(keys = [])`
|
|
341
|
-
Local functions
|
|
342
|
-
- `normalizeKeys(keys)`
|
|
343
|
-
|
|
344
|
-
### `src/client/composables/runtime/useListCore.js`
|
|
345
|
-
Exports
|
|
346
|
-
- `buildListRequestOptions({ requestOptions = null, transport = null, pageParam = null } = {})`
|
|
347
|
-
- `useListCore({ queryKey, path = "", enabled = true, client = null, transport = null, initialPageParam = null, getNextPageParam, selectItems, requestOptions = null, queryOptions = null, requestRecovery = null, requestRecoveryLabel = "List", fallbackLoadError = "Unable to load list." } = {})`
|
|
348
|
-
Local functions
|
|
349
|
-
- `resolveRequestOptionsObject(value = null)`
|
|
350
|
-
- `resolveListRequestMethod(requestOptions = null)`
|
|
351
|
-
|
|
352
|
-
### `src/client/composables/runtime/useUiFeedback.js`
|
|
353
|
-
Exports
|
|
354
|
-
- `useUiFeedback({ initialType = "success", source = "users-web.ui-feedback", successChannel = "", errorChannel = "", dedupeWindowMs = 2000 } = {})`
|
|
355
|
-
|
|
356
|
-
### `src/client/composables/runtime/useViewCore.js`
|
|
357
|
-
Exports
|
|
358
|
-
- `useViewCore({ resource, model, canView, mapLoadedToModel, notFoundStatuses = [404], notFoundMessage = "Record not found." } = {})`
|
|
359
|
-
Local functions
|
|
360
|
-
- `normalizeStatusList(value)`
|
|
361
|
-
|
|
362
|
-
### `src/client/composables/runtime/viewUiRuntime.js`
|
|
363
|
-
Exports
|
|
364
|
-
- `createViewUiRuntime({ recordIdParam = "recordId", routeParams = null, routeParamNames = null, routePath = "", routeRecordId = null, apiUrlTemplate = "", listUrlTemplate = "", editUrlTemplate = "" } = {})`
|
|
365
|
-
Local functions
|
|
366
|
-
- `resolveRecordId({ routeParams, recordIdParam, routeRecordId })`
|
|
367
|
-
|
|
368
|
-
### `src/client/composables/support/errorMessageHelpers.js`
|
|
369
|
-
Exports
|
|
370
|
-
- `toQueryErrorMessage(error, fallbackMessage = "", defaultMessage = "Request failed.")`
|
|
371
|
-
- `toUiErrorMessage(error, fallbackMessage = "", defaultMessage = "Request failed.")`
|
|
372
|
-
Local functions
|
|
373
|
-
- `normalizeErrorStatus(error)`
|
|
374
|
-
- `isGenericTransportMessage(error)`
|
|
375
|
-
|
|
376
|
-
### `src/client/composables/support/listQueryParamSupport.js`
|
|
377
|
-
Exports
|
|
378
|
-
- `normalizeListSyncToRouteConfig(syncToRoute = false, { defaultSearchParam = "q" } = {})`
|
|
379
|
-
- `resolveQueryParamDescriptors(queryParams, context = {}, { routeValueResolvers = null } = {})`
|
|
380
|
-
- `resolveActiveQueryParamEntries(descriptors = [])`
|
|
381
|
-
- `resolveWritableQueryParamBindings(descriptors = [])`
|
|
382
|
-
- `buildQueryParamEntriesToken(entries = [])`
|
|
383
|
-
- `parseRouteBindingValue(binding, routeQueryValue, context = {})`
|
|
384
|
-
- `areQueryParamBindingValuesEqual(left, right)`
|
|
385
|
-
- `buildRouteQueryCompareToken(query = {})`
|
|
386
|
-
- `mergeManagedQueryParamKeyHistory(history = [], keys = [])`
|
|
387
|
-
- `resolveRouteSyncManagedKeys({ searchEnabled = false, searchParam = "q", syncSearch = false, syncQueryParams = false, declaredKeys = [], keyHistory = [] } = {})`
|
|
388
|
-
Local functions
|
|
389
|
-
- `normalizeQueryParamKey(value)`
|
|
390
|
-
- `normalizeQueryParamValues(value)`
|
|
391
|
-
- `resolveQueryParamsInput(queryParams, context = {})`
|
|
392
|
-
- `resolveQueryParamBindingType(value)`
|
|
393
|
-
- `resolveArrayQueryParamItemType(values = [])`
|
|
394
|
-
- `createWritableQueryParamBinding({ source = {}, rawKey = "", rawValue = null, key = "", resolveRouteValue = null } = {})`
|
|
395
|
-
- `firstRouteQueryValue(value)`
|
|
396
|
-
- `normalizeRouteQueryValues(value)`
|
|
397
|
-
- `parseRouteBooleanValue(value, fallback = false)`
|
|
398
|
-
- `parseRouteNumberValue(value, fallback = null)`
|
|
399
|
-
- `parseRouteDateValue(value, fallback = null)`
|
|
400
|
-
- `parseRouteQueryItemValue(value, itemType = QUERY_PARAM_BINDING_TYPE_TEXT, fallback = null)`
|
|
401
|
-
- `areQueryParamBindingItemsEqual(left, right)`
|
|
402
|
-
|
|
403
|
-
### `src/client/composables/support/listSearchSupport.js`
|
|
404
|
-
Exports
|
|
405
|
-
- `normalizeListSearchConfig(value = {})`
|
|
406
|
-
- `matchesLocalSearch(item = {}, query = "", searchFields = [])`
|
|
407
|
-
Local functions
|
|
408
|
-
- `normalizeSearchableValue(value)`
|
|
409
|
-
|
|
410
|
-
### `src/client/composables/support/refValueHelpers.js`
|
|
411
|
-
Exports
|
|
412
|
-
- `resolveEnabledRef(value)`
|
|
413
|
-
- `resolveTextRef(value)`
|
|
414
|
-
|
|
415
|
-
### `src/client/composables/support/requestQueryRuntimeSupport.js`
|
|
416
|
-
Exports
|
|
417
|
-
- `buildRequestQueryObject(entries = [], { fieldsets = null } = {})`
|
|
418
|
-
- `createRequestQueryRuntime({ requestQueryParams = null, requestFieldsets = null, context = null, sourceQueryKey = null } = {})`
|
|
419
|
-
Local functions
|
|
420
|
-
- `resolveRequestQueryContext(context = null)`
|
|
421
|
-
- `resolveRequestQueryBaseKey(sourceQueryKey = null)`
|
|
422
|
-
- `resolveRequestFieldsets(requestFieldsets = null, context = {})`
|
|
423
|
-
- `appendRequestQueryValue(target = {}, key = "", values = [])`
|
|
424
|
-
|
|
425
|
-
### `src/client/composables/support/resourceLoadStateHelpers.js`
|
|
426
|
-
Exports
|
|
427
|
-
- `buildRequestRecoveryMeta(requestRecovery = null, defaults = {})`
|
|
428
|
-
- `hasResolvedQueryData({ query = null, data = null } = {})`
|
|
429
|
-
- `mergeQueryMeta(queryOptions = null, meta = {})`
|
|
430
|
-
- `mergeRequestRecoveryQueryMeta(queryOptions = null, requestRecovery = null, defaults = {})`
|
|
431
|
-
Local functions
|
|
432
|
-
- `normalizeText(value = "")`
|
|
433
|
-
- `firstNormalizedText(...values)`
|
|
434
|
-
- `firstNonNegativeFiniteNumber(...values)`
|
|
435
|
-
- `normalizePlainObject(value = null)`
|
|
436
|
-
- `normalizeRequestRecoveryInput(requestRecovery = null)`
|
|
437
|
-
- `normalizeRequestRecoveryMethod(value = "")`
|
|
438
|
-
- `isRequestRecoveryMetaDisabled(sourceJskitMeta = {})`
|
|
439
|
-
- `hasUsableMetaValue(source = {}, key = "")`
|
|
440
|
-
- `resolveRequestRecoveryDefaults(queryOptions = null, defaults = {})`
|
|
441
|
-
|
|
442
|
-
### `src/client/composables/support/routeTemplateHelpers.js`
|
|
443
|
-
Exports
|
|
444
|
-
- `normalizeRouteParamName(value = "", { context = "users-web route param" } = {})`
|
|
445
|
-
- `toRouteParamValue(value)`
|
|
446
|
-
- `resolveRouteParamsSource(source = null)`
|
|
447
|
-
- `resolveRouteParamNamesSource(source = [])`
|
|
448
|
-
- `resolveRoutePathnameSource(source = "")`
|
|
449
|
-
- `resolveScopedRoutePathname({ currentPathname = "/", params = {}, orderedParamNames = [], anchorParamName = "", anchorParamValue = "", anchorMode = "at" } = {})`
|
|
450
|
-
- `resolveRouteTemplatePath(routeTemplate = "", params = {})`
|
|
451
|
-
- `resolveRouteTemplateLocation(routeTemplate = "", { params = {}, currentPathname = "/" } = {})`
|
|
452
|
-
- `extractRouteParamNames(pathTemplate = "")`
|
|
453
|
-
- `resolveRouteParamNamesInOrder(route = null)`
|
|
454
|
-
Local functions
|
|
455
|
-
- `resolveRouteSourceValue(source = null)`
|
|
456
|
-
- `normalizeRouteParamNameList(value = [])`
|
|
457
|
-
- `normalizeRoutePathname(value = "")`
|
|
458
|
-
- `segmentMatchesParamValue(segment = "", paramValue = "")`
|
|
459
|
-
- `findRouteParamSegmentIndex(segments = [], paramValue = "", fromIndex = 0)`
|
|
460
|
-
- `normalizePathPrefix(segments = [], endIndex = -1)`
|
|
461
|
-
- `resolveAnchorEndIndex(segmentIndex = -1, totalSegments = 0, anchorMode = "at")`
|
|
462
|
-
|
|
463
|
-
### `src/client/composables/support/scopeHelpers.js`
|
|
464
|
-
Exports
|
|
465
|
-
- `asPlainObject(value)`
|
|
466
|
-
- `normalizePermissions(value)`
|
|
467
|
-
- `resolvePermissionAccess(access, normalizedPermissions = [])`
|
|
468
|
-
- `normalizeAccessMode(value = "auto")`
|
|
469
|
-
- `resolveAccessModeEnabled(accessMode = "auto", { hasPermissionRequirements = false } = {})`
|
|
470
|
-
- `ensureAccessModeCompatibility({ accessMode = "auto", hasPermissionRequirements = false, caller = "users-web" } = {})`
|
|
471
|
-
- `resolveApiSuffix(apiSuffix, context = {})`
|
|
472
|
-
- `resolveEnabled(value, context = {})`
|
|
473
|
-
- `normalizeOwnershipFilter(value = ROUTE_VISIBILITY_WORKSPACE)`
|
|
474
|
-
- `isScopedOwnershipFilter(ownershipFilter)`
|
|
475
|
-
- `resolveQueryKey(queryKeyFactory, { surfaceId = "", scopeParamValue = "", ownershipFilter = ROUTE_VISIBILITY_WORKSPACE } = {})`
|
|
476
|
-
- `resolveResourceMessages(resource, defaults = {})`
|
|
477
|
-
|
|
478
|
-
### `src/client/composables/useAccess.js`
|
|
479
|
-
Exports
|
|
480
|
-
- `useAccess({ scopeParamValue = "", enabled = true, access = "always", hasPermissionRequirements = false } = {})`
|
|
481
|
-
Local functions
|
|
482
|
-
- `asPermissionList(value)`
|
|
483
|
-
|
|
484
73
|
### `src/client/composables/useAccountSettingsRuntime.js`
|
|
485
74
|
Exports
|
|
486
75
|
- `useAccountSettingsRuntime()`
|
|
487
76
|
|
|
488
|
-
### `src/client/composables/useCommand.js`
|
|
489
|
-
Exports
|
|
490
|
-
- `useCommand({ ownershipFilter = ROUTE_VISIBILITY_WORKSPACE, surfaceId = "", access = "auto", apiSuffix = "", runPermissions = [], writeMethod = "POST", client = null, resource: commandResource = null, transport = null, placementSource = "users-web.command", fallbackRunError = "Unable to complete action.", fieldErrorKeys = [], clearOnRouteChange = true, model, input, buildRawPayload, buildCommandPayload, buildCommandOptions, onRunSuccess, onRunError, suppressSuccessMessage = false, messages = {}, realtime = null } = {})`
|
|
491
|
-
|
|
492
|
-
### `src/client/composables/useCrudAddEditScreen.js`
|
|
493
|
-
Exports
|
|
494
|
-
- `useCrudAddEditScreen({ screen = null, mode = "new", title = "", subtitle = "", saveLabel = "Save", cancelTo = "", resource = null, operationName = "", formFields = [], addEditOptions = {}, saveSuccess = {}, fieldBinding = null, createModel = null, buildPayload = null, mapPayloadToModel = null, input = null, preserveCancelQuery = false } = {})`
|
|
495
|
-
Local functions
|
|
496
|
-
- `normalizeProvidedScreen(screen = null)`
|
|
497
|
-
|
|
498
|
-
### `src/client/composables/useCrudDeleteAction.js`
|
|
499
|
-
Exports
|
|
500
|
-
- `requireCrudDeleteOperation(resource = null)`
|
|
501
|
-
- `resolveDeleteApiSuffix(screen, apiUrlTemplate = "")`
|
|
502
|
-
- `useCrudDeleteAction({ screen = null, resource = null, resourceNamespace = "", apiUrlTemplate = "", access = "auto", client = null, router: routerOverride = null, fallbackDeleteError = "Unable to delete record." } = {})`
|
|
503
|
-
Local functions
|
|
504
|
-
- `requireCrudViewScreen(screen = null)`
|
|
505
|
-
- `resolveListLocation(screen)`
|
|
506
|
-
|
|
507
|
-
### `src/client/composables/useCrudListBulkActions.js`
|
|
508
|
-
Exports
|
|
509
|
-
- `useCrudListBulkActions(actions = [], { resolveRecordId = null, resolveContext = null } = {})`
|
|
510
|
-
Local functions
|
|
511
|
-
- `normalizeSelectedId(value = "")`
|
|
512
|
-
- `resolveActionKey(actionOrKey = "")`
|
|
513
|
-
|
|
514
|
-
### `src/client/composables/useCrudListFilterLookups.js`
|
|
515
|
-
Exports
|
|
516
|
-
- `useCrudListFilterLookups(definitions = {}, { values = {}, adapter = null, recordIdParam = "recordId", queryKeyPrefix = [], placementSourcePrefix = "", requestQueryParams = {}, labelResolvers = {} } = {})`
|
|
517
|
-
|
|
518
|
-
### `src/client/composables/useCrudListFilters.js`
|
|
519
|
-
Exports
|
|
520
|
-
- `useCrudListFilters(definitions = {}, { labelResolvers = {}, chipLabels = {}, presets = [] } = {})`
|
|
521
|
-
Local functions
|
|
522
|
-
- `normalizeFunctionMap(value = {})`
|
|
523
|
-
- `normalizePresetEntries(presets = [])`
|
|
524
|
-
- `resolvePresetValues(preset = {}, { values = {}, filters = {} } = {})`
|
|
525
|
-
- `createRuntimeFilterValue(filter = {})`
|
|
526
|
-
- `assignFilterValue(values, filter = {}, rawValue)`
|
|
527
|
-
- `resetFilterValue(values, filter = {})`
|
|
528
|
-
- `applyPresetFilterValue(values, filter = {}, rawValue)`
|
|
529
|
-
- `createQueryParams(values, filterEntries = [])`
|
|
530
|
-
- `resolveFilterRouteValue(filter, routeValue, { initial = false } = {})`
|
|
531
|
-
- `createRouteQueryValueResolvers(filterEntries = [])`
|
|
532
|
-
- `resolveAtomicValueLabel(filter = {}, value = "", labelResolvers = {})`
|
|
533
|
-
- `formatDefaultChipLabel(filter = {}, chipValue, labelResolvers = {})`
|
|
534
|
-
|
|
535
|
-
### `src/client/composables/useCrudListParentTitle.js`
|
|
536
|
-
Exports
|
|
537
|
-
- `useCrudListParentTitle({ listRuntime = null, resource = {}, adapter = null, recordIdParam = "recordId", queryKeyPrefix = ["users-web", "crud-list-parent-title"], placementSource = "users-web.crud-list-parent-title", fallbackLoadError = "Unable to load parent record.", notFoundMessage = "Parent record not found.", route = null, viewRuntimeFactory = useView } = {})`
|
|
538
|
-
Local functions
|
|
539
|
-
- `normalizeQueryKeyPrefix(value = [])`
|
|
540
|
-
|
|
541
|
-
### `src/client/composables/useCrudListRowActions.js`
|
|
542
|
-
Exports
|
|
543
|
-
- `useCrudListRowActions(actions = [], { resolveRecordId = null, resolveContext = null } = {})`
|
|
544
|
-
Local functions
|
|
545
|
-
- `normalizeRowActionKey(actionOrKey = "")`
|
|
546
|
-
- `normalizeRowId(value = "")`
|
|
547
|
-
- `createExecutionKey(actionKey = "", recordId = "", index = 0)`
|
|
548
|
-
- `asContextObject(value = null)`
|
|
549
|
-
|
|
550
|
-
### `src/client/composables/useCrudListScreen.js`
|
|
551
|
-
Exports
|
|
552
|
-
- `__testables`
|
|
553
|
-
- `useCrudListScreen({ adapter = null, client = null, resource = null, resourceNamespace = "resource", apiSuffix = "", recordIdParam = "recordId", recordIdSelector = null, titleFallbackFieldKey = "", viewUrlTemplate = "", editUrlTemplate = "", newUrlTemplate = "", recordChangedEvents = [], listFilters = {}, listBulkActions = [], listRowActions = [], syntheticRows = null, routeQueryBlacklist = Object.freeze(["include", "cursor", "limit"]), requestQueryParams = null, requestFieldsets = null, readEnabled = true, requestRecoveryLabel = "Records", fallbackLoadError = "Unable to load records." } = {})`
|
|
554
|
-
Local functions
|
|
555
|
-
- `buildCrudListActionContext(records, client)`
|
|
556
|
-
- `formatCrudListCardValue(value)`
|
|
557
|
-
- `asList(value = [])`
|
|
558
|
-
- `hasSyntheticRowGroups(value = null)`
|
|
559
|
-
- `normalizeSyntheticDisplayRow(source = null, index = 0, placement = "prepend")`
|
|
560
|
-
- `normalizeSyntheticDisplayRows(value = [], placement = "prepend")`
|
|
561
|
-
- `normalizeSyntheticDisplayRowGroups(syntheticRows = null)`
|
|
562
|
-
- `createCrudListDisplayRow(record = {}, index = 0, records = {})`
|
|
563
|
-
|
|
564
|
-
### `src/client/composables/useCrudViewScreen.js`
|
|
565
|
-
Exports
|
|
566
|
-
- `useCrudViewScreen({ adapter = null, resource = null, resourceNamespace = "resource", apiUrlTemplate = "", recordIdParam = "recordId", titleFallbackFieldKey = "", listUrlTemplate = "", editUrlTemplate = "", recordChangedEvent = "", requestQueryParams = null, requestFieldsets = null, readEnabled = true, queryKeyFactory = null, requestRecoveryLabel = "Record", fallbackLoadError = "Unable to load record.", notFoundMessage = "Record not found." } = {})`
|
|
567
|
-
|
|
568
|
-
### `src/client/composables/usePagedCollection.js`
|
|
569
|
-
Exports
|
|
570
|
-
- `usePagedCollection({ queryKey, enabled = true, initialPageParam = null, queryFn, getNextPageParam = defaultGetNextPageParam, selectItems = defaultSelectItems, dedupeBy = null, queryOptions = null, fallbackLoadError = "Unable to load list." } = {})`
|
|
571
|
-
- `trimInfinitePagesToFirst(data = null)`
|
|
572
|
-
Local functions
|
|
573
|
-
- `defaultSelectItems(page)`
|
|
574
|
-
- `defaultGetNextPageParam(lastPage)`
|
|
575
|
-
- `normalizeQueryKeyValue(queryKey = null)`
|
|
576
|
-
|
|
577
|
-
### `src/client/composables/useRealtimeQueryInvalidation.js`
|
|
578
|
-
Exports
|
|
579
|
-
- `resolveOperationRealtimeOptions({ realtime = undefined, fallbackRealtime = null } = {})`
|
|
580
|
-
- `useRealtimeQueryInvalidation({ event = "", enabled = true, matches = null, queryKey = null, onEvent = null } = {})`
|
|
581
|
-
- `useOperationRealtime({ realtime = null, queryKey = null, enabled = true } = {})`
|
|
582
|
-
Local functions
|
|
583
|
-
- `normalizeRealtimeOptions(value = {})`
|
|
584
|
-
- `hasRealtimeEventConfig(value = {})`
|
|
585
|
-
- `resolveEnabled(value)`
|
|
586
|
-
- `toQueryKeyList(value)`
|
|
587
|
-
|
|
588
|
-
### `src/client/composables/useScopeRuntime.js`
|
|
589
|
-
Exports
|
|
590
|
-
- `useScopeRuntime({ ownershipFilter = ROUTE_VISIBILITY_WORKSPACE, surfaceId = "", accessMode = "auto", hasPermissionRequirements = false, placementSource = "users-web.scope-runtime" } = {})`
|
|
591
|
-
Local functions
|
|
592
|
-
- `resolveScopedRouteParamNames(placementContext = null, surfaceId = "")`
|
|
593
|
-
|
|
594
|
-
### `src/client/filters.js`
|
|
595
|
-
Exports
|
|
596
|
-
- `CRUD_LIST_FILTER_TYPE_FLAG`
|
|
597
|
-
- `CRUD_LIST_FILTER_TYPE_ENUM`
|
|
598
|
-
- `CRUD_LIST_FILTER_TYPE_ENUM_MANY`
|
|
599
|
-
- `CRUD_LIST_FILTER_TYPE_RECORD_ID`
|
|
600
|
-
- `CRUD_LIST_FILTER_TYPE_RECORD_ID_MANY`
|
|
601
|
-
- `CRUD_LIST_FILTER_TYPE_DATE`
|
|
602
|
-
- `CRUD_LIST_FILTER_TYPE_DATE_RANGE`
|
|
603
|
-
- `CRUD_LIST_FILTER_TYPE_NUMBER_RANGE`
|
|
604
|
-
- `CRUD_LIST_FILTER_TYPE_PRESENCE`
|
|
605
|
-
- `CRUD_LIST_FILTER_PRESENCE_PRESENT`
|
|
606
|
-
- `CRUD_LIST_FILTER_PRESENCE_MISSING`
|
|
607
|
-
- `CRUD_LIST_FILTER_PRESENCE_OPTIONS`
|
|
608
|
-
- `defineCrudListFilters`
|
|
609
|
-
|
|
610
77
|
### `src/client/index.js`
|
|
611
78
|
Exports
|
|
612
79
|
- `UsersWebClientProvider`
|
|
613
80
|
- `AccountSettingsClientElement`
|
|
614
|
-
- `CrudAddEditScreen`
|
|
615
|
-
- `CrudDeleteAction`
|
|
616
|
-
- `CrudListBulkActionSurface`
|
|
617
|
-
- `CrudListFilterSurface`
|
|
618
|
-
- `CrudListScreen`
|
|
619
|
-
- `CrudViewScreen`
|
|
620
|
-
- `normalizeCrudApiAccess`
|
|
621
|
-
- `resolveCrudHttpClient`
|
|
622
|
-
- `useCrudDeleteAction`
|
|
623
81
|
- `clientProviders`
|
|
624
82
|
|
|
625
83
|
### `src/client/lib/bootstrap.js`
|
|
626
84
|
Exports
|
|
627
85
|
- `resolvePlacementUserFromBootstrapPayload(payload = {}, currentUser = null)`
|
|
628
86
|
|
|
629
|
-
### `src/client/lib/httpClient.js`
|
|
630
|
-
Exports
|
|
631
|
-
- `configureUsersWebHttpClient(optionsOrClient = {})`
|
|
632
|
-
- `createUsersWebHttpClient(options = {})`
|
|
633
|
-
- `getUsersWebHttpClient()`
|
|
634
|
-
- `resetUsersWebHttpClientForTests()`
|
|
635
|
-
- `usersWebHttpClient`
|
|
636
|
-
Local functions
|
|
637
|
-
- `normalizeOptions(value = null)`
|
|
638
|
-
|
|
639
|
-
### `src/client/lib/permissions.js`
|
|
640
|
-
Exports
|
|
641
|
-
- `normalizePermissionList`
|
|
642
|
-
- `arePermissionListsEqual(left, right)`
|
|
643
|
-
- `hasPermission`
|
|
644
|
-
Local functions
|
|
645
|
-
- `toPermissionSet(values)`
|
|
646
|
-
|
|
647
87
|
### `src/client/lib/theme.js`
|
|
648
88
|
Exports
|
|
649
89
|
- `THEME_PREFERENCE_DARK`
|
|
@@ -666,25 +106,6 @@ Local functions
|
|
|
666
106
|
Exports
|
|
667
107
|
- `UsersWebClientProvider`
|
|
668
108
|
|
|
669
|
-
### `src/client/rowActions.js`
|
|
670
|
-
Exports
|
|
671
|
-
- `defineCrudListRowActions(actions = [])`
|
|
672
|
-
Local functions
|
|
673
|
-
- `normalizeCrudListRowAction(rawAction = {}, index = 0)`
|
|
674
|
-
|
|
675
|
-
### `src/client/support/contractGuards.js`
|
|
676
|
-
Exports
|
|
677
|
-
- `requireRecord(value, label = "value", owner = "Contract")`
|
|
678
|
-
- `requireBoolean(value, label = "value", owner = "Contract")`
|
|
679
|
-
- `requireFunction(value, label = "value", owner = "Contract")`
|
|
680
|
-
|
|
681
|
-
### `src/client/support/crudListDateFilterSupport.js`
|
|
682
|
-
Exports
|
|
683
|
-
- `parseDateOnlyValue(value = "")`
|
|
684
|
-
- `formatDateOnlyValue(value = null)`
|
|
685
|
-
- `formatDateOnlyDisplay(value = "", { locale = undefined } = {})`
|
|
686
|
-
- `formatCrudListDateFilterChipLabel(filter = {}, rawValue, { locale = undefined } = {})`
|
|
687
|
-
|
|
688
109
|
### `src/shared/toolsOutletContracts.js`
|
|
689
110
|
Exports
|
|
690
111
|
- `HOME_COG_OUTLET`
|
|
@@ -706,17 +127,3 @@ Exports
|
|
|
706
127
|
### `templates/src/pages/account/index.vue`
|
|
707
128
|
Exports
|
|
708
129
|
- None
|
|
709
|
-
|
|
710
|
-
### fixtures
|
|
711
|
-
|
|
712
|
-
### `fixtures/crud-list-date-filters/App.vue`
|
|
713
|
-
Exports
|
|
714
|
-
- None
|
|
715
|
-
|
|
716
|
-
### `fixtures/crud-list-date-filters/main.js`
|
|
717
|
-
Exports
|
|
718
|
-
- None
|
|
719
|
-
|
|
720
|
-
### `fixtures/crud-list-date-filters/vite.config.mjs`
|
|
721
|
-
Exports
|
|
722
|
-
- None
|