@frontify/fondue 12.12.3 → 12.12.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.
- package/dist/components/RichTextEditor/Plugins/LinkPlugin/FloatingLink/EditLinkModal/EditModal.es.js +8 -8
- package/dist/components/Tag/Tag.es.js.map +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +15 -0
- package/dist/index.umd.js.map +1 -1
- package/dist/packages/components/style.css +1 -1
- package/dist/packages/tokens/tailwind.config.js +1 -1
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -19950,11 +19950,17 @@ export declare type TabsProps = {
|
|
|
19950
19950
|
minHeight?: `${number}${DimensionUnity}`;
|
|
19951
19951
|
};
|
|
19952
19952
|
|
|
19953
|
+
/**
|
|
19954
|
+
* @deprecated Use the new Tag component from @frontify/fondue/components instead
|
|
19955
|
+
*/
|
|
19953
19956
|
export declare const Tag: {
|
|
19954
19957
|
({ type, label, onClick, size, "data-test-id": dataTestId }: TagProps): JSX_2.Element;
|
|
19955
19958
|
displayName: string;
|
|
19956
19959
|
};
|
|
19957
19960
|
|
|
19961
|
+
/**
|
|
19962
|
+
* @deprecated Use the new Tag component from @frontify/fondue/components instead
|
|
19963
|
+
*/
|
|
19958
19964
|
export declare type TagProps = {
|
|
19959
19965
|
'data-test-id'?: string;
|
|
19960
19966
|
} & (TagPropsUnselected | TagPropsSelected);
|
|
@@ -19973,13 +19979,22 @@ declare type TagPropsUnselected = {
|
|
|
19973
19979
|
size?: TagSize;
|
|
19974
19980
|
};
|
|
19975
19981
|
|
|
19982
|
+
/**
|
|
19983
|
+
* @deprecated Use the new Tag component from @frontify/fondue/components instead
|
|
19984
|
+
*/
|
|
19976
19985
|
export declare enum TagSize {
|
|
19977
19986
|
Small = "Small",
|
|
19978
19987
|
Medium = "Medium"
|
|
19979
19988
|
}
|
|
19980
19989
|
|
|
19990
|
+
/**
|
|
19991
|
+
* @deprecated Use the new Tag component from @frontify/fondue/components instead
|
|
19992
|
+
*/
|
|
19981
19993
|
export declare const tagStyles: Record<TagType, string>;
|
|
19982
19994
|
|
|
19995
|
+
/**
|
|
19996
|
+
* @deprecated Use the new Tag component from @frontify/fondue/components instead
|
|
19997
|
+
*/
|
|
19983
19998
|
export declare enum TagType {
|
|
19984
19999
|
Suggested = "Suggested",
|
|
19985
20000
|
Selected = "Selected",
|