react-native-unistyles 3.0.0-nightly-20250609 → 3.0.0-nightly-20250616

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.
Files changed (109) hide show
  1. package/README.md +7 -8
  2. package/Unistyles.podspec +12 -1
  3. package/android/src/main/cxx/NativeUnistylesModule.cpp +2 -1
  4. package/android/src/main/cxx/NativeUnistylesModule.h +4 -0
  5. package/android/src/main/java/com/unistyles/UnistylesModule.kt +7 -0
  6. package/cxx/core/UnistylesRegistry.cpp +7 -6
  7. package/cxx/core/UnistylesRegistry.h +2 -1
  8. package/ios/UnistylesModuleOnLoad.mm +5 -0
  9. package/lib/commonjs/components/ScopedTheme.js +6 -2
  10. package/lib/commonjs/components/ScopedTheme.js.map +1 -1
  11. package/lib/commonjs/core/withUnistyles/withUnistyles.js +9 -3
  12. package/lib/commonjs/core/withUnistyles/withUnistyles.js.map +1 -1
  13. package/lib/commonjs/core/withUnistyles/withUnistyles.native.js +9 -3
  14. package/lib/commonjs/core/withUnistyles/withUnistyles.native.js.map +1 -1
  15. package/lib/commonjs/reanimated/index.js +7 -0
  16. package/lib/commonjs/reanimated/index.js.map +1 -1
  17. package/lib/commonjs/reanimated/variant/index.js +17 -0
  18. package/lib/commonjs/reanimated/variant/index.js.map +1 -0
  19. package/lib/commonjs/reanimated/variant/types.js +2 -0
  20. package/lib/commonjs/reanimated/variant/types.js.map +1 -0
  21. package/lib/commonjs/reanimated/variant/useAnimatedVariantColor.js +38 -0
  22. package/lib/commonjs/reanimated/variant/useAnimatedVariantColor.js.map +1 -0
  23. package/lib/commonjs/reanimated/variant/useUpdateVariantColor.js +66 -0
  24. package/lib/commonjs/reanimated/variant/useUpdateVariantColor.js.map +1 -0
  25. package/lib/commonjs/reanimated/variant/useUpdateVariantColor.native.js +39 -0
  26. package/lib/commonjs/reanimated/variant/useUpdateVariantColor.native.js.map +1 -0
  27. package/lib/commonjs/web/convert/pseudo.js +13 -3
  28. package/lib/commonjs/web/convert/pseudo.js.map +1 -1
  29. package/lib/commonjs/web/create.js +1 -1
  30. package/lib/commonjs/web/create.js.map +1 -1
  31. package/lib/commonjs/web/css/core.js +3 -1
  32. package/lib/commonjs/web/css/core.js.map +1 -1
  33. package/lib/commonjs/web/shadowRegistry.js +3 -2
  34. package/lib/commonjs/web/shadowRegistry.js.map +1 -1
  35. package/lib/commonjs/web/types.js.map +1 -1
  36. package/lib/commonjs/web/utils/unistyle.js +13 -1
  37. package/lib/commonjs/web/utils/unistyle.js.map +1 -1
  38. package/lib/module/components/ScopedTheme.js +6 -2
  39. package/lib/module/components/ScopedTheme.js.map +1 -1
  40. package/lib/module/core/withUnistyles/withUnistyles.js +9 -3
  41. package/lib/module/core/withUnistyles/withUnistyles.js.map +1 -1
  42. package/lib/module/core/withUnistyles/withUnistyles.native.js +9 -3
  43. package/lib/module/core/withUnistyles/withUnistyles.native.js.map +1 -1
  44. package/lib/module/reanimated/index.js +1 -0
  45. package/lib/module/reanimated/index.js.map +1 -1
  46. package/lib/module/reanimated/variant/index.js +4 -0
  47. package/lib/module/reanimated/variant/index.js.map +1 -0
  48. package/lib/module/reanimated/variant/types.js +2 -0
  49. package/lib/module/reanimated/variant/types.js.map +1 -0
  50. package/lib/module/reanimated/variant/useAnimatedVariantColor.js +33 -0
  51. package/lib/module/reanimated/variant/useAnimatedVariantColor.js.map +1 -0
  52. package/lib/module/reanimated/variant/useUpdateVariantColor.js +61 -0
  53. package/lib/module/reanimated/variant/useUpdateVariantColor.js.map +1 -0
  54. package/lib/module/reanimated/variant/useUpdateVariantColor.native.js +34 -0
  55. package/lib/module/reanimated/variant/useUpdateVariantColor.native.js.map +1 -0
  56. package/lib/module/web/convert/pseudo.js +10 -2
  57. package/lib/module/web/convert/pseudo.js.map +1 -1
  58. package/lib/module/web/create.js +1 -1
  59. package/lib/module/web/create.js.map +1 -1
  60. package/lib/module/web/css/core.js +3 -1
  61. package/lib/module/web/css/core.js.map +1 -1
  62. package/lib/module/web/shadowRegistry.js +3 -2
  63. package/lib/module/web/shadowRegistry.js.map +1 -1
  64. package/lib/module/web/types.js.map +1 -1
  65. package/lib/module/web/utils/unistyle.js +12 -1
  66. package/lib/module/web/utils/unistyle.js.map +1 -1
  67. package/lib/typescript/src/components/ScopedTheme.d.ts.map +1 -1
  68. package/lib/typescript/src/core/withUnistyles/types.d.ts +3 -1
  69. package/lib/typescript/src/core/withUnistyles/types.d.ts.map +1 -1
  70. package/lib/typescript/src/core/withUnistyles/withUnistyles.d.ts.map +1 -1
  71. package/lib/typescript/src/core/withUnistyles/withUnistyles.native.d.ts.map +1 -1
  72. package/lib/typescript/src/reanimated/index.d.ts +1 -0
  73. package/lib/typescript/src/reanimated/index.d.ts.map +1 -1
  74. package/lib/typescript/src/reanimated/variant/index.d.ts +2 -0
  75. package/lib/typescript/src/reanimated/variant/index.d.ts.map +1 -0
  76. package/lib/typescript/src/reanimated/variant/types.d.ts +10 -0
  77. package/lib/typescript/src/reanimated/variant/types.d.ts.map +1 -0
  78. package/lib/typescript/src/reanimated/variant/useAnimatedVariantColor.d.ts +3 -0
  79. package/lib/typescript/src/reanimated/variant/useAnimatedVariantColor.d.ts.map +1 -0
  80. package/lib/typescript/src/reanimated/variant/useUpdateVariantColor.d.ts +6 -0
  81. package/lib/typescript/src/reanimated/variant/useUpdateVariantColor.d.ts.map +1 -0
  82. package/lib/typescript/src/reanimated/variant/useUpdateVariantColor.native.d.ts +6 -0
  83. package/lib/typescript/src/reanimated/variant/useUpdateVariantColor.native.d.ts.map +1 -0
  84. package/lib/typescript/src/web/convert/pseudo.d.ts +6 -3
  85. package/lib/typescript/src/web/convert/pseudo.d.ts.map +1 -1
  86. package/lib/typescript/src/web/css/core.d.ts.map +1 -1
  87. package/lib/typescript/src/web/shadowRegistry.d.ts +1 -0
  88. package/lib/typescript/src/web/shadowRegistry.d.ts.map +1 -1
  89. package/lib/typescript/src/web/types.d.ts +4 -1
  90. package/lib/typescript/src/web/types.d.ts.map +1 -1
  91. package/lib/typescript/src/web/utils/unistyle.d.ts +4 -1
  92. package/lib/typescript/src/web/utils/unistyle.d.ts.map +1 -1
  93. package/package.json +1 -1
  94. package/src/components/ScopedTheme.tsx +7 -2
  95. package/src/core/withUnistyles/types.ts +1 -1
  96. package/src/core/withUnistyles/withUnistyles.native.tsx +10 -3
  97. package/src/core/withUnistyles/withUnistyles.tsx +11 -8
  98. package/src/reanimated/index.ts +1 -0
  99. package/src/reanimated/variant/index.ts +1 -0
  100. package/src/reanimated/variant/types.ts +14 -0
  101. package/src/reanimated/variant/useAnimatedVariantColor.ts +38 -0
  102. package/src/reanimated/variant/useUpdateVariantColor.native.ts +38 -0
  103. package/src/reanimated/variant/useUpdateVariantColor.ts +81 -0
  104. package/src/web/convert/pseudo.ts +23 -52
  105. package/src/web/create.ts +1 -1
  106. package/src/web/css/core.ts +3 -1
  107. package/src/web/shadowRegistry.ts +2 -2
  108. package/src/web/types.ts +4 -1
  109. package/src/web/utils/unistyle.ts +18 -2
