@selfcommunity/react-ui 1.2.7-alpha.2 → 1.2.8-alpha.3
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/lib/cjs/components/UserProfileEdit/UserProfileEdit.d.ts +3 -0
- package/lib/cjs/components/UserProfileEdit/UserProfileEdit.js +3 -0
- package/lib/cjs/constants/UserProfile.js +1 -2
- package/lib/esm/components/UserProfileEdit/UserProfileEdit.d.ts +3 -0
- package/lib/esm/components/UserProfileEdit/UserProfileEdit.js +3 -0
- package/lib/esm/constants/UserProfile.js +1 -2
- package/lib/umd/react-ui.js +1 -1
- package/package.json +8 -8
|
@@ -67,6 +67,9 @@ export interface UserProfileEditProps {
|
|
|
67
67
|
|root|.SCUserProfileEdit-root|Styles applied to the root element.|
|
|
68
68
|
|tabs|.SCUserProfileEdit-tabs|Styles applied to the tab elements.|
|
|
69
69
|
|tabsContent|.SCUserProfileEdit-tabs-content|Styles applied to tab content elements.|
|
|
70
|
+
|publicInfo|.SCUserProfileEdit-public-info|Styles applied to the public info section.|
|
|
71
|
+
|account|.SCUserProfileEdit-account|Styles applied to the account section.|
|
|
72
|
+
|settings|.SCUserProfileEdit-settings|Styles applied to the settings section.|
|
|
70
73
|
|
|
71
74
|
* @param inProps
|
|
72
75
|
*/
|
|
@@ -49,6 +49,9 @@ const Root = (0, material_1.styled)(material_1.Box, {
|
|
|
49
49
|
|root|.SCUserProfileEdit-root|Styles applied to the root element.|
|
|
50
50
|
|tabs|.SCUserProfileEdit-tabs|Styles applied to the tab elements.|
|
|
51
51
|
|tabsContent|.SCUserProfileEdit-tabs-content|Styles applied to tab content elements.|
|
|
52
|
+
|publicInfo|.SCUserProfileEdit-public-info|Styles applied to the public info section.|
|
|
53
|
+
|account|.SCUserProfileEdit-account|Styles applied to the account section.|
|
|
54
|
+
|settings|.SCUserProfileEdit-settings|Styles applied to the settings section.|
|
|
52
55
|
|
|
53
56
|
* @param inProps
|
|
54
57
|
*/
|
|
@@ -6,7 +6,6 @@ exports.DEFAULT_FIELDS = [
|
|
|
6
6
|
types_1.SCUserProfileFields.REAL_NAME,
|
|
7
7
|
types_1.SCUserProfileFields.DATE_OF_BIRTH,
|
|
8
8
|
types_1.SCUserProfileFields.BIO,
|
|
9
|
-
types_1.SCUserProfileFields.WEBSITE
|
|
10
|
-
types_1.SCUserProfileFields.DESCRIPTION
|
|
9
|
+
types_1.SCUserProfileFields.WEBSITE
|
|
11
10
|
];
|
|
12
11
|
exports.DEFAULT_SETTINGS = [types_1.SCUserProfileSettings.NOTIFICATION, types_1.SCUserProfileSettings.INTERACTION, types_1.SCUserProfileSettings.PRIVATE_MESSAGE];
|
|
@@ -67,6 +67,9 @@ export interface UserProfileEditProps {
|
|
|
67
67
|
|root|.SCUserProfileEdit-root|Styles applied to the root element.|
|
|
68
68
|
|tabs|.SCUserProfileEdit-tabs|Styles applied to the tab elements.|
|
|
69
69
|
|tabsContent|.SCUserProfileEdit-tabs-content|Styles applied to tab content elements.|
|
|
70
|
+
|publicInfo|.SCUserProfileEdit-public-info|Styles applied to the public info section.|
|
|
71
|
+
|account|.SCUserProfileEdit-account|Styles applied to the account section.|
|
|
72
|
+
|settings|.SCUserProfileEdit-settings|Styles applied to the settings section.|
|
|
70
73
|
|
|
71
74
|
* @param inProps
|
|
72
75
|
*/
|
|
@@ -47,6 +47,9 @@ const Root = styled(Box, {
|
|
|
47
47
|
|root|.SCUserProfileEdit-root|Styles applied to the root element.|
|
|
48
48
|
|tabs|.SCUserProfileEdit-tabs|Styles applied to the tab elements.|
|
|
49
49
|
|tabsContent|.SCUserProfileEdit-tabs-content|Styles applied to tab content elements.|
|
|
50
|
+
|publicInfo|.SCUserProfileEdit-public-info|Styles applied to the public info section.|
|
|
51
|
+
|account|.SCUserProfileEdit-account|Styles applied to the account section.|
|
|
52
|
+
|settings|.SCUserProfileEdit-settings|Styles applied to the settings section.|
|
|
50
53
|
|
|
51
54
|
* @param inProps
|
|
52
55
|
*/
|
|
@@ -3,7 +3,6 @@ export const DEFAULT_FIELDS = [
|
|
|
3
3
|
SCUserProfileFields.REAL_NAME,
|
|
4
4
|
SCUserProfileFields.DATE_OF_BIRTH,
|
|
5
5
|
SCUserProfileFields.BIO,
|
|
6
|
-
SCUserProfileFields.WEBSITE
|
|
7
|
-
SCUserProfileFields.DESCRIPTION
|
|
6
|
+
SCUserProfileFields.WEBSITE
|
|
8
7
|
];
|
|
9
8
|
export const DEFAULT_SETTINGS = [SCUserProfileSettings.NOTIFICATION, SCUserProfileSettings.INTERACTION, SCUserProfileSettings.PRIVATE_MESSAGE];
|