@cloudraker/reki 2.7.0 → 2.7.1
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/ai/component-registry.json +102 -0
- package/ai/component-registry.md +159 -1
- package/ai/schemas.ts +9 -2
- package/dist/.build-complete +1 -1
- package/dist/ai/schemas.d.ts +17 -2
- package/dist/ai/schemas.d.ts.map +1 -1
- package/dist/ai/schemas.js +31 -23
- package/dist/ai/schemas.js.map +1 -1
- package/dist/chunks/timeline-lqurr2lcxkayomk2.js +109 -0
- package/dist/chunks/timeline-lqurr2lcxkayomk2.js.map +1 -0
- package/dist/components/timeline.js +8 -0
- package/dist/components/timeline.js.map +1 -0
- package/dist/index.js +104 -100
- package/dist/index.js.map +1 -1
- package/dist/src/components/timeline/index.d.ts +2 -0
- package/dist/src/components/timeline/index.d.ts.map +1 -0
- package/dist/src/components/timeline/timeline.d.ts +155 -0
- package/dist/src/components/timeline/timeline.d.ts.map +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/styles/reki-standalone.css +1 -1
- package/package.json +5 -1
|
@@ -7162,6 +7162,105 @@
|
|
|
7162
7162
|
}
|
|
7163
7163
|
}
|
|
7164
7164
|
},
|
|
7165
|
+
"Timeline": {
|
|
7166
|
+
"name": "Timeline",
|
|
7167
|
+
"type": "component",
|
|
7168
|
+
"description": "Timeline — presentational compound component for a Linear-style activity feed.",
|
|
7169
|
+
"importPath": "@cloudraker/reki",
|
|
7170
|
+
"category": "Other",
|
|
7171
|
+
"props": {
|
|
7172
|
+
"children": {
|
|
7173
|
+
"type": "ReactNode",
|
|
7174
|
+
"optional": true,
|
|
7175
|
+
"description": "`Timeline.Item` elements."
|
|
7176
|
+
},
|
|
7177
|
+
"className": {
|
|
7178
|
+
"type": "string",
|
|
7179
|
+
"optional": true,
|
|
7180
|
+
"description": "Additional CSS classes merged via `cn()`. Use reki semantic tokens only."
|
|
7181
|
+
}
|
|
7182
|
+
},
|
|
7183
|
+
"examples": [
|
|
7184
|
+
"<div className=\"w-[480px]\">\n <Timeline>\n <Timeline.Item isFirst nodeType=\"avatar\" avatar={{ name: \"Jane Doe\" }}>\n <Timeline.Content>\n <Timeline.Event actor=\"Jane Doe\" action=\"created the run\" timestamp=\"5d ago\" />\n </Timeline.Content>\n </Timeline.Item>\n <Timeline.Item nodeType=\"status\" statusColor=\"green\">\n <Timeline.Content>\n <Timeline.Event actor=\"Florent\" action=\"moved to\" target=\"In Progress\" timestamp=\"3d ago\" />\n </Timeline.Content>\n </Timeline.Item>\n <Timeline.Item nodeType=\"icon\" icon={GitBranchIcon}>\n <Timeline.Content>\n <Timeline.Event actor=\"Mo\" action=\"linked\" target=\"feat/timeline\" timestamp=\"2h ago\" />\n </Timeline.Content>\n </Timeline.Item>\n <Timeline.Item isLast nodeType=\"icon\" icon={CheckCircleIcon}>\n <Timeline.Content>\n <Timeline.Event actor=\"Jane Doe\" action=\"completed\" target=\"Draft proposal\" timestamp=\"1h ago\" />\n </Timeline.Content>\n </Timeline.Item>\n </Timeline>\n </div>",
|
|
7185
|
+
"<div className=\"w-[480px]\">\n <Timeline>\n <Timeline.Item isFirst nodeType=\"icon\" icon={UploadSimpleIcon}>\n <Timeline.Content>\n <Timeline.Event actor=\"Sam Lee\" action=\"uploaded 3 files\" timestamp=\"1d ago\" />\n </Timeline.Content>\n </Timeline.Item>\n <Timeline.Item isLast variant=\"rich\" nodeType=\"avatar\" avatar={{ name: \"Sam Lee\" }}>\n <Timeline.Content>\n <Timeline.Event actor=\"Sam Lee\" action=\"commented\" timestamp=\"20m ago\" />\n <Text size=\"sm\">Looks good — can we ship the muted state for upcoming tasks too?</Text>\n </Timeline.Content>\n </Timeline.Item>\n </Timeline>\n </div>",
|
|
7186
|
+
"<div className=\"w-[480px]\">\n <Timeline>\n <Timeline.Item isFirst nodeType=\"status\" statusColor=\"blue\">\n <Timeline.Content>\n <Timeline.Event actor=\"Florent\" action=\"requested approval\" timestamp=\"just now\" />\n </Timeline.Content>\n </Timeline.Item>\n <Timeline.Item isLast variant=\"rich\" tone=\"active\" nodeType=\"icon\" icon={PaperPlaneTiltIcon}>\n <Timeline.Content>\n <LayerCard>\n <LayerCard.Primary>\n <div className=\"flex flex-col gap-3\">\n <Text size=\"sm\">Approve budget increase?</Text>\n <div className=\"flex gap-2\">\n <Button size=\"sm\" variant=\"primary\">\n Approve\n </Button>\n <Button size=\"sm\" variant=\"secondary\">\n Decline\n </Button>\n </div>\n </div>\n </LayerCard.Primary>\n </LayerCard>\n </Timeline.Content>\n </Timeline.Item>\n </Timeline>\n </div>",
|
|
7187
|
+
"<div className=\"w-[480px]\">\n <Timeline>\n <Timeline.Item isFirst nodeType=\"status\" statusColor=\"green\">\n <Timeline.Content>\n <Timeline.Event actor=\"Jane Doe\" action=\"kicked off onboarding\" timestamp=\"2d ago\" />\n </Timeline.Content>\n </Timeline.Item>\n <Timeline.Item tone=\"muted\" nodeType=\"icon\" icon={CheckCircleIcon}>\n <Timeline.Content>\n <Timeline.Event actor=\"Review step\" action=\"starts after Onboarding\" />\n </Timeline.Content>\n </Timeline.Item>\n <Timeline.Item isLast tone=\"muted\" nodeType=\"icon\" icon={CheckCircleIcon}>\n <Timeline.Content>\n <Timeline.Event actor=\"Sign-off\" action=\"starts after Review\" />\n </Timeline.Content>\n </Timeline.Item>\n </Timeline>\n </div>"
|
|
7188
|
+
],
|
|
7189
|
+
"colors": [
|
|
7190
|
+
"bg-reki-base",
|
|
7191
|
+
"bg-reki-fill",
|
|
7192
|
+
"bg-reki-hairline",
|
|
7193
|
+
"ring-reki-brand",
|
|
7194
|
+
"ring-reki-line",
|
|
7195
|
+
"text-reki-brand",
|
|
7196
|
+
"text-reki-default",
|
|
7197
|
+
"text-reki-subtle"
|
|
7198
|
+
],
|
|
7199
|
+
"subComponents": {
|
|
7200
|
+
"Item": {
|
|
7201
|
+
"name": "Item",
|
|
7202
|
+
"description": "Item sub-component",
|
|
7203
|
+
"props": {
|
|
7204
|
+
"nodeType": {
|
|
7205
|
+
"type": "NodeType",
|
|
7206
|
+
"optional": true
|
|
7207
|
+
},
|
|
7208
|
+
"avatar": {
|
|
7209
|
+
"type": "{ src?: string | null",
|
|
7210
|
+
"optional": true
|
|
7211
|
+
},
|
|
7212
|
+
"name": {
|
|
7213
|
+
"type": "string",
|
|
7214
|
+
"required": true
|
|
7215
|
+
}
|
|
7216
|
+
}
|
|
7217
|
+
},
|
|
7218
|
+
"Content": {
|
|
7219
|
+
"name": "Content",
|
|
7220
|
+
"description": "Content sub-component",
|
|
7221
|
+
"props": {
|
|
7222
|
+
"children": {
|
|
7223
|
+
"type": "ReactNode",
|
|
7224
|
+
"optional": true
|
|
7225
|
+
},
|
|
7226
|
+
"className": {
|
|
7227
|
+
"type": "string",
|
|
7228
|
+
"optional": true
|
|
7229
|
+
}
|
|
7230
|
+
}
|
|
7231
|
+
},
|
|
7232
|
+
"Event": {
|
|
7233
|
+
"name": "Event",
|
|
7234
|
+
"description": "Event sub-component",
|
|
7235
|
+
"props": {
|
|
7236
|
+
"actor": {
|
|
7237
|
+
"type": "ReactNode",
|
|
7238
|
+
"optional": true
|
|
7239
|
+
},
|
|
7240
|
+
"action": {
|
|
7241
|
+
"type": "ReactNode",
|
|
7242
|
+
"optional": true
|
|
7243
|
+
},
|
|
7244
|
+
"target": {
|
|
7245
|
+
"type": "ReactNode",
|
|
7246
|
+
"optional": true
|
|
7247
|
+
},
|
|
7248
|
+
"timestamp": {
|
|
7249
|
+
"type": "ReactNode",
|
|
7250
|
+
"optional": true
|
|
7251
|
+
},
|
|
7252
|
+
"truncate": {
|
|
7253
|
+
"type": "boolean",
|
|
7254
|
+
"optional": true
|
|
7255
|
+
},
|
|
7256
|
+
"className": {
|
|
7257
|
+
"type": "string",
|
|
7258
|
+
"optional": true
|
|
7259
|
+
}
|
|
7260
|
+
}
|
|
7261
|
+
}
|
|
7262
|
+
}
|
|
7263
|
+
},
|
|
7165
7264
|
"Toasty": {
|
|
7166
7265
|
"name": "Toasty",
|
|
7167
7266
|
"type": "component",
|
|
@@ -7636,6 +7735,7 @@
|
|
|
7636
7735
|
"Table",
|
|
7637
7736
|
"TableOfContents",
|
|
7638
7737
|
"Tag",
|
|
7738
|
+
"Timeline",
|
|
7639
7739
|
"DeleteResource"
|
|
7640
7740
|
],
|
|
7641
7741
|
"Display": [
|
|
@@ -7754,6 +7854,7 @@
|
|
|
7754
7854
|
"Tabs",
|
|
7755
7855
|
"Tag",
|
|
7756
7856
|
"Text",
|
|
7857
|
+
"Timeline",
|
|
7757
7858
|
"Toasty",
|
|
7758
7859
|
"Tooltip"
|
|
7759
7860
|
],
|
|
@@ -7822,6 +7923,7 @@
|
|
|
7822
7923
|
"Tabs",
|
|
7823
7924
|
"Tag",
|
|
7824
7925
|
"Text",
|
|
7926
|
+
"Timeline",
|
|
7825
7927
|
"Toasty",
|
|
7826
7928
|
"Tooltip"
|
|
7827
7929
|
],
|
package/ai/component-registry.md
CHANGED
|
@@ -9232,6 +9232,164 @@ Text component
|
|
|
9232
9232
|
```
|
|
9233
9233
|
|
|
9234
9234
|
|
|
9235
|
+
---
|
|
9236
|
+
|
|
9237
|
+
### Timeline
|
|
9238
|
+
|
|
9239
|
+
Timeline — presentational compound component for a Linear-style activity feed.
|
|
9240
|
+
|
|
9241
|
+
**Type:** component
|
|
9242
|
+
|
|
9243
|
+
**Import:** `import { Timeline } from "@cloudraker/reki";`
|
|
9244
|
+
|
|
9245
|
+
**Category:** Other
|
|
9246
|
+
|
|
9247
|
+
**Props:**
|
|
9248
|
+
|
|
9249
|
+
- `children`: ReactNode
|
|
9250
|
+
`Timeline.Item` elements.
|
|
9251
|
+
- `className`: string
|
|
9252
|
+
Additional CSS classes merged via `cn()`. Use reki semantic tokens only.
|
|
9253
|
+
|
|
9254
|
+
**Colors (reki tokens used):**
|
|
9255
|
+
|
|
9256
|
+
`bg-reki-base`, `bg-reki-fill`, `bg-reki-hairline`, `ring-reki-brand`, `ring-reki-line`, `text-reki-brand`, `text-reki-default`, `text-reki-subtle`
|
|
9257
|
+
|
|
9258
|
+
**Sub-Components:**
|
|
9259
|
+
|
|
9260
|
+
This is a compound component. Use these sub-components:
|
|
9261
|
+
|
|
9262
|
+
#### Timeline.Item
|
|
9263
|
+
|
|
9264
|
+
Item sub-component
|
|
9265
|
+
|
|
9266
|
+
Props:
|
|
9267
|
+
- `nodeType`: NodeType
|
|
9268
|
+
- `avatar`: { src?: string | null
|
|
9269
|
+
- `name`: string (required)
|
|
9270
|
+
|
|
9271
|
+
#### Timeline.Content
|
|
9272
|
+
|
|
9273
|
+
Content sub-component
|
|
9274
|
+
|
|
9275
|
+
Props:
|
|
9276
|
+
- `children`: ReactNode
|
|
9277
|
+
- `className`: string
|
|
9278
|
+
|
|
9279
|
+
#### Timeline.Event
|
|
9280
|
+
|
|
9281
|
+
Event sub-component
|
|
9282
|
+
|
|
9283
|
+
Props:
|
|
9284
|
+
- `actor`: ReactNode
|
|
9285
|
+
- `action`: ReactNode
|
|
9286
|
+
- `target`: ReactNode
|
|
9287
|
+
- `timestamp`: ReactNode
|
|
9288
|
+
- `truncate`: boolean
|
|
9289
|
+
- `className`: string
|
|
9290
|
+
|
|
9291
|
+
|
|
9292
|
+
**Examples:**
|
|
9293
|
+
|
|
9294
|
+
```tsx
|
|
9295
|
+
<div className="w-[480px]">
|
|
9296
|
+
<Timeline>
|
|
9297
|
+
<Timeline.Item isFirst nodeType="avatar" avatar={{ name: "Jane Doe" }}>
|
|
9298
|
+
<Timeline.Content>
|
|
9299
|
+
<Timeline.Event actor="Jane Doe" action="created the run" timestamp="5d ago" />
|
|
9300
|
+
</Timeline.Content>
|
|
9301
|
+
</Timeline.Item>
|
|
9302
|
+
<Timeline.Item nodeType="status" statusColor="green">
|
|
9303
|
+
<Timeline.Content>
|
|
9304
|
+
<Timeline.Event actor="Florent" action="moved to" target="In Progress" timestamp="3d ago" />
|
|
9305
|
+
</Timeline.Content>
|
|
9306
|
+
</Timeline.Item>
|
|
9307
|
+
<Timeline.Item nodeType="icon" icon={GitBranchIcon}>
|
|
9308
|
+
<Timeline.Content>
|
|
9309
|
+
<Timeline.Event actor="Mo" action="linked" target="feat/timeline" timestamp="2h ago" />
|
|
9310
|
+
</Timeline.Content>
|
|
9311
|
+
</Timeline.Item>
|
|
9312
|
+
<Timeline.Item isLast nodeType="icon" icon={CheckCircleIcon}>
|
|
9313
|
+
<Timeline.Content>
|
|
9314
|
+
<Timeline.Event actor="Jane Doe" action="completed" target="Draft proposal" timestamp="1h ago" />
|
|
9315
|
+
</Timeline.Content>
|
|
9316
|
+
</Timeline.Item>
|
|
9317
|
+
</Timeline>
|
|
9318
|
+
</div>
|
|
9319
|
+
```
|
|
9320
|
+
|
|
9321
|
+
```tsx
|
|
9322
|
+
<div className="w-[480px]">
|
|
9323
|
+
<Timeline>
|
|
9324
|
+
<Timeline.Item isFirst nodeType="icon" icon={UploadSimpleIcon}>
|
|
9325
|
+
<Timeline.Content>
|
|
9326
|
+
<Timeline.Event actor="Sam Lee" action="uploaded 3 files" timestamp="1d ago" />
|
|
9327
|
+
</Timeline.Content>
|
|
9328
|
+
</Timeline.Item>
|
|
9329
|
+
<Timeline.Item isLast variant="rich" nodeType="avatar" avatar={{ name: "Sam Lee" }}>
|
|
9330
|
+
<Timeline.Content>
|
|
9331
|
+
<Timeline.Event actor="Sam Lee" action="commented" timestamp="20m ago" />
|
|
9332
|
+
<Text size="sm">Looks good — can we ship the muted state for upcoming tasks too?</Text>
|
|
9333
|
+
</Timeline.Content>
|
|
9334
|
+
</Timeline.Item>
|
|
9335
|
+
</Timeline>
|
|
9336
|
+
</div>
|
|
9337
|
+
```
|
|
9338
|
+
|
|
9339
|
+
```tsx
|
|
9340
|
+
<div className="w-[480px]">
|
|
9341
|
+
<Timeline>
|
|
9342
|
+
<Timeline.Item isFirst nodeType="status" statusColor="blue">
|
|
9343
|
+
<Timeline.Content>
|
|
9344
|
+
<Timeline.Event actor="Florent" action="requested approval" timestamp="just now" />
|
|
9345
|
+
</Timeline.Content>
|
|
9346
|
+
</Timeline.Item>
|
|
9347
|
+
<Timeline.Item isLast variant="rich" tone="active" nodeType="icon" icon={PaperPlaneTiltIcon}>
|
|
9348
|
+
<Timeline.Content>
|
|
9349
|
+
<LayerCard>
|
|
9350
|
+
<LayerCard.Primary>
|
|
9351
|
+
<div className="flex flex-col gap-3">
|
|
9352
|
+
<Text size="sm">Approve budget increase?</Text>
|
|
9353
|
+
<div className="flex gap-2">
|
|
9354
|
+
<Button size="sm" variant="primary">
|
|
9355
|
+
Approve
|
|
9356
|
+
</Button>
|
|
9357
|
+
<Button size="sm" variant="secondary">
|
|
9358
|
+
Decline
|
|
9359
|
+
</Button>
|
|
9360
|
+
</div>
|
|
9361
|
+
</div>
|
|
9362
|
+
</LayerCard.Primary>
|
|
9363
|
+
</LayerCard>
|
|
9364
|
+
</Timeline.Content>
|
|
9365
|
+
</Timeline.Item>
|
|
9366
|
+
</Timeline>
|
|
9367
|
+
</div>
|
|
9368
|
+
```
|
|
9369
|
+
|
|
9370
|
+
```tsx
|
|
9371
|
+
<div className="w-[480px]">
|
|
9372
|
+
<Timeline>
|
|
9373
|
+
<Timeline.Item isFirst nodeType="status" statusColor="green">
|
|
9374
|
+
<Timeline.Content>
|
|
9375
|
+
<Timeline.Event actor="Jane Doe" action="kicked off onboarding" timestamp="2d ago" />
|
|
9376
|
+
</Timeline.Content>
|
|
9377
|
+
</Timeline.Item>
|
|
9378
|
+
<Timeline.Item tone="muted" nodeType="icon" icon={CheckCircleIcon}>
|
|
9379
|
+
<Timeline.Content>
|
|
9380
|
+
<Timeline.Event actor="Review step" action="starts after Onboarding" />
|
|
9381
|
+
</Timeline.Content>
|
|
9382
|
+
</Timeline.Item>
|
|
9383
|
+
<Timeline.Item isLast tone="muted" nodeType="icon" icon={CheckCircleIcon}>
|
|
9384
|
+
<Timeline.Content>
|
|
9385
|
+
<Timeline.Event actor="Sign-off" action="starts after Review" />
|
|
9386
|
+
</Timeline.Content>
|
|
9387
|
+
</Timeline.Item>
|
|
9388
|
+
</Timeline>
|
|
9389
|
+
</div>
|
|
9390
|
+
```
|
|
9391
|
+
|
|
9392
|
+
|
|
9235
9393
|
---
|
|
9236
9394
|
|
|
9237
9395
|
### Toasty
|
|
@@ -9454,7 +9612,7 @@ Multi-line textarea input with Input variants and InputArea-specific dimensions
|
|
|
9454
9612
|
## Quick Reference
|
|
9455
9613
|
|
|
9456
9614
|
**Components by Category:**
|
|
9457
|
-
- **Other:** ActorDisplay, AddressInput, ArrayDisplay, Autocomplete, Avatar, AvatarGroup, Chip, CircularProgressBar, CloudflareLogo, ColorSample, DataGrid, DatePicker, DoubleTextInput, EmailsDisplay, ExpandableList, JsonDisplay, Label, Link, LinkChip, LinksDisplay, MenuItem, NotificationCounter, OverflowingText, PhonesDisplay, Pill, Rating, RecordBoard, SensitiveInput, Sidebar, Status, Table, TableOfContents, Tag, DeleteResource
|
|
9615
|
+
- **Other:** ActorDisplay, AddressInput, ArrayDisplay, Autocomplete, Avatar, AvatarGroup, Chip, CircularProgressBar, CloudflareLogo, ColorSample, DataGrid, DatePicker, DoubleTextInput, EmailsDisplay, ExpandableList, JsonDisplay, Label, Link, LinkChip, LinksDisplay, MenuItem, NotificationCounter, OverflowingText, PhonesDisplay, Pill, Rating, RecordBoard, SensitiveInput, Sidebar, Status, Table, TableOfContents, Tag, Timeline, DeleteResource
|
|
9458
9616
|
- **Display:** Badge, Breadcrumbs, Code, Collapsible, Empty, LayerCard, Meter, Text
|
|
9459
9617
|
- **Feedback:** Banner, Loader, Toasty
|
|
9460
9618
|
- **Action:** Button, ClipboardText
|
package/ai/schemas.ts
CHANGED
|
@@ -952,6 +952,11 @@ export const TextPropsSchema = z.object({
|
|
|
952
952
|
children: z.union([z.string(), z.number(), z.boolean(), z.null(), DynamicValueSchema]).optional(), // Text content.
|
|
953
953
|
});
|
|
954
954
|
|
|
955
|
+
export const TimelinePropsSchema = z.object({
|
|
956
|
+
children: z.union([z.string(), z.number(), z.boolean(), z.null(), DynamicValueSchema]).optional(), // `Timeline.Item` elements.
|
|
957
|
+
className: z.string().optional(), // Additional CSS classes merged via `cn()`. Use reki semantic tokens only.
|
|
958
|
+
});
|
|
959
|
+
|
|
955
960
|
export const ToastyPropsSchema = z.object({
|
|
956
961
|
variant: z.enum(["default", "success", "error", "warning", "info"]).optional(),
|
|
957
962
|
className: z.string().optional(), // Additional CSS classes
|
|
@@ -972,7 +977,7 @@ export const TooltipPropsSchema = z.object({
|
|
|
972
977
|
/**
|
|
973
978
|
* All valid component type names
|
|
974
979
|
*/
|
|
975
|
-
export type RekiComponentType = "ActorDisplay" | "AddressInput" | "ArrayDisplay" | "Autocomplete" | "Avatar" | "AvatarGroup" | "Badge" | "Banner" | "Breadcrumbs" | "Button" | "Checkbox" | "Chip" | "CircularProgressBar" | "ClipboardText" | "CloudflareLogo" | "Code" | "Collapsible" | "ColorSample" | "Combobox" | "CommandPalette" | "DataGrid" | "DatePicker" | "DateRangePicker" | "Dialog" | "DoubleTextInput" | "DropdownMenu" | "EmailsDisplay" | "Empty" | "ExpandableList" | "Field" | "Grid" | "Input" | "InputArea" | "InputGroup" | "JsonDisplay" | "Label" | "LayerCard" | "Link" | "LinkChip" | "LinksDisplay" | "Loader" | "MenuBar" | "MenuItem" | "Meter" | "NotificationCounter" | "OverflowingText" | "Pagination" | "PhonesDisplay" | "Pill" | "Popover" | "Radio" | "Rating" | "RecordBoard" | "Select" | "SensitiveInput" | "Sidebar" | "Status" | "Surface" | "Switch" | "Table" | "TableOfContents" | "Tabs" | "Tag" | "Text" | "Toasty" | "Tooltip";
|
|
980
|
+
export type RekiComponentType = "ActorDisplay" | "AddressInput" | "ArrayDisplay" | "Autocomplete" | "Avatar" | "AvatarGroup" | "Badge" | "Banner" | "Breadcrumbs" | "Button" | "Checkbox" | "Chip" | "CircularProgressBar" | "ClipboardText" | "CloudflareLogo" | "Code" | "Collapsible" | "ColorSample" | "Combobox" | "CommandPalette" | "DataGrid" | "DatePicker" | "DateRangePicker" | "Dialog" | "DoubleTextInput" | "DropdownMenu" | "EmailsDisplay" | "Empty" | "ExpandableList" | "Field" | "Grid" | "Input" | "InputArea" | "InputGroup" | "JsonDisplay" | "Label" | "LayerCard" | "Link" | "LinkChip" | "LinksDisplay" | "Loader" | "MenuBar" | "MenuItem" | "Meter" | "NotificationCounter" | "OverflowingText" | "Pagination" | "PhonesDisplay" | "Pill" | "Popover" | "Radio" | "Rating" | "RecordBoard" | "Select" | "SensitiveInput" | "Sidebar" | "Status" | "Surface" | "Switch" | "Table" | "TableOfContents" | "Tabs" | "Tag" | "Text" | "Timeline" | "Toasty" | "Tooltip";
|
|
976
981
|
|
|
977
982
|
export const RekiComponentTypeSchema = z.enum([
|
|
978
983
|
"ActorDisplay",
|
|
@@ -1039,6 +1044,7 @@ export const RekiComponentTypeSchema = z.enum([
|
|
|
1039
1044
|
"Tabs",
|
|
1040
1045
|
"Tag",
|
|
1041
1046
|
"Text",
|
|
1047
|
+
"Timeline",
|
|
1042
1048
|
"Toasty",
|
|
1043
1049
|
"Tooltip",
|
|
1044
1050
|
]);
|
|
@@ -1111,6 +1117,7 @@ export const ComponentPropsSchemas = {
|
|
|
1111
1117
|
Tabs: TabsPropsSchema,
|
|
1112
1118
|
Tag: TagPropsSchema,
|
|
1113
1119
|
Text: TextPropsSchema,
|
|
1120
|
+
Timeline: TimelinePropsSchema,
|
|
1114
1121
|
Toasty: ToastyPropsSchema,
|
|
1115
1122
|
Tooltip: TooltipPropsSchema,
|
|
1116
1123
|
} as const;
|
|
@@ -1169,4 +1176,4 @@ export function validateUITree(tree: unknown): SafeParseResult<UITree> {
|
|
|
1169
1176
|
/**
|
|
1170
1177
|
* List of all component names (for catalog generation)
|
|
1171
1178
|
*/
|
|
1172
|
-
export const REKI_COMPONENT_NAMES = ["ActorDisplay", "AddressInput", "ArrayDisplay", "Autocomplete", "Avatar", "AvatarGroup", "Badge", "Banner", "Breadcrumbs", "Button", "Checkbox", "Chip", "CircularProgressBar", "ClipboardText", "CloudflareLogo", "Code", "Collapsible", "ColorSample", "Combobox", "CommandPalette", "DataGrid", "DatePicker", "DateRangePicker", "Dialog", "DoubleTextInput", "DropdownMenu", "EmailsDisplay", "Empty", "ExpandableList", "Field", "Grid", "Input", "InputArea", "InputGroup", "JsonDisplay", "Label", "LayerCard", "Link", "LinkChip", "LinksDisplay", "Loader", "MenuBar", "MenuItem", "Meter", "NotificationCounter", "OverflowingText", "Pagination", "PhonesDisplay", "Pill", "Popover", "Radio", "Rating", "RecordBoard", "Select", "SensitiveInput", "Sidebar", "Status", "Surface", "Switch", "Table", "TableOfContents", "Tabs", "Tag", "Text", "Toasty", "Tooltip"] as const;
|
|
1179
|
+
export const REKI_COMPONENT_NAMES = ["ActorDisplay", "AddressInput", "ArrayDisplay", "Autocomplete", "Avatar", "AvatarGroup", "Badge", "Banner", "Breadcrumbs", "Button", "Checkbox", "Chip", "CircularProgressBar", "ClipboardText", "CloudflareLogo", "Code", "Collapsible", "ColorSample", "Combobox", "CommandPalette", "DataGrid", "DatePicker", "DateRangePicker", "Dialog", "DoubleTextInput", "DropdownMenu", "EmailsDisplay", "Empty", "ExpandableList", "Field", "Grid", "Input", "InputArea", "InputGroup", "JsonDisplay", "Label", "LayerCard", "Link", "LinkChip", "LinksDisplay", "Loader", "MenuBar", "MenuItem", "Meter", "NotificationCounter", "OverflowingText", "Pagination", "PhonesDisplay", "Pill", "Popover", "Radio", "Rating", "RecordBoard", "Select", "SensitiveInput", "Sidebar", "Status", "Surface", "Switch", "Table", "TableOfContents", "Tabs", "Tag", "Text", "Timeline", "Toasty", "Tooltip"] as const;
|
package/dist/.build-complete
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1782693141731
|
package/dist/ai/schemas.d.ts
CHANGED
|
@@ -1384,6 +1384,12 @@ export declare const TextPropsSchema: z.ZodObject<{
|
|
|
1384
1384
|
path: z.ZodString;
|
|
1385
1385
|
}, z.core.$strip>]>]>>;
|
|
1386
1386
|
}, z.core.$strip>;
|
|
1387
|
+
export declare const TimelinePropsSchema: z.ZodObject<{
|
|
1388
|
+
children: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodObject<{
|
|
1389
|
+
path: z.ZodString;
|
|
1390
|
+
}, z.core.$strip>]>]>>;
|
|
1391
|
+
className: z.ZodOptional<z.ZodString>;
|
|
1392
|
+
}, z.core.$strip>;
|
|
1387
1393
|
export declare const ToastyPropsSchema: z.ZodObject<{
|
|
1388
1394
|
variant: z.ZodOptional<z.ZodEnum<{
|
|
1389
1395
|
error: "error";
|
|
@@ -1415,7 +1421,7 @@ export declare const TooltipPropsSchema: z.ZodObject<{
|
|
|
1415
1421
|
/**
|
|
1416
1422
|
* All valid component type names
|
|
1417
1423
|
*/
|
|
1418
|
-
export type RekiComponentType = "ActorDisplay" | "AddressInput" | "ArrayDisplay" | "Autocomplete" | "Avatar" | "AvatarGroup" | "Badge" | "Banner" | "Breadcrumbs" | "Button" | "Checkbox" | "Chip" | "CircularProgressBar" | "ClipboardText" | "CloudflareLogo" | "Code" | "Collapsible" | "ColorSample" | "Combobox" | "CommandPalette" | "DataGrid" | "DatePicker" | "DateRangePicker" | "Dialog" | "DoubleTextInput" | "DropdownMenu" | "EmailsDisplay" | "Empty" | "ExpandableList" | "Field" | "Grid" | "Input" | "InputArea" | "InputGroup" | "JsonDisplay" | "Label" | "LayerCard" | "Link" | "LinkChip" | "LinksDisplay" | "Loader" | "MenuBar" | "MenuItem" | "Meter" | "NotificationCounter" | "OverflowingText" | "Pagination" | "PhonesDisplay" | "Pill" | "Popover" | "Radio" | "Rating" | "RecordBoard" | "Select" | "SensitiveInput" | "Sidebar" | "Status" | "Surface" | "Switch" | "Table" | "TableOfContents" | "Tabs" | "Tag" | "Text" | "Toasty" | "Tooltip";
|
|
1424
|
+
export type RekiComponentType = "ActorDisplay" | "AddressInput" | "ArrayDisplay" | "Autocomplete" | "Avatar" | "AvatarGroup" | "Badge" | "Banner" | "Breadcrumbs" | "Button" | "Checkbox" | "Chip" | "CircularProgressBar" | "ClipboardText" | "CloudflareLogo" | "Code" | "Collapsible" | "ColorSample" | "Combobox" | "CommandPalette" | "DataGrid" | "DatePicker" | "DateRangePicker" | "Dialog" | "DoubleTextInput" | "DropdownMenu" | "EmailsDisplay" | "Empty" | "ExpandableList" | "Field" | "Grid" | "Input" | "InputArea" | "InputGroup" | "JsonDisplay" | "Label" | "LayerCard" | "Link" | "LinkChip" | "LinksDisplay" | "Loader" | "MenuBar" | "MenuItem" | "Meter" | "NotificationCounter" | "OverflowingText" | "Pagination" | "PhonesDisplay" | "Pill" | "Popover" | "Radio" | "Rating" | "RecordBoard" | "Select" | "SensitiveInput" | "Sidebar" | "Status" | "Surface" | "Switch" | "Table" | "TableOfContents" | "Tabs" | "Tag" | "Text" | "Timeline" | "Toasty" | "Tooltip";
|
|
1419
1425
|
export declare const RekiComponentTypeSchema: z.ZodEnum<{
|
|
1420
1426
|
Banner: "Banner";
|
|
1421
1427
|
Button: "Button";
|
|
@@ -1451,6 +1457,7 @@ export declare const RekiComponentTypeSchema: z.ZodEnum<{
|
|
|
1451
1457
|
TableOfContents: "TableOfContents";
|
|
1452
1458
|
Avatar: "Avatar";
|
|
1453
1459
|
Rating: "Rating";
|
|
1460
|
+
Timeline: "Timeline";
|
|
1454
1461
|
ActorDisplay: "ActorDisplay";
|
|
1455
1462
|
AddressInput: "AddressInput";
|
|
1456
1463
|
ArrayDisplay: "ArrayDisplay";
|
|
@@ -2777,6 +2784,12 @@ export declare const ComponentPropsSchemas: {
|
|
|
2777
2784
|
path: z.ZodString;
|
|
2778
2785
|
}, z.core.$strip>]>]>>;
|
|
2779
2786
|
}, z.core.$strip>;
|
|
2787
|
+
readonly Timeline: z.ZodObject<{
|
|
2788
|
+
children: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodObject<{
|
|
2789
|
+
path: z.ZodString;
|
|
2790
|
+
}, z.core.$strip>]>]>>;
|
|
2791
|
+
className: z.ZodOptional<z.ZodString>;
|
|
2792
|
+
}, z.core.$strip>;
|
|
2780
2793
|
readonly Toasty: z.ZodObject<{
|
|
2781
2794
|
variant: z.ZodOptional<z.ZodEnum<{
|
|
2782
2795
|
error: "error";
|
|
@@ -2846,6 +2859,7 @@ export declare const UIElementBaseSchema: z.ZodObject<{
|
|
|
2846
2859
|
TableOfContents: "TableOfContents";
|
|
2847
2860
|
Avatar: "Avatar";
|
|
2848
2861
|
Rating: "Rating";
|
|
2862
|
+
Timeline: "Timeline";
|
|
2849
2863
|
ActorDisplay: "ActorDisplay";
|
|
2850
2864
|
AddressInput: "AddressInput";
|
|
2851
2865
|
ArrayDisplay: "ArrayDisplay";
|
|
@@ -2960,6 +2974,7 @@ export declare const UITreeSchema: z.ZodObject<{
|
|
|
2960
2974
|
TableOfContents: "TableOfContents";
|
|
2961
2975
|
Avatar: "Avatar";
|
|
2962
2976
|
Rating: "Rating";
|
|
2977
|
+
Timeline: "Timeline";
|
|
2963
2978
|
ActorDisplay: "ActorDisplay";
|
|
2964
2979
|
AddressInput: "AddressInput";
|
|
2965
2980
|
ArrayDisplay: "ArrayDisplay";
|
|
@@ -3044,5 +3059,5 @@ export declare function validateUITree(tree: unknown): SafeParseResult<UITree>;
|
|
|
3044
3059
|
/**
|
|
3045
3060
|
* List of all component names (for catalog generation)
|
|
3046
3061
|
*/
|
|
3047
|
-
export declare const REKI_COMPONENT_NAMES: readonly ["ActorDisplay", "AddressInput", "ArrayDisplay", "Autocomplete", "Avatar", "AvatarGroup", "Badge", "Banner", "Breadcrumbs", "Button", "Checkbox", "Chip", "CircularProgressBar", "ClipboardText", "CloudflareLogo", "Code", "Collapsible", "ColorSample", "Combobox", "CommandPalette", "DataGrid", "DatePicker", "DateRangePicker", "Dialog", "DoubleTextInput", "DropdownMenu", "EmailsDisplay", "Empty", "ExpandableList", "Field", "Grid", "Input", "InputArea", "InputGroup", "JsonDisplay", "Label", "LayerCard", "Link", "LinkChip", "LinksDisplay", "Loader", "MenuBar", "MenuItem", "Meter", "NotificationCounter", "OverflowingText", "Pagination", "PhonesDisplay", "Pill", "Popover", "Radio", "Rating", "RecordBoard", "Select", "SensitiveInput", "Sidebar", "Status", "Surface", "Switch", "Table", "TableOfContents", "Tabs", "Tag", "Text", "Toasty", "Tooltip"];
|
|
3062
|
+
export declare const REKI_COMPONENT_NAMES: readonly ["ActorDisplay", "AddressInput", "ArrayDisplay", "Autocomplete", "Avatar", "AvatarGroup", "Badge", "Banner", "Breadcrumbs", "Button", "Checkbox", "Chip", "CircularProgressBar", "ClipboardText", "CloudflareLogo", "Code", "Collapsible", "ColorSample", "Combobox", "CommandPalette", "DataGrid", "DatePicker", "DateRangePicker", "Dialog", "DoubleTextInput", "DropdownMenu", "EmailsDisplay", "Empty", "ExpandableList", "Field", "Grid", "Input", "InputArea", "InputGroup", "JsonDisplay", "Label", "LayerCard", "Link", "LinkChip", "LinksDisplay", "Loader", "MenuBar", "MenuItem", "Meter", "NotificationCounter", "OverflowingText", "Pagination", "PhonesDisplay", "Pill", "Popover", "Radio", "Rating", "RecordBoard", "Select", "SensitiveInput", "Sidebar", "Status", "Surface", "Switch", "Table", "TableOfContents", "Tabs", "Tag", "Text", "Timeline", "Toasty", "Tooltip"];
|
|
3048
3063
|
//# sourceMappingURL=schemas.d.ts.map
|
package/dist/ai/schemas.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../ai/schemas.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../ai/schemas.ts"],"names":[],"mappings":"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"}
|
package/dist/ai/schemas.js
CHANGED
|
@@ -4022,12 +4022,17 @@ const g = b([
|
|
|
4022
4022
|
children: b([a(), h(), p(), y(), g]).optional()
|
|
4023
4023
|
// Text content.
|
|
4024
4024
|
}), Es = _({
|
|
4025
|
+
children: b([a(), h(), p(), y(), g]).optional(),
|
|
4026
|
+
// `Timeline.Item` elements.
|
|
4027
|
+
className: a().optional()
|
|
4028
|
+
// Additional CSS classes merged via `cn()`. Use reki semantic tokens only.
|
|
4029
|
+
}), Cs = _({
|
|
4025
4030
|
variant: v(["default", "success", "error", "warning", "info"]).optional(),
|
|
4026
4031
|
className: a().optional(),
|
|
4027
4032
|
// Additional CSS classes
|
|
4028
4033
|
children: b([a(), h(), p(), y(), g]).optional()
|
|
4029
4034
|
// Child elements
|
|
4030
|
-
}),
|
|
4035
|
+
}), As = _({
|
|
4031
4036
|
side: v(["top", "bottom", "left", "right"]).optional(),
|
|
4032
4037
|
className: a().optional(),
|
|
4033
4038
|
// Additional CSS classes
|
|
@@ -4035,7 +4040,7 @@ const g = b([
|
|
|
4035
4040
|
// Child elements
|
|
4036
4041
|
content: b([a(), h(), p(), y(), g])
|
|
4037
4042
|
// Content to display in the tooltip
|
|
4038
|
-
}),
|
|
4043
|
+
}), xs = v([
|
|
4039
4044
|
"ActorDisplay",
|
|
4040
4045
|
"AddressInput",
|
|
4041
4046
|
"ArrayDisplay",
|
|
@@ -4100,9 +4105,10 @@ const g = b([
|
|
|
4100
4105
|
"Tabs",
|
|
4101
4106
|
"Tag",
|
|
4102
4107
|
"Text",
|
|
4108
|
+
"Timeline",
|
|
4103
4109
|
"Toasty",
|
|
4104
4110
|
"Tooltip"
|
|
4105
|
-
]),
|
|
4111
|
+
]), Ds = {
|
|
4106
4112
|
ActorDisplay: ka,
|
|
4107
4113
|
AddressInput: wa,
|
|
4108
4114
|
ArrayDisplay: Sa,
|
|
@@ -4167,28 +4173,29 @@ const g = b([
|
|
|
4167
4173
|
Tabs: Os,
|
|
4168
4174
|
Tag: Ns,
|
|
4169
4175
|
Text: Is,
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4176
|
+
Timeline: Es,
|
|
4177
|
+
Toasty: Cs,
|
|
4178
|
+
Tooltip: As
|
|
4179
|
+
}, Rs = _({
|
|
4173
4180
|
key: a(),
|
|
4174
|
-
type:
|
|
4181
|
+
type: xs,
|
|
4175
4182
|
props: H(a(), c()),
|
|
4176
4183
|
children: A(a()).optional(),
|
|
4177
4184
|
parentKey: a().nullable().optional(),
|
|
4178
4185
|
visible: ba.optional(),
|
|
4179
4186
|
action: za.optional()
|
|
4180
|
-
}),
|
|
4187
|
+
}), js = _({
|
|
4181
4188
|
root: a(),
|
|
4182
|
-
elements: H(a(),
|
|
4189
|
+
elements: H(a(), Rs)
|
|
4183
4190
|
});
|
|
4184
|
-
function
|
|
4185
|
-
const o =
|
|
4191
|
+
function Us(e) {
|
|
4192
|
+
const o = Ds[e.type];
|
|
4186
4193
|
return o ? o.safeParse(e.props) : { success: !1, error: new li([{ code: "custom", message: `Unknown component type: ${e.type}`, path: ["type"] }]) };
|
|
4187
4194
|
}
|
|
4188
|
-
function
|
|
4189
|
-
return
|
|
4195
|
+
function Fs(e) {
|
|
4196
|
+
return js.safeParse(e);
|
|
4190
4197
|
}
|
|
4191
|
-
const
|
|
4198
|
+
const Ms = ["ActorDisplay", "AddressInput", "ArrayDisplay", "Autocomplete", "Avatar", "AvatarGroup", "Badge", "Banner", "Breadcrumbs", "Button", "Checkbox", "Chip", "CircularProgressBar", "ClipboardText", "CloudflareLogo", "Code", "Collapsible", "ColorSample", "Combobox", "CommandPalette", "DataGrid", "DatePicker", "DateRangePicker", "Dialog", "DoubleTextInput", "DropdownMenu", "EmailsDisplay", "Empty", "ExpandableList", "Field", "Grid", "Input", "InputArea", "InputGroup", "JsonDisplay", "Label", "LayerCard", "Link", "LinkChip", "LinksDisplay", "Loader", "MenuBar", "MenuItem", "Meter", "NotificationCounter", "OverflowingText", "Pagination", "PhonesDisplay", "Pill", "Popover", "Radio", "Rating", "RecordBoard", "Select", "SensitiveInput", "Sidebar", "Status", "Surface", "Switch", "Table", "TableOfContents", "Tabs", "Tag", "Text", "Timeline", "Toasty", "Tooltip"];
|
|
4192
4199
|
export {
|
|
4193
4200
|
ya as ActionConfirmSchema,
|
|
4194
4201
|
za as ActionSchema,
|
|
@@ -4212,7 +4219,7 @@ export {
|
|
|
4212
4219
|
La as ColorSamplePropsSchema,
|
|
4213
4220
|
Ua as ComboboxPropsSchema,
|
|
4214
4221
|
Fa as CommandPalettePropsSchema,
|
|
4215
|
-
|
|
4222
|
+
Ds as ComponentPropsSchemas,
|
|
4216
4223
|
Ma as DataGridPropsSchema,
|
|
4217
4224
|
Ja as DatePickerPropsSchema,
|
|
4218
4225
|
Ba as DateRangePickerPropsSchema,
|
|
@@ -4244,11 +4251,11 @@ export {
|
|
|
4244
4251
|
ms as PhonesDisplayPropsSchema,
|
|
4245
4252
|
gs as PillPropsSchema,
|
|
4246
4253
|
_s as PopoverPropsSchema,
|
|
4247
|
-
|
|
4254
|
+
Ms as REKI_COMPONENT_NAMES,
|
|
4248
4255
|
vs as RadioPropsSchema,
|
|
4249
4256
|
bs as RatingPropsSchema,
|
|
4250
4257
|
ys as RecordBoardPropsSchema,
|
|
4251
|
-
|
|
4258
|
+
xs as RekiComponentTypeSchema,
|
|
4252
4259
|
zs as SelectPropsSchema,
|
|
4253
4260
|
ks as SensitiveInputPropsSchema,
|
|
4254
4261
|
ws as SidebarPropsSchema,
|
|
@@ -4260,12 +4267,13 @@ export {
|
|
|
4260
4267
|
Os as TabsPropsSchema,
|
|
4261
4268
|
Ns as TagPropsSchema,
|
|
4262
4269
|
Is as TextPropsSchema,
|
|
4263
|
-
Es as
|
|
4264
|
-
Cs as
|
|
4265
|
-
|
|
4266
|
-
Rs as
|
|
4270
|
+
Es as TimelinePropsSchema,
|
|
4271
|
+
Cs as ToastyPropsSchema,
|
|
4272
|
+
As as TooltipPropsSchema,
|
|
4273
|
+
Rs as UIElementBaseSchema,
|
|
4274
|
+
js as UITreeSchema,
|
|
4267
4275
|
ba as VisibilityConditionSchema,
|
|
4268
|
-
|
|
4269
|
-
|
|
4276
|
+
Us as validateElementProps,
|
|
4277
|
+
Fs as validateUITree
|
|
4270
4278
|
};
|
|
4271
4279
|
//# sourceMappingURL=schemas.js.map
|