@intlayer/design-system 8.9.6 → 8.9.7

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 (50) hide show
  1. package/dist/esm/components/Avatar/index.mjs +1 -1
  2. package/dist/esm/components/Avatar/index.mjs.map +1 -1
  3. package/dist/esm/components/Container/index.mjs +1 -1
  4. package/dist/esm/components/Container/index.mjs.map +1 -1
  5. package/dist/esm/components/DictionaryFieldEditor/NavigationView/NavigationViewNode.mjs +1 -1
  6. package/dist/esm/components/Input/OTPInput.mjs +1 -1
  7. package/dist/esm/components/Input/OTPInput.mjs.map +1 -1
  8. package/dist/esm/components/Pagination/Pagination.mjs +8 -5
  9. package/dist/esm/components/Pagination/Pagination.mjs.map +1 -1
  10. package/dist/esm/components/TechLogo/logos/Atlassian.mjs +22 -0
  11. package/dist/esm/components/TechLogo/logos/Atlassian.mjs.map +1 -0
  12. package/dist/esm/components/TechLogo/logos/Microsoft.mjs +44 -0
  13. package/dist/esm/components/TechLogo/logos/Microsoft.mjs.map +1 -0
  14. package/dist/esm/components/TechLogo/techLogos.mjs +5 -1
  15. package/dist/esm/components/TechLogo/techLogos.mjs.map +1 -1
  16. package/dist/esm/components/Toaster/Toast.mjs +2 -2
  17. package/dist/esm/components/Toaster/Toast.mjs.map +1 -1
  18. package/dist/esm/components/Toaster/index.mjs +2 -2
  19. package/dist/esm/components/index.mjs +2 -2
  20. package/dist/esm/hooks/index.mjs +2 -2
  21. package/dist/esm/hooks/reactQuery.mjs +36 -7
  22. package/dist/esm/hooks/reactQuery.mjs.map +1 -1
  23. package/dist/esm/hooks/useAuth/useOAuth2.mjs +1 -1
  24. package/dist/esm/hooks/useAuth/useSession.mjs +1 -1
  25. package/dist/types/components/Avatar/index.d.ts +1 -1
  26. package/dist/types/components/Badge/index.d.ts +1 -1
  27. package/dist/types/components/Button/Button.d.ts +4 -4
  28. package/dist/types/components/CollapsibleTable/CollapsibleTable.d.ts +2 -2
  29. package/dist/types/components/Command/index.d.ts +2 -2
  30. package/dist/types/components/Container/index.d.ts +6 -6
  31. package/dist/types/components/Input/Checkbox.d.ts +1 -1
  32. package/dist/types/components/Link/Link.d.ts +3 -3
  33. package/dist/types/components/Pagination/Pagination.d.ts +1 -1
  34. package/dist/types/components/SwitchSelector/SwitchSelector.d.ts +2 -2
  35. package/dist/types/components/SwitchSelector/VerticalSwitchSelector.d.ts +1 -1
  36. package/dist/types/components/TabSelector/TabSelector.d.ts +1 -1
  37. package/dist/types/components/Tag/index.d.ts +2 -2
  38. package/dist/types/components/TechLogo/logos/Atlassian.d.ts +7 -0
  39. package/dist/types/components/TechLogo/logos/Atlassian.d.ts.map +1 -0
  40. package/dist/types/components/TechLogo/logos/Microsoft.d.ts +7 -0
  41. package/dist/types/components/TechLogo/logos/Microsoft.d.ts.map +1 -0
  42. package/dist/types/components/TechLogo/techLogos.d.ts +4 -2
  43. package/dist/types/components/Toaster/Toast.d.ts +1 -1
  44. package/dist/types/components/Toaster/Toast.d.ts.map +1 -1
  45. package/dist/types/components/Toaster/index.d.ts +2 -2
  46. package/dist/types/components/index.d.ts +2 -2
  47. package/dist/types/hooks/index.d.ts +2 -2
  48. package/dist/types/hooks/reactQuery.d.ts +4 -1
  49. package/dist/types/hooks/reactQuery.d.ts.map +1 -1
  50. package/package.json +15 -15
