@embedreach/components 0.3.46 → 0.3.48

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.
@@ -0,0 +1,42 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ import { i as Card, j as CardHeader, k as CardTitle, l as CardDescription, m as CardContent } from "./index.js";
3
+ const intro = "reach-InfoCard-module__intro___yH9i6";
4
+ const itemList = "reach-InfoCard-module__itemList___ySYR4";
5
+ const item = "reach-InfoCard-module__item___bXrCD";
6
+ const dot = "reach-InfoCard-module__dot___tJMBM";
7
+ const styles = {
8
+ intro,
9
+ itemList,
10
+ item,
11
+ dot
12
+ };
13
+ const InfoCard = ({
14
+ title,
15
+ description,
16
+ icon: Icon,
17
+ items,
18
+ intro: intro2,
19
+ children
20
+ }) => /* @__PURE__ */ jsxs(Card, { children: [
21
+ /* @__PURE__ */ jsxs(CardHeader, { children: [
22
+ /* @__PURE__ */ jsxs(CardTitle, { className: "flex items-center gap-2", children: [
23
+ /* @__PURE__ */ jsx(Icon, { className: "h-5 w-5 text-primary" }),
24
+ title
25
+ ] }),
26
+ /* @__PURE__ */ jsx(CardDescription, { children: description })
27
+ ] }),
28
+ /* @__PURE__ */ jsxs(CardContent, { children: [
29
+ intro2 && /* @__PURE__ */ jsx("p", { className: styles.intro, children: intro2 }),
30
+ items && /* @__PURE__ */ jsx("ul", { className: styles.itemList, children: items.map((item2, index) => /* @__PURE__ */ jsxs("li", { className: styles.item, children: [
31
+ /* @__PURE__ */ jsx("span", { className: styles.dot, "data-color": item2.dotColor }),
32
+ /* @__PURE__ */ jsxs("div", { children: [
33
+ item2.title && /* @__PURE__ */ jsx("h5", { children: item2.title }),
34
+ /* @__PURE__ */ jsx("p", { children: item2.description })
35
+ ] })
36
+ ] }, index)) }),
37
+ children
38
+ ] })
39
+ ] });
40
+ export {
41
+ InfoCard as I
42
+ };
@@ -25668,7 +25668,7 @@ const reputationHandlers = [
25668
25668
  return HttpResponse.json({
25669
25669
  success: true,
25670
25670
  message: "Success (Sandbox)",
25671
- data: timeSeriesData
25671
+ data: timeSeriesData.data
25672
25672
  });
25673
25673
  }),
25674
25674
  // Reputation Audit Logs
@@ -0,0 +1,21 @@
1
+ import { f as createLucideIcon } from "./index.js";
2
+ /**
3
+ * @license lucide-react v0.464.0 - ISC
4
+ *
5
+ * This source code is licensed under the ISC license.
6
+ * See the LICENSE file in the root directory of this source tree.
7
+ */
8
+ const ShoppingCart = createLucideIcon("ShoppingCart", [
9
+ ["circle", { cx: "8", cy: "21", r: "1", key: "jimo8o" }],
10
+ ["circle", { cx: "19", cy: "21", r: "1", key: "13723u" }],
11
+ [
12
+ "path",
13
+ {
14
+ d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12",
15
+ key: "9zh506"
16
+ }
17
+ ]
18
+ ]);
19
+ export {
20
+ ShoppingCart as S
21
+ };
package/dist/index.d.ts CHANGED
@@ -397,19 +397,19 @@ declare const SMSSetupBusinessFormSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
397
397
  phoneNumber: string;
398
398
  }>;
399
399
  messagingUseCase: z.ZodObject<{
400
- monthlyVolume: z.ZodNumber;
401
- category: z.ZodNativeEnum<SmsUseCaseCategory>;
402
- useCaseDetails: z.ZodEffects<z.ZodString, string, string>;
400
+ monthlyVolume: z.ZodOptional<z.ZodNumber>;
401
+ category: z.ZodOptional<z.ZodNativeEnum<SmsUseCaseCategory>>;
402
+ useCaseDetails: z.ZodOptional<z.ZodString>;
403
403
  }, "strip", z.ZodTypeAny, {
404
- monthlyVolume: number;
405
- category: SmsUseCaseCategory;
406
- useCaseDetails: string;
404
+ category?: SmsUseCaseCategory | undefined;
405
+ monthlyVolume?: number | undefined;
406
+ useCaseDetails?: string | undefined;
407
407
  }, {
408
- monthlyVolume: number;
409
- category: SmsUseCaseCategory;
410
- useCaseDetails: string;
408
+ category?: SmsUseCaseCategory | undefined;
409
+ monthlyVolume?: number | undefined;
410
+ useCaseDetails?: string | undefined;
411
411
  }>;
412
- messageSamples: z.ZodArray<z.ZodString, "many">;
412
+ messageSamples: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
413
413
  doingBusinessAs: z.ZodOptional<z.ZodString>;
414
414
  optInConfirmationMessage: z.ZodOptional<z.ZodString>;
415
415
  helpMessageSample: z.ZodOptional<z.ZodString>;
@@ -437,11 +437,11 @@ declare const SMSSetupBusinessFormSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
437
437
  };
438
438
  tollFreeNumber: string;
439
439
  messagingUseCase: {
440
- monthlyVolume: number;
441
- category: SmsUseCaseCategory;
442
- useCaseDetails: string;
440
+ category?: SmsUseCaseCategory | undefined;
441
+ monthlyVolume?: number | undefined;
442
+ useCaseDetails?: string | undefined;
443
443
  };
444
- messageSamples: string[];
444
+ messageSamples?: string[] | undefined;
445
445
  doingBusinessAs?: string | undefined;
446
446
  optInConfirmationMessage?: string | undefined;
447
447
  helpMessageSample?: string | undefined;
@@ -469,11 +469,11 @@ declare const SMSSetupBusinessFormSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
469
469
  };
470
470
  tollFreeNumber: string;
471
471
  messagingUseCase: {
472
- monthlyVolume: number;
473
- category: SmsUseCaseCategory;
474
- useCaseDetails: string;
472
+ category?: SmsUseCaseCategory | undefined;
473
+ monthlyVolume?: number | undefined;
474
+ useCaseDetails?: string | undefined;
475
475
  };
476
- messageSamples: string[];
476
+ messageSamples?: string[] | undefined;
477
477
  doingBusinessAs?: string | undefined;
478
478
  optInConfirmationMessage?: string | undefined;
479
479
  helpMessageSample?: string | undefined;
package/dist/index.es.js CHANGED
@@ -1,13 +1,13 @@
1
1
  import "react/jsx-runtime";
2
2
  import "react";
3
- import { a, e, f, E, d, c, g, V } from "./chunks/index.js";
3
+ import { a, p, q, r, o, n, s, V } from "./chunks/index.js";
4
4
  export {
5
5
  a as AutomationTriggerType,
6
- e as CreateAutomationDialog,
7
- f as CreateAutomationModal,
8
- E as Engage,
9
- d as ReachProvider,
10
- c as SMSOnboarding,
11
- g as SegmentBuilderDialog,
6
+ p as CreateAutomationDialog,
7
+ q as CreateAutomationModal,
8
+ r as Engage,
9
+ o as ReachProvider,
10
+ n as SMSOnboarding,
11
+ s as SegmentBuilderDialog,
12
12
  V as ViewAutomationModal
13
13
  };