@elaraai/east-ui 0.0.1-beta.1 → 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 (55) hide show
  1. package/dist/src/collections/gantt/index.d.ts +17950 -0
  2. package/dist/src/collections/gantt/index.d.ts.map +1 -0
  3. package/dist/src/collections/gantt/index.js +295 -0
  4. package/dist/src/collections/gantt/index.js.map +1 -0
  5. package/dist/src/collections/gantt/types.d.ts +195 -0
  6. package/dist/src/collections/gantt/types.d.ts.map +1 -0
  7. package/dist/src/collections/gantt/types.js +90 -0
  8. package/dist/src/collections/gantt/types.js.map +1 -0
  9. package/dist/src/collections/index.d.ts +1 -0
  10. package/dist/src/collections/index.d.ts.map +1 -1
  11. package/dist/src/collections/index.js +1 -0
  12. package/dist/src/collections/index.js.map +1 -1
  13. package/dist/src/collections/table/index.d.ts +356 -0
  14. package/dist/src/collections/table/index.d.ts.map +1 -1
  15. package/dist/src/component.d.ts +89 -0
  16. package/dist/src/component.d.ts.map +1 -1
  17. package/dist/src/component.js +12 -0
  18. package/dist/src/component.js.map +1 -1
  19. package/dist/src/container/card/index.d.ts +178 -0
  20. package/dist/src/container/card/index.d.ts.map +1 -1
  21. package/dist/src/disclosure/accordion/index.d.ts +356 -0
  22. package/dist/src/disclosure/accordion/index.d.ts.map +1 -1
  23. package/dist/src/disclosure/carousel/index.d.ts +178 -0
  24. package/dist/src/disclosure/carousel/index.d.ts.map +1 -1
  25. package/dist/src/disclosure/tabs/index.d.ts +356 -0
  26. package/dist/src/disclosure/tabs/index.d.ts.map +1 -1
  27. package/dist/src/forms/field/index.d.ts +178 -0
  28. package/dist/src/forms/field/index.d.ts.map +1 -1
  29. package/dist/src/index.d.ts +1 -1
  30. package/dist/src/index.d.ts.map +1 -1
  31. package/dist/src/index.js +1 -1
  32. package/dist/src/index.js.map +1 -1
  33. package/dist/src/layout/box/index.d.ts +178 -0
  34. package/dist/src/layout/box/index.d.ts.map +1 -1
  35. package/dist/src/layout/grid/index.d.ts +356 -0
  36. package/dist/src/layout/grid/index.d.ts.map +1 -1
  37. package/dist/src/layout/splitter/index.d.ts +356 -0
  38. package/dist/src/layout/splitter/index.d.ts.map +1 -1
  39. package/dist/src/layout/stack/index.d.ts +178 -0
  40. package/dist/src/layout/stack/index.d.ts.map +1 -1
  41. package/dist/src/overlays/dialog/index.d.ts +356 -0
  42. package/dist/src/overlays/dialog/index.d.ts.map +1 -1
  43. package/dist/src/overlays/drawer/index.d.ts +356 -0
  44. package/dist/src/overlays/drawer/index.d.ts.map +1 -1
  45. package/dist/src/overlays/hover-card/index.d.ts +356 -0
  46. package/dist/src/overlays/hover-card/index.d.ts.map +1 -1
  47. package/dist/src/overlays/menu/index.d.ts +178 -0
  48. package/dist/src/overlays/menu/index.d.ts.map +1 -1
  49. package/dist/src/overlays/popover/index.d.ts +356 -0
  50. package/dist/src/overlays/popover/index.d.ts.map +1 -1
  51. package/dist/src/overlays/toggle-tip/index.d.ts +178 -0
  52. package/dist/src/overlays/toggle-tip/index.d.ts.map +1 -1
  53. package/dist/src/overlays/tooltip/index.d.ts +178 -0
  54. package/dist/src/overlays/tooltip/index.d.ts.map +1 -1
  55. package/package.json +1 -1
@@ -3117,6 +3117,95 @@ export declare const StackType: StructType<{
3117
3117
  }>>;
3118
3118
  }>>;
3119
3119
  }>;
