react-better-html 1.1.164 → 1.1.165
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/index.d.mts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5454,6 +5454,11 @@ var colorThemeControls = {
|
|
|
5454
5454
|
}, 0.01 * 1e3);
|
|
5455
5455
|
}
|
|
5456
5456
|
};
|
|
5457
|
+
var filterHover = {
|
|
5458
|
+
z1: externalBetterHtmlContextValue?.colorTheme === "dark" ? "brightness(1.1)" : "brightness(0.9)",
|
|
5459
|
+
z2: externalBetterHtmlContextValue?.colorTheme === "dark" ? "brightness(1.2)" : "brightness(0.8)",
|
|
5460
|
+
z3: externalBetterHtmlContextValue?.colorTheme === "dark" ? "brightness(1.3)" : "brightness(0.7)"
|
|
5461
|
+
};
|
|
5457
5462
|
|
|
5458
5463
|
// src/utils/functions.ts
|
|
5459
5464
|
var generateRandomString = (stringLength, options) => {
|
|
@@ -9238,6 +9243,7 @@ export {
|
|
|
9238
9243
|
eventPreventDefault,
|
|
9239
9244
|
eventPreventStop,
|
|
9240
9245
|
eventStopPropagation,
|
|
9246
|
+
filterHover,
|
|
9241
9247
|
formatPhoneNumber,
|
|
9242
9248
|
generateLocalStorage,
|
|
9243
9249
|
generateRandomString,
|