@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.
@@ -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 };