@trycourier/react-designer 0.0.0-canary-20251016130317 → 0.0.0-canary-20251016171912

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.
@@ -2019,6 +2019,9 @@ body {
2019
2019
  .courier-pr-4 {
2020
2020
  padding-right: 1rem;
2021
2021
  }
2022
+ .courier-pr-5 {
2023
+ padding-right: 1.25rem;
2024
+ }
2022
2025
  .courier-pr-8 {
2023
2026
  padding-right: 2rem;
2024
2027
  }
@@ -6,7 +6,7 @@ import type { ElementalNode } from "@/types/elemental.types";
6
6
  import { type UniqueIdentifier } from "@dnd-kit/core";
7
7
  import type { Node } from "@tiptap/pm/model";
8
8
  import type { AnyExtension, Editor } from "@tiptap/react";
9
- import React from "react";
9
+ import React, { type HTMLAttributes } from "react";
10
10
  import type { TemplateEditorProps } from "../../TemplateEditor";
11
11
  export declare const defaultMSTeamsContent: ElementalNode[];
12
12
  export declare const MSTeamsEditorContent: ({ value }: {
@@ -27,7 +27,7 @@ export interface MSTeamsRenderProps {
27
27
  selectedNode: Node | null;
28
28
  msteamsEditor: Editor | null;
29
29
  }
30
- export interface MSTeamsProps extends Pick<TemplateEditorProps, "hidePublish" | "theme" | "variables" | "channels" | "routing" | "value"> {
30
+ export interface MSTeamsProps extends Pick<TemplateEditorProps, "hidePublish" | "theme" | "variables" | "channels" | "routing" | "value">, Omit<HTMLAttributes<HTMLDivElement>, "value" | "onChange"> {
31
31
  readOnly?: boolean;
32
32
  headerRenderer?: ({ hidePublish, channels, routing, }: {
33
33
  hidePublish?: boolean;
@@ -6,7 +6,7 @@ import type { ElementalNode } from "@/types/elemental.types";
6
6
  import { type UniqueIdentifier } from "@dnd-kit/core";
7
7
  import type { Node } from "@tiptap/pm/model";
8
8
  import type { AnyExtension, Editor } from "@tiptap/react";
9
- import React from "react";
9
+ import React, { type HTMLAttributes } from "react";
10
10
  import type { TemplateEditorProps } from "../../TemplateEditor";
11
11
  export declare const defaultSlackContent: ElementalNode[];
12
12
  export declare const SlackEditorContent: ({ value }: {
@@ -27,7 +27,7 @@ export interface SlackRenderProps {
27
27
  selectedNode: Node | null;
28
28
  slackEditor: Editor | null;
29
29
  }
30
- export interface SlackProps extends Pick<TemplateEditorProps, "hidePublish" | "theme" | "variables" | "channels" | "routing" | "value"> {
30
+ export interface SlackProps extends Pick<TemplateEditorProps, "hidePublish" | "theme" | "variables" | "channels" | "routing" | "value">, Omit<HTMLAttributes<HTMLDivElement>, "value" | "onChange"> {
31
31
  readOnly?: boolean;
32
32
  headerRenderer?: ({ hidePublish, channels, routing, }: {
33
33
  hidePublish?: boolean;