@kanda-libs/ks-component-ts 0.2.268 → 0.2.270
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/dist/index.d.ts +10013 -10001
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +3 -3
- package/package.json +1 -1
- package/src/field/components/AutoSizeTextArea/AutoSizeTextAreaUncontrolled/index.tsx +1 -1
- package/src/field/components/AutoSizeTextArea/AutoSizeTextAreaUncontrolled/types.d.ts +4 -0
- package/src/generated/components/schemas/Lead.ts +4 -0
- package/src/generated/widget/index.tsx +43000 -42969
package/package.json
CHANGED
|
@@ -48,7 +48,7 @@ const AutoSizeTextAreaUncontrolled: FunctionComponent<
|
|
|
48
48
|
</div>
|
|
49
49
|
</div>
|
|
50
50
|
) : (
|
|
51
|
-
<div className="flex flex-row
|
|
51
|
+
<div className="relative flex flex-row w-full overflow-hidden">
|
|
52
52
|
{showPlaceholder && (
|
|
53
53
|
<span className={placeholderClassName}>{value}</span>
|
|
54
54
|
)}
|
|
@@ -24,6 +24,7 @@ export const Lead = t.intersection([
|
|
|
24
24
|
t.literal("expired"),
|
|
25
25
|
t.literal("closed"),
|
|
26
26
|
]),
|
|
27
|
+
source: t.union([t.literal("consumer"), t.literal("checkout")]),
|
|
27
28
|
}),
|
|
28
29
|
t.partial({
|
|
29
30
|
id: t.string,
|
|
@@ -41,6 +42,7 @@ export const Lead = t.intersection([
|
|
|
41
42
|
xid: t.string,
|
|
42
43
|
xref: t.string,
|
|
43
44
|
flow_type: FlowType,
|
|
45
|
+
referrer: t.string,
|
|
44
46
|
metadata: Metadata,
|
|
45
47
|
}),
|
|
46
48
|
]);
|
|
@@ -74,5 +76,7 @@ export interface Lead {
|
|
|
74
76
|
| "expired"
|
|
75
77
|
| "closed";
|
|
76
78
|
flow_type?: FlowType;
|
|
79
|
+
source: "consumer" | "checkout";
|
|
80
|
+
referrer?: string;
|
|
77
81
|
metadata?: Metadata;
|
|
78
82
|
}
|