@selfcommunity/react-theme-default 0.5.0-alpha.11 → 0.5.0-alpha.12
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/SCUserAutocomplete.d.ts +18 -0
- package/lib/cjs/components/SCUserAutocomplete.js +20 -0
- package/lib/cjs/index.d.ts +17 -3
- package/lib/cjs/index.js +2 -0
- package/lib/esm/components/SCUserAutocomplete.d.ts +18 -0
- package/lib/esm/components/SCUserAutocomplete.js +18 -0
- package/lib/esm/index.d.ts +17 -3
- package/lib/esm/index.js +2 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: any) => {
|
|
4
|
+
'& .SCUserAutocomplete-info': {
|
|
5
|
+
[x: number]: {
|
|
6
|
+
alignItems: string;
|
|
7
|
+
};
|
|
8
|
+
marginTop: any;
|
|
9
|
+
display: string;
|
|
10
|
+
'& .MuiIcon-root': {
|
|
11
|
+
marginRight: any;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
autocompleteRoot: ({ theme }: any) => {};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const Component = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({
|
|
6
|
+
'& .SCUserAutocomplete-info': {
|
|
7
|
+
marginTop: theme.spacing(3),
|
|
8
|
+
display: 'flex',
|
|
9
|
+
[theme.breakpoints.up('sm')]: {
|
|
10
|
+
alignItems: 'center'
|
|
11
|
+
},
|
|
12
|
+
'& .MuiIcon-root': {
|
|
13
|
+
marginRight: theme.spacing(0.5)
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}),
|
|
17
|
+
autocompleteRoot: ({ theme }) => ({})
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
exports.default = Component;
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -8065,9 +8065,6 @@ declare const theme: {
|
|
|
8065
8065
|
alignItems: string;
|
|
8066
8066
|
marginRight: any;
|
|
8067
8067
|
'& .MuiIcon-root': {
|
|
8068
|
-
/**
|
|
8069
|
-
* Style assets - Imports - Start
|
|
8070
|
-
*/
|
|
8071
8068
|
margin: any;
|
|
8072
8069
|
};
|
|
8073
8070
|
};
|
|
@@ -9067,6 +9064,23 @@ declare const theme: {
|
|
|
9067
9064
|
};
|
|
9068
9065
|
};
|
|
9069
9066
|
};
|
|
9067
|
+
SCUserAutocomplete: {
|
|
9068
|
+
styleOverrides: {
|
|
9069
|
+
root: ({ theme }: any) => {
|
|
9070
|
+
'& .SCUserAutocomplete-info': {
|
|
9071
|
+
[x: number]: {
|
|
9072
|
+
alignItems: string;
|
|
9073
|
+
};
|
|
9074
|
+
marginTop: any;
|
|
9075
|
+
display: string;
|
|
9076
|
+
'& .MuiIcon-root': {
|
|
9077
|
+
marginRight: any;
|
|
9078
|
+
};
|
|
9079
|
+
};
|
|
9080
|
+
};
|
|
9081
|
+
autocompleteRoot: ({ theme }: any) => {};
|
|
9082
|
+
};
|
|
9083
|
+
};
|
|
9070
9084
|
SCUserCategoriesFollowedWidget: {
|
|
9071
9085
|
styleOverrides: {
|
|
9072
9086
|
root: ({ theme }: any) => {};
|
package/lib/cjs/index.js
CHANGED
|
@@ -187,6 +187,7 @@ const SCToastNotifications_1 = tslib_1.__importDefault(require("./components/SCT
|
|
|
187
187
|
const SCUser_1 = tslib_1.__importDefault(require("./components/SCUser"));
|
|
188
188
|
const SCUserActionIconButton_1 = tslib_1.__importDefault(require("./components/SCUserActionIconButton"));
|
|
189
189
|
const SCUserAvatar_1 = tslib_1.__importDefault(require("./components/SCUserAvatar"));
|
|
190
|
+
const SCUserAutocomplete_1 = tslib_1.__importDefault(require("./components/SCUserAutocomplete"));
|
|
190
191
|
const SCUserCategoriesFollowedWidget_1 = tslib_1.__importDefault(require("./components/SCUserCategoriesFollowedWidget"));
|
|
191
192
|
const SCUserConnectionsRequestsSentWidget_1 = tslib_1.__importDefault(require("./components/SCUserConnectionsRequestsSentWidget"));
|
|
192
193
|
const SCUserConnectionsRequestsWidget_1 = tslib_1.__importDefault(require("./components/SCUserConnectionsRequestsWidget"));
|
|
@@ -458,6 +459,7 @@ const theme = {
|
|
|
458
459
|
SCUser: SCUser_1.default,
|
|
459
460
|
SCUserActionIconButton: SCUserActionIconButton_1.default,
|
|
460
461
|
SCUserAvatar: SCUserAvatar_1.default,
|
|
462
|
+
SCUserAutocomplete: SCUserAutocomplete_1.default,
|
|
461
463
|
SCUserCategoriesFollowedWidget: SCUserCategoriesFollowedWidget_1.default,
|
|
462
464
|
SCUserConnectionsRequestsSentWidget: SCUserConnectionsRequestsSentWidget_1.default,
|
|
463
465
|
SCUserConnectionsRequestsWidget: SCUserConnectionsRequestsWidget_1.default,
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: any) => {
|
|
4
|
+
'& .SCUserAutocomplete-info': {
|
|
5
|
+
[x: number]: {
|
|
6
|
+
alignItems: string;
|
|
7
|
+
};
|
|
8
|
+
marginTop: any;
|
|
9
|
+
display: string;
|
|
10
|
+
'& .MuiIcon-root': {
|
|
11
|
+
marginRight: any;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
autocompleteRoot: ({ theme }: any) => {};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export default Component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
const Component = {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }) => ({
|
|
4
|
+
'& .SCUserAutocomplete-info': {
|
|
5
|
+
marginTop: theme.spacing(3),
|
|
6
|
+
display: 'flex',
|
|
7
|
+
[theme.breakpoints.up('sm')]: {
|
|
8
|
+
alignItems: 'center'
|
|
9
|
+
},
|
|
10
|
+
'& .MuiIcon-root': {
|
|
11
|
+
marginRight: theme.spacing(0.5)
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}),
|
|
15
|
+
autocompleteRoot: ({ theme }) => ({})
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
export default Component;
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -8065,9 +8065,6 @@ declare const theme: {
|
|
|
8065
8065
|
alignItems: string;
|
|
8066
8066
|
marginRight: any;
|
|
8067
8067
|
'& .MuiIcon-root': {
|
|
8068
|
-
/**
|
|
8069
|
-
* Style assets - Imports - Start
|
|
8070
|
-
*/
|
|
8071
8068
|
margin: any;
|
|
8072
8069
|
};
|
|
8073
8070
|
};
|
|
@@ -9067,6 +9064,23 @@ declare const theme: {
|
|
|
9067
9064
|
};
|
|
9068
9065
|
};
|
|
9069
9066
|
};
|
|
9067
|
+
SCUserAutocomplete: {
|
|
9068
|
+
styleOverrides: {
|
|
9069
|
+
root: ({ theme }: any) => {
|
|
9070
|
+
'& .SCUserAutocomplete-info': {
|
|
9071
|
+
[x: number]: {
|
|
9072
|
+
alignItems: string;
|
|
9073
|
+
};
|
|
9074
|
+
marginTop: any;
|
|
9075
|
+
display: string;
|
|
9076
|
+
'& .MuiIcon-root': {
|
|
9077
|
+
marginRight: any;
|
|
9078
|
+
};
|
|
9079
|
+
};
|
|
9080
|
+
};
|
|
9081
|
+
autocompleteRoot: ({ theme }: any) => {};
|
|
9082
|
+
};
|
|
9083
|
+
};
|
|
9070
9084
|
SCUserCategoriesFollowedWidget: {
|
|
9071
9085
|
styleOverrides: {
|
|
9072
9086
|
root: ({ theme }: any) => {};
|
package/lib/esm/index.js
CHANGED
|
@@ -183,6 +183,7 @@ import SCToastNotifications from './components/SCToastNotifications';
|
|
|
183
183
|
import SCUser from './components/SCUser';
|
|
184
184
|
import SCUserActionIconButton from './components/SCUserActionIconButton';
|
|
185
185
|
import SCUserAvatar from './components/SCUserAvatar';
|
|
186
|
+
import SCUserAutocomplete from './components/SCUserAutocomplete';
|
|
186
187
|
import SCUserCategoriesFollowedWidget from './components/SCUserCategoriesFollowedWidget';
|
|
187
188
|
import SCUserConnectionsRequestsSentWidget from './components/SCUserConnectionsRequestsSentWidget';
|
|
188
189
|
import SCUserConnectionsRequestsWidget from './components/SCUserConnectionsRequestsWidget';
|
|
@@ -446,6 +447,7 @@ const theme = {
|
|
|
446
447
|
SCUser,
|
|
447
448
|
SCUserActionIconButton,
|
|
448
449
|
SCUserAvatar,
|
|
450
|
+
SCUserAutocomplete,
|
|
449
451
|
SCUserCategoriesFollowedWidget,
|
|
450
452
|
SCUserConnectionsRequestsSentWidget,
|
|
451
453
|
SCUserConnectionsRequestsWidget,
|