@dust-tt/sparkle 0.5.10 → 0.5.11

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.
@@ -2,24 +2,35 @@ import React from "react";
2
2
  import { CHIP_COLORS, CHIP_SIZES } from "./Chip";
3
3
  import { DoubleIconProps, IconProps } from "./Icon";
4
4
  import { LinkWrapperProps } from "./LinkWrapper";
5
- type AttachmentChipIconProps = IconProps | DoubleIconProps;
6
- interface AttachmentChipBaseProps {
7
- label: string;
5
+ export type AttachmentChipIconProps = IconProps;
6
+ export type AttachmentChipDoubleIconProps = DoubleIconProps;
7
+ type AttachmentChipIconOptions = {
8
8
  icon?: AttachmentChipIconProps;
9
+ doubleIcon?: never;
10
+ } | {
11
+ icon?: never;
12
+ doubleIcon?: AttachmentChipDoubleIconProps;
13
+ };
14
+ export type AttachmentChipBaseProps = AttachmentChipIconOptions & {
15
+ label: string;
9
16
  size?: (typeof CHIP_SIZES)[number];
10
17
  color?: (typeof CHIP_COLORS)[number];
11
18
  className?: string;
12
19
  isBusy?: boolean;
13
20
  onRemove?: () => void;
14
- onClick?: () => void;
15
- }
16
- type AttachmentChipButtonProps = AttachmentChipBaseProps & {
21
+ children?: never;
22
+ };
23
+ export type AttachmentChipButtonProps = AttachmentChipBaseProps & {
17
24
  href?: never;
25
+ onClick?: () => void;
18
26
  } & {
19
27
  [K in keyof Omit<LinkWrapperProps, "children">]?: never;
20
28
  };
21
- type AttachmentChipLinkProps = AttachmentChipBaseProps & Omit<LinkWrapperProps, "children">;
22
- type AttachmentChipProps = AttachmentChipButtonProps | AttachmentChipLinkProps;
23
- export declare function AttachmentChip({ icon, className, label, size, color, isBusy, onRemove, onClick, ...linkProps }: AttachmentChipProps): React.JSX.Element;
29
+ export type AttachmentChipLinkProps = AttachmentChipBaseProps & Omit<LinkWrapperProps, "children" | "href"> & {
30
+ href: string;
31
+ onClick?: never;
32
+ };
33
+ export type AttachmentChipProps = AttachmentChipButtonProps | AttachmentChipLinkProps;
34
+ export declare function AttachmentChip({ icon, doubleIcon, className, label, size, color, isBusy, onRemove, onClick, ...linkProps }: AttachmentChipProps): React.JSX.Element;
24
35
  export {};
25
36
  //# sourceMappingURL=AttachmentChip.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"AttachmentChip.d.ts","sourceRoot":"","sources":["../../../src/components/AttachmentChip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAQ,WAAW,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AACvD,OAAO,EAAc,eAAe,EAAQ,SAAS,EAAE,MAAM,QAAQ,CAAC;AACtE,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAQjD,KAAK,uBAAuB,GAAG,SAAS,GAAG,eAAe,CAAC;AAQ3D,UAAU,uBAAuB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,uBAAuB,CAAC;IAC/B,IAAI,CAAC,EAAE,CAAC,OAAO,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC;IACnC,KAAK,CAAC,EAAE,CAAC,OAAO,WAAW,CAAC,CAAC,MAAM,CAAC,CAAC;IACrC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,KAAK,yBAAyB,GAAG,uBAAuB,GAAG;IACzD,IAAI,CAAC,EAAE,KAAK,CAAC;CACd,GAAG;KACD,CAAC,IAAI,MAAM,IAAI,CAAC,gBAAgB,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,KAAK;CACxD,CAAC;AAEF,KAAK,uBAAuB,GAAG,uBAAuB,GACpD,IAAI,CAAC,gBAAgB,EAAE,UAAU,CAAC,CAAC;AAErC,KAAK,mBAAmB,GAAG,yBAAyB,GAAG,uBAAuB,CAAC;AAE/E,wBAAgB,cAAc,CAAC,EAC7B,IAAI,EACJ,SAAS,EACT,KAAK,EACL,IAAI,EACJ,KAAK,EACL,MAAM,EACN,QAAQ,EACR,OAAO,EACP,GAAG,SAAS,EACb,EAAE,mBAAmB,qBAsCrB"}
1
+ {"version":3,"file":"AttachmentChip.d.ts","sourceRoot":"","sources":["../../../src/components/AttachmentChip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAQ,WAAW,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AACvD,OAAO,EAAc,eAAe,EAAQ,SAAS,EAAE,MAAM,QAAQ,CAAC;AACtE,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAQjD,MAAM,MAAM,uBAAuB,GAAG,SAAS,CAAC;AAChD,MAAM,MAAM,6BAA6B,GAAG,eAAe,CAAC;AAE5D,KAAK,yBAAyB,GAC1B;IAAE,IAAI,CAAC,EAAE,uBAAuB,CAAC;IAAC,UAAU,CAAC,EAAE,KAAK,CAAA;CAAE,GACtD;IAAE,IAAI,CAAC,EAAE,KAAK,CAAC;IAAC,UAAU,CAAC,EAAE,6BAA6B,CAAA;CAAE,CAAC;AAEjE,MAAM,MAAM,uBAAuB,GAAG,yBAAyB,GAAG;IAChE,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,CAAC,OAAO,UAAU,CAAC,CAAC,MAAM,CAAC,CAAC;IACnC,KAAK,CAAC,EAAE,CAAC,OAAO,WAAW,CAAC,CAAC,MAAM,CAAC,CAAC;IACrC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,QAAQ,CAAC,EAAE,KAAK,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,yBAAyB,GAAG,uBAAuB,GAAG;IAChE,IAAI,CAAC,EAAE,KAAK,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB,GAAG;KACD,CAAC,IAAI,MAAM,IAAI,CAAC,gBAAgB,EAAE,UAAU,CAAC,CAAC,CAAC,EAAE,KAAK;CACxD,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG,uBAAuB,GAC3D,IAAI,CAAC,gBAAgB,EAAE,UAAU,GAAG,MAAM,CAAC,GAAG;IAC5C,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,KAAK,CAAC;CACjB,CAAC;AAEJ,MAAM,MAAM,mBAAmB,GAC3B,yBAAyB,GACzB,uBAAuB,CAAC;AAE5B,wBAAgB,cAAc,CAAC,EAC7B,IAAI,EACJ,UAAU,EACV,SAAS,EACT,KAAK,EACL,IAAI,EACJ,KAAK,EACL,MAAM,EACN,QAAQ,EACR,OAAO,EACP,GAAG,SAAS,EACb,EAAE,mBAAmB,qBAqCrB"}
@@ -4,13 +4,10 @@ import { cn } from "../lib/utils";
4
4
  import { Chip } from "./Chip";
5
5
  import { DoubleIcon, Icon } from "./Icon";
6
6
  const attachmentChipOverrides = cn("s-rounded-lg s-px-2 s-py-1 s-heading-sm s-gap-1.5", "s-bg-background s-text-foreground s-max-w-44", "dark:s-bg-background-night dark:s-text-foreground-night");
7
- function isDoubleIconProps(props) {
8
- return "mainIcon" in props;
9
- }
10
7
  export function AttachmentChip(_a) {
11
- var { icon, className, label, size, color, isBusy, onRemove, onClick } = _a, linkProps = __rest(_a, ["icon", "className", "label", "size", "color", "isBusy", "onRemove", "onClick"]);
12
- const iconElement = icon && (React.createElement("div", { className: "s-shrink-0" }, isDoubleIconProps(icon) ? React.createElement(DoubleIcon, Object.assign({}, icon)) : React.createElement(Icon, Object.assign({}, icon))));
8
+ var { icon, doubleIcon, className, label, size, color, isBusy, onRemove, onClick } = _a, linkProps = __rest(_a, ["icon", "doubleIcon", "className", "label", "size", "color", "isBusy", "onRemove", "onClick"]);
13
9
  const chipClassName = cn(attachmentChipOverrides, className);
10
+ const iconElement = (icon || doubleIcon) && (React.createElement("div", { className: "s-shrink-0" }, doubleIcon ? React.createElement(DoubleIcon, Object.assign({}, doubleIcon)) : React.createElement(Icon, Object.assign({}, icon))));
14
11
  if ("href" in linkProps && linkProps.href) {
15
12
  return (React.createElement(Chip, Object.assign({ className: chipClassName, label: label, size: size, color: color, isBusy: isBusy, onRemove: onRemove }, linkProps), iconElement));
16
13
  }
@@ -1 +1 @@
1
- {"version":3,"file":"AttachmentChip.js","sourceRoot":"","sources":["../../../src/components/AttachmentChip.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,EAAE,EAAE,MAAM,oBAAoB,CAAC;AAExC,OAAO,EAAE,IAAI,EAA2B,MAAM,QAAQ,CAAC;AACvD,OAAO,EAAE,UAAU,EAAmB,IAAI,EAAa,MAAM,QAAQ,CAAC;AAGtE,MAAM,uBAAuB,GAAG,EAAE,CAChC,mDAAmD,EACnD,8CAA8C,EAC9C,yDAAyD,CAC1D,CAAC;AAIF,SAAS,iBAAiB,CACxB,KAA8B,EACJ;IAC1B,OAAO,UAAU,IAAI,KAAK,CAAC;AAAA,CAC5B;AAwBD,MAAM,UAAU,cAAc,CAAC,EAUT,EAAE;QAVO,EAC7B,IAAI,EACJ,SAAS,EACT,KAAK,EACL,IAAI,EACJ,KAAK,EACL,MAAM,EACN,QAAQ,EACR,OAAO,OAEa,EADjB,SAAS,cATiB,gFAU9B,CADa;IAEZ,MAAM,WAAW,GAAG,IAAI,IAAI,CAC1B,6BAAK,SAAS,EAAC,YAAY,IACxB,iBAAiB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,oBAAC,UAAU,oBAAK,IAAI,EAAI,CAAC,CAAC,CAAC,oBAAC,IAAI,oBAAK,IAAI,EAAI,CACpE,CACP,CAAC;IAEF,MAAM,aAAa,GAAG,EAAE,CAAC,uBAAuB,EAAE,SAAS,CAAC,CAAC;IAE7D,IAAI,MAAM,IAAI,SAAS,IAAI,SAAS,CAAC,IAAI,EAAE,CAAC;QAC1C,OAAO,CACL,oBAAC,IAAI,kBACH,SAAS,EAAE,aAAa,EACxB,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,KAAK,EACZ,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,QAAQ,IACd,SAAS,GAEZ,WAAW,CACP,CACR,CAAC;IACJ,CAAC;IAED,OAAO,CACL,oBAAC,IAAI,IACH,SAAS,EAAE,aAAa,EACxB,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,KAAK,EACZ,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,IAEf,WAAW,CACP,CACR,CAAC;AAAA,CACH"}
1
+ {"version":3,"file":"AttachmentChip.js","sourceRoot":"","sources":["../../../src/components/AttachmentChip.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,EAAE,EAAE,MAAM,oBAAoB,CAAC;AAExC,OAAO,EAAE,IAAI,EAA2B,MAAM,QAAQ,CAAC;AACvD,OAAO,EAAE,UAAU,EAAmB,IAAI,EAAa,MAAM,QAAQ,CAAC;AAGtE,MAAM,uBAAuB,GAAG,EAAE,CAChC,mDAAmD,EACnD,8CAA8C,EAC9C,yDAAyD,CAC1D,CAAC;AAoCF,MAAM,UAAU,cAAc,CAAC,EAWT,EAAE;QAXO,EAC7B,IAAI,EACJ,UAAU,EACV,SAAS,EACT,KAAK,EACL,IAAI,EACJ,KAAK,EACL,MAAM,EACN,QAAQ,EACR,OAAO,OAEa,EADjB,SAAS,cAViB,8FAW9B,CADa;IAEZ,MAAM,aAAa,GAAG,EAAE,CAAC,uBAAuB,EAAE,SAAS,CAAC,CAAC;IAC7D,MAAM,WAAW,GAAG,CAAC,IAAI,IAAI,UAAU,CAAC,IAAI,CAC1C,6BAAK,SAAS,EAAC,YAAY,IACxB,UAAU,CAAC,CAAC,CAAC,oBAAC,UAAU,oBAAK,UAAU,EAAI,CAAC,CAAC,CAAC,oBAAC,IAAI,oBAAK,IAAI,EAAI,CAC7D,CACP,CAAC;IAEF,IAAI,MAAM,IAAI,SAAS,IAAI,SAAS,CAAC,IAAI,EAAE,CAAC;QAC1C,OAAO,CACL,oBAAC,IAAI,kBACH,SAAS,EAAE,aAAa,EACxB,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,KAAK,EACZ,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,QAAQ,IACd,SAAS,GAEZ,WAAW,CACP,CACR,CAAC;IACJ,CAAC;IAED,OAAO,CACL,oBAAC,IAAI,IACH,SAAS,EAAE,aAAa,EACxB,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,KAAK,EACZ,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,IAEf,WAAW,CACP,CACR,CAAC;AAAA,CACH"}
@@ -48,6 +48,19 @@ declare const animation: {
48
48
  shapes: {
49
49
  ty: string;
50
50
  it: ({
51
+ o?: undefined;
52
+ c?: undefined;
53
+ bm?: undefined;
54
+ p?: undefined;
55
+ a?: undefined;
56
+ s?: undefined;
57
+ sk?: undefined;
58
+ sa?: undefined;
59
+ r?: undefined;
60
+ w?: undefined;
61
+ lc?: undefined;
62
+ lj?: undefined;
63
+ ml?: undefined;
51
64
  ind: number;
52
65
  ty: string;
53
66
  ix: number;
@@ -70,6 +83,8 @@ declare const animation: {
70
83
  c: boolean;
71
84
  }[];
72
85
  } | {
86
+ i?: undefined;
87
+ o?: undefined;
73
88
  t: number;
74
89
  s: {
75
90
  i: number[][];
@@ -77,28 +92,22 @@ declare const animation: {
77
92
  v: number[][];
78
93
  c: boolean;
79
94
  }[];
80
- i?: undefined;
81
- o?: undefined;
82
95
  })[];
83
96
  ix: number;
84
97
  };
85
98
  nm: string;
86
99
  mn: string;
87
100
  hd: boolean;
88
- o?: undefined;
89
- c?: undefined;
90
- bm?: undefined;
101
+ } | {
91
102
  p?: undefined;
92
103
  a?: undefined;
93
104
  s?: undefined;
94
- r?: undefined;
95
105
  sk?: undefined;
96
106
  sa?: undefined;
97
- w?: undefined;
98
- lc?: undefined;
99
- lj?: undefined;
100
- ml?: undefined;
101
- } | {
107
+ ix?: undefined;
108
+ r?: undefined;
109
+ ind?: undefined;
110
+ ks?: undefined;
102
111
  ty: string;
103
112
  c: {
104
113
  a: number;
@@ -122,16 +131,18 @@ declare const animation: {
122
131
  nm: string;
123
132
  mn: string;
124
133
  hd: boolean;
125
- ind?: undefined;
134
+ } | {
135
+ c?: undefined;
136
+ bm?: undefined;
137
+ mn?: undefined;
138
+ hd?: undefined;
126
139
  ix?: undefined;
140
+ ind?: undefined;
127
141
  ks?: undefined;
128
- p?: undefined;
129
- a?: undefined;
130
- s?: undefined;
131
- r?: undefined;
132
- sk?: undefined;
133
- sa?: undefined;
134
- } | {
142
+ w?: undefined;
143
+ lc?: undefined;
144
+ lj?: undefined;
145
+ ml?: undefined;
135
146
  ty: string;
136
147
  p: {
137
148
  a: number;
@@ -169,17 +180,6 @@ declare const animation: {
169
180
  ix: number;
170
181
  };
171
182
  nm: string;
172
- ind?: undefined;
173
- ix?: undefined;
174
- ks?: undefined;
175
- c?: undefined;
176
- bm?: undefined;
177
- mn?: undefined;
178
- hd?: undefined;
179
- w?: undefined;
180
- lc?: undefined;
181
- lj?: undefined;
182
- ml?: undefined;
183
183
  })[];
184
184
  nm: string;
185
185
  np: number;
@@ -85,6 +85,14 @@ declare const animation: {
85
85
  ty: string;
86
86
  it: ({
87
87
  o?: undefined;
88
+ c?: undefined;
89
+ bm?: undefined;
90
+ p?: undefined;
91
+ a?: undefined;
92
+ s?: undefined;
93
+ sk?: undefined;
94
+ sa?: undefined;
95
+ r?: undefined;
88
96
  ind: number;
89
97
  ty: string;
90
98
  ix: number;
@@ -101,17 +109,14 @@ declare const animation: {
101
109
  nm: string;
102
110
  mn: string;
103
111
  hd: boolean;
104
- c?: undefined;
105
- bm?: undefined;
112
+ } | {
106
113
  p?: undefined;
107
114
  a?: undefined;
108
115
  s?: undefined;
109
- r?: undefined;
110
116
  sk?: undefined;
111
117
  sa?: undefined;
112
- } | {
113
- ind?: undefined;
114
118
  ix?: undefined;
119
+ ind?: undefined;
115
120
  ks?: undefined;
116
121
  ty: string;
117
122
  c: {
@@ -129,19 +134,14 @@ declare const animation: {
129
134
  nm: string;
130
135
  mn: string;
131
136
  hd: boolean;
132
- p?: undefined;
133
- a?: undefined;
134
- s?: undefined;
135
- sk?: undefined;
136
- sa?: undefined;
137
137
  } | {
138
- ind?: undefined;
139
- ix?: undefined;
140
- ks?: undefined;
141
138
  c?: undefined;
142
139
  bm?: undefined;
143
140
  mn?: undefined;
144
141
  hd?: undefined;
142
+ ix?: undefined;
143
+ ind?: undefined;
144
+ ks?: undefined;
145
145
  ty: string;
146
146
  p: {
147
147
  a: number;
@@ -311,12 +311,12 @@ declare const animation: {
311
311
  mn: string;
312
312
  hd: boolean;
313
313
  } | {
314
+ d?: undefined;
314
315
  p?: undefined;
315
316
  a?: undefined;
316
317
  s?: undefined;
317
318
  sk?: undefined;
318
319
  sa?: undefined;
319
- d?: undefined;
320
320
  ty: string;
321
321
  c: {
322
322
  a: number;
@@ -334,11 +334,11 @@ declare const animation: {
334
334
  mn: string;
335
335
  hd: boolean;
336
336
  } | {
337
+ d?: undefined;
337
338
  c?: undefined;
338
339
  bm?: undefined;
339
340
  mn?: undefined;
340
341
  hd?: undefined;
341
- d?: undefined;
342
342
  ty: string;
343
343
  p: {
344
344
  a: number;
@@ -492,12 +492,12 @@ declare const animation: {
492
492
  mn: string;
493
493
  hd: boolean;
494
494
  } | {
495
+ d?: undefined;
495
496
  p?: undefined;
496
497
  a?: undefined;
497
498
  s?: undefined;
498
499
  sk?: undefined;
499
500
  sa?: undefined;
500
- d?: undefined;
501
501
  ty: string;
502
502
  c: {
503
503
  a: number;
@@ -515,11 +515,11 @@ declare const animation: {
515
515
  mn: string;
516
516
  hd: boolean;
517
517
  } | {
518
+ d?: undefined;
518
519
  c?: undefined;
519
520
  bm?: undefined;
520
521
  mn?: undefined;
521
522
  hd?: undefined;
522
- d?: undefined;
523
523
  ty: string;
524
524
  p: {
525
525
  a: number;
@@ -718,17 +718,17 @@ declare const animation: {
718
718
  mn: string;
719
719
  hd: boolean;
720
720
  } | {
721
- ix?: undefined;
721
+ d?: undefined;
722
722
  p?: undefined;
723
723
  a?: undefined;
724
724
  s?: undefined;
725
725
  sk?: undefined;
726
726
  sa?: undefined;
727
- d?: undefined;
728
727
  sy?: undefined;
729
728
  pt?: undefined;
730
729
  or?: undefined;
731
730
  os?: undefined;
731
+ ix?: undefined;
732
732
  ty: string;
733
733
  c: {
734
734
  a: number;
@@ -746,16 +746,16 @@ declare const animation: {
746
746
  mn: string;
747
747
  hd: boolean;
748
748
  } | {
749
- ix?: undefined;
749
+ d?: undefined;
750
750
  c?: undefined;
751
751
  bm?: undefined;
752
752
  mn?: undefined;
753
753
  hd?: undefined;
754
- d?: undefined;
755
754
  sy?: undefined;
756
755
  pt?: undefined;
757
756
  or?: undefined;
758
757
  os?: undefined;
758
+ ix?: undefined;
759
759
  ty: string;
760
760
  p: {
761
761
  a: number;
@@ -866,9 +866,13 @@ declare const animation: {
866
866
  c?: undefined;
867
867
  bm?: undefined;
868
868
  a?: undefined;
869
- r?: undefined;
870
869
  sk?: undefined;
871
870
  sa?: undefined;
871
+ r?: undefined;
872
+ w?: undefined;
873
+ lc?: undefined;
874
+ lj?: undefined;
875
+ ml?: undefined;
872
876
  d: number;
873
877
  ty: string;
874
878
  s: {
@@ -900,18 +904,14 @@ declare const animation: {
900
904
  nm: string;
901
905
  mn: string;
902
906
  hd: boolean;
903
- w?: undefined;
904
- lc?: undefined;
905
- lj?: undefined;
906
- ml?: undefined;
907
907
  } | {
908
+ d?: undefined;
908
909
  p?: undefined;
909
910
  a?: undefined;
910
911
  s?: undefined;
911
- r?: undefined;
912
912
  sk?: undefined;
913
913
  sa?: undefined;
914
- d?: undefined;
914
+ r?: undefined;
915
915
  ty: string;
916
916
  c: {
917
917
  a: number;
@@ -936,12 +936,12 @@ declare const animation: {
936
936
  mn: string;
937
937
  hd: boolean;
938
938
  } | {
939
+ d?: undefined;
939
940
  p?: undefined;
940
941
  a?: undefined;
941
942
  s?: undefined;
942
943
  sk?: undefined;
943
944
  sa?: undefined;
944
- d?: undefined;
945
945
  w?: undefined;
946
946
  lc?: undefined;
947
947
  lj?: undefined;
@@ -963,11 +963,11 @@ declare const animation: {
963
963
  mn: string;
964
964
  hd: boolean;
965
965
  } | {
966
+ d?: undefined;
966
967
  c?: undefined;
967
968
  bm?: undefined;
968
969
  mn?: undefined;
969
970
  hd?: undefined;
970
- d?: undefined;
971
971
  w?: undefined;
972
972
  lc?: undefined;
973
973
  lj?: undefined;