From ade32b2e876eb8548df932fa0ab4af740271d833 Mon Sep 17 00:00:00 2001 From: Toni Sevener Date: Tue, 9 Jan 2024 16:30:29 -0600 Subject: [PATCH] Bug fixes after merge --- .../Editors/Common Views/Input Views/WKEditorInputView.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Components/Sources/Components/Components/Editors/Common Views/Input Views/WKEditorInputView.swift b/Components/Sources/Components/Components/Editors/Common Views/Input Views/WKEditorInputView.swift index 9e6fead4fc2..e8a54ec1102 100644 --- a/Components/Sources/Components/Components/Editors/Common Views/Input Views/WKEditorInputView.swift +++ b/Components/Sources/Components/Components/Editors/Common Views/Input Views/WKEditorInputView.swift @@ -6,6 +6,10 @@ protocol WKEditorInputViewDelegate: AnyObject { func didTapBold(isSelected: Bool) func didTapItalics(isSelected: Bool) func didTapTemplate(isSelected: Bool) + func didTapBulletList(isSelected: Bool) + func didTapNumberList(isSelected: Bool) + func didTapIncreaseIndent() + func didTapDecreaseIndent() func didTapStrikethrough(isSelected: Bool) }