@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.
- package/README.md +106 -0
- package/dist/src/collections/gantt/index.d.ts +17950 -0
- package/dist/src/collections/gantt/index.d.ts.map +1 -0
- package/dist/src/collections/gantt/index.js +295 -0
- package/dist/src/collections/gantt/index.js.map +1 -0
- package/dist/src/collections/gantt/types.d.ts +195 -0
- package/dist/src/collections/gantt/types.d.ts.map +1 -0
- package/dist/src/collections/gantt/types.js +90 -0
- package/dist/src/collections/gantt/types.js.map +1 -0
- package/dist/src/collections/index.d.ts +1 -0
- package/dist/src/collections/index.d.ts.map +1 -1
- package/dist/src/collections/index.js +1 -0
- package/dist/src/collections/index.js.map +1 -1
- package/dist/src/collections/table/index.d.ts +7476 -207
- package/dist/src/collections/table/index.d.ts.map +1 -1
- package/dist/src/collections/table/index.js +54 -20
- package/dist/src/collections/table/index.js.map +1 -1
- package/dist/src/collections/table/types.d.ts +33 -1
- package/dist/src/collections/table/types.d.ts.map +1 -1
- package/dist/src/collections/table/types.js +23 -1
- package/dist/src/collections/table/types.js.map +1 -1
- package/dist/src/component.d.ts +123 -1
- package/dist/src/component.d.ts.map +1 -1
- package/dist/src/component.js +18 -3
- package/dist/src/component.js.map +1 -1
- package/dist/src/container/card/index.d.ts +246 -2
- package/dist/src/container/card/index.d.ts.map +1 -1
- package/dist/src/disclosure/accordion/index.d.ts +492 -4
- package/dist/src/disclosure/accordion/index.d.ts.map +1 -1
- package/dist/src/disclosure/carousel/index.d.ts +246 -2
- package/dist/src/disclosure/carousel/index.d.ts.map +1 -1
- package/dist/src/disclosure/tabs/index.d.ts +492 -4
- package/dist/src/disclosure/tabs/index.d.ts.map +1 -1
- package/dist/src/forms/field/index.d.ts +246 -2
- package/dist/src/forms/field/index.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/layout/box/index.d.ts +246 -2
- package/dist/src/layout/box/index.d.ts.map +1 -1
- package/dist/src/layout/grid/index.d.ts +492 -4
- package/dist/src/layout/grid/index.d.ts.map +1 -1
- package/dist/src/layout/splitter/index.d.ts +492 -4
- package/dist/src/layout/splitter/index.d.ts.map +1 -1
- package/dist/src/layout/stack/index.d.ts +246 -2
- package/dist/src/layout/stack/index.d.ts.map +1 -1
- package/dist/src/overlays/dialog/index.d.ts +492 -4
- package/dist/src/overlays/dialog/index.d.ts.map +1 -1
- package/dist/src/overlays/drawer/index.d.ts +492 -4
- package/dist/src/overlays/drawer/index.d.ts.map +1 -1
- package/dist/src/overlays/hover-card/index.d.ts +492 -4
- package/dist/src/overlays/hover-card/index.d.ts.map +1 -1
- package/dist/src/overlays/menu/index.d.ts +246 -2
- package/dist/src/overlays/menu/index.d.ts.map +1 -1
- package/dist/src/overlays/popover/index.d.ts +492 -4
- package/dist/src/overlays/popover/index.d.ts.map +1 -1
- package/dist/src/overlays/toggle-tip/index.d.ts +246 -2
- package/dist/src/overlays/toggle-tip/index.d.ts.map +1 -1
- package/dist/src/overlays/tooltip/index.d.ts +246 -2
- package/dist/src/overlays/tooltip/index.d.ts.map +1 -1
- package/dist/src/style.d.ts +118 -0
- package/dist/src/style.d.ts.map +1 -1
- package/dist/src/style.js +109 -0
- package/dist/src/style.js.map +1 -1
- package/dist/src/typography/index.d.ts +17 -0
- package/dist/src/typography/index.d.ts.map +1 -1
- package/dist/src/typography/index.js +19 -1
- package/dist/src/typography/index.js.map +1 -1
- package/dist/src/typography/types.d.ts +26 -3
- package/dist/src/typography/types.d.ts.map +1 -1
- package/dist/src/typography/types.js +4 -1
- package/dist/src/typography/types.js.map +1 -1
- package/package.json +2 -2
|
@@ -52,6 +52,23 @@ export declare const BoxType: StructType<{
|
|
|
52
52
|
right: import("@elaraai/east").NullType;
|
|
53
53
|
justify: import("@elaraai/east").NullType;
|
|
54
54
|
}>>;
|
|
55
|
+
textOverflow: OptionType<import("@elaraai/east").VariantType<{
|
|
56
|
+
clip: import("@elaraai/east").NullType;
|
|
57
|
+
ellipsis: import("@elaraai/east").NullType;
|
|
58
|
+
}>>;
|
|
59
|
+
whiteSpace: OptionType<import("@elaraai/east").VariantType<{
|
|
60
|
+
normal: import("@elaraai/east").NullType;
|
|
61
|
+
nowrap: import("@elaraai/east").NullType;
|
|
62
|
+
pre: import("@elaraai/east").NullType;
|
|
63
|
+
"pre-wrap": import("@elaraai/east").NullType;
|
|
64
|
+
"pre-line": import("@elaraai/east").NullType;
|
|
65
|
+
}>>;
|
|
66
|
+
overflow: OptionType<import("@elaraai/east").VariantType<{
|
|
67
|
+
visible: import("@elaraai/east").NullType;
|
|
68
|
+
hidden: import("@elaraai/east").NullType;
|
|
69
|
+
scroll: import("@elaraai/east").NullType;
|
|
70
|
+
auto: import("@elaraai/east").NullType;
|
|
71
|
+
}>>;
|
|
55
72
|
borderWidth: OptionType<import("@elaraai/east").VariantType<{
|
|
56
73
|
none: import("@elaraai/east").NullType;
|
|
57
74
|
thin: import("@elaraai/east").NullType;
|
|
@@ -3051,9 +3068,113 @@ export declare const BoxType: StructType<{
|
|
|
3051
3068
|
}>>;
|
|
3052
3069
|
}>;
|
|
3053
3070
|
Table: StructType<{
|
|
3054
|
-
rows: ArrayType<import("@elaraai/east").DictType<import("@elaraai/east").StringType,
|
|
3071
|
+
rows: ArrayType<import("@elaraai/east").DictType<import("@elaraai/east").StringType, StructType<{
|
|
3072
|
+
value: import("@elaraai/east").VariantType<{
|
|
3073
|
+
Boolean: import("@elaraai/east").BooleanType;
|
|
3074
|
+
Integer: import("@elaraai/east").IntegerType;
|
|
3075
|
+
Float: import("@elaraai/east").FloatType;
|
|
3076
|
+
String: import("@elaraai/east").StringType;
|
|
3077
|
+
DateTime: import("@elaraai/east").DateTimeType;
|
|
3078
|
+
}>;
|
|
3079
|
+
content: import("@elaraai/east").RecursiveTypeMarker;
|
|
3080
|
+
}>>>;
|
|
3081
|
+
columns: ArrayType<StructType<{
|
|
3082
|
+
key: import("@elaraai/east").StringType;
|
|
3083
|
+
type: import("@elaraai/east").VariantType<{
|
|
3084
|
+
Boolean: import("@elaraai/east").NullType;
|
|
3085
|
+
Integer: import("@elaraai/east").NullType;
|
|
3086
|
+
Float: import("@elaraai/east").NullType;
|
|
3087
|
+
String: import("@elaraai/east").NullType;
|
|
3088
|
+
DateTime: import("@elaraai/east").NullType;
|
|
3089
|
+
}>;
|
|
3090
|
+
header: OptionType<import("@elaraai/east").StringType>;
|
|
3091
|
+
}>>;
|
|
3092
|
+
style: OptionType<StructType<{
|
|
3093
|
+
variant: OptionType<import("@elaraai/east").VariantType<{
|
|
3094
|
+
line: import("@elaraai/east").NullType;
|
|
3095
|
+
outline: import("@elaraai/east").NullType;
|
|
3096
|
+
}>>;
|
|
3097
|
+
size: OptionType<import("@elaraai/east").VariantType<{
|
|
3098
|
+
sm: import("@elaraai/east").NullType;
|
|
3099
|
+
md: import("@elaraai/east").NullType;
|
|
3100
|
+
lg: import("@elaraai/east").NullType;
|
|
3101
|
+
}>>;
|
|
3102
|
+
striped: OptionType<import("@elaraai/east").BooleanType>;
|
|
3103
|
+
interactive: OptionType<import("@elaraai/east").BooleanType>;
|
|
3104
|
+
stickyHeader: OptionType<import("@elaraai/east").BooleanType>;
|
|
3105
|
+
showColumnBorder: OptionType<import("@elaraai/east").BooleanType>;
|
|
3106
|
+
colorPalette: OptionType<import("@elaraai/east").VariantType<{
|
|
3107
|
+
gray: import("@elaraai/east").NullType;
|
|
3108
|
+
red: import("@elaraai/east").NullType;
|
|
3109
|
+
orange: import("@elaraai/east").NullType;
|
|
3110
|
+
yellow: import("@elaraai/east").NullType;
|
|
3111
|
+
green: import("@elaraai/east").NullType;
|
|
3112
|
+
teal: import("@elaraai/east").NullType;
|
|
3113
|
+
blue: import("@elaraai/east").NullType;
|
|
3114
|
+
cyan: import("@elaraai/east").NullType;
|
|
3115
|
+
purple: import("@elaraai/east").NullType;
|
|
3116
|
+
pink: import("@elaraai/east").NullType;
|
|
3117
|
+
}>>;
|
|
3118
|
+
}>>;
|
|
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
|
+
}>>;
|
|
3055
3169
|
columns: ArrayType<StructType<{
|
|
3056
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
|
+
}>;
|
|
3057
3178
|
header: OptionType<import("@elaraai/east").StringType>;
|
|
3058
3179
|
}>>;
|
|
3059
3180
|
style: OptionType<StructType<{
|
|
@@ -3082,6 +3203,7 @@ export declare const BoxType: StructType<{
|
|
|
3082
3203
|
purple: import("@elaraai/east").NullType;
|
|
3083
3204
|
pink: import("@elaraai/east").NullType;
|
|
3084
3205
|
}>>;
|
|
3206
|
+
showToday: OptionType<import("@elaraai/east").BooleanType>;
|
|
3085
3207
|
}>>;
|
|
3086
3208
|
}>;
|
|
3087
3209
|
Accordion: StructType<{
|
|
@@ -3505,6 +3627,23 @@ export declare const Box: {
|
|
|
3505
3627
|
right: import("@elaraai/east").NullType;
|
|
3506
3628
|
justify: import("@elaraai/east").NullType;
|
|
3507
3629
|
}>>;
|
|
3630
|
+
textOverflow: OptionType<import("@elaraai/east").VariantType<{
|
|
3631
|
+
clip: import("@elaraai/east").NullType;
|
|
3632
|
+
ellipsis: import("@elaraai/east").NullType;
|
|
3633
|
+
}>>;
|
|
3634
|
+
whiteSpace: OptionType<import("@elaraai/east").VariantType<{
|
|
3635
|
+
normal: import("@elaraai/east").NullType;
|
|
3636
|
+
nowrap: import("@elaraai/east").NullType;
|
|
3637
|
+
pre: import("@elaraai/east").NullType;
|
|
3638
|
+
"pre-wrap": import("@elaraai/east").NullType;
|
|
3639
|
+
"pre-line": import("@elaraai/east").NullType;
|
|
3640
|
+
}>>;
|
|
3641
|
+
overflow: OptionType<import("@elaraai/east").VariantType<{
|
|
3642
|
+
visible: import("@elaraai/east").NullType;
|
|
3643
|
+
hidden: import("@elaraai/east").NullType;
|
|
3644
|
+
scroll: import("@elaraai/east").NullType;
|
|
3645
|
+
auto: import("@elaraai/east").NullType;
|
|
3646
|
+
}>>;
|
|
3508
3647
|
borderWidth: OptionType<import("@elaraai/east").VariantType<{
|
|
3509
3648
|
none: import("@elaraai/east").NullType;
|
|
3510
3649
|
thin: import("@elaraai/east").NullType;
|
|
@@ -6504,9 +6643,113 @@ export declare const Box: {
|
|
|
6504
6643
|
}>>;
|
|
6505
6644
|
}>;
|
|
6506
6645
|
Table: StructType<{
|
|
6507
|
-
rows: ArrayType<import("@elaraai/east").DictType<import("@elaraai/east").StringType,
|
|
6646
|
+
rows: ArrayType<import("@elaraai/east").DictType<import("@elaraai/east").StringType, StructType<{
|
|
6647
|
+
value: import("@elaraai/east").VariantType<{
|
|
6648
|
+
Boolean: import("@elaraai/east").BooleanType;
|
|
6649
|
+
Integer: import("@elaraai/east").IntegerType;
|
|
6650
|
+
Float: import("@elaraai/east").FloatType;
|
|
6651
|
+
String: import("@elaraai/east").StringType;
|
|
6652
|
+
DateTime: import("@elaraai/east").DateTimeType;
|
|
6653
|
+
}>;
|
|
6654
|
+
content: import("@elaraai/east").RecursiveTypeMarker;
|
|
6655
|
+
}>>>;
|
|
6508
6656
|
columns: ArrayType<StructType<{
|
|
6509
6657
|
key: import("@elaraai/east").StringType;
|
|
6658
|
+
type: import("@elaraai/east").VariantType<{
|
|
6659
|
+
Boolean: import("@elaraai/east").NullType;
|
|
6660
|
+
Integer: import("@elaraai/east").NullType;
|
|
6661
|
+
Float: import("@elaraai/east").NullType;
|
|
6662
|
+
String: import("@elaraai/east").NullType;
|
|
6663
|
+
DateTime: import("@elaraai/east").NullType;
|
|
6664
|
+
}>;
|
|
6665
|
+
header: OptionType<import("@elaraai/east").StringType>;
|
|
6666
|
+
}>>;
|
|
6667
|
+
style: OptionType<StructType<{
|
|
6668
|
+
variant: OptionType<import("@elaraai/east").VariantType<{
|
|
6669
|
+
line: import("@elaraai/east").NullType;
|
|
6670
|
+
outline: import("@elaraai/east").NullType;
|
|
6671
|
+
}>>;
|
|
6672
|
+
size: OptionType<import("@elaraai/east").VariantType<{
|
|
6673
|
+
sm: import("@elaraai/east").NullType;
|
|
6674
|
+
md: import("@elaraai/east").NullType;
|
|
6675
|
+
lg: import("@elaraai/east").NullType;
|
|
6676
|
+
}>>;
|
|
6677
|
+
striped: OptionType<import("@elaraai/east").BooleanType>;
|
|
6678
|
+
interactive: OptionType<import("@elaraai/east").BooleanType>;
|
|
6679
|
+
stickyHeader: OptionType<import("@elaraai/east").BooleanType>;
|
|
6680
|
+
showColumnBorder: OptionType<import("@elaraai/east").BooleanType>;
|
|
6681
|
+
colorPalette: OptionType<import("@elaraai/east").VariantType<{
|
|
6682
|
+
gray: import("@elaraai/east").NullType;
|
|
6683
|
+
red: import("@elaraai/east").NullType;
|
|
6684
|
+
orange: import("@elaraai/east").NullType;
|
|
6685
|
+
yellow: import("@elaraai/east").NullType;
|
|
6686
|
+
green: import("@elaraai/east").NullType;
|
|
6687
|
+
teal: import("@elaraai/east").NullType;
|
|
6688
|
+
blue: import("@elaraai/east").NullType;
|
|
6689
|
+
cyan: import("@elaraai/east").NullType;
|
|
6690
|
+
purple: import("@elaraai/east").NullType;
|
|
6691
|
+
pink: import("@elaraai/east").NullType;
|
|
6692
|
+
}>>;
|
|
6693
|
+
}>>;
|
|
6694
|
+
}>;
|
|
6695
|
+
Gantt: StructType<{
|
|
6696
|
+
rows: ArrayType<StructType<{
|
|
6697
|
+
cells: import("@elaraai/east").DictType<import("@elaraai/east").StringType, StructType<{
|
|
6698
|
+
value: import("@elaraai/east").VariantType<{
|
|
6699
|
+
Boolean: import("@elaraai/east").BooleanType;
|
|
6700
|
+
Integer: import("@elaraai/east").IntegerType;
|
|
6701
|
+
Float: import("@elaraai/east").FloatType;
|
|
6702
|
+
String: import("@elaraai/east").StringType;
|
|
6703
|
+
DateTime: import("@elaraai/east").DateTimeType;
|
|
6704
|
+
}>;
|
|
6705
|
+
content: import("@elaraai/east").RecursiveTypeMarker;
|
|
6706
|
+
}>>;
|
|
6707
|
+
events: ArrayType<import("@elaraai/east").VariantType<{
|
|
6708
|
+
Task: StructType<{
|
|
6709
|
+
start: import("@elaraai/east").DateTimeType;
|
|
6710
|
+
end: import("@elaraai/east").DateTimeType;
|
|
6711
|
+
label: OptionType<import("@elaraai/east").StringType>;
|
|
6712
|
+
progress: OptionType<import("@elaraai/east").FloatType>;
|
|
6713
|
+
colorPalette: OptionType<import("@elaraai/east").VariantType<{
|
|
6714
|
+
gray: import("@elaraai/east").NullType;
|
|
6715
|
+
red: import("@elaraai/east").NullType;
|
|
6716
|
+
orange: import("@elaraai/east").NullType;
|
|
6717
|
+
yellow: import("@elaraai/east").NullType;
|
|
6718
|
+
green: import("@elaraai/east").NullType;
|
|
6719
|
+
teal: import("@elaraai/east").NullType;
|
|
6720
|
+
blue: import("@elaraai/east").NullType;
|
|
6721
|
+
cyan: import("@elaraai/east").NullType;
|
|
6722
|
+
purple: import("@elaraai/east").NullType;
|
|
6723
|
+
pink: import("@elaraai/east").NullType;
|
|
6724
|
+
}>>;
|
|
6725
|
+
}>;
|
|
6726
|
+
Milestone: StructType<{
|
|
6727
|
+
date: import("@elaraai/east").DateTimeType;
|
|
6728
|
+
label: OptionType<import("@elaraai/east").StringType>;
|
|
6729
|
+
colorPalette: OptionType<import("@elaraai/east").VariantType<{
|
|
6730
|
+
gray: import("@elaraai/east").NullType;
|
|
6731
|
+
red: import("@elaraai/east").NullType;
|
|
6732
|
+
orange: import("@elaraai/east").NullType;
|
|
6733
|
+
yellow: import("@elaraai/east").NullType;
|
|
6734
|
+
green: import("@elaraai/east").NullType;
|
|
6735
|
+
teal: import("@elaraai/east").NullType;
|
|
6736
|
+
blue: import("@elaraai/east").NullType;
|
|
6737
|
+
cyan: import("@elaraai/east").NullType;
|
|
6738
|
+
purple: import("@elaraai/east").NullType;
|
|
6739
|
+
pink: import("@elaraai/east").NullType;
|
|
6740
|
+
}>>;
|
|
6741
|
+
}>;
|
|
6742
|
+
}>>;
|
|
6743
|
+
}>>;
|
|
6744
|
+
columns: ArrayType<StructType<{
|
|
6745
|
+
key: import("@elaraai/east").StringType;
|
|
6746
|
+
type: import("@elaraai/east").VariantType<{
|
|
6747
|
+
Boolean: import("@elaraai/east").NullType;
|
|
6748
|
+
Integer: import("@elaraai/east").NullType;
|
|
6749
|
+
Float: import("@elaraai/east").NullType;
|
|
6750
|
+
String: import("@elaraai/east").NullType;
|
|
6751
|
+
DateTime: import("@elaraai/east").NullType;
|
|
6752
|
+
}>;
|
|
6510
6753
|
header: OptionType<import("@elaraai/east").StringType>;
|
|
6511
6754
|
}>>;
|
|
6512
6755
|
style: OptionType<StructType<{
|
|
@@ -6535,6 +6778,7 @@ export declare const Box: {
|
|
|
6535
6778
|
purple: import("@elaraai/east").NullType;
|
|
6536
6779
|
pink: import("@elaraai/east").NullType;
|
|
6537
6780
|
}>>;
|
|
6781
|
+
showToday: OptionType<import("@elaraai/east").BooleanType>;
|
|
6538
6782
|
}>>;
|
|
6539
6783
|
}>;
|
|
6540
6784
|
Accordion: StructType<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/layout/box/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACH,KAAK,QAAQ,EAEb,UAAU,EACV,UAAU,EACV,SAAS,EAET,KAAK,kBAAkB,EAE1B,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAgB,KAAK,QAAQ,EAAE,MAAM,YAAY,CAAC;AAOzD,OAAO,EAAE,OAAO,EAAe,MAAM,EAAc,MAAM,aAAa,CAAC;AAGvE,OAAO,EAAE,YAAY,EAAE,KAAK,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEzD;;;;;;;;;GASG;AACH,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/layout/box/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACH,KAAK,QAAQ,EAEb,UAAU,EACV,UAAU,EACV,SAAS,EAET,KAAK,kBAAkB,EAE1B,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAgB,KAAK,QAAQ,EAAE,MAAM,YAAY,CAAC;AAOzD,OAAO,EAAE,OAAO,EAAe,MAAM,EAAc,MAAM,aAAa,CAAC;AAGvE,OAAO,EAAE,YAAY,EAAE,KAAK,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEzD;;;;;;;;;GASG;AACH,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGlB,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,OAAO,GAAG,OAAO,OAAO,CAAC;AAErC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,iBAAS,SAAS,CACd,QAAQ,EAAE,kBAAkB,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC,EACxD,KAAK,CAAC,EAAE,QAAQ,GACjB,QAAQ,CAAC,eAAe,CAAC,CAgE3B;AAED;;;;;GAKG;AACH,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAUN,CAAC"}
|