@neurodyn/react-room-viewer 0.0.16 → 0.0.18

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -13710,6 +13710,7 @@ function FloorViewerLayout({ showDialogCloseButton = false }) {
13710
13710
  const floorViewerRoot = /*#__PURE__*/ jsxs("div", {
13711
13711
  ref: setContainerRef,
13712
13712
  className: "relative grid size-full grid-rows-[minmax(0,1fr)_auto] overflow-hidden text-foreground sm:block",
13713
+ "data-neurodyn-room-viewer-container": "",
13713
13714
  "data-testid": "floor-viewer-root",
13714
13715
  children: [
13715
13716
  isViewerAccessPending ? /*#__PURE__*/ jsx_runtime_jsx("div", {
@@ -14134,6 +14135,7 @@ function RoomViewerContainer({ showDialogCloseButton = false }) {
14134
14135
  const activeError = accessError ?? loadError;
14135
14136
  if (activeError) return /*#__PURE__*/ jsx_runtime_jsx("div", {
14136
14137
  ref: setContainerRef,
14138
+ "data-neurodyn-room-viewer-container": "",
14137
14139
  className: "relative size-full overflow-hidden bg-radial from-background-containers to-background-base-2 text-foreground",
14138
14140
  children: /*#__PURE__*/ jsx_runtime_jsx(RoomViewerErrorState, {
14139
14141
  variant: activeError,
@@ -14142,6 +14144,7 @@ function RoomViewerContainer({ showDialogCloseButton = false }) {
14142
14144
  });
14143
14145
  return /*#__PURE__*/ jsxs("div", {
14144
14146
  ref: setContainerRef,
14147
+ "data-neurodyn-room-viewer-container": "",
14145
14148
  className: "relative size-full bg-radial from-background-containers to-background-base-2 text-foreground overflow-hidden",
14146
14149
  children: [
14147
14150
  showDialogCloseButton && /*#__PURE__*/ jsx_runtime_jsx(DialogClose, {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@neurodyn/react-room-viewer",
3
3
  "type": "module",
4
- "version": "0.0.16",
4
+ "version": "0.0.18",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },