@mycause/ui 0.0.0-cabc1e23 → 0.0.0-cac0ddff
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/CHANGELOG.md +54 -0
- package/dist/components/index.d.ts +2 -6
- package/dist/components/input-social/Icons.d.ts +5 -0
- package/dist/components/input-social/InputSocial.d.ts +12 -0
- package/dist/components/input-social/index.d.ts +1 -0
- package/dist/components/input-social/input-social.stories.d.ts +12 -0
- package/dist/components/my-account-sidebar/my-account-sidebar.d.ts +3 -2
- package/dist/components/my-account-start-fundraise-card/my-account-start-fundraise-card.d.ts +5 -3
- package/dist/components/my-account-start-fundraise-card/my-account-start-fundraise-card.stories.d.ts +7 -1
- package/dist/components/phone-number-input/phone-number-input.d.ts +2 -1
- package/dist/components/phone-number-input/phone-number-input.stories.d.ts +6 -0
- package/dist/components/select/select.stories.d.ts +2 -2
- package/dist/components/switch/index.d.ts +1 -0
- package/dist/components/switch/switch-v2.d.ts +8 -0
- package/dist/components/switch/switch.stories.d.ts +6 -0
- package/dist/components/text-field/text-field-search.d.ts +2 -1
- package/dist/components/toast/Icons.d.ts +7 -0
- package/dist/components/toast/index.d.ts +1 -0
- package/dist/components/toast/toast.d.ts +8 -0
- package/dist/components/toast/toast.stories.d.ts +12 -0
- package/dist/components/transaction-card/transaction-card.d.ts +2 -1
- package/dist/components/transaction-card/transaction-card.stories.d.ts +1 -1
- package/dist/components/uploader/Icons.d.ts +6 -0
- package/dist/components/uploader/index.d.ts +1 -0
- package/dist/components/uploader/uploadAndCropper.d.ts +6 -0
- package/dist/index.esm.js +919 -437
- package/dist/index.js +922 -436
- package/package.json +4 -1
- package/dist/components/donate-card copy/donate-card.d.ts +0 -8
- package/dist/components/donate-card copy/donate-card.stories.d.ts +0 -14
- package/dist/components/donate-card copy/index.d.ts +0 -1
- package/dist/components/transaction-card/donate-card.d.ts +0 -8
- package/dist/components/transaction-card/donate-card.stories.d.ts +0 -14
- package/dist/components/transaction-card/transaction-cardstories.d.ts +0 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mycause/ui",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-cac0ddff",
|
|
4
4
|
"author": "Marc Porciuncula <marc@mycause.com.au>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -97,6 +97,7 @@
|
|
|
97
97
|
"@material/theme": "^3.1.0",
|
|
98
98
|
"@material/typography": "^3.1.0",
|
|
99
99
|
"@types/nanoid": "^2.1.0",
|
|
100
|
+
"@types/react-avatar-editor": "^13.0.2",
|
|
100
101
|
"@types/react-cropper": "^0.10.7",
|
|
101
102
|
"@types/react-dates": "^17.1.5",
|
|
102
103
|
"classnames": "^2.2.6",
|
|
@@ -106,9 +107,11 @@
|
|
|
106
107
|
"libphonenumber-js": "^1.7.29",
|
|
107
108
|
"nanoid": "^2.1.6",
|
|
108
109
|
"ramda": "^0.26.1",
|
|
110
|
+
"react-avatar-editor": "^13.0.2",
|
|
109
111
|
"react-cropper": "^1.3.0",
|
|
110
112
|
"react-dates": "^21.5.0",
|
|
111
113
|
"react-dropzone-uploader": "^2.11.0",
|
|
114
|
+
"react-toastify": "8.1.0",
|
|
112
115
|
"styled-jsx": "^3.2.1",
|
|
113
116
|
"use-media": "^1.4.0"
|
|
114
117
|
},
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/// <reference types="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("./donate-card").DonateCardProps) => JSX.Element;
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
9
|
-
export declare const donatecard: {
|
|
10
|
-
(): JSX.Element;
|
|
11
|
-
story: {
|
|
12
|
-
name: string;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as DonateCard } from "./donate-card";
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/// <reference types="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("./transaction-card").DonateCardProps) => JSX.Element;
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
9
|
-
export declare const donatecard: {
|
|
10
|
-
(): JSX.Element;
|
|
11
|
-
story: {
|
|
12
|
-
name: string;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/// <reference types="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("./transaction-card").DonateCardProps) => JSX.Element;
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
9
|
-
export declare const donatecard: {
|
|
10
|
-
(): JSX.Element;
|
|
11
|
-
story: {
|
|
12
|
-
name: string;
|
|
13
|
-
};
|
|
14
|
-
};
|