@saas-ui/react 3.0.0-alpha.18 → 3.0.0-alpha.19
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +12 -0
- package/dist/chunk-QVFJV6HJ.js +8 -0
- package/dist/{chunk-ULAJ3JEO.js → chunk-S5J6REMC.js} +9 -1
- package/dist/components/card/index.cjs +31 -0
- package/dist/components/card/index.d.cts +1 -0
- package/dist/components/card/index.d.ts +1 -0
- package/dist/components/card/index.js +8 -0
- package/dist/components/command/index.d.cts +2 -5
- package/dist/components/command/index.d.ts +2 -5
- package/dist/components/grid-list/index.d.cts +65 -3
- package/dist/components/grid-list/index.d.ts +65 -3
- package/dist/components/icon-button/index.cjs +31 -0
- package/dist/components/icon-button/index.d.cts +1 -0
- package/dist/components/icon-button/index.d.ts +1 -0
- package/dist/components/icon-button/index.js +8 -0
- package/dist/components/number-input/index.cjs +9 -1
- package/dist/components/number-input/index.js +1 -1
- package/dist/index.cjs +460 -310
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +264 -123
- package/dist/types-DnFoUudY.d.cts +10 -0
- package/dist/types-DnFoUudY.d.ts +10 -0
- package/package.json +1 -1
@@ -0,0 +1,10 @@
|
|
1
|
+
import { SlotRecipeProps as SlotRecipeProps$1, RecipeProps as RecipeProps$1, RecipeDefinition } from '@chakra-ui/react';
|
2
|
+
|
3
|
+
type RecipeProps<T, DefaultRecipe> = RecipeProps$1<T> extends {
|
4
|
+
recipe?: RecipeDefinition;
|
5
|
+
} ? RecipeProps$1<T> & DefaultRecipe : RecipeProps$1<T>;
|
6
|
+
type SlotRecipeProps<T, DefaultSlotRecipe> = SlotRecipeProps$1<T> extends {
|
7
|
+
variant?: any;
|
8
|
+
} ? SlotRecipeProps$1<T> : SlotRecipeProps$1<T> & DefaultSlotRecipe;
|
9
|
+
|
10
|
+
export type { RecipeProps as R, SlotRecipeProps as S };
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { SlotRecipeProps as SlotRecipeProps$1, RecipeProps as RecipeProps$1, RecipeDefinition } from '@chakra-ui/react';
|
2
|
+
|
3
|
+
type RecipeProps<T, DefaultRecipe> = RecipeProps$1<T> extends {
|
4
|
+
recipe?: RecipeDefinition;
|
5
|
+
} ? RecipeProps$1<T> & DefaultRecipe : RecipeProps$1<T>;
|
6
|
+
type SlotRecipeProps<T, DefaultSlotRecipe> = SlotRecipeProps$1<T> extends {
|
7
|
+
variant?: any;
|
8
|
+
} ? SlotRecipeProps$1<T> : SlotRecipeProps$1<T> & DefaultSlotRecipe;
|
9
|
+
|
10
|
+
export type { RecipeProps as R, SlotRecipeProps as S };
|