@ai-matrx/records-ui 0.63.0 → 0.65.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/dist/index.d.cts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as react from 'react';
2
2
  import { ReactNode, ComponentType, RefObject } from 'react';
3
3
  import * as _ai_matrx_records from '@ai-matrx/records';
4
- import { PermissionLevel, Table, RecordScopeContext, EnrichCell, RecordsError, Uuid as Uuid$1, AggregateFilter, Field, RecordDocument, ReadRow, RelationDisplay, WriteConflict, ParityFieldType, NewFieldDeclaration, RuleExpression, ValueEnvelope, WorkInboxKind, FormSummary, PortalCard, PortalPrincipal, PortalPreviewRow, DashboardBlockKind, AggregateBucket, AggregateMeasure, DashboardBlock, DashboardSummary, DocTemplateRow, DocRenderRow, QuietHours, DashboardBlockResult, ChecklistRunStep, BookingSummary, CaptureSheetFace, CaptureField, AnonTokenBinding, RecordsConfig, RecordsActor, RecordsDataSource, HistoryActor, FieldHistoryEntry, FieldTypeWord } from '@ai-matrx/records';
4
+ import { PermissionLevel, Table, RecordScopeContext, EnrichCell, RecordsError, Uuid as Uuid$1, AggregateFilter, Field, RecordDocument, ReadRow, RelationDisplay, WriteConflict, ParityFieldType, NewFieldDeclaration, RuleExpression, ValueEnvelope, ChecklistRequirementKind, ContextPolicy, WorkDueState, FieldSensitivity, StageRuleOnFail, SubscriptionCadence, WorkInboxKind, FieldKind, FormSummary, PortalCard, PortalPrincipal, PortalPreviewRow, DashboardBlockKind, AggregateBucket, AggregateMeasure, DashboardBlock, DashboardSummary, DocTemplateRow, DocRenderRow, QuietHours, DashboardBlockResult, ChecklistRunStep, BookingSummary, CaptureSheetFace, CaptureField, AnonTokenBinding, RecordsConfig, RecordsActor, RecordsDataSource, HistoryActor, FieldHistoryEntry, FieldTypeWord } from '@ai-matrx/records';
5
5
  import { Uuid, Field as Field$1, ReadRow as ReadRow$1 } from '@ai-matrx/records/react';
6
6
  import { RecordsClient } from '@ai-matrx/records/core';
7
7
  import { FieldFormatConfig } from '@ai-matrx/design-system/field-formats';
@@ -1186,11 +1186,34 @@ declare const CONDITION_OPS: Array<{
1186
1186
  op: string;
1187
1187
  label: string;
1188
1188
  }>;
1189
- /** A column this condition may speak about, by id — which is how the store names them. */
1189
+ /**
1190
+ * A column this condition may speak about, by id — which is how the store names them.
1191
+ *
1192
+ * 🚨 IT CARRIES THE FIELD NOW, AND THAT IS A DEFECT BEING FIXED (lane RELATION-DISPLAY-2,
1193
+ * 2026-09-21). This was `{id, key, label}` and nothing else, so the builder could not know
1194
+ * that a column POINTS AT ANOTHER RECORD. A relation clause therefore rendered the same
1195
+ * plain text box every other clause gets — and since a relation's stored value is the
1196
+ * other record's id (FLD-6 / REL-1), the only way to write a true one was for a person to
1197
+ * find and TYPE A UUID. Nobody does that, which means "only jobs for this customer" was a
1198
+ * gate a non-technical person could not write at all, on a builder whose whole purpose is
1199
+ * that they can.
1200
+ *
1201
+ * `field` is OPTIONAL and everything still works without it: a caller that passes only the
1202
+ * three strings gets exactly the old behaviour. Both callers in this package already hold
1203
+ * the whole `Field` and were throwing it away one line before handing it over.
1204
+ */
1190
1205
  interface ConditionField {
1191
1206
  id: string;
1192
1207
  key: string;
1193
1208
  label: string;
1209
+ /**
1210
+ * The Field itself, when the caller has it. Present, a relation clause picks a record BY
1211
+ * ITS DISPLAYED WORDS through `RelationPicker` — the same picker the cell uses, reading
1212
+ * the same `relation_words_many` the cell reads, so what a person chooses in a filter and
1213
+ * what they see in the column are the same string. It writes the ID, which is what the
1214
+ * store compares.
1215
+ */
1216
+ field?: Field;
1194
1217
  }
