@naviedu/room-platform-react 0.0.9 → 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/README.md +15 -5
- package/index.d.ts +2 -6
- package/index.esm.js +768 -521
- package/package.json +1 -1
- package/styles.css +42 -8
package/package.json
CHANGED
package/styles.css
CHANGED
|
@@ -1144,6 +1144,10 @@
|
|
|
1144
1144
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1145
1145
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1146
1146
|
}
|
|
1147
|
+
.room-platform-room .ring {
|
|
1148
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1149
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1150
|
+
}
|
|
1147
1151
|
.room-platform-room .ring-1 {
|
|
1148
1152
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1149
1153
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1170,12 +1174,6 @@
|
|
|
1170
1174
|
--tw-ring-color: color-mix(in oklab, var(--color-white) 10%, transparent);
|
|
1171
1175
|
}
|
|
1172
1176
|
}
|
|
1173
|
-
.room-platform-room .ring-white\/20 {
|
|
1174
|
-
--tw-ring-color: color-mix(in srgb, #fff 20%, transparent);
|
|
1175
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1176
|
-
--tw-ring-color: color-mix(in oklab, var(--color-white) 20%, transparent);
|
|
1177
|
-
}
|
|
1178
|
-
}
|
|
1179
1177
|
.room-platform-room .outline-hidden {
|
|
1180
1178
|
--tw-outline-style: none;
|
|
1181
1179
|
outline-style: none;
|
|
@@ -3694,6 +3692,30 @@
|
|
|
3694
3692
|
}
|
|
3695
3693
|
}
|
|
3696
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
|
+
|
|
3697
3719
|
.room-platform-room {
|
|
3698
3720
|
--room-platform-navy: #242f62;
|
|
3699
3721
|
--room-platform-orange: #eb6619;
|
|
@@ -3704,19 +3726,31 @@
|
|
|
3704
3726
|
color: #172033;
|
|
3705
3727
|
display: flex;
|
|
3706
3728
|
flex-direction: column;
|
|
3707
|
-
height: 100dvh;
|
|
3708
|
-
min-height: 100dvh;
|
|
3709
3729
|
min-width: 0;
|
|
3710
3730
|
overflow: hidden;
|
|
3711
3731
|
width: 100%;
|
|
3712
3732
|
}
|
|
3713
3733
|
|
|
3734
|
+
.room-platform-room[data-sizing='viewport'] {
|
|
3735
|
+
height: 100dvh;
|
|
3736
|
+
min-height: 100dvh;
|
|
3737
|
+
}
|
|
3738
|
+
|
|
3714
3739
|
.room-platform-room[data-sizing='container'] {
|
|
3715
3740
|
height: 100%;
|
|
3716
3741
|
min-height: 0;
|
|
3717
3742
|
width: 100%;
|
|
3718
3743
|
}
|
|
3719
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
|
+
|
|
3720
3754
|
.room-platform-surface {
|
|
3721
3755
|
box-sizing: border-box;
|
|
3722
3756
|
}
|