@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/dist/next/web-containers/tests/styles/base-css.test.d.ts +1 -0
- package/dist/package.json +1 -1
- package/dist/sso/web-containers/tests/styles/base-css.test.d.ts +1 -0
- package/dist/styles.css +35 -0
- package/dist/web-containers/tests/styles/base-css.test.d.ts +1 -0
- package/dist/web-containers/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/styles/base.css +35 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/styles.css
CHANGED
|
@@ -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
|
============================================ */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|