1195
1218
  interface ConditionRowProps {
1196
1219
  /** The words before the row: "Ask only when", "When". */
@@ -1424,16 +1447,63 @@ declare function RecordValue({ field, value, document, format, }: {
1424
1447
  format?: FieldFormatConfig | undefined;
1425
1448
  }): react.JSX.Element;
1426
1449
 
1450
+ declare const WORK_DUE_STATES: readonly ["overdue", "due_today", "scheduled", "undated", "finished"];
1451
+ declare const DUE_STATE_LABEL: Record<WorkDueState, string>;
1452
+ declare const WORK_INBOX_KINDS: readonly ["assignment", "approval", "proposal"];
1453
+ declare const WORK_INBOX_KIND_LABEL: Record<WorkInboxKind, string>;
1454
+ declare const CHECKLIST_REQUIREMENT_KINDS: readonly ["none", "note", "answer", "record_field", "form", "document"];
1455
+ declare const CHECKLIST_REQUIREMENT_LABEL: Record<ChecklistRequirementKind, string>;
1456
+ declare const FIELD_SENSITIVITY_LABEL: Record<FieldSensitivity, string>;
1457
+ declare const CONTEXT_POLICY_LABEL: Record<ContextPolicy, string>;
1458
+ declare const STAGE_RULE_ON_FAIL_LABEL: Record<StageRuleOnFail, string>;
1459
+ declare const SUBSCRIPTION_CADENCES: readonly ["instant", "hourly", "daily", "weekly"];
1460
+ declare const SUBSCRIPTION_CADENCE_LABEL: Record<SubscriptionCadence, string>;
1461
+ declare const SUBSCRIPTION_CHANNEL_VALUES: readonly ["in_app", "email", "sms"];
1462
+ type SubscriptionChannel = (typeof SUBSCRIPTION_CHANNEL_VALUES)[number];
1463
+ declare const SUBSCRIPTION_CHANNEL_LABEL: Record<SubscriptionChannel, string>;
1464
+ declare const ROLLUP_AGG_VALUES: readonly ["count", "sum", "avg", "min", "max"];
1465
+ type RollupAgg = (typeof ROLLUP_AGG_VALUES)[number];
1466
+ declare const ROLLUP_AGG_LABEL: Record<RollupAgg, string>;
1467
+ declare const FORMULA_OP_VALUES: readonly ["concat", "add", "sub", "mul", "div"];
1468
+ type FormulaOp = (typeof FORMULA_OP_VALUES)[number];
1469
+ declare const FORMULA_OP_LABEL: Record<FormulaOp, string>;
1470
+ /** Whether this operation reads naturally as "X and Y and Z…" over more than two columns. */
1471
+ declare const FORMULA_OP_JOINS: Record<FormulaOp, boolean>;
1472
+ declare const FIELD_RULE_KIND_VALUES: readonly ["min", "max", "length", "pattern", "equals_field", "differs_from_field"];
1473
+ type FieldRuleKindValue = (typeof FIELD_RULE_KIND_VALUES)[number];
1474
+ declare const FIELD_RULE_KIND_LABEL: Record<FieldRuleKindValue, string>;
1475
+ declare const PROPOSED_CHANGE_ACT_VALUES: readonly ["add", "update", "remove"];
1476
+ type ProposedChangeAct = (typeof PROPOSED_CHANGE_ACT_VALUES)[number];
1477
+ declare const PROPOSED_CHANGE_ACT_LABEL: Record<ProposedChangeAct, string>;
1478
+ declare const BOOKING_PAGE_STATE_VALUES: readonly ["draft", "open", "closed", "full"];
1479
+ type BookingPageState = (typeof BOOKING_PAGE_STATE_VALUES)[number];
1480
+ declare const BOOKING_PAGE_STATE_LABEL: Record<BookingPageState, string>;
1481
+ declare const ABSENCE_WORD_VALUES: readonly ["never asked", "none", "refused", "conflicting"];
1482
+ type AbsenceWord = (typeof ABSENCE_WORD_VALUES)[number];
1483
+ declare const ABSENCE_WORD_LABEL: Record<AbsenceWord, string>;
1484
+
1427
1485
  declare const PARITY_LABEL: Record<ParityFieldType, string>;
1428
1486
  /** The "made of" sentence the store itself publishes, for the field editor's help text. */
1429
1487
  declare const PARITY_MADE_OF: Record<string, string>;
1430
- /** Plain text and plain number are behaviours with no parity type of their own. */
1431
- type EditorKind = ParityFieldType | "relation" | "text" | "number" | "boolean" | "date" | "json" | "long_text";
1488
+ /**
1489
+ * Plain text and plain number are behaviours with no parity type of their own.
1490
+ *
1491
+ * 🚨 THIS IS NOW AN ALIAS, AND THAT IS THE POINT (TAILS-3, 2026-09-21). The
1492
+ * classifier moved into `@ai-matrx/records` as `FieldKind` so that the editor a
1493
+ * person types into and the COERCION applied to what they typed are decided by
1494
+ * one body. They were decided by two, and the public booking page paid for it:
1495
+ * "Vehicle Year takes a number, and it was given a string" on every table with
1496
+ * a number field.
1497
+ */
1498
+ type EditorKind = FieldKind;
1432
1499
  /**
1433
1500
  * Which editor one Field wants. Reads the Field's own declaration only — the
1434
1501
  * behaviour, the modifiers, the format, the relation target and the config —
1435
1502
  * because those are what the store stores, and a screen that guessed from a
1436
1503
  * value would draw a different editor for an empty record.
1504
+ *
1505
+ * It is `fieldKindFor` with this package's kernel ids bound. Nothing here
1506
+ * decides anything the core does not.
1437
1507
  */
1438
1508
  declare function editorKindFor(field: Field): EditorKind;
1439
1509
  /**
@@ -1933,10 +2003,25 @@ declare function PortalBuilder({ tableId, portalId, onSaved, onClose, className
1933
2003
 
1934
2004
  interface PortalsPanelProps {
1935
2005
  /**
1936
- * OPTIONAL. The Table whose page this rail is on. It is used for ONE thing:
1937
- * saying, on an opened portal, whether this table is among the ones that
1938
- * portal shows. It never filters the list — a portal belongs to the
1939
- * organization, and hiding the others would answer a question nobody asked.
2006
+ * The Table whose page this rail is on. THE RAIL IS SCOPED TO IT: it lists
2007
+ * the portals that INCLUDE this table, and nothing else.
2008
+ *
2009
+ * 🚨 THIS NOTE USED TO SAY THE OPPOSITE, and the opposite was a defect
2010
+ * (AGENT-BUILDS-2, measured on Rincon Plumbing Co; chair ruling 2026-09-21).
2011
+ * It read: "It never filters the list — a portal belongs to the
2012
+ * organization, and hiding the others would answer a question nobody asked."
2013
+ * A portal does belong to the organization. But this rail sits on a TABLE's
2014
+ * page, beside Forms, Bookings and Dashboards, every one of which is
2015
+ * table-scoped — and emptiness here decided the whole "Build it / Ask an
2016
+ * agent" offer. So on Rincon's **Parts** table, eight rows of copper pipe and
2017
+ * wax rings, the rail read "Portals 10" and listed ten cards titled "Your
2018
+ * jobs and invoices", which belong to **Jobs**. The empty state never
2019
+ * rendered, `BuildOrAsk` never rendered, and the agent half of the product
2020
+ * was unreachable on EVERY table of that organization. Four Rincon tables
2021
+ * were tried and all four refused to offer it.
2022
+ *
2023
+ * Omit it and the rail is organization-wide again, which is right for a
2024
+ * mount that is not standing on a table.
1940
2025
  */
1941
2026
  tableId?: Uuid | undefined;
1942
2027
  className?: string | undefined;
@@ -2033,7 +2118,9 @@ interface BuildOrAskProps {
2033
2118
  whyNot?: string | null | undefined;
2034
2119
  /**
2035
2120
  * The host's agent port. Unbound, the second button is absent and the
2036
- * sentence below names what is missing.
2121
+ * sentence below names what is missing. Bound but `mayBuild` false, it is
2122
+ * absent too: an agent asked to do what this person may not do gets refused
2123
+ * by the same doors, five minutes later, with nothing to show for it.
2037
2124
  */
2038
2125
  onAsk?: (() => void) | undefined;
2039
2126
  /** The words a person would actually say, offered as the starting sentence. */
@@ -3016,4 +3103,4 @@ interface PipelineBoardProps {
3016
3103
  }
3017
3104
  declare function PipelineBoard({ tableId, rows, measure, onMeasureChange, onOpenRecord, onMoved, className, }: PipelineBoardProps): react.JSX.Element;
3018
3105
 
3019
- export { ACTION_KINDS, ActionInbox, type ActionInboxProps, type ActionKind, type AgentBuildAsk, BookingBuilder, type BookingBuilderProps, BookingSlots, type BookingSlotsProps, BuildOrAsk, type BuildOrAskProps, type BuildableKind, CAPTURE_MODES, CHART_KINDS, CHART_KIND_LABEL, CHART_NEEDS, CONDITION_OPS, type Capability, type CaptureMode, type CaptureQueuePort, CaptureRun, type CaptureRunProps, CaptureSheet, type CaptureSheetProps, type CellAddress, type CellRefusal, type CellState, ChartBlock, type ChartBlockProps, type ChartConfig, ChartFrame, type ChartKind, ChartLegendContent, type ChartSpec, ChartTooltipContent, ChecklistRunner, type ChecklistRunnerProps, ChecklistTemplateEditor, ChecklistsPanel, type ChecklistsPanelProps, CommentThread, type CommentThreadProps, type ConditionField, ConditionGroup, type ConditionGroupProps, ConditionRow, type ConditionRowProps, CustomFieldsSection, type CustomFieldsSectionProps, DEFAULT_FIELDS, DEFAULT_VIEW_NAME, DashboardCanvas, type DashboardCanvasProps, type DeclareResult, DigestScheduler, type DigestSchedulerProps, DocRender, type DocRenderProps, DocTemplate, type DocTemplateProps, type DocTemplateSpec, EMPTY_PRESENTATION, type EditorKind, EmbedFrame, type EmbedFrameProps, type EnrichAsk, EnrichBadge, type EnrichBadgeProps, type EnrichOutcome, EnrichPanel, type EnrichPanelProps, ExportMenu, type ExportMenuProps, FIELD_TYPE_CHOICES, FIELD_TYPE_GROUPS, FORM_FLOWS, FROZEN_COLUMN_WIDTH, FieldControl, FieldEditor, type FieldEditorControlProps, type FieldEditorProps, FieldHistoryPanel, type FieldHistoryPanelProps, FieldLabel, type FieldProposalRow, type FieldTypeChoice, FormBuilder, type FormBuilderProps, type FormFlow, type FormQuestionSpec, FormRunner, type FormRunnerProps, type FormSpec, type FormSubmitOutcome, type FormTheme, FormsPanel, type FormsPanelProps, Grid, GridCell, type GridEditing, type GridGrouping, type GridPresentation, type GridProps, HistoryPanel, type HistoryPanelProps, IN_MEMORY_QUEUE_REASON, ImportWizard, type ImportWizardProps, KERNEL_REASON, LANE_EMPTY, LANE_TITLE, LAYOUT_FIELD_KIND, LAYOUT_LABEL, LAYOUT_NEEDS, LAYOUT_NO_FIELD, LEVEL_WORD, type LabelLookup, MACHINE_IDENTITY, MAX_ROW_HEIGHT, MIN_ROW_HEIGHT, type MainView, MyChecklistSteps, NEEDS_A_SENTENCE, NOT_ANSWERED_YET, NOT_DRAWN_HERE, NO_AGENT_PORT, NO_CHAT_REASON, NO_COLUMNS_WHY, NO_COLUMNS_YET, NO_ENRICH_REASON, NO_MEMBERS_REASON, NO_OPEN_RECORDS_REASON, NO_REASK_REASON, NO_RIGHTS, NO_RULES_YET, NO_SAVED_VIEWS_REASON, NO_SHARE_REASON, NO_UPLOAD_REASON, type NewFieldSpec, type NewTableSpec, NotifyRuleEditor, type NotifyRuleEditorProps, type NotifyRuleSpec, type OpenRecordsAsk, type OrganizationMember, PAGE_VIEWS, PAGE_VIEW_LABEL, PARITY_LABEL, PARITY_MADE_OF, type PageView, Peek, type PeekProps, type PendingCapture, PersonPicker, type PersonPickerProps, type PickableFieldType, PipelineBoard, type PipelineBoardProps, type PlainFieldType, type PlainRefusal, type PortalAnswer, PortalBuilder, type PortalBuilderProps, PortalCardView, type PortalCardViewProps, PortalShell, type PortalShellProps, PortalsPanel, type PortalsPanelProps, type ProposalOutcome, ProposalRow, type ProposalRowProps, type ProposedChange, ProvenanceBadge, PublicViewPage, type PublicViewPageProps, type ReaskContext, RecordChat, type RecordChatContext, type RecordChatEntry, type RecordChatProps, type RecordChatWithheld, RecordChip, RecordForm, type RecordFormProps, RecordLabelProvider, RecordValue, RecordsMount, type RecordsMountProps, type RecordsUiHost, RecordsUiProvider, ReferenceBuilder, type ReferenceBuilderProps, type ReferenceChoice, RefusalLine, RefusalNotice, type RelationFieldType, RelationPicker, type RelationPickerProps, type ResolveName, SAVED_VIEWS_UNAVAILABLE, SAY_WHAT_YOU_ARE_WAITING_FOR_AFTER_MS, SERIES_COLORS, SOMEBODY, STORE_ANSWERS_THESE, STORE_DECIDES_REASON, type SavedDashboard, type SavedForm, type SavedView, type SavedViewSpec, ShareControl, type ShareControlProps, type ShareSubject, SignBlock, type SignBlockProps, StageRulesSection, type StageRulesSectionProps, StepRow, SubscriptionsPanel, type SubscriptionsPanelProps, type Surface, type SurfacePress, type SystemFieldSpec, type SystemTableSpec, TABLE_LANES, TABLE_NOT_REACHABLE, THE_SYSTEM, type TableLane, TablePage, type TablePageProps, type TableRights, TableSettings, type TableSettingsProps, TablesHome, type TablesHomeProps, type TrackedVersion, type UseSystemTableState, VIEW_LAYOUTS, VIEW_NOT_SAVED_YET, VIEW_TABLE, ViewBar, type ViewBarProps, type ViewLayout, type ViewSort, ViewSwitcher, type ViewSwitcherProps, WITHHELD_RECORD_LABEL, type WhatYouMayDo, type WhoChanged, WhoChangedSource, actorBadge, actorWords, addFields, askableFields, blockFromSpec, bodyForReading, bodyFromKeys, cellState, chooseSurface, colorFromTheValue, columnForField, conditionInWords, conditionIsDrawable, conditionIsSimple, conditionValue, controlFor, currencyCodeFor, dashboardDeclareArgs, dashboardFromSummary, declareTable, editorKindFor, ensureSystemTable, envelopeFor, fieldDeclarationFor, fieldIsEditable, fieldName, fieldToken, fieldTypeChoice, fieldTypeLabel, formDeclareArgs, formFromSummary, formPresentation, formatForField, groupLabel, hintForAPerson, hintIsMachineIdentity, humanize, idsOf, isId, isMachineIdentity, isPlainFieldType, isRelationFieldType, isSignatureField, keyFor, laneFor, lastChangeSentence, looksLikeId, machineIdentityIn, memberName, nextInWords, openingRail, openingView, pageViewFromParam, parityTypesWithNoExplanation, parseGridPresentation, personActor, personRecordForMember, pointsAtRecords, presentationDocument, presentationIsEmpty, previewLine, previewWords, publiclyAnswerable, recordName, recordNameIn, recordsDataSource, refusalForAPerson, refusalLineForAPerson, renderValue, revokeConsequence, rowName, rowNameIn, scalarText, shareUnavailableReason, specFromBlock, storeDecidesRights, submissionStamp, surfaceChosen, tableName, tableRightsAt, tokenFor, unknownViewLine, useCanShare, useEmbedHandshake, useEnrichCells, useGridEditing, useLabelWait, useMeasuredWidth, useMyChecklistSteps, useRecordLabels, useRecordRights, useRecordsUi, useRowRights, useSystemTable, useTableRights, useViewRecords, useWhoChanged, viewDocument, viewFromRecord, viewPatchDocument, whatIsMissing, whatYouMayDo, whatYouMayDoWithTable, whenWords, whyNotAskable };
3106
+ export { ABSENCE_WORD_LABEL, ABSENCE_WORD_VALUES, ACTION_KINDS, type AbsenceWord, ActionInbox, type ActionInboxProps, type ActionKind, type AgentBuildAsk, BOOKING_PAGE_STATE_LABEL, BOOKING_PAGE_STATE_VALUES, BookingBuilder, type BookingBuilderProps, type BookingPageState, BookingSlots, type BookingSlotsProps, BuildOrAsk, type BuildOrAskProps, type BuildableKind, CAPTURE_MODES, CHART_KINDS, CHART_KIND_LABEL, CHART_NEEDS, CHECKLIST_REQUIREMENT_KINDS, CHECKLIST_REQUIREMENT_LABEL, CONDITION_OPS, CONTEXT_POLICY_LABEL, type Capability, type CaptureMode, type CaptureQueuePort, CaptureRun, type CaptureRunProps, CaptureSheet, type CaptureSheetProps, type CellAddress, type CellRefusal, type CellState, ChartBlock, type ChartBlockProps, type ChartConfig, ChartFrame, type ChartKind, ChartLegendContent, type ChartSpec, ChartTooltipContent, ChecklistRunner, type ChecklistRunnerProps, ChecklistTemplateEditor, ChecklistsPanel, type ChecklistsPanelProps, CommentThread, type CommentThreadProps, type ConditionField, ConditionGroup, type ConditionGroupProps, ConditionRow, type ConditionRowProps, CustomFieldsSection, type CustomFieldsSectionProps, DEFAULT_FIELDS, DEFAULT_VIEW_NAME, DUE_STATE_LABEL, DashboardCanvas, type DashboardCanvasProps, type DeclareResult, DigestScheduler, type DigestSchedulerProps, DocRender, type DocRenderProps, DocTemplate, type DocTemplateProps, type DocTemplateSpec, EMPTY_PRESENTATION, type EditorKind, EmbedFrame, type EmbedFrameProps, type EnrichAsk, EnrichBadge, type EnrichBadgeProps, type EnrichOutcome, EnrichPanel, type EnrichPanelProps, ExportMenu, type ExportMenuProps, FIELD_RULE_KIND_LABEL, FIELD_RULE_KIND_VALUES, FIELD_SENSITIVITY_LABEL, FIELD_TYPE_CHOICES, FIELD_TYPE_GROUPS, FORMULA_OP_JOINS, FORMULA_OP_LABEL, FORMULA_OP_VALUES, FORM_FLOWS, FROZEN_COLUMN_WIDTH, FieldControl, FieldEditor, type FieldEditorControlProps, type FieldEditorProps, FieldHistoryPanel, type FieldHistoryPanelProps, FieldLabel, type FieldProposalRow, type FieldRuleKindValue, type FieldTypeChoice, FormBuilder, type FormBuilderProps, type FormFlow, type FormQuestionSpec, FormRunner, type FormRunnerProps, type FormSpec, type FormSubmitOutcome, type FormTheme, FormsPanel, type FormsPanelProps, type FormulaOp, Grid, GridCell, type GridEditing, type GridGrouping, type GridPresentation, type GridProps, HistoryPanel, type HistoryPanelProps, IN_MEMORY_QUEUE_REASON, ImportWizard, type ImportWizardProps, KERNEL_REASON, LANE_EMPTY, LANE_TITLE, LAYOUT_FIELD_KIND, LAYOUT_LABEL, LAYOUT_NEEDS, LAYOUT_NO_FIELD, LEVEL_WORD, type LabelLookup, MACHINE_IDENTITY, MAX_ROW_HEIGHT, MIN_ROW_HEIGHT, type MainView, MyChecklistSteps, NEEDS_A_SENTENCE, NOT_ANSWERED_YET, NOT_DRAWN_HERE, NO_AGENT_PORT, NO_CHAT_REASON, NO_COLUMNS_WHY, NO_COLUMNS_YET, NO_ENRICH_REASON, NO_MEMBERS_REASON, NO_OPEN_RECORDS_REASON, NO_REASK_REASON, NO_RIGHTS, NO_RULES_YET, NO_SAVED_VIEWS_REASON, NO_SHARE_REASON, NO_UPLOAD_REASON, type NewFieldSpec, type NewTableSpec, NotifyRuleEditor, type NotifyRuleEditorProps, type NotifyRuleSpec, type OpenRecordsAsk, type OrganizationMember, PAGE_VIEWS, PAGE_VIEW_LABEL, PARITY_LABEL, PARITY_MADE_OF, PROPOSED_CHANGE_ACT_LABEL, PROPOSED_CHANGE_ACT_VALUES, type PageView, Peek, type PeekProps, type PendingCapture, PersonPicker, type PersonPickerProps, type PickableFieldType, PipelineBoard, type PipelineBoardProps, type PlainFieldType, type PlainRefusal, type PortalAnswer, PortalBuilder, type PortalBuilderProps, PortalCardView, type PortalCardViewProps, PortalShell, type PortalShellProps, PortalsPanel, type PortalsPanelProps, type ProposalOutcome, ProposalRow, type ProposalRowProps, type ProposedChange, type ProposedChangeAct, ProvenanceBadge, PublicViewPage, type PublicViewPageProps, ROLLUP_AGG_LABEL, ROLLUP_AGG_VALUES, type ReaskContext, RecordChat, type RecordChatContext, type RecordChatEntry, type RecordChatProps, type RecordChatWithheld, RecordChip, RecordForm, type RecordFormProps, RecordLabelProvider, RecordValue, RecordsMount, type RecordsMountProps, type RecordsUiHost, RecordsUiProvider, ReferenceBuilder, type ReferenceBuilderProps, type ReferenceChoice, RefusalLine, RefusalNotice, type RelationFieldType, RelationPicker, type RelationPickerProps, type ResolveName, type RollupAgg, SAVED_VIEWS_UNAVAILABLE, SAY_WHAT_YOU_ARE_WAITING_FOR_AFTER_MS, SERIES_COLORS, SOMEBODY, STAGE_RULE_ON_FAIL_LABEL, STORE_ANSWERS_THESE, STORE_DECIDES_REASON, SUBSCRIPTION_CADENCES, SUBSCRIPTION_CADENCE_LABEL, SUBSCRIPTION_CHANNEL_LABEL, SUBSCRIPTION_CHANNEL_VALUES, type SavedDashboard, type SavedForm, type SavedView, type SavedViewSpec, ShareControl, type ShareControlProps, type ShareSubject, SignBlock, type SignBlockProps, StageRulesSection, type StageRulesSectionProps, StepRow, type SubscriptionChannel, SubscriptionsPanel, type SubscriptionsPanelProps, type Surface, type SurfacePress, type SystemFieldSpec, type SystemTableSpec, TABLE_LANES, TABLE_NOT_REACHABLE, THE_SYSTEM, type TableLane, TablePage, type TablePageProps, type TableRights, TableSettings, type TableSettingsProps, TablesHome, type TablesHomeProps, type TrackedVersion, type UseSystemTableState, VIEW_LAYOUTS, VIEW_NOT_SAVED_YET, VIEW_TABLE, ViewBar, type ViewBarProps, type ViewLayout, type ViewSort, ViewSwitcher, type ViewSwitcherProps, WITHHELD_RECORD_LABEL, WORK_DUE_STATES, WORK_INBOX_KINDS, WORK_INBOX_KIND_LABEL, type WhatYouMayDo, type WhoChanged, WhoChangedSource, actorBadge, actorWords, addFields, askableFields, blockFromSpec, bodyForReading, bodyFromKeys, cellState, chooseSurface, colorFromTheValue, columnForField, conditionInWords, conditionIsDrawable, conditionIsSimple, conditionValue, controlFor, currencyCodeFor, dashboardDeclareArgs, dashboardFromSummary, declareTable, editorKindFor, ensureSystemTable, envelopeFor, fieldDeclarationFor, fieldIsEditable, fieldName, fieldToken, fieldTypeChoice, fieldTypeLabel, formDeclareArgs, formFromSummary, formPresentation, formatForField, groupLabel, hintForAPerson, hintIsMachineIdentity, humanize, idsOf, isId, isMachineIdentity, isPlainFieldType, isRelationFieldType, isSignatureField, keyFor, laneFor, lastChangeSentence, looksLikeId, machineIdentityIn, memberName, nextInWords, openingRail, openingView, pageViewFromParam, parityTypesWithNoExplanation, parseGridPresentation, personActor, personRecordForMember, pointsAtRecords, presentationDocument, presentationIsEmpty, previewLine, previewWords, publiclyAnswerable, recordName, recordNameIn, recordsDataSource, refusalForAPerson, refusalLineForAPerson, renderValue, revokeConsequence, rowName, rowNameIn, scalarText, shareUnavailableReason, specFromBlock, storeDecidesRights, submissionStamp, surfaceChosen, tableName, tableRightsAt, tokenFor, unknownViewLine, useCanShare, useEmbedHandshake, useEnrichCells, useGridEditing, useLabelWait, useMeasuredWidth, useMyChecklistSteps, useRecordLabels, useRecordRights, useRecordsUi, useRowRights, useSystemTable, useTableRights, useViewRecords, useWhoChanged, viewDocument, viewFromRecord, viewPatchDocument, whatIsMissing, whatYouMayDo, whatYouMayDoWithTable, whenWords, whyNotAskable };
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as react from 'react';
2
2
  import { ReactNode, ComponentType, RefObject } from 'react';
3
3
  import * as _ai_matrx_records from '@ai-matrx/records';
4
- import { PermissionLevel, Table, RecordScopeContext, EnrichCell, RecordsError, Uuid as Uuid$1, AggregateFilter, Field, RecordDocument, ReadRow, RelationDisplay, WriteConflict, ParityFieldType, NewFieldDeclaration, RuleExpression, ValueEnvelope, WorkInboxKind, FormSummary, PortalCard, PortalPrincipal, PortalPreviewRow, DashboardBlockKind, AggregateBucket, AggregateMeasure, DashboardBlock, DashboardSummary, DocTemplateRow, DocRenderRow, QuietHours, DashboardBlockResult, ChecklistRunStep, BookingSummary, CaptureSheetFace, CaptureField, AnonTokenBinding, RecordsConfig, RecordsActor, RecordsDataSource, HistoryActor, FieldHistoryEntry, FieldTypeWord } from '@ai-matrx/records';
4
+ import { PermissionLevel, Table, RecordScopeContext, EnrichCell, RecordsError, Uuid as Uuid$1, AggregateFilter, Field, RecordDocument, ReadRow, RelationDisplay, WriteConflict, ParityFieldType, NewFieldDeclaration, RuleExpression, ValueEnvelope, ChecklistRequirementKind, ContextPolicy, WorkDueState, FieldSensitivity, StageRuleOnFail, SubscriptionCadence, WorkInboxKind, FieldKind, FormSummary, PortalCard, PortalPrincipal, PortalPreviewRow, DashboardBlockKind, AggregateBucket, AggregateMeasure, DashboardBlock, DashboardSummary, DocTemplateRow, DocRenderRow, QuietHours, DashboardBlockResult, ChecklistRunStep, BookingSummary, CaptureSheetFace, CaptureField, AnonTokenBinding, RecordsConfig, RecordsActor, RecordsDataSource, HistoryActor, FieldHistoryEntry, FieldTypeWord } from '@ai-matrx/records';
5
5
  import { Uuid, Field as Field$1, ReadRow as ReadRow$1 } from '@ai-matrx/records/react';
6
6
  import { RecordsClient } from '@ai-matrx/records/core';
7
7
  import { FieldFormatConfig } from '@ai-matrx/design-system/field-formats';
@@ -1186,11 +1186,34 @@ declare const CONDITION_OPS: Array<{
1186
1186
  op: string;
1187
1187
  label: string;
1188
1188
  }>;
1189
- /** A column this condition may speak about, by id — which is how the store names them. */
1189
+ /**
1190
+ * A column this condition may speak about, by id — which is how the store names them.
1191
+ *
1192
+ * 🚨 IT CARRIES THE FIELD NOW, AND THAT IS A DEFECT BEING FIXED (lane RELATION-DISPLAY-2,
1193
+ * 2026-09-21). This was `{id, key, label}` and nothing else, so the builder could not know
1194
+ * that a column POINTS AT ANOTHER RECORD. A relation clause therefore rendered the same
1195
+ * plain text box every other clause gets — and since a relation's stored value is the
1196
+ * other record's id (FLD-6 / REL-1), the only way to write a true one was for a person to
1197
+ * find and TYPE A UUID. Nobody does that, which means "only jobs for this customer" was a
1198
+ * gate a non-technical person could not write at all, on a builder whose whole purpose is
1199
+ * that they can.
1200
+ *
1201
+ * `field` is OPTIONAL and everything still works without it: a caller that passes only the
1202
+ * three strings gets exactly the old behaviour. Both callers in this package already hold
1203
+ * the whole `Field` and were throwing it away one line before handing it over.
1204
+ */
1190
1205
  interface ConditionField {
1191
1206
  id: string;
1192
1207
  key: string;
1193
1208
  label: string;
1209
+ /**
1210
+ * The Field itself, when the caller has it. Present, a relation clause picks a record BY
1211
+ * ITS DISPLAYED WORDS through `RelationPicker` — the same picker the cell uses, reading
1212
+ * the same `relation_words_many` the cell reads, so what a person chooses in a filter and
1213
+ * what they see in the column are the same string. It writes the ID, which is what the
1214
+ * store compares.
1215
+ */
1216
+ field?: Field;
1194
1217
  }
1195
1218
  interface ConditionRowProps {
1196
1219
  /** The words before the row: "Ask only when", "When". */
@@ -1424,16 +1447,63 @@ declare function RecordValue({ field, value, document, format, }: {
1424
1447
  format?: FieldFormatConfig | undefined;
1425
1448
  }): react.JSX.Element;
1426
1449
 
1450
+ declare const WORK_DUE_STATES: readonly ["overdue", "due_today", "scheduled", "undated", "finished"];
1451
+ declare const DUE_STATE_LABEL: Record<WorkDueState, string>;
1452
+ declare const WORK_INBOX_KINDS: readonly ["assignment", "approval", "proposal"];
1453
+ declare const WORK_INBOX_KIND_LABEL: Record<WorkInboxKind, string>;
1454
+ declare const CHECKLIST_REQUIREMENT_KINDS: readonly ["none", "note", "answer", "record_field", "form", "document"];
1455
+ declare const CHECKLIST_REQUIREMENT_LABEL: Record<ChecklistRequirementKind, string>;
1456
+ declare const FIELD_SENSITIVITY_LABEL: Record<FieldSensitivity, string>;
1457
+ declare const CONTEXT_POLICY_LABEL: Record<ContextPolicy, string>;
1458
+ declare const STAGE_RULE_ON_FAIL_LABEL: Record<StageRuleOnFail, string>;
1459
+ declare const SUBSCRIPTION_CADENCES: readonly ["instant", "hourly", "daily", "weekly"];
1460
+ declare const SUBSCRIPTION_CADENCE_LABEL: Record<SubscriptionCadence, string>;
1461
+ declare const SUBSCRIPTION_CHANNEL_VALUES: readonly ["in_app", "email", "sms"];
1462
+ type SubscriptionChannel = (typeof SUBSCRIPTION_CHANNEL_VALUES)[number];
1463
+ declare const SUBSCRIPTION_CHANNEL_LABEL: Record<SubscriptionChannel, string>;
1464
+ declare const ROLLUP_AGG_VALUES: readonly ["count", "sum", "avg", "min", "max"];
1465
+ type RollupAgg = (typeof ROLLUP_AGG_VALUES)[number];
1466
+ declare const ROLLUP_AGG_LABEL: Record<RollupAgg, string>;
1467
+ declare const FORMULA_OP_VALUES: readonly ["concat", "add", "sub", "mul", "div"];
1468
+ type FormulaOp = (typeof FORMULA_OP_VALUES)[number];
1469
+ declare const FORMULA_OP_LABEL: Record<FormulaOp, string>;
1470
+ /** Whether this operation reads naturally as "X and Y and Z…" over more than two columns. */
1471
+ declare const FORMULA_OP_JOINS: Record<FormulaOp, boolean>;
1472
+ declare const FIELD_RULE_KIND_VALUES: readonly ["min", "max", "length", "pattern", "equals_field", "differs_from_field"];
1473
+ type FieldRuleKindValue = (typeof FIELD_RULE_KIND_VALUES)[number];
1474
+ declare const FIELD_RULE_KIND_LABEL: Record<FieldRuleKindValue, string>;
1475
+ declare const PROPOSED_CHANGE_ACT_VALUES: readonly ["add", "update", "remove"];
1476
+ type ProposedChangeAct = (typeof PROPOSED_CHANGE_ACT_VALUES)[number];
1477
+ declare const PROPOSED_CHANGE_ACT_LABEL: Record<ProposedChangeAct, string>;
1478
+ declare const BOOKING_PAGE_STATE_VALUES: readonly ["draft", "open", "closed", "full"];
1479
+ type BookingPageState = (typeof BOOKING_PAGE_STATE_VALUES)[number];
1480
+ declare const BOOKING_PAGE_STATE_LABEL: Record<BookingPageState, string>;
1481
+ declare const ABSENCE_WORD_VALUES: readonly ["never asked", "none", "refused", "conflicting"];
1482
+ type AbsenceWord = (typeof ABSENCE_WORD_VALUES)[number];
1483
+ declare const ABSENCE_WORD_LABEL: Record<AbsenceWord, string>;
1484
+
1427
1485
  declare const PARITY_LABEL: Record<ParityFieldType, string>;
1428
1486
  /** The "made of" sentence the store itself publishes, for the field editor's help text. */
1429
1487
  declare const PARITY_MADE_OF: Record<string, string>;
1430
- /** Plain text and plain number are behaviours with no parity type of their own. */
1431
- type EditorKind = ParityFieldType | "relation" | "text" | "number" | "boolean" | "date" | "json" | "long_text";
1488
+ /**
1489
+ * Plain text and plain number are behaviours with no parity type of their own.
1490
+ *
1491
+ * 🚨 THIS IS NOW AN ALIAS, AND THAT IS THE POINT (TAILS-3, 2026-09-21). The
1492
+ * classifier moved into `@ai-matrx/records` as `FieldKind` so that the editor a
1493
+ * person types into and the COERCION applied to what they typed are decided by
1494
+ * one body. They were decided by two, and the public booking page paid for it:
1495
+ * "Vehicle Year takes a number, and it was given a string" on every table with
1496
+ * a number field.
1497
+ */
1498
+ type EditorKind = FieldKind;
1432
1499
  /**
1433
1500
  * Which editor one Field wants. Reads the Field's own declaration only — the
1434
1501
  * behaviour, the modifiers, the format, the relation target and the config —
1435
1502
  * because those are what the store stores, and a screen that guessed from a
1436
1503
  * value would draw a different editor for an empty record.
1504
+ *
1505
+ * It is `fieldKindFor` with this package's kernel ids bound. Nothing here
1506
+ * decides anything the core does not.
1437
1507
  */
1438
1508
  declare function editorKindFor(field: Field): EditorKind;
1439
1509
  /**
@@ -1933,10 +2003,25 @@ declare function PortalBuilder({ tableId, portalId, onSaved, onClose, className
1933
2003
 
1934
2004
  interface PortalsPanelProps {
1935
2005
  /**
1936
- * OPTIONAL. The Table whose page this rail is on. It is used for ONE thing:
1937
- * saying, on an opened portal, whether this table is among the ones that
1938
- * portal shows. It never filters the list — a portal belongs to the
1939
- * organization, and hiding the others would answer a question nobody asked.
2006
+ * The Table whose page this rail is on. THE RAIL IS SCOPED TO IT: it lists
2007
+ * the portals that INCLUDE this table, and nothing else.
2008
+ *
2009
+ * 🚨 THIS NOTE USED TO SAY THE OPPOSITE, and the opposite was a defect
2010
+ * (AGENT-BUILDS-2, measured on Rincon Plumbing Co; chair ruling 2026-09-21).
2011
+ * It read: "It never filters the list — a portal belongs to the
2012
+ * organization, and hiding the others would answer a question nobody asked."
2013
+ * A portal does belong to the organization. But this rail sits on a TABLE's
2014
+ * page, beside Forms, Bookings and Dashboards, every one of which is
2015
+ * table-scoped — and emptiness here decided the whole "Build it / Ask an
2016
+ * agent" offer. So on Rincon's **Parts** table, eight rows of copper pipe and
2017
+ * wax rings, the rail read "Portals 10" and listed ten cards titled "Your
2018
+ * jobs and invoices", which belong to **Jobs**. The empty state never
2019
+ * rendered, `BuildOrAsk` never rendered, and the agent half of the product
2020
+ * was unreachable on EVERY table of that organization. Four Rincon tables
2021
+ * were tried and all four refused to offer it.
2022
+ *
2023
+ * Omit it and the rail is organization-wide again, which is right for a
2024
+ * mount that is not standing on a table.
1940
2025
  */
1941
2026
  tableId?: Uuid | undefined;
1942
2027
  className?: string | undefined;
@@ -2033,7 +2118,9 @@ interface BuildOrAskProps {
2033
2118
  whyNot?: string | null | undefined;
2034
2119
  /**
2035
2120
  * The host's agent port. Unbound, the second button is absent and the
2036
- * sentence below names what is missing.
2121
+ * sentence below names what is missing. Bound but `mayBuild` false, it is
2122
+ * absent too: an agent asked to do what this person may not do gets refused
2123
+ * by the same doors, five minutes later, with nothing to show for it.
2037
2124
  */
2038
2125
  onAsk?: (() => void) | undefined;
2039
2126
  /** The words a person would actually say, offered as the starting sentence. */
@@ -3016,4 +3103,4 @@ interface PipelineBoardProps {
3016
3103
  }
3017
3104
  declare function PipelineBoard({ tableId, rows, measure, onMeasureChange, onOpenRecord, onMoved, className, }: PipelineBoardProps): react.JSX.Element;
3018
3105
 
3019
- export { ACTION_KINDS, ActionInbox, type ActionInboxProps, type ActionKind, type AgentBuildAsk, BookingBuilder, type BookingBuilderProps, BookingSlots, type BookingSlotsProps, BuildOrAsk, type BuildOrAskProps, type BuildableKind, CAPTURE_MODES, CHART_KINDS, CHART_KIND_LABEL, CHART_NEEDS, CONDITION_OPS, type Capability, type CaptureMode, type CaptureQueuePort, CaptureRun, type CaptureRunProps, CaptureSheet, type CaptureSheetProps, type CellAddress, type CellRefusal, type CellState, ChartBlock, type ChartBlockProps, type ChartConfig, ChartFrame, type ChartKind, ChartLegendContent, type ChartSpec, ChartTooltipContent, ChecklistRunner, type ChecklistRunnerProps, ChecklistTemplateEditor, ChecklistsPanel, type ChecklistsPanelProps, CommentThread, type CommentThreadProps, type ConditionField, ConditionGroup, type ConditionGroupProps, ConditionRow, type ConditionRowProps, CustomFieldsSection, type CustomFieldsSectionProps, DEFAULT_FIELDS, DEFAULT_VIEW_NAME, DashboardCanvas, type DashboardCanvasProps, type DeclareResult, DigestScheduler, type DigestSchedulerProps, DocRender, type DocRenderProps, DocTemplate, type DocTemplateProps, type DocTemplateSpec, EMPTY_PRESENTATION, type EditorKind, EmbedFrame, type EmbedFrameProps, type EnrichAsk, EnrichBadge, type EnrichBadgeProps, type EnrichOutcome, EnrichPanel, type EnrichPanelProps, ExportMenu, type ExportMenuProps, FIELD_TYPE_CHOICES, FIELD_TYPE_GROUPS, FORM_FLOWS, FROZEN_COLUMN_WIDTH, FieldControl, FieldEditor, type FieldEditorControlProps, type FieldEditorProps, FieldHistoryPanel, type FieldHistoryPanelProps, FieldLabel, type FieldProposalRow, type FieldTypeChoice, FormBuilder, type FormBuilderProps, type FormFlow, type FormQuestionSpec, FormRunner, type FormRunnerProps, type FormSpec, type FormSubmitOutcome, type FormTheme, FormsPanel, type FormsPanelProps, Grid, GridCell, type GridEditing, type GridGrouping, type GridPresentation, type GridProps, HistoryPanel, type HistoryPanelProps, IN_MEMORY_QUEUE_REASON, ImportWizard, type ImportWizardProps, KERNEL_REASON, LANE_EMPTY, LANE_TITLE, LAYOUT_FIELD_KIND, LAYOUT_LABEL, LAYOUT_NEEDS, LAYOUT_NO_FIELD, LEVEL_WORD, type LabelLookup, MACHINE_IDENTITY, MAX_ROW_HEIGHT, MIN_ROW_HEIGHT, type MainView, MyChecklistSteps, NEEDS_A_SENTENCE, NOT_ANSWERED_YET, NOT_DRAWN_HERE, NO_AGENT_PORT, NO_CHAT_REASON, NO_COLUMNS_WHY, NO_COLUMNS_YET, NO_ENRICH_REASON, NO_MEMBERS_REASON, NO_OPEN_RECORDS_REASON, NO_REASK_REASON, NO_RIGHTS, NO_RULES_YET, NO_SAVED_VIEWS_REASON, NO_SHARE_REASON, NO_UPLOAD_REASON, type NewFieldSpec, type NewTableSpec, NotifyRuleEditor, type NotifyRuleEditorProps, type NotifyRuleSpec, type OpenRecordsAsk, type OrganizationMember, PAGE_VIEWS, PAGE_VIEW_LABEL, PARITY_LABEL, PARITY_MADE_OF, type PageView, Peek, type PeekProps, type PendingCapture, PersonPicker, type PersonPickerProps, type PickableFieldType, PipelineBoard, type PipelineBoardProps, type PlainFieldType, type PlainRefusal, type PortalAnswer, PortalBuilder, type PortalBuilderProps, PortalCardView, type PortalCardViewProps, PortalShell, type PortalShellProps, PortalsPanel, type PortalsPanelProps, type ProposalOutcome, ProposalRow, type ProposalRowProps, type ProposedChange, ProvenanceBadge, PublicViewPage, type PublicViewPageProps, type ReaskContext, RecordChat, type RecordChatContext, type RecordChatEntry, type RecordChatProps, type RecordChatWithheld, RecordChip, RecordForm, type RecordFormProps, RecordLabelProvider, RecordValue, RecordsMount, type RecordsMountProps, type RecordsUiHost, RecordsUiProvider, ReferenceBuilder, type ReferenceBuilderProps, type ReferenceChoice, RefusalLine, RefusalNotice, type RelationFieldType, RelationPicker, type RelationPickerProps, type ResolveName, SAVED_VIEWS_UNAVAILABLE, SAY_WHAT_YOU_ARE_WAITING_FOR_AFTER_MS, SERIES_COLORS, SOMEBODY, STORE_ANSWERS_THESE, STORE_DECIDES_REASON, type SavedDashboard, type SavedForm, type SavedView, type SavedViewSpec, ShareControl, type ShareControlProps, type ShareSubject, SignBlock, type SignBlockProps, StageRulesSection, type StageRulesSectionProps, StepRow, SubscriptionsPanel, type SubscriptionsPanelProps, type Surface, type SurfacePress, type SystemFieldSpec, type SystemTableSpec, TABLE_LANES, TABLE_NOT_REACHABLE, THE_SYSTEM, type TableLane, TablePage, type TablePageProps, type TableRights, TableSettings, type TableSettingsProps, TablesHome, type TablesHomeProps, type TrackedVersion, type UseSystemTableState, VIEW_LAYOUTS, VIEW_NOT_SAVED_YET, VIEW_TABLE, ViewBar, type ViewBarProps, type ViewLayout, type ViewSort, ViewSwitcher, type ViewSwitcherProps, WITHHELD_RECORD_LABEL, type WhatYouMayDo, type WhoChanged, WhoChangedSource, actorBadge, actorWords, addFields, askableFields, blockFromSpec, bodyForReading, bodyFromKeys, cellState, chooseSurface, colorFromTheValue, columnForField, conditionInWords, conditionIsDrawable, conditionIsSimple, conditionValue, controlFor, currencyCodeFor, dashboardDeclareArgs, dashboardFromSummary, declareTable, editorKindFor, ensureSystemTable, envelopeFor, fieldDeclarationFor, fieldIsEditable, fieldName, fieldToken, fieldTypeChoice, fieldTypeLabel, formDeclareArgs, formFromSummary, formPresentation, formatForField, groupLabel, hintForAPerson, hintIsMachineIdentity, humanize, idsOf, isId, isMachineIdentity, isPlainFieldType, isRelationFieldType, isSignatureField, keyFor, laneFor, lastChangeSentence, looksLikeId, machineIdentityIn, memberName, nextInWords, openingRail, openingView, pageViewFromParam, parityTypesWithNoExplanation, parseGridPresentation, personActor, personRecordForMember, pointsAtRecords, presentationDocument, presentationIsEmpty, previewLine, previewWords, publiclyAnswerable, recordName, recordNameIn, recordsDataSource, refusalForAPerson, refusalLineForAPerson, renderValue, revokeConsequence, rowName, rowNameIn, scalarText, shareUnavailableReason, specFromBlock, storeDecidesRights, submissionStamp, surfaceChosen, tableName, tableRightsAt, tokenFor, unknownViewLine, useCanShare, useEmbedHandshake, useEnrichCells, useGridEditing, useLabelWait, useMeasuredWidth, useMyChecklistSteps, useRecordLabels, useRecordRights, useRecordsUi, useRowRights, useSystemTable, useTableRights, useViewRecords, useWhoChanged, viewDocument, viewFromRecord, viewPatchDocument, whatIsMissing, whatYouMayDo, whatYouMayDoWithTable, whenWords, whyNotAskable };
3106
+ export { ABSENCE_WORD_LABEL, ABSENCE_WORD_VALUES, ACTION_KINDS, type AbsenceWord, ActionInbox, type ActionInboxProps, type ActionKind, type AgentBuildAsk, BOOKING_PAGE_STATE_LABEL, BOOKING_PAGE_STATE_VALUES, BookingBuilder, type BookingBuilderProps, type BookingPageState, BookingSlots, type BookingSlotsProps, BuildOrAsk, type BuildOrAskProps, type BuildableKind, CAPTURE_MODES, CHART_KINDS, CHART_KIND_LABEL, CHART_NEEDS, CHECKLIST_REQUIREMENT_KINDS, CHECKLIST_REQUIREMENT_LABEL, CONDITION_OPS, CONTEXT_POLICY_LABEL, type Capability, type CaptureMode, type CaptureQueuePort, CaptureRun, type CaptureRunProps, CaptureSheet, type CaptureSheetProps, type CellAddress, type CellRefusal, type CellState, ChartBlock, type ChartBlockProps, type ChartConfig, ChartFrame, type ChartKind, ChartLegendContent, type ChartSpec, ChartTooltipContent, ChecklistRunner, type ChecklistRunnerProps, ChecklistTemplateEditor, ChecklistsPanel, type ChecklistsPanelProps, CommentThread, type CommentThreadProps, type ConditionField, ConditionGroup, type ConditionGroupProps, ConditionRow, type ConditionRowProps, CustomFieldsSection, type CustomFieldsSectionProps, DEFAULT_FIELDS, DEFAULT_VIEW_NAME, DUE_STATE_LABEL, DashboardCanvas, type DashboardCanvasProps, type DeclareResult, DigestScheduler, type DigestSchedulerProps, DocRender, type DocRenderProps, DocTemplate, type DocTemplateProps, type DocTemplateSpec, EMPTY_PRESENTATION, type EditorKind, EmbedFrame, type EmbedFrameProps, type EnrichAsk, EnrichBadge, type EnrichBadgeProps, type EnrichOutcome, EnrichPanel, type EnrichPanelProps, ExportMenu, type ExportMenuProps, FIELD_RULE_KIND_LABEL, FIELD_RULE_KIND_VALUES, FIELD_SENSITIVITY_LABEL, FIELD_TYPE_CHOICES, FIELD_TYPE_GROUPS, FORMULA_OP_JOINS, FORMULA_OP_LABEL, FORMULA_OP_VALUES, FORM_FLOWS, FROZEN_COLUMN_WIDTH, FieldControl, FieldEditor, type FieldEditorControlProps, type FieldEditorProps, FieldHistoryPanel, type FieldHistoryPanelProps, FieldLabel, type FieldProposalRow, type FieldRuleKindValue, type FieldTypeChoice, FormBuilder, type FormBuilderProps, type FormFlow, type FormQuestionSpec, FormRunner, type FormRunnerProps, type FormSpec, type FormSubmitOutcome, type FormTheme, FormsPanel, type FormsPanelProps, type FormulaOp, Grid, GridCell, type GridEditing, type GridGrouping, type GridPresentation, type GridProps, HistoryPanel, type HistoryPanelProps, IN_MEMORY_QUEUE_REASON, ImportWizard, type ImportWizardProps, KERNEL_REASON, LANE_EMPTY, LANE_TITLE, LAYOUT_FIELD_KIND, LAYOUT_LABEL, LAYOUT_NEEDS, LAYOUT_NO_FIELD, LEVEL_WORD, type LabelLookup, MACHINE_IDENTITY, MAX_ROW_HEIGHT, MIN_ROW_HEIGHT, type MainView, MyChecklistSteps, NEEDS_A_SENTENCE, NOT_ANSWERED_YET, NOT_DRAWN_HERE, NO_AGENT_PORT, NO_CHAT_REASON, NO_COLUMNS_WHY, NO_COLUMNS_YET, NO_ENRICH_REASON, NO_MEMBERS_REASON, NO_OPEN_RECORDS_REASON, NO_REASK_REASON, NO_RIGHTS, NO_RULES_YET, NO_SAVED_VIEWS_REASON, NO_SHARE_REASON, NO_UPLOAD_REASON, type NewFieldSpec, type NewTableSpec, NotifyRuleEditor, type NotifyRuleEditorProps, type NotifyRuleSpec, type OpenRecordsAsk, type OrganizationMember, PAGE_VIEWS, PAGE_VIEW_LABEL, PARITY_LABEL, PARITY_MADE_OF, PROPOSED_CHANGE_ACT_LABEL, PROPOSED_CHANGE_ACT_VALUES, type PageView, Peek, type PeekProps, type PendingCapture, PersonPicker, type PersonPickerProps, type PickableFieldType, PipelineBoard, type PipelineBoardProps, type PlainFieldType, type PlainRefusal, type PortalAnswer, PortalBuilder, type PortalBuilderProps, PortalCardView, type PortalCardViewProps, PortalShell, type PortalShellProps, PortalsPanel, type PortalsPanelProps, type ProposalOutcome, ProposalRow, type ProposalRowProps, type ProposedChange, type ProposedChangeAct, ProvenanceBadge, PublicViewPage, type PublicViewPageProps, ROLLUP_AGG_LABEL, ROLLUP_AGG_VALUES, type ReaskContext, RecordChat, type RecordChatContext, type RecordChatEntry, type RecordChatProps, type RecordChatWithheld, RecordChip, RecordForm, type RecordFormProps, RecordLabelProvider, RecordValue, RecordsMount, type RecordsMountProps, type RecordsUiHost, RecordsUiProvider, ReferenceBuilder, type ReferenceBuilderProps, type ReferenceChoice, RefusalLine, RefusalNotice, type RelationFieldType, RelationPicker, type RelationPickerProps, type ResolveName, type RollupAgg, SAVED_VIEWS_UNAVAILABLE, SAY_WHAT_YOU_ARE_WAITING_FOR_AFTER_MS, SERIES_COLORS, SOMEBODY, STAGE_RULE_ON_FAIL_LABEL, STORE_ANSWERS_THESE, STORE_DECIDES_REASON, SUBSCRIPTION_CADENCES, SUBSCRIPTION_CADENCE_LABEL, SUBSCRIPTION_CHANNEL_LABEL, SUBSCRIPTION_CHANNEL_VALUES, type SavedDashboard, type SavedForm, type SavedView, type SavedViewSpec, ShareControl, type ShareControlProps, type ShareSubject, SignBlock, type SignBlockProps, StageRulesSection, type StageRulesSectionProps, StepRow, type SubscriptionChannel, SubscriptionsPanel, type SubscriptionsPanelProps, type Surface, type SurfacePress, type SystemFieldSpec, type SystemTableSpec, TABLE_LANES, TABLE_NOT_REACHABLE, THE_SYSTEM, type TableLane, TablePage, type TablePageProps, type TableRights, TableSettings, type TableSettingsProps, TablesHome, type TablesHomeProps, type TrackedVersion, type UseSystemTableState, VIEW_LAYOUTS, VIEW_NOT_SAVED_YET, VIEW_TABLE, ViewBar, type ViewBarProps, type ViewLayout, type ViewSort, ViewSwitcher, type ViewSwitcherProps, WITHHELD_RECORD_LABEL, WORK_DUE_STATES, WORK_INBOX_KINDS, WORK_INBOX_KIND_LABEL, type WhatYouMayDo, type WhoChanged, WhoChangedSource, actorBadge, actorWords, addFields, askableFields, blockFromSpec, bodyForReading, bodyFromKeys, cellState, chooseSurface, colorFromTheValue, columnForField, conditionInWords, conditionIsDrawable, conditionIsSimple, conditionValue, controlFor, currencyCodeFor, dashboardDeclareArgs, dashboardFromSummary, declareTable, editorKindFor, ensureSystemTable, envelopeFor, fieldDeclarationFor, fieldIsEditable, fieldName, fieldToken, fieldTypeChoice, fieldTypeLabel, formDeclareArgs, formFromSummary, formPresentation, formatForField, groupLabel, hintForAPerson, hintIsMachineIdentity, humanize, idsOf, isId, isMachineIdentity, isPlainFieldType, isRelationFieldType, isSignatureField, keyFor, laneFor, lastChangeSentence, looksLikeId, machineIdentityIn, memberName, nextInWords, openingRail, openingView, pageViewFromParam, parityTypesWithNoExplanation, parseGridPresentation, personActor, personRecordForMember, pointsAtRecords, presentationDocument, presentationIsEmpty, previewLine, previewWords, publiclyAnswerable, recordName, recordNameIn, recordsDataSource, refusalForAPerson, refusalLineForAPerson, renderValue, revokeConsequence, rowName, rowNameIn, scalarText, shareUnavailableReason, specFromBlock, storeDecidesRights, submissionStamp, surfaceChosen, tableName, tableRightsAt, tokenFor, unknownViewLine, useCanShare, useEmbedHandshake, useEnrichCells, useGridEditing, useLabelWait, useMeasuredWidth, useMyChecklistSteps, useRecordLabels, useRecordRights, useRecordsUi, useRowRights, useSystemTable, useTableRights, useViewRecords, useWhoChanged, viewDocument, viewFromRecord, viewPatchDocument, whatIsMissing, whatYouMayDo, whatYouMayDoWithTable, whenWords, whyNotAskable };