@team-monolith/cds 1.31.0 → 1.32.0
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/@types/emotion.d.ts
CHANGED
|
@@ -69,6 +69,20 @@ interface CodleColors {
|
|
|
69
69
|
marbleContainer: string;
|
|
70
70
|
marbleOnContainer: string;
|
|
71
71
|
};
|
|
72
|
+
activity: {
|
|
73
|
+
pdf: string;
|
|
74
|
+
pdfAlt: string;
|
|
75
|
+
quiz: string;
|
|
76
|
+
quizAlt: string;
|
|
77
|
+
python: string;
|
|
78
|
+
pythonAlt: string;
|
|
79
|
+
embedded: string;
|
|
80
|
+
embeddedAlt: string;
|
|
81
|
+
board: string;
|
|
82
|
+
boardAlt: string;
|
|
83
|
+
scratch: string;
|
|
84
|
+
scratchAlt: string;
|
|
85
|
+
};
|
|
72
86
|
}
|
|
73
87
|
|
|
74
88
|
declare module "@emotion/react" {
|
|
@@ -68,6 +68,20 @@ export declare const light: {
|
|
|
68
68
|
marbleContainer: string;
|
|
69
69
|
marbleOnContainer: string;
|
|
70
70
|
};
|
|
71
|
+
activity: {
|
|
72
|
+
pdf: string;
|
|
73
|
+
pdfAlt: string;
|
|
74
|
+
quiz: string;
|
|
75
|
+
quizAlt: string;
|
|
76
|
+
python: string;
|
|
77
|
+
pythonAlt: string;
|
|
78
|
+
embedded: string;
|
|
79
|
+
embeddedAlt: string;
|
|
80
|
+
board: string;
|
|
81
|
+
boardAlt: string;
|
|
82
|
+
scratch: string;
|
|
83
|
+
scratchAlt: string;
|
|
84
|
+
};
|
|
71
85
|
};
|
|
72
86
|
};
|
|
73
87
|
interface CodleDesignSystemContext {
|
|
@@ -74,6 +74,20 @@ export const light = {
|
|
|
74
74
|
marbleContainer: COLOR.grey03,
|
|
75
75
|
marbleOnContainer: COLOR.grey07,
|
|
76
76
|
},
|
|
77
|
+
activity: {
|
|
78
|
+
pdf: "#FF5850",
|
|
79
|
+
pdfAlt: "#FFEEED",
|
|
80
|
+
quiz: "#F889AA",
|
|
81
|
+
quizAlt: "#FEF3F6",
|
|
82
|
+
python: "#3E88FF",
|
|
83
|
+
pythonAlt: "#ECF3FF",
|
|
84
|
+
embedded: "#7C8597",
|
|
85
|
+
embeddedAlt: "#F2F3F5",
|
|
86
|
+
board: "#42DB88",
|
|
87
|
+
boardAlt: "#F0FCF5",
|
|
88
|
+
scratch: "#FF9D3E",
|
|
89
|
+
scratchAlt: "#FFF5EC",
|
|
90
|
+
},
|
|
77
91
|
},
|
|
78
92
|
};
|
|
79
93
|
export const CodleDesignSystemContext = createContext({});
|
package/dist/icons/Custom.d.ts
CHANGED
|
@@ -243,5 +243,4 @@ export declare const CustomPythonIcon: React.ForwardRefExoticComponent<{
|
|
|
243
243
|
export declare const customPythonColorSvg: string;
|
|
244
244
|
export declare const CustomPythonColorIcon: React.ForwardRefExoticComponent<{
|
|
245
245
|
className?: string | undefined;
|
|
246
|
-
color?: string | undefined;
|
|
247
246
|
} & React.RefAttributes<any>>;
|