jamespot-react-components 1.2.45 → 1.2.47
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/build/jamespot-react-components.js +231 -229
- package/build/jamespot-react-components.js.map +1 -1
- package/build/src/components/JRCMediaLoader/JRCMediaLoader.d.ts +8 -0
- package/build/src/components/JRCMediaLoader/JRCMediaLoader.stories.d.ts +6 -0
- package/build/src/components/index.d.ts +1 -0
- package/build/src/types.d.ts +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ImgUrlProps } from 'jamespot-user-api';
|
|
2
|
+
export type JRCMediaLoaderProps = ImgUrlProps & {
|
|
3
|
+
src: string;
|
|
4
|
+
alt: string;
|
|
5
|
+
className?: string;
|
|
6
|
+
onLoad?: () => void;
|
|
7
|
+
};
|
|
8
|
+
export declare const JRCMediaLoader: (props: JRCMediaLoaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -102,6 +102,7 @@ export { JRCIconButton } from './JRCIconButton/JRCIconButton';
|
|
|
102
102
|
export { JRCImg } from './JRCImg/JRCImg';
|
|
103
103
|
export { JRCList } from './JRCList/JRCList';
|
|
104
104
|
export { JRCLoader } from './JRCLoader/JRCLoader';
|
|
105
|
+
export { JRCMediaLoader } from './JRCMediaLoader/JRCMediaLoader';
|
|
105
106
|
export { JRCMenu } from './JRCMenu/JRCMenu';
|
|
106
107
|
export { JRCMessage } from './JRCMessage/JRCMessage';
|
|
107
108
|
export { JRCModalContent } from './JRCModal/JRCModalContent';
|
package/build/src/types.d.ts
CHANGED
|
@@ -69,6 +69,7 @@ export type { JRCIconButtonProps } from './components/JRCIconButton/JRCIconButto
|
|
|
69
69
|
export type { JRCImgProps } from './components/JRCImg/JRCImg';
|
|
70
70
|
export type { JRCListProps, PaginationPagination } from './components/JRCList/JRCList';
|
|
71
71
|
export type { JRCLoaderProps } from './components/JRCLoader/JRCLoader';
|
|
72
|
+
export type { JRCMediaLoaderProps } from './components/JRCMediaLoader/JRCMediaLoader';
|
|
72
73
|
export type { JRCMenuItemProps, JRCMenuProps } from './components/JRCMenu/JRCMenu';
|
|
73
74
|
export type { JRCModalButtonType, JRCModalContentProps } from './components/JRCModal/JRCModalContent';
|
|
74
75
|
export type { JRCModalContentFormProps, JRCModalFormButtonType } from './components/JRCModal/JRCModalContentForm';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-components",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.47",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/jamespot-react-components.js",
|
|
6
6
|
"types": "./build/src/index.d.ts",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"html-webpack-plugin": "^5.6.4",
|
|
69
69
|
"husky": "^7.0.4",
|
|
70
70
|
"identity-obj-proxy": "^3.0.0",
|
|
71
|
-
"jamespot-user-api": "^1.2.
|
|
71
|
+
"jamespot-user-api": "^1.2.47",
|
|
72
72
|
"jest": "^30.1.2",
|
|
73
73
|
"jest-environment-jsdom": "^30.1.2",
|
|
74
74
|
"jest-styled-components": "^7.2.0",
|