@seamly/web-ui 20.3.0 → 20.3.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/build/dist/lib/index.debug.js +26 -26
- package/build/dist/lib/index.debug.min.js +1 -1
- package/build/dist/lib/index.js +53 -106
- package/build/dist/lib/index.min.js +1 -1
- package/build/dist/lib/standalone.js +7 -3
- package/build/dist/lib/standalone.min.js +1 -1
- package/build/dist/lib/style-guide.js +36 -78
- package/build/dist/lib/style-guide.min.js +1 -1
- package/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/javascripts/index.js +1 -0
- package/src/javascripts/ui/components/view/index.js +2 -2
- package/CHANGELOG.md +0 -729
|
@@ -32818,7 +32818,10 @@ const ViewComponentsMap = {
|
|
|
32818
32818
|
window: window_view
|
|
32819
32819
|
};
|
|
32820
32820
|
|
|
32821
|
-
const View =
|
|
32821
|
+
const View = _ref => {
|
|
32822
|
+
let {
|
|
32823
|
+
children
|
|
32824
|
+
} = _ref;
|
|
32822
32825
|
const [, setSeamlyContainerElement] = useSeamlyContainerElement();
|
|
32823
32826
|
const {
|
|
32824
32827
|
namespace,
|
|
@@ -32875,7 +32878,7 @@ const View = () => {
|
|
|
32875
32878
|
zIndex
|
|
32876
32879
|
},
|
|
32877
32880
|
ref: containerElementRef,
|
|
32878
|
-
children: jsxRuntime_module_e(ViewComponent, {})
|
|
32881
|
+
children: children || jsxRuntime_module_e(ViewComponent, {})
|
|
32879
32882
|
});
|
|
32880
32883
|
};
|
|
32881
32884
|
|
|
@@ -36201,7 +36204,7 @@ class API {
|
|
|
36201
36204
|
return {
|
|
36202
36205
|
clientName: "@seamly/web-ui",
|
|
36203
36206
|
clientVariant: this.layoutMode,
|
|
36204
|
-
clientVersion: "20.3.
|
|
36207
|
+
clientVersion: "20.3.1",
|
|
36205
36208
|
currentUrl: window.location.toString(),
|
|
36206
36209
|
screenResolution: `${window.screen.width}x${window.screen.height}`,
|
|
36207
36210
|
timezone: getTimeZone(),
|
|
@@ -37387,6 +37390,7 @@ const DeprecatedView = () => {
|
|
|
37387
37390
|
// Used by: Client
|
|
37388
37391
|
|
|
37389
37392
|
// Used by: StyleGuide
|
|
37393
|
+
// Used by: Client (with custom view)
|
|
37390
37394
|
|
|
37391
37395
|
// Used by: Client
|
|
37392
37396
|
|