@n8n/design-system 2.36.0 → 2.37.0

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.
@@ -248,7 +248,7 @@ declare function __VLS_template(): {
248
248
  readonly refocusAfterSend?: boolean | undefined;
249
249
  readonly autofocus?: boolean | undefined;
250
250
  readonly buttonLabel?: string | undefined;
251
- readonly layout?: "multiline" | "single-line" | undefined;
251
+ readonly layout?: "multiline" | "single-line" | "adaptive" | undefined;
252
252
  readonly autosize?: boolean | {
253
253
  minRows: number;
254
254
  maxRows: number;
@@ -315,7 +315,7 @@ declare function __VLS_template(): {
315
315
  showAskOwnerTooltip: boolean;
316
316
  refocusAfterSend: boolean;
317
317
  buttonLabel: string;
318
- layout: "multiline" | "single-line";
318
+ layout: "multiline" | "single-line" | "adaptive";
319
319
  submitDisabled: boolean;
320
320
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
321
321
  beforeCreate?: (() => void) | (() => void)[];
@@ -357,7 +357,7 @@ declare function __VLS_template(): {
357
357
  showAskOwnerTooltip: boolean;
358
358
  refocusAfterSend: boolean;
359
359
  buttonLabel: string;
360
- layout: "multiline" | "single-line";
360
+ layout: "multiline" | "single-line" | "adaptive";
361
361
  submitDisabled: boolean;
362
362
  }> & Omit<Readonly<import('../N8nChatInput/ChatInput.vue').N8nChatInputProps> & Readonly<{
363
363
  onFocus?: ((event: FocusEvent) => any) | undefined;
@@ -592,7 +592,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
592
592
  readonly refocusAfterSend?: boolean | undefined;
593
593
  readonly autofocus?: boolean | undefined;
594
594
  readonly buttonLabel?: string | undefined;
595
- readonly layout?: "multiline" | "single-line" | undefined;
595
+ readonly layout?: "multiline" | "single-line" | "adaptive" | undefined;
596
596
  readonly autosize?: boolean | {
597
597
  minRows: number;
598
598
  maxRows: number;
@@ -659,7 +659,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
659
659
  showAskOwnerTooltip: boolean;
660
660
  refocusAfterSend: boolean;
661
661
  buttonLabel: string;
662
- layout: "multiline" | "single-line";
662
+ layout: "multiline" | "single-line" | "adaptive";
663
663
  submitDisabled: boolean;
664
664
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
665
665
  beforeCreate?: (() => void) | (() => void)[];
@@ -701,7 +701,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
701
701
  showAskOwnerTooltip: boolean;
702
702
  refocusAfterSend: boolean;
703
703
  buttonLabel: string;
704
- layout: "multiline" | "single-line";
704
+ layout: "multiline" | "single-line" | "adaptive";
705
705
  submitDisabled: boolean;
706
706
  }> & Omit<Readonly<import('../N8nChatInput/ChatInput.vue').N8nChatInputProps> & Readonly<{
707
707
  onFocus?: ((event: FocusEvent) => any) | undefined;
@@ -11,5 +11,7 @@ export interface AiModelSelectorMenuItemData {
11
11
  parts?: string[];
12
12
  credentialType?: string;
13
13
  leadingIcon?: string;
14
+ loading?: boolean;
15
+ connectedLabel?: string;
14
16
  }
15
17
  export type AiModelSelectorMenuItem<TData extends AiModelSelectorMenuItemData = AiModelSelectorMenuItemData> = DropdownMenuItemProps<string, TData>;
@@ -5,6 +5,7 @@ declare const _default: <TData extends AiModelSelectorMenuItemData = AiModelSele
5
5
  readonly onSelect?: ((id: string) => any) | undefined;
6
6
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onSelect" | "onSearch"> & {
7
7
  items: Array<AiModelSelectorMenuItem<TData>>;
8
+ isLoading?: boolean;
8
9
  selectedLabel: string;
9
10
  selectedCredentialName?: string;
10
11
  credentialsMissing?: boolean;
@@ -12,7 +12,7 @@ export interface N8nChatInputProps {
12
12
  refocusAfterSend?: boolean;
13
13
  autofocus?: boolean;
14
14
  buttonLabel?: string;
15
- layout?: 'multiline' | 'single-line';
15
+ layout?: 'multiline' | 'single-line' | 'adaptive';
16
16
  autosize?: boolean | {
17
17
  minRows: number;
18
18
  maxRows: number;
@@ -74,7 +74,7 @@ declare const __VLS_component: import('vue').DefineComponent<N8nChatInputProps,
74
74
  showAskOwnerTooltip: boolean;
75
75
  refocusAfterSend: boolean;
76
76
  buttonLabel: string;
77
- layout: "multiline" | "single-line";
77
+ layout: "multiline" | "single-line" | "adaptive";
78
78
  submitDisabled: boolean;
79
79
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
80
80
  textareaRef: HTMLTextAreaElement;
@@ -22,8 +22,8 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
22
22
  }>, {
23
23
  zIndex: number;
24
24
  placeholder: string;
25
- context: string;
26
25
  isLoading: boolean;
26
+ context: string;
27
27
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
28
28
  commandBarRef: HTMLDivElement;
29
29
  inputRef: HTMLInputElement;
@@ -36,6 +36,8 @@ var t = /* @__PURE__ */ e({ default: () => n }), n = {
36
36
  "codeDiff.replaceMyCode": "Replace my code",
37
37
  "codeDiff.replacing": "Replacing...",
38
38
  "codeDiff.undo": "Undo",
39
+ "generic.copy": "Copy",
40
+ "generic.copiedToClipboard": "Copied to clipboard",
39
41
  "codeBlock.copy": "Copy code",
40
42
  "codeBlock.copiedToClipboard": "Copied to clipboard",
41
43
  "codeBlock.copyFailed": "Couldn't copy code. Try again or copy it manually.",