3120
+ Gantt: StructType<{
3121
+ rows: ArrayType<StructType<{
3122
+ cells: import("@elaraai/east").DictType<import("@elaraai/east").StringType, StructType<{
3123
+ value: import("@elaraai/east").VariantType<{
3124
+ Boolean: import("@elaraai/east").BooleanType;
3125
+ Integer: import("@elaraai/east").IntegerType;
3126
+ Float: import("@elaraai/east").FloatType;
3127
+ String: import("@elaraai/east").StringType;
3128
+ DateTime: import("@elaraai/east").DateTimeType;
3129
+ }>;
3130
+ content: import("@elaraai/east").RecursiveTypeMarker;
3131
+ }>>;
3132
+ events: ArrayType<import("@elaraai/east").VariantType<{
3133
+ Task: StructType<{
3134
+ start: import("@elaraai/east").DateTimeType;
3135
+ end: import("@elaraai/east").DateTimeType;
3136
+ label: OptionType<import("@elaraai/east").StringType>;
3137
+ progress: OptionType<import("@elaraai/east").FloatType>;
3138
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
3139
+ gray: import("@elaraai/east").NullType;
3140
+ red: import("@elaraai/east").NullType;
3141
+ orange: import("@elaraai/east").NullType;
3142
+ yellow: import("@elaraai/east").NullType;
3143
+ green: import("@elaraai/east").NullType;
3144
+ teal: import("@elaraai/east").NullType;
3145
+ blue: import("@elaraai/east").NullType;
3146
+ cyan: import("@elaraai/east").NullType;
3147
+ purple: import("@elaraai/east").NullType;
3148
+ pink: import("@elaraai/east").NullType;
3149
+ }>>;
3150
+ }>;
3151
+ Milestone: StructType<{
3152
+ date: import("@elaraai/east").DateTimeType;
3153
+ label: OptionType<import("@elaraai/east").StringType>;
3154
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
3155
+ gray: import("@elaraai/east").NullType;
3156
+ red: import("@elaraai/east").NullType;
3157
+ orange: import("@elaraai/east").NullType;
3158
+ yellow: import("@elaraai/east").NullType;
3159
+ green: import("@elaraai/east").NullType;
3160
+ teal: import("@elaraai/east").NullType;
3161
+ blue: import("@elaraai/east").NullType;
3162
+ cyan: import("@elaraai/east").NullType;
3163
+ purple: import("@elaraai/east").NullType;
3164
+ pink: import("@elaraai/east").NullType;
3165
+ }>>;
3166
+ }>;
3167
+ }>>;
3168
+ }>>;
3169
+ columns: ArrayType<StructType<{
3170
+ key: import("@elaraai/east").StringType;
3171
+ type: import("@elaraai/east").VariantType<{
3172
+ Boolean: import("@elaraai/east").NullType;
3173
+ Integer: import("@elaraai/east").NullType;
3174
+ Float: import("@elaraai/east").NullType;
3175
+ String: import("@elaraai/east").NullType;
3176
+ DateTime: import("@elaraai/east").NullType;
3177
+ }>;
3178
+ header: OptionType<import("@elaraai/east").StringType>;
3179
+ }>>;
3180
+ style: OptionType<StructType<{
3181
+ variant: OptionType<import("@elaraai/east").VariantType<{
3182
+ line: import("@elaraai/east").NullType;
3183
+ outline: import("@elaraai/east").NullType;
3184
+ }>>;
3185
+ size: OptionType<import("@elaraai/east").VariantType<{
3186
+ sm: import("@elaraai/east").NullType;
3187
+ md: import("@elaraai/east").NullType;
3188
+ lg: import("@elaraai/east").NullType;
3189
+ }>>;
3190
+ striped: OptionType<import("@elaraai/east").BooleanType>;
3191
+ interactive: OptionType<import("@elaraai/east").BooleanType>;
3192
+ stickyHeader: OptionType<import("@elaraai/east").BooleanType>;
3193
+ showColumnBorder: OptionType<import("@elaraai/east").BooleanType>;
3194
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
3195
+ gray: import("@elaraai/east").NullType;
3196
+ red: import("@elaraai/east").NullType;
3197
+ orange: import("@elaraai/east").NullType;
3198
+ yellow: import("@elaraai/east").NullType;
3199
+ green: import("@elaraai/east").NullType;
3200
+ teal: import("@elaraai/east").NullType;
3201
+ blue: import("@elaraai/east").NullType;
3202
+ cyan: import("@elaraai/east").NullType;
3203
+ purple: import("@elaraai/east").NullType;
3204
+ pink: import("@elaraai/east").NullType;
3205
+ }>>;
3206
+ showToday: OptionType<import("@elaraai/east").BooleanType>;
3207
+ }>>;
3208
+ }>;
3120
3209
  Accordion: StructType<{
3121
3210
  items: ArrayType<StructType<{
3122
3211
  value: import("@elaraai/east").StringType;
@@ -6632,6 +6721,95 @@ export declare const Stack: {
6632
6721
  }>>;
6633
6722
  }>>;
6634
6723
  }>;
