sevago-sso-fe 1.0.35 → 1.0.36
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.
|
@@ -10,7 +10,9 @@ export interface AppGridProps {
|
|
|
10
10
|
iconShadow?: string;
|
|
11
11
|
gap?: number | string;
|
|
12
12
|
titleVariant?: "subtitle1" | "body1" | "caption";
|
|
13
|
+
captionVariant?: "caption" | "body2";
|
|
13
14
|
titleColor?: string;
|
|
15
|
+
captionColor?: string;
|
|
14
16
|
selectedAppId?: string;
|
|
15
17
|
showPagination?: boolean;
|
|
16
18
|
}
|
package/dist/index.cjs.js
CHANGED
|
@@ -27781,6 +27781,7 @@ const AppsSidebar = ({
|
|
|
27781
27781
|
iconRadius: 5.5,
|
|
27782
27782
|
gap: PADDING_GAP_ITEM,
|
|
27783
27783
|
titleVariant: "body1",
|
|
27784
|
+
captionVariant: "caption",
|
|
27784
27785
|
titleColor: theme.palette.grey[800],
|
|
27785
27786
|
captionColor: theme.palette.grey[600],
|
|
27786
27787
|
selectedAppId: currentApp?.path,
|
|
@@ -27815,6 +27816,7 @@ const AppsSidebar = ({
|
|
|
27815
27816
|
iconRadius: 5.5,
|
|
27816
27817
|
gap: PADDING_GAP_ITEM,
|
|
27817
27818
|
titleVariant: "body1",
|
|
27819
|
+
captionVariant: "caption",
|
|
27818
27820
|
titleColor: theme.palette.grey[800],
|
|
27819
27821
|
captionColor: theme.palette.grey[600],
|
|
27820
27822
|
selectedAppId: currentApp?.path,
|
|
@@ -27851,6 +27853,7 @@ const AppsSidebar = ({
|
|
|
27851
27853
|
iconRadius: 5.5,
|
|
27852
27854
|
gap: PADDING_GAP_ITEM,
|
|
27853
27855
|
titleVariant: "body1",
|
|
27856
|
+
captionVariant: "caption",
|
|
27854
27857
|
titleColor: theme.palette.grey[800],
|
|
27855
27858
|
captionColor: theme.palette.grey[600],
|
|
27856
27859
|
selectedAppId: currentApp?.path,
|