@cgi-learning-hub/ui 1.9.0-dev.1759915665 → 1.9.0-dev.1759920886
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/dist/index.cjs.js +1 -1
- package/dist/index.es.js +1 -1
- package/dist/{index.css → ui.css} +13 -0
- package/package.json +3 -2
package/dist/index.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
3
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4
4
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
5
5
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
package/dist/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
2
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3
3
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
4
4
|
import * as React from "react";
|
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--toastify-color-light: var(--theme-palette-common-white);
|
|
3
|
+
--toastify-color-dark: var(--theme-palette-common-black);
|
|
4
|
+
--toastify-color-info: var(--theme-palette-info-main);
|
|
5
|
+
--toastify-color-success: var(--theme-palette-success-main);
|
|
6
|
+
--toastify-color-warning: var(--theme-palette-warning-main);
|
|
7
|
+
--toastify-color-error: var(--theme-palette-error-main);
|
|
8
|
+
|
|
9
|
+
--toastify-font-family: Roboto;
|
|
10
|
+
|
|
11
|
+
--toastify-text-color-light: var(--theme-palette-text-primary);
|
|
12
|
+
--toastify-text-color-dark: var(--theme-palette-common-white);
|
|
13
|
+
}
|
|
1
14
|
.cs-loader {
|
|
2
15
|
padding: 0 auto;
|
|
3
16
|
text-align: center;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cgi-learning-hub/ui",
|
|
3
|
-
"version": "1.9.0-dev.
|
|
3
|
+
"version": "1.9.0-dev.1759920886",
|
|
4
4
|
"description": "React component library for Hub's design system, built on Material UI with custom and extended components.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cgi-learning-hub",
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"types": "./dist/index.d.ts",
|
|
21
21
|
"import": "./dist/index.es.js",
|
|
22
22
|
"require": "./dist/index.cjs.js"
|
|
23
|
-
}
|
|
23
|
+
},
|
|
24
|
+
"./index.css": "./dist/index.css"
|
|
24
25
|
},
|
|
25
26
|
"main": "dist/index.cjs.js",
|
|
26
27
|
"module": "dist/index.es.js",
|