@flogeez/angular-tiptap-editor 0.3.2 → 0.3.4
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/README.md +459 -284
- package/fesm2022/flogeez-angular-tiptap-editor.mjs +696 -710
- package/fesm2022/flogeez-angular-tiptap-editor.mjs.map +1 -1
- package/index.d.ts +1 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -695,9 +695,8 @@ declare const SLASH_COMMAND_KEYS: readonly ["heading1", "heading2", "heading3",
|
|
|
695
695
|
declare function createI18nSlashCommands(i18nService: TiptapI18nService): SlashCommandItem[];
|
|
696
696
|
/**
|
|
697
697
|
* Fonction utilitaire pour filtrer les slash commands selon les commandes actives
|
|
698
|
-
* Utilise le service i18n injecté en interne
|
|
699
698
|
*/
|
|
700
|
-
declare function filterSlashCommands(activeCommands: Set<string
|
|
699
|
+
declare function filterSlashCommands(activeCommands: Set<string>, i18nService: TiptapI18nService): SlashCommandItem[];
|
|
701
700
|
|
|
702
701
|
type HeightConfig = {
|
|
703
702
|
minHeight?: number;
|
package/package.json
CHANGED