@tamagui/alert-dialog 1.23.3 → 1.24.0
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/package.json +17 -17
- package/types/AlertDialog.d.ts +18 -6
- package/types/AlertDialog.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/alert-dialog",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.24.0",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"types": "./types/index.d.ts",
|
|
6
6
|
"main": "dist/cjs",
|
|
@@ -29,28 +29,28 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@tamagui/animate-presence": "1.
|
|
33
|
-
"@tamagui/aria-hidden": "1.
|
|
34
|
-
"@tamagui/compose-refs": "1.
|
|
35
|
-
"@tamagui/core": "1.
|
|
36
|
-
"@tamagui/create-context": "1.
|
|
37
|
-
"@tamagui/dialog": "1.
|
|
38
|
-
"@tamagui/dismissable": "1.
|
|
39
|
-
"@tamagui/focus-scope": "1.
|
|
40
|
-
"@tamagui/polyfill-dev": "1.
|
|
41
|
-
"@tamagui/popper": "1.
|
|
42
|
-
"@tamagui/portal": "1.
|
|
43
|
-
"@tamagui/remove-scroll": "1.
|
|
44
|
-
"@tamagui/stacks": "1.
|
|
45
|
-
"@tamagui/text": "1.
|
|
46
|
-
"@tamagui/use-controllable-state": "1.
|
|
32
|
+
"@tamagui/animate-presence": "1.24.0",
|
|
33
|
+
"@tamagui/aria-hidden": "1.24.0",
|
|
34
|
+
"@tamagui/compose-refs": "1.24.0",
|
|
35
|
+
"@tamagui/core": "1.24.0",
|
|
36
|
+
"@tamagui/create-context": "1.24.0",
|
|
37
|
+
"@tamagui/dialog": "1.24.0",
|
|
38
|
+
"@tamagui/dismissable": "1.24.0",
|
|
39
|
+
"@tamagui/focus-scope": "1.24.0",
|
|
40
|
+
"@tamagui/polyfill-dev": "1.24.0",
|
|
41
|
+
"@tamagui/popper": "1.24.0",
|
|
42
|
+
"@tamagui/portal": "1.24.0",
|
|
43
|
+
"@tamagui/remove-scroll": "1.24.0",
|
|
44
|
+
"@tamagui/stacks": "1.24.0",
|
|
45
|
+
"@tamagui/text": "1.24.0",
|
|
46
|
+
"@tamagui/use-controllable-state": "1.24.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"react": "*",
|
|
50
50
|
"react-native": "*"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@tamagui/build": "1.
|
|
53
|
+
"@tamagui/build": "1.24.0",
|
|
54
54
|
"react": "^18.2.0",
|
|
55
55
|
"react-native": "^0.71.7"
|
|
56
56
|
},
|
package/types/AlertDialog.d.ts
CHANGED
|
@@ -778,15 +778,21 @@ declare const AlertDialogDescription: React.ForwardRefExoticComponent<((Omit<imp
|
|
|
778
778
|
[x: string]: undefined;
|
|
779
779
|
}>>, "ref">) & React.RefAttributes<TamaguiElement>>;
|
|
780
780
|
type AlertDialogActionProps = DialogCloseProps;
|
|
781
|
-
declare const AlertDialogAction: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
781
|
+
declare const AlertDialogAction: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
782
782
|
readonly fullscreen?: boolean | undefined;
|
|
783
783
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
784
|
-
}
|
|
784
|
+
}, "unstyled"> & {
|
|
785
|
+
readonly unstyled?: boolean | undefined;
|
|
786
|
+
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
785
787
|
readonly fullscreen?: boolean | undefined;
|
|
786
788
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
787
|
-
}
|
|
789
|
+
}, "unstyled"> & {
|
|
790
|
+
readonly unstyled?: boolean | undefined;
|
|
791
|
+
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
788
792
|
readonly fullscreen?: boolean | undefined;
|
|
789
793
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
794
|
+
}, "unstyled"> & {
|
|
795
|
+
readonly unstyled?: boolean | undefined;
|
|
790
796
|
}>> & {
|
|
791
797
|
displayWhenAdapted?: boolean | undefined;
|
|
792
798
|
} & React.RefAttributes<TamaguiElement>>;
|
|
@@ -798,15 +804,21 @@ declare const AlertDialog: React.FC<AlertDialogProps> & {
|
|
|
798
804
|
Portal: React.FC<AlertDialogPortalProps>;
|
|
799
805
|
Overlay: React.ForwardRefExoticComponent<AlertDialogOverlayProps & React.RefAttributes<TamaguiElement>>;
|
|
800
806
|
Content: React.ForwardRefExoticComponent<AlertDialogContentProps & React.RefAttributes<TamaguiElement>>;
|
|
801
|
-
Action: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
807
|
+
Action: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
802
808
|
readonly fullscreen?: boolean | undefined;
|
|
803
809
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
804
|
-
}
|
|
810
|
+
}, "unstyled"> & {
|
|
811
|
+
readonly unstyled?: boolean | undefined;
|
|
812
|
+
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
805
813
|
readonly fullscreen?: boolean | undefined;
|
|
806
814
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
807
|
-
}
|
|
815
|
+
}, "unstyled"> & {
|
|
816
|
+
readonly unstyled?: boolean | undefined;
|
|
817
|
+
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
808
818
|
readonly fullscreen?: boolean | undefined;
|
|
809
819
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
820
|
+
}, "unstyled"> & {
|
|
821
|
+
readonly unstyled?: boolean | undefined;
|
|
810
822
|
}>> & {
|
|
811
823
|
displayWhenAdapted?: boolean | undefined;
|
|
812
824
|
} & React.RefAttributes<TamaguiElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AlertDialog.d.ts","sourceRoot":"","sources":["../src/AlertDialog.tsx"],"names":[],"mappings":"AAIA,OAAO,EAEL,cAAc,EAOf,MAAM,eAAe,CAAA;AAEtB,OAAO,EAGL,gBAAgB,EAEhB,kBAAkB,EAElB,sBAAsB,EAGtB,kBAAkB,EAElB,iBAAiB,EACjB,WAAW,EAEX,gBAAgB,EAEhB,kBAAkB,EAGnB,MAAM,iBAAiB,CAAA;AAGxB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAU9B,QAAA,MAAiC,sBAAsB,+CAErD,CAAA;AAIF,KAAK,gBAAgB,GAAG,WAAW,GAAG;IACpC,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB,CAAA;AAQD,UAAU,uBAAwB,SAAQ,kBAAkB;CAAG;AAM/D,QAAA,MAAM,kBAAkB,gGAgBvB,CAAA;AAUD,UAAU,sBAAuB,SAAQ,iBAAiB;CAAG;AAE7D,QAAA,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CAMvD,CAAA;AAcD,UAAU,uBAAwB,SAAQ,kBAAkB;CAAG;AAE/D,QAAA,MAAM,kBAAkB,gGAQvB,CAAA;AAiBD,UAAU,uBACR,SAAQ,IAAI,CAAC,kBAAkB,EAAE,sBAAsB,GAAG,mBAAmB,CAAC;CAAG;AAEnF,QAAA,MAAM,kBAAkB,gGAiDvB,CAAA;AAUD,KAAK,qBAAqB,GAAG,gBAAgB,CAAA;AAE7C,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mDAMrB,CAAA;AAUD,KAAK,2BAA2B,GAAG,sBAAsB,CAAA;AAEzD,QAAA,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mDAO1B,CAAA;AAUF,KAAK,sBAAsB,GAAG,gBAAgB,CAAA;AAE9C,QAAA,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"AlertDialog.d.ts","sourceRoot":"","sources":["../src/AlertDialog.tsx"],"names":[],"mappings":"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"}
|