@@ -2,7 +2,7 @@
2
2
 
3
3
  import { Animated } from 'react-native';
4
4
  import { ColorScheme, Orientation } from '../../specs/types';
5
- import { isUnistylesMq, parseMq } from '../../utils';
5
+ import { isDefined, isUnistylesMq, parseMq } from '../../utils';
6
6
  import * as unistyles from '../services';
7
7
  import { UNI_GENERATED_KEYS } from '../types';
8
8
  import { hyphenate, keyInObject, reduceObject } from './common';
@@ -108,4 +108,15 @@ export const convertTheme = (key, value, prev = '-') => {
108
108
  }
109
109
  return [key, value];
110
110
  };
111
+ export const getClosestBreakpointValue = (runtime, values) => {
112
+ const breakpoints = runtime.breakpoints;
113
+ const breakpointValues = Object.entries(values)
114
+ // Filter out non-breakpoint values
115
+ .filter(pair => pair[0] in breakpoints)
116
+ // Sort in descending order
117
+ .sort(([a], [b]) => (breakpoints[b] ?? 0) - (breakpoints[a] ?? 0));
118
+ // Get breakpoint value with highest priority
119
+ const [_, currentBreakpointValue] = breakpointValues.find(([key]) => isDefined(runtime.breakpoint) && (breakpoints[key] ?? 0) <= (breakpoints[runtime.breakpoint] ?? 0)) ?? [];
120
+ return currentBreakpointValue;
121
+ };
111
122
  //# sourceMappingURL=unistyle.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["Animated","ColorScheme","Orientation","isUnistylesMq","parseMq","unistyles","UNI_GENERATED_KEYS","hyphenate","keyInObject","reduceObject","schemeToTheme","scheme","Dark","Light","assignSecrets","object","secrets","secretsId","Math","random","toString","slice","Object","defineProperties","secret","value","enumerable","configurable","extractSecrets","undefined","entries","find","key","startsWith","getOwnPropertyDescriptors","removeInlineStyles","values","returnValue","getMediaQuery","query","allBreakpoints","includes","minWidth","maxWidth","minHeight","maxHeight","queries","filter","Boolean","join","breakpointValue","services","runtime","breakpoints","nextBreakpoint","b","map","sort","a","extractUnistyleDependencies","dependencies","uni__dependencies","Array","isArray","checkForProp","prop","some","nestedValue","_web","checkForAnimated","objectValues","Node","length","keys","isGeneratedUnistyle","every","convertTheme","prev","fromEntries","nestedKey"],"sourceRoot":"../../../../src","sources":["web/utils/unistyle.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["Animated","ColorScheme","Orientation","isDefined","isUnistylesMq","parseMq","unistyles","UNI_GENERATED_KEYS","hyphenate","keyInObject","reduceObject","schemeToTheme","scheme","Dark","Light","assignSecrets","object","secrets","secretsId","Math","random","toString","slice","Object","defineProperties","secret","value","enumerable","configurable","extractSecrets","undefined","entries","find","key","startsWith","getOwnPropertyDescriptors","removeInlineStyles","values","returnValue","getMediaQuery","query","allBreakpoints","includes","minWidth","maxWidth","minHeight","maxHeight","queries","filter","Boolean","join","breakpointValue","services","runtime","breakpoints","nextBreakpoint","b","map","sort","a","extractUnistyleDependencies","dependencies","uni__dependencies","Array","isArray","checkForProp","prop","some","nestedValue","_web","checkForAnimated","objectValues","Node","length","keys","isGeneratedUnistyle","every","convertTheme","prev","fromEntries","nestedKey","getClosestBreakpointValue","breakpointValues","pair","_","currentBreakpointValue","breakpoint"],"sourceRoot":"../../../../src","sources":["web/utils/unistyle.ts"],"mappings":"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","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"ScopedTheme.d.ts","sourceRoot":"","sources":["../../../../src/components/ScopedTheme.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAA;AAKhD,KAAK,UAAU,GAAG;IACd,IAAI,EAAE,MAAM,eAAe,CAAC;IAC5B,gBAAgB,CAAC,EAAE,OAAO,CAAA;CAC7B,GAAG;IACA,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,gBAAgB,EAAE,IAAI,CAAA;CACzB,CAAA;AAED,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,iBAAiB,CAAC,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAgCpF,CAAA"}
