diff --git a/src/components/inline-calendar/metas.yml b/src/components/inline-calendar/metas.yml
index 60c9dfb62..ae48ff908 100755
--- a/src/components/inline-calendar/metas.yml
+++ b/src/components/inline-calendar/metas.yml
@@ -97,6 +97,11 @@ events:
en: emits when value is changed
zh-CN: 值变化时触发
changes:
+ next:
+ en:
+ - '[feature] support multi select #1446 #1467'
+ zh-CN:
+ - '[feature] 支持多选 #1446 #1467'
v2.4.0:
en:
- '[enhance] re-render when render-month is changed'
@@ -112,11 +117,6 @@ changes:
- '[change] render-function params day => date #1361'
zh-CN:
- '[change] render-function 参数 day => date(在 3.0 版本前不会影响目前使用)#1361'
- v2.3.5:
- en:
- - '[feature] support multi select #1446 #1467'
- zh-CN:
- - '[feature] 支持多选 #1446 #1467'
v2.4.0:
en:
- '[enhance] re-render when render-month is changed'
diff --git a/src/demo_list.json b/src/demo_list.json
index ac52d00c3..461dbf714 100644
--- a/src/demo_list.json
+++ b/src/demo_list.json
@@ -107,5 +107,6 @@
"Drawer",
"DatetimeView",
"InlineXNumber",
- "PopupHeader"
+ "PopupHeader",
+ "InlineCalendarMulti#/demo/inline-calendar-multi"
]
diff --git a/src/demos/InlineCalendarMulti.vue b/src/demos/InlineCalendarMulti.vue
new file mode 100644
index 000000000..b24dbf211
--- /dev/null
+++ b/src/demos/InlineCalendarMulti.vue
@@ -0,0 +1,38 @@
+
+
+
+
+ {{ value }}
+
+ update value
+
+
+
+
+
diff --git a/src/theme.less b/src/theme.less
index 31d40cfdd..6777acd29 100644
--- a/src/theme.less
+++ b/src/theme.less
@@ -28,4 +28,6 @@
@search-cancel-font-color: #FF9900;
-@radio-checked-icon-color: #FF9900;
\ No newline at end of file
+@radio-checked-icon-color: #FF9900;
+
+@calendar-arrow-color: #c0c0c0;
\ No newline at end of file