@elaraai/east-ui 0.0.1-beta.0 → 0.0.1-beta.2

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.
Files changed (74) hide show
  1. package/README.md +106 -0
  2. package/dist/src/collections/gantt/index.d.ts +17950 -0
  3. package/dist/src/collections/gantt/index.d.ts.map +1 -0
  4. package/dist/src/collections/gantt/index.js +295 -0
  5. package/dist/src/collections/gantt/index.js.map +1 -0
  6. package/dist/src/collections/gantt/types.d.ts +195 -0
  7. package/dist/src/collections/gantt/types.d.ts.map +1 -0
  8. package/dist/src/collections/gantt/types.js +90 -0
  9. package/dist/src/collections/gantt/types.js.map +1 -0
  10. package/dist/src/collections/index.d.ts +1 -0
  11. package/dist/src/collections/index.d.ts.map +1 -1
  12. package/dist/src/collections/index.js +1 -0
  13. package/dist/src/collections/index.js.map +1 -1
  14. package/dist/src/collections/table/index.d.ts +7476 -207
  15. package/dist/src/collections/table/index.d.ts.map +1 -1
  16. package/dist/src/collections/table/index.js +54 -20
  17. package/dist/src/collections/table/index.js.map +1 -1
  18. package/dist/src/collections/table/types.d.ts +33 -1
  19. package/dist/src/collections/table/types.d.ts.map +1 -1
  20. package/dist/src/collections/table/types.js +23 -1
  21. package/dist/src/collections/table/types.js.map +1 -1
  22. package/dist/src/component.d.ts +123 -1
  23. package/dist/src/component.d.ts.map +1 -1
  24. package/dist/src/component.js +18 -3
  25. package/dist/src/component.js.map +1 -1
  26. package/dist/src/container/card/index.d.ts +246 -2
  27. package/dist/src/container/card/index.d.ts.map +1 -1
  28. package/dist/src/disclosure/accordion/index.d.ts +492 -4
  29. package/dist/src/disclosure/accordion/index.d.ts.map +1 -1
  30. package/dist/src/disclosure/carousel/index.d.ts +246 -2
  31. package/dist/src/disclosure/carousel/index.d.ts.map +1 -1
  32. package/dist/src/disclosure/tabs/index.d.ts +492 -4
  33. package/dist/src/disclosure/tabs/index.d.ts.map +1 -1
  34. package/dist/src/forms/field/index.d.ts +246 -2
  35. package/dist/src/forms/field/index.d.ts.map +1 -1
  36. package/dist/src/index.d.ts +1 -1
  37. package/dist/src/index.d.ts.map +1 -1
  38. package/dist/src/index.js +1 -1
  39. package/dist/src/index.js.map +1 -1
  40. package/dist/src/layout/box/index.d.ts +246 -2
  41. package/dist/src/layout/box/index.d.ts.map +1 -1
  42. package/dist/src/layout/grid/index.d.ts +492 -4
  43. package/dist/src/layout/grid/index.d.ts.map +1 -1
  44. package/dist/src/layout/splitter/index.d.ts +492 -4
  45. package/dist/src/layout/splitter/index.d.ts.map +1 -1
  46. package/dist/src/layout/stack/index.d.ts +246 -2
  47. package/dist/src/layout/stack/index.d.ts.map +1 -1
  48. package/dist/src/overlays/dialog/index.d.ts +492 -4
  49. package/dist/src/overlays/dialog/index.d.ts.map +1 -1
  50. package/dist/src/overlays/drawer/index.d.ts +492 -4
  51. package/dist/src/overlays/drawer/index.d.ts.map +1 -1
  52. package/dist/src/overlays/hover-card/index.d.ts +492 -4
  53. package/dist/src/overlays/hover-card/index.d.ts.map +1 -1
  54. package/dist/src/overlays/menu/index.d.ts +246 -2
  55. package/dist/src/overlays/menu/index.d.ts.map +1 -1
  56. package/dist/src/overlays/popover/index.d.ts +492 -4
  57. package/dist/src/overlays/popover/index.d.ts.map +1 -1
  58. package/dist/src/overlays/toggle-tip/index.d.ts +246 -2
  59. package/dist/src/overlays/toggle-tip/index.d.ts.map +1 -1
  60. package/dist/src/overlays/tooltip/index.d.ts +246 -2
  61. package/dist/src/overlays/tooltip/index.d.ts.map +1 -1
  62. package/dist/src/style.d.ts +118 -0
  63. package/dist/src/style.d.ts.map +1 -1
  64. package/dist/src/style.js +109 -0
  65. package/dist/src/style.js.map +1 -1
  66. package/dist/src/typography/index.d.ts +17 -0
  67. package/dist/src/typography/index.d.ts.map +1 -1
  68. package/dist/src/typography/index.js +19 -1
  69. package/dist/src/typography/index.js.map +1 -1
  70. package/dist/src/typography/types.d.ts +26 -3
  71. package/dist/src/typography/types.d.ts.map +1 -1
  72. package/dist/src/typography/types.js +4 -1
  73. package/dist/src/typography/types.js.map +1 -1
  74. package/package.json +2 -2