1
+ {"version":3,"file":"ScopedTheme.d.ts","sourceRoot":"","sources":["../../../../src/components/ScopedTheme.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAA;AAKhD,KAAK,UAAU,GAAG;IACd,IAAI,EAAE,MAAM,eAAe,CAAC;IAC5B,gBAAgB,CAAC,EAAE,OAAO,CAAA;CAC7B,GAAG;IACA,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,gBAAgB,EAAE,IAAI,CAAA;CACzB,CAAA;AAED,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,iBAAiB,CAAC,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAqCpF,CAAA"}
@@ -2,5 +2,7 @@ import type { UnistylesMiniRuntime } from '../../specs';
2
2
  import type { UnistylesTheme } from '../../types';
3
3
  export declare const SUPPORTED_STYLE_PROPS: readonly ["style", "contentContainerStyle"];
4
4
  export type SupportedStyleProps = typeof SUPPORTED_STYLE_PROPS[number];
5
- export type Mappings<T = {}> = (theme: UnistylesTheme, rt: UnistylesMiniRuntime) => Omit<Partial<T>, SupportedStyleProps>;
5
+ export type Mappings<T = {}> = (theme: UnistylesTheme, rt: UnistylesMiniRuntime) => Omit<Partial<T>, SupportedStyleProps> & {
6
+ key?: string;
7
+ };
6
8
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/core/withUnistyles/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AACxD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAElD,eAAO,MAAM,qBAAqB,6CAA8C,CAAA;AAEhF,MAAM,MAAM,mBAAmB,GAAG,OAAO,qBAAqB,CAAC,MAAM,CAAC,CAAA;AACtE,MAAM,MAAM,QAAQ,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,KAAK,EAAE,cAAc,EAAE,EAAE,EAAE,oBAAoB,KAAK,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,mBAAmB,CAAC,CAAA"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/core/withUnistyles/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AACxD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAElD,eAAO,MAAM,qBAAqB,6CAA8C,CAAA;AAEhF,MAAM,MAAM,mBAAmB,GAAG,OAAO,qBAAqB,CAAC,MAAM,CAAC,CAAA;AACtE,MAAM,MAAM,QAAQ,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,KAAK,EAAE,cAAc,EAAE,EAAE,EAAE,oBAAoB,KAAK,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,mBAAmB,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,MAAM,CAAA;CAAE,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"withUnistyles.d.ts","sourceRoot":"","sources":["../../../../../src/core/withUnistyles/withUnistyles.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAkC,KAAK,cAAc,EAAqB,MAAM,OAAO,CAAA;AAMrG,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAGvC,KAAK,qBAAqB,CAAC,CAAC,IAAI,cAAc,CAAC,CAAC,CAAC,CAAA;AAIjD,eAAO,MAAM,aAAa,GAAI,UAAU,EAAE,SAAS,SAAS,qBAAqB,CAAC,UAAU,CAAC,EAAE,WAAW,UAAU,EAAE,WAAW,QAAQ,CAAC,SAAS,CAAC;eAGjI,QAAQ,kCAAQ;yDAqDlC,CAAA"}
1
+ {"version":3,"file":"withUnistyles.d.ts","sourceRoot":"","sources":["../../../../../src/core/withUnistyles/withUnistyles.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAkC,KAAK,cAAc,EAAqB,MAAM,OAAO,CAAA;AAMrG,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAGvC,KAAK,qBAAqB,CAAC,CAAC,IAAI,cAAc,CAAC,CAAC,CAAC,CAAA;AAIjD,eAAO,MAAM,aAAa,GAAI,UAAU,EAAE,SAAS,SAAS,qBAAqB,CAAC,UAAU,CAAC,EAAE,WAAW,UAAU,EAAE,WAAW,QAAQ,CAAC,SAAS,CAAC;eAGjI,QAAQ,kCAAQ;yDAwDlC,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"withUnistyles.native.d.ts","sourceRoot":"","sources":["../../../../../src/core/withUnistyles/withUnistyles.native.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4D,MAAM,OAAO,CAAA;AAMhF,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAGvC,KAAK,qBAAqB,CAAC,CAAC,IAAI,cAAc,CAAC,CAAC,CAAC,CAAA;AAcjD,eAAO,MAAM,aAAa,GAAI,UAAU,EAAE,SAAS,SAAS,qBAAqB,CAAC,UAAU,CAAC,EAAE,WAAW,UAAU,EAAE,WAAW,QAAQ,CAAC,SAAS,CAAC,yCAuEnJ,CAAA"}
1
+ {"version":3,"file":"withUnistyles.native.d.ts","sourceRoot":"","sources":["../../../../../src/core/withUnistyles/withUnistyles.native.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4D,MAAM,OAAO,CAAA;AAMhF,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAGvC,KAAK,qBAAqB,CAAC,CAAC,IAAI,cAAc,CAAC,CAAC,CAAC,CAAA;AAcjD,eAAO,MAAM,aAAa,GAAI,UAAU,EAAE,SAAS,SAAS,qBAAqB,CAAC,UAAU,CAAC,EAAE,WAAW,UAAU,EAAE,WAAW,QAAQ,CAAC,SAAS,CAAC,yCA8EnJ,CAAA"}
@@ -1,2 +1,3 @@
1
1
  export { useAnimatedTheme } from './useAnimatedTheme';
2
+ export { useAnimatedVariantColor } from './variant';
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/reanimated/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/reanimated/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AACrD,OAAO,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAA"}
@@ -0,0 +1,2 @@
1
+ export * from './useAnimatedVariantColor';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/reanimated/variant/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAA"}
@@ -0,0 +1,10 @@
1
+ export type ColorKeys<T> = {
2
+ [K in keyof T]: K extends string ? K extends `${string}color${string}` | `${string}Color${string}` ? K : never : never;
3
+ }[keyof T];
4
+ export type UseUpdateVariantColorConfig<T extends Record<string, any>> = {
5
+ animateCallback?: (from: string, to: string) => void;
6
+ colorKey: ColorKeys<T>;
7
+ style: T;
8
+ secretKey: string | undefined;
9
+ };
10
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/reanimated/variant/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,SAAS,CAAC,CAAC,IAAI;KACtB,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,SAAS,MAAM,GAC1B,CAAC,SAAS,GAAG,MAAM,QAAQ,MAAM,EAAE,GAAG,GAAG,MAAM,QAAQ,MAAM,EAAE,GAC3D,CAAC,GACD,KAAK,GACT,KAAK;CACd,CAAC,MAAM,CAAC,CAAC,CAAA;AAEV,MAAM,MAAM,2BAA2B,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI;IACrE,eAAe,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IACrD,QAAQ,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;IACvB,KAAK,EAAE,CAAC,CAAC;IACT,SAAS,EAAE,MAAM,GAAG,SAAS,CAAA;CAChC,CAAA"}
@@ -0,0 +1,3 @@
1
+ import type { ColorKeys } from './types';
2
+ export declare const useAnimatedVariantColor: <T extends Record<string, any>>(style: T, colorKey: ColorKeys<T>) => import("react-native-reanimated").DerivedValue<string>;
3
+ //# sourceMappingURL=useAnimatedVariantColor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useAnimatedVariantColor.d.ts","sourceRoot":"","sources":["../../../../../src/reanimated/variant/useAnimatedVariantColor.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAGxC,eAAO,MAAM,uBAAuB,GAAI,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,OAAO,CAAC,EAAE,UAAU,SAAS,CAAC,CAAC,CAAC,2DAiCtG,CAAA"}
@@ -0,0 +1,6 @@
1
+ import type { UseUpdateVariantColorConfig } from './types';
2
+ export declare const useUpdateVariantColor: <T extends Record<string, any>>({ animateCallback, colorKey, style }: UseUpdateVariantColorConfig<T>) => {
3
+ fromValue: import("react-native-reanimated").SharedValue<string>;
4
+ toValue: import("react-native-reanimated").SharedValue<string>;
5
+ };
6
+ //# sourceMappingURL=useUpdateVariantColor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useUpdateVariantColor.d.ts","sourceRoot":"","sources":["../../../../../src/reanimated/variant/useUpdateVariantColor.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,SAAS,CAAA;AAE1D,eAAO,MAAM,qBAAqB,GAAI,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,sCAIlE,2BAA2B,CAAC,CAAC,CAAC;;;CAoEhC,CAAA"}
@@ -0,0 +1,6 @@
1
+ import type { UseUpdateVariantColorConfig } from './types';
2
+ export declare const useUpdateVariantColor: <T extends Record<string, any>>({ colorKey, style, secretKey }: UseUpdateVariantColorConfig<T>) => {
3
+ fromValue: import("react-native-reanimated").SharedValue<string>;
4
+ toValue: import("react-native-reanimated").SharedValue<string>;
5
+ };
6
+ //# sourceMappingURL=useUpdateVariantColor.native.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useUpdateVariantColor.native.d.ts","sourceRoot":"","sources":["../../../../../src/reanimated/variant/useUpdateVariantColor.native.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,SAAS,CAAA;AAE1D,eAAO,MAAM,qBAAqB,GAAI,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,gCAIlE,2BAA2B,CAAC,CAAC,CAAC;;;CA4BhC,CAAA"}
@@ -1,6 +1,9 @@
1
- export declare const pseudos: readonly ["_-moz-broken", "_-moz-drag-over", "_-moz-first-node", "_-moz-handler-blocked", "_-moz-handler-crashed", "_-moz-handler-disabled", "_-moz-last-node", "_-moz-loading", "_-moz-locale-dir(ltr)", "_-moz-locale-dir(rtl)", "_-moz-only-whitespace", "_-moz-submit-invalid", "_-moz-suppressed", "_-moz-user-disabled", "_-moz-window-inactive", "_active", "_any-link", "_autofill", "_blank", "_buffering", "_checked", "_current", "_default", "_defined", "_dir(", "_disabled", "_empty", "_enabled", "_first", "_first-child", "_first-of-type", "_focus", "_focus-visible", "_focus-within", "_fullscreen", "_future", "_has(", "_host", "_host-context(", "_host(", "_hover", "_in-range", "_indeterminate", "_invalid", "_is(", "_lang(", "_last-child", "_last-of-type", "_left", "_link", "_local-link", "_modal", "_muted", "_not(", "_nth-child(", "_nth-last-child(", "_nth-last-of-type(", "_nth-of-type(", "_only-child", "_only-of-type", "_optional", "_out-of-range", "_past", "_paused", "_picture-in-picture", "_placeholder-shown", "_playing", "_popover-open", "_read-only", "_read-write", "_required", "_right", "_scope", "_seeking", "_stalled", "_state(", "_target", "_target-within", "_user-invalid", "_user-valid", "_valid", "_visited", "_volume-locked", "_where(", "_-moz-color-swatch", "_-moz-focus-inner", "_-moz-list-bullet", "_-moz-list-number", "_-moz-meter-bar", "_-moz-progress-bar", "_-moz-range-progress", "_-moz-range-thumb", "_-moz-range-track", "_-webkit-inner-spin-button", "_-webkit-meter-barDeprecated", "_-webkit-meter-even-less-good-value", "_-webkit-meter-inner-element", "_-webkit-meter-optimum-value", "_-webkit-meter-suboptimum-value", "_-webkit-progress-bar", "_-webkit-progress-inner-element", "_-webkit-progress-value", "_-webkit-scrollbar", "_-webkit-search-cancel-button", "_-webkit-search-results-button", "_-webkit-slider-runnable-track", "_-webkit-slider-thumb", "_after", "_backdrop", "_before", "_cue", "_file-selector-button", "_first-letter", "_first-line", "_grammar-error", "_highlight(", "_marker", "_part(", "_placeholder", "_selection", "_slotted(", "_spelling-error", "_target-text", "_view-transition", "_view-transition-group", "_view-transition-image-pair", "_view-transition-new", "_view-transition-old"];
2
- export declare const isPseudo: (selector: string) => boolean;
1
+ declare const pseudoClasses: readonly ["_active", "_any-link", "_autofill", "_buffering", "_checked", "_default", "_defined", "_dir(", "_disabled", "_empty", "_enabled", "_first", "_first-child", "_first-of-type", "_focus", "_focus-visible", "_focus-within", "_future", "_has-slotted", "_has(", "_host", "_host-context(", "_host(", "_hover", "_in-range", "_indeterminate", "_invalid", "_is(", "_lang(", "_last-child", "_last-of-type", "_left", "_link", "_modal", "_muted", "_not(", "_nth-child(", "_nth-last-child(", "_nth-last-of-type(", "_nth-of-type(", "_only-child", "_only-of-type", "_open", "_optional", "_out-of-range", "_past", "_paused", "_picture-in-picture", "_placeholder-shown", "_playing", "_popover-open", "_read-only", "_read-write", "_required", "_right", "_root", "_scope", "_seeking", "_stalled", "_state(", "_target", "_user-invalid", "_user-valid", "_valid", "_visited", "_volume-locked", "_where"];
2
+ declare const pseudoElements: readonly ["_after", "_backdrop", "_before", "_cue", "_details-content", "_file-selector-button", "_first-letter", "_first-line", "_grammar-error", "_highlight(", "_marker", "_part(", "_placeholder", "_selection", "_slotted(", "_spelling-error", "_target-text", "_view-transition", "_view-transition-group(", "_view-transition-image-pair(", "_view-transition-new(", "_view-transition-old("];
3
3
  type AddDynamicSelector<T extends string> = T extends `${infer U}(` ? `${U}(${string})` : T;
4
- export type Pseudo = AddDynamicSelector<typeof pseudos[number]>;
4
+ export type Pseudo = AddDynamicSelector<(typeof pseudoClasses)[number] | (typeof pseudoElements)[number]>;
5
+ export declare const isPseudoClass: (selector: string) => boolean;
6
+ export declare const isPseudoElement: (selector: string) => boolean;
7
+ export declare const isPseudo: (selector: string) => boolean;
5
8
  export {};
6
9
  //# sourceMappingURL=pseudo.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"pseudo.d.ts","sourceRoot":"","sources":["../../../../../src/web/convert/pseudo.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,ssEAiIV,CAAA;AAEV,eAAO,MAAM,QAAQ,GAAI,UAAU,MAAM,YAAwD,CAAA;AAEjG,KAAK,kBAAkB,CAAC,CAAC,SAAS,MAAM,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,GAAG,CAAC,IAAI,MAAM,GAAG,GAAG,CAAC,CAAA;AAE3F,MAAM,MAAM,MAAM,GAAG,kBAAkB,CAAC,OAAO,OAAO,CAAC,MAAM,CAAC,CAAC,CAAA"}
1
+ {"version":3,"file":"pseudo.d.ts","sourceRoot":"","sources":["../../../../../src/web/convert/pseudo.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,aAAa,43BAoET,CAAA;AAGV,QAAA,MAAM,cAAc,uYAuBV,CAAA;AAEV,KAAK,kBAAkB,CAAC,CAAC,SAAS,MAAM,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,GAAG,GAAG,GAAG,CAAC,IAAI,MAAM,GAAG,GAAG,CAAC,CAAA;AAE3F,MAAM,MAAM,MAAM,GAAG,kBAAkB,CAAC,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,CAAC,CAAC,CAAA;AAEzG,eAAO,MAAM,aAAa,GAAI,UAAU,MAAM,YAA8D,CAAA;AAE5G,eAAO,MAAM,eAAe,GAAI,UAAU,MAAM,YAA+D,CAAA;AAE/G,eAAO,MAAM,QAAQ,GAAI,UAAU,MAAM,YAAyD,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"core.d.ts","sourceRoot":"","sources":["../../../../../src/web/css/core.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAEvC,eAAO,MAAM,YAAY,GAAI,MAAM,MAAM,EAAE,OAAO,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,OAAO,QAAQ,SA8DrF,CAAA"}
1
+ {"version":3,"file":"core.d.ts","sourceRoot":"","sources":["../../../../../src/web/css/core.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAEvC,eAAO,MAAM,YAAY,GAAI,MAAM,MAAM,EAAE,OAAO,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,OAAO,QAAQ,SA+DrF,CAAA"}
@@ -14,6 +14,7 @@ export declare class UnistylesShadowRegistry {
14
14
  addStyles: (unistyles: Array<UnistylesValues>, forChild?: boolean) => UniGeneratedStyle | {
15
15
  injectedClassName: string;
16
16
  hash: string;
17
+ parsedStyles: UnistylesValues;
17
18
  };
18
19
  setScopedTheme: (theme?: UnistylesTheme) => void;
19
20
  getScopedTheme: () => undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"shadowRegistry.d.ts","sourceRoot":"","sources":["../../../../src/web/shadowRegistry.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAE/D,OAAO,KAAK,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAInE,qBAAa,uBAAuB;IAYpB,OAAO,CAAC,QAAQ;IAV5B,IAAI,SAA4B;IAChC,MAAM,SAAQ;IACd,MAAM,gBAAa;IACnB,QAAQ,eAAkC;IAC1C,OAAO,aAAW;IAGlB,OAAO,CAAC,WAAW,CAAwC;IAC3D,OAAO,CAAC,UAAU,CAAkC;gBAEhC,QAAQ,EAAE,iBAAiB;IAE/C,GAAG,GAAI,KAAK,GAAG,EAAE,OAAO,MAAM,UAM7B;IAED,SAAS,GAAI,WAAW,KAAK,CAAC,eAAe,CAAC,EAAE,WAAW,OAAO;;;MAoEjE;IAED,cAAc,GAAI,QAAQ,cAAc,UAEvC;IAED,cAAc,kBAAyB;IAEvC,MAAM,GAAI,KAAK,GAAG,EAAE,OAAO,MAAM,UAchC;IAED,KAAK,aAAW;CACnB"}
1
+ {"version":3,"file":"shadowRegistry.d.ts","sourceRoot":"","sources":["../../../../src/web/shadowRegistry.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAE/D,OAAO,KAAK,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAInE,qBAAa,uBAAuB;IAYpB,OAAO,CAAC,QAAQ;IAV5B,IAAI,SAA4B;IAChC,MAAM,SAAQ;IACd,MAAM,gBAAa;IACnB,QAAQ,eAAkC;IAC1C,OAAO,aAAW;IAGlB,OAAO,CAAC,WAAW,CAAwC;IAC3D,OAAO,CAAC,UAAU,CAAkC;gBAEhC,QAAQ,EAAE,iBAAiB;IAE/C,GAAG,GAAI,KAAK,GAAG,EAAE,OAAO,MAAM,UAM7B;IAED,SAAS,GAAI,WAAW,KAAK,CAAC,eAAe,CAAC,EAAE,WAAW,OAAO;;;;MAoEjE;IAED,cAAc,GAAI,QAAQ,cAAc,UAEvC;IAED,cAAc,kBAAyB;IAEvC,MAAM,GAAI,KAAK,GAAG,EAAE,OAAO,MAAM,UAchC;IAED,KAAK,aAAW;CACnB"}
@@ -1,3 +1,4 @@
1
+ import type { UnistylesValues } from '../types';
1
2
  import type { UnistylesListener } from './listener';
2
3
  import type { UnistylesRegistry } from './registry';
3
4
  import type { UnistylesRuntime } from './runtime';
@@ -12,5 +13,7 @@ export type UnistylesServices = {
12
13
  };
13
14
  export declare const UNI_GENERATED_KEYS: readonly ["$$css", "hash", "injectedClassName"];
14
15
  export type UniGeneratedKey = typeof UNI_GENERATED_KEYS[number];
15
- export type UniGeneratedStyle = Record<UniGeneratedKey, string>;
16
+ export type UniGeneratedStyle = Record<UniGeneratedKey, string> & {
17
+ parsedStyles?: UnistylesValues;
18
+ };
16
19
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/web/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA;AACnD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA;AACnD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAA;AACjD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAA;AAC/D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAE7C,MAAM,MAAM,iBAAiB,GAAG;IAC5B,OAAO,EAAE,gBAAgB,CAAC;IAC1B,QAAQ,EAAE,iBAAiB,CAAC;IAC5B,cAAc,EAAE,uBAAuB,CAAC;IACxC,KAAK,EAAE,cAAc,CAAC;IACtB,QAAQ,EAAE,iBAAiB,CAAA;CAC9B,CAAA;AAED,eAAO,MAAM,kBAAkB,iDAAkD,CAAA;AACjF,MAAM,MAAM,eAAe,GAAG,OAAO,kBAAkB,CAAC,MAAM,CAAC,CAAA;AAE/D,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,eAAe,EAAE,MAAM,CAAC,CAAA"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/web/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAC/C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA;AACnD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA;AACnD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAA;AACjD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAA;AAC/D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAE7C,MAAM,MAAM,iBAAiB,GAAG;IAC5B,OAAO,EAAE,gBAAgB,CAAC;IAC1B,QAAQ,EAAE,iBAAiB,CAAC;IAC5B,cAAc,EAAE,uBAAuB,CAAC;IACxC,KAAK,EAAE,cAAc,CAAC;IACtB,QAAQ,EAAE,iBAAiB,CAAA;CAC9B,CAAA;AAED,eAAO,MAAM,kBAAkB,iDAAkD,CAAA;AACjF,MAAM,MAAM,eAAe,GAAG,OAAO,kBAAkB,CAAC,MAAM,CAAC,CAAA;AAE/D,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,eAAe,EAAE,MAAM,CAAC,GAAG;IAC9D,YAAY,CAAC,EAAE,eAAe,CAAA;CACjC,CAAA"}
@@ -1,13 +1,15 @@
1
+ import type { UnistylesBreakpoints } from '../../global';
1
2
  import type { UnistyleDependency } from '../../specs/NativePlatform/NativePlatform.nitro';
2
3
  import { ColorScheme } from '../../specs/types';
3
4
  import type { StyleSheet, StyleSheetWithSuperPowers, UnistylesValues } from '../../types/stylesheet';
5
+ import type { UnistylesRuntime } from '../runtime';
4
6
  import { type UniGeneratedStyle } from '../types';
5
7
  export declare const schemeToTheme: (scheme: ColorScheme) => "light" | "dark";
6
8
  export type UnistyleSecrets = {
7
9
  __uni__stylesheet: StyleSheetWithSuperPowers<StyleSheet>;
8
10
  __uni__key: string;
9
11
  __uni__args?: Array<any>;
10
- __uni_variants: Record<string, string | boolean | undefined>;
12
+ __stylesheetVariants: Record<string, string | boolean | undefined>;
11
13
  };
12
14
  export declare const assignSecrets: <T>(object: T, secrets: UnistyleSecrets) => T;
13
15
  export declare const extractSecrets: (object: any) => {
@@ -20,4 +22,5 @@ export declare const checkForProp: (value: any, prop: string) => boolean;
20
22
  export declare const checkForAnimated: (value: any) => boolean;
21
23
  export declare const isGeneratedUnistyle: (value: Record<string, any>) => value is UniGeneratedStyle;
22
24
  export declare const convertTheme: (key: string, value: any, prev?: string) => [string, any];
25
+ export declare const getClosestBreakpointValue: <T>(runtime: UnistylesRuntime, values: Partial<Record<keyof UnistylesBreakpoints, T>>) => T | undefined;
23
26
  //# sourceMappingURL=unistyle.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"unistyle.d.ts","sourceRoot":"","sources":["../../../../../src/web/utils/unistyle.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,iDAAiD,CAAA;AACzF,OAAO,EAAE,WAAW,EAAe,MAAM,mBAAmB,CAAA;AAC5D,OAAO,KAAK,EAAE,UAAU,EAAE,yBAAyB,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AAGpG,OAAO,EAA4C,KAAK,iBAAiB,EAAE,MAAM,UAAU,CAAA;AAG3F,eAAO,MAAM,aAAa,GAAI,QAAQ,WAAW,qBAQhD,CAAA;AAED,MAAM,MAAM,eAAe,GAAG;IAC1B,iBAAiB,EAAE,yBAAyB,CAAC,UAAU,CAAC,CAAC;IACzD,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;IACzB,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC,CAAA;CAC/D,CAAA;AAED,eAAO,MAAM,aAAa,GAAI,CAAC,EAAE,QAAQ,CAAC,EAAE,SAAS,eAAe,MAanE,CAAA;AAED,eAAO,MAAM,cAAc,GAAI,QAAQ,GAAG;;aAYzC,CAAA;AAED,eAAO,MAAM,kBAAkB,GAAI,QAAQ,eAAe,OAUzD,CAAA;AAED,eAAO,MAAM,aAAa,GAAI,OAAO,MAAM,EAAE,gBAAgB,KAAK,CAAC,MAAM,CAAC,WA6BzE,CAAA;AAED,eAAO,MAAM,2BAA2B,GAAI,OAAO,GAAG,yBAQrD,CAAA;AAED,eAAO,MAAM,YAAY,GAAI,OAAO,GAAG,EAAE,MAAM,MAAM,KAAG,OAcvD,CAAA;AAED,eAAO,MAAM,gBAAgB,GAAI,OAAO,GAAG,KAAG,OAgB7C,CAAA;AAED,eAAO,MAAM,mBAAmB,GAAI,OAAO,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAG,KAAK,IAAI,iBAIzE,CAAA;AAED,eAAO,MAAM,YAAY,GAAI,KAAK,MAAM,EAAE,OAAO,GAAG,EAAE,aAAU,KAAG,CAAC,MAAM,EAAE,GAAG,CAU9E,CAAA"}
1
+ {"version":3,"file":"unistyle.d.ts","sourceRoot":"","sources":["../../../../../src/web/utils/unistyle.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAA;AACxD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,iDAAiD,CAAA;AACzF,OAAO,EAAE,WAAW,EAAe,MAAM,mBAAmB,CAAA;AAC5D,OAAO,KAAK,EAAE,UAAU,EAAE,yBAAyB,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AAEpG,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAElD,OAAO,EAA4C,KAAK,iBAAiB,EAAE,MAAM,UAAU,CAAA;AAG3F,eAAO,MAAM,aAAa,GAAI,QAAQ,WAAW,qBAQhD,CAAA;AAED,MAAM,MAAM,eAAe,GAAG;IAC1B,iBAAiB,EAAE,yBAAyB,CAAC,UAAU,CAAC,CAAC;IACzD,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;IACzB,oBAAoB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC,CAAA;CACrE,CAAA;AAED,eAAO,MAAM,aAAa,GAAI,CAAC,EAAE,QAAQ,CAAC,EAAE,SAAS,eAAe,MAanE,CAAA;AAED,eAAO,MAAM,cAAc,GAAI,QAAQ,GAAG;;aAYzC,CAAA;AAED,eAAO,MAAM,kBAAkB,GAAI,QAAQ,eAAe,OAUzD,CAAA;AAED,eAAO,MAAM,aAAa,GAAI,OAAO,MAAM,EAAE,gBAAgB,KAAK,CAAC,MAAM,CAAC,WA6BzE,CAAA;AAED,eAAO,MAAM,2BAA2B,GAAI,OAAO,GAAG,yBAQrD,CAAA;AAED,eAAO,MAAM,YAAY,GAAI,OAAO,GAAG,EAAE,MAAM,MAAM,KAAG,OAcvD,CAAA;AAED,eAAO,MAAM,gBAAgB,GAAI,OAAO,GAAG,KAAG,OAgB7C,CAAA;AAED,eAAO,MAAM,mBAAmB,GAAI,OAAO,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAG,KAAK,IAAI,iBAIzE,CAAA;AAED,eAAO,MAAM,YAAY,GAAI,KAAK,MAAM,EAAE,OAAO,GAAG,EAAE,aAAU,KAAG,CAAC,MAAM,EAAE,GAAG,CAU9E,CAAA;AAED,eAAO,MAAM,yBAAyB,GAAI,CAAC,EAAE,SAAS,gBAAgB,EAAE,QAAQ,OAAO,CAAC,MAAM,CAAC,MAAM,oBAAoB,EAAE,CAAC,CAAC,CAAC,kBAa7H,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-unistyles",
3
- "version": "3.0.0-nightly-20250609",
3
+ "version": "3.0.0-nightly-20250616",
4
4
  "description": "Level up your React Native StyleSheet",
5
5
  "scripts": {
6
6
  "test": "NODE_ENV=babel-test jest ./plugin",
@@ -17,9 +17,14 @@ export const ScopedTheme: React.FunctionComponent<React.PropsWithChildren<ThemeP
17
17
  children,
18
18
  invertedAdaptive
19
19
  }) => {
20
- const isAdaptiveTheme = invertedAdaptive && UnistylesRuntime.hasAdaptiveThemes
20
+ const hasAdaptiveThemes = UnistylesRuntime.hasAdaptiveThemes
21
+ const isAdaptiveTheme = invertedAdaptive && hasAdaptiveThemes
21
22
 
22
- if (!isAdaptiveTheme && !name) {
23
+ if (invertedAdaptive && !hasAdaptiveThemes) {
24
+ return children
25
+ }
26
+
27
+ if (!invertedAdaptive && !name) {
23
28
  if (__DEV__) {
24
29
  console.error('ScopedTheme: name or invertedAdaptive must be provided')
25
30
  }
@@ -4,4 +4,4 @@ import type { UnistylesTheme } from '../../types';
4
4
  export const SUPPORTED_STYLE_PROPS = ['style', 'contentContainerStyle'] as const
5
5
 
6
6
  export type SupportedStyleProps = typeof SUPPORTED_STYLE_PROPS[number]
7
- export type Mappings<T = {}> = (theme: UnistylesTheme, rt: UnistylesMiniRuntime) => Omit<Partial<T>, SupportedStyleProps>
7
+ export type Mappings<T = {}> = (theme: UnistylesTheme, rt: UnistylesMiniRuntime) => Omit<Partial<T>, SupportedStyleProps> & { key?: string }
@@ -26,6 +26,7 @@ export const withUnistyles = <TComponent, TMappings extends GenericComponentProp
26
26
  type PropsWithUnistyles = Partial<TProps> & {
27
27
  uniProps?: Mappings<TProps>
28
28
  }
29
+
29
30
  const getSecrets = (styleProps: Record<string, any> = {}): MappedSecrets => {
30
31
  const styles = Array.isArray(styleProps)
31
32
  ? styleProps.flat()
@@ -74,8 +75,8 @@ export const withUnistyles = <TComponent, TMappings extends GenericComponentProp
74
75
  addDependencies(Array.from(new Set([...styleSecrets.dependencies, ...contentContainerStyleSecrets.dependencies])))
75
76
  }, [narrowedProps.style, narrowedProps.contentContainerStyle])
76
77
 
77
- const mappingsProps = mappings ? mappings(proxifiedTheme, proxifiedRuntime) : {}
78
- const unistyleProps = narrowedProps.uniProps ? narrowedProps.uniProps(proxifiedTheme, proxifiedRuntime) : {}
78
+ const { key: mappingsKey, ...mappingsProps } = mappings ? mappings(proxifiedTheme, proxifiedRuntime) : {}
79
+ const { key: uniPropsKey, ...unistyleProps } = narrowedProps.uniProps ? narrowedProps.uniProps(proxifiedTheme, proxifiedRuntime) : {}
79
80
 
80
81
  const styleSecrets = getSecrets(narrowedProps.style)
81
82
  const contentContainerStyleSecrets = getSecrets(narrowedProps.contentContainerStyle)
@@ -90,6 +91,12 @@ export const withUnistyles = <TComponent, TMappings extends GenericComponentProp
90
91
  } : {},
91
92
  } as any
92
93
 
93
- return <NativeComponent {...finalProps as TProps} ref={ref} />
94
+ return (
95
+ <NativeComponent
96
+ key={uniPropsKey || mappingsKey}
97
+ {...finalProps as TProps}
98
+ ref={ref}
99
+ />
100
+ )
94
101
  })
95
102
  }
@@ -27,16 +27,15 @@ export const withUnistyles = <TComponent, TMappings extends GenericComponentProp
27
27
  const contentContainerStyleClassNames = getClassName(narrowedProps.contentContainerStyle)
28
28
  const { proxifiedRuntime, proxifiedTheme } = useProxifiedUnistyles()
29
29
 
30
- const mappingsProps = mappings ? mappings(proxifiedTheme, proxifiedRuntime) : {}
31
- const unistyleProps = narrowedProps.uniProps ? narrowedProps.uniProps(proxifiedTheme, proxifiedRuntime) : {}
32
-
30
+ const { key: mappingsKey, ...mappingsProps } = mappings ? mappings(proxifiedTheme, proxifiedRuntime) : {}
31
+ const { key: uniPropsKey, ...unistyleProps } = narrowedProps.uniProps ? narrowedProps.uniProps(proxifiedTheme, proxifiedRuntime) : {}
33
32
 
34
33
  const emptyStyles = narrowedProps.style
35
34
  ? Object.fromEntries(
36
- Object.entries(Object.getOwnPropertyDescriptors(narrowedProps.style))
37
- .filter(([key]) => !key.startsWith("unistyles") && !key.startsWith("_"))
38
- .map(([key]) => [key, undefined])
39
- )
35
+ Object.entries(Object.getOwnPropertyDescriptors(narrowedProps.style))
36
+ .filter(([key]) => !key.startsWith("unistyles") && !key.startsWith("_"))
37
+ .map(([key]) => [key, undefined])
38
+ )
40
39
  : undefined
41
40
 
42
41
  const combinedProps = {
@@ -63,7 +62,11 @@ export const withUnistyles = <TComponent, TMappings extends GenericComponentProp
63
62
  className={classNames?.hash}
64
63
  style={{ display: 'contents' }}
65
64
  >
66
- <NativeComponent {...combinedProps} ref={ref} />
65
+ <NativeComponent
66
+ key={uniPropsKey || mappingsKey}
67
+ {...combinedProps}
68
+ ref={ref}
69
+ />
67
70
  </div>
68
71
  )
69
72
  })
@@ -1 +1,2 @@
1
1
  export { useAnimatedTheme } from './useAnimatedTheme'
2
+ export { useAnimatedVariantColor } from './variant'
@@ -0,0 +1 @@
1
+ export * from './useAnimatedVariantColor'
@@ -0,0 +1,14 @@
1
+ export type ColorKeys<T> = {
2
+ [K in keyof T]: K extends string
3
+ ? K extends `${string}color${string}` | `${string}Color${string}`
4
+ ? K
5
+ : never
6
+ : never
7
+ }[keyof T]
8
+
9
+ export type UseUpdateVariantColorConfig<T extends Record<string, any>> = {
10
+ animateCallback?: (from: string, to: string) => void,
11
+ colorKey: ColorKeys<T>,
12
+ style: T,
13
+ secretKey: string | undefined
14
+ }
@@ -0,0 +1,38 @@
1
+ import { interpolateColor, useDerivedValue, useSharedValue } from 'react-native-reanimated'
2
+ import type { ColorKeys } from './types'
3
+ import { useUpdateVariantColor } from './useUpdateVariantColor'
4
+
5
+ export const useAnimatedVariantColor = <T extends Record<string, any>>(style: T, colorKey: ColorKeys<T>) => {
6
+ const secretKey = Object.keys(style).find(key => key.startsWith('unistyles_'))
7
+ // @ts-ignore this is hidden from TS
8
+ const hasVariants = style[secretKey]?.__stylesheetVariants
9
+
10
+ if (!hasVariants || !colorKey.toLowerCase().includes('color')) {
11
+ throw new Error('useAnimatedVariantColor: Style was not created by Unistyles, does not have variants or has no color property')
12
+ }
13
+
14
+ const { fromValue, toValue } = useUpdateVariantColor({
15
+ animateCallback: (from, to) => animate(from, to),
16
+ colorKey,
17
+ secretKey,
18
+ style,
19
+ })
20
+
21
+ const progress = useSharedValue(1)
22
+ const animate = (from: string, to: string) => {
23
+ 'worklet'
24
+
25
+ fromValue.set(from)
26
+ toValue.set(to)
27
+ }
28
+
29
+ const derivedColor = useDerivedValue(() => {
30
+ return interpolateColor(
31
+ progress.value,
32
+ [0, 1],
33
+ [fromValue.get(), toValue.get()]
34
+ )
35
+ })
36
+
37
+ return derivedColor
38
+ }
@@ -0,0 +1,38 @@
1
+ import { useEffect, useLayoutEffect } from 'react'
2
+ import { useSharedValue } from 'react-native-reanimated'
3
+ import { StyleSheet, UnistyleDependency } from '../../specs'
4
+ import type { UseUpdateVariantColorConfig } from './types'
5
+
6
+ export const useUpdateVariantColor = <T extends Record<string, any>>({
7
+ colorKey,
8
+ style,
9
+ secretKey
10
+ }: UseUpdateVariantColorConfig<T>) => {
11
+ const fromValue = useSharedValue<string>(style[colorKey])
12
+ const toValue = useSharedValue<string>(style[colorKey])
13
+
14
+ useEffect(() => {
15
+ // @ts-ignore this is hidden from TS
16
+ const dispose = StyleSheet.addChangeListener(changedDependencies => {
17
+ if (changedDependencies.includes(UnistyleDependency.Theme) || changedDependencies.includes(UnistyleDependency.Breakpoints)) {
18
+ // @ts-ignore
19
+ const newStyles = style[secretKey]?.uni__getStyles()
20
+
21
+ fromValue.set(toValue.value)
22
+ toValue.set(newStyles[colorKey])
23
+ }
24
+ })
25
+
26
+ return () => dispose()
27
+ }, [style, colorKey])
28
+
29
+ useLayoutEffect(() => {
30
+ fromValue.set(toValue.value)
31
+ toValue.set(style[colorKey])
32
+ }, [style, colorKey])
33
+
34
+ return {
35
+ fromValue,
36
+ toValue
37
+ }
38
+ }
@@ -0,0 +1,81 @@
1
+ import { useCallback, useEffect, useLayoutEffect, useMemo, useState } from 'react'
2
+ import { runOnUI, useSharedValue } from 'react-native-reanimated'
3
+ import { UnistyleDependency } from '../../specs'
4
+ import type { UnistylesValues } from '../../types'
5
+ import { services } from '../../web/services'
6
+ import { getClosestBreakpointValue } from '../../web/utils'
7
+ import type { UseUpdateVariantColorConfig } from './types'
8
+
9
+ export const useUpdateVariantColor = <T extends Record<string, any>>({
10
+ animateCallback,
11
+ colorKey,
12
+ style
13
+ }: UseUpdateVariantColorConfig<T>) => {
14
+ const [dummyDiv] = useState(() => {
15
+ const div = document.createElement('div')
16
+
17
+ div.style.display = 'none'
18
+ document.body.appendChild(div)
19
+
20
+ return div
21
+ })
22
+ const parsedStyles = useMemo(() => {
23
+ return services.shadowRegistry.addStyles([style]).parsedStyles
24
+ }, [style])
25
+ const getCurrentColor = useCallback(
26
+ () => {
27
+ if (!parsedStyles) {
28
+ return 'rgb(0, 0, 0)'
29
+ }
30
+
31
+ const currentColor = parsedStyles[colorKey as keyof UnistylesValues] as string | Record<string, string>
32
+ const currentColorVar = typeof currentColor === 'string'
33
+ ? currentColor
34
+ : getClosestBreakpointValue<string>(services.runtime, currentColor) ?? 'rgb(0, 0, 0)'
35
+
36
+ if (currentColorVar.startsWith('var(--')) {
37
+ dummyDiv.style.color = currentColorVar
38
+
39
+ return getComputedStyle(dummyDiv).color
40
+ }
41
+
42
+ return currentColorVar
43
+ },
44
+ [style, colorKey]
45
+ )
46
+ const fromValue = useSharedValue<string>(getCurrentColor())
47
+ const toValue = useSharedValue<string>(getCurrentColor())
48
+
49
+ useEffect(() => {
50
+ const dispose = services.listener.addListeners([UnistyleDependency.Theme], () => {
51
+ runOnUI(() => {
52
+ animateCallback?.(toValue.get(), getCurrentColor())
53
+ })()
54
+ })
55
+
56
+ return () => dispose()
57
+ }, [style, colorKey])
58
+
59
+ useLayoutEffect(() => {
60
+ animateCallback?.(toValue.get(), getCurrentColor())
61
+
62
+ const colorStyle = parsedStyles?.[colorKey as keyof UnistylesValues]
63
+
64
+ if (typeof colorStyle !== 'object' || colorStyle === null) {
65
+ return
66
+ }
67
+
68
+ const dispose = services.listener.addListeners([UnistyleDependency.Breakpoints], () => {
69
+ animateCallback?.(toValue.get(), getCurrentColor())
70
+ })
71
+
72
+ return () => dispose()
73
+ }, [style, colorKey])
74
+
75
+ useEffect(() => () => dummyDiv.remove(), [])
76
+
77
+ return {
78
+ fromValue,
79
+ toValue
80
+ }
81
+ }