This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts.git


The following commit(s) were added to refs/heads/master by this push:
     new 33b437d7b Add nullables to OptionDataValue
     new a51f449fd Merge pull request #19111 from avin-kavish/patch-1
33b437d7b is described below

commit 33b437d7b6bf835b0171a9728bb3a8652348a790
Author: Avin <48435155+avin-kav...@users.noreply.github.com>
AuthorDate: Wed Sep 13 10:35:30 2023 +0530

    Add nullables to OptionDataValue
---
 src/util/types.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/util/types.ts b/src/util/types.ts
index c15e8c263..337f6ddc3 100644
--- a/src/util/types.ts
+++ b/src/util/types.ts
@@ -637,7 +637,7 @@ export interface GraphEdgeItemObject<
      */
     target?: string | number
 }
-export type OptionDataValue = string | number | Date;
+export type OptionDataValue = string | number | Date | null | undefined;
 
 export type OptionDataValueNumeric = number | '-';
 export type OptionDataValueCategory = string;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org

Reply via email to