@selfcommunity/react-theme-default 0.2.0-live.92 → 0.2.0-live.94
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/SCLiveStreamRoom.js +1 -1
- package/lib/cjs/components/SCLiveStreamSelector.js +1 -1
- package/lib/cjs/components/SCUpScalingTierBadge.d.ts +13 -0
- package/lib/cjs/components/SCUpScalingTierBadge.js +15 -0
- package/lib/cjs/index.d.ts +15 -3
- package/lib/cjs/index.js +2 -0
- package/lib/esm/components/SCLiveStreamRoom.js +1 -1
- package/lib/esm/components/SCLiveStreamSelector.js +1 -1
- package/lib/esm/components/SCUpScalingTierBadge.d.ts +13 -0
- package/lib/esm/components/SCUpScalingTierBadge.js +13 -0
- package/lib/esm/index.d.ts +15 -3
- package/lib/esm/index.js +2 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: any) => {};
|
|
4
|
+
badgeRoot: ({ theme }: any) => {
|
|
5
|
+
background: string;
|
|
6
|
+
borderRadius: number;
|
|
7
|
+
padding: string;
|
|
8
|
+
height: string;
|
|
9
|
+
fontSize: number;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export default Component;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const Component = {
|
|
4
|
+
styleOverrides: {
|
|
5
|
+
root: ({ theme }) => ({}),
|
|
6
|
+
badgeRoot: ({ theme }) => ({
|
|
7
|
+
background: '#008080',
|
|
8
|
+
borderRadius: 3,
|
|
9
|
+
padding: '1px',
|
|
10
|
+
height: 'auto',
|
|
11
|
+
fontSize: 12
|
|
12
|
+
})
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
exports.default = Component;
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -2517,6 +2517,9 @@ declare const theme: {
|
|
|
2517
2517
|
background: string;
|
|
2518
2518
|
border: string;
|
|
2519
2519
|
'& .SCEditor-root': {
|
|
2520
|
+
/**
|
|
2521
|
+
* Export default theme
|
|
2522
|
+
*/
|
|
2520
2523
|
'& .SCEditor-placeholder': {
|
|
2521
2524
|
fontWeight: any;
|
|
2522
2525
|
};
|
|
@@ -5504,9 +5507,6 @@ declare const theme: {
|
|
|
5504
5507
|
};
|
|
5505
5508
|
'& .SCOnBoardingWidget-profile-change-picture': {
|
|
5506
5509
|
[x: number]: {
|
|
5507
|
-
/**
|
|
5508
|
-
* Style assets - Imports - Start
|
|
5509
|
-
*/
|
|
5510
5510
|
top: number;
|
|
5511
5511
|
left: number;
|
|
5512
5512
|
};
|
|
@@ -8793,6 +8793,18 @@ declare const theme: {
|
|
|
8793
8793
|
};
|
|
8794
8794
|
};
|
|
8795
8795
|
};
|
|
8796
|
+
SCUpScalingTierBadge: {
|
|
8797
|
+
styleOverrides: {
|
|
8798
|
+
root: ({ theme }: any) => {};
|
|
8799
|
+
badgeRoot: ({ theme }: any) => {
|
|
8800
|
+
background: string;
|
|
8801
|
+
borderRadius: number;
|
|
8802
|
+
padding: string;
|
|
8803
|
+
height: string;
|
|
8804
|
+
fontSize: number;
|
|
8805
|
+
};
|
|
8806
|
+
};
|
|
8807
|
+
};
|
|
8796
8808
|
SCUserLiveStreamWidget: {
|
|
8797
8809
|
styleOverrides: {
|
|
8798
8810
|
root: ({ theme }: {
|
package/lib/cjs/index.js
CHANGED
|
@@ -152,6 +152,7 @@ const SCLiveStreamFormSettings_1 = tslib_1.__importDefault(require("./components
|
|
|
152
152
|
const SCLiveStreamRoom_1 = tslib_1.__importDefault(require("./components/SCLiveStreamRoom"));
|
|
153
153
|
const SCLiveStreamVideoConference_1 = tslib_1.__importDefault(require("./components/SCLiveStreamVideoConference"));
|
|
154
154
|
const SCLiveStreamInfoDetails_1 = tslib_1.__importDefault(require("./components/SCLiveStreamInfoDetails"));
|
|
155
|
+
const SCUpScalingTierBadge_1 = tslib_1.__importDefault(require("./components/SCUpScalingTierBadge"));
|
|
155
156
|
const SCUserLiveStreamWidget_1 = tslib_1.__importDefault(require("./components/SCUserLiveStreamWidget"));
|
|
156
157
|
const SCToastNotifications_1 = tslib_1.__importDefault(require("./components/SCToastNotifications"));
|
|
157
158
|
const SCUser_1 = tslib_1.__importDefault(require("./components/SCUser"));
|
|
@@ -428,6 +429,7 @@ const theme = {
|
|
|
428
429
|
SCWidget: SCWidget_1.default,
|
|
429
430
|
SCLiveStream: SCLiveStream_1.default,
|
|
430
431
|
SCLiveStreamInfoDetails: SCLiveStreamInfoDetails_1.default,
|
|
432
|
+
SCUpScalingTierBadge: SCUpScalingTierBadge_1.default,
|
|
431
433
|
SCUserLiveStreamWidget: SCUserLiveStreamWidget_1.default,
|
|
432
434
|
SCCreateLiveStreamDialog: SCLiveStreamDialog_1.default,
|
|
433
435
|
SCLiveStreamSelector: SCLiveStreamSelector_1.default,
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare const Component: {
|
|
2
|
+
styleOverrides: {
|
|
3
|
+
root: ({ theme }: any) => {};
|
|
4
|
+
badgeRoot: ({ theme }: any) => {
|
|
5
|
+
background: string;
|
|
6
|
+
borderRadius: number;
|
|
7
|
+
padding: string;
|
|
8
|
+
height: string;
|
|
9
|
+
fontSize: number;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export default Component;
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -2517,6 +2517,9 @@ declare const theme: {
|
|
|
2517
2517
|
background: string;
|
|
2518
2518
|
border: string;
|
|
2519
2519
|
'& .SCEditor-root': {
|
|
2520
|
+
/**
|
|
2521
|
+
* Export default theme
|
|
2522
|
+
*/
|
|
2520
2523
|
'& .SCEditor-placeholder': {
|
|
2521
2524
|
fontWeight: any;
|
|
2522
2525
|
};
|
|
@@ -5504,9 +5507,6 @@ declare const theme: {
|
|
|
5504
5507
|
};
|
|
5505
5508
|
'& .SCOnBoardingWidget-profile-change-picture': {
|
|
5506
5509
|
[x: number]: {
|
|
5507
|
-
/**
|
|
5508
|
-
* Style assets - Imports - Start
|
|
5509
|
-
*/
|
|
5510
5510
|
top: number;
|
|
5511
5511
|
left: number;
|
|
5512
5512
|
};
|
|
@@ -8793,6 +8793,18 @@ declare const theme: {
|
|
|
8793
8793
|
};
|
|
8794
8794
|
};
|
|
8795
8795
|
};
|
|
8796
|
+
SCUpScalingTierBadge: {
|
|
8797
|
+
styleOverrides: {
|
|
8798
|
+
root: ({ theme }: any) => {};
|
|
8799
|
+
badgeRoot: ({ theme }: any) => {
|
|
8800
|
+
background: string;
|
|
8801
|
+
borderRadius: number;
|
|
8802
|
+
padding: string;
|
|
8803
|
+
height: string;
|
|
8804
|
+
fontSize: number;
|
|
8805
|
+
};
|
|
8806
|
+
};
|
|
8807
|
+
};
|
|
8796
8808
|
SCUserLiveStreamWidget: {
|
|
8797
8809
|
styleOverrides: {
|
|
8798
8810
|
root: ({ theme }: {
|
package/lib/esm/index.js
CHANGED
|
@@ -148,6 +148,7 @@ import SCLiveStreamFormSettings from './components/SCLiveStreamFormSettings';
|
|
|
148
148
|
import SCLiveStreamRoom from './components/SCLiveStreamRoom';
|
|
149
149
|
import SCLiveStreamVideoConference from './components/SCLiveStreamVideoConference';
|
|
150
150
|
import SCLiveStreamInfoDetails from './components/SCLiveStreamInfoDetails';
|
|
151
|
+
import SCUpScalingTierBadge from './components/SCUpScalingTierBadge';
|
|
151
152
|
import SCUserLiveStreamWidget from './components/SCUserLiveStreamWidget';
|
|
152
153
|
import SCToastNotifications from './components/SCToastNotifications';
|
|
153
154
|
import SCUser from './components/SCUser';
|
|
@@ -416,6 +417,7 @@ const theme = {
|
|
|
416
417
|
SCWidget,
|
|
417
418
|
SCLiveStream,
|
|
418
419
|
SCLiveStreamInfoDetails,
|
|
420
|
+
SCUpScalingTierBadge,
|
|
419
421
|
SCUserLiveStreamWidget,
|
|
420
422
|
SCCreateLiveStreamDialog,
|
|
421
423
|
SCLiveStreamSelector,
|