6724
+ Gantt: StructType<{
6725
+ rows: ArrayType<StructType<{
6726
+ cells: import("@elaraai/east").DictType<import("@elaraai/east").StringType, StructType<{
6727
+ value: import("@elaraai/east").VariantType<{
6728
+ Boolean: import("@elaraai/east").BooleanType;
6729
+ Integer: import("@elaraai/east").IntegerType;
6730
+ Float: import("@elaraai/east").FloatType;
6731
+ String: import("@elaraai/east").StringType;
6732
+ DateTime: import("@elaraai/east").DateTimeType;
6733
+ }>;
6734
+ content: import("@elaraai/east").RecursiveTypeMarker;
6735
+ }>>;
6736
+ events: ArrayType<import("@elaraai/east").VariantType<{
6737
+ Task: StructType<{
6738
+ start: import("@elaraai/east").DateTimeType;
6739
+ end: import("@elaraai/east").DateTimeType;
6740
+ label: OptionType<import("@elaraai/east").StringType>;
6741
+ progress: OptionType<import("@elaraai/east").FloatType>;
6742
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
6743
+ gray: import("@elaraai/east").NullType;
6744
+ red: import("@elaraai/east").NullType;
6745
+ orange: import("@elaraai/east").NullType;
6746
+ yellow: import("@elaraai/east").NullType;
6747
+ green: import("@elaraai/east").NullType;
6748
+ teal: import("@elaraai/east").NullType;
6749
+ blue: import("@elaraai/east").NullType;
6750
+ cyan: import("@elaraai/east").NullType;
6751
+ purple: import("@elaraai/east").NullType;
6752
+ pink: import("@elaraai/east").NullType;
6753
+ }>>;
6754
+ }>;
6755
+ Milestone: StructType<{
6756
+ date: import("@elaraai/east").DateTimeType;
6757
+ label: OptionType<import("@elaraai/east").StringType>;
6758
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
6759
+ gray: import("@elaraai/east").NullType;
6760
+ red: import("@elaraai/east").NullType;
6761
+ orange: import("@elaraai/east").NullType;
6762
+ yellow: import("@elaraai/east").NullType;
6763
+ green: import("@elaraai/east").NullType;
6764
+ teal: import("@elaraai/east").NullType;
6765
+ blue: import("@elaraai/east").NullType;
6766
+ cyan: import("@elaraai/east").NullType;
6767
+ purple: import("@elaraai/east").NullType;
6768
+ pink: import("@elaraai/east").NullType;
6769
+ }>>;
6770
+ }>;
6771
+ }>>;
6772
+ }>>;
6773
+ columns: ArrayType<StructType<{
6774
+ key: import("@elaraai/east").StringType;
6775
+ type: import("@elaraai/east").VariantType<{
6776
+ Boolean: import("@elaraai/east").NullType;
6777
+ Integer: import("@elaraai/east").NullType;
6778
+ Float: import("@elaraai/east").NullType;
6779
+ String: import("@elaraai/east").NullType;
6780
+ DateTime: import("@elaraai/east").NullType;
6781
+ }>;
6782
+ header: OptionType<import("@elaraai/east").StringType>;
6783
+ }>>;
6784
+ style: OptionType<StructType<{
6785
+ variant: OptionType<import("@elaraai/east").VariantType<{
6786
+ line: import("@elaraai/east").NullType;
6787
+ outline: import("@elaraai/east").NullType;
6788
+ }>>;
6789
+ size: OptionType<import("@elaraai/east").VariantType<{
6790
+ sm: import("@elaraai/east").NullType;
6791
+ md: import("@elaraai/east").NullType;
6792
+ lg: import("@elaraai/east").NullType;
6793
+ }>>;
6794
+ striped: OptionType<import("@elaraai/east").BooleanType>;
6795
+ interactive: OptionType<import("@elaraai/east").BooleanType>;
6796
+ stickyHeader: OptionType<import("@elaraai/east").BooleanType>;
6797
+ showColumnBorder: OptionType<import("@elaraai/east").BooleanType>;
6798
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
6799
+ gray: import("@elaraai/east").NullType;
6800
+ red: import("@elaraai/east").NullType;
6801
+ orange: import("@elaraai/east").NullType;
6802
+ yellow: import("@elaraai/east").NullType;
6803
+ green: import("@elaraai/east").NullType;
6804
+ teal: import("@elaraai/east").NullType;
6805
+ blue: import("@elaraai/east").NullType;
6806
+ cyan: import("@elaraai/east").NullType;
6807
+ purple: import("@elaraai/east").NullType;
6808
+ pink: import("@elaraai/east").NullType;
6809
+ }>>;
6810
+ showToday: OptionType<import("@elaraai/east").BooleanType>;
6811
+ }>>;
6812
+ }>;
6635
6813
  Accordion: StructType<{
6636
6814
  items: ArrayType<StructType<{
6637
6815
  value: import("@elaraai/east").StringType;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/layout/stack/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACH,KAAK,QAAQ,EAEb,UAAU,EACV,UAAU,EACV,SAAS,EAET,KAAK,kBAAkB,EAE1B,MAAM,eAAe,CAAC;AAQvB,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAkB,KAAK,UAAU,EAAE,MAAM,YAAY,CAAC;AAC7D,OAAO,EAAE,OAAO,EAAe,MAAM,EAAc,MAAM,aAAa,CAAC;AAGvE,OAAO,EAAE,cAAc,EAAE,KAAK,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7D;;;;;;;;;GASG;AACH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGpB,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,OAAO,SAAS,CAAC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,iBAAS,WAAW,CAChB,QAAQ,EAAE,kBAAkB,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC,EACxD,KAAK,CAAC,EAAE,UAAU,GACnB,QAAQ,CAAC,eAAe,CAAC,CA8D3B;AAED;;;;;;;;;;;;;;GAcG;AACH,iBAAS,YAAY,CACjB,QAAQ,EAAE,kBAAkB,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC,EACxD,KAAK,CAAC,EAAE,IAAI,CAAC,UAAU,EAAE,WAAW,CAAC,GACtC,QAAQ,CAAC,eAAe,CAAC,CAK3B;AAED;;;;;;;;;;;;;;GAcG;AACH,iBAAS,YAAY,CACjB,QAAQ,EAAE,kBAAkB,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC,EACxD,KAAK,CAAC,EAAE,IAAI,CAAC,UAAU,EAAE,WAAW,CAAC,GACtC,QAAQ,CAAC,eAAe,CAAC,CAK3B;AAED;;;;;GAKG;AACH,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYR,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/layout/stack/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACH,KAAK,QAAQ,EAEb,UAAU,EACV,UAAU,EACV,SAAS,EAET,KAAK,kBAAkB,EAE1B,MAAM,eAAe,CAAC;AAQvB,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAkB,KAAK,UAAU,EAAE,MAAM,YAAY,CAAC;AAC7D,OAAO,EAAE,OAAO,EAAe,MAAM,EAAc,MAAM,aAAa,CAAC;AAGvE,OAAO,EAAE,cAAc,EAAE,KAAK,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7D;;;;;;;;;GASG;AACH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGpB,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,OAAO,SAAS,CAAC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,iBAAS,WAAW,CAChB,QAAQ,EAAE,kBAAkB,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC,EACxD,KAAK,CAAC,EAAE,UAAU,GACnB,QAAQ,CAAC,eAAe,CAAC,CA8D3B;AAED;;;;;;;;;;;;;;GAcG;AACH,iBAAS,YAAY,CACjB,QAAQ,EAAE,kBAAkB,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC,EACxD,KAAK,CAAC,EAAE,IAAI,CAAC,UAAU,EAAE,WAAW,CAAC,GACtC,QAAQ,CAAC,eAAe,CAAC,CAK3B;AAED;;;;;;;;;;;;;;GAcG;AACH,iBAAS,YAAY,CACjB,QAAQ,EAAE,kBAAkB,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC,EACxD,KAAK,CAAC,EAAE,IAAI,CAAC,UAAU,EAAE,WAAW,CAAC,GACtC,QAAQ,CAAC,eAAe,CAAC,CAK3B;AAED;;;;;GAKG;AACH,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYR,CAAC"}
@@ -3120,6 +3120,95 @@ export declare const DialogType: StructType<{
3120
3120
  }>>;
3121
3121
  }>>;
3122
3122
  }>;