@@ -53,6 +53,23 @@ export declare const HoverCardType: StructType<{
53
53
  right: import("@elaraai/east").NullType;
54
54
  justify: import("@elaraai/east").NullType;
55
55
  }>>;
56
+ textOverflow: OptionType<import("@elaraai/east").VariantType<{
57
+ clip: import("@elaraai/east").NullType;
58
+ ellipsis: import("@elaraai/east").NullType;
59
+ }>>;
60
+ whiteSpace: OptionType<import("@elaraai/east").VariantType<{
61
+ normal: import("@elaraai/east").NullType;
62
+ nowrap: import("@elaraai/east").NullType;
63
+ pre: import("@elaraai/east").NullType;
64
+ "pre-wrap": import("@elaraai/east").NullType;
65
+ "pre-line": import("@elaraai/east").NullType;
66
+ }>>;
67
+ overflow: OptionType<import("@elaraai/east").VariantType<{
68
+ visible: import("@elaraai/east").NullType;
69
+ hidden: import("@elaraai/east").NullType;
70
+ scroll: import("@elaraai/east").NullType;
71
+ auto: import("@elaraai/east").NullType;
72
+ }>>;
56
73
  borderWidth: OptionType<import("@elaraai/east").VariantType<{
57
74
  none: import("@elaraai/east").NullType;
58
75
  thin: import("@elaraai/east").NullType;
@@ -3052,9 +3069,25 @@ export declare const HoverCardType: StructType<{
3052
3069
  }>>;
3053
3070
  }>;
3054
3071
  Table: StructType<{
3055
- rows: ArrayType<import("@elaraai/east").DictType<import("@elaraai/east").StringType, import("@elaraai/east").RecursiveTypeMarker>>;
3072
+ rows: ArrayType<import("@elaraai/east").DictType<import("@elaraai/east").StringType, StructType<{
3073
+ value: import("@elaraai/east").VariantType<{
3074
+ Boolean: import("@elaraai/east").BooleanType;
3075
+ Integer: import("@elaraai/east").IntegerType;
3076
+ Float: import("@elaraai/east").FloatType;
3077
+ String: import("@elaraai/east").StringType;
3078
+ DateTime: import("@elaraai/east").DateTimeType;
3079
+ }>;
3080
+ content: import("@elaraai/east").RecursiveTypeMarker;
3081
+ }>>>;
3056
3082
  columns: ArrayType<StructType<{
3057
3083
  key: import("@elaraai/east").StringType;
3084
+ type: import("@elaraai/east").VariantType<{
3085
+ Boolean: import("@elaraai/east").NullType;
3086
+ Integer: import("@elaraai/east").NullType;
3087
+ Float: import("@elaraai/east").NullType;
3088
+ String: import("@elaraai/east").NullType;
3089
+ DateTime: import("@elaraai/east").NullType;
3090
+ }>;
3058
3091
  header: OptionType<import("@elaraai/east").StringType>;
3059
3092
  }>>;
3060
3093
  style: OptionType<StructType<{
@@ -3085,6 +3118,95 @@ export declare const HoverCardType: StructType<{
3085
3118
  }>>;
3086
3119
  }>>;
3087
3120
  }>;
