jamespot-react-components 1.3.32 → 1.3.33
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/jamespot-react-components.cjs +671 -665
- package/dist/jamespot-react-components.js +3516 -3508
- package/dist/src/components/Common/Ellipsis.d.ts +1 -0
- package/dist/src/components/Form/Input/JRCInputTextRaw/JRCInputTextRaw.style.d.ts +3 -1
- package/dist/src/components/JRCDragNDrop/styles.d.ts +2 -1
- package/dist/src/components/JRCTypography/JRCTypography.d.d.ts +1 -0
- package/dist/src/components/JRCTypography/JRCTypography.d.ts +1 -1
- package/dist/src/components/JRCTypography/JRCTypography.styles.d.ts +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Ellipsis: (maxWidth?: string | number) => import('styled-components').RuleSet<object>;
|
|
@@ -13,6 +13,7 @@ export declare const Required: import('styled-components/dist/types').IStyledCom
|
|
|
13
13
|
align?: "center" | "left" | "right";
|
|
14
14
|
hoverColor?: import('../../../..').ColorsOrShades;
|
|
15
15
|
ellipsis?: boolean;
|
|
16
|
+
maxWidth?: string | number;
|
|
16
17
|
}, import('../../../Common/FastCss').FastCssProps & {
|
|
17
18
|
id?: string;
|
|
18
19
|
className?: string;
|
|
@@ -24,8 +25,9 @@ export declare const Required: import('styled-components/dist/types').IStyledCom
|
|
|
24
25
|
align?: "center" | "left" | "right";
|
|
25
26
|
hoverColor?: import('../../../..').ColorsOrShades;
|
|
26
27
|
ellipsis?: boolean;
|
|
28
|
+
maxWidth?: string | number;
|
|
27
29
|
}>, never>, {
|
|
28
30
|
error: boolean;
|
|
29
|
-
}>> & string & Omit<({ variant, ellipsis, size, weight, color, align, hoverColor, ...props }: import('../../../..').JRCTypographyProps) => import("react/jsx-runtime").JSX.Element, keyof import('react').Component<any, {}, any>>;
|
|
31
|
+
}>> & string & Omit<({ variant, ellipsis, size, weight, color, align, hoverColor, maxWidth, ...props }: import('../../../..').JRCTypographyProps) => import("react/jsx-runtime").JSX.Element, keyof import('react').Component<any, {}, any>>;
|
|
30
32
|
export declare const LabelWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
31
33
|
export declare const InputTextRawStyled: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components').FastOmit<import('styled-components/dist/types').Substitute<import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>, import('../JRCStyledInput').CommonStyledInputProps>, never>, never>> & string;
|
|
@@ -16,7 +16,8 @@ export declare const SectionsTitle: import('styled-components/dist/types').IStyl
|
|
|
16
16
|
align?: "center" | "left" | "right";
|
|
17
17
|
hoverColor?: import('../..').ColorsOrShades;
|
|
18
18
|
ellipsis?: boolean;
|
|
19
|
-
|
|
19
|
+
maxWidth?: string | number;
|
|
20
|
+
}, never>> & string & Omit<({ variant, ellipsis, size, weight, color, align, hoverColor, maxWidth, ...props }: import('../..').JRCTypographyProps) => import("react/jsx-runtime").JSX.Element, keyof import('react').Component<any, {}, any>>;
|
|
20
21
|
export declare const SectionLabel: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
21
22
|
export declare const SectionsList: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
22
23
|
export declare const SectionWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { JRCTypographyProps } from './JRCTypography.d';
|
|
2
|
-
export declare const JRCTypography: ({ variant, ellipsis, size, weight, color, align, hoverColor, ...props }: JRCTypographyProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare const JRCTypography: ({ variant, ellipsis, size, weight, color, align, hoverColor, maxWidth, ...props }: JRCTypographyProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -12,6 +12,7 @@ export declare const SIZES: Readonly<{
|
|
|
12
12
|
}>;
|
|
13
13
|
export declare const Typography: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, {
|
|
14
14
|
$ellipsis: JRCTypographyProps["ellipsis"];
|
|
15
|
+
$maxWidth: JRCTypographyProps["maxWidth"];
|
|
15
16
|
$size: JRCTypographyProps["size"];
|
|
16
17
|
$weight: JRCTypographyProps["weight"];
|
|
17
18
|
$color: JRCTypographyProps["color"];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.33",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/jamespot-react-components.js",
|
|
6
6
|
"module": "dist/jamespot-react-components.mjs",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"globals": "^16.5.0",
|
|
79
79
|
"html2canvas": "^1.4.1",
|
|
80
80
|
"husky": "^9.1.7",
|
|
81
|
-
"jamespot-user-api": "^1.3.
|
|
81
|
+
"jamespot-user-api": "^1.3.33",
|
|
82
82
|
"jest": "^30.2.0",
|
|
83
83
|
"jest-environment-jsdom": "^30.2.0",
|
|
84
84
|
"knip": "^5.70.0",
|