@deepdesk/deepdesk-sdk 13.0.2-beta.0 → 13.0.2-beta.2

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.mts CHANGED
@@ -4,7 +4,7 @@ import * as _reduxjs_toolkit_dist_configureStore from '@reduxjs/toolkit/dist/con
4
4
  import * as _reduxjs_toolkit from '@reduxjs/toolkit';
5
5
  import { Middleware } from '@reduxjs/toolkit';
6
6
 
7
- declare const styles$p: {
7
+ declare const styles$q: {
8
8
  readonly "root": string;
9
9
  readonly "imageWrapper": string;
10
10
  readonly "image": string;
@@ -33,10 +33,10 @@ interface CardComposition {
33
33
  Content: FC<ContentProps>;
34
34
  Title: FC<TitleProps>;
35
35
  }
36
- type CardStyles = typeof styles$p;
36
+ type CardStyles = typeof styles$q;
37
37
  declare const Card: FC & CardComposition;
38
38
 
39
- declare const styles$o: {
39
+ declare const styles$p: {
40
40
  readonly "root": string;
41
41
  };
42
42
 
@@ -51,18 +51,18 @@ type Props$6 = HTMLAttributes<HTMLSpanElement> & {
51
51
  className?: string;
52
52
  keyCode: KeyboardHintKey;
53
53
  };
54
- type KeyboardHintStyles = typeof styles$o;
54
+ type KeyboardHintStyles = typeof styles$p;
55
55
  declare const KeyboardHint: React.FC<Props$6>;
56
56
 
57
- declare const styles$n: {
57
+ declare const styles$o: {
58
58
  readonly "root": string;
59
59
  };
60
60
 
61
61
  type Props$5 = HTMLAttributes<HTMLSpanElement>;
62
- type LabelStyles = typeof styles$n;
62
+ type LabelStyles = typeof styles$o;
63
63
  declare const Label: React.FC<Props$5>;
64
64
 
65
- declare const styles$m: {
65
+ declare const styles$n: {
66
66
  readonly "root": string;
67
67
  readonly "subTitleContainer": string;
68
68
  readonly "subtitle": string;
@@ -73,10 +73,10 @@ type Props$4 = HTMLAttributes<HTMLElement> & {
73
73
  type: string;
74
74
  title?: string;
75
75
  };
76
- type SectionStyles = typeof styles$m;
76
+ type SectionStyles = typeof styles$n;
77
77
  declare const Section: React.FC<Props$4>;
78
78
 
79
- declare const styles$l: {
79
+ declare const styles$m: {
80
80
  readonly "root": string;
81
81
  };
82
82
 
@@ -84,10 +84,10 @@ type Props$3 = {
84
84
  className?: string;
85
85
  children?: React.ReactNode;
86
86
  };
87
- type SectionListStyles = typeof styles$l;
87
+ type SectionListStyles = typeof styles$m;
88
88
  declare const SectionList: React.ForwardRefExoticComponent<Props$3 & React.RefAttributes<HTMLDivElement>>;
89
89
 
90
- declare const styles$k: {
90
+ declare const styles$l: {
91
91
  readonly "root": string;
92
92
  readonly "fadein": string;
93
93
  readonly "isClickable": string;
@@ -103,24 +103,25 @@ declare const styles$k: {
103
103
  readonly "actionButtonIsDisabled": string;
104
104
  readonly "labels": string;
105
105
  readonly "label": string;
106
- readonly "iconButtons": string;
107
- readonly "iconButton": string;
108
- readonly "iconButtonDisabled": string;
106
+ readonly "buttonsContainer": string;
107
+ readonly "button": string;
108
+ readonly "buttonWithIcon": string;
109
+ readonly "buttonDisabled": string;
109
110
  };
110
111
 
111
112
  interface ActionsProps extends HTMLAttributes<HTMLElement> {
112
113
  fixed?: boolean;
113
114
  }
114
115
  declare const Actions: FC<ActionsProps>;
115
- interface IconButtonProps<T extends React.ElementType> {
116
+ interface ButtonProps<T extends React.ElementType> {
116
117
  as?: T;
117
118
  className?: string;
118
119
  title?: string;
119
120
  icon?: ReactNode;
120
121
  disabled?: boolean;
121
122
  }
122
- declare function IconButton<T extends React.ElementType = 'button'>({ as, className, icon, title, disabled, ...restProps }: IconButtonProps<T> & Omit<React.ComponentPropsWithoutRef<T>, keyof IconButtonProps<T>>): JSX.Element;
123
- declare const IconButtonContainer: React.FC<{
123
+ declare function Button<T extends React.ElementType = 'button'>({ as, className, icon, title, children, disabled, ...restProps }: ButtonProps<T> & Omit<React.ComponentPropsWithoutRef<T>, keyof ButtonProps<T>>): JSX.Element;
124
+ declare const ButtonsContainer: React.FC<{
124
125
  children: React.ReactNode;
125
126
  }>;
126
127
  interface ActionButtonProps extends HTMLAttributes<HTMLElement> {
@@ -150,24 +151,24 @@ interface SuggestionComposition {
150
151
  DropdownButton: typeof DropdownButton;
151
152
  DropdownItem: typeof DropdownItem;
152
153
  Labels: typeof Labels;
153
- IconButton: typeof IconButton;
154
- IconButtonContainer: typeof IconButtonContainer;
154
+ Button: typeof Button;
155
+ ButtonsContainer: typeof ButtonsContainer;
155
156
  }
156
- type SuggestionStyles = typeof styles$k;
157
+ type SuggestionStyles = typeof styles$l;
157
158
  declare const Suggestion: ForwardRefExoticComponent<Props$2 & RefAttributes<any>> & SuggestionComposition;
158
159
 
159
- declare const styles$j: {
160
+ declare const styles$k: {
160
161
  readonly "root": string;
161
162
  readonly "isWithDivider": string;
162
163
  };
163
164
 
164
- type SuggestionListStyles = typeof styles$j;
165
+ type SuggestionListStyles = typeof styles$k;
165
166
  interface Props$1 {
166
167
  withDivider?: boolean;
167
168
  }
168
169
  declare const SuggestionList: React.FC<Props$1>;
169
170
 
170
- declare const styles$i: {
171
+ declare const styles$j: {
171
172
  readonly "root": string;
172
173
  readonly "isCollapsed": string;
173
174
  };
@@ -176,7 +177,7 @@ type Props = HTMLAttributes<HTMLButtonElement> & {
176
177
  isCollapsed: boolean;
177
178
  title: string;
178
179
  };
179
- type ToggleButtonStyles = typeof styles$i;
180
+ type ToggleButtonStyles = typeof styles$j;
180
181
  declare const ToggleButton: React.FC<Props>;
181
182
 
182
183
  declare enum Sources {
@@ -1650,7 +1651,7 @@ interface TextSuggestionState {
1650
1651
  [type: string]: SuggestionState;
1651
1652
  }
1652
1653
 
1653
- declare const styles$h: {
1654
+ declare const styles$i: {
1654
1655
  readonly "isDisabled": string;
1655
1656
  readonly "buttonStart": string;
1656
1657
  readonly "root": string;
@@ -1661,9 +1662,9 @@ declare const styles$h: {
1661
1662
  readonly "isAborted": string;
1662
1663
  };
1663
1664
 
1664
- type AutoflowStyles = typeof styles$h;
1665
+ type AutoflowStyles = typeof styles$i;
1665
1666
 
1666
- declare const styles$g: {
1667
+ declare const styles$h: {
1667
1668
  readonly "root": string;
1668
1669
  readonly "list": string;
1669
1670
  readonly "listWrapper": string;
@@ -1712,23 +1713,23 @@ declare const styles$g: {
1712
1713
  readonly "actionShortcutFixKerning": string;
1713
1714
  };
1714
1715
 
1715
- type CommandPaletteStyles = typeof styles$g;
1716
+ type CommandPaletteStyles = typeof styles$h;
1716
1717
 
1717
- declare const styles$f: {
1718
+ declare const styles$g: {
1718
1719
  readonly "root": string;
1719
1720
  readonly "content": string;
1720
1721
  };
1721
1722
 
1722
- type DialogStyles = typeof styles$f;
1723
+ type DialogStyles = typeof styles$g;
1723
1724
 
1724
- declare const styles$e: {
1725
+ declare const styles$f: {
1725
1726
  readonly "root": string;
1726
1727
  readonly "empty": string;
1727
1728
  };
1728
1729
 
1729
- type EntitiesListStyles = typeof styles$e;
1730
+ type EntitiesListStyles = typeof styles$f;
1730
1731
 
1731
- declare const styles$d: {
1732
+ declare const styles$e: {
1732
1733
  readonly "root": string;
1733
1734
  readonly "entity": string;
1734
1735
  readonly "entityText": string;
@@ -1737,9 +1738,9 @@ declare const styles$d: {
1737
1738
  readonly "iconClicked": string;
1738
1739
  };
1739
1740
 
1740
- type EntitiesWidgetListStyles = typeof styles$d;
1741
+ type EntitiesWidgetListStyles = typeof styles$e;
1741
1742
 
1742
- declare const styles$c: {
1743
+ declare const styles$d: {
1743
1744
  readonly "thumbs": string;
1744
1745
  readonly "fadeup": string;
1745
1746
  readonly "fadedown": string;
@@ -1748,9 +1749,9 @@ declare const styles$c: {
1748
1749
  readonly "thumbsDown": string;
1749
1750
  };
1750
1751
 
1751
- type FeedbackThumbsStyles = typeof styles$c;
1752
+ type FeedbackThumbsStyles = typeof styles$d;
1752
1753
 
1753
- declare const styles$b: {
1754
+ declare const styles$c: {
1754
1755
  readonly "root": string;
1755
1756
  readonly "text": string;
1756
1757
  readonly "isLoggedIn": string;
@@ -1760,16 +1761,16 @@ declare const styles$b: {
1760
1761
  readonly "lock": string;
1761
1762
  };
1762
1763
 
1763
- type FloatingMenuStyles = typeof styles$b;
1764
+ type FloatingMenuStyles = typeof styles$c;
1764
1765
 
1765
- declare const styles$a: {
1766
+ declare const styles$b: {
1766
1767
  readonly "root": string;
1767
1768
  readonly "paper": string;
1768
1769
  };
1769
1770
 
1770
- type InlineSuggestionsOverlayStyles = typeof styles$a;
1771
+ type InlineSuggestionsOverlayStyles = typeof styles$b;
1771
1772
 
1772
- declare const styles$9: {
1773
+ declare const styles$a: {
1773
1774
  readonly "root": string;
1774
1775
  readonly "title": string;
1775
1776
  readonly "empty": string;
@@ -1783,24 +1784,24 @@ declare const styles$9: {
1783
1784
  readonly "listItemFeedback": string;
1784
1785
  };
1785
1786
 
1786
- type KnowledgeSearchStyles = typeof styles$9;
1787
+ type KnowledgeSearchStyles = typeof styles$a;
1787
1788
 
1788
- declare const styles$8: {
1789
+ declare const styles$9: {
1789
1790
  readonly "root": string;
1790
1791
  readonly "content": string;
1791
1792
  };
1792
1793
 
1793
- type LinkSearchStyles = typeof styles$8;
1794
+ type LinkSearchStyles = typeof styles$9;
1794
1795
 
1795
- declare const styles$7: {
1796
+ declare const styles$8: {
1796
1797
  readonly "root": string;
1797
1798
  readonly "anchor": string;
1798
1799
  readonly "anchorButton": string;
1799
1800
  };
1800
1801
 
1801
- type LoginStyles = typeof styles$7;
1802
+ type LoginStyles = typeof styles$8;
1802
1803
 
1803
- declare const styles$6: {
1804
+ declare const styles$7: {
1804
1805
  readonly "root": string;
1805
1806
  readonly "anchorButton": string;
1806
1807
  readonly "errorMessage": string;
@@ -1813,7 +1814,20 @@ declare const styles$6: {
1813
1814
  readonly "primaryButton": string;
1814
1815
  };
1815
1816
 
1816
- type LoginTokenDialogStyles = typeof styles$6;
1817
+ type LoginTokenDialogStyles = typeof styles$7;
1818
+
1819
+ declare const styles$6: {
1820
+ readonly "root": string;
1821
+ readonly "popover": string;
1822
+ readonly "options": string;
1823
+ readonly "arrow": string;
1824
+ readonly "copyIcon": string;
1825
+ readonly "option": string;
1826
+ readonly "divider": string;
1827
+ readonly "fadeup": string;
1828
+ };
1829
+
1830
+ type MarkdownStyles = typeof styles$6;
1817
1831
 
1818
1832
  declare const styles$5: {
1819
1833
  readonly "root": string;
@@ -1905,6 +1919,7 @@ type WidgetCustomStyles = {
1905
1919
  Label?: Partial<LabelStyles>;
1906
1920
  LinkSearch?: Partial<LinkSearchStyles>;
1907
1921
  Login?: Partial<LoginStyles>;
1922
+ Markdown?: Partial<MarkdownStyles>;
1908
1923
  Section?: Partial<SectionStyles>;
1909
1924
  SectionList?: Partial<SectionListStyles>;
1910
1925
  Suggestion?: Partial<SuggestionStyles>;
package/dist/index.d.ts CHANGED
@@ -4,7 +4,7 @@ import * as _reduxjs_toolkit_dist_configureStore from '@reduxjs/toolkit/dist/con
4
4
  import * as _reduxjs_toolkit from '@reduxjs/toolkit';
5
5
  import { Middleware } from '@reduxjs/toolkit';
6
6
 
7
- declare const styles$p: {
7
+ declare const styles$q: {
8
8
  readonly "root": string;
9
9
  readonly "imageWrapper": string;
10
10
  readonly "image": string;
@@ -33,10 +33,10 @@ interface CardComposition {
33
33
  Content: FC<ContentProps>;
34
34
  Title: FC<TitleProps>;
35
35
  }
36
- type CardStyles = typeof styles$p;
36
+ type CardStyles = typeof styles$q;
37
37
  declare const Card: FC & CardComposition;
38
38
 
39
- declare const styles$o: {
39
+ declare const styles$p: {
40
40
  readonly "root": string;
41
41
  };
42
42
 
@@ -51,18 +51,18 @@ type Props$6 = HTMLAttributes<HTMLSpanElement> & {
51
51
  className?: string;
52
52
  keyCode: KeyboardHintKey;
53
53
  };
54
- type KeyboardHintStyles = typeof styles$o;
54
+ type KeyboardHintStyles = typeof styles$p;
55
55
  declare const KeyboardHint: React.FC<Props$6>;
56
56
 
57
- declare const styles$n: {
57
+ declare const styles$o: {
58
58
  readonly "root": string;
59
59
  };
60
60
 
61
61
  type Props$5 = HTMLAttributes<HTMLSpanElement>;
62
- type LabelStyles = typeof styles$n;
62
+ type LabelStyles = typeof styles$o;
63
63
  declare const Label: React.FC<Props$5>;
64
64
 
65
- declare const styles$m: {
65
+ declare const styles$n: {
66
66
  readonly "root": string;
67
67
  readonly "subTitleContainer": string;
68
68
  readonly "subtitle": string;
@@ -73,10 +73,10 @@ type Props$4 = HTMLAttributes<HTMLElement> & {
73
73
  type: string;
74
74
  title?: string;
75
75
  };
76
- type SectionStyles = typeof styles$m;
76
+ type SectionStyles = typeof styles$n;
77
77
  declare const Section: React.FC<Props$4>;
78
78
 
79
- declare const styles$l: {
79
+ declare const styles$m: {
80
80
  readonly "root": string;
81
81
  };
82
82
 
@@ -84,10 +84,10 @@ type Props$3 = {
84
84
  className?: string;
85
85
  children?: React.ReactNode;
86
86
  };
87
- type SectionListStyles = typeof styles$l;
87
+ type SectionListStyles = typeof styles$m;
88
88
  declare const SectionList: React.ForwardRefExoticComponent<Props$3 & React.RefAttributes<HTMLDivElement>>;
89
89
 
90
- declare const styles$k: {
90
+ declare const styles$l: {
91
91
  readonly "root": string;
92
92
  readonly "fadein": string;
93
93
  readonly "isClickable": string;
@@ -103,24 +103,25 @@ declare const styles$k: {
103
103
  readonly "actionButtonIsDisabled": string;
104
104
  readonly "labels": string;
105
105
  readonly "label": string;
106
- readonly "iconButtons": string;
107
- readonly "iconButton": string;
108
- readonly "iconButtonDisabled": string;
106
+ readonly "buttonsContainer": string;
107
+ readonly "button": string;
108
+ readonly "buttonWithIcon": string;
109
+ readonly "buttonDisabled": string;
109
110
  };
110
111
 
111
112
  interface ActionsProps extends HTMLAttributes<HTMLElement> {
112
113
  fixed?: boolean;
113
114
  }
114
115
  declare const Actions: FC<ActionsProps>;
115
- interface IconButtonProps<T extends React.ElementType> {
116
+ interface ButtonProps<T extends React.ElementType> {
116
117
  as?: T;
117
118
  className?: string;
118
119
  title?: string;
119
120
  icon?: ReactNode;
120
121
  disabled?: boolean;
121
122
  }
122
- declare function IconButton<T extends React.ElementType = 'button'>({ as, className, icon, title, disabled, ...restProps }: IconButtonProps<T> & Omit<React.ComponentPropsWithoutRef<T>, keyof IconButtonProps<T>>): JSX.Element;
123
- declare const IconButtonContainer: React.FC<{
123
+ declare function Button<T extends React.ElementType = 'button'>({ as, className, icon, title, children, disabled, ...restProps }: ButtonProps<T> & Omit<React.ComponentPropsWithoutRef<T>, keyof ButtonProps<T>>): JSX.Element;
124
+ declare const ButtonsContainer: React.FC<{
124
125
  children: React.ReactNode;
125
126
  }>;
126
127
  interface ActionButtonProps extends HTMLAttributes<HTMLElement> {
@@ -150,24 +151,24 @@ interface SuggestionComposition {
150
151
  DropdownButton: typeof DropdownButton;
151
152
  DropdownItem: typeof DropdownItem;
152
153
  Labels: typeof Labels;
153
- IconButton: typeof IconButton;
154
- IconButtonContainer: typeof IconButtonContainer;
154
+ Button: typeof Button;
155
+ ButtonsContainer: typeof ButtonsContainer;
155
156
  }
156
- type SuggestionStyles = typeof styles$k;
157
+ type SuggestionStyles = typeof styles$l;
157
158
  declare const Suggestion: ForwardRefExoticComponent<Props$2 & RefAttributes<any>> & SuggestionComposition;
158
159
 
159
- declare const styles$j: {
160
+ declare const styles$k: {
160
161
  readonly "root": string;
161
162
  readonly "isWithDivider": string;
162
163
  };
163
164
 
164
- type SuggestionListStyles = typeof styles$j;
165
+ type SuggestionListStyles = typeof styles$k;
165
166
  interface Props$1 {
166
167
  withDivider?: boolean;
167
168
  }
168
169
  declare const SuggestionList: React.FC<Props$1>;
169
170
 
170
- declare const styles$i: {
171
+ declare const styles$j: {
171
172
  readonly "root": string;
172
173
  readonly "isCollapsed": string;
173
174
  };
@@ -176,7 +177,7 @@ type Props = HTMLAttributes<HTMLButtonElement> & {
176
177
  isCollapsed: boolean;
177
178
  title: string;
178
179
  };
179
- type ToggleButtonStyles = typeof styles$i;
180
+ type ToggleButtonStyles = typeof styles$j;
180
181
  declare const ToggleButton: React.FC<Props>;
181
182
 
182
183
  declare enum Sources {
@@ -1650,7 +1651,7 @@ interface TextSuggestionState {
1650
1651
  [type: string]: SuggestionState;
1651
1652
  }
1652
1653
 
1653
- declare const styles$h: {
1654
+ declare const styles$i: {
1654
1655
  readonly "isDisabled": string;
1655
1656
  readonly "buttonStart": string;
1656
1657
  readonly "root": string;
@@ -1661,9 +1662,9 @@ declare const styles$h: {
1661
1662
  readonly "isAborted": string;
1662
1663
  };
1663
1664
 
1664
- type AutoflowStyles = typeof styles$h;
1665
+ type AutoflowStyles = typeof styles$i;
1665
1666
 
1666
- declare const styles$g: {
1667
+ declare const styles$h: {
1667
1668
  readonly "root": string;
1668
1669
  readonly "list": string;
1669
1670
  readonly "listWrapper": string;
@@ -1712,23 +1713,23 @@ declare const styles$g: {
1712
1713
  readonly "actionShortcutFixKerning": string;
1713
1714
  };
1714
1715
 
1715
- type CommandPaletteStyles = typeof styles$g;
1716
+ type CommandPaletteStyles = typeof styles$h;
1716
1717
 
1717
- declare const styles$f: {
1718
+ declare const styles$g: {
1718
1719
  readonly "root": string;
1719
1720
  readonly "content": string;
1720
1721
  };
1721
1722
 
1722
- type DialogStyles = typeof styles$f;
1723
+ type DialogStyles = typeof styles$g;
1723
1724
 
1724
- declare const styles$e: {
1725
+ declare const styles$f: {
1725
1726
  readonly "root": string;
1726
1727
  readonly "empty": string;
1727
1728
  };
1728
1729
 
1729
- type EntitiesListStyles = typeof styles$e;
1730
+ type EntitiesListStyles = typeof styles$f;
1730
1731
 
1731
- declare const styles$d: {
1732
+ declare const styles$e: {
1732
1733
  readonly "root": string;
1733
1734
  readonly "entity": string;
1734
1735
  readonly "entityText": string;
@@ -1737,9 +1738,9 @@ declare const styles$d: {
1737
1738
  readonly "iconClicked": string;
1738
1739
  };
1739
1740
 
1740
- type EntitiesWidgetListStyles = typeof styles$d;
1741
+ type EntitiesWidgetListStyles = typeof styles$e;
1741
1742
 
1742
- declare const styles$c: {
1743
+ declare const styles$d: {
1743
1744
  readonly "thumbs": string;
1744
1745
  readonly "fadeup": string;
1745
1746
  readonly "fadedown": string;
@@ -1748,9 +1749,9 @@ declare const styles$c: {
1748
1749
  readonly "thumbsDown": string;
1749
1750
  };
1750
1751
 
1751
- type FeedbackThumbsStyles = typeof styles$c;
1752
+ type FeedbackThumbsStyles = typeof styles$d;
1752
1753
 
1753
- declare const styles$b: {
1754
+ declare const styles$c: {
1754
1755
  readonly "root": string;
1755
1756
  readonly "text": string;
1756
1757
  readonly "isLoggedIn": string;
@@ -1760,16 +1761,16 @@ declare const styles$b: {
1760
1761
  readonly "lock": string;
1761
1762
  };
1762
1763
 
1763
- type FloatingMenuStyles = typeof styles$b;
1764
+ type FloatingMenuStyles = typeof styles$c;
1764
1765
 
1765
- declare const styles$a: {
1766
+ declare const styles$b: {
1766
1767
  readonly "root": string;
1767
1768
  readonly "paper": string;
1768
1769
  };
1769
1770
 
1770
- type InlineSuggestionsOverlayStyles = typeof styles$a;
1771
+ type InlineSuggestionsOverlayStyles = typeof styles$b;
1771
1772
 
1772
- declare const styles$9: {
1773
+ declare const styles$a: {
1773
1774
  readonly "root": string;
1774
1775
  readonly "title": string;
1775
1776
  readonly "empty": string;
@@ -1783,24 +1784,24 @@ declare const styles$9: {
1783
1784
  readonly "listItemFeedback": string;
1784
1785
  };
1785
1786
 
1786
- type KnowledgeSearchStyles = typeof styles$9;
1787
+ type KnowledgeSearchStyles = typeof styles$a;
1787
1788
 
1788
- declare const styles$8: {
1789
+ declare const styles$9: {
1789
1790
  readonly "root": string;
1790
1791
  readonly "content": string;
1791
1792
  };
1792
1793
 
1793
- type LinkSearchStyles = typeof styles$8;
1794
+ type LinkSearchStyles = typeof styles$9;
1794
1795
 
1795
- declare const styles$7: {
1796
+ declare const styles$8: {
1796
1797
  readonly "root": string;
1797
1798
  readonly "anchor": string;
1798
1799
  readonly "anchorButton": string;
1799
1800
  };
1800
1801
 
1801
- type LoginStyles = typeof styles$7;
1802
+ type LoginStyles = typeof styles$8;
1802
1803
 
1803
- declare const styles$6: {
1804
+ declare const styles$7: {
1804
1805
  readonly "root": string;
1805
1806
  readonly "anchorButton": string;
1806
1807
  readonly "errorMessage": string;
@@ -1813,7 +1814,20 @@ declare const styles$6: {
1813
1814
  readonly "primaryButton": string;
1814
1815
  };
1815
1816
 
1816
- type LoginTokenDialogStyles = typeof styles$6;
1817
+ type LoginTokenDialogStyles = typeof styles$7;
1818
+
1819
+ declare const styles$6: {
1820
+ readonly "root": string;
1821
+ readonly "popover": string;
1822
+ readonly "options": string;
1823
+ readonly "arrow": string;
1824
+ readonly "copyIcon": string;
1825
+ readonly "option": string;
1826
+ readonly "divider": string;
1827
+ readonly "fadeup": string;
1828
+ };
1829
+
1830
+ type MarkdownStyles = typeof styles$6;
1817
1831
 
1818
1832
  declare const styles$5: {
1819
1833
  readonly "root": string;
@@ -1905,6 +1919,7 @@ type WidgetCustomStyles = {
1905
1919
  Label?: Partial<LabelStyles>;
1906
1920
  LinkSearch?: Partial<LinkSearchStyles>;
1907
1921
  Login?: Partial<LoginStyles>;
1922
+ Markdown?: Partial<MarkdownStyles>;
1908
1923
  Section?: Partial<SectionStyles>;
1909
1924
  SectionList?: Partial<SectionListStyles>;
1910
1925
  Suggestion?: Partial<SuggestionStyles>;