3121
+ Gantt: StructType<{
3122
+ rows: ArrayType<StructType<{
3123
+ cells: import("@elaraai/east").DictType<import("@elaraai/east").StringType, StructType<{
3124
+ value: import("@elaraai/east").VariantType<{
3125
+ Boolean: import("@elaraai/east").BooleanType;
3126
+ Integer: import("@elaraai/east").IntegerType;
3127
+ Float: import("@elaraai/east").FloatType;
3128
+ String: import("@elaraai/east").StringType;
3129
+ DateTime: import("@elaraai/east").DateTimeType;
3130
+ }>;
3131
+ content: import("@elaraai/east").RecursiveTypeMarker;
3132
+ }>>;
3133
+ events: ArrayType<import("@elaraai/east").VariantType<{
3134
+ Task: StructType<{
3135
+ start: import("@elaraai/east").DateTimeType;
3136
+ end: import("@elaraai/east").DateTimeType;
3137
+ label: OptionType<import("@elaraai/east").StringType>;
3138
+ progress: OptionType<import("@elaraai/east").FloatType>;
3139
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
3140
+ gray: import("@elaraai/east").NullType;
3141
+ red: import("@elaraai/east").NullType;
3142
+ orange: import("@elaraai/east").NullType;
3143
+ yellow: import("@elaraai/east").NullType;
3144
+ green: import("@elaraai/east").NullType;
3145
+ teal: import("@elaraai/east").NullType;
3146
+ blue: import("@elaraai/east").NullType;
3147
+ cyan: import("@elaraai/east").NullType;
3148
+ purple: import("@elaraai/east").NullType;
3149
+ pink: import("@elaraai/east").NullType;
3150
+ }>>;
3151
+ }>;
3152
+ Milestone: StructType<{
3153
+ date: import("@elaraai/east").DateTimeType;
3154
+ label: OptionType<import("@elaraai/east").StringType>;
3155
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
3156
+ gray: import("@elaraai/east").NullType;
3157
+ red: import("@elaraai/east").NullType;
3158
+ orange: import("@elaraai/east").NullType;
3159
+ yellow: import("@elaraai/east").NullType;
3160
+ green: import("@elaraai/east").NullType;
3161
+ teal: import("@elaraai/east").NullType;
3162
+ blue: import("@elaraai/east").NullType;
3163
+ cyan: import("@elaraai/east").NullType;
3164
+ purple: import("@elaraai/east").NullType;
3165
+ pink: import("@elaraai/east").NullType;
3166
+ }>>;
3167
+ }>;
3168
+ }>>;
3169
+ }>>;
3170
+ columns: ArrayType<StructType<{
3171
+ key: import("@elaraai/east").StringType;
3172
+ type: import("@elaraai/east").VariantType<{
3173
+ Boolean: import("@elaraai/east").NullType;
3174
+ Integer: import("@elaraai/east").NullType;
3175
+ Float: import("@elaraai/east").NullType;
3176
+ String: import("@elaraai/east").NullType;
3177
+ DateTime: import("@elaraai/east").NullType;
3178
+ }>;
3179
+ header: OptionType<import("@elaraai/east").StringType>;
3180
+ }>>;
3181
+ style: OptionType<StructType<{
3182
+ variant: OptionType<import("@elaraai/east").VariantType<{
3183
+ line: import("@elaraai/east").NullType;
3184
+ outline: import("@elaraai/east").NullType;
3185
+ }>>;
3186
+ size: OptionType<import("@elaraai/east").VariantType<{
3187
+ sm: import("@elaraai/east").NullType;
3188
+ md: import("@elaraai/east").NullType;
3189
+ lg: import("@elaraai/east").NullType;
3190
+ }>>;
3191
+ striped: OptionType<import("@elaraai/east").BooleanType>;
3192
+ interactive: OptionType<import("@elaraai/east").BooleanType>;
3193
+ stickyHeader: OptionType<import("@elaraai/east").BooleanType>;
3194
+ showColumnBorder: OptionType<import("@elaraai/east").BooleanType>;
3195
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
3196
+ gray: import("@elaraai/east").NullType;
3197
+ red: import("@elaraai/east").NullType;
3198
+ orange: import("@elaraai/east").NullType;
3199
+ yellow: import("@elaraai/east").NullType;
3200
+ green: import("@elaraai/east").NullType;
3201
+ teal: import("@elaraai/east").NullType;
3202
+ blue: import("@elaraai/east").NullType;
3203
+ cyan: import("@elaraai/east").NullType;
3204
+ purple: import("@elaraai/east").NullType;
3205
+ pink: import("@elaraai/east").NullType;
3206
+ }>>;
3207
+ showToday: OptionType<import("@elaraai/east").BooleanType>;
3208
+ }>>;
3209
+ }>;
3088
3210
  Accordion: StructType<{
3089
3211
  items: ArrayType<StructType<{
3090
3212
  value: import("@elaraai/east").StringType;
@@ -3407,6 +3529,23 @@ export declare const HoverCardType: StructType<{
3407
3529
  right: import("@elaraai/east").NullType;
3408
3530
  justify: import("@elaraai/east").NullType;
3409
3531
  }>>;
3532
+ textOverflow: OptionType<import("@elaraai/east").VariantType<{
3533
+ clip: import("@elaraai/east").NullType;
3534
+ ellipsis: import("@elaraai/east").NullType;
3535
+ }>>;
3536
+ whiteSpace: OptionType<import("@elaraai/east").VariantType<{
3537
+ normal: import("@elaraai/east").NullType;
3538
+ nowrap: import("@elaraai/east").NullType;
3539
+ pre: import("@elaraai/east").NullType;
3540
+ "pre-wrap": import("@elaraai/east").NullType;
3541
+ "pre-line": import("@elaraai/east").NullType;
3542
+ }>>;
3543
+ overflow: OptionType<import("@elaraai/east").VariantType<{
3544
+ visible: import("@elaraai/east").NullType;
3545
+ hidden: import("@elaraai/east").NullType;
3546
+ scroll: import("@elaraai/east").NullType;
3547
+ auto: import("@elaraai/east").NullType;
3548
+ }>>;
3410
3549
  borderWidth: OptionType<import("@elaraai/east").VariantType<{
3411
3550
  none: import("@elaraai/east").NullType;
3412
3551
  thin: import("@elaraai/east").NullType;
@@ -6406,9 +6545,113 @@ export declare const HoverCardType: StructType<{
6406
6545
  }>>;
6407
6546
  }>;
6408
6547
  Table: StructType<{
6409
- rows: ArrayType<import("@elaraai/east").DictType<import("@elaraai/east").StringType, import("@elaraai/east").RecursiveTypeMarker>>;
6548
+ rows: ArrayType<import("@elaraai/east").DictType<import("@elaraai/east").StringType, StructType<{
6549
+ value: import("@elaraai/east").VariantType<{
6550
+ Boolean: import("@elaraai/east").BooleanType;
6551
+ Integer: import("@elaraai/east").IntegerType;
6552
+ Float: import("@elaraai/east").FloatType;
6553
+ String: import("@elaraai/east").StringType;
6554
+ DateTime: import("@elaraai/east").DateTimeType;
6555
+ }>;
6556
+ content: import("@elaraai/east").RecursiveTypeMarker;
6557
+ }>>>;
6558
+ columns: ArrayType<StructType<{
6559
+ key: import("@elaraai/east").StringType;
6560
+ type: import("@elaraai/east").VariantType<{
6561
+ Boolean: import("@elaraai/east").NullType;
6562
+ Integer: import("@elaraai/east").NullType;
6563
+ Float: import("@elaraai/east").NullType;
6564
+ String: import("@elaraai/east").NullType;
6565
+ DateTime: import("@elaraai/east").NullType;
6566
+ }>;
6567
+ header: OptionType<import("@elaraai/east").StringType>;
6568
+ }>>;
6569
+ style: OptionType<StructType<{
6570
+ variant: OptionType<import("@elaraai/east").VariantType<{
6571
+ line: import("@elaraai/east").NullType;
6572
+ outline: import("@elaraai/east").NullType;
6573
+ }>>;
6574
+ size: OptionType<import("@elaraai/east").VariantType<{
6575
+ sm: import("@elaraai/east").NullType;
6576
+ md: import("@elaraai/east").NullType;
6577
+ lg: import("@elaraai/east").NullType;
6578
+ }>>;
6579
+ striped: OptionType<import("@elaraai/east").BooleanType>;
6580
+ interactive: OptionType<import("@elaraai/east").BooleanType>;
6581
+ stickyHeader: OptionType<import("@elaraai/east").BooleanType>;
6582
+ showColumnBorder: OptionType<import("@elaraai/east").BooleanType>;
6583
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
6584
+ gray: import("@elaraai/east").NullType;
6585
+ red: import("@elaraai/east").NullType;
6586
+ orange: import("@elaraai/east").NullType;
6587
+ yellow: import("@elaraai/east").NullType;
6588
+ green: import("@elaraai/east").NullType;
6589
+ teal: import("@elaraai/east").NullType;
6590
+ blue: import("@elaraai/east").NullType;
6591
+ cyan: import("@elaraai/east").NullType;
6592
+ purple: import("@elaraai/east").NullType;
6593
+ pink: import("@elaraai/east").NullType;
6594
+ }>>;
6595
+ }>>;
6596
+ }>;
6597
+ Gantt: StructType<{
6598
+ rows: ArrayType<StructType<{
6599
+ cells: import("@elaraai/east").DictType<import("@elaraai/east").StringType, StructType<{
6600
+ value: import("@elaraai/east").VariantType<{
6601
+ Boolean: import("@elaraai/east").BooleanType;
6602
+ Integer: import("@elaraai/east").IntegerType;
6603
+ Float: import("@elaraai/east").FloatType;
6604
+ String: import("@elaraai/east").StringType;
6605
+ DateTime: import("@elaraai/east").DateTimeType;
6606
+ }>;
6607
+ content: import("@elaraai/east").RecursiveTypeMarker;
6608
+ }>>;
6609
+ events: ArrayType<import("@elaraai/east").VariantType<{
6610
+ Task: StructType<{
6611
+ start: import("@elaraai/east").DateTimeType;
6612
+ end: import("@elaraai/east").DateTimeType;
6613
+ label: OptionType<import("@elaraai/east").StringType>;
6614
+ progress: OptionType<import("@elaraai/east").FloatType>;
6615
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
6616
+ gray: import("@elaraai/east").NullType;
6617
+ red: import("@elaraai/east").NullType;
6618
+ orange: import("@elaraai/east").NullType;
6619
+ yellow: import("@elaraai/east").NullType;
6620
+ green: import("@elaraai/east").NullType;
6621
+ teal: import("@elaraai/east").NullType;
6622
+ blue: import("@elaraai/east").NullType;
6623
+ cyan: import("@elaraai/east").NullType;
6624
+ purple: import("@elaraai/east").NullType;
6625
+ pink: import("@elaraai/east").NullType;
6626
+ }>>;
6627
+ }>;
6628
+ Milestone: StructType<{
6629
+ date: import("@elaraai/east").DateTimeType;
6630
+ label: OptionType<import("@elaraai/east").StringType>;
6631
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
6632
+ gray: import("@elaraai/east").NullType;
6633
+ red: import("@elaraai/east").NullType;
6634
+ orange: import("@elaraai/east").NullType;
6635
+ yellow: import("@elaraai/east").NullType;
6636
+ green: import("@elaraai/east").NullType;
6637
+ teal: import("@elaraai/east").NullType;
6638
+ blue: import("@elaraai/east").NullType;
6639
+ cyan: import("@elaraai/east").NullType;
6640
+ purple: import("@elaraai/east").NullType;
6641
+ pink: import("@elaraai/east").NullType;
6642
+ }>>;
6643
+ }>;
6644
+ }>>;
6645
+ }>>;
6410
6646
  columns: ArrayType<StructType<{
6411
6647
  key: import("@elaraai/east").StringType;
6648
+ type: import("@elaraai/east").VariantType<{
6649
+ Boolean: import("@elaraai/east").NullType;
6650
+ Integer: import("@elaraai/east").NullType;
6651
+ Float: import("@elaraai/east").NullType;
6652
+ String: import("@elaraai/east").NullType;
6653
+ DateTime: import("@elaraai/east").NullType;
6654
+ }>;
6412
6655
  header: OptionType<import("@elaraai/east").StringType>;
6413
6656
  }>>;
