@intlayer/design-system 8.2.3 → 8.2.4

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.
Files changed (44) hide show
  1. package/dist/esm/components/IDE/CodeBlockClient.mjs.map +1 -1
  2. package/dist/esm/components/IDE/CodeBlockShiki.mjs +1 -1
  3. package/dist/esm/components/IDE/CodeBlockShiki.mjs.map +1 -1
  4. package/dist/esm/components/Input/Input.mjs +1 -1
  5. package/dist/esm/components/Input/Input.mjs.map +1 -1
  6. package/dist/esm/components/Label/index.mjs +1 -1
  7. package/dist/esm/components/Label/index.mjs.map +1 -1
  8. package/dist/esm/components/Link/Link.mjs +1 -1
  9. package/dist/esm/components/Link/Link.mjs.map +1 -1
  10. package/dist/esm/components/MarkDownRender/MarkDownRender.mjs +1 -1
  11. package/dist/esm/components/MarkDownRender/MarkDownRender.mjs.map +1 -1
  12. package/dist/esm/components/MarkDownRender/index.mjs +1 -1
  13. package/dist/esm/components/Select/Select.mjs +1 -1
  14. package/dist/esm/components/Select/Select.mjs.map +1 -1
  15. package/dist/esm/components/index.mjs +1 -1
  16. package/dist/esm/hooks/index.mjs +1 -1
  17. package/dist/esm/hooks/reactQuery.mjs +1 -1
  18. package/dist/esm/hooks/reactQuery.mjs.map +1 -1
  19. package/dist/esm/hooks/useIntlayerAPI.mjs.map +1 -1
  20. package/dist/types/components/Badge/index.d.ts +1 -1
  21. package/dist/types/components/Button/Button.d.ts +2 -2
  22. package/dist/types/components/Container/index.d.ts +2 -2
  23. package/dist/types/components/IDE/CodeBlockClient.d.ts +2 -2
  24. package/dist/types/components/IDE/CodeBlockClient.d.ts.map +1 -1
  25. package/dist/types/components/IDE/CodeBlockShiki.d.ts.map +1 -1
  26. package/dist/types/components/IDE/index.d.ts +2 -2
  27. package/dist/types/components/Input/Checkbox.d.ts +1 -1
  28. package/dist/types/components/Link/Link.d.ts +2 -2
  29. package/dist/types/components/MarkDownRender/MarkDownRender.d.ts +142 -14
  30. package/dist/types/components/MarkDownRender/MarkDownRender.d.ts.map +1 -1
  31. package/dist/types/components/MarkDownRender/index.d.ts +2 -2
  32. package/dist/types/components/Pagination/Pagination.d.ts +1 -1
  33. package/dist/types/components/Select/Select.d.ts.map +1 -1
  34. package/dist/types/components/SwitchSelector/index.d.ts +1 -1
  35. package/dist/types/components/Tab/Tab.d.ts +1 -1
  36. package/dist/types/components/TabSelector/TabSelector.d.ts +1 -1
  37. package/dist/types/components/Tag/index.d.ts +1 -1
  38. package/dist/types/components/index.d.ts +3 -3
  39. package/dist/types/hooks/index.d.ts +3 -3
  40. package/dist/types/hooks/reactQuery.d.ts +11 -3
  41. package/dist/types/hooks/reactQuery.d.ts.map +1 -1
  42. package/dist/types/hooks/useIntlayerAPI.d.ts +1 -1
  43. package/dist/types/hooks/useIntlayerAPI.d.ts.map +1 -1
  44. package/package.json +2 -2
@@ -1,8 +1,78 @@
1
- import { ComponentProps, FC } from "react";
1
+ import { Tab, TabItemProps } from "../Tab/Tab.js";
2
+ import { Table } from "../Table/Table.js";
3
+ import { ComponentProps, ComponentPropsWithoutRef, FC } from "react";
2
4
  import { LocalesValues } from "@intlayer/types";
3
- import { MarkdownRenderer as MarkdownRenderer$1, RenderMarkdownProps } from "react-intlayer";
5
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
6
+ import { MarkdownRenderer as MarkdownRenderer$1 } from "react-intlayer";
4
7
 
5
8
  //#region src/components/MarkDownRender/MarkDownRender.d.ts
