@tamagui/slider 1.0.1-beta.132 → 1.0.1-beta.133

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/slider",
3
- "version": "1.0.1-beta.132",
3
+ "version": "1.0.1-beta.133",
4
4
  "sideEffects": [
5
5
  "*.css"
6
6
  ],
@@ -21,12 +21,12 @@
21
21
  "clean:build": "tamagui-build clean:build"
22
22
  },
23
23
  "dependencies": {
24
- "@tamagui/compose-refs": "^1.0.1-beta.132",
25
- "@tamagui/core": "^1.0.1-beta.132",
26
- "@tamagui/create-context": "^1.0.1-beta.132",
27
- "@tamagui/stacks": "^1.0.1-beta.132",
28
- "@tamagui/use-controllable-state": "^1.0.1-beta.132",
29
- "@tamagui/use-direction": "^1.0.1-beta.132"
24
+ "@tamagui/compose-refs": "^1.0.1-beta.133",
25
+ "@tamagui/core": "^1.0.1-beta.133",
26
+ "@tamagui/create-context": "^1.0.1-beta.133",
27
+ "@tamagui/stacks": "^1.0.1-beta.133",
28
+ "@tamagui/use-controllable-state": "^1.0.1-beta.133",
29
+ "@tamagui/use-direction": "^1.0.1-beta.133"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "react": "*",
@@ -34,7 +34,7 @@
34
34
  "react-native": "*"
35
35
  },
36
36
  "devDependencies": {
37
- "@tamagui/build": "^1.0.1-beta.132",
37
+ "@tamagui/build": "^1.0.1-beta.133",
38
38
  "@types/react-native": "^0.69.2",
39
39
  "react": "*",
40
40
  "react-dom": "*",
package/types/Slider.d.ts CHANGED
@@ -186,7 +186,7 @@ export declare const SliderThumbFrame: import("@tamagui/core").TamaguiComponent<
186
186
  elevate?: boolean | undefined;
187
187
  bordered?: number | boolean | undefined;
188
188
  transparent?: boolean | undefined;
189
- chromeless?: boolean | undefined;
189
+ chromeless?: boolean | "all" | undefined;
190
190
  }, "size"> & {
191
191
  size?: SizeTokens | undefined;
192
192
  } & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
@@ -204,7 +204,7 @@ export declare const SliderThumbFrame: import("@tamagui/core").TamaguiComponent<
204
204
  elevate?: boolean | undefined;
205
205
  bordered?: number | boolean | undefined;
206
206
  transparent?: boolean | undefined;
207
- chromeless?: boolean | undefined;
207
+ chromeless?: boolean | "all" | undefined;
208
208
  }, "size"> & {
209
209
  size?: SizeTokens | undefined;
210
210
  }>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
@@ -222,7 +222,7 @@ export declare const SliderThumbFrame: import("@tamagui/core").TamaguiComponent<
222
222
  elevate?: boolean | undefined;
223
223
  bordered?: number | boolean | undefined;
224
224
  transparent?: boolean | undefined;
225
- chromeless?: boolean | undefined;
225
+ chromeless?: boolean | "all" | undefined;
226
226
  }, "size"> & {
227
227
  size?: SizeTokens | undefined;
228
228
  }>>, any, import("@tamagui/core").StackPropsBase, {
@@ -240,7 +240,7 @@ export declare const SliderThumbFrame: import("@tamagui/core").TamaguiComponent<
240
240
  elevate?: boolean | undefined;
241
241
  bordered?: number | boolean | undefined;
242
242
  transparent?: boolean | undefined;
243
- chromeless?: boolean | undefined;
243
+ chromeless?: boolean | "all" | undefined;
244
244
  } & {
245
245
  size?: SizeTokens | undefined;
246
246
  }>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { SizeTokens } from '@tamagui/core';
3
2
  import { Direction, SliderContextValue } from './types';
4
3
  export declare const SLIDER_NAME = "Slider";