@steroidsjs/core 3.0.0-beta.5 → 3.0.0-beta.6
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/package.json +1 -1
- package/ui/content/Alert/Alert.d.ts +1 -1
- package/ui/{icon → content}/Icon/Icon.d.ts +0 -0
- package/ui/{icon → content}/Icon/Icon.js +1 -1
- package/ui/{icon → content}/Icon/demo/icon.d.ts +0 -0
- package/ui/{icon → content}/Icon/demo/icon.js +0 -0
- package/ui/{icon → content}/Icon/index.d.ts +0 -0
- package/ui/{icon → content}/Icon/index.js +0 -0
- package/ui/layout/ProgressBar/ProgressBar.js +1 -1
package/package.json
CHANGED
|
File without changes
|
|
@@ -45,6 +45,6 @@ function Icon(props) {
|
|
|
45
45
|
throw new Error('Not found icon with name "' + name + '"');
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
|
-
return components.ui.renderView(props.view || '
|
|
48
|
+
return components.ui.renderView(props.view || 'content.IconView', __assign(__assign({}, props), { icon: icon }));
|
|
49
49
|
}
|
|
50
50
|
exports["default"] = Icon;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -27,7 +27,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
27
27
|
};
|
|
28
28
|
exports.__esModule = true;
|
|
29
29
|
var React = __importStar(require("react"));
|
|
30
|
-
var Icon_1 = __importDefault(require("../../
|
|
30
|
+
var Icon_1 = __importDefault(require("../../content/Icon/Icon"));
|
|
31
31
|
var hooks_1 = require("../../../hooks");
|
|
32
32
|
function ProgressBar(props) {
|
|
33
33
|
var components = (0, hooks_1.useComponents)();
|