@rokkit/ui 1.0.0-next.140 → 1.0.0-next.141

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rokkit/ui",
3
- "version": "1.0.0-next.140",
3
+ "version": "1.0.0-next.141",
4
4
  "description": "Data driven UI components for Rokkit applications",
5
5
  "repository": {
6
6
  "type": "git",
@@ -11,15 +11,15 @@ import type { Snippet } from 'svelte'
11
11
  // =============================================================================
12
12
 
13
13
  export interface TimelineFields {
14
- text?: string
14
+ label?: string
15
15
  icon?: string
16
- description?: string
16
+ subtext?: string
17
17
  }
18
18
 
19
19
  export const defaultTimelineFields: Required<TimelineFields> = {
20
- text: 'text',
20
+ label: 'label',
21
21
  icon: 'icon',
22
- description: 'description'
22
+ subtext: 'description'
23
23
  }
24
24
 
25
25
  // =============================================================================