@mycause/ui 1.0.12 → 1.0.13-test
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/components/index.d.ts +0 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.esm.css +1 -1
- package/dist/index.esm.css.map +1 -1
- package/dist/index.esm.js +314 -354
- package/dist/index.js +313 -354
- package/package.json +4 -3
- package/dist/components/start-campaign-card/index.d.ts +0 -1
- package/dist/components/start-campaign-card/start-campaign-card.d.ts +0 -8
- package/dist/components/start-campaign-card/start-campaign-card.stories.d.ts +0 -14
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mycause/ui",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"author": "
|
|
3
|
+
"version": "1.0.13test",
|
|
4
|
+
"author": "Mycause team",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.esm.js",
|
|
@@ -132,5 +132,6 @@
|
|
|
132
132
|
],
|
|
133
133
|
"resolutions": {
|
|
134
134
|
"moment": "2.29.4"
|
|
135
|
-
}
|
|
135
|
+
},
|
|
136
|
+
"packageManager": "yarn@1.22.22"
|
|
136
137
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as StartCampaignCard } from "./start-campaign-card";
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
export interface StartCampaignCardProps {
|
|
3
|
-
className?: string;
|
|
4
|
-
title?: string;
|
|
5
|
-
description?: string;
|
|
6
|
-
}
|
|
7
|
-
declare const StartCampaignCard: ({ className, title, description, }: StartCampaignCardProps) => React.JSX.Element;
|
|
8
|
-
export default StartCampaignCard;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import CenterDecorator from "../../utils/center-decorator";
|
|
3
|
-
declare const _default: {
|
|
4
|
-
title: string;
|
|
5
|
-
decorators: (typeof CenterDecorator)[];
|
|
6
|
-
component: ({ className, title, description, }: import("./start-campaign-card").StartCampaignCardProps) => React.JSX.Element;
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
9
|
-
export declare const startcampaincard: {
|
|
10
|
-
(): React.JSX.Element;
|
|
11
|
-
story: {
|
|
12
|
-
name: string;
|
|
13
|
-
};
|
|
14
|
-
};
|