@@ -61,10 +61,10 @@ declare enum ButtonTextAlign {
61
61
  */
62
62
  declare const buttonVariants: (props?: {
63
63
  size?: "sm" | "md" | "lg" | "xl" | "icon-sm" | "icon-md" | "icon-lg" | "icon-xl";
64
- color?: "text" | "error" | "custom" | "primary" | "secondary" | "destructive" | "success" | "neutral" | "light" | "dark" | "text-inverse" | "card" | "current";
65
- roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "full" | "4xl" | "5xl";
66
- variant?: "none" | "default" | "input" | "link" | "outline" | "hoverable" | "invisible-link" | "fade";
67
- textAlign?: "left" | "center" | "right";
64
+ color?: "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text" | "success" | "error" | "custom" | "text-inverse" | "card" | "current";
65
+ roundedSize?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "4xl" | "5xl";
66
+ variant?: "none" | "default" | "input" | "outline" | "hoverable" | "link" | "invisible-link" | "fade";
67
+ textAlign?: "left" | "right" | "center";
68
68
  isFullWidth?: boolean;
69
69
  } & _$class_variance_authority_types0.ClassProp) => string;
70
70
  /**
@@ -5,8 +5,8 @@ import { VariantProps } from "class-variance-authority";
5
5
  //#region src/components/CollapsibleTable/CollapsibleTable.d.ts
6
6
  declare const collapsibleTableVariants: (props?: {
7
7
  size?: "sm" | "md" | "lg" | "xl" | "full";
8
- variant?: "default" | "ghost" | "dark" | "outlined";
9
- spacing?: "sm" | "md" | "lg" | "none" | "auto";
8
+ variant?: "default" | "dark" | "ghost" | "outlined";
9
+ spacing?: "none" | "sm" | "md" | "lg" | "auto";
10
10
  } & _$class_variance_authority_types0.ClassProp) => string;
11
11
  interface CollapsibleTableProps extends Omit<HTMLAttributes<HTMLElement>, 'title'>, VariantProps<typeof collapsibleTableVariants> {
12
12
  /** Table title displayed in the header */
@@ -29,7 +29,7 @@ declare const Command: {
29
29
  ref?: React.Ref<HTMLInputElement>;
30
30
  } & {
31
31
  asChild?: boolean;
32
- }, "key" | keyof _$react.InputHTMLAttributes<HTMLInputElement> | "asChild">, "type" | "onChange" | "value"> & {
32
+ }, "key" | "asChild" | keyof _$react.InputHTMLAttributes<HTMLInputElement>>, "value" | "onChange" | "type"> & {
33
33
  value?: string;
34
34
  onValueChange?: (search: string) => void;
35
35
  } & _$react.RefAttributes<HTMLInputElement>>;
@@ -73,7 +73,7 @@ declare const Command: {
73
73
  ref?: React.Ref<HTMLDivElement>;
74
74
  } & {
75
75
  asChild?: boolean;
76
- }, "key" | keyof HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "disabled" | "value"> & {
76
+ }, "key" | keyof HTMLAttributes<HTMLDivElement> | "asChild">, "value" | "disabled" | "onSelect"> & {
77
77
  disabled?: boolean;
78
78
  onSelect?: (value: string) => void;
79
79
  value?: string;
@@ -8,14 +8,14 @@ import { VariantProps } from "class-variance-authority";
8
8
  * Provides flexible styling options for background, padding, borders, and layout
9
9
  */
10
10
  declare const containerVariants: (props?: {
11
- roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "full" | "3xl" | "4xl";
12
- transparency?: "xs" | "sm" | "md" | "lg" | "xl" | "none" | "full";
13
- padding?: "sm" | "md" | "lg" | "xl" | "2xl" | "none";
11
+ roundedSize?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full" | "4xl";
12
+ transparency?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full";
13
+ padding?: "none" | "sm" | "md" | "lg" | "xl" | "2xl";
14
14
  separator?: "both" | "without" | "x" | "y";
15
15
  border?: "none" | "with";
16
- borderColor?: "error" | "success" | "text" | "primary" | "secondary" | "neutral" | "warning" | "card";
17
- background?: "none" | "with" | "hoverable";
18
- gap?: "sm" | "md" | "lg" | "xl" | "2xl" | "none";
16
+ borderColor?: "error" | "success" | "primary" | "secondary" | "neutral" | "text" | "card" | "warning";
17
+ background?: "none" | "hoverable" | "with";
18
+ gap?: "none" | "sm" | "md" | "lg" | "xl" | "2xl";
19
19
  } & _$class_variance_authority_types0.ClassProp) => string;
20
20
  /** Available rounded corner sizes for the container */
21
21
  declare enum ContainerRoundedSize {
@@ -6,7 +6,7 @@ import { VariantProps } from "class-variance-authority";
6
6
  declare const checkboxVariants: (props?: {
7
7
  variant?: "default";
8
8
  size?: "xs" | "sm" | "md" | "lg";
9
- color?: "error" | "success" | "text" | "custom" | "primary" | "secondary" | "neutral" | "destructive" | "dark" | "light" | "text-inverse";
9
+ color?: "error" | "success" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text" | "custom" | "text-inverse";
10
10
  validationStyleEnabled?: "enabled" | "disabled";
11
11
  } & _$class_variance_authority_types0.ClassProp) => string;
12
12
  declare enum CheckboxSize {
@@ -53,9 +53,9 @@ declare enum LinkUnderlined {
53
53
  FALSE = "false"
54
54
  }
55
55
  declare const linkVariants: (props?: {
56
- variant?: "default" | "button" | "hoverable" | "invisible-link" | "button-outlined";
57
- roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "full";
58
- color?: "text" | "error" | "custom" | "primary" | "secondary" | "destructive" | "success" | "neutral" | "light" | "dark" | "text-inverse";
56
+ variant?: "default" | "hoverable" | "button" | "invisible-link" | "button-outlined";
57
+ roundedSize?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full";
58
+ color?: "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text" | "success" | "error" | "custom" | "text-inverse";
59
59
  size?: "sm" | "md" | "lg" | "xl" | "custom";
60
60
  underlined?: boolean | LinkUnderlined.DEFAULT;
61
61
  } & _$class_variance_authority_types0.ClassProp) => string;
@@ -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?: "text" | "primary" | "secondary" | "neutral" | "destructive";
8
+ color?: "primary" | "secondary" | "destructive" | "neutral" | "text";
9
9
  variant?: "default" | "bordered" | "ghost";
10
10
  } & _$class_variance_authority_types0.ClassProp) => string;
11
11
  declare enum PaginationSize {
@@ -37,14 +37,14 @@ type SwitchSelectorBaseProps<T = boolean> = {
37
37
  };
38
38
  type SwitchSelectorProps<T = boolean> = SwitchSelectorBaseProps<T> & VariantProps<typeof switchSelectorVariant> & VariantProps<typeof choiceVariant>;
39
39
  declare const switchSelectorVariant: (props?: {
40
- color?: "text" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark";
40
+ color?: "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text";
41
41
  disabled?: boolean;
42
42
  } & _$class_variance_authority_types0.ClassProp) => string;
43
43
  declare const choiceVariant: (props?: {
44
44
  size?: "sm" | "md" | "lg";
45
45
  } & _$class_variance_authority_types0.ClassProp) => string;
46
46
  declare const indicatorVariant: (props?: {
47
- color?: "text" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark";
47
+ color?: "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text";
48
48
  } & _$class_variance_authority_types0.ClassProp) => string;
49
49
  /**
50
50
  * Component that allows the user to select one of the provided choices.
@@ -5,7 +5,7 @@ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
5
5
 
6
6
  //#region src/components/SwitchSelector/VerticalSwitchSelector.d.ts
7
7
  declare const verticalSwitchSelectorVariant: (props?: {
8
- color?: "text" | "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark";
8
+ color?: "primary" | "secondary" | "destructive" | "neutral" | "light" | "dark" | "text";
9
9
  disabled?: boolean;
10
10
  } & _$class_variance_authority_types0.ClassProp) => string;
11
11
  declare const verticalChoiceVariant: (props?: {
@@ -15,7 +15,7 @@ declare enum TabSelectorColor {
15
15
  TEXT = "text"
16
16
  }
17
17
  declare const tabSelectorVariant: (props?: {
18
- color?: "text" | "primary" | "secondary" | "neutral" | "destructive" | "dark" | "light";
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;
@@ -185,8 +185,8 @@ declare enum TagBackground {
185
185
  WITH = "with"
186
186
  }
187
187
  declare const containerVariants: (props?: {
188
- roundedSize?: "sm" | "md" | "lg" | "xl" | "2xl" | "none" | "3xl" | "full";
189
- color?: "text" | "error" | "primary" | "success" | "neutral" | "warning" | "blue" | "yellow" | "green" | "red" | "orange" | "purple" | "pink" | "brown" | "gray" | "black" | "white";
188
+ roundedSize?: "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "full";
189
+ color?: "primary" | "neutral" | "text" | "success" | "error" | "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";
@@ -0,0 +1,7 @@
1
+ import { FC, SVGProps } from "react";
2
+
3
+ //#region src/components/TechLogo/logos/Atlassian.d.ts
4
+ declare const AtlassianLogo: FC<SVGProps<SVGSVGElement>>;
5
+ //#endregion
6
+ export { AtlassianLogo };
7
+ //# sourceMappingURL=Atlassian.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Atlassian.d.ts","names":[],"sources":["../../../../../src/components/TechLogo/logos/Atlassian.tsx"],"mappings":";;;cAEa,aAAA,EAAe,EAAA,CAAG,QAAA,CAAS,aAAA"}
@@ -0,0 +1,7 @@
1
+ import { FC, SVGProps } from "react";
2
+
3
+ //#region src/components/TechLogo/logos/Microsoft.d.ts
4
+ declare const MicrosoftLogo: FC<SVGProps<SVGSVGElement>>;
5
+ //#endregion
6
+ export { MicrosoftLogo };
7
+ //# sourceMappingURL=Microsoft.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Microsoft.d.ts","names":[],"sources":["../../../../../src/components/TechLogo/logos/Microsoft.tsx"],"mappings":";;;cAEa,aAAA,EAAe,EAAA,CAAG,QAAA,CAAS,aAAA"}
@@ -7,6 +7,7 @@ import { AdonisLogo } from "./logos/Adonis.js";
7
7
  import { AngularLogo } from "./logos/Angular.js";
8
8
  import { AnthropicLogo } from "./logos/Anthropic.js";
9
9
  import { AstroLogo } from "./logos/Astro.js";
10
+ import { AtlassianLogo } from "./logos/Atlassian.js";
10
11
  import { ChatGPTLogo } from "./logos/ChatGPT.js";
11
12
  import { ClaudeLogo } from "./logos/Claude.js";
12
13
  import { DeepSeekLogo } from "./logos/DeepSeek.js";
@@ -18,6 +19,7 @@ import { GrokLogo } from "./logos/Grok.js";
18
19
  import { HonoLogo } from "./logos/Hono.js";
19
20
  import { LitLogo } from "./logos/Lit.js";
20
21
  import { LynxLogo } from "./logos/Lynx.js";
22
+ import { MicrosoftLogo } from "./logos/Microsoft.js";
21
23
  import { MistralLogo } from "./logos/Mistral.js";
22
24
  import { NestJSLogo } from "./logos/NestJS.js";
23
25
  import { NextJSLogo } from "./logos/Nextjs.js";
@@ -37,8 +39,8 @@ import { VuejsLogo } from "./logos/Vuejs.js";
37
39
 
38
40
  //#region src/components/TechLogo/techLogos.d.ts
39
41
  declare namespace techLogos_d_exports {
40
- export { AdonisLogo as ADONIS, AngularLogo as ANGULAR, AnthropicLogo as ANTHROPIC, AstroLogo as ASTRO, BitbucketLogo as BITBUCKET, ChatGPTLogo as CHATGPT, ClaudeLogo as CLAUDE, DeepSeekLogo as DEEPSEEK, ExpressLogo as EXPRESS, FastifyLogo as FASTIFY, GeminiLogo as GEMINI, GitHubLogo as GITHUB, GitLabLogo as GITLAB, GoogleLogo as GOOGLE, GoogleAILogo as GOOGLE_AI, GrokLogo as GROK, HonoLogo as HONO, LinkedInLogo as LINKEDIN, LitLogo as LIT, LynxLogo as LYNX, MistralLogo as MISTRAL, NestJSLogo as NESTJS, NextJSLogo as NEXTJS, NodejsLogo as NODE, NuxtLogo as NUXT, OllamaLogo as OLLAMA, OpenAILogo as OPENAI, PerplexityLogo as PERPLEXITY, PreactLogo as PREACT, ReactLogo as REACT, SolidLogo as SOLID, SvelteLogo as SVELTE, TanstackLogo as TANSTACK, JavaScriptLogo as VANILLA, ViteLogo as VITE, VuejsLogo as VUE };
42
+ export { AdonisLogo as ADONIS, AngularLogo as ANGULAR, AnthropicLogo as ANTHROPIC, AstroLogo as ASTRO, AtlassianLogo as ATLASSIAN, BitbucketLogo as BITBUCKET, ChatGPTLogo as CHATGPT, ClaudeLogo as CLAUDE, DeepSeekLogo as DEEPSEEK, ExpressLogo as EXPRESS, FastifyLogo as FASTIFY, GeminiLogo as GEMINI, GitHubLogo as GITHUB, GitLabLogo as GITLAB, GoogleLogo as GOOGLE, GoogleAILogo as GOOGLE_AI, GrokLogo as GROK, HonoLogo as HONO, LinkedInLogo as LINKEDIN, LitLogo as LIT, LynxLogo as LYNX, MicrosoftLogo as MICROSOFT, MistralLogo as MISTRAL, NestJSLogo as NESTJS, NextJSLogo as NEXTJS, NodejsLogo as NODE, NuxtLogo as NUXT, OllamaLogo as OLLAMA, OpenAILogo as OPENAI, PerplexityLogo as PERPLEXITY, PreactLogo as PREACT, ReactLogo as REACT, SolidLogo as SOLID, SvelteLogo as SVELTE, TanstackLogo as TANSTACK, JavaScriptLogo as VANILLA, ViteLogo as VITE, VuejsLogo as VUE };
41
43
  }
42
44
  //#endregion
43
- export { AdonisLogo as ADONIS, AngularLogo as ANGULAR, AnthropicLogo as ANTHROPIC, AstroLogo as ASTRO, BitbucketLogo as BITBUCKET, ChatGPTLogo as CHATGPT, ClaudeLogo as CLAUDE, DeepSeekLogo as DEEPSEEK, ExpressLogo as EXPRESS, FastifyLogo as FASTIFY, GeminiLogo as GEMINI, GitHubLogo as GITHUB, GitLabLogo as GITLAB, GoogleLogo as GOOGLE, GoogleAILogo as GOOGLE_AI, GrokLogo as GROK, HonoLogo as HONO, LinkedInLogo as LINKEDIN, LitLogo as LIT, LynxLogo as LYNX, MistralLogo as MISTRAL, NestJSLogo as NESTJS, NextJSLogo as NEXTJS, NodejsLogo as NODE, NuxtLogo as NUXT, OllamaLogo as OLLAMA, OpenAILogo as OPENAI, PerplexityLogo as PERPLEXITY, PreactLogo as PREACT, ReactLogo as REACT, SolidLogo as SOLID, SvelteLogo as SVELTE, TanstackLogo as TANSTACK, JavaScriptLogo as VANILLA, ViteLogo as VITE, VuejsLogo as VUE, techLogos_d_exports };
45
+ export { AdonisLogo as ADONIS, AngularLogo as ANGULAR, AnthropicLogo as ANTHROPIC, AstroLogo as ASTRO, AtlassianLogo as ATLASSIAN, BitbucketLogo as BITBUCKET, ChatGPTLogo as CHATGPT, ClaudeLogo as CLAUDE, DeepSeekLogo as DEEPSEEK, ExpressLogo as EXPRESS, FastifyLogo as FASTIFY, GeminiLogo as GEMINI, GitHubLogo as GITHUB, GitLabLogo as GITLAB, GoogleLogo as GOOGLE, GoogleAILogo as GOOGLE_AI, GrokLogo as GROK, HonoLogo as HONO, LinkedInLogo as LINKEDIN, LitLogo as LIT, LynxLogo as LYNX, MicrosoftLogo as MICROSOFT, MistralLogo as MISTRAL, NestJSLogo as NESTJS, NextJSLogo as NEXTJS, NodejsLogo as NODE, NuxtLogo as NUXT, OllamaLogo as OLLAMA, OpenAILogo as OPENAI, PerplexityLogo as PERPLEXITY, PreactLogo as PREACT, ReactLogo as REACT, SolidLogo as SOLID, SvelteLogo as SVELTE, TanstackLogo as TANSTACK, JavaScriptLogo as VANILLA, ViteLogo as VITE, VuejsLogo as VUE, techLogos_d_exports };
44
46
  //# sourceMappingURL=techLogos.d.ts.map
@@ -163,5 +163,5 @@ type ToastProps = ComponentProps<typeof Toast>;
163
163
  */
164
164
  type ToastActionElement = ReactElement<typeof ToastAction>;
165
165
  //#endregion
166
- export { Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport };
166
+ export { Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, toastVariants };
167
167
  //# sourceMappingURL=Toast.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Toast.d.ts","names":[],"sources":["../../../../src/components/Toaster/Toast.tsx"],"mappings":";;;;;;cAQM,aAAA,SAAa,eAAA;AAAA,cAEb,aAAA,EAAe,EAAA,CAAG,cAAA,QAAsB,eAAA,CAAgB,QAAA;;AAJA;;;;;AAEzB;;;;;;;;;;;;cAiC/B,aAAA,GAAa,KAAA;;IAkBlB,iCAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2CoC;;;;;;;;;;;;;cAF/B,KAAA,EAAO,EAAA,CACX,cAAA,QAAsB,eAAA,CAAgB,IAAA,IACpC,YAAA,QAAoB,aAAA;AA8C0C;;;;;;;;;;;;;;AAaF;;;;;;;;;;;;;;AAiCA;;;;;;;;AA9CE,cAA5D,WAAA,EAAa,EAAA,CAAG,cAAA,QAAsB,eAAA,CAAgB,MAAA;AAAA,cAatD,UAAA,EAAY,EAAA,CAAG,cAAA,QAAsB,eAAA,CAAgB,KAAA;;;;;AAuER;;;;;AAWN;;;;;;;;;cAjDvC,UAAA,EAAY,EAAA,CAAG,cAAA,QAAsB,eAAA,CAAgB,KAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAqCrD,gBAAA,EAAkB,EAAA,CACtB,cAAA,QAAsB,eAAA,CAAgB,WAAA;;;;;KAWnC,UAAA,GAAa,cAAA,QAAsB,KAAA;;;;;KAMnC,kBAAA,GAAqB,YAAA,QAAoB,WAAA"}
1
+ {"version":3,"file":"Toast.d.ts","names":[],"sources":["../../../../src/components/Toaster/Toast.tsx"],"mappings":";;;;;;cAQa,aAAA,SAAa,eAAA;AAAA,cAEb,aAAA,EAAe,EAAA,CAC1B,cAAA,QAAsB,eAAA,CAAgB,QAAA;;AAHxC;;;;;AAEA;;;;;;;;;;;;cA8Ba,aAAA,GAAa,KAAA;;IAkBzB,iCAAA,CAAA,SAAA;;;;;;;;;AAyCD;;;;;;;;;;;;;;;;;;AAgDA;;;;;;;;;;;;;cAhDa,KAAA,EAAO,EAAA,CAClB,cAAA,QAAsB,eAAA,CAAgB,IAAA,IACpC,YAAA,QAAoB,aAAA;AA2DxB;;;;;;;;;;;;;;AAiCA;;;;;;;;;;;;;;AAqCA;;;;;;;;AAtEA,cAba,WAAA,EAAa,EAAA,CAAG,cAAA,QAAsB,eAAA,CAAgB,MAAA;AAAA,cAatD,UAAA,EAAY,EAAA,CAAG,cAAA,QAAsB,eAAA,CAAgB,KAAA;;;;;AAkFlE;;;;;AAMA;;;;;;;;;cAvDa,UAAA,EAAY,EAAA,CAAG,cAAA,QAAsB,eAAA,CAAgB,KAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAqCrD,gBAAA,EAAkB,EAAA,CAC7B,cAAA,QAAsB,eAAA,CAAgB,WAAA;;;;;KAW5B,UAAA,GAAa,cAAA,QAAsB,KAAA;;;;;KAMnC,kBAAA,GAAqB,YAAA,QAAoB,WAAA"}
@@ -1,4 +1,4 @@
1
- import { Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport } from "./Toast.js";
1
+ import { Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, toastVariants } from "./Toast.js";
2
2
  import { Toaster } from "./Toaster.js";
3
3
  import { reducer, toast, useToast } from "./useToast.js";
4
- export { Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, reducer, toast, useToast };
4
+ export { Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, reducer, toast, toastVariants, useToast };
@@ -111,9 +111,9 @@ import { Terminal, TerminalProps } from "./Terminal/Terminal.js";
111
111
  import { Modes } from "./ThemeSwitcherDropDown/types.js";
112
112
  import { DesktopThemeSwitcher } from "./ThemeSwitcherDropDown/DesktopThemeSwitcher.js";
113
113
  import { MobileThemeSwitcher } from "./ThemeSwitcherDropDown/MobileThemeSwitcher.js";
114
- import { Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport } from "./Toaster/Toast.js";
114
+ import { Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, toastVariants } from "./Toaster/Toast.js";
115
115
  import { Toaster } from "./Toaster/Toaster.js";
116
116
  import { reducer, toast, useToast } from "./Toaster/useToast.js";
117
117
  import { WithResizer } from "./WithResizer/index.js";
118
118
  import { MarkdownRenderer, baseMarkdownComponents, getIntlayerMarkdownOptions } from "./MarkDownRender/MarkDownRender.js";
119
- export { Accordion, AccordionProps, AutoCompleteTextarea, AutoSizedTextArea, AutoSizedTextAreaProps, AutocompleteTextAreaProps, Avatar, AvatarProps, Badge, BadgeColor, BadgeProps, BadgeSize, BadgeVariant, BadgeVariantProps, BitbucketLogo, Breadcrumb, BreadcrumbLink, BreadcrumbProps, Browser, BrowserProps, Burger, 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, ContentEditableTextArea, ContentEditableTextAreaHandle, ContentEditableTextAreaProps, ContentEditor, ContentSelector, CopyButton, CopyToClipboard, CopyToClipboardProps, DesktopNavbar, 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, GitHubLogo, GitLabLogo, GoogleLogo, GridPattern, H1, H2, H3, H4, H5, H6, HTMLRenderer, HeadingProps, HeightResizer, HideShow, HideShowProps, Hr, 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, MarkDownIframe, MarkdownRenderer, MaxHeightSmoother, MaxWidthSmoother, MobileNavbar, 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, SmartTable, SocialNetworks, Spotlight, SwitchSelector, SwitchSelectorBaseProps, SwitchSelectorChoice, SwitchSelectorChoices, SwitchSelectorColor, SwitchSelectorProps, SwitchSelectorSize, Tab, TabItemProps, TabProps, TabSelector, TabSelectorColor, TabSelectorItemProps, TabSelectorProps, Table, TableProps, Tag, TagBackground, TagBorder, TagColor, TagRoundedSize, TagSize, Td, TechLogo, TechLogoName, techLogos_d_exports as TechLogos, Terminal, TerminalProps, TextArea, TextAreaProps, TextEditor, TextEditorContainer, TextEditorProps, Th, TiktokLogo, Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tr, TriggerProps, VersionSwitcher, VersionSwitcherProps, VersionSwitcherProvider, VerticalSwitchSelector, VerticalSwitchSelectorProps, WithResizer, XLogo, YoutubeLogo, badgeVariants, baseMarkdownComponents, buttonVariants, checkIsExternalLink, checkboxVariants, choiceVariant, containerVariants, defaultChoices, drawerManager, getCapitals, getIntlayerHTMLOptions, getIntlayerMarkdownOptions, indicatorVariant, inputSlotVariants, inputVariants, isTextChildren, linkVariants, paginationVariants, reducer, switchSelectorVariant, toast, traceKeys, useContentEditable, useCopyToClipboard, useForm, useFormField, useLocaleSwitcherContent, usePasswordManagerBadge, usePrevious, useRightDrawer, useToast, useVersionSwitcher };
119
+ export { Accordion, AccordionProps, AutoCompleteTextarea, AutoSizedTextArea, AutoSizedTextAreaProps, AutocompleteTextAreaProps, Avatar, AvatarProps, Badge, BadgeColor, BadgeProps, BadgeSize, BadgeVariant, BadgeVariantProps, BitbucketLogo, Breadcrumb, BreadcrumbLink, BreadcrumbProps, Browser, BrowserProps, Burger, 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, ContentEditableTextArea, ContentEditableTextAreaHandle, ContentEditableTextAreaProps, ContentEditor, ContentSelector, CopyButton, CopyToClipboard, CopyToClipboardProps, DesktopNavbar, 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, GitHubLogo, GitLabLogo, GoogleLogo, GridPattern, H1, H2, H3, H4, H5, H6, HTMLRenderer, HeadingProps, HeightResizer, HideShow, HideShowProps, Hr, 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, MarkDownIframe, MarkdownRenderer, MaxHeightSmoother, MaxWidthSmoother, MobileNavbar, 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, SmartTable, SocialNetworks, Spotlight, SwitchSelector, SwitchSelectorBaseProps, SwitchSelectorChoice, SwitchSelectorChoices, SwitchSelectorColor, SwitchSelectorProps, SwitchSelectorSize, Tab, TabItemProps, TabProps, TabSelector, TabSelectorColor, TabSelectorItemProps, TabSelectorProps, Table, TableProps, Tag, TagBackground, TagBorder, TagColor, TagRoundedSize, TagSize, Td, TechLogo, TechLogoName, techLogos_d_exports as TechLogos, Terminal, TerminalProps, TextArea, TextAreaProps, TextEditor, TextEditorContainer, TextEditorProps, Th, TiktokLogo, Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tr, TriggerProps, VersionSwitcher, VersionSwitcherProps, VersionSwitcherProvider, VerticalSwitchSelector, VerticalSwitchSelectorProps, WithResizer, XLogo, YoutubeLogo, badgeVariants, baseMarkdownComponents, buttonVariants, checkIsExternalLink, checkboxVariants, choiceVariant, containerVariants, defaultChoices, drawerManager, getCapitals, getIntlayerHTMLOptions, getIntlayerMarkdownOptions, indicatorVariant, inputSlotVariants, inputVariants, isTextChildren, linkVariants, paginationVariants, reducer, switchSelectorVariant, toast, toastVariants, traceKeys, useContentEditable, useCopyToClipboard, useForm, useFormField, useLocaleSwitcherContent, usePasswordManagerBadge, usePrevious, useRightDrawer, useToast, useVersionSwitcher };
@@ -1,5 +1,5 @@
1
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, useChat, useCreatePortalSession, useCreateUser, useDeleteAccessKey, useDeleteDictionary, useDeleteOrganization, useDeleteOrganizationById, useDeletePasskey, useDeleteProject, useDeleteProjectById, useDeleteSSOProvider, useDeleteShowcaseProject, useDeleteTag, useDeleteUser, useDisableTwoFactor, useEnableTwoFactor, useFillAllTranslations, useGetCIConfig, useGetDictionaries, useGetDictionariesKeys, useGetDictionary, useGetDiscussions, useGetDiscussionsData, useGetEditorDictionaries, useGetInvoices, useGetNewsletterStatus, useGetOrganizations, useGetOtherShowcaseProjects, useGetPaymentMethod, useGetPricing, useGetProjects, useGetRecursiveAuditStatus, useGetShowcaseProjectById, useGetShowcaseProjects, useGetSubscription, useGetTags, useGetUserByAccount, useGetUserById, useGetUsers, useGetVerifyEmailStatus, useGithubAuth, useGithubCheckConfig, useGithubGetAuthUrl, useGithubGetConfigFile, useGithubRepos, useGithubToken, useGitlabAuth, useGitlabCheckConfig, useGitlabGetConfigFile, useGitlabProjects, useInfiniteGetDictionaries, useListPasskeys, useListSSOProviders, useLogin, useLogout, usePauseTranslationJob, usePushCIConfig, usePushDictionaries, usePushProjectConfiguration, useQueryClient, useRefreshAccessKey, useRegister, useRegisterSSO, useResetPassword, useResumeTranslationJob, useSearchDoc, useSelectOrganization, useSelectProject, useSignInMagicLink, useSignInPasskey, useSignInSSO, useStartRecursiveAudit, useStopTranslationJob, 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
+ import { useAddDictionary, useAddNewAccessKey, useAddOrganization, useAddOrganizationMember, useAddPasskey, useAddProject, useAddTag, useAppQuery, useAskDocQuestion, useAskResetPassword, useAuditContentDeclaration, useAuditContentDeclarationField, useAuditContentDeclarationMetadata, useAuditScan, useAuditTag, useAutocomplete, useBitbucketAuth, useBitbucketCheckConfig, useBitbucketGetConfigFile, useBitbucketRepos, useCancelSubscription, useChangePassword, useChat, useCreatePortalSession, useCreateUser, useDeleteAccessKey, useDeleteDictionary, useDeleteOrganization, useDeleteOrganizationById, useDeletePasskey, useDeleteProject, useDeleteProjectById, useDeleteSSOProvider, useDeleteShowcaseProject, useDeleteTag, useDeleteUser, useDisableTwoFactor, useEnableTwoFactor, useFillAllTranslations, useGetCIConfig, useGetDictionaries, useGetDictionariesKeys, useGetDictionary, useGetDiscussions, useGetDiscussionsData, useGetEditorDictionaries, useGetInvoices, useGetNewsletterStatus, useGetOrganizations, useGetOtherShowcaseProjects, useGetPaymentMethod, useGetPricing, useGetProjects, useGetRecursiveAuditStatus, useGetShowcaseProjectById, useGetShowcaseProjects, useGetSubscription, useGetTags, useGetUserByAccount, useGetUserById, useGetUsers, useGetVerifyEmailStatus, useGithubAuth, useGithubCheckConfig, useGithubGetAuthUrl, useGithubGetConfigFile, useGithubRepos, useGithubToken, useGitlabAuth, useGitlabCheckConfig, useGitlabGetConfigFile, useGitlabProjects, useInfiniteGetDictionaries, useLinkSocial, useListAccounts, useListPasskeys, useListSSOProviders, useLogin, useLogout, usePauseTranslationJob, usePushCIConfig, usePushDictionaries, usePushProjectConfiguration, useQueryClient, useRefreshAccessKey, useRegister, useRegisterSSO, useResetPassword, useResumeTranslationJob, useSearchDoc, useSelectOrganization, useSelectProject, useSignInMagicLink, useSignInPasskey, useSignInSSO, useStartRecursiveAudit, useStopTranslationJob, useSubmitShowcaseProject, useSubscribeToNewsletter, useToggleShowcaseDownvote, useToggleShowcaseUpvote, useTranslateJSONDeclaration, useTriggerBuild, useTriggerWebhook, useUnlinkAccount, useUnselectOrganization, useUnselectProject, useUnsubscribeFromNewsletter, useUpdateDictionary, useUpdateOrganization, useUpdateOrganizationMembers, useUpdateOrganizationMembersById, useUpdateProject, useUpdateProjectMembers, useUpdateShowcaseProject, useUpdateTag, useUpdateUser, useVerifyBackupCode, useVerifyEmail, useVerifyTotp, useWriteDictionary } from "./reactQuery.js";
3
3
  import { useAuth } from "./useAuth/useAuth.js";
4
4
  import { useOAuth2 } from "./useAuth/useOAuth2.js";
5
5
  import { UseSessionResult, useSession } from "./useAuth/useSession.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, 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, useChat, useCreatePortalSession, useCreateUser, useDeleteAccessKey, useDeleteDictionary, useDeleteOrganization, useDeleteOrganizationById, useDeletePasskey, useDeleteProject, useDeleteProjectById, useDeleteSSOProvider, useDeleteShowcaseProject, useDeleteTag, useDeleteUser, useDevice, useDisableTwoFactor, useEnableTwoFactor, useFillAllTranslations, useGetCIConfig, useGetDictionaries, useGetDictionariesKeys, useGetDictionary, useGetDiscussions, useGetDiscussionsData, useGetEditorDictionaries, useGetElementById, useGetElementOrWindow, useGetInvoices, useGetNewsletterStatus, useGetOrganizations, useGetOtherShowcaseProjects, useGetPaymentMethod, useGetPricing, useGetProjects, useGetRecursiveAuditStatus, useGetShowcaseProjectById, useGetShowcaseProjects, useGetSubscription, useGetTags, useGetUserByAccount, useGetUserById, useGetUsers, useGetVerifyEmailStatus, useGithubAuth, useGithubCheckConfig, useGithubGetAuthUrl, useGithubGetConfigFile, useGithubRepos, useGithubToken, useGitlabAuth, useGitlabCheckConfig, useGitlabGetConfigFile, useGitlabProjects, useHorizontalSwipe, useInfiniteGetDictionaries, useIntlayerAuth, useIntlayerOAuth, useIsDarkMode, useIsMounted, useItemSelector, useKeyboardDetector, useListPasskeys, useListSSOProviders, useLogin, useLogout, useOAuth2, usePauseTranslationJob, usePersistedStore, usePushCIConfig, usePushDictionaries, usePushProjectConfiguration, useQueryClient, useRefreshAccessKey, useRegister, useRegisterSSO, useResetPassword, useResumeTranslationJob, useScreenWidth, useScrollBlockage, useScrollDetection, useScrollY, useSearch, useSearchDoc, useSelectOrganization, useSelectProject, useSession, useSignInMagicLink, useSignInPasskey, useSignInSSO, useStartRecursiveAudit, useStopTranslationJob, useSubmitShowcaseProject, useSubscribeToNewsletter, useToggleShowcaseDownvote, useToggleShowcaseUpvote, useTranslateJSONDeclaration, useTriggerBuild, useTriggerWebhook, useUnselectOrganization, useUnselectProject, useUnsubscribeFromNewsletter, useUpdateDictionary, useUpdateOrganization, useUpdateOrganizationMembers, useUpdateOrganizationMembersById, useUpdateProject, useUpdateProjectMembers, useUpdateShowcaseProject, 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, useChat, useCreatePortalSession, useCreateUser, useDeleteAccessKey, useDeleteDictionary, useDeleteOrganization, useDeleteOrganizationById, useDeletePasskey, useDeleteProject, useDeleteProjectById, useDeleteSSOProvider, useDeleteShowcaseProject, useDeleteTag, useDeleteUser, useDevice, useDisableTwoFactor, useEnableTwoFactor, useFillAllTranslations, useGetCIConfig, useGetDictionaries, useGetDictionariesKeys, useGetDictionary, useGetDiscussions, useGetDiscussionsData, useGetEditorDictionaries, useGetElementById, useGetElementOrWindow, useGetInvoices, useGetNewsletterStatus, useGetOrganizations, useGetOtherShowcaseProjects, useGetPaymentMethod, useGetPricing, useGetProjects, useGetRecursiveAuditStatus, useGetShowcaseProjectById, useGetShowcaseProjects, useGetSubscription, useGetTags, useGetUserByAccount, useGetUserById, useGetUsers, useGetVerifyEmailStatus, useGithubAuth, useGithubCheckConfig, useGithubGetAuthUrl, useGithubGetConfigFile, useGithubRepos, useGithubToken, useGitlabAuth, useGitlabCheckConfig, useGitlabGetConfigFile, useGitlabProjects, useHorizontalSwipe, useInfiniteGetDictionaries, useIntlayerAuth, useIntlayerOAuth, useIsDarkMode, useIsMounted, useItemSelector, useKeyboardDetector, useLinkSocial, useListAccounts, useListPasskeys, useListSSOProviders, useLogin, useLogout, useOAuth2, usePauseTranslationJob, usePersistedStore, usePushCIConfig, usePushDictionaries, usePushProjectConfiguration, useQueryClient, useRefreshAccessKey, useRegister, useRegisterSSO, useResetPassword, useResumeTranslationJob, useScreenWidth, useScrollBlockage, useScrollDetection, useScrollY, useSearch, useSearchDoc, useSelectOrganization, useSelectProject, useSession, useSignInMagicLink, useSignInPasskey, useSignInSSO, useStartRecursiveAudit, useStopTranslationJob, useSubmitShowcaseProject, useSubscribeToNewsletter, useToggleShowcaseDownvote, useToggleShowcaseUpvote, useTranslateJSONDeclaration, useTriggerBuild, useTriggerWebhook, useUnlinkAccount, useUnselectOrganization, useUnselectProject, useUnsubscribeFromNewsletter, useUpdateDictionary, useUpdateOrganization, useUpdateOrganizationMembers, useUpdateOrganizationMembersById, useUpdateProject, useUpdateProjectMembers, useUpdateShowcaseProject, useUpdateTag, useUpdateUser, useUser, useVerifyBackupCode, useVerifyEmail, useVerifyTotp, useWriteDictionary };
@@ -13,6 +13,9 @@ declare const useAppQuery: (options: UseQueryOptions & {
13
13
  * Auth
14
14
  */
15
15
  declare const useLogin: () => any;
16
+ declare const useListAccounts: () => QueryObserverResult<TData, TError>;
17
+ declare const useUnlinkAccount: () => any;
18
+ declare const useLinkSocial: () => any;
16
19
  declare const useGetVerifyEmailStatus: () => any;
17
20
  declare const useRegister: () => any;
18
21
  declare const useLogout: () => any;
@@ -180,5 +183,5 @@ declare const useStopTranslationJob: () => any;
180
183
  declare const usePauseTranslationJob: () => any;
181
184
  declare const useResumeTranslationJob: () => any;
182
185
  //#endregion
183
- export { useAddDictionary, useAddNewAccessKey, useAddOrganization, useAddOrganizationMember, useAddPasskey, useAddProject, useAddTag, useAppQuery, useAskDocQuestion, useAskResetPassword, useAuditContentDeclaration, useAuditContentDeclarationField, useAuditContentDeclarationMetadata, useAuditScan, useAuditTag, useAutocomplete, useBitbucketAuth, useBitbucketCheckConfig, useBitbucketGetConfigFile, useBitbucketRepos, useCancelSubscription, useChangePassword, useChat, useCreatePortalSession, useCreateUser, useDeleteAccessKey, useDeleteDictionary, useDeleteOrganization, useDeleteOrganizationById, useDeletePasskey, useDeleteProject, useDeleteProjectById, useDeleteSSOProvider, useDeleteShowcaseProject, useDeleteTag, useDeleteUser, useDisableTwoFactor, useEnableTwoFactor, useFillAllTranslations, useGetCIConfig, useGetDictionaries, useGetDictionariesKeys, useGetDictionary, useGetDiscussions, useGetDiscussionsData, useGetEditorDictionaries, useGetInvoices, useGetNewsletterStatus, useGetOrganizations, useGetOtherShowcaseProjects, useGetPaymentMethod, useGetPricing, useGetProjects, useGetRecursiveAuditStatus, useGetShowcaseProjectById, useGetShowcaseProjects, useGetSubscription, useGetTags, useGetUserByAccount, useGetUserById, useGetUsers, useGetVerifyEmailStatus, useGithubAuth, useGithubCheckConfig, useGithubGetAuthUrl, useGithubGetConfigFile, useGithubRepos, useGithubToken, useGitlabAuth, useGitlabCheckConfig, useGitlabGetConfigFile, useGitlabProjects, useInfiniteGetDictionaries, useListPasskeys, useListSSOProviders, useLogin, useLogout, usePauseTranslationJob, usePushCIConfig, usePushDictionaries, usePushProjectConfiguration, useQueryClient, useRefreshAccessKey, useRegister, useRegisterSSO, useResetPassword, useResumeTranslationJob, useSearchDoc, useSelectOrganization, useSelectProject, useSignInMagicLink, useSignInPasskey, useSignInSSO, useStartRecursiveAudit, useStopTranslationJob, useSubmitShowcaseProject, useSubscribeToNewsletter, useToggleShowcaseDownvote, useToggleShowcaseUpvote, useTranslateJSONDeclaration, useTriggerBuild, useTriggerWebhook, useUnselectOrganization, useUnselectProject, useUnsubscribeFromNewsletter, useUpdateDictionary, useUpdateOrganization, useUpdateOrganizationMembers, useUpdateOrganizationMembersById, useUpdateProject, useUpdateProjectMembers, useUpdateShowcaseProject, useUpdateTag, useUpdateUser, useVerifyBackupCode, useVerifyEmail, useVerifyTotp, useWriteDictionary };
186
+ export { useAddDictionary, useAddNewAccessKey, useAddOrganization, useAddOrganizationMember, useAddPasskey, useAddProject, useAddTag, useAppQuery, useAskDocQuestion, useAskResetPassword, useAuditContentDeclaration, useAuditContentDeclarationField, useAuditContentDeclarationMetadata, useAuditScan, useAuditTag, useAutocomplete, useBitbucketAuth, useBitbucketCheckConfig, useBitbucketGetConfigFile, useBitbucketRepos, useCancelSubscription, useChangePassword, useChat, useCreatePortalSession, useCreateUser, useDeleteAccessKey, useDeleteDictionary, useDeleteOrganization, useDeleteOrganizationById, useDeletePasskey, useDeleteProject, useDeleteProjectById, useDeleteSSOProvider, useDeleteShowcaseProject, useDeleteTag, useDeleteUser, useDisableTwoFactor, useEnableTwoFactor, useFillAllTranslations, useGetCIConfig, useGetDictionaries, useGetDictionariesKeys, useGetDictionary, useGetDiscussions, useGetDiscussionsData, useGetEditorDictionaries, useGetInvoices, useGetNewsletterStatus, useGetOrganizations, useGetOtherShowcaseProjects, useGetPaymentMethod, useGetPricing, useGetProjects, useGetRecursiveAuditStatus, useGetShowcaseProjectById, useGetShowcaseProjects, useGetSubscription, useGetTags, useGetUserByAccount, useGetUserById, useGetUsers, useGetVerifyEmailStatus, useGithubAuth, useGithubCheckConfig, useGithubGetAuthUrl, useGithubGetConfigFile, useGithubRepos, useGithubToken, useGitlabAuth, useGitlabCheckConfig, useGitlabGetConfigFile, useGitlabProjects, useInfiniteGetDictionaries, useLinkSocial, useListAccounts, useListPasskeys, useListSSOProviders, useLogin, useLogout, usePauseTranslationJob, usePushCIConfig, usePushDictionaries, usePushProjectConfiguration, useQueryClient, useRefreshAccessKey, useRegister, useRegisterSSO, useResetPassword, useResumeTranslationJob, useSearchDoc, useSelectOrganization, useSelectProject, useSignInMagicLink, useSignInPasskey, useSignInSSO, useStartRecursiveAudit, useStopTranslationJob, useSubmitShowcaseProject, useSubscribeToNewsletter, useToggleShowcaseDownvote, useToggleShowcaseUpvote, useTranslateJSONDeclaration, useTriggerBuild, useTriggerWebhook, useUnlinkAccount, useUnselectOrganization, useUnselectProject, useUnsubscribeFromNewsletter, useUpdateDictionary, useUpdateOrganization, useUpdateOrganizationMembers, useUpdateOrganizationMembersById, useUpdateProject, useUpdateProjectMembers, useUpdateShowcaseProject, useUpdateTag, useUpdateUser, useVerifyBackupCode, useVerifyEmail, useVerifyTotp, useWriteDictionary };
184
187
  //# 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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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intlayer/design-system",
3
- "version": "8.9.6",
3
+ "version": "8.9.7",
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": [
@@ -421,12 +421,12 @@
421
421
  "dependencies": {
422
422
  "@better-auth/passkey": "1.6.11",
423
423
  "@better-auth/sso": "1.6.11",
424
- "@intlayer/api": "8.9.6",
425
- "@intlayer/config": "8.9.6",
426
- "@intlayer/core": "8.9.6",
427
- "@intlayer/dictionaries-entry": "8.9.6",
428
- "@intlayer/editor-react": "8.9.6",
429
- "@intlayer/types": "8.9.6",
424
+ "@intlayer/api": "8.9.7",
425
+ "@intlayer/config": "8.9.7",
426
+ "@intlayer/core": "8.9.7",
427
+ "@intlayer/dictionaries-entry": "8.9.7",
428
+ "@intlayer/editor-react": "8.9.7",
429
+ "@intlayer/types": "8.9.7",
430
430
  "@radix-ui/react-dialog": "1.1.15",
431
431
  "@radix-ui/react-select": "2.2.6",
432
432
  "@radix-ui/react-slot": "1.2.4",
@@ -441,12 +441,12 @@
441
441
  "defu": "6.1.7",
442
442
  "dompurify": "^3.4.3",
443
443
  "isomorphic-dompurify": "^3.13.0",
444
- "react-intlayer": "8.9.6",
444
+ "react-intlayer": "8.9.7",
445
445
  "rollup-preserve-directives": "1.1.3",
446
446
  "zod": "4.4.3"
447
447
  },
448
448
  "devDependencies": {
449
- "@intlayer/backend": "8.9.6",
449
+ "@intlayer/backend": "8.9.7",
450
450
  "@shikijs/transformers": "4.0.2",
451
451
  "@storybook/addon-a11y": "8.6.14",
452
452
  "@storybook/addon-essentials": "8.6.14",
@@ -477,7 +477,7 @@
477
477
  "@utils/ts-config-types": "1.0.4",
478
478
  "clsx": "2.1.1",
479
479
  "fast-glob": "3.3.3",
480
- "intlayer": "8.9.6",
480
+ "intlayer": "8.9.7",
481
481
  "rimraf": "6.1.3",
482
482
  "shiki": "4.0.2",
483
483
  "storybook": "8.6.17",
@@ -485,26 +485,26 @@
485
485
  "tsdown": "0.22.00",
486
486
  "typescript": "6.0.3",
487
487
  "vite": "8.0.13",
488
- "vite-intlayer": "8.9.6",
488
+ "vite-intlayer": "8.9.7",
489
489
  "vite-plugin-dts": "5.0.0",
490
490
  "vitest": "4.1.6"
491
491
  },
492
492
  "peerDependencies": {
493
493
  "@better-fetch/fetch": "1.1.21",
494
494
  "@hookform/resolvers": "5.2.2",
495
- "@intlayer/backend": "8.9.6",
495
+ "@intlayer/backend": "8.9.7",
496
496
  "@monaco-editor/react": "4.7.0",
497
497
  "@shikijs/transformers": "4.0.2",
498
498
  "@tanstack/react-query": "5.100.10",
499
499
  "@tanstack/react-query-devtools": "5.100.10",
500
500
  "framer-motion": "12.38.0",
501
501
  "fuse.js": "7.3.0",
502
- "intlayer": "8.9.6",
502
+ "intlayer": "8.9.7",
503
503
  "lucide-react": "1.16.0",
504
504
  "react": ">=16.0.0",
505
505
  "react-dom": ">=16.0.0",
506
- "react-hook-form": "7.75.0",
507
- "react-intlayer": "8.9.6",
506
+ "react-hook-form": "7.76.0",
507
+ "react-intlayer": "8.9.7",
508
508
  "shiki": "4.0.2",
509
509
  "tailwindcss": "4.3.0"
510
510
  },