3123
+ Gantt: StructType<{
3124
+ rows: ArrayType<StructType<{
3125
+ cells: import("@elaraai/east").DictType<StringType, StructType<{
3126
+ value: import("@elaraai/east").VariantType<{
3127
+ Boolean: import("@elaraai/east").BooleanType;
3128
+ Integer: import("@elaraai/east").IntegerType;
3129
+ Float: import("@elaraai/east").FloatType;
3130
+ String: StringType;
3131
+ DateTime: import("@elaraai/east").DateTimeType;
3132
+ }>;
3133
+ content: import("@elaraai/east").RecursiveTypeMarker;
3134
+ }>>;
3135
+ events: ArrayType<import("@elaraai/east").VariantType<{
3136
+ Task: StructType<{
3137
+ start: import("@elaraai/east").DateTimeType;
3138
+ end: import("@elaraai/east").DateTimeType;
3139
+ label: OptionType<StringType>;
3140
+ progress: OptionType<import("@elaraai/east").FloatType>;
3141
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
3142
+ gray: import("@elaraai/east").NullType;
3143
+ red: import("@elaraai/east").NullType;
3144
+ orange: import("@elaraai/east").NullType;
3145
+ yellow: import("@elaraai/east").NullType;
3146
+ green: import("@elaraai/east").NullType;
3147
+ teal: import("@elaraai/east").NullType;
3148
+ blue: import("@elaraai/east").NullType;
3149
+ cyan: import("@elaraai/east").NullType;
3150
+ purple: import("@elaraai/east").NullType;
3151
+ pink: import("@elaraai/east").NullType;
3152
+ }>>;
3153
+ }>;
3154
+ Milestone: StructType<{
3155
+ date: import("@elaraai/east").DateTimeType;
3156
+ label: OptionType<StringType>;
3157
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
3158
+ gray: import("@elaraai/east").NullType;
3159
+ red: import("@elaraai/east").NullType;
3160
+ orange: import("@elaraai/east").NullType;
3161
+ yellow: import("@elaraai/east").NullType;
3162
+ green: import("@elaraai/east").NullType;
3163
+ teal: import("@elaraai/east").NullType;
3164
+ blue: import("@elaraai/east").NullType;
3165
+ cyan: import("@elaraai/east").NullType;
3166
+ purple: import("@elaraai/east").NullType;
3167
+ pink: import("@elaraai/east").NullType;
3168
+ }>>;
3169
+ }>;
3170
+ }>>;
3171
+ }>>;
3172
+ columns: ArrayType<StructType<{
3173
+ key: StringType;
3174
+ type: import("@elaraai/east").VariantType<{
3175
+ Boolean: import("@elaraai/east").NullType;
3176
+ Integer: import("@elaraai/east").NullType;
3177
+ Float: import("@elaraai/east").NullType;
3178
+ String: import("@elaraai/east").NullType;
3179
+ DateTime: import("@elaraai/east").NullType;
3180
+ }>;
3181
+ header: OptionType<StringType>;
3182
+ }>>;
3183
+ style: OptionType<StructType<{
3184
+ variant: OptionType<import("@elaraai/east").VariantType<{
3185
+ line: import("@elaraai/east").NullType;
3186
+ outline: import("@elaraai/east").NullType;
3187
+ }>>;
3188
+ size: OptionType<import("@elaraai/east").VariantType<{
3189
+ sm: import("@elaraai/east").NullType;
3190
+ md: import("@elaraai/east").NullType;
3191
+ lg: import("@elaraai/east").NullType;
3192
+ }>>;
3193
+ striped: OptionType<import("@elaraai/east").BooleanType>;
3194
+ interactive: OptionType<import("@elaraai/east").BooleanType>;
3195
+ stickyHeader: OptionType<import("@elaraai/east").BooleanType>;
3196
+ showColumnBorder: OptionType<import("@elaraai/east").BooleanType>;
3197
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
3198
+ gray: import("@elaraai/east").NullType;
3199
+ red: import("@elaraai/east").NullType;
3200
+ orange: import("@elaraai/east").NullType;
3201
+ yellow: import("@elaraai/east").NullType;
3202
+ green: import("@elaraai/east").NullType;
3203
+ teal: import("@elaraai/east").NullType;
3204
+ blue: import("@elaraai/east").NullType;
3205
+ cyan: import("@elaraai/east").NullType;
3206
+ purple: import("@elaraai/east").NullType;
3207
+ pink: import("@elaraai/east").NullType;
3208
+ }>>;
3209
+ showToday: OptionType<import("@elaraai/east").BooleanType>;
3210
+ }>>;
3211
+ }>;
3123
3212
  Accordion: StructType<{
3124
3213
  items: ArrayType<StructType<{
3125
3214
  value: StringType;
@@ -6507,6 +6596,95 @@ export declare const DialogType: StructType<{
6507
6596
  }>>;
6508
6597
  }>>;
6509
6598
  }>;
