@tamagui/image 1.0.1-rc.1.2 → 1.0.1-rc.1.4

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 (2) hide show
  1. package/package.json +3 -3
  2. package/types/Image.d.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/image",
3
- "version": "1.0.1-rc.1.2",
3
+ "version": "1.0.1-rc.1.4",
4
4
  "sideEffects": [
5
5
  "*.css"
6
6
  ],
@@ -23,14 +23,14 @@
23
23
  "clean:build": "tamagui-build clean:build"
24
24
  },
25
25
  "dependencies": {
26
- "@tamagui/core": "^1.0.1-rc.1.2"
26
+ "@tamagui/core": "^1.0.1-rc.1.4"
27
27
  },
28
28
  "peerDependencies": {
29
29
  "react": ">=18",
30
30
  "react-native": "*"
31
31
  },
32
32
  "devDependencies": {
33
- "@tamagui/build": "^1.0.1-rc.1.2",
33
+ "@tamagui/build": "^1.0.1-rc.1.4",
34
34
  "react": ">=18",
35
35
  "react-native": "*"
36
36
  },
package/types/Image.d.ts CHANGED
@@ -9,13 +9,13 @@ declare const StyledImage: import("@tamagui/core").TamaguiComponent<(import("rea
9
9
  }>>), import("@tamagui/core").TamaguiElement, import("react-native").ImageProps & Omit<StackProps, keyof import("react-native").ImageProps>, {} | {
10
10
  [x: string]: undefined;
11
11
  }>;
12
- declare type StyledImageProps = GetProps<typeof StyledImage>;
13
- declare type BaseProps = Omit<StyledImageProps, 'source' | 'width' | 'height' | 'style' | 'onLayout'> & {
12
+ type StyledImageProps = GetProps<typeof StyledImage>;
13
+ type BaseProps = Omit<StyledImageProps, 'source' | 'width' | 'height' | 'style' | 'onLayout'> & {
14
14
  width: number | string;
15
15
  height: number | string;
16
16
  src: string | StyledImageProps['source'];
17
17
  };
18
- export declare type ImageProps = BaseProps & Omit<StackProps, keyof BaseProps>;
18
+ export type ImageProps = BaseProps & Omit<StackProps, keyof BaseProps>;
19
19
  export declare const Image: React.FC<ImageProps>;
20
20
  export {};
21
21
  //# sourceMappingURL=Image.d.ts.map