@arkcit/react-ui 0.3.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/README.md +59 -0
- package/dist/ApiDocLayout-6hYQvst0.d.ts +19 -0
- package/dist/ComponentGuidelines-h1MjGBuJ.d.ts +1293 -0
- package/dist/FileUploadField-DLwEPn_A.d.ts +32 -0
- package/dist/contracts.d.ts +10 -0
- package/dist/contracts.js +36 -0
- package/dist/form-fields-9C7CmVGn.d.ts +88 -0
- package/dist/form-fields.d.ts +5 -0
- package/dist/form-fields.js +2113 -0
- package/dist/index.d.ts +36 -0
- package/dist/index.js +16112 -0
- package/dist/orchestrator-contracts.d.ts +1 -0
- package/dist/orchestrator-contracts.js +0 -0
- package/dist/orchestrator-registry.d.ts +25 -0
- package/dist/orchestrator-registry.js +9405 -0
- package/dist/orchestrator.d.ts +29 -0
- package/dist/orchestrator.js +9602 -0
- package/dist/registry.d.ts +30 -0
- package/dist/registry.js +15786 -0
- package/dist/ui-contracts.d.ts +123 -0
- package/dist/ui-contracts.js +36 -0
- package/dist/ui-registry.d.ts +127 -0
- package/dist/ui-registry.js +15611 -0
- package/dist/ui.d.ts +119 -0
- package/dist/ui.js +9618 -0
- package/package.json +121 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export { default as UIEngine, default } from '@arkcit/engine/UIEngine';
|
|
2
|
+
export { bindNodeEvents, resolveNodeProps, resolveUIValue } from '@arkcit/engine/bindings';
|
|
3
|
+
export { InlineTextEditor, NodeErrorBoundary, StudioNodeWrapper } from '@arkcit/engine/components';
|
|
4
|
+
export { applyInlineEditingValue, computeInlineEditorStyle, shouldUseMultilineInlineEditor } from '@arkcit/engine/utils/inlineEditing';
|
|
5
|
+
export { openInlineEditorFromDoubleClick } from '@arkcit/engine/utils/inlineEditorOpening';
|
|
6
|
+
export { InlineTextEntry, InlineTextMode, getEditableTextValue, selectCandidateInlineProp, selectEffectiveInlineProp } from '@arkcit/engine/utils/inlineText';
|
|
7
|
+
export { readNodeLayout, writeNodeLayout } from '@arkcit/engine/layout';
|
|
8
|
+
export { buildNodeResetToken } from '@arkcit/engine/utils/nodeResetToken';
|
|
9
|
+
export { createMouseResizeHandler, createStudioNodeClickHandler, createStudioNodeDoubleClickHandler, createTouchResizeHandlers } from '@arkcit/engine/utils/nodeWrapperHandlers';
|
|
10
|
+
export { getNodeWrapperPresentation, getStudioNodeInteractionState, renderPlainWrappedNode } from '@arkcit/engine/utils/nodeWrapperStudio';
|
|
11
|
+
export { buildCoverContent, buildCoverMedia, buildScrollRevealChildren } from '@arkcit/engine/utils/contentStudio';
|
|
12
|
+
export { buildFormFieldConfig, buildWizardFieldConfig, getLayoutRecord, getStudioFormChildRole, isWizardStepChild, normalizeStudioFormChild } from '@arkcit/engine/utils/formStudio';
|
|
13
|
+
export { buildAccordionItems, buildExpandablePanelChildren, buildTabsContent, findContainingNodeId, normalizeTabsProps, resolveAccordionOpenIds } from '@arkcit/engine/utils/navigationStudio';
|
|
14
|
+
export { applyStudioOverlayComponentProps, getOpenStudioOverlayState, readOverlayState } from '@arkcit/engine/utils/overlayStudio';
|
|
15
|
+
export { buildFieldsByStep, findSelectedWizardStepId, getWizardRenderableChildren, getWizardStepRole, resolveActiveWizardStepId, validateWizardStepFields } from '@arkcit/engine/utils/wizardStudio';
|
|
16
|
+
export { configureStudioAccordion, configureStudioExpandablePanel, configureStudioFormWizard, configureStudioLink, configureStudioTabs, renderBoundTable, renderStudioForm } from '@arkcit/engine/renderers';
|
|
17
|
+
export { applyDecodeTranslationBinding, applyObjectBinding, applyRowsAndColumnsBinding, filterRowsByRuntimeQuery } from '@arkcit/engine/utils/dataBinding';
|
|
18
|
+
export { PendingFieldFocus, capturePendingFieldFocus, restorePendingFieldFocus } from '@arkcit/engine/utils/fieldFocus';
|
|
19
|
+
export { normalizeRenderableChild, toBoolean } from '@arkcit/engine/utils/renderChildren';
|
|
20
|
+
export { UIPinchResizeState, UIResizeState, computeMouseResizeSize, computePinchResizeSize, createMouseResizeState, createPinchResizeState } from '@arkcit/engine/utils/resizeStudio';
|
|
21
|
+
export { buildAncestorTypeMembership, collectOverlayNodeIds, findNodeById, hasAncestorType } from '@arkcit/engine/utils/schemaTraversal';
|
|
22
|
+
export { buildNormalizedActionRef, isInteractiveSelectionTarget, resolveButtonOverlayTarget, resolveClickedNodeId, syncOverlayStateFromAction } from '@arkcit/engine/utils/studioClick';
|
|
23
|
+
export { STUDIO_INTERNAL_PROP_NAMES, getStudioProps, omitStudioProps } from '@arkcit/engine/studio-props';
|
|
24
|
+
import { ComponentRegistry } from '@arkcit/engine/types';
|
|
25
|
+
export { ComponentRegistry, ComponentRegistryEntry, UIActionRef, UIEngineProps, UIExprValue, UII18nValue, UIInlineEditingMode, UIInlineEditingState, UIInlineTextEditorProps, UINode, UINodeEventName, UINodeLayout, UINodeProps, UINodeWrapperProps, UIRefValue, UIRuntime, UISchema, UIStudioNodeMeta, UIValue } from '@arkcit/engine/types';
|
|
26
|
+
|
|
27
|
+
declare const defaultUIRegistry: ComponentRegistry;
|
|
28
|
+
|
|
29
|
+
export { defaultUIRegistry };
|