From 7b42dbc0f610f733857dde5b39ba19778bfea0ae Mon Sep 17 00:00:00 2001 From: victor Date: Sun, 18 Dec 2022 14:56:00 +0400 Subject: [PATCH] refactor: removed timeline button --- docs/components/timeline.md | 15 +++------------ .../timeline/examples/TimelineExample.vue | 5 +---- .../examples/TimelineHorizontalExample.vue | 5 +---- .../examples/TimelineWithIconsExample.vue | 5 +---- src/components/Timeline/Timeline.vue | 6 ++++-- src/components/Timeline/TimelineButton.vue | 5 ----- src/index.ts | 1 - 7 files changed, 10 insertions(+), 32 deletions(-) delete mode 100644 src/components/Timeline/TimelineButton.vue diff --git a/docs/components/timeline.md b/docs/components/timeline.md index 9ef6f68..bc66fa9 100644 --- a/docs/components/timeline.md +++ b/docs/components/timeline.md @@ -11,7 +11,7 @@ import TimelineHorizontalExample from './timeline/examples/TimelineHorizontalExa ```vue diff --git a/src/components/Timeline/Timeline.vue b/src/components/Timeline/Timeline.vue index e5344e5..f6a803f 100644 --- a/src/components/Timeline/Timeline.vue +++ b/src/components/Timeline/Timeline.vue @@ -1,13 +1,13 @@ diff --git a/src/components/Timeline/TimelineButton.vue b/src/components/Timeline/TimelineButton.vue deleted file mode 100644 index 5a48a33..0000000 --- a/src/components/Timeline/TimelineButton.vue +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/src/index.ts b/src/index.ts index a40897f..7d76c84 100644 --- a/src/index.ts +++ b/src/index.ts @@ -39,7 +39,6 @@ export { default as TimelineContent } from './components/Timeline/TimelineConten export { default as TimelineTime } from './components/Timeline/TimelineTime.vue' export { default as TimelineTitle } from './components/Timeline/TimelineTitle.vue' export { default as TimelineBody } from './components/Timeline/TimelineBody.vue' -export { default as TimelineButton } from './components/Timeline/TimelineButton.vue' export { default as Toast } from './components/Toast/Toast.vue' export { default as ToastProvider } from './components/Toast/components/ToastProvider/ToastProvider.vue' export { default as Tooltip } from './components/Tooltip/Tooltip.vue'