6599
+ Gantt: StructType<{
6600
+ rows: ArrayType<StructType<{
6601
+ cells: import("@elaraai/east").DictType<StringType, StructType<{
6602
+ value: import("@elaraai/east").VariantType<{
6603
+ Boolean: import("@elaraai/east").BooleanType;
6604
+ Integer: import("@elaraai/east").IntegerType;
6605
+ Float: import("@elaraai/east").FloatType;
6606
+ String: StringType;
6607
+ DateTime: import("@elaraai/east").DateTimeType;
6608
+ }>;
6609
+ content: import("@elaraai/east").RecursiveTypeMarker;
6610
+ }>>;
6611
+ events: ArrayType<import("@elaraai/east").VariantType<{
6612
+ Task: StructType<{
6613
+ start: import("@elaraai/east").DateTimeType;
6614
+ end: import("@elaraai/east").DateTimeType;
6615
+ label: OptionType<StringType>;
6616
+ progress: OptionType<import("@elaraai/east").FloatType>;
6617
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
6618
+ gray: import("@elaraai/east").NullType;
6619
+ red: import("@elaraai/east").NullType;
6620
+ orange: import("@elaraai/east").NullType;
6621
+ yellow: import("@elaraai/east").NullType;
6622
+ green: import("@elaraai/east").NullType;
6623
+ teal: import("@elaraai/east").NullType;
6624
+ blue: import("@elaraai/east").NullType;
6625
+ cyan: import("@elaraai/east").NullType;
6626
+ purple: import("@elaraai/east").NullType;
6627
+ pink: import("@elaraai/east").NullType;
6628
+ }>>;
6629
+ }>;
6630
+ Milestone: StructType<{
6631
+ date: import("@elaraai/east").DateTimeType;
6632
+ label: OptionType<StringType>;
6633
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
6634
+ gray: import("@elaraai/east").NullType;
6635
+ red: import("@elaraai/east").NullType;
6636
+ orange: import("@elaraai/east").NullType;
6637
+ yellow: import("@elaraai/east").NullType;
6638
+ green: import("@elaraai/east").NullType;
6639
+ teal: import("@elaraai/east").NullType;
6640
+ blue: import("@elaraai/east").NullType;
6641
+ cyan: import("@elaraai/east").NullType;
6642
+ purple: import("@elaraai/east").NullType;
6643
+ pink: import("@elaraai/east").NullType;
6644
+ }>>;
6645
+ }>;
6646
+ }>>;
6647
+ }>>;
6648
+ columns: ArrayType<StructType<{
6649
+ key: StringType;
6650
+ type: import("@elaraai/east").VariantType<{
6651
+ Boolean: import("@elaraai/east").NullType;
6652
+ Integer: import("@elaraai/east").NullType;
6653
+ Float: import("@elaraai/east").NullType;
6654
+ String: import("@elaraai/east").NullType;
6655
+ DateTime: import("@elaraai/east").NullType;
6656
+ }>;
6657
+ header: OptionType<StringType>;
6658
+ }>>;
6659
+ style: OptionType<StructType<{
6660
+ variant: OptionType<import("@elaraai/east").VariantType<{
6661
+ line: import("@elaraai/east").NullType;
6662
+ outline: import("@elaraai/east").NullType;
6663
+ }>>;
6664
+ size: OptionType<import("@elaraai/east").VariantType<{
6665
+ sm: import("@elaraai/east").NullType;
6666
+ md: import("@elaraai/east").NullType;
6667
+ lg: import("@elaraai/east").NullType;
6668
+ }>>;
6669
+ striped: OptionType<import("@elaraai/east").BooleanType>;
6670
+ interactive: OptionType<import("@elaraai/east").BooleanType>;
6671
+ stickyHeader: OptionType<import("@elaraai/east").BooleanType>;
6672
+ showColumnBorder: OptionType<import("@elaraai/east").BooleanType>;
6673
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
6674
+ gray: import("@elaraai/east").NullType;
6675
+ red: import("@elaraai/east").NullType;
6676
+ orange: import("@elaraai/east").NullType;
6677
+ yellow: import("@elaraai/east").NullType;
6678
+ green: import("@elaraai/east").NullType;
6679
+ teal: import("@elaraai/east").NullType;
6680
+ blue: import("@elaraai/east").NullType;
6681
+ cyan: import("@elaraai/east").NullType;
6682
+ purple: import("@elaraai/east").NullType;
6683
+ pink: import("@elaraai/east").NullType;
6684
+ }>>;
6685
+ showToday: OptionType<import("@elaraai/east").BooleanType>;
6686
+ }>>;
6687
+ }>;
6510
6688
  Accordion: StructType<{
6511
6689
  items: ArrayType<StructType<{
6512
6690
  value: StringType;
@@ -9995,6 +10173,95 @@ export declare const Dialog: {
9995
10173
  }>>;
9996
10174
  }>>;
9997
10175
  }>;
