@fluidattacks/design 1.2.4-pr → 1.2.4-pr-0.1

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 (37) hide show
  1. package/dist/src/components/@core/constants.d.ts +0 -1
  2. package/dist/src/components/@core/index.d.ts +0 -1
  3. package/dist/src/components/@core/styles.d.ts +0 -1
  4. package/dist/src/components/@core/types.d.ts +79 -3
  5. package/dist/src/components/@core/utils.d.ts +0 -1
  6. package/dist/src/components/@core/variants/utils.d.ts +0 -1
  7. package/dist/src/components/cloud-image/index.d.ts +0 -1
  8. package/dist/src/components/cloud-image/types.d.ts +0 -1
  9. package/dist/src/components/colors/index.d.ts +0 -1
  10. package/dist/src/components/container/index.d.ts +0 -1
  11. package/dist/src/components/container/styles.d.ts +0 -1
  12. package/dist/src/components/container/types.d.ts +0 -1
  13. package/dist/src/components/logo/index.d.ts +0 -1
  14. package/dist/src/components/logo/types.d.ts +0 -1
  15. package/dist/src/hooks/index.d.ts +0 -1
  16. package/dist/src/hooks/use-cloudinary-image.d.ts +0 -1
  17. package/dist/src/index.d.ts +0 -1
  18. package/dist/vite.config.d.ts +0 -1
  19. package/package.json +1 -1
  20. package/dist/src/components/@core/constants.d.ts.map +0 -1
  21. package/dist/src/components/@core/index.d.ts.map +0 -1
  22. package/dist/src/components/@core/styles.d.ts.map +0 -1
  23. package/dist/src/components/@core/types.d.ts.map +0 -1
  24. package/dist/src/components/@core/utils.d.ts.map +0 -1
  25. package/dist/src/components/@core/variants/utils.d.ts.map +0 -1
  26. package/dist/src/components/cloud-image/index.d.ts.map +0 -1
  27. package/dist/src/components/cloud-image/types.d.ts.map +0 -1
  28. package/dist/src/components/colors/index.d.ts.map +0 -1
  29. package/dist/src/components/container/index.d.ts.map +0 -1
  30. package/dist/src/components/container/styles.d.ts.map +0 -1
  31. package/dist/src/components/container/types.d.ts.map +0 -1
  32. package/dist/src/components/logo/index.d.ts.map +0 -1
  33. package/dist/src/components/logo/types.d.ts.map +0 -1
  34. package/dist/src/hooks/index.d.ts.map +0 -1
  35. package/dist/src/hooks/use-cloudinary-image.d.ts.map +0 -1
  36. package/dist/src/index.d.ts.map +0 -1
  37. package/dist/vite.config.d.ts.map +0 -1
@@ -1,3 +1,2 @@
1
1
  declare const hiddenProps: string[];
2
2
  export { hiddenProps };
3
- //# sourceMappingURL=constants.d.ts.map
@@ -4,4 +4,3 @@ export * from './index';
4
4
  export * from './styles';
5
5
  export * from './types';
6
6
  export * from './utils';
7
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,3 @@
1
1
  import { TModifiable } from './types';
2
2
  declare const BaseComponent: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, TModifiable>> & string;
3
3
  export { BaseComponent };
4
- //# sourceMappingURL=styles.d.ts.map
@@ -1,5 +1,82 @@
1
1
  import { Property } from 'csstype';
