@selfcommunity/react-theme-default 0.4.5-payments.227 → 0.4.5-payments.229
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/SCComposer.d.ts +16 -0
- package/lib/cjs/components/SCComposer.js +16 -0
- package/lib/cjs/index.d.ts +16 -0
- package/lib/esm/components/SCComposer.d.ts +16 -0
- package/lib/esm/components/SCComposer.js +16 -0
- package/lib/esm/index.d.ts +16 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -246,6 +246,22 @@ declare const Component: {
|
|
|
246
246
|
};
|
|
247
247
|
};
|
|
248
248
|
layerLocationRoot: () => {};
|
|
249
|
+
layerScheduledRoot: ({ theme }: any) => {
|
|
250
|
+
'& .SCComposer-layer-scheduled-picker': {
|
|
251
|
+
display: string;
|
|
252
|
+
flexDirection: string;
|
|
253
|
+
justifyContent: string;
|
|
254
|
+
alignItems: string;
|
|
255
|
+
'& .MuiTypography-h4': {
|
|
256
|
+
color: any;
|
|
257
|
+
};
|
|
258
|
+
};
|
|
259
|
+
'& .SCComposer-layer-scheduled-message': {
|
|
260
|
+
textAlign: string;
|
|
261
|
+
marginTop: any;
|
|
262
|
+
marginBottom: any;
|
|
263
|
+
};
|
|
264
|
+
};
|
|
249
265
|
skeletonRoot: () => {};
|
|
250
266
|
typeSwitchButtonGroupRoot: ({ theme }: any) => {
|
|
251
267
|
'& .MuiToggleButton-root': {
|
|
@@ -249,6 +249,22 @@ const Component = {
|
|
|
249
249
|
}
|
|
250
250
|
}),
|
|
251
251
|
layerLocationRoot: () => ({}),
|
|
252
|
+
layerScheduledRoot: ({ theme }) => ({
|
|
253
|
+
'& .SCComposer-layer-scheduled-picker': {
|
|
254
|
+
display: 'flex',
|
|
255
|
+
flexDirection: 'column',
|
|
256
|
+
justifyContent: 'center',
|
|
257
|
+
alignItems: 'center',
|
|
258
|
+
'& .MuiTypography-h4': {
|
|
259
|
+
color: theme.palette.primary.main
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
'& .SCComposer-layer-scheduled-message': {
|
|
263
|
+
textAlign: 'center',
|
|
264
|
+
marginTop: theme.spacing(2),
|
|
265
|
+
marginBottom: theme.spacing(1)
|
|
266
|
+
}
|
|
267
|
+
}),
|
|
252
268
|
skeletonRoot: () => ({}),
|
|
253
269
|
typeSwitchButtonGroupRoot: ({ theme }) => ({
|
|
254
270
|
'& .MuiToggleButton-root': {
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1571,6 +1571,22 @@ declare const theme: {
|
|
|
1571
1571
|
};
|
|
1572
1572
|
};
|
|
1573
1573
|
layerLocationRoot: () => {};
|
|
1574
|
+
layerScheduledRoot: ({ theme }: any) => {
|
|
1575
|
+
'& .SCComposer-layer-scheduled-picker': {
|
|
1576
|
+
display: string;
|
|
1577
|
+
flexDirection: string;
|
|
1578
|
+
justifyContent: string;
|
|
1579
|
+
alignItems: string;
|
|
1580
|
+
'& .MuiTypography-h4': {
|
|
1581
|
+
color: any;
|
|
1582
|
+
};
|
|
1583
|
+
};
|
|
1584
|
+
'& .SCComposer-layer-scheduled-message': {
|
|
1585
|
+
textAlign: string;
|
|
1586
|
+
marginTop: any;
|
|
1587
|
+
marginBottom: any;
|
|
1588
|
+
};
|
|
1589
|
+
};
|
|
1574
1590
|
skeletonRoot: () => {};
|
|
1575
1591
|
typeSwitchButtonGroupRoot: ({ theme }: any) => {
|
|
1576
1592
|
'& .MuiToggleButton-root': {
|
|
@@ -246,6 +246,22 @@ declare const Component: {
|
|
|
246
246
|
};
|
|
247
247
|
};
|
|
248
248
|
layerLocationRoot: () => {};
|
|
249
|
+
layerScheduledRoot: ({ theme }: any) => {
|
|
250
|
+
'& .SCComposer-layer-scheduled-picker': {
|
|
251
|
+
display: string;
|
|
252
|
+
flexDirection: string;
|
|
253
|
+
justifyContent: string;
|
|
254
|
+
alignItems: string;
|
|
255
|
+
'& .MuiTypography-h4': {
|
|
256
|
+
color: any;
|
|
257
|
+
};
|
|
258
|
+
};
|
|
259
|
+
'& .SCComposer-layer-scheduled-message': {
|
|
260
|
+
textAlign: string;
|
|
261
|
+
marginTop: any;
|
|
262
|
+
marginBottom: any;
|
|
263
|
+
};
|
|
264
|
+
};
|
|
249
265
|
skeletonRoot: () => {};
|
|
250
266
|
typeSwitchButtonGroupRoot: ({ theme }: any) => {
|
|
251
267
|
'& .MuiToggleButton-root': {
|
|
@@ -247,6 +247,22 @@ const Component = {
|
|
|
247
247
|
}
|
|
248
248
|
}),
|
|
249
249
|
layerLocationRoot: () => ({}),
|
|
250
|
+
layerScheduledRoot: ({ theme }) => ({
|
|
251
|
+
'& .SCComposer-layer-scheduled-picker': {
|
|
252
|
+
display: 'flex',
|
|
253
|
+
flexDirection: 'column',
|
|
254
|
+
justifyContent: 'center',
|
|
255
|
+
alignItems: 'center',
|
|
256
|
+
'& .MuiTypography-h4': {
|
|
257
|
+
color: theme.palette.primary.main
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
'& .SCComposer-layer-scheduled-message': {
|
|
261
|
+
textAlign: 'center',
|
|
262
|
+
marginTop: theme.spacing(2),
|
|
263
|
+
marginBottom: theme.spacing(1)
|
|
264
|
+
}
|
|
265
|
+
}),
|
|
250
266
|
skeletonRoot: () => ({}),
|
|
251
267
|
typeSwitchButtonGroupRoot: ({ theme }) => ({
|
|
252
268
|
'& .MuiToggleButton-root': {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -1571,6 +1571,22 @@ declare const theme: {
|
|
|
1571
1571
|
};
|
|
1572
1572
|
};
|
|
1573
1573
|
layerLocationRoot: () => {};
|
|
1574
|
+
layerScheduledRoot: ({ theme }: any) => {
|
|
1575
|
+
'& .SCComposer-layer-scheduled-picker': {
|
|
1576
|
+
display: string;
|
|
1577
|
+
flexDirection: string;
|
|
1578
|
+
justifyContent: string;
|
|
1579
|
+
alignItems: string;
|
|
1580
|
+
'& .MuiTypography-h4': {
|
|
1581
|
+
color: any;
|
|
1582
|
+
};
|
|
1583
|
+
};
|
|
1584
|
+
'& .SCComposer-layer-scheduled-message': {
|
|
1585
|
+
textAlign: string;
|
|
1586
|
+
marginTop: any;
|
|
1587
|
+
marginBottom: any;
|
|
1588
|
+
};
|
|
1589
|
+
};
|
|
1574
1590
|
skeletonRoot: () => {};
|
|
1575
1591
|
typeSwitchButtonGroupRoot: ({ theme }: any) => {
|
|
1576
1592
|
'& .MuiToggleButton-root': {
|