10176
+ Gantt: StructType<{
10177
+ rows: ArrayType<StructType<{
10178
+ cells: import("@elaraai/east").DictType<StringType, StructType<{
10179
+ value: import("@elaraai/east").VariantType<{
10180
+ Boolean: import("@elaraai/east").BooleanType;
10181
+ Integer: import("@elaraai/east").IntegerType;
10182
+ Float: import("@elaraai/east").FloatType;
10183
+ String: StringType;
10184
+ DateTime: import("@elaraai/east").DateTimeType;
10185
+ }>;
10186
+ content: import("@elaraai/east").RecursiveTypeMarker;
10187
+ }>>;
10188
+ events: ArrayType<import("@elaraai/east").VariantType<{
10189
+ Task: StructType<{
10190
+ start: import("@elaraai/east").DateTimeType;
10191
+ end: import("@elaraai/east").DateTimeType;
10192
+ label: OptionType<StringType>;
10193
+ progress: OptionType<import("@elaraai/east").FloatType>;
10194
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
10195
+ gray: import("@elaraai/east").NullType;
10196
+ red: import("@elaraai/east").NullType;
10197
+ orange: import("@elaraai/east").NullType;
10198
+ yellow: import("@elaraai/east").NullType;
10199
+ green: import("@elaraai/east").NullType;
10200
+ teal: import("@elaraai/east").NullType;
10201
+ blue: import("@elaraai/east").NullType;
10202
+ cyan: import("@elaraai/east").NullType;
10203
+ purple: import("@elaraai/east").NullType;
10204
+ pink: import("@elaraai/east").NullType;
10205
+ }>>;
10206
+ }>;
10207
+ Milestone: StructType<{
10208
+ date: import("@elaraai/east").DateTimeType;
10209
+ label: OptionType<StringType>;
10210
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
10211
+ gray: import("@elaraai/east").NullType;
10212
+ red: import("@elaraai/east").NullType;
10213
+ orange: import("@elaraai/east").NullType;
10214
+ yellow: import("@elaraai/east").NullType;
10215
+ green: import("@elaraai/east").NullType;
10216
+ teal: import("@elaraai/east").NullType;
10217
+ blue: import("@elaraai/east").NullType;
10218
+ cyan: import("@elaraai/east").NullType;
10219
+ purple: import("@elaraai/east").NullType;
10220
+ pink: import("@elaraai/east").NullType;
10221
+ }>>;
10222
+ }>;
10223
+ }>>;
10224
+ }>>;
10225
+ columns: ArrayType<StructType<{
10226
+ key: StringType;
10227
+ type: import("@elaraai/east").VariantType<{
10228
+ Boolean: import("@elaraai/east").NullType;
10229
+ Integer: import("@elaraai/east").NullType;
10230
+ Float: import("@elaraai/east").NullType;
10231
+ String: import("@elaraai/east").NullType;
10232
+ DateTime: import("@elaraai/east").NullType;
10233
+ }>;
10234
+ header: OptionType<StringType>;
10235
+ }>>;
10236
+ style: OptionType<StructType<{
10237
+ variant: OptionType<import("@elaraai/east").VariantType<{
10238
+ line: import("@elaraai/east").NullType;
10239
+ outline: import("@elaraai/east").NullType;
10240
+ }>>;
10241
+ size: OptionType<import("@elaraai/east").VariantType<{
10242
+ sm: import("@elaraai/east").NullType;
10243
+ md: import("@elaraai/east").NullType;
10244
+ lg: import("@elaraai/east").NullType;
10245
+ }>>;
10246
+ striped: OptionType<import("@elaraai/east").BooleanType>;
10247
+ interactive: OptionType<import("@elaraai/east").BooleanType>;
10248
+ stickyHeader: OptionType<import("@elaraai/east").BooleanType>;
10249
+ showColumnBorder: OptionType<import("@elaraai/east").BooleanType>;
10250
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
10251
+ gray: import("@elaraai/east").NullType;
10252
+ red: import("@elaraai/east").NullType;
10253
+ orange: import("@elaraai/east").NullType;
10254
+ yellow: import("@elaraai/east").NullType;
10255
+ green: import("@elaraai/east").NullType;
10256
+ teal: import("@elaraai/east").NullType;
10257
+ blue: import("@elaraai/east").NullType;
10258
+ cyan: import("@elaraai/east").NullType;
10259
+ purple: import("@elaraai/east").NullType;
10260
+ pink: import("@elaraai/east").NullType;
10261
+ }>>;
10262
+ showToday: OptionType<import("@elaraai/east").BooleanType>;
10263
+ }>>;
10264
+ }>;
9998
10265
  Accordion: StructType<{
9999
10266
  items: ArrayType<StructType<{
10000
10267
  value: StringType;
@@ -13382,6 +13649,95 @@ export declare const Dialog: {
13382
13649
  }>>;
13383
13650
  }>>;
13384
13651
  }>;
