@7shifts/sous-chef 3.87.0-beta.1 → 3.87.0-beta.2
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/dist/foundation/tokens/color/color-constants.d.ts +3 -0
- package/dist/foundation/tokens/color/color-types.d.ts +1 -1
- package/dist/index.css +58 -126
- package/dist/index.css.map +1 -1
- package/dist/index.js +7 -9
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -9
- package/dist/index.modern.js.map +1 -1
- package/dist/overlay/Tooltip/Tooltip.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Placement, TooltipTheme } from './types';
|
|
3
3
|
type Props = {
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated use the default black theme instead (no need to specify it explicitly). The white theme will be removed in future releases.
|
|
6
|
+
*/
|
|
4
7
|
theme?: TooltipTheme;
|
|
5
8
|
/** It defines the overlay position on the screen. The component might not use the value defined in here as it will place the tooltip on the best place based on the anchor position on the screen. */
|
|
6
9
|
placement?: Placement;
|