Files
temetro/.agents/skills/ai-elements/references/environment-variables.md
T
Khalid Abdi 929bec8f31 feat: AI-added records save with placeholders + "Added by AI" provenance
Stop blocking AI imports/proposals on missing non-critical fields. Records
the chat agent drafts now save with safe placeholders, auto-generated file
numbers, and a source="ai" marker that surfaces an "Added by AI" badge so a
clinician can review/edit them later.

Backend:
- add `source` (manual|ai) column to patients/appointments/prescriptions
  (migration 0014) + canonical types, services, validation schemas
- relax patient/appointment validation: empty file number allowed, demographic
  + type/provider/initials fall back to placeholders (initials derived from name)
- patients.generateFileNumber() auto-assigns an MRN when one is missing
- proposeAppointment accepts a name when no file number resolves; AI commits +
  /api/ai/import stamp source="ai"

Frontend:
- `source` on Appointment/Patient/Prescription types; AI commits send source="ai"
- reusable <AiBadge> shown on the Patients table/detail and prescriptions list

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-14 19:27:17 +03:00

103 lines
3.7 KiB
Markdown

# Environment Variables
Display environment variables with masking and copy functionality.
The `EnvironmentVariables` component displays environment variables with value masking, visibility toggle, and copy functionality.
See `scripts/environment-variables.tsx` for this example.
## Installation
```bash
npx ai-elements@latest add environment-variables
```
## Features
- Value masking by default
- Toggle visibility switch
- Copy individual values
- Export format support (`export KEY="value"`)
- Required badge indicator
## Props
### `<EnvironmentVariables />`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `showValues` | `boolean` | - | Controlled visibility state. |
| `defaultShowValues` | `boolean` | `false` | Default visibility state. |
| `onShowValuesChange` | `(show: boolean) => void` | - | Callback when visibility changes. |
| `...props` | `React.HTMLAttributes<HTMLDivElement>` | - | Spread to the container div. |
### `<EnvironmentVariablesHeader />`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `...props` | `React.HTMLAttributes<HTMLDivElement>` | - | Spread to the header div. |
### `<EnvironmentVariablesTitle />`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `children` | `React.ReactNode` | - | Custom title text. |
| `...props` | `React.HTMLAttributes<HTMLHeadingElement>` | - | Spread to the h3 element. |
### `<EnvironmentVariablesToggle />`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `...props` | `React.ComponentProps<typeof Switch>` | - | Spread to the Switch component. |
### `<EnvironmentVariablesContent />`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `...props` | `React.HTMLAttributes<HTMLDivElement>` | - | Spread to the content div. |
### `<EnvironmentVariable />`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `name` | `string` | Required | Variable name. |
| `value` | `string` | Required | Variable value. |
| `...props` | `React.HTMLAttributes<HTMLDivElement>` | - | Spread to the row div. |
### `<EnvironmentVariableGroup />`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `...props` | `React.HTMLAttributes<HTMLDivElement>` | - | Spread to the group div. |
### `<EnvironmentVariableName />`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `children` | `React.ReactNode` | - | Custom name content. Defaults to the name from context. |
| `...props` | `React.HTMLAttributes<HTMLSpanElement>` | - | Spread to the span element. |
### `<EnvironmentVariableValue />`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `children` | `React.ReactNode` | - | Custom value content. Defaults to the masked/unmasked value from context. |
| `...props` | `React.HTMLAttributes<HTMLSpanElement>` | - | Spread to the span element. |
### `<EnvironmentVariableCopyButton />`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `copyFormat` | `unknown` | - | Format to copy. |
| `onCopy` | `() => void` | - | Callback after successful copy. |
| `onError` | `(error: Error) => void` | - | Callback if copying fails. |
| `timeout` | `number` | `2000` | Duration to show copied state (ms). |
| `...props` | `React.ComponentProps<typeof Button>` | - | Spread to the Button component. |
### `<EnvironmentVariableRequired />`
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `children` | `React.ReactNode` | - | Custom badge text. |
| `...props` | `React.ComponentProps<typeof Badge>` | - | Spread to the Badge component. |