@cloudraker/reki 2.7.0 → 2.8.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/CHANGELOG.md +11 -0
- package/ai/component-registry.json +118 -0
- package/ai/component-registry.md +163 -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/{sidebar-gwfibai76tw069d4.js → sidebar-eite6uzjeerm7pz5.js} +330 -331
- package/dist/chunks/sidebar-eite6uzjeerm7pz5.js.map +1 -0
- package/dist/chunks/timeline-lqurr2lcxkayomk2.js +109 -0
- package/dist/chunks/timeline-lqurr2lcxkayomk2.js.map +1 -0
- package/dist/components/sidebar.js +1 -1
- 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/sidebar/sidebar.d.ts +2 -0
- package/dist/src/components/sidebar/sidebar.d.ts.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
- package/dist/chunks/sidebar-gwfibai76tw069d4.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @cloudraker/reki
|
|
2
2
|
|
|
3
|
+
## 2.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3c24b2c: Add `target` prop to `Sidebar.MenuSubButton` for parity with `Sidebar.MenuButton` — forwarded to the link when `href` is set, so link sub-items can control where they open (e.g. same-tab cross-origin navigation).
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 3c24b2c: Keep the mobile Sidebar open when focus moves to portaled interactive content.
|
|
12
|
+
- 52248eb: Disable Sidebar.MenuButton tooltips while the sidebar is expanded or peeking.
|
|
13
|
+
|
|
3
14
|
## 2.7.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -6100,6 +6100,10 @@
|
|
|
6100
6100
|
"href": {
|
|
6101
6101
|
"type": "string",
|
|
6102
6102
|
"optional": true
|
|
6103
|
+
},
|
|
6104
|
+
"target": {
|
|
6105
|
+
"type": "React.HTMLAttributeAnchorTarget",
|
|
6106
|
+
"optional": true
|
|
6103
6107
|
}
|
|
6104
6108
|
}
|
|
6105
6109
|
},
|
|
@@ -6114,6 +6118,10 @@
|
|
|
6114
6118
|
"href": {
|
|
6115
6119
|
"type": "string",
|
|
6116
6120
|
"optional": true
|
|
6121
|
+
},
|
|
6122
|
+
"target": {
|
|
6123
|
+
"type": "React.HTMLAttributeAnchorTarget",
|
|
6124
|
+
"optional": true
|
|
6117
6125
|
}
|
|
6118
6126
|
}
|
|
6119
6127
|
},
|
|
@@ -6128,6 +6136,10 @@
|
|
|
6128
6136
|
"href": {
|
|
6129
6137
|
"type": "string",
|
|
6130
6138
|
"optional": true
|
|
6139
|
+
},
|
|
6140
|
+
"target": {
|
|
6141
|
+
"type": "React.HTMLAttributeAnchorTarget",
|
|
6142
|
+
"optional": true
|
|
6131
6143
|
}
|
|
6132
6144
|
}
|
|
6133
6145
|
},
|
|
@@ -6142,6 +6154,10 @@
|
|
|
6142
6154
|
"href": {
|
|
6143
6155
|
"type": "string",
|
|
6144
6156
|
"optional": true
|
|
6157
|
+
},
|
|
6158
|
+
"target": {
|
|
6159
|
+
"type": "React.HTMLAttributeAnchorTarget",
|
|
6160
|
+
"optional": true
|
|
6145
6161
|
}
|
|
6146
6162
|
}
|
|
6147
6163
|
},
|
|
@@ -7162,6 +7178,105 @@
|
|
|
7162
7178
|
}
|
|
7163
7179
|
}
|
|
7164
7180
|
},
|
|
7181
|
+
"Timeline": {
|
|
7182
|
+
"name": "Timeline",
|
|
7183
|
+
"type": "component",
|
|
7184
|
+
"description": "Timeline — presentational compound component for a Linear-style activity feed.",
|
|
7185
|
+
"importPath": "@cloudraker/reki",
|
|
7186
|
+
"category": "Other",
|
|
7187
|
+
"props": {
|
|
7188
|
+
"children": {
|
|
7189
|
+
"type": "ReactNode",
|
|
7190
|
+
"optional": true,
|
|
7191
|
+
"description": "`Timeline.Item` elements."
|
|
7192
|
+
},
|
|
7193
|
+
"className": {
|
|
7194
|
+
"type": "string",
|
|
7195
|
+
"optional": true,
|
|
7196
|
+
"description": "Additional CSS classes merged via `cn()`. Use reki semantic tokens only."
|
|
7197
|
+
}
|
|
7198
|
+
},
|
|
7199
|
+
"examples": [
|
|
7200
|
+
"<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>",
|
|
7201
|
+
"<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>",
|
|
7202
|
+
"<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>",
|
|
7203
|
+
"<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>"
|
|
7204
|
+
],
|
|
7205
|
+
"colors": [
|
|
7206
|
+
"bg-reki-base",
|
|
7207
|
+
"bg-reki-fill",
|
|
7208
|
+
"bg-reki-hairline",
|
|
7209
|
+
"ring-reki-brand",
|
|
7210
|
+
"ring-reki-line",
|
|
7211
|
+
"text-reki-brand",
|
|
7212
|
+
"text-reki-default",
|
|
7213
|
+
"text-reki-subtle"
|
|
7214
|
+
],
|
|
7215
|
+
"subComponents": {
|
|
7216
|
+
"Item": {
|
|
7217
|
+
"name": "Item",
|
|
7218
|
+
"description": "Item sub-component",
|
|
7219
|
+
"props": {
|
|
7220
|
+
"nodeType": {
|
|
7221
|
+
"type": "NodeType",
|
|
7222
|
+
"optional": true
|
|
7223
|
+
},
|
|
7224
|
+
"avatar": {
|
|
7225
|
+
"type": "{ src?: string | null",
|
|
7226
|
+
"optional": true
|
|
7227
|
+
},
|
|
7228
|
+
"name": {
|
|
7229
|
+
"type": "string",
|
|
7230
|
+
"required": true
|
|
7231
|
+
}
|
|
7232
|
+
}
|
|
7233
|
+
},
|
|
7234
|
+
"Content": {
|
|
7235
|
+
"name": "Content",
|
|
7236
|
+
"description": "Content sub-component",
|
|
7237
|
+
"props": {
|
|
7238
|
+
"children": {
|
|
7239
|
+
"type": "ReactNode",
|
|
7240
|
+
"optional": true
|
|
7241
|
+
},
|
|
7242
|
+
"className": {
|
|
7243
|
+
"type": "string",
|
|
7244
|
+
"optional": true
|
|
7245
|
+
}
|
|
7246
|
+
}
|
|
7247
|
+
},
|
|
7248
|
+
"Event": {
|
|
7249
|
+
"name": "Event",
|
|
7250
|
+
"description": "Event sub-component",
|
|
7251
|
+
"props": {
|
|
7252
|
+
"actor": {
|
|
7253
|
+
"type": "ReactNode",
|
|
7254
|
+
"optional": true
|
|
7255
|
+
},
|
|
7256
|
+
"action": {
|
|
7257
|
+
"type": "ReactNode",
|
|
7258
|
+
"optional": true
|
|
7259
|
+
},
|
|
7260
|
+
"target": {
|
|
7261
|
+
"type": "ReactNode",
|
|
7262
|
+
"optional": true
|
|
7263
|
+
},
|
|
7264
|
+
"timestamp": {
|
|
7265
|
+
"type": "ReactNode",
|
|
7266
|
+
"optional": true
|
|
7267
|
+
},
|
|
7268
|
+
"truncate": {
|
|
7269
|
+
"type": "boolean",
|
|
7270
|
+
"optional": true
|
|
7271
|
+
},
|
|
7272
|
+
"className": {
|
|
7273
|
+
"type": "string",
|
|
7274
|
+
"optional": true
|
|
7275
|
+
}
|
|
7276
|
+
}
|
|
7277
|
+
}
|
|
7278
|
+
}
|
|
7279
|
+
},
|
|
7165
7280
|
"Toasty": {
|
|
7166
7281
|
"name": "Toasty",
|
|
7167
7282
|
"type": "component",
|
|
@@ -7636,6 +7751,7 @@
|
|
|
7636
7751
|
"Table",
|
|
7637
7752
|
"TableOfContents",
|
|
7638
7753
|
"Tag",
|
|
7754
|
+
"Timeline",
|
|
7639
7755
|
"DeleteResource"
|
|
7640
7756
|
],
|
|
7641
7757
|
"Display": [
|
|
@@ -7754,6 +7870,7 @@
|
|
|
7754
7870
|
"Tabs",
|
|
7755
7871
|
"Tag",
|
|
7756
7872
|
"Text",
|
|
7873
|
+
"Timeline",
|
|
7757
7874
|
"Toasty",
|
|
7758
7875
|
"Tooltip"
|
|
7759
7876
|
],
|
|
@@ -7822,6 +7939,7 @@
|
|
|
7822
7939
|
"Tabs",
|
|
7823
7940
|
"Tag",
|
|
7824
7941
|
"Text",
|
|
7942
|
+
"Timeline",
|
|
7825
7943
|
"Toasty",
|
|
7826
7944
|
"Tooltip"
|
|
7827
7945
|
],
|
package/ai/component-registry.md
CHANGED
|
@@ -7297,6 +7297,7 @@ MenuBadge sub-component
|
|
|
7297
7297
|
Props:
|
|
7298
7298
|
- `active`: boolean
|
|
7299
7299
|
- `href`: string
|
|
7300
|
+
- `target`: React.HTMLAttributeAnchorTarget
|
|
7300
7301
|
|
|
7301
7302
|
#### Sidebar.MenuSub
|
|
7302
7303
|
|
|
@@ -7305,6 +7306,7 @@ MenuSub sub-component
|
|
|
7305
7306
|
Props:
|
|
7306
7307
|
- `active`: boolean
|
|
7307
7308
|
- `href`: string
|
|
7309
|
+
- `target`: React.HTMLAttributeAnchorTarget
|
|
7308
7310
|
|
|
7309
7311
|
#### Sidebar.MenuSubItem
|
|
7310
7312
|
|
|
@@ -7313,6 +7315,7 @@ MenuSubItem sub-component
|
|
|
7313
7315
|
Props:
|
|
7314
7316
|
- `active`: boolean
|
|
7315
7317
|
- `href`: string
|
|
7318
|
+
- `target`: React.HTMLAttributeAnchorTarget
|
|
7316
7319
|
|
|
7317
7320
|
#### Sidebar.MenuSubButton
|
|
7318
7321
|
|
|
@@ -7321,6 +7324,7 @@ MenuSubButton sub-component
|
|
|
7321
7324
|
Props:
|
|
7322
7325
|
- `active`: boolean
|
|
7323
7326
|
- `href`: string
|
|
7327
|
+
- `target`: React.HTMLAttributeAnchorTarget
|
|
7324
7328
|
|
|
7325
7329
|
#### Sidebar.Separator
|
|
7326
7330
|
|
|
@@ -9232,6 +9236,164 @@ Text component
|
|
|
9232
9236
|
```
|
|
9233
9237
|
|
|
9234
9238
|
|
|
9239
|
+
---
|
|
9240
|
+
|
|
9241
|
+
### Timeline
|
|
9242
|
+
|
|
9243
|
+
Timeline — presentational compound component for a Linear-style activity feed.
|
|
9244
|
+
|
|
9245
|
+
**Type:** component
|
|
9246
|
+
|
|
9247
|
+
**Import:** `import { Timeline } from "@cloudraker/reki";`
|
|
9248
|
+
|
|
9249
|
+
**Category:** Other
|
|
9250
|
+
|
|
9251
|
+
**Props:**
|
|
9252
|
+
|
|
9253
|
+
- `children`: ReactNode
|
|
9254
|
+
`Timeline.Item` elements.
|
|
9255
|
+
- `className`: string
|
|
9256
|
+
Additional CSS classes merged via `cn()`. Use reki semantic tokens only.
|
|
9257
|
+
|
|
9258
|
+
**Colors (reki tokens used):**
|
|
9259
|
+
|
|
9260
|
+
`bg-reki-base`, `bg-reki-fill`, `bg-reki-hairline`, `ring-reki-brand`, `ring-reki-line`, `text-reki-brand`, `text-reki-default`, `text-reki-subtle`
|
|
9261
|
+
|
|
9262
|
+
**Sub-Components:**
|
|
9263
|
+
|
|
9264
|
+
This is a compound component. Use these sub-components:
|
|
9265
|
+
|
|
9266
|
+
#### Timeline.Item
|
|
9267
|
+
|
|
9268
|
+
Item sub-component
|
|
9269
|
+
|
|
9270
|
+
Props:
|
|
9271
|
+
- `nodeType`: NodeType
|
|
9272
|
+
- `avatar`: { src?: string | null
|
|
9273
|
+
- `name`: string (required)
|
|
9274
|
+
|
|
9275
|
+
#### Timeline.Content
|
|
9276
|
+
|
|
9277
|
+
Content sub-component
|
|
9278
|
+
|
|
9279
|
+
Props:
|
|
9280
|
+
- `children`: ReactNode
|
|
9281
|
+
- `className`: string
|
|
9282
|
+
|
|
9283
|
+
#### Timeline.Event
|
|
9284
|
+
|
|
9285
|
+
Event sub-component
|
|
9286
|
+
|
|
9287
|
+
Props:
|
|
9288
|
+
- `actor`: ReactNode
|
|
9289
|
+
- `action`: ReactNode
|
|
9290
|
+
- `target`: ReactNode
|
|
9291
|
+
- `timestamp`: ReactNode
|
|
9292
|
+
- `truncate`: boolean
|
|
9293
|
+
- `className`: string
|
|
9294
|
+
|
|
9295
|
+
|
|
9296
|
+
**Examples:**
|
|
9297
|
+
|
|
9298
|
+
```tsx
|
|
9299
|
+
<div className="w-[480px]">
|
|
9300
|
+
<Timeline>
|
|
9301
|
+
<Timeline.Item isFirst nodeType="avatar" avatar={{ name: "Jane Doe" }}>
|
|
9302
|
+
<Timeline.Content>
|
|
9303
|
+
<Timeline.Event actor="Jane Doe" action="created the run" timestamp="5d ago" />
|
|
9304
|
+
</Timeline.Content>
|
|
9305
|
+
</Timeline.Item>
|
|
9306
|
+
<Timeline.Item nodeType="status" statusColor="green">
|
|
9307
|
+
<Timeline.Content>
|
|
9308
|
+
<Timeline.Event actor="Florent" action="moved to" target="In Progress" timestamp="3d ago" />
|
|
9309
|
+
</Timeline.Content>
|
|
9310
|
+
</Timeline.Item>
|
|
9311
|
+
<Timeline.Item nodeType="icon" icon={GitBranchIcon}>
|
|
9312
|
+
<Timeline.Content>
|
|
9313
|
+
<Timeline.Event actor="Mo" action="linked" target="feat/timeline" timestamp="2h ago" />
|
|
9314
|
+
</Timeline.Content>
|
|
9315
|
+
</Timeline.Item>
|
|
9316
|
+
<Timeline.Item isLast nodeType="icon" icon={CheckCircleIcon}>
|
|
9317
|
+
<Timeline.Content>
|
|
9318
|
+
<Timeline.Event actor="Jane Doe" action="completed" target="Draft proposal" timestamp="1h ago" />
|
|
9319
|
+
</Timeline.Content>
|
|
9320
|
+
</Timeline.Item>
|
|
9321
|
+
</Timeline>
|
|
9322
|
+
</div>
|
|
9323
|
+
```
|
|
9324
|
+
|
|
9325
|
+
```tsx
|
|
9326
|
+
<div className="w-[480px]">
|
|
9327
|
+
<Timeline>
|
|
9328
|
+
<Timeline.Item isFirst nodeType="icon" icon={UploadSimpleIcon}>
|
|
9329
|
+
<Timeline.Content>
|
|
9330
|
+
<Timeline.Event actor="Sam Lee" action="uploaded 3 files" timestamp="1d ago" />
|
|
9331
|
+
</Timeline.Content>
|
|
9332
|
+
</Timeline.Item>
|
|
9333
|
+
<Timeline.Item isLast variant="rich" nodeType="avatar" avatar={{ name: "Sam Lee" }}>
|
|
9334
|
+
<Timeline.Content>
|
|
9335
|
+
<Timeline.Event actor="Sam Lee" action="commented" timestamp="20m ago" />
|
|
9336
|
+
<Text size="sm">Looks good — can we ship the muted state for upcoming tasks too?</Text>
|
|
9337
|
+
</Timeline.Content>
|
|
9338
|
+
</Timeline.Item>
|
|
9339
|
+
</Timeline>
|
|
9340
|
+
</div>
|
|
9341
|
+
```
|
|
9342
|
+
|
|
9343
|
+
```tsx
|
|
9344
|
+
<div className="w-[480px]">
|
|
9345
|
+
<Timeline>
|
|
9346
|
+
<Timeline.Item isFirst nodeType="status" statusColor="blue">
|
|
9347
|
+
<Timeline.Content>
|
|
9348
|
+
<Timeline.Event actor="Florent" action="requested approval" timestamp="just now" />
|
|
9349
|
+
</Timeline.Content>
|
|
9350
|
+
</Timeline.Item>
|
|
9351
|
+
<Timeline.Item isLast variant="rich" tone="active" nodeType="icon" icon={PaperPlaneTiltIcon}>
|
|
9352
|
+
<Timeline.Content>
|
|
9353
|
+
<LayerCard>
|
|
9354
|
+
<LayerCard.Primary>
|
|
9355
|
+
<div className="flex flex-col gap-3">
|
|
9356
|
+
<Text size="sm">Approve budget increase?</Text>
|
|
9357
|
+
<div className="flex gap-2">
|
|
9358
|
+
<Button size="sm" variant="primary">
|
|
9359
|
+
Approve
|
|
9360
|
+
</Button>
|
|
9361
|
+
<Button size="sm" variant="secondary">
|
|
9362
|
+
Decline
|
|
9363
|
+
</Button>
|
|
9364
|
+
</div>
|
|
9365
|
+
</div>
|
|
9366
|
+
</LayerCard.Primary>
|
|
9367
|
+
</LayerCard>
|
|
9368
|
+
</Timeline.Content>
|
|
9369
|
+
</Timeline.Item>
|
|
9370
|
+
</Timeline>
|
|
9371
|
+
</div>
|
|
9372
|
+
```
|
|
9373
|
+
|
|
9374
|
+
```tsx
|
|
9375
|
+
<div className="w-[480px]">
|
|
9376
|
+
<Timeline>
|
|
9377
|
+
<Timeline.Item isFirst nodeType="status" statusColor="green">
|
|
9378
|
+
<Timeline.Content>
|
|
9379
|
+
<Timeline.Event actor="Jane Doe" action="kicked off onboarding" timestamp="2d ago" />
|
|
9380
|
+
</Timeline.Content>
|
|
9381
|
+
</Timeline.Item>
|
|
9382
|
+
<Timeline.Item tone="muted" nodeType="icon" icon={CheckCircleIcon}>
|
|
9383
|
+
<Timeline.Content>
|
|
9384
|
+
<Timeline.Event actor="Review step" action="starts after Onboarding" />
|
|
9385
|
+
</Timeline.Content>
|
|
9386
|
+
</Timeline.Item>
|
|
9387
|
+
<Timeline.Item isLast tone="muted" nodeType="icon" icon={CheckCircleIcon}>
|
|
9388
|
+
<Timeline.Content>
|
|
9389
|
+
<Timeline.Event actor="Sign-off" action="starts after Review" />
|
|
9390
|
+
</Timeline.Content>
|
|
9391
|
+
</Timeline.Item>
|
|
9392
|
+
</Timeline>
|
|
9393
|
+
</div>
|
|
9394
|
+
```
|
|
9395
|
+
|
|
9396
|
+
|
|
9235
9397
|
---
|
|
9236
9398
|
|
|
9237
9399
|
### Toasty
|
|
@@ -9454,7 +9616,7 @@ Multi-line textarea input with Input variants and InputArea-specific dimensions
|
|
|
9454
9616
|
## Quick Reference
|
|
9455
9617
|
|
|
9456
9618
|
**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
|
|
9619
|
+
- **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
9620
|
- **Display:** Badge, Breadcrumbs, Code, Collapsible, Empty, LayerCard, Meter, Text
|
|
9459
9621
|
- **Feedback:** Banner, Loader, Toasty
|
|
9460
9622
|
- **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
|
+
1783996853641
|
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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"}
|