@naviedu/room-platform-react 0.0.11 → 0.0.12

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naviedu/room-platform-react",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "type": "module",
5
5
  "main": "./index.esm.js",
6
6
  "module": "./index.esm.js",
package/styles.css CHANGED
@@ -3692,6 +3692,30 @@
3692
3692
  }
3693
3693
  }
3694
3694
  /* @naviedu/room-platform-react bundled tailwind utilities */
3695
+ .room-platform-host {
3696
+ box-sizing: border-box;
3697
+ display: block;
3698
+ height: 100%;
3699
+ min-height: 0;
3700
+ min-width: 0;
3701
+ }
3702
+
3703
+ :host(.room-platform-host) {
3704
+ box-sizing: border-box;
3705
+ display: block;
3706
+ height: 100%;
3707
+ min-height: 0;
3708
+ min-width: 0;
3709
+ }
3710
+
3711
+ [data-room-platform-app-root] {
3712
+ box-sizing: border-box;
3713
+ display: block;
3714
+ height: 100%;
3715
+ min-height: 0;
3716
+ min-width: 0;
3717
+ }
3718
+
3695
3719
  .room-platform-room {
3696
3720
  --room-platform-navy: #242f62;
3697
3721
  --room-platform-orange: #eb6619;
@@ -3702,19 +3726,31 @@
3702
3726
  color: #172033;
3703
3727
  display: flex;
3704
3728
  flex-direction: column;
3705
- height: 100dvh;
3706
- min-height: 100dvh;
3707
3729
  min-width: 0;
3708
3730
  overflow: hidden;
3709
3731
  width: 100%;
3710
3732
  }
3711
3733
 
3734
+ .room-platform-room[data-sizing='viewport'] {
3735
+ height: 100dvh;
3736
+ min-height: 100dvh;
3737
+ }
3738
+
3712
3739
  .room-platform-room[data-sizing='container'] {
3713
3740
  height: 100%;
3714
3741
  min-height: 0;
3715
3742
  width: 100%;
3716
3743
  }
3717
3744
 
3745
+ .room-platform-room.room-platform-portal-root {
3746
+ background: transparent;
3747
+ display: block;
3748
+ height: auto;
3749
+ min-height: 0;
3750
+ overflow: visible;
3751
+ width: auto;
3752
+ }
3753
+
3718
3754
  .room-platform-surface {
3719
3755
  box-sizing: border-box;
3720
3756
  }