2
- import { DefaultTheme } from 'styled-components';
2
+ type ColorPalette = "25" | "50" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900";
3
+ /**
4
+ * Fluidattacks Default theme design
5
+ */
6
+ interface DefaultTheme {
7
+ breakpoints: {
8
+ mobile: string;
9
+ tablet: string;
10
+ sm: string;
11
+ md: string;
12
+ lg: string;
13
+ };
14
+ spacing: {
15
+ 0: "0rem";
16
+ 0.125: "0.125rem";
17
+ 0.25: "0.25rem";
18
+ 0.5: "0.5rem";
19
+ 0.625: "0.625rem";
20
+ 0.75: "0.75rem";
21
+ 1: "1rem";
22
+ 1.25: "1.25rem";
23
+ 1.5: "1.5rem";
24
+ 1.75: "1.75rem";
25
+ 2: "2rem";
26
+ 2.25: "2.25rem";
27
+ 2.5: "2.5rem";
28
+ 3: "3rem";
29
+ 3.5: "3.5rem";
30
+ 4: "4rem";
31
+ 5: "5rem";
32
+ 6: "6rem";
33
+ };
34
+ typography: {
35
+ type: {
36
+ primary: string;
37
+ poppins: string;
38
+ mono: string;
39
+ };
40
+ heading: {
41
+ xxl: string;
42
+ xl: string;
43
+ lg: string;
44
+ md: string;
45
+ sm: string;
46
+ xs: string;
47
+ };
48
+ text: {
49
+ xl: string;
50
+ lg: string;
51
+ md: string;
52
+ sm: string;
53
+ xs: string;
54
+ };
55
+ weight: {
56
+ bold: string;
57
+ semibold: string;
58
+ regular: string;
59
+ };
60
+ };
61
+ shadows: {
62
+ none: string;
63
+ sm: string;
64
+ md: string;
65
+ lg: string;
66
+ };
67
+ palette: {
68
+ primary: Record<ColorPalette, string>;
69
+ complementary: Record<ColorPalette, string>;
70
+ error: Record<ColorPalette, string>;
71
+ info: Record<ColorPalette, string>;
72
+ warning: Record<ColorPalette, string>;
73
+ success: Record<ColorPalette, string>;
74
+ gray: Record<ColorPalette, string>;
75
+ black: string;
76
+ white: string;
77
+ gradients: Record<string, string>;
78
+ };
79
+ }
3
80
  type TSpacing = keyof DefaultTheme["spacing"];
4
81
  type TShadows = keyof DefaultTheme["shadows"];
5
82
  interface IPaddingModifiable {
@@ -77,5 +154,4 @@ interface IInteractionModifiable {
77
154
  shadowHover?: TShadows;
78
155
  }
79
156
  type TModifiable = IBorderModifiable & IDisplayModifiable & IInteractionModifiable & IMarginModifiable & IPaddingModifiable & IPositionModifiable & ITextModifiable;
80
- export type { TSpacing, IPaddingModifiable, IMarginModifiable, IDisplayModifiable, ITextModifiable, IInteractionModifiable, IPositionModifiable, IBorderModifiable, TModifiable, };
81
- //# sourceMappingURL=types.d.ts.map
157
+ export type { DefaultTheme, TSpacing, IPaddingModifiable, IMarginModifiable, IDisplayModifiable, ITextModifiable, IInteractionModifiable, IPositionModifiable, IBorderModifiable, TModifiable, };
@@ -9,4 +9,3 @@ declare const setText: (props: Readonly<ITextModifiable>) => string;
9
9
  declare const setInteraction: (props: Readonly<IInteractionModifiable>) => string;
10
10
  declare const getStyledConfig: () => StyledOptions<"web", object>;
11
11
  export { setPadding, setText, setMargin, setInteraction, setPosition, setDisplay, setBorder, getStyledConfig, };
12
- //# sourceMappingURL=utils.d.ts.map
@@ -58,4 +58,3 @@ interface IComponentVariant<T extends string> {
58
58
  declare const variantBuilder: <T extends string>(variants: (theme: Readonly<DefaultTheme>) => Record<T, TCssString>) => IComponentVariant<T>;
59
59
  export type { TCssString, IComponentVariant, TIconsList };
60
60
  export { variantBuilder };
61
- //# sourceMappingURL=utils.d.ts.map
@@ -3,4 +3,3 @@ import { IImageProps } from './types';
3
3
  declare const MemoizedImage: React.MemoExoticComponent<({ alt, height, width, plugins, publicId, }: Readonly<IImageProps>) => JSX.Element>;
4
4
  export type { IImageProps };
5
5
  export { MemoizedImage as CloudImage };
6
- //# sourceMappingURL=index.d.ts.map
@@ -15,4 +15,3 @@ interface IImageProps {
15
15
  publicId: string;
16
16
  }
17
17
  export type { IImageProps };
18
- //# sourceMappingURL=types.d.ts.map
@@ -8,4 +8,3 @@ declare const CustomThemeProvider: ({ children, }: Readonly<{
8
8
  children: React.ReactNode;
9
9
  }>) => JSX.Element;
10
10
  export { CustomThemeProvider, theme, icons, uniqueIcons };
11
- //# sourceMappingURL=index.d.ts.map
@@ -2,4 +2,3 @@ import { PropsWithChildren } from 'react';
2
2
  import { IContainerProps } from './types';
3
3
  declare const Container: import('react').ForwardRefExoticComponent<Readonly<PropsWithChildren<IContainerProps>> & import('react').RefAttributes<HTMLDivElement>>;
4
4
  export { Container };
5
- //# sourceMappingURL=index.d.ts.map
@@ -5,4 +5,3 @@ declare const StyledContainer: import('styled-components/dist/types').IStyledCom
5
5
  ref?: ((instance: HTMLDivElement | null) => void) | import('react').RefObject<HTMLDivElement> | null | undefined;
6
6
  }, IStyledContainerProps>> & string;
7
7
  export { StyledContainer };
8
- //# sourceMappingURL=styles.d.ts.map
@@ -17,4 +17,3 @@ interface IContainerProps extends TModifiable, HTMLAttributes<HTMLDivElement> {
17
17
  onLeave?: () => void;
18
18
  }
19
19
  export type { IContainerProps };
20
- //# sourceMappingURL=types.d.ts.map
@@ -1,4 +1,3 @@
1
1
  import { ILogoProps } from './types';
2
2
  declare const Logo: ({ publicId, variant }: Readonly<ILogoProps>) => JSX.Element;
3
3
  export { Logo };
4
- //# sourceMappingURL=index.d.ts.map
@@ -9,4 +9,3 @@ interface ILogoProps {
9
9
  variant: TLogoVariant;
10
10
  }
11
11
  export type { ILogoProps, TLogoVariant };
12
- //# sourceMappingURL=types.d.ts.map
@@ -1,3 +1,2 @@
1
1
  import { useCloudinaryImage } from './use-cloudinary-image';
2
2
  export { useCloudinaryImage };
3
- //# sourceMappingURL=index.d.ts.map
@@ -10,4 +10,3 @@ interface IUseCloudinaryImageProps {
10
10
  }
11
11
  export declare const useCloudinaryImage: ({ publicId, format, }: IUseCloudinaryImageProps) => CloudinaryImage;
12
12
  export {};
13
- //# sourceMappingURL=use-cloudinary-image.d.ts.map
@@ -3,4 +3,3 @@ export * from './components/cloud-image';
3
3
  export * from './components/colors';
4
4
  export * from './components/container';
5
5
  export * from './components/logo';
6
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,3 @@
1
1
  import { UserConfigExport } from 'vite';
2
2
  declare const viteConfig: UserConfigExport;
3
3
  export default viteConfig;
4
- //# sourceMappingURL=vite.config.d.ts.map
package/package.json CHANGED
@@ -57,5 +57,5 @@
57
57
  "build": "tsc && vite build",
58
58
  "preview": "vite preview"
59
59
  },