13652
+ Gantt: StructType<{
13653
+ rows: ArrayType<StructType<{
13654
+ cells: import("@elaraai/east").DictType<StringType, StructType<{
13655
+ value: import("@elaraai/east").VariantType<{
13656
+ Boolean: import("@elaraai/east").BooleanType;
13657
+ Integer: import("@elaraai/east").IntegerType;
13658
+ Float: import("@elaraai/east").FloatType;
13659
+ String: StringType;
13660
+ DateTime: import("@elaraai/east").DateTimeType;
13661
+ }>;
13662
+ content: import("@elaraai/east").RecursiveTypeMarker;
13663
+ }>>;
13664
+ events: ArrayType<import("@elaraai/east").VariantType<{
13665
+ Task: StructType<{
13666
+ start: import("@elaraai/east").DateTimeType;
13667
+ end: import("@elaraai/east").DateTimeType;
13668
+ label: OptionType<StringType>;
13669
+ progress: OptionType<import("@elaraai/east").FloatType>;
13670
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
13671
+ gray: import("@elaraai/east").NullType;
13672
+ red: import("@elaraai/east").NullType;
13673
+ orange: import("@elaraai/east").NullType;
13674
+ yellow: import("@elaraai/east").NullType;
13675
+ green: import("@elaraai/east").NullType;
13676
+ teal: import("@elaraai/east").NullType;
13677
+ blue: import("@elaraai/east").NullType;
13678
+ cyan: import("@elaraai/east").NullType;
13679
+ purple: import("@elaraai/east").NullType;
13680
+ pink: import("@elaraai/east").NullType;
13681
+ }>>;
13682
+ }>;
13683
+ Milestone: StructType<{
13684
+ date: import("@elaraai/east").DateTimeType;
13685
+ label: OptionType<StringType>;
13686
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
13687
+ gray: import("@elaraai/east").NullType;
13688
+ red: import("@elaraai/east").NullType;
13689
+ orange: import("@elaraai/east").NullType;
13690
+ yellow: import("@elaraai/east").NullType;
13691
+ green: import("@elaraai/east").NullType;
13692
+ teal: import("@elaraai/east").NullType;
13693
+ blue: import("@elaraai/east").NullType;
13694
+ cyan: import("@elaraai/east").NullType;
13695
+ purple: import("@elaraai/east").NullType;
13696
+ pink: import("@elaraai/east").NullType;
13697
+ }>>;
13698
+ }>;
13699
+ }>>;
13700
+ }>>;
13701
+ columns: ArrayType<StructType<{
13702
+ key: StringType;
13703
+ type: import("@elaraai/east").VariantType<{
13704
+ Boolean: import("@elaraai/east").NullType;
13705
+ Integer: import("@elaraai/east").NullType;
13706
+ Float: import("@elaraai/east").NullType;
13707
+ String: import("@elaraai/east").NullType;
13708
+ DateTime: import("@elaraai/east").NullType;
13709
+ }>;
13710
+ header: OptionType<StringType>;
13711
+ }>>;
13712
+ style: OptionType<StructType<{
13713
+ variant: OptionType<import("@elaraai/east").VariantType<{
13714
+ line: import("@elaraai/east").NullType;
13715
+ outline: import("@elaraai/east").NullType;
13716
+ }>>;
13717
+ size: OptionType<import("@elaraai/east").VariantType<{
13718
+ sm: import("@elaraai/east").NullType;
13719
+ md: import("@elaraai/east").NullType;
13720
+ lg: import("@elaraai/east").NullType;
13721
+ }>>;
13722
+ striped: OptionType<import("@elaraai/east").BooleanType>;
13723
+ interactive: OptionType<import("@elaraai/east").BooleanType>;
13724
+ stickyHeader: OptionType<import("@elaraai/east").BooleanType>;
13725
+ showColumnBorder: OptionType<import("@elaraai/east").BooleanType>;
13726
+ colorPalette: OptionType<import("@elaraai/east").VariantType<{
13727
+ gray: import("@elaraai/east").NullType;
13728
+ red: import("@elaraai/east").NullType;
13729
+ orange: import("@elaraai/east").NullType;
13730
+ yellow: import("@elaraai/east").NullType;
13731
+ green: import("@elaraai/east").NullType;
13732
+ teal: import("@elaraai/east").NullType;
13733
+ blue: import("@elaraai/east").NullType;
13734
+ cyan: import("@elaraai/east").NullType;
13735
+ purple: import("@elaraai/east").NullType;
13736
+ pink: import("@elaraai/east").NullType;
13737
+ }>>;
13738
+ showToday: OptionType<import("@elaraai/east").BooleanType>;
13739
+ }>>;
13740
+ }>;
13385
13741
  Accordion: StructType<{
13386
13742
  items: ArrayType<StructType<{
13387
13743
  value: StringType;