enwawa-ui 4.1.40 → 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 +16 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +17 -10
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +17 -10
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -4318,6 +4318,12 @@ export interface TmMapPageProps<FormType = any> {
|
|
|
4318
4318
|
* legend button label
|
|
4319
4319
|
*/
|
|
4320
4320
|
legendButtonLabel?: string;
|
|
4321
|
+
/**
|
|
4322
|
+
* extra buttons rendered in the top-right of the map header,
|
|
4323
|
+
* before the legend button. Useful for page-specific toggles
|
|
4324
|
+
* (e.g. "wide auto-view" mode in the LiveMap).
|
|
4325
|
+
*/
|
|
4326
|
+
extraHeaderButtons?: React.ReactNode;
|
|
4321
4327
|
/**
|
|
4322
4328
|
* drawer config
|
|
4323
4329
|
*/
|
|
@@ -7332,6 +7338,16 @@ export interface AtTagProps {
|
|
|
7332
7338
|
* Callback executed when tag is closed
|
|
7333
7339
|
*/
|
|
7334
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;
|
|
7335
7351
|
/**
|
|
7336
7352
|
* Tag text
|
|
7337
7353
|
*/
|