@fluidattacks/design 1.2.4 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/design.js +55 -43
- package/dist/design.js.map +1 -1
- package/dist/design.mjs +793 -774
- package/dist/design.mjs.map +1 -1
- package/dist/src/components/@core/constants.d.ts +0 -1
- package/dist/src/components/@core/index.d.ts +0 -1
- package/dist/src/components/@core/styles.d.ts +2 -2
- package/dist/src/components/@core/types.d.ts +84 -3
- package/dist/src/components/@core/utils.d.ts +0 -1
- package/dist/src/components/@core/variants/utils.d.ts +0 -1
- package/dist/src/components/cloud-image/index.d.ts +0 -1
- package/dist/src/components/cloud-image/types.d.ts +0 -1
- package/dist/src/components/colors/index.d.ts +0 -1
- package/dist/src/components/container/index.d.ts +0 -1
- package/dist/src/components/container/styles.d.ts +0 -1
- package/dist/src/components/container/types.d.ts +0 -1
- package/dist/src/components/logo/index.d.ts +0 -1
- package/dist/src/components/logo/types.d.ts +0 -1
- package/dist/src/components/typography/heading/index.d.ts +3 -0
- package/dist/src/components/typography/index.d.ts +3 -0
- package/dist/src/components/typography/styles.d.ts +18 -0
- package/dist/src/components/typography/text/index.d.ts +3 -0
- package/dist/src/components/typography/types.d.ts +19 -0
- package/dist/src/hooks/index.d.ts +0 -1
- package/dist/src/hooks/use-cloudinary-image.d.ts +0 -1
- package/dist/src/index.d.ts +0 -1
- package/dist/vite.config.d.ts +0 -1
- package/package.json +2 -1
- package/dist/src/components/@core/constants.d.ts.map +0 -1
- package/dist/src/components/@core/index.d.ts.map +0 -1
- package/dist/src/components/@core/styles.d.ts.map +0 -1
- package/dist/src/components/@core/types.d.ts.map +0 -1
- package/dist/src/components/@core/utils.d.ts.map +0 -1
- package/dist/src/components/@core/variants/utils.d.ts.map +0 -1
- package/dist/src/components/cloud-image/index.d.ts.map +0 -1
- package/dist/src/components/cloud-image/types.d.ts.map +0 -1
- package/dist/src/components/colors/index.d.ts.map +0 -1
- package/dist/src/components/container/index.d.ts.map +0 -1
- package/dist/src/components/container/styles.d.ts.map +0 -1
- package/dist/src/components/container/types.d.ts.map +0 -1
- package/dist/src/components/logo/index.d.ts.map +0 -1
- package/dist/src/components/logo/types.d.ts.map +0 -1
- package/dist/src/hooks/index.d.ts.map +0 -1
- package/dist/src/hooks/use-cloudinary-image.d.ts.map +0 -1
- package/dist/src/index.d.ts.map +0 -1
- package/dist/vite.config.d.ts.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
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
|
-
|
|
4
|
-
|
|
3
|
+
declare const BaseTextComponent: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, TModifiable>> & string;
|
|
4
|
+
export { BaseComponent, BaseTextComponent };
|
|
@@ -1,5 +1,83 @@
|
|
|
1
1
|
import { Property } from 'csstype';
|
|
2
|
-
|
|
2
|
+
type ColorGradient = "01" | "02";
|
|
3
|
+
type ColorPalette = "25" | "50" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900";
|
|
4
|
+
/**
|
|
5
|
+
* Fluidattacks Default theme design
|
|
6
|
+
*/
|
|
7
|
+
interface DefaultTheme {
|
|
8
|
+
breakpoints: {
|
|
9
|
+
mobile: string;
|
|
10
|
+
tablet: string;
|
|
11
|
+
sm: string;
|
|
12
|
+
md: string;
|
|
13
|
+
lg: string;
|
|
14
|
+
};
|
|
15
|
+
spacing: {
|
|
16
|
+
0: "0rem";
|
|
17
|
+
0.125: "0.125rem";
|
|
18
|
+
0.25: "0.25rem";
|
|
19
|
+
0.5: "0.5rem";
|
|
20
|
+
0.625: "0.625rem";
|
|
21
|
+
0.75: "0.75rem";
|
|
22
|
+
1: "1rem";
|
|
23
|
+
1.25: "1.25rem";
|
|
24
|
+
1.5: "1.5rem";
|
|
25
|
+
1.75: "1.75rem";
|
|
26
|
+
2: "2rem";
|
|
27
|
+
2.25: "2.25rem";
|
|
28
|
+
2.5: "2.5rem";
|
|
29
|
+
3: "3rem";
|
|
30
|
+
3.5: "3.5rem";
|
|
31
|
+
4: "4rem";
|
|
32
|
+
5: "5rem";
|
|
33
|
+
6: "6rem";
|
|
34
|
+
};
|
|
35
|
+
typography: {
|
|
36
|
+
type: {
|
|
37
|
+
primary: string;
|
|
38
|
+
poppins: string;
|
|
39
|
+
mono: string;
|
|
40
|
+
};
|
|
41
|
+
heading: {
|
|
42
|
+
xxl: string;
|
|
43
|
+
xl: string;
|
|
44
|
+
lg: string;
|
|
45
|
+
md: string;
|
|
46
|
+
sm: string;
|
|
47
|
+
xs: string;
|
|
48
|
+
};
|
|
49
|
+
text: {
|
|
50
|
+
xl: string;
|
|
51
|
+
lg: string;
|
|
52
|
+
md: string;
|
|
53
|
+
sm: string;
|
|
54
|
+
xs: string;
|
|
55
|
+
};
|
|
56
|
+
weight: {
|
|
57
|
+
bold: string;
|
|
58
|
+
semibold: string;
|
|
59
|
+
regular: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
shadows: {
|
|
63
|
+
none: string;
|
|
64
|
+
sm: string;
|
|
65
|
+
md: string;
|
|
66
|
+
lg: string;
|
|
67
|
+
};
|
|
68
|
+
palette: {
|
|
69
|
+
primary: Record<ColorPalette, string>;
|
|
70
|
+
complementary: Record<ColorPalette, string>;
|
|
71
|
+
error: Record<ColorPalette, string>;
|
|
72
|
+
info: Record<ColorPalette, string>;
|
|
73
|
+
warning: Record<ColorPalette, string>;
|
|
74
|
+
success: Record<ColorPalette, string>;
|
|
75
|
+
gray: Record<ColorPalette, string>;
|
|
76
|
+
gradients: Record<ColorGradient, string>;
|
|
77
|
+
black: string;
|
|
78
|
+
white: string;
|
|
79
|
+
};
|
|
80
|
+
}
|
|
3
81
|
type TSpacing = keyof DefaultTheme["spacing"];
|
|
4
82
|
type TShadows = keyof DefaultTheme["shadows"];
|
|
5
83
|
interface IPaddingModifiable {
|
|
@@ -61,13 +139,17 @@ interface IDisplayModifiable {
|
|
|
61
139
|
}
|
|
62
140
|
interface ITextModifiable {
|
|
63
141
|
color?: string;
|
|
142
|
+
fontFamily?: Property.FontFamily;
|
|
64
143
|
fontSize?: Property.FontSize<number | string>;
|
|
65
144
|
fontWeight?: Property.FontWeight;
|
|
145
|
+
letterSpacing?: Property.LetterSpacing;
|
|
66
146
|
lineSpacing?: Property.LineHeight<number | string>;
|
|
67
147
|
textAlign?: Property.TextAlign;
|
|
148
|
+
textDecoration?: Property.TextDecoration;
|
|
68
149
|
textOverflow?: Property.Overflow;
|
|
69
150
|
whiteSpace?: Property.WhiteSpace;
|
|
70
151
|
wordBreak?: Property.WordBreak;
|
|
152
|
+
wordWrap?: Property.WordWrap;
|
|
71
153
|
}
|
|
72
154
|
interface IInteractionModifiable {
|
|
73
155
|
cursor?: Property.Cursor;
|
|
@@ -77,5 +159,4 @@ interface IInteractionModifiable {
|
|
|
77
159
|
shadowHover?: TShadows;
|
|
78
160
|
}
|
|
79
161
|
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
|
|
162
|
+
export type { DefaultTheme as ThemeType, 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
|
|
@@ -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
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { TTextProps } from './types';
|
|
2
|
+
interface IStyledTextProps {
|
|
3
|
+
$color?: TTextProps["color"];
|
|
4
|
+
$display?: TTextProps["display"];
|
|
5
|
+
$fontFamily?: TTextProps["fontFamily"];
|
|
6
|
+
$fontWeight?: TTextProps["fontWeight"];
|
|
7
|
+
$letterSpacing?: TTextProps["letterSpacing"];
|
|
8
|
+
$lineSpacing?: TTextProps["lineSpacing"];
|
|
9
|
+
$size: TTextProps["size"];
|
|
10
|
+
$wordBreak?: TTextProps["wordBreak"];
|
|
11
|
+
}
|
|
12
|
+
declare const StyledHeading: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<Omit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, keyof import('../@core').IPaddingModifiable | keyof import('../@core').IMarginModifiable | keyof import('../@core').IPositionModifiable | keyof import('../@core').IBorderModifiable | keyof import('../@core').IDisplayModifiable | keyof import('../@core').ITextModifiable | keyof import('../@core').IInteractionModifiable> & import('../@core').IBorderModifiable & import('../@core').IDisplayModifiable & import('../@core').IInteractionModifiable & import('../@core').IMarginModifiable & import('../@core').IPaddingModifiable & import('../@core').IPositionModifiable & import('../@core').ITextModifiable, "ref"> & {
|
|
13
|
+
ref?: ((instance: HTMLParagraphElement | null) => void) | import('react').RefObject<HTMLParagraphElement> | null | undefined;
|
|
14
|
+
}, IStyledTextProps>> & string;
|
|
15
|
+
declare const StyledText: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<Omit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, keyof import('../@core').IPaddingModifiable | keyof import('../@core').IMarginModifiable | keyof import('../@core').IPositionModifiable | keyof import('../@core').IBorderModifiable | keyof import('../@core').IDisplayModifiable | keyof import('../@core').ITextModifiable | keyof import('../@core').IInteractionModifiable> & import('../@core').IBorderModifiable & import('../@core').IDisplayModifiable & import('../@core').IInteractionModifiable & import('../@core').IMarginModifiable & import('../@core').IPaddingModifiable & import('../@core').IPositionModifiable & import('../@core').ITextModifiable, "ref"> & {
|
|
16
|
+
ref?: ((instance: HTMLParagraphElement | null) => void) | import('react').RefObject<HTMLParagraphElement> | null | undefined;
|
|
17
|
+
}, IStyledTextProps>> & string;
|
|
18
|
+
export { StyledHeading, StyledText };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Property } from 'csstype';
|
|
2
|
+
import { IMarginModifiable, IPaddingModifiable, ITextModifiable } from '../@core';
|
|
3
|
+
import { DefaultTheme } from 'styled-components';
|
|
4
|
+
type TSize = keyof DefaultTheme["typography"]["heading"];
|
|
5
|
+
/**
|
|
6
|
+
* Typography component props.
|
|
7
|
+
* @extends IMarginModifiable
|
|
8
|
+
* @extends IPaddingModifiable
|
|
9
|
+
* @extends ITextModifiable
|
|
10
|
+
* @property {Display} [display] Text display layout.
|
|
11
|
+
* @property {TSize} size Text required size.
|
|
12
|
+
*/
|
|
13
|
+
interface ITypographyProps extends IMarginModifiable, IPaddingModifiable, Omit<ITextModifiable, "fontSize"> {
|
|
14
|
+
display?: Property.Display;
|
|
15
|
+
size: TSize;
|
|
16
|
+
}
|
|
17
|
+
type THeadingProps = ITypographyProps;
|
|
18
|
+
type TTextProps = ITypographyProps;
|
|
19
|
+
export type { THeadingProps, TTextProps, ITypographyProps };
|
package/dist/src/index.d.ts
CHANGED
package/dist/vite.config.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"license": "MPL-2.0",
|
|
44
44
|
"main": "dist/design.js",
|
|
45
45
|
"module": "dist/design.mjs",
|
|
46
|
+
"types": "dist/src/index.d.ts",
|
|
46
47
|
"name": "@fluidattacks/design",
|
|
47
48
|
"publishConfig": {
|
|
48
49
|
"access": "public"
|
|
@@ -56,5 +57,5 @@
|
|
|
56
57
|
"build": "tsc && vite build",
|
|
57
58
|
"preview": "vite preview"
|
|
58
59
|
},
|
|
59
|
-
"version": "1.2.
|
|
60
|
+
"version": "1.2.5"
|
|
60
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"}
|
package/dist/src/index.d.ts.map
DELETED
|
@@ -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"}
|