Releases: ArnoSaine/is
Releases · ArnoSaine/is
@arnosaine/is@0.2.9
Patch Changes
- e2490f0: Fix children and fallback prop types of components with unknown condition names, e.g. role names
@arnosaine/is@0.2.8
Patch Changes
- a666bea: Add type support for ClientActionFunctionArgs and ClientLoaderFunctionArgs from React Router v7
- d5f39b1: - Cleaner syntax to provide values from the root loader:
return {__is: is.__values /* other loader data */ };- New:
return { ...is /* other loader data */ }; - Deprecation:
is.__valuesand__isproperty in the root loader data. Use...isor__is_values: is.__is_valuesinstead.
- e55e957: Workaround for typing unknown property (condition) names, e.g. role names as boolean props
@arnosaine/is@0.2.7
Patch Changes
- 021eb32: Upgrade to
react-router@^7.0.0
@arnosaine/is@0.2.6
Patch Changes
- 0bfb726: Fix interpretation of array condition type, for example:
["foo", "bar"]when value type is"foo" | "bar"
@arnosaine/is@0.2.5
Patch Changes
- 921033b: Update
react-routerversion range from^6.23.1to^6.0.0
@arnosaine/is@0.2.4
Patch Changes
- 435b0e0: Add support for
ClientActionFunctionArgs&ClientLoaderFunctionArgstypes
@arnosaine/is@0.2.3
Patch Changes
- d6a965e: Add package.json keywords
@arnosaine/is@0.2.2
Patch Changes
-
0b9bb54: Fix React Router compatibility
- Change dependency from
@remix-run/reacttoreact-router
- Change dependency from
@arnosaine/is@0.2.1
Patch Changes
- d666c03: Add
toBooleanValuesutility
@arnosaine/is@0.2.0
Minor Changes
- ebdd4bd: Change the default method to match array type values and conditions from
"every"to"some".