@iblai/web-containers 1.15.2 → 1.15.3

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": "@iblai/web-containers",
3
- "version": "1.15.2",
3
+ "version": "1.15.3",
4
4
  "description": "ibl web containers",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",
@@ -160,8 +160,8 @@
160
160
  "react-dom": "19.1.0",
161
161
  "react-redux": "9.2.0",
162
162
  "sonner": "^2.0.0",
163
- "@iblai/web-utils": "1.13.3",
164
- "@iblai/data-layer": "1.9.4"
163
+ "@iblai/data-layer": "1.9.4",
164
+ "@iblai/web-utils": "1.13.3"
165
165
  },
166
166
  "peerDependenciesMeta": {
167
167
  "@livekit/components-react": {
@@ -136,6 +136,41 @@
136
136
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
137
137
  }
138
138
 
139
+ /* ============================================
140
+ ANIMATION VARIABLE REGISTRATION
141
+ ============================================ */
142
+
143
+ /**
144
+ * tw-animate-css leaves its slide-in/out translate variables unregistered, so they
145
+ * inherit. Content portalled into an animating dialog panel (see
146
+ * FloatingPortalContainerContext) becomes a DOM descendant of it and picks up the
147
+ * panel's translate values, making dropdowns slide in from the panel's direction.
148
+ * Registering them with `inherits: false` stops the leak at the panel boundary.
149
+ *
150
+ * Upstream fixed this in tw-animate-css 1.3.1; these registrations are identical to
151
+ * theirs, so consumers on older versions are covered and a bump is a no-op.
152
+ */
153
+ @property --tw-enter-translate-x {
154
+ syntax: '*';
155
+ inherits: false;
156
+ initial-value: 0;
157
+ }
158
+ @property --tw-exit-translate-x {
159
+ syntax: '*';
160
+ inherits: false;
161
+ initial-value: 0;
162
+ }
163
+ @property --tw-enter-translate-y {
164
+ syntax: '*';
165
+ inherits: false;
166
+ initial-value: 0;
167
+ }
168
+ @property --tw-exit-translate-y {
169
+ syntax: '*';
170
+ inherits: false;
171
+ initial-value: 0;
172
+ }
173
+
139
174
  /* ============================================
140
175
  UTILITY CLASSES - BACKGROUNDS
141
176
  ============================================ */