9
+ declare const baseMarkdownComponents: {
10
+ h1: (props: ComponentProps<"h1">) => react_jsx_runtime0.JSX.Element;
11
+ h2: (props: ComponentProps<"h2">) => react_jsx_runtime0.JSX.Element;
12
+ h3: (props: ComponentProps<"h3">) => react_jsx_runtime0.JSX.Element;
13
+ h4: (props: ComponentProps<"h4">) => react_jsx_runtime0.JSX.Element;
14
+ h5: (props: ComponentProps<"h5">) => react_jsx_runtime0.JSX.Element;
15
+ h6: (props: ComponentProps<"h6">) => react_jsx_runtime0.JSX.Element;
16
+ strong: (props: ComponentProps<"strong">) => react_jsx_runtime0.JSX.Element;
17
+ code: ({
18
+ className,
19
+ children,
20
+ ...rest
21
+ }: ComponentProps<"code">) => react_jsx_runtime0.JSX.Element;
22
+ blockquote: ({
23
+ className,
24
+ ...props
25
+ }: ComponentProps<"blockquote">) => react_jsx_runtime0.JSX.Element;
26
+ ul: ({
27
+ className,
28
+ ...props
29
+ }: ComponentProps<"ul">) => react_jsx_runtime0.JSX.Element;
30
+ ol: ({
31
+ className,
32
+ ...props
33
+ }: ComponentProps<"ol">) => react_jsx_runtime0.JSX.Element;
34
+ img: ({
35
+ className,
36
+ alt,
37
+ src,
38
+ ...props
39
+ }: ComponentProps<"img">) => react_jsx_runtime0.JSX.Element;
40
+ a: (props: ComponentProps<"a">) => react_jsx_runtime0.JSX.Element;
41
+ pre: (props: ComponentProps<"pre">) => react_jsx_runtime0.JSX.Element;
42
+ table: (props: ComponentProps<typeof Table>) => react_jsx_runtime0.JSX.Element;
43
+ th: ({
44
+ className,
45
+ ...props
46
+ }: ComponentProps<"th">) => react_jsx_runtime0.JSX.Element;
47
+ tr: ({
48
+ className,
49
+ ...props
50
+ }: ComponentProps<"tr">) => react_jsx_runtime0.JSX.Element;
51
+ td: ({
52
+ className,
53
+ ...props
54
+ }: ComponentProps<"td">) => react_jsx_runtime0.JSX.Element;
55
+ hr: ({
56
+ className,
57
+ ...props
58
+ }: ComponentProps<"hr">) => react_jsx_runtime0.JSX.Element;
59
+ Tabs: (props: ComponentProps<typeof Tab>) => react_jsx_runtime0.JSX.Element;
60
+ Tab: {
61
+ ({
62
+ children,
63
+ ...props
64
+ }: TabItemProps): react_jsx_runtime0.JSX.Element;
65
+ displayName: string;
66
+ };
67
+ Columns: ({
68
+ className,
69
+ ...props
70
+ }: ComponentPropsWithoutRef<"div">) => react_jsx_runtime0.JSX.Element;
71
+ Column: ({
72
+ className,
73
+ ...props
74
+ }: ComponentPropsWithoutRef<"div">) => react_jsx_runtime0.JSX.Element;
75
+ };
6
76
  type MarkdownRendererProps = {
7
77
  children: string;
8
78
  isDarkMode?: boolean;
@@ -13,18 +83,76 @@ type MarkdownRendererProps = {
13
83
  components?: ComponentProps<typeof MarkdownRenderer$1>['components'];
14
84
  wrapper?: ComponentProps<typeof MarkdownRenderer$1>['wrapper'];
15
85
  };
16
- declare const getIntlayerMarkdownOptions: (isDarkMode: boolean) => RenderMarkdownProps;
17
- /**
18
- * MarkdownRenderer Component
19
- *
20
- * A comprehensive markdown renderer that transforms markdown text into rich,
21
- * interactive HTML with custom styling and Intlayer integration. Supports
22
- * code syntax highlighting, responsive tables, internationalized links,
23
- * and automatic frontmatter stripping.
24
- *
25
- * @component
26
- */
86
+ declare const getIntlayerMarkdownOptions: (isDarkMode?: boolean) => {
87
+ components: {
88
+ h1: (props: ComponentProps<"h1">) => react_jsx_runtime0.JSX.Element;
89
+ h2: (props: ComponentProps<"h2">) => react_jsx_runtime0.JSX.Element;
90
+ h3: (props: ComponentProps<"h3">) => react_jsx_runtime0.JSX.Element;
91
+ h4: (props: ComponentProps<"h4">) => react_jsx_runtime0.JSX.Element;
92
+ h5: (props: ComponentProps<"h5">) => react_jsx_runtime0.JSX.Element;
93
+ h6: (props: ComponentProps<"h6">) => react_jsx_runtime0.JSX.Element;
94
+ strong: (props: ComponentProps<"strong">) => react_jsx_runtime0.JSX.Element;
95
+ code: ({
96
+ className,
97
+ children,
98
+ ...rest
99
+ }: ComponentProps<"code">) => react_jsx_runtime0.JSX.Element;
100
+ blockquote: ({
101
+ className,
102
+ ...props
103
+ }: ComponentProps<"blockquote">) => react_jsx_runtime0.JSX.Element;
104
+ ul: ({
105
+ className,
106
+ ...props
107
+ }: ComponentProps<"ul">) => react_jsx_runtime0.JSX.Element;
108
+ ol: ({
109
+ className,
110
+ ...props
111
+ }: ComponentProps<"ol">) => react_jsx_runtime0.JSX.Element;
112
+ img: ({
113
+ className,
114
+ alt,
115
+ src,
116
+ ...props
117
+ }: ComponentProps<"img">) => react_jsx_runtime0.JSX.Element;
118
+ a: (props: ComponentProps<"a">) => react_jsx_runtime0.JSX.Element;
119
+ pre: (props: ComponentProps<"pre">) => react_jsx_runtime0.JSX.Element;
120
+ table: (props: ComponentProps<typeof Table>) => react_jsx_runtime0.JSX.Element;
121
+ th: ({
122
+ className,
123
+ ...props
124
+ }: ComponentProps<"th">) => react_jsx_runtime0.JSX.Element;
125
+ tr: ({
126
+ className,
127
+ ...props
128
+ }: ComponentProps<"tr">) => react_jsx_runtime0.JSX.Element;
129
+ td: ({
130
+ className,
131
+ ...props
132
+ }: ComponentProps<"td">) => react_jsx_runtime0.JSX.Element;
133
+ hr: ({
134
+ className,
135
+ ...props
136
+ }: ComponentProps<"hr">) => react_jsx_runtime0.JSX.Element;
137
+ Tabs: (props: ComponentProps<typeof Tab>) => react_jsx_runtime0.JSX.Element;
138
+ Tab: {
139
+ ({
140
+ children,
141
+ ...props
142
+ }: TabItemProps): react_jsx_runtime0.JSX.Element;
143
+ displayName: string;
144
+ };
145
+ Columns: ({
146
+ className,
147
+ ...props
148
+ }: ComponentPropsWithoutRef<"div">) => react_jsx_runtime0.JSX.Element;
149
+ Column: ({
150
+ className,
151
+ ...props
152
+ }: ComponentPropsWithoutRef<"div">) => react_jsx_runtime0.JSX.Element;
153
+ };
154
+ };
27
155
  declare const MarkdownRenderer: FC<MarkdownRendererProps>;
28
156
  //#endregion
29
- export { MarkdownRenderer, getIntlayerMarkdownOptions };
157
+ export { MarkdownRenderer, baseMarkdownComponents, getIntlayerMarkdownOptions };
30
158
  //# sourceMappingURL=MarkDownRender.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"MarkDownRender.d.ts","names":[],"sources":["../../../../src/components/MarkDownRender/MarkDownRender.tsx"],"mappings":";;;;;KAiBK,qBAAA;EACH,QAAA;EACA,UAAA;EACA,MAAA,GAAS,aAAA;EACT,UAAA;EACA,mBAAA;EACA,SAAA;EACA,UAAA,GAAa,cAAA,QAAsB,kBAAA;EACnC,OAAA,GAAU,cAAA,QAAsB,kBAAA;AAAA;AAAA,cAGrB,0BAAA,GACX,UAAA,cACG,mBAAA;;;;;;;;;;;cAsJQ,gBAAA,EAAkB,EAAA,CAAG,qBAAA"}
1
+ {"version":3,"file":"MarkDownRender.d.ts","names":[],"sources":["../../../../src/components/MarkDownRender/MarkDownRender.tsx"],"mappings":"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"}
@@ -1,2 +1,2 @@
1
- import { MarkdownRenderer, getIntlayerMarkdownOptions } from "./MarkDownRender.js";
2
- export { MarkdownRenderer, getIntlayerMarkdownOptions };
1
+ import { MarkdownRenderer, baseMarkdownComponents, getIntlayerMarkdownOptions } from "./MarkDownRender.js";
2
+ export { MarkdownRenderer, baseMarkdownComponents, getIntlayerMarkdownOptions };
@@ -5,7 +5,7 @@ import { VariantProps } from "class-variance-authority";
5
5
  //#region src/components/Pagination/Pagination.d.ts
6
6
  declare const paginationVariants: (props?: {
7
7
  size?: "sm" | "md" | "lg";
8
- color?: "primary" | "secondary" | "neutral" | "text" | "destructive";
8
+ color?: "primary" | "secondary" | "destructive" | "neutral" | "text";
9
9
  variant?: "default" | "ghost" | "bordered";
10
10
  } & class_variance_authority_types0.ClassProp) => string;
11
11
  declare enum PaginationSize {
@@ -1 +1 @@
1
- {"version":3,"file":"Select.d.ts","names":[],"sources":["../../../../src/components/Select/Select.tsx"],"mappings":";;;;;;;;AAiBA;;aAAY,qBAAA;EAEV;EAAA,MAAA;EAKI;EAHJ,YAAA;AAAA;AAAA,cAGI,UAAA,EAAU,EAAA,CAAA,eAAA,CAAA,WAAA;AAAA,cACV,WAAA,EAAW,KAAA,CAAA,yBAAA,CAAA,eAAA,CAAA,gBAAA,GAAA,KAAA,CAAA,aAAA,CAAA,cAAA;AAAA,cACX,WAAA,EAAW,KAAA,CAAA,yBAAA,CAAA,eAAA,CAAA,gBAAA,GAAA,KAAA,CAAA,aAAA,CAAA,eAAA;;;;AAFD;;;;;;;;;;;;;;cAqBV,aAAA,EAAe,EAAA,CACnB,cAAA,QAAsB,eAAA,CAAgB,OAAA;EArBvB;AAAA;;;;;;;;;EAgCb,sBAAA;AAAA;;;;;;AA/Ba;;;cA0FX,oBAAA,EAAsB,EAAA,CAC1B,cAAA,QAAsB,eAAA,CAAgB,cAAA;;;;;;;;;cAqBlC,sBAAA,EAAwB,EAAA,CAC5B,cAAA,QAAsB,eAAA,CAAgB,gBAAA;;;AAlFd;;;;;;;;;;;;;;AA4D4B;;cAqDzC,aAAA,EAAe,EAAA,CAC1B,cAAA,QAAsB,eAAA,CAAgB,OAAA;;;;;;;;;;;;AADxC;;;;;;;;;cA2Ea,WAAA,EAAa,EAAA,CAAG,cAAA,QAAsB,eAAA,CAAgB,KAAA;;;;;AAAnE;;;;;;;;;;;;cA0BM,UAAA,EAAY,EAAA,CAAG,cAAA,QAAsB,eAAA,CAAgB,IAAA;;AAlBzD;;;;;;;;;;;;;;AAwDF;;cAAa,eAAA,EAAiB,EAAA,CAC5B,cAAA,QAAsB,eAAA,CAAgB,SAAA;;;;KAenC,UAAA,UAAoB,UAAA;EAhBO,qDAkB9B,KAAA,SAAc,WAAA,EAjBd;EAmBA,KAAA,SAAc,WAAA,EAnBwB;EAqBtC,OAAA,SAAgB,aAAA,EArB+B;EAuB/C,cAAA,SAAuB,oBAAA,EARV;EAUb,gBAAA,SAAyB,sBAAA,EAVF;EAYvB,OAAA,SAAgB,aAAA,EARF;EAUd,KAAA,SAAc,WAAA,EANS;EAQvB,IAAA,SAAa,UAAA,EAJG;EAMhB,SAAA,SAAkB,eAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;AA4FpB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAAa,MAAA,EAAuB,UAAA"}
1
+ {"version":3,"file":"Select.d.ts","names":[],"sources":["../../../../src/components/Select/Select.tsx"],"mappings":";;;;;;;;AAiBA;;aAAY,qBAAA;EAEV;EAAA,MAAA;EAKI;EAHJ,YAAA;AAAA;AAAA,cAGI,UAAA,EAAU,EAAA,CAAA,eAAA,CAAA,WAAA;AAAA,cACV,WAAA,EAAW,KAAA,CAAA,yBAAA,CAAA,eAAA,CAAA,gBAAA,GAAA,KAAA,CAAA,aAAA,CAAA,cAAA;AAAA,cACX,WAAA,EAAW,KAAA,CAAA,yBAAA,CAAA,eAAA,CAAA,gBAAA,GAAA,KAAA,CAAA,aAAA,CAAA,eAAA;;;;AAFD;;;;;;;;;;;;;;cAqBV,aAAA,EAAe,EAAA,CACnB,cAAA,QAAsB,eAAA,CAAgB,OAAA;EArBvB;AAAA;;;;;;;;;EAgCb,sBAAA;AAAA;;;;;;AA/Ba;;;cA2FX,oBAAA,EAAsB,EAAA,CAC1B,cAAA,QAAsB,eAAA,CAAgB,cAAA;;;;;;;;;cAqBlC,sBAAA,EAAwB,EAAA,CAC5B,cAAA,QAAsB,eAAA,CAAgB,gBAAA;;;AAnFd;;;;;;;;;;;;;;AA6D4B;;cAqDzC,aAAA,EAAe,EAAA,CAC1B,cAAA,QAAsB,eAAA,CAAgB,OAAA;;;;;;;;;;;;AADxC;;;;;;;;;cA2Ea,WAAA,EAAa,EAAA,CAAG,cAAA,QAAsB,eAAA,CAAgB,KAAA;;;;;AAAnE;;;;;;;;;;;;cA0BM,UAAA,EAAY,EAAA,CAAG,cAAA,QAAsB,eAAA,CAAgB,IAAA;;AAlBzD;;;;;;;;;;;;;;AAwDF;;cAAa,eAAA,EAAiB,EAAA,CAC5B,cAAA,QAAsB,eAAA,CAAgB,SAAA;;;;KAenC,UAAA,UAAoB,UAAA;EAhBO,qDAkB9B,KAAA,SAAc,WAAA,EAjBd;EAmBA,KAAA,SAAc,WAAA,EAnBwB;EAqBtC,OAAA,SAAgB,aAAA,EArB+B;EAuB/C,cAAA,SAAuB,oBAAA,EARV;EAUb,gBAAA,SAAyB,sBAAA,EAVF;EAYvB,OAAA,SAAgB,aAAA,EARF;EAUd,KAAA,SAAc,WAAA,EANS;EAQvB,IAAA,SAAa,UAAA,EAJG;EAMhB,SAAA,SAAkB,eAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;AA4FpB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAAa,MAAA,EAAuB,UAAA"}
@@ -28,7 +28,7 @@ declare enum SwitchSelectorColor {
28
28
  TEXT = "text"
29
29
  }
30
30
  declare const switchSelectorVariant: (props?: {
31
- color?: "text" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark";
31
+ color?: "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text";
32
32
  disabled?: boolean;
33
33
  } & class_variance_authority_types0.ClassProp) => string;
34
34
  declare enum SwitchSelectorSize {
@@ -5,7 +5,7 @@ import * as react_jsx_runtime0 from "react/jsx-runtime";
5
5
 
6
6
  //#region src/components/Tab/Tab.d.ts
7
7
  declare const tabContainerVariant: (props?: {
8
- background?: "without" | "with";
8
+ background?: "with" | "without";
9
9
  variant?: "default" | "ghost" | "bordered";
10
10
  } & class_variance_authority_types0.ClassProp) => string;
11
11
  type TabProps = HTMLAttributes<HTMLDivElement> & VariantProps<typeof tabContainerVariant> & {
@@ -15,7 +15,7 @@ declare enum TabSelectorColor {
15
15
  TEXT = "text"
16
16
  }
17
17
  declare const tabSelectorVariant: (props?: {
18
- color?: "primary" | "secondary" | "neutral" | "text" | "destructive" | "light" | "dark";
18
+ color?: "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text";
19
19
  } & class_variance_authority_types0.ClassProp) => string;
20
20
  type TabSelectorItemProps = HTMLAttributes<HTMLElement> & {
21
21
  key: string | number;
@@ -186,7 +186,7 @@ declare enum TagBackground {
186
186
  }
187
187
  declare const containerVariants: (props?: {
188
188
  roundedSize?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full";
189
- color?: "text" | "primary" | "neutral" | "error" | "success" | "warning" | "blue" | "yellow" | "green" | "red" | "orange" | "purple" | "pink" | "brown" | "gray" | "black" | "white";
189
+ color?: "primary" | "success" | "error" | "neutral" | "text" | "warning" | "blue" | "yellow" | "green" | "red" | "orange" | "purple" | "pink" | "brown" | "gray" | "black" | "white";
190
190
  size?: "xs" | "sm" | "md" | "lg" | "xl";
191
191
  border?: "none" | "with";
192
192
  background?: "none" | "with";
@@ -46,7 +46,7 @@ import { H1, H2, H3, H4, H5, H6, HeadingProps } from "./Headers/index.js";
46
46
  import { HeightResizer } from "./HeightResizer/index.js";
47
47
  import { HideShow, HideShowProps } from "./HideShow/index.js";
48
48
  import { Code, CodeCompAttributes } from "./IDE/Code.js";
49
- import { CodeBlock, CodeBlockProps, CodeDefault } from "./IDE/CodeBlockClient.js";
49
+ import { CodeBlock, CodeBlockProps, CodeDefault, CodeLanguage } from "./IDE/CodeBlockClient.js";
50
50
  import { FileList, FileListProps } from "./IDE/FileList.js";
51
51
  import { IDE, IDEProps } from "./IDE/IDE.js";
52
52
  import { InformationTag } from "./InformationTag/index.js";
@@ -61,7 +61,6 @@ import { Logo } from "./Logo/Logo.js";
61
61
  import { LogoTextOnly } from "./Logo/LogoTextOnly.js";
62
62
  import { LogoWithText } from "./Logo/LogoWithText.js";
63
63
  import { LogoWithTextBelow } from "./Logo/LogoWithTextBelow.js";
64
- import { MarkdownRenderer, getIntlayerMarkdownOptions } from "./MarkDownRender/MarkDownRender.js";
65
64
  import { MaxHeightSmoother } from "./MaxHeightSmoother/index.js";
66
65
  import { MaxWidthSmoother } from "./MaxWidthSmoother/index.js";
67
66
  import { Modal, ModalSize } from "./Modal/Modal.js";
@@ -101,4 +100,5 @@ import { Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, T
101
100
  import { Toaster } from "./Toaster/Toaster.js";
102
101
  import { reducer, toast, useToast } from "./Toaster/useToast.js";
103
102
  import { WithResizer } from "./WithResizer/index.js";
104
- export { Accordion, AccordionProps, AutoCompleteTextarea, AutoSizedTextArea, AutoSizedTextAreaProps, AutocompleteTextAreaProps, Avatar, AvatarProps, Badge, BadgeColor, BadgeProps, BadgeSize, BadgeVariant, BadgeVariantProps, Breadcrumb, BreadcrumbLink, BreadcrumbProps, Browser, BrowserProps, Button, ButtonColor, ButtonProps, ButtonSize, ButtonTextAlign, ButtonVariant, Carousel, Checkbox, CheckboxColor, CheckboxProps, CheckboxSize, ClickOutsideDiv, ClickOutsideDivProps, Code, CodeBlock, CodeBlockProps, CodeCompAttributes, CodeDefault, CollapsibleTable, CollapsibleTableProps, Command, CommandRoot, Container, ContainerBackground, ContainerBorderColor, ContainerGap, ContainerPadding, ContainerProps, ContainerRoundedSize, ContainerSeparator, ContainerTransparency, ContentEditor, ContentSelector, CopyButton, CopyToClipboard, CopyToClipboardProps, DesktopThemeSwitcher, Detail, DetailProps, DictionaryCreationForm, DictionaryEditor, DictionaryFieldEditor, DiscordLogo, DotPattern, DropDown, DropDownAlign, DropDownProps, DropDownType, DropDownYAlign, EditableFieldInput, EditableFieldTextArea, ExpandCollapse, ExpandCollapseProps, FacebookLogo, FileList, FileListProps, Flag, flags_d_exports as Flags, Footer, FooterLink, Form, GridPattern, H1, H2, H3, H4, H5, H6, HTMLRenderer, HeadingProps, HeightResizer, HideShow, HideShowProps, IDE, IDEProps, InformationTag, Input, InputIndicator, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputPassword, InputProps, InputSize, InputVariant, InstagramLogo, KeyList, KeyPathBreadcrumb, KeyboardScreenAdapter, KeyboardShortcut, KeyboardShortcutProps, KeyboardShortcutType, Label, LabelProps, LanguageBackground, LanguageSection, Link, LinkColor, LinkGroup, LinkProps, LinkRoundedSize, LinkSize, LinkUnderlined, LinkVariant, LinkedInLogo, Loader, LoaderProps, LocaleSwitcher, LocaleSwitcherContent, LocaleSwitcherContentProps, LocaleSwitcherContentProvider, LocaleSwitcherProps, Logo, LogoTextOnly, LogoWithText, LogoWithTextBelow, MarkdownRenderer, MaxHeightSmoother, MaxWidthSmoother, MobileThemeSwitcher, Modal, ModalSize, Modes, MultiSelect, Navbar, NumberItemsSelector, NumberItemsSelectorProps, OTPInput, OTPInputContext, OTPInputProps, Pagination, PaginationProps, PaginationSize, PaginationVariant, PanelProps, Popover, PopoverProps, PopoverStatic, PopoverType, PopoverXAlign, PopoverYAlign, PressableSpan, ProductHuntLogo, RenderProps, RightDrawer, SaveForm, SearchInput, Select, SelectContent, SelectContentPosition, SelectLabel, SelectSeparator, ShowingResultsNumberItems, ShowingResultsNumberItemsProps, SlotProps, SocialNetworks, Spotlight, SwitchSelector, SwitchSelectorChoice, SwitchSelectorChoices, SwitchSelectorColor, SwitchSelectorProps, SwitchSelectorSize, Tab, TabItemProps, TabProps, TabSelector, TabSelectorColor, TabSelectorItemProps, TabSelectorProps, Table, Tag, TagBackground, TagBorder, TagColor, TagRoundedSize, TagSize, Terminal, TerminalProps, TextArea, TextAreaProps, TextEditor, TextEditorContainer, TextEditorProps, TiktokLogo, Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, TriggerProps, VersionSwitcher, VersionSwitcherProps, VersionSwitcherProvider, WithResizer, XLogo, YoutubeLogo, badgeVariants, buttonVariants, checkIsExternalLink, checkboxVariants, containerVariants, drawerManager, getCapitals, getIntlayerHTMLOptions, getIntlayerMarkdownOptions, inputSlotVariants, inputVariants, isTextChildren, linkVariants, paginationVariants, reducer, toast, traceKeys, useCopyToClipboard, useDebounce, useForm, useFormField, useLocaleSwitcherContent, usePasswordManagerBadge, usePrevious, useRightDrawer, useToast, useVersionSwitcher };
103
+ import { MarkdownRenderer, baseMarkdownComponents, getIntlayerMarkdownOptions } from "./MarkDownRender/MarkDownRender.js";
104
+ export { Accordion, AccordionProps, AutoCompleteTextarea, AutoSizedTextArea, AutoSizedTextAreaProps, AutocompleteTextAreaProps, Avatar, AvatarProps, Badge, BadgeColor, BadgeProps, BadgeSize, BadgeVariant, BadgeVariantProps, Breadcrumb, BreadcrumbLink, BreadcrumbProps, Browser, BrowserProps, Button, ButtonColor, ButtonProps, ButtonSize, ButtonTextAlign, ButtonVariant, Carousel, Checkbox, CheckboxColor, CheckboxProps, CheckboxSize, ClickOutsideDiv, ClickOutsideDivProps, Code, CodeBlock, CodeBlockProps, CodeCompAttributes, CodeDefault, CodeLanguage, CollapsibleTable, CollapsibleTableProps, Command, CommandRoot, Container, ContainerBackground, ContainerBorderColor, ContainerGap, ContainerPadding, ContainerProps, ContainerRoundedSize, ContainerSeparator, ContainerTransparency, ContentEditor, ContentSelector, CopyButton, CopyToClipboard, CopyToClipboardProps, DesktopThemeSwitcher, Detail, DetailProps, DictionaryCreationForm, DictionaryEditor, DictionaryFieldEditor, DiscordLogo, DotPattern, DropDown, DropDownAlign, DropDownProps, DropDownType, DropDownYAlign, EditableFieldInput, EditableFieldTextArea, ExpandCollapse, ExpandCollapseProps, FacebookLogo, FileList, FileListProps, Flag, flags_d_exports as Flags, Footer, FooterLink, Form, GridPattern, H1, H2, H3, H4, H5, H6, HTMLRenderer, HeadingProps, HeightResizer, HideShow, HideShowProps, IDE, IDEProps, InformationTag, Input, InputIndicator, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputPassword, InputProps, InputSize, InputVariant, InstagramLogo, KeyList, KeyPathBreadcrumb, KeyboardScreenAdapter, KeyboardShortcut, KeyboardShortcutProps, KeyboardShortcutType, Label, LabelProps, LanguageBackground, LanguageSection, Link, LinkColor, LinkGroup, LinkProps, LinkRoundedSize, LinkSize, LinkUnderlined, LinkVariant, LinkedInLogo, Loader, LoaderProps, LocaleSwitcher, LocaleSwitcherContent, LocaleSwitcherContentProps, LocaleSwitcherContentProvider, LocaleSwitcherProps, Logo, LogoTextOnly, LogoWithText, LogoWithTextBelow, MarkdownRenderer, MaxHeightSmoother, MaxWidthSmoother, MobileThemeSwitcher, Modal, ModalSize, Modes, MultiSelect, Navbar, NumberItemsSelector, NumberItemsSelectorProps, OTPInput, OTPInputContext, OTPInputProps, Pagination, PaginationProps, PaginationSize, PaginationVariant, PanelProps, Popover, PopoverProps, PopoverStatic, PopoverType, PopoverXAlign, PopoverYAlign, PressableSpan, ProductHuntLogo, RenderProps, RightDrawer, SaveForm, SearchInput, Select, SelectContent, SelectContentPosition, SelectLabel, SelectSeparator, ShowingResultsNumberItems, ShowingResultsNumberItemsProps, SlotProps, SocialNetworks, Spotlight, SwitchSelector, SwitchSelectorChoice, SwitchSelectorChoices, SwitchSelectorColor, SwitchSelectorProps, SwitchSelectorSize, Tab, TabItemProps, TabProps, TabSelector, TabSelectorColor, TabSelectorItemProps, TabSelectorProps, Table, Tag, TagBackground, TagBorder, TagColor, TagRoundedSize, TagSize, Terminal, TerminalProps, TextArea, TextAreaProps, TextEditor, TextEditorContainer, TextEditorProps, TiktokLogo, Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, TriggerProps, VersionSwitcher, VersionSwitcherProps, VersionSwitcherProvider, WithResizer, XLogo, YoutubeLogo, badgeVariants, baseMarkdownComponents, buttonVariants, checkIsExternalLink, checkboxVariants, containerVariants, drawerManager, getCapitals, getIntlayerHTMLOptions, getIntlayerMarkdownOptions, inputSlotVariants, inputVariants, isTextChildren, linkVariants, paginationVariants, reducer, toast, traceKeys, useCopyToClipboard, useDebounce, useForm, useFormField, useLocaleSwitcherContent, usePasswordManagerBadge, usePrevious, useRightDrawer, useToast, useVersionSwitcher };
@@ -1,4 +1,5 @@
1
- import { useAddDictionary, useAddNewAccessKey, useAddOrganization, useAddOrganizationMember, useAddPasskey, useAddProject, useAddTag, useAppQuery, useAskDocQuestion, useAskResetPassword, useAuditContentDeclaration, useAuditContentDeclarationField, useAuditContentDeclarationMetadata, useAuditScan, useAuditTag, useAutocomplete, useBitbucketAuth, useBitbucketCheckConfig, useBitbucketGetConfigFile, useBitbucketRepos, useCancelSubscription, useChangePassword, useCreateUser, useDeleteAccessKey, useDeleteDictionary, useDeleteOrganization, useDeletePasskey, useDeleteProject, useDeleteSSOProvider, useDeleteTag, useDeleteUser, useDisableTwoFactor, useEnableTwoFactor, useGetCIConfig, useGetDictionaries, useGetDictionariesKeys, useGetDictionary, useGetDiscussions, useGetDiscussionsData, useGetEditorDictionaries, useGetNewsletterStatus, useGetOrganizations, useGetPricing, useGetProjects, useGetRecursiveAuditStatus, useGetSubscription, useGetTags, useGetUserByAccount, useGetUserById, useGetUsers, useGetVerifyEmailStatus, useGithubAuth, useGithubCheckConfig, useGithubGetAuthUrl, useGithubGetConfigFile, useGithubRepos, useGitlabAuth, useGitlabCheckConfig, useGitlabGetConfigFile, useGitlabProjects, useInfiniteGetDictionaries, useListPasskeys, useListSSOProviders, useLogin, useLogout, usePushCIConfig, usePushDictionaries, useQueryClient, useRefreshAccessKey, useRegister, useRegisterSSO, useResetPassword, useSearchDoc, useSelectOrganization, useSelectProject, useSignInMagicLink, useSignInPasskey, useSignInSSO, useStartRecursiveAudit, useSubscribeToNewsletter, useToggleShowcaseLike, useTranslateJSONDeclaration, useTriggerBuild, useTriggerWebhook, useUnselectOrganization, useUnselectProject, useUnsubscribeFromNewsletter, useUpdateDictionary, useUpdateOrganization, useUpdateOrganizationMembers, useUpdateOrganizationMembersById, useUpdateProject, useUpdateProjectMembers, useUpdateTag, useUpdateUser, useVerifyBackupCode, useVerifyEmail, useVerifyTotp, useWriteDictionary } from "./reactQuery.js";
1
+ import { UseIntlayerAuthProps, useIntlayerAuth, useIntlayerOAuth } from "./useIntlayerAPI.js";
2
+ import { useAddDictionary, useAddNewAccessKey, useAddOrganization, useAddOrganizationMember, useAddPasskey, useAddProject, useAddTag, useAppQuery, useAskDocQuestion, useAskResetPassword, useAuditContentDeclaration, useAuditContentDeclarationField, useAuditContentDeclarationMetadata, useAuditScan, useAuditTag, useAutocomplete, useBitbucketAuth, useBitbucketCheckConfig, useBitbucketGetConfigFile, useBitbucketRepos, useCancelSubscription, useChangePassword, useCreateUser, useDeleteAccessKey, useDeleteDictionary, useDeleteOrganization, useDeletePasskey, useDeleteProject, useDeleteSSOProvider, useDeleteShowcaseProject, useDeleteTag, useDeleteUser, useDisableTwoFactor, useEnableTwoFactor, useGetCIConfig, useGetDictionaries, useGetDictionariesKeys, useGetDictionary, useGetDiscussions, useGetDiscussionsData, useGetEditorDictionaries, useGetNewsletterStatus, useGetOrganizations, useGetOtherShowcaseProjects, useGetPricing, useGetProjects, useGetRecursiveAuditStatus, useGetShowcaseProjectById, useGetShowcaseProjects, useGetSubscription, useGetTags, useGetUserByAccount, useGetUserById, useGetUsers, useGetVerifyEmailStatus, useGithubAuth, useGithubCheckConfig, useGithubGetAuthUrl, useGithubGetConfigFile, useGithubRepos, useGitlabAuth, useGitlabCheckConfig, useGitlabGetConfigFile, useGitlabProjects, useInfiniteGetDictionaries, useListPasskeys, useListSSOProviders, useLogin, useLogout, usePushCIConfig, usePushDictionaries, useQueryClient, useRefreshAccessKey, useRegister, useRegisterSSO, useResetPassword, useSearchDoc, useSelectOrganization, useSelectProject, useSignInMagicLink, useSignInPasskey, useSignInSSO, useStartRecursiveAudit, useSubmitShowcaseProject, useSubscribeToNewsletter, useToggleShowcaseDownvote, useToggleShowcaseUpvote, useTranslateJSONDeclaration, useTriggerBuild, useTriggerWebhook, useUnselectOrganization, useUnselectProject, useUnsubscribeFromNewsletter, useUpdateDictionary, useUpdateOrganization, useUpdateOrganizationMembers, useUpdateOrganizationMembersById, useUpdateProject, useUpdateProjectMembers, useUpdateShowcaseProject, useUpdateTag, useUpdateUser, useVerifyBackupCode, useVerifyEmail, useVerifyTotp, useWriteDictionary } from "./reactQuery.js";
2
3
  import { useAuth } from "./useAuth/useAuth.js";
3
4
  import { useOAuth2 } from "./useAuth/useOAuth2.js";
4
5
  import { UseSessionResult, useSession } from "./useAuth/useSession.js";
@@ -6,7 +7,6 @@ import { SizeType, calculateIsMobile, checkIsIOS, checkIsIphoneOrSafariDevice, c
6
7
  import { useGetElementById } from "./useGetElementById.js";
7
8
  import { useGetElementOrWindow } from "./useGetElementOrWindow.js";
8
9
  import { HorizontalSwipeConfig, HorizontalSwipeHook, useHorizontalSwipe } from "./useHorizontalSwipe.js";
9
- import { useIntlayerAuth, useIntlayerOAuth } from "./useIntlayerAPI.js";
10
10
  import { useIsDarkMode } from "./useIsDarkMode.js";
11
11
  import { useIsMounted } from "./useIsMounted.js";
12
12
  import { ItemSelectorOrientation, useItemSelector } from "./useItemSelector.js";
@@ -18,4 +18,4 @@ import { useScrollDetection } from "./useScrollDetection.js";
18
18
  import { useScrollY } from "./useScrollY.js";
19
19
  import { useSearch } from "./useSearch.js";
20
20
  import { useUser } from "./useUser/index.js";
21
- export { HorizontalSwipeConfig, HorizontalSwipeHook, ItemSelectorOrientation, SizeType, UseSessionResult, calculateIsMobile, checkIsIOS, checkIsIphoneOrSafariDevice, checkIsMac, checkIsMobileScreen, checkIsMobileUserAgent, getBreakpointFromSize, useAddDictionary, useAddNewAccessKey, useAddOrganization, useAddOrganizationMember, useAddPasskey, useAddProject, useAddTag, useAppQuery, useAskDocQuestion, useAskResetPassword, useAuditContentDeclaration, useAuditContentDeclarationField, useAuditContentDeclarationMetadata, useAuditScan, useAuditTag, useAuth, useAutocomplete, useBitbucketAuth, useBitbucketCheckConfig, useBitbucketGetConfigFile, useBitbucketRepos, useCancelSubscription, useChangePassword, useCreateUser, useDeleteAccessKey, useDeleteDictionary, useDeleteOrganization, useDeletePasskey, useDeleteProject, useDeleteSSOProvider, useDeleteTag, useDeleteUser, useDevice, useDisableTwoFactor, useEnableTwoFactor, useGetCIConfig, useGetDictionaries, useGetDictionariesKeys, useGetDictionary, useGetDiscussions, useGetDiscussionsData, useGetEditorDictionaries, useGetElementById, useGetElementOrWindow, useGetNewsletterStatus, useGetOrganizations, useGetPricing, useGetProjects, useGetRecursiveAuditStatus, useGetSubscription, useGetTags, useGetUserByAccount, useGetUserById, useGetUsers, useGetVerifyEmailStatus, useGithubAuth, useGithubCheckConfig, useGithubGetAuthUrl, useGithubGetConfigFile, useGithubRepos, useGitlabAuth, useGitlabCheckConfig, useGitlabGetConfigFile, useGitlabProjects, useHorizontalSwipe, useInfiniteGetDictionaries, useIntlayerAuth, useIntlayerOAuth, useIsDarkMode, useIsMounted, useItemSelector, useKeyboardDetector, useListPasskeys, useListSSOProviders, useLogin, useLogout, useOAuth2, usePersistedStore, usePushCIConfig, usePushDictionaries, useQueryClient, useRefreshAccessKey, useRegister, useRegisterSSO, useResetPassword, useScreenWidth, useScrollBlockage, useScrollDetection, useScrollY, useSearch, useSearchDoc, useSelectOrganization, useSelectProject, useSession, useSignInMagicLink, useSignInPasskey, useSignInSSO, useStartRecursiveAudit, useSubscribeToNewsletter, useToggleShowcaseLike, useTranslateJSONDeclaration, useTriggerBuild, useTriggerWebhook, useUnselectOrganization, useUnselectProject, useUnsubscribeFromNewsletter, useUpdateDictionary, useUpdateOrganization, useUpdateOrganizationMembers, useUpdateOrganizationMembersById, useUpdateProject, useUpdateProjectMembers, useUpdateTag, useUpdateUser, useUser, useVerifyBackupCode, useVerifyEmail, useVerifyTotp, useWriteDictionary };
21
+ export { HorizontalSwipeConfig, HorizontalSwipeHook, ItemSelectorOrientation, SizeType, UseIntlayerAuthProps, UseSessionResult, calculateIsMobile, checkIsIOS, checkIsIphoneOrSafariDevice, checkIsMac, checkIsMobileScreen, checkIsMobileUserAgent, getBreakpointFromSize, useAddDictionary, useAddNewAccessKey, useAddOrganization, useAddOrganizationMember, useAddPasskey, useAddProject, useAddTag, useAppQuery, useAskDocQuestion, useAskResetPassword, useAuditContentDeclaration, useAuditContentDeclarationField, useAuditContentDeclarationMetadata, useAuditScan, useAuditTag, useAuth, useAutocomplete, useBitbucketAuth, useBitbucketCheckConfig, useBitbucketGetConfigFile, useBitbucketRepos, useCancelSubscription, useChangePassword, useCreateUser, useDeleteAccessKey, useDeleteDictionary, useDeleteOrganization, useDeletePasskey, useDeleteProject, useDeleteSSOProvider, useDeleteShowcaseProject, useDeleteTag, useDeleteUser, useDevice, useDisableTwoFactor, useEnableTwoFactor, useGetCIConfig, useGetDictionaries, useGetDictionariesKeys, useGetDictionary, useGetDiscussions, useGetDiscussionsData, useGetEditorDictionaries, useGetElementById, useGetElementOrWindow, useGetNewsletterStatus, useGetOrganizations, useGetOtherShowcaseProjects, useGetPricing, useGetProjects, useGetRecursiveAuditStatus, useGetShowcaseProjectById, useGetShowcaseProjects, useGetSubscription, useGetTags, useGetUserByAccount, useGetUserById, useGetUsers, useGetVerifyEmailStatus, useGithubAuth, useGithubCheckConfig, useGithubGetAuthUrl, useGithubGetConfigFile, useGithubRepos, useGitlabAuth, useGitlabCheckConfig, useGitlabGetConfigFile, useGitlabProjects, useHorizontalSwipe, useInfiniteGetDictionaries, useIntlayerAuth, useIntlayerOAuth, useIsDarkMode, useIsMounted, useItemSelector, useKeyboardDetector, useListPasskeys, useListSSOProviders, useLogin, useLogout, useOAuth2, usePersistedStore, usePushCIConfig, usePushDictionaries, useQueryClient, useRefreshAccessKey, useRegister, useRegisterSSO, useResetPassword, useScreenWidth, useScrollBlockage, useScrollDetection, useScrollY, useSearch, useSearchDoc, useSelectOrganization, useSelectProject, useSession, useSignInMagicLink, useSignInPasskey, useSignInSSO, useStartRecursiveAudit, useSubmitShowcaseProject, useSubscribeToNewsletter, useToggleShowcaseDownvote, useToggleShowcaseUpvote, useTranslateJSONDeclaration, useTriggerBuild, useTriggerWebhook, useUnselectOrganization, useUnselectProject, useUnsubscribeFromNewsletter, useUpdateDictionary, useUpdateOrganization, useUpdateOrganizationMembers, useUpdateOrganizationMembersById, useUpdateProject, useUpdateProjectMembers, useUpdateShowcaseProject, useUpdateTag, useUpdateUser, useUser, useVerifyBackupCode, useVerifyEmail, useVerifyTotp, useWriteDictionary };
@@ -1,5 +1,6 @@
1
+ import { UseIntlayerAuthProps } from "./useIntlayerAPI.js";
1
2
  import { GetRecursiveAuditStatusParams } from "@intlayer/api";
2
- import { GetCheckoutSessionBody, GetDictionariesParams, GetDictionaryParams, GetDictionaryQuery, GetOrganizationsParams, GetPricingBody, GetPricingResult, GetProjectsParams, GetTagsParams, GetUsersParams, SearchDocUtilParams } from "@intlayer/backend";
3
+ import { GetCheckoutSessionBody, GetDictionariesParams, GetDictionaryParams, GetDictionaryQuery, GetOrganizationsParams, GetPricingBody, GetPricingResult, GetProjectsParams, GetShowcaseProjectByIdParams, GetShowcaseProjectsResult, GetTagsParams, GetUsersParams, OtherShowcaseProjectsQuery, SearchDocUtilParams, ShowcaseProjectsQuery } from "@intlayer/backend";
3
4
  import { UseQueryOptions, useQueryClient } from "@tanstack/react-query";
4
5
 
5
6
  //#region src/hooks/reactQuery.d.ts
@@ -155,7 +156,14 @@ declare const useWriteDictionary: () => any;
155
156
  /**
156
157
  * Showcase
157
158
  */
158
- declare const useToggleShowcaseLike: () => any;
159
+ declare const useGetShowcaseProjects: (query?: ShowcaseProjectsQuery, options?: Partial<UseQueryOptions<GetShowcaseProjectsResult>>) => QueryObserverResult<TData, TError>;
160
+ declare const useGetShowcaseProjectById: (projectId: GetShowcaseProjectByIdParams["projectId"], options?: Partial<UseQueryOptions>) => QueryObserverResult<TData, TError>;
161
+ declare const useGetOtherShowcaseProjects: (query: OtherShowcaseProjectsQuery, options?: Partial<UseQueryOptions>) => QueryObserverResult<TData, TError>;
162
+ declare const useSubmitShowcaseProject: (props?: UseIntlayerAuthProps) => any;
163
+ declare const useDeleteShowcaseProject: (props?: UseIntlayerAuthProps) => any;
164
+ declare const useToggleShowcaseUpvote: (props?: UseIntlayerAuthProps) => any;
165
+ declare const useToggleShowcaseDownvote: (props?: UseIntlayerAuthProps) => any;
166
+ declare const useUpdateShowcaseProject: (props?: UseIntlayerAuthProps) => any;
159
167
  //#endregion
160
- export { useAddDictionary, useAddNewAccessKey, useAddOrganization, useAddOrganizationMember, useAddPasskey, useAddProject, useAddTag, useAppQuery, useAskDocQuestion, useAskResetPassword, useAuditContentDeclaration, useAuditContentDeclarationField, useAuditContentDeclarationMetadata, useAuditScan, useAuditTag, useAutocomplete, useBitbucketAuth, useBitbucketCheckConfig, useBitbucketGetConfigFile, useBitbucketRepos, useCancelSubscription, useChangePassword, useCreateUser, useDeleteAccessKey, useDeleteDictionary, useDeleteOrganization, useDeletePasskey, useDeleteProject, useDeleteSSOProvider, useDeleteTag, useDeleteUser, useDisableTwoFactor, useEnableTwoFactor, useGetCIConfig, useGetDictionaries, useGetDictionariesKeys, useGetDictionary, useGetDiscussions, useGetDiscussionsData, useGetEditorDictionaries, useGetNewsletterStatus, useGetOrganizations, useGetPricing, useGetProjects, useGetRecursiveAuditStatus, useGetSubscription, useGetTags, useGetUserByAccount, useGetUserById, useGetUsers, useGetVerifyEmailStatus, useGithubAuth, useGithubCheckConfig, useGithubGetAuthUrl, useGithubGetConfigFile, useGithubRepos, useGitlabAuth, useGitlabCheckConfig, useGitlabGetConfigFile, useGitlabProjects, useInfiniteGetDictionaries, useListPasskeys, useListSSOProviders, useLogin, useLogout, usePushCIConfig, usePushDictionaries, useQueryClient, useRefreshAccessKey, useRegister, useRegisterSSO, useResetPassword, useSearchDoc, useSelectOrganization, useSelectProject, useSignInMagicLink, useSignInPasskey, useSignInSSO, useStartRecursiveAudit, useSubscribeToNewsletter, useToggleShowcaseLike, useTranslateJSONDeclaration, useTriggerBuild, useTriggerWebhook, useUnselectOrganization, useUnselectProject, useUnsubscribeFromNewsletter, useUpdateDictionary, useUpdateOrganization, useUpdateOrganizationMembers, useUpdateOrganizationMembersById, useUpdateProject, useUpdateProjectMembers, useUpdateTag, useUpdateUser, useVerifyBackupCode, useVerifyEmail, useVerifyTotp, useWriteDictionary };
168
+ export { useAddDictionary, useAddNewAccessKey, useAddOrganization, useAddOrganizationMember, useAddPasskey, useAddProject, useAddTag, useAppQuery, useAskDocQuestion, useAskResetPassword, useAuditContentDeclaration, useAuditContentDeclarationField, useAuditContentDeclarationMetadata, useAuditScan, useAuditTag, useAutocomplete, useBitbucketAuth, useBitbucketCheckConfig, useBitbucketGetConfigFile, useBitbucketRepos, useCancelSubscription, useChangePassword, useCreateUser, useDeleteAccessKey, useDeleteDictionary, useDeleteOrganization, useDeletePasskey, useDeleteProject, useDeleteSSOProvider, useDeleteShowcaseProject, useDeleteTag, useDeleteUser, useDisableTwoFactor, useEnableTwoFactor, useGetCIConfig, useGetDictionaries, useGetDictionariesKeys, useGetDictionary, useGetDiscussions, useGetDiscussionsData, useGetEditorDictionaries, useGetNewsletterStatus, useGetOrganizations, useGetOtherShowcaseProjects, useGetPricing, useGetProjects, useGetRecursiveAuditStatus, useGetShowcaseProjectById, useGetShowcaseProjects, useGetSubscription, useGetTags, useGetUserByAccount, useGetUserById, useGetUsers, useGetVerifyEmailStatus, useGithubAuth, useGithubCheckConfig, useGithubGetAuthUrl, useGithubGetConfigFile, useGithubRepos, useGitlabAuth, useGitlabCheckConfig, useGitlabGetConfigFile, useGitlabProjects, useInfiniteGetDictionaries, useListPasskeys, useListSSOProviders, useLogin, useLogout, usePushCIConfig, usePushDictionaries, useQueryClient, useRefreshAccessKey, useRegister, useRegisterSSO, useResetPassword, useSearchDoc, useSelectOrganization, useSelectProject, useSignInMagicLink, useSignInPasskey, useSignInSSO, useStartRecursiveAudit, useSubmitShowcaseProject, useSubscribeToNewsletter, useToggleShowcaseDownvote, useToggleShowcaseUpvote, useTranslateJSONDeclaration, useTriggerBuild, useTriggerWebhook, useUnselectOrganization, useUnselectProject, useUnsubscribeFromNewsletter, useUpdateDictionary, useUpdateOrganization, useUpdateOrganizationMembers, useUpdateOrganizationMembersById, useUpdateProject, useUpdateProjectMembers, useUpdateShowcaseProject, useUpdateTag, useUpdateUser, useVerifyBackupCode, useVerifyEmail, useVerifyTotp, useWriteDictionary };
161
169
  //# sourceMappingURL=reactQuery.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"reactQuery.d.ts","names":[],"sources":["../../../src/hooks/reactQuery.ts"],"mappings":"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"}
1
+ {"version":3,"file":"reactQuery.d.ts","names":[],"sources":["../../../src/hooks/reactQuery.ts"],"mappings":"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"}
@@ -10,5 +10,5 @@ type UseIntlayerAuthProps = {
10
10
  declare const useIntlayerOAuth: (props?: UseIntlayerAuthProps) => IntlayerAPI;
11
11
  declare const useIntlayerAuth: (props?: UseIntlayerAuthProps) => AuthAPI;
12
12
  //#endregion
13
- export { useIntlayerAuth, useIntlayerOAuth };
13
+ export { UseIntlayerAuthProps, useIntlayerAuth, useIntlayerOAuth };
14
14
  //# sourceMappingURL=useIntlayerAPI.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useIntlayerAPI.d.ts","names":[],"sources":["../../../src/hooks/useIntlayerAPI.ts"],"mappings":";;;;;KAUK,oBAAA;EACH,OAAA,GAAU,cAAA;EACV,qBAAA,GAAwB,cAAA;AAAA;AAAA,cAGb,gBAAA,GAAoB,KAAA,GAAQ,oBAAA,KAAuB,WAAA;AAAA,cAiBnD,eAAA,GAAmB,KAAA,GAAQ,oBAAA,KAAuB,OAAA"}
1
+ {"version":3,"file":"useIntlayerAPI.d.ts","names":[],"sources":["../../../src/hooks/useIntlayerAPI.ts"],"mappings":";;;;;KAUY,oBAAA;EACV,OAAA,GAAU,cAAA;EACV,qBAAA,GAAwB,cAAA;AAAA;AAAA,cAGb,gBAAA,GAAoB,KAAA,GAAQ,oBAAA,KAAuB,WAAA;AAAA,cAiBnD,eAAA,GAAmB,KAAA,GAAQ,oBAAA,KAAuB,OAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intlayer/design-system",
3
- "version": "8.2.3",
3
+ "version": "8.2.4",
4
4
  "private": false,
5
5
  "description": "Intlayer design system, including UI components used in the Intlayer editor, website, and visual editor/CMS.",
6
6
  "keywords": [
@@ -173,7 +173,7 @@
173
173
  "@tanstack/react-query": "5.90.21",
174
174
  "@tanstack/react-query-devtools": "5.91.3",
175
175
  "clsx": "2.1.1",
176
- "framer-motion": "12.35.0",
176
+ "framer-motion": "12.35.1",
177
177
  "fuse.js": "7.1.0",
178
178
  "intlayer": "8.2.3",
179
179
  "lucide-react": "0.577.0",