@alfalab/core-components-vars 7.1.0 → 7.1.1
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/colors-bluetint.js +3 -3
- package/colors-indigo.js +3 -3
- package/cssm/colors-bluetint.js +3 -3
- package/cssm/colors-indigo.js +3 -3
- package/esm/colors-bluetint.js +1 -1
- package/esm/colors-indigo.js +1 -1
- package/modern/colors-bluetint.js +2 -2
- package/modern/colors-indigo.js +2 -2
- package/package.json +1 -1
package/colors-bluetint.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
var styles = require('!!css-loader!@alfalab/core-components/vars/colors-bluetint.css');
|
|
4
4
|
|
|
5
|
-
function
|
|
5
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
6
6
|
|
|
7
|
-
var styles__default = /*#__PURE__*/
|
|
7
|
+
var styles__default = /*#__PURE__*/_interopDefaultCompat(styles);
|
|
8
8
|
|
|
9
9
|
// eslint-disable-next-line import/no-webpack-loader-syntax
|
|
10
|
-
var colorsBluetint = styles__default
|
|
10
|
+
var colorsBluetint = styles__default.default.toString();
|
|
11
11
|
|
|
12
12
|
module.exports = colorsBluetint;
|
package/colors-indigo.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
var styles = require('!!css-loader!@alfalab/core-components/vars/colors-indigo.css');
|
|
4
4
|
|
|
5
|
-
function
|
|
5
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
6
6
|
|
|
7
|
-
var styles__default = /*#__PURE__*/
|
|
7
|
+
var styles__default = /*#__PURE__*/_interopDefaultCompat(styles);
|
|
8
8
|
|
|
9
9
|
// eslint-disable-next-line import/no-webpack-loader-syntax
|
|
10
|
-
var colorsIndigo = styles__default
|
|
10
|
+
var colorsIndigo = styles__default.default.toString();
|
|
11
11
|
|
|
12
12
|
module.exports = colorsIndigo;
|
package/cssm/colors-bluetint.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
var styles = require('!!css-loader!@alfalab/core-components/vars/colors-bluetint.css');
|
|
4
4
|
|
|
5
|
-
function
|
|
5
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
6
6
|
|
|
7
|
-
var styles__default = /*#__PURE__*/
|
|
7
|
+
var styles__default = /*#__PURE__*/_interopDefaultCompat(styles);
|
|
8
8
|
|
|
9
9
|
// eslint-disable-next-line import/no-webpack-loader-syntax
|
|
10
|
-
var colorsBluetint = styles__default
|
|
10
|
+
var colorsBluetint = styles__default.default.toString();
|
|
11
11
|
|
|
12
12
|
module.exports = colorsBluetint;
|
package/cssm/colors-indigo.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
var styles = require('!!css-loader!@alfalab/core-components/vars/colors-indigo.css');
|
|
4
4
|
|
|
5
|
-
function
|
|
5
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
6
6
|
|
|
7
|
-
var styles__default = /*#__PURE__*/
|
|
7
|
+
var styles__default = /*#__PURE__*/_interopDefaultCompat(styles);
|
|
8
8
|
|
|
9
9
|
// eslint-disable-next-line import/no-webpack-loader-syntax
|
|
10
|
-
var colorsIndigo = styles__default
|
|
10
|
+
var colorsIndigo = styles__default.default.toString();
|
|
11
11
|
|
|
12
12
|
module.exports = colorsIndigo;
|
package/esm/colors-bluetint.js
CHANGED
package/esm/colors-indigo.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import styles from '!!css-loader!@alfalab/core-components/vars/colors-bluetint.css';
|
|
2
2
|
|
|
3
3
|
// eslint-disable-next-line import/no-webpack-loader-syntax
|
|
4
|
-
|
|
4
|
+
const colorsBluetint = styles.toString();
|
|
5
5
|
|
|
6
|
-
export default
|
|
6
|
+
export { colorsBluetint as default };
|
package/modern/colors-indigo.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import styles from '!!css-loader!@alfalab/core-components/vars/colors-indigo.css';
|
|
2
2
|
|
|
3
3
|
// eslint-disable-next-line import/no-webpack-loader-syntax
|
|
4
|
-
|
|
4
|
+
const colorsIndigo = styles.toString();
|
|
5
5
|
|
|
6
|
-
export default
|
|
6
|
+
export { colorsIndigo as default };
|