@databricks/design-system 2.0.6 → 2.0.7
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/AGENTS.md +239 -166
- package/CHANGELOG.md +28 -0
- package/dist/{RHFControlledTypeaheadComboboxV2-Ct9x3rC1.js → RHFControlledTypeaheadComboboxV2-nSSYj16I.js} +3 -3
- package/dist/{RHFControlledTypeaheadComboboxV2-Ct9x3rC1.js.map → RHFControlledTypeaheadComboboxV2-nSSYj16I.js.map} +1 -1
- package/dist/{WizardStepContentWrapper-6YTjeEaA.js → WizardStepContentWrapper-bbh_CoIf.js} +195 -257
- package/dist/WizardStepContentWrapper-bbh_CoIf.js.map +1 -0
- package/dist/dubois-colors.less +1 -1
- package/dist/icon-metadata.json +5 -0
- package/dist/{index-DiRpSwH2.js → index-CUCuUviS.js} +119 -109
- package/dist/index-CUCuUviS.js.map +1 -0
- package/dist/index-dark.css +135 -1
- package/dist/index-dark.mitigated.css +163 -16
- package/dist/index.css +182 -28
- package/dist/index.js +2 -2
- package/dist/index.mitigated.css +210 -43
- package/dist/patterns.js +1 -1
- package/dist-types/design-system/Alert/Alert.d.ts +21 -4
- package/dist-types/design-system/Button/Button.d.ts +2 -1
- package/dist-types/design-system/Icon/__generated/icons/SlidesIcon.d.ts +4 -0
- package/dist-types/design-system/Icon/__generated/icons/index.d.ts +1 -0
- package/dist-types/design-system/TypeaheadCombobox/TypeaheadComboboxControls.d.ts +0 -2
- package/dist-types/design-system/index.d.ts +0 -1
- package/dist-types/design-system/utils/safex.d.ts +4 -2
- package/dist-types/theme/generalVariables.d.ts +0 -1
- package/package.json +5 -4
- package/setup.mjs +586 -0
- package/dist/WizardStepContentWrapper-6YTjeEaA.js.map +0 -1
- package/dist/index-DiRpSwH2.js.map +0 -1
- package/dist-types/design-system/LegacyTooltip/LegacyTooltip.d.ts +0 -47
- package/dist-types/design-system/LegacyTooltip/index.d.ts +0 -1
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import type { TooltipProps as AntDTooltipProps } from "antd";
|
|
2
|
-
import React from "react";
|
|
3
|
-
import type { HTMLDataAttributes } from "../types";
|
|
4
|
-
/**
|
|
5
|
-
* `LegacyTooltip` is deprecated in favor of the new `Tooltip` component
|
|
6
|
-
* @deprecated
|
|
7
|
-
*/
|
|
8
|
-
export interface LegacyTooltipProps extends HTMLDataAttributes {
|
|
9
|
-
/**
|
|
10
|
-
* The element with which the tooltip should be associated.
|
|
11
|
-
*/
|
|
12
|
-
children: React.ReactNode;
|
|
13
|
-
/**
|
|
14
|
-
* Plain text that will appear within the tooltip. Links and formatted content should not be use. However, we allow
|
|
15
|
-
* any React element to be passed in here, rather than just a string, to allow for i18n formatting components.
|
|
16
|
-
*/
|
|
17
|
-
title: React.ReactNode;
|
|
18
|
-
/**
|
|
19
|
-
* Value that determines where the tooltip will be positioned relative to the associated element.
|
|
20
|
-
*/
|
|
21
|
-
placement?: AntDTooltipProps["placement"];
|
|
22
|
-
/**
|
|
23
|
-
* Escape hatch to allow passing props directly to the underlying Ant `Tooltip` component.
|
|
24
|
-
*/
|
|
25
|
-
dangerouslySetAntdProps?: Partial<AntDTooltipProps>;
|
|
26
|
-
/**
|
|
27
|
-
* ID used to refer to this element in unit tests.
|
|
28
|
-
*/
|
|
29
|
-
dataTestId?: string;
|
|
30
|
-
/**
|
|
31
|
-
* Prop that forces the tooltip's arrow to be centered on the target element
|
|
32
|
-
*/
|
|
33
|
-
arrowPointAtCenter?: boolean;
|
|
34
|
-
/**
|
|
35
|
-
* Toggle wrapper live region off
|
|
36
|
-
*/
|
|
37
|
-
silenceScreenReader?: boolean;
|
|
38
|
-
/**
|
|
39
|
-
* Toggles screen readers reading the tooltip content as the label for the hovered/focused element
|
|
40
|
-
*/
|
|
41
|
-
useAsLabel?: boolean;
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* `LegacyTooltip` is deprecated in favor of the new `Tooltip` component
|
|
45
|
-
* @deprecated
|
|
46
|
-
*/
|
|
47
|
-
export declare const LegacyTooltip: React.FC<React.PropsWithChildren<LegacyTooltipProps>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./LegacyTooltip";
|