6414
6657
  style: OptionType<StructType<{
@@ -6437,6 +6680,7 @@ export declare const HoverCardType: StructType<{
6437
6680
  purple: import("@elaraai/east").NullType;
6438
6681
  pink: import("@elaraai/east").NullType;
6439
6682
  }>>;
6683
+ showToday: OptionType<import("@elaraai/east").BooleanType>;
6440
6684
  }>>;
6441
6685
  }>;
6442
6686
  Accordion: StructType<{
@@ -6857,6 +7101,23 @@ export declare const HoverCard: {
6857
7101
  right: import("@elaraai/east").NullType;
6858
7102
  justify: import("@elaraai/east").NullType;
6859
7103
  }>>;
7104
+ textOverflow: OptionType<import("@elaraai/east").VariantType<{
7105
+ clip: import("@elaraai/east").NullType;
7106
+ ellipsis: import("@elaraai/east").NullType;
7107
+ }>>;
7108
+ whiteSpace: OptionType<import("@elaraai/east").VariantType<{
7109
+ normal: import("@elaraai/east").NullType;
7110
+ nowrap: import("@elaraai/east").NullType;
7111
+ pre: import("@elaraai/east").NullType;
7112
+ "pre-wrap": import("@elaraai/east").NullType;
7113
+ "pre-line": import("@elaraai/east").NullType;
7114
+ }>>;
7115
+ overflow: OptionType<import("@elaraai/east").VariantType<{
7116
+ visible: import("@elaraai/east").NullType;
7117
+ hidden: import("@elaraai/east").NullType;
7118
+ scroll: import("@elaraai/east").NullType;
7119
+ auto: import("@elaraai/east").NullType;
7120
+ }>>;
6860
7121
  borderWidth: OptionType<import("@elaraai/east").VariantType<{
6861
7122
  none: import("@elaraai/east").NullType;
6862
7123
  thin: import("@elaraai/east").NullType;
@@ -9856,9 +10117,25 @@ export declare const HoverCard: {
9856
10117
  }>>;
9857
10118
  }>;
9858
10119
  Table: StructType<{
9859
- rows: ArrayType<import("@elaraai/east").DictType<import("@elaraai/east").StringType, import("@elaraai/east").RecursiveTypeMarker>>;
10120
+ rows: ArrayType<import("@elaraai/east").DictType<import("@elaraai/east").StringType, StructType<{
10121
+ value: import("@elaraai/east").VariantType<{
10122
+ Boolean: import("@elaraai/east").BooleanType;
10123
+ Integer: import("@elaraai/east").IntegerType;
10124
+ Float: import("@elaraai/east").FloatType;
10125
+ String: import("@elaraai/east").StringType;
10126
+ DateTime: import("@elaraai/east").DateTimeType;
10127
+ }>;
10128
+ content: import("@elaraai/east").RecursiveTypeMarker;
10129
+ }>>>;
9860
10130
  columns: ArrayType<StructType<{
9861
10131
  key: import("@elaraai/east").StringType;
10132
+ type: import("@elaraai/east").VariantType<{
10133
+ Boolean: import("@elaraai/east").NullType;
10134
+ Integer: import("@elaraai/east").NullType;
10135
+ Float: import("@elaraai/east").NullType;
10136
+ String: import("@elaraai/east").NullType;
10137
+ DateTime: import("@elaraai/east").NullType;
10138
+ }>;
9862
10139
  header: OptionType<import("@elaraai/east").StringType>;
9863
10140
  }>>;
9864
10141
  style: OptionType<StructType<{
@@ -9889,6 +10166,95 @@ export declare const HoverCard: {
9889
10166
  }>>;
9890
10167
  }>>;
9891
10168
  }>;
10169
+ Gantt: StructType<{
10170
+ rows: ArrayType<StructType<{
10171
+ cells: import("@elaraai/east").DictType<import("@elaraai/east").StringType, StructType<{
10172
+ value: import("@elaraai/east").VariantType<{
10173
+ Boolean: import("@elaraai/east").BooleanType;
10174
+ Integer: import("@elaraai/east").IntegerType;
10175
+ Float: import("@elaraai/east").FloatType;
10176
+ String: import("@elaraai/east").StringType;
10177
+ DateTime: import("@elaraai/east").DateTimeType;
10178
+ }>;
10179
+ content: import("@elaraai/east").RecursiveTypeMarker;
10180
+ }>>;
10181
+ events: ArrayType<import("@elaraai/east").VariantType<{
10182
+ Task: StructType<{
10183
+ start: import("@elaraai/east").DateTimeType;
10184
+ end: import("@elaraai/east").DateTimeType;
10185
+ label: OptionType<import("@elaraai/east").StringType>;
10186
+ progress: OptionType<import("@elaraai/east").FloatType>;
10187
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
10188
+ gray: import("@elaraai/east").NullType;
10189
+ red: import("@elaraai/east").NullType;
10190
+ orange: import("@elaraai/east").NullType;
10191
+ yellow: import("@elaraai/east").NullType;
10192
+ green: import("@elaraai/east").NullType;
10193
+ teal: import("@elaraai/east").NullType;
10194
+ blue: import("@elaraai/east").NullType;
10195
+ cyan: import("@elaraai/east").NullType;
10196
+ purple: import("@elaraai/east").NullType;
10197
+ pink: import("@elaraai/east").NullType;
10198
+ }>>;
10199
+ }>;
10200
+ Milestone: StructType<{
10201
+ date: import("@elaraai/east").DateTimeType;
10202
+ label: OptionType<import("@elaraai/east").StringType>;
10203
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
10204
+ gray: import("@elaraai/east").NullType;
10205
+ red: import("@elaraai/east").NullType;
10206
+ orange: import("@elaraai/east").NullType;
10207
+ yellow: import("@elaraai/east").NullType;
10208
+ green: import("@elaraai/east").NullType;
10209
+ teal: import("@elaraai/east").NullType;
10210
+ blue: import("@elaraai/east").NullType;
10211
+ cyan: import("@elaraai/east").NullType;
10212
+ purple: import("@elaraai/east").NullType;
10213
+ pink: import("@elaraai/east").NullType;
10214
+ }>>;
10215
+ }>;
10216
+ }>>;
10217
+ }>>;
10218
+ columns: ArrayType<StructType<{
10219
+ key: import("@elaraai/east").StringType;
10220
+ type: import("@elaraai/east").VariantType<{
10221
+ Boolean: import("@elaraai/east").NullType;
10222
+ Integer: import("@elaraai/east").NullType;
10223
+ Float: import("@elaraai/east").NullType;
10224
+ String: import("@elaraai/east").NullType;
10225
+ DateTime: import("@elaraai/east").NullType;
10226
+ }>;
10227
+ header: OptionType<import("@elaraai/east").StringType>;
10228
+ }>>;
10229
+ style: OptionType<StructType<{
10230
+ variant: OptionType<import("@elaraai/east").VariantType<{
10231
+ line: import("@elaraai/east").NullType;
10232
+ outline: import("@elaraai/east").NullType;
10233
+ }>>;
10234
+ size: OptionType<import("@elaraai/east").VariantType<{
10235
+ sm: import("@elaraai/east").NullType;
10236
+ md: import("@elaraai/east").NullType;
10237
+ lg: import("@elaraai/east").NullType;
10238
+ }>>;
10239
+ striped: OptionType<import("@elaraai/east").BooleanType>;
10240
+ interactive: OptionType<import("@elaraai/east").BooleanType>;
10241
+ stickyHeader: OptionType<import("@elaraai/east").BooleanType>;
10242
+ showColumnBorder: OptionType<import("@elaraai/east").BooleanType>;
10243
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
10244
+ gray: import("@elaraai/east").NullType;
10245
+ red: import("@elaraai/east").NullType;
10246
+ orange: import("@elaraai/east").NullType;
10247
+ yellow: import("@elaraai/east").NullType;
10248
+ green: import("@elaraai/east").NullType;
10249
+ teal: import("@elaraai/east").NullType;
10250
+ blue: import("@elaraai/east").NullType;
10251
+ cyan: import("@elaraai/east").NullType;
10252
+ purple: import("@elaraai/east").NullType;
10253
+ pink: import("@elaraai/east").NullType;
10254
+ }>>;
10255
+ showToday: OptionType<import("@elaraai/east").BooleanType>;
10256
+ }>>;
10257
+ }>;
9892
10258
  Accordion: StructType<{
9893
10259
  items: ArrayType<StructType<{
9894
10260
  value: import("@elaraai/east").StringType;
@@ -10211,6 +10577,23 @@ export declare const HoverCard: {
10211
10577
  right: import("@elaraai/east").NullType;
10212
10578
  justify: import("@elaraai/east").NullType;
10213
10579
  }>>;
10580
+ textOverflow: OptionType<import("@elaraai/east").VariantType<{
10581
+ clip: import("@elaraai/east").NullType;
10582
+ ellipsis: import("@elaraai/east").NullType;
10583
+ }>>;
10584
+ whiteSpace: OptionType<import("@elaraai/east").VariantType<{
10585
+ normal: import("@elaraai/east").NullType;
10586
+ nowrap: import("@elaraai/east").NullType;
10587
+ pre: import("@elaraai/east").NullType;
10588
+ "pre-wrap": import("@elaraai/east").NullType;
10589
+ "pre-line": import("@elaraai/east").NullType;
10590
+ }>>;
10591
+ overflow: OptionType<import("@elaraai/east").VariantType<{
10592
+ visible: import("@elaraai/east").NullType;
10593
+ hidden: import("@elaraai/east").NullType;
10594
+ scroll: import("@elaraai/east").NullType;
10595
+ auto: import("@elaraai/east").NullType;
10596
+ }>>;
10214
10597
  borderWidth: OptionType<import("@elaraai/east").VariantType<{
10215
10598
  none: import("@elaraai/east").NullType;
10216
10599
  thin: import("@elaraai/east").NullType;
@@ -13210,9 +13593,113 @@ export declare const HoverCard: {
13210
13593
  }>>;
13211
13594
  }>;
13212
13595
  Table: StructType<{
13213
- rows: ArrayType<import("@elaraai/east").DictType<import("@elaraai/east").StringType, import("@elaraai/east").RecursiveTypeMarker>>;
13596
+ rows: ArrayType<import("@elaraai/east").DictType<import("@elaraai/east").StringType, StructType<{
13597
+ value: import("@elaraai/east").VariantType<{
13598
+ Boolean: import("@elaraai/east").BooleanType;
13599
+ Integer: import("@elaraai/east").IntegerType;
13600
+ Float: import("@elaraai/east").FloatType;
13601
+ String: import("@elaraai/east").StringType;
13602
+ DateTime: import("@elaraai/east").DateTimeType;
13603
+ }>;
13604
+ content: import("@elaraai/east").RecursiveTypeMarker;
13605
+ }>>>;
13214
13606
  columns: ArrayType<StructType<{
13215
13607
  key: import("@elaraai/east").StringType;
13608
+ type: import("@elaraai/east").VariantType<{
13609
+ Boolean: import("@elaraai/east").NullType;
13610
+ Integer: import("@elaraai/east").NullType;
13611
+ Float: import("@elaraai/east").NullType;
13612
+ String: import("@elaraai/east").NullType;
13613
+ DateTime: import("@elaraai/east").NullType;
13614
+ }>;
13615
+ header: OptionType<import("@elaraai/east").StringType>;
13616
+ }>>;
13617
+ style: OptionType<StructType<{
13618
+ variant: OptionType<import("@elaraai/east").VariantType<{
13619
+ line: import("@elaraai/east").NullType;
13620
+ outline: import("@elaraai/east").NullType;
13621
+ }>>;
13622
+ size: OptionType<import("@elaraai/east").VariantType<{
13623
+ sm: import("@elaraai/east").NullType;
13624
+ md: import("@elaraai/east").NullType;
13625
+ lg: import("@elaraai/east").NullType;
13626
+ }>>;
13627
+ striped: OptionType<import("@elaraai/east").BooleanType>;
13628
+ interactive: OptionType<import("@elaraai/east").BooleanType>;
13629
+ stickyHeader: OptionType<import("@elaraai/east").BooleanType>;
13630
+ showColumnBorder: OptionType<import("@elaraai/east").BooleanType>;
13631
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
13632
+ gray: import("@elaraai/east").NullType;
13633
+ red: import("@elaraai/east").NullType;
13634
+ orange: import("@elaraai/east").NullType;
13635
+ yellow: import("@elaraai/east").NullType;
13636
+ green: import("@elaraai/east").NullType;
13637
+ teal: import("@elaraai/east").NullType;
13638
+ blue: import("@elaraai/east").NullType;
13639
+ cyan: import("@elaraai/east").NullType;
13640
+ purple: import("@elaraai/east").NullType;
13641
+ pink: import("@elaraai/east").NullType;
13642
+ }>>;
13643
+ }>>;
13644
+ }>;
13645
+ Gantt: StructType<{
13646
+ rows: ArrayType<StructType<{
13647
+ cells: import("@elaraai/east").DictType<import("@elaraai/east").StringType, StructType<{
13648
+ value: import("@elaraai/east").VariantType<{
13649
+ Boolean: import("@elaraai/east").BooleanType;
13650
+ Integer: import("@elaraai/east").IntegerType;
13651
+ Float: import("@elaraai/east").FloatType;
13652
+ String: import("@elaraai/east").StringType;
13653
+ DateTime: import("@elaraai/east").DateTimeType;
13654
+ }>;
13655
+ content: import("@elaraai/east").RecursiveTypeMarker;
13656
+ }>>;
13657
+ events: ArrayType<import("@elaraai/east").VariantType<{
13658
+ Task: StructType<{
13659
+ start: import("@elaraai/east").DateTimeType;
13660
+ end: import("@elaraai/east").DateTimeType;
13661
+ label: OptionType<import("@elaraai/east").StringType>;
13662
+ progress: OptionType<import("@elaraai/east").FloatType>;
13663
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
13664
+ gray: import("@elaraai/east").NullType;
13665
+ red: import("@elaraai/east").NullType;
13666
+ orange: import("@elaraai/east").NullType;
13667
+ yellow: import("@elaraai/east").NullType;
13668
+ green: import("@elaraai/east").NullType;
13669
+ teal: import("@elaraai/east").NullType;
13670
+ blue: import("@elaraai/east").NullType;
13671
+ cyan: import("@elaraai/east").NullType;
13672
+ purple: import("@elaraai/east").NullType;
13673
+ pink: import("@elaraai/east").NullType;
13674
+ }>>;
13675
+ }>;
13676
+ Milestone: StructType<{
13677
+ date: import("@elaraai/east").DateTimeType;
13678
+ label: OptionType<import("@elaraai/east").StringType>;
13679
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
13680
+ gray: import("@elaraai/east").NullType;
13681
+ red: import("@elaraai/east").NullType;
13682
+ orange: import("@elaraai/east").NullType;
13683
+ yellow: import("@elaraai/east").NullType;
13684
+ green: import("@elaraai/east").NullType;
13685
+ teal: import("@elaraai/east").NullType;
13686
+ blue: import("@elaraai/east").NullType;
13687
+ cyan: import("@elaraai/east").NullType;
13688
+ purple: import("@elaraai/east").NullType;
13689
+ pink: import("@elaraai/east").NullType;
13690
+ }>>;
13691
+ }>;
13692
+ }>>;
13693
+ }>>;
13694
+ columns: ArrayType<StructType<{
13695
+ key: import("@elaraai/east").StringType;
13696
+ type: import("@elaraai/east").VariantType<{
13697
+ Boolean: import("@elaraai/east").NullType;
13698
+ Integer: import("@elaraai/east").NullType;
13699
+ Float: import("@elaraai/east").NullType;
13700
+ String: import("@elaraai/east").NullType;
13701
+ DateTime: import("@elaraai/east").NullType;
13702
+ }>;
13216
13703
  header: OptionType<import("@elaraai/east").StringType>;
13217
13704
  }>>;
13218
13705
  style: OptionType<StructType<{
@@ -13241,6 +13728,7 @@ export declare const HoverCard: {
13241
13728
  purple: import("@elaraai/east").NullType;
13242
13729
  pink: import("@elaraai/east").NullType;
13243
13730
  }>>;
13731
+ showToday: OptionType<import("@elaraai/east").BooleanType>;
13244
13732
  }>>;
13245
13733
  }>;
13246
13734
  Accordion: StructType<{