60
- "version": "1.2.4-pr"
60
+ "version": "1.2.4-pr-0.1"
61
61
  }
@@ -1 +0,0 @@
1
- {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../../src/components/@core/constants.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,WAAW,UAuEhB,CAAC;AAEF,OAAO,EAAE,WAAW,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/@core/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../src/components/@core/styles.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAY3C,QAAA,MAAM,aAAa,gPAQlB,CAAC;AAEF,OAAO,EAAE,aAAa,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/@core/types.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../src/components/@core/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAGvD,OAAO,KAAK,EACV,iBAAiB,EACjB,kBAAkB,EAClB,sBAAsB,EACtB,iBAAiB,EACjB,kBAAkB,EAClB,mBAAmB,EACnB,eAAe,EAChB,MAAM,SAAS,CAAC;AAYjB,QAAA,MAAM,UAAU,UAAW,QAAQ,CAAC,kBAAkB,CAAC,KAAG,MAazD,CAAC;AAEF,QAAA,MAAM,SAAS,UAAW,QAAQ,CAAC,iBAAiB,CAAC,KAAG,MAavD,CAAC;AAEF,QAAA,MAAM,WAAW,UAAW,QAAQ,CAAC,mBAAmB,CAAC,KAAG,MAgB3D,CAAC;AAEF,QAAA,MAAM,SAAS,UAAW,QAAQ,CAAC,iBAAiB,CAAC,KAAG,MAkBvD,CAAC;AAUF,QAAA,MAAM,UAAU,UAAW,QAAQ,CAAC,kBAAkB,CAAC,KAAG,MAwDzD,CAAC;AAEF,QAAA,MAAM,OAAO,UAAW,QAAQ,CAAC,eAAe,CAAC,KAAG,MAoBnD,CAAC;AAEF,QAAA,MAAM,cAAc,UAAW,QAAQ,CAAC,sBAAsB,CAAC,KAAG,MAsBjE,CAAC;AAEF,QAAA,MAAM,eAAe,QAAO,aAAa,CAAC,KAAK,EAAE,MAAM,CAItD,CAAC;AAEF,OAAO,EACL,UAAU,EACV,OAAO,EACP,SAAS,EACT,cAAc,EACd,WAAW,EACX,UAAU,EACV,SAAS,EACT,eAAe,GAChB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../src/components/@core/variants/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AACpE,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAErE,KAAK,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,EAAE,CAAC;AAE1C;;;;;;;;;;;;;;;;GAgBG;AACH,KAAK,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,UAAU,EAAE,UAAU,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC;AAE1E,UAAU,iBAAiB,CAAC,CAAC,SAAS,MAAM;IAC1C;;;;;;OAMG;IACH,UAAU,EAAE,CAAC,KAAK,EAAE,QAAQ,CAAC,YAAY,CAAC,EAAE,OAAO,EAAE,CAAC,KAAK,UAAU,CAAC;CACvE;AAED;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,cAAc,GAAI,CAAC,SAAS,MAAM,YAC5B,CAAC,KAAK,EAAE,QAAQ,CAAC,YAAY,CAAC,KAAK,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,KACjE,iBAAiB,CAAC,CAAC,CAGpB,CAAC;AAEH,YAAY,EAAE,UAAU,EAAE,iBAAiB,EAAE,UAAU,EAAE,CAAC;AAC1D,OAAO,EAAE,cAAc,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/cloud-image/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAsBtC,QAAA,MAAM,aAAa,yEAdhB,QAAQ,CAAC,WAAW,CAAC,KAAG,GAAG,CAAC,OAAO,CAcM,CAAC;AAE7C,YAAY,EAAE,WAAW,EAAE,CAAC;AAC5B,OAAO,EAAE,aAAa,IAAI,UAAU,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/cloud-image/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAEhD;;;;;;;GAOG;AACH,UAAU,WAAW;IACnB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,YAAY,EAAE,WAAW,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/colors/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AAC9E,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AA0KtD,QAAA,MAAM,KAAK,EAAE,QAAQ,EAqCpB,CAAC;AAEF,QAAA,MAAM,WAAW,EAAE,CAAC,UAAU,EAAE,QAAQ,CAAC,EAQxC,CAAC;AAEF,QAAA,MAAM,KAAK,EAAE,YAiBZ,CAAC;AAEF,QAAA,MAAM,mBAAmB,kBAEtB,QAAQ,CAAC;IACV,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC,KAAG,GAAG,CAAC,OAAkE,CAAC;AAE5E,OAAO,EAAE,mBAAmB,EAAE,KAAK,EAAE,KAAK,EAAE,WAAW,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/container/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAO,MAAM,OAAO,CAAC;AAIpD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAE/C,QAAA,MAAM,SAAS,yIAyBb,CAAC;AAEH,OAAO,EAAE,SAAS,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../src/components/container/styles.ts"],"names":[],"mappings":"AAIA,UAAU,qBAAqB;IAC7B,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,QAAA,MAAM,eAAe;;mCAIpB,CAAC;AAEF,OAAO,EAAE,eAAe,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/container/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAE1D,KAAK,QAAQ,GAAG,MAAM,SAAS,CAAC;AAEhC;;;;;;;;GAQG;AACH,UAAU,eAAgB,SAAQ,WAAW,EAAE,cAAc,CAAC,cAAc,CAAC;IAC3E,EAAE,CAAC,EAAE,QAAQ,CAAC;IACd,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,YAAY,EAAE,eAAe,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/logo/index.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAgB,MAAM,SAAS,CAAC;AASnD,QAAA,MAAM,IAAI,0BAA2B,QAAQ,CAAC,UAAU,CAAC,KAAG,GAAG,CAAC,OAM/D,CAAC;AAEF,OAAO,EAAE,IAAI,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/logo/types.ts"],"names":[],"mappings":"AACA,KAAK,YAAY,GAAG,QAAQ,GAAG,QAAQ,GAAG,MAAM,CAAC;AAEjD;;;;GAIG;AACH,UAAU,UAAU;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,YAAY,CAAC;CACvB;AAED,YAAY,EAAE,UAAU,EAAE,YAAY,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAE5D,OAAO,EAAE,kBAAkB,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"use-cloudinary-image.d.ts","sourceRoot":"","sources":["../../../src/hooks/use-cloudinary-image.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAI3D;;;;GAIG;AACH,UAAU,wBAAwB;IAChC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,eAAO,MAAM,kBAAkB,0BAG5B,wBAAwB,KAAG,eAc7B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"vite.config.d.ts","sourceRoot":"","sources":["../vite.config.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,MAAM,CAAC;AAG7C,QAAA,MAAM,UAAU,EAAE,gBA0BjB,CAAC;AAEF,eAAe,UAAU,CAAC"}