enwawa-ui 4.1.41 → 4.1.42
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/lib/index.d.ts +10 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +3 -1
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +3 -1
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -7338,6 +7338,16 @@ export interface AtTagProps {
|
|
|
7338
7338
|
* Callback executed when tag is closed
|
|
7339
7339
|
*/
|
|
7340
7340
|
onClose?: (e: React.MouseEvent<HTMLElement>) => void;
|
|
7341
|
+
/**
|
|
7342
|
+
* Inline styles applied to the underlying Tag. Useful for overriding the
|
|
7343
|
+
* text color when passing a light hex via `color` (Ant Design defaults to
|
|
7344
|
+
* white text on custom hex backgrounds).
|
|
7345
|
+
*/
|
|
7346
|
+
style?: React.CSSProperties;
|
|
7347
|
+
/**
|
|
7348
|
+
* Class name applied to the underlying Tag.
|
|
7349
|
+
*/
|
|
7350
|
+
className?: string;
|
|
7341
7351
|
/**
|
|
7342
7352
|
* Tag text
|
|
7343
7353
|
*/
|