@kaizen/components 2.0.4 → 2.0.6
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/dist/cjs/src/RichTextEditor/RichTextEditor/RichTextEditor.cjs +9 -24
- package/dist/cjs/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss.cjs +1 -1
- package/dist/cjs/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.cjs +51 -0
- package/dist/cjs/src/RichTextEditor/RichTextEditor/utils/controlmap.cjs +44 -10
- package/dist/cjs/src/SingleSelect/SingleSelect.cjs +2 -0
- package/dist/cjs/src/Tile/InformationTile/InformationTile.cjs +2 -0
- package/dist/cjs/src/Tile/MultiActionTile/MultiActionTile.cjs +2 -0
- package/dist/cjs/src/Tile/TileGrid/TileGrid.cjs +2 -0
- package/dist/esm/src/RichTextEditor/RichTextEditor/RichTextEditor.mjs +10 -25
- package/dist/esm/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss.mjs +1 -1
- package/dist/esm/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.mjs +43 -0
- package/dist/esm/src/RichTextEditor/RichTextEditor/utils/controlmap.mjs +44 -10
- package/dist/esm/src/SingleSelect/SingleSelect.mjs +2 -0
- package/dist/esm/src/Tile/InformationTile/InformationTile.mjs +2 -0
- package/dist/esm/src/Tile/MultiActionTile/MultiActionTile.mjs +2 -0
- package/dist/esm/src/Tile/TileGrid/TileGrid.mjs +2 -0
- package/dist/styles.css +7 -16
- package/dist/types/RichTextEditor/RichTextEditor/RichTextEditor.d.ts +2 -2
- package/dist/types/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.d.ts +12 -0
- package/dist/types/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/index.d.ts +1 -0
- package/dist/types/RichTextEditor/RichTextEditor/utils/controlmap.d.ts +1 -1
- package/dist/types/SingleSelect/SingleSelect.d.ts +2 -0
- package/dist/types/Tile/InformationTile/InformationTile.d.ts +2 -0
- package/dist/types/Tile/MultiActionTile/MultiActionTile.d.ts +2 -0
- package/dist/types/Tile/TileGrid/TileGrid.d.ts +2 -0
- package/locales/ar.json +37 -1
- package/locales/bg.json +37 -1
- package/locales/cs.json +37 -1
- package/locales/cy.json +37 -1
- package/locales/da.json +37 -1
- package/locales/de.json +37 -1
- package/locales/el.json +37 -1
- package/locales/en-GB.json +37 -1
- package/locales/en.json +37 -1
- package/locales/es-419.json +37 -1
- package/locales/es.json +37 -1
- package/locales/et.json +37 -1
- package/locales/fi.json +37 -1
- package/locales/fr-CA.json +37 -1
- package/locales/fr.json +37 -1
- package/locales/he.json +37 -1
- package/locales/hi.json +37 -1
- package/locales/ht.json +37 -1
- package/locales/hu.json +37 -1
- package/locales/id.json +37 -1
- package/locales/it.json +37 -1
- package/locales/ja.json +37 -1
- package/locales/km-KH.json +37 -1
- package/locales/ko.json +37 -1
- package/locales/lt.json +37 -1
- package/locales/lv.json +37 -1
- package/locales/mi.json +37 -1
- package/locales/ms.json +37 -1
- package/locales/nb.json +37 -1
- package/locales/nl.json +37 -1
- package/locales/pl.json +37 -1
- package/locales/pt-BR.json +37 -1
- package/locales/pt.json +37 -1
- package/locales/ro.json +37 -1
- package/locales/ru.json +37 -1
- package/locales/si-LK.json +37 -1
- package/locales/sk.json +37 -1
- package/locales/sr.json +37 -1
- package/locales/sv.json +37 -1
- package/locales/th.json +37 -1
- package/locales/tl.json +37 -1
- package/locales/tr.json +37 -1
- package/locales/uk.json +37 -1
- package/locales/vi.json +37 -1
- package/locales/zh-TW.json +37 -1
- package/locales/zh.json +37 -1
- package/package.json +1 -1
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss +8 -20
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.spec.tsx +4 -4
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.tsx +12 -30
- package/src/RichTextEditor/RichTextEditor/subcomponents/Toolbar/Toolbar.module.scss +0 -1
- package/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.tsx +62 -0
- package/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/index.ts +1 -0
- package/src/RichTextEditor/RichTextEditor/utils/controlmap.tsx +46 -9
- package/src/RichTextEditor/utils/commands/fixtures/data.json +1 -1
- package/src/RichTextEditor/utils/commands/listIsActive.spec.ts +2 -2
- package/src/SingleSelect/SingleSelect.tsx +2 -0
- package/src/SingleSelect/_docs/SingleSelect--api-specification.mdx +4 -2
- package/src/SingleSelect/_docs/SingleSelect--usage-guidelines.mdx +10 -2
- package/src/SingleSelect/_docs/SingleSelect.stickersheet.stories.tsx +1 -1
- package/src/SingleSelect/_docs/SingleSelect.stories.tsx +1 -1
- package/src/Tile/InformationTile/InformationTile.tsx +2 -0
- package/src/Tile/InformationTile/_docs/InformationTile.mdx +3 -1
- package/src/Tile/InformationTile/_docs/InformationTile.stickersheet.stories.tsx +1 -1
- package/src/Tile/InformationTile/_docs/InformationTile.stories.tsx +1 -1
- package/src/Tile/MultiActionTile/MultiActionTile.tsx +2 -0
- package/src/Tile/MultiActionTile/_docs/MultiActionTile.mdx +3 -1
- package/src/Tile/MultiActionTile/_docs/MultiActionTile.stickersheet.stories.tsx +1 -1
- package/src/Tile/MultiActionTile/_docs/MultiActionTile.stories.tsx +1 -1
- package/src/Tile/TileGrid/TileGrid.tsx +2 -0
- package/src/Tile/TileGrid/_docs/TileGrid.mdx +3 -1
- package/src/Tile/TileGrid/_docs/TileGrid.stickersheet.stories.tsx +1 -1
- package/src/Tile/TileGrid/_docs/TileGrid.stories.tsx +1 -1
- package/src/__alpha__/SingleSelect/subcomponents/ListItem/ListItem.module.css +0 -4
package/locales/sv.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "Rensa sökning"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "Fetstil"
|
|
91
|
+
},
|
|
92
|
+
"kz.rte.bullet_list" : {
|
|
93
|
+
"description" : "Label for the \"Bullet list\" button in a text editor",
|
|
94
|
+
"message" : "Punktlista"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "Minska indrag"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "Öka indrag"
|
|
103
|
+
},
|
|
104
|
+
"kz.rte.italic" : {
|
|
105
|
+
"description" : "Label for the \"Italic\" button in a text editor",
|
|
106
|
+
"message" : "Kursiv"
|
|
107
|
+
},
|
|
108
|
+
"kz.rte.link" : {
|
|
109
|
+
"description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
|
|
110
|
+
"message" : "Länk"
|
|
111
|
+
},
|
|
112
|
+
"kz.rte.numbered_list" : {
|
|
113
|
+
"description" : "Label for the \"Numbered list\" button in a text editor",
|
|
114
|
+
"message" : "Numrerad lista"
|
|
115
|
+
},
|
|
116
|
+
"kz.rte.toolbar.aria_label" : {
|
|
117
|
+
"description" : "Label for the text formatting toolbar in a Rich Text Editor",
|
|
118
|
+
"message" : "Textformatering"
|
|
119
|
+
},
|
|
120
|
+
"kz.rte.underline" : {
|
|
121
|
+
"description" : "Label for the \"Underline\" button in a text editor",
|
|
122
|
+
"message" : "Understrykning"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "kontakta supporten"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "Ytterligare åtgärder"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|
package/locales/th.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "ล้างการค้นหา"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "ตัวหนา"
|
|
91
|
+
},
|
|
92
|
+
"kz.rte.bullet_list" : {
|
|
93
|
+
"description" : "Label for the \"Bullet list\" button in a text editor",
|
|
94
|
+
"message" : "รายการหัวข้อย่อย"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "ลดการเยื้อง"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "เพิ่มการเยื้อง"
|
|
103
|
+
},
|
|
104
|
+
"kz.rte.italic" : {
|
|
105
|
+
"description" : "Label for the \"Italic\" button in a text editor",
|
|
106
|
+
"message" : "ตัวเอียง"
|
|
107
|
+
},
|
|
108
|
+
"kz.rte.link" : {
|
|
109
|
+
"description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
|
|
110
|
+
"message" : "ลิงก์"
|
|
111
|
+
},
|
|
112
|
+
"kz.rte.numbered_list" : {
|
|
113
|
+
"description" : "Label for the \"Numbered list\" button in a text editor",
|
|
114
|
+
"message" : "รายการที่มีหมายเลข"
|
|
115
|
+
},
|
|
116
|
+
"kz.rte.toolbar.aria_label" : {
|
|
117
|
+
"description" : "Label for the text formatting toolbar in a Rich Text Editor",
|
|
118
|
+
"message" : "การจัดรูปแบบข้อความ"
|
|
119
|
+
},
|
|
120
|
+
"kz.rte.underline" : {
|
|
121
|
+
"description" : "Label for the \"Underline\" button in a text editor",
|
|
122
|
+
"message" : "ขีดเส้นใต้"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "ติดต่อฝ่ายสนับสนุน"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "การดำเนินการเพิ่มเติม"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|
package/locales/tl.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "I-clear ang paghahanap"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "Bold"
|
|
91
|
+
},
|
|
92
|
+
"kz.rte.bullet_list" : {
|
|
93
|
+
"description" : "Label for the \"Bullet list\" button in a text editor",
|
|
94
|
+
"message" : "Naka-bullet na listahan"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "Bawasan ang indent"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "Dagdagan ang indent"
|
|
103
|
+
},
|
|
104
|
+
"kz.rte.italic" : {
|
|
105
|
+
"description" : "Label for the \"Italic\" button in a text editor",
|
|
106
|
+
"message" : "Italic"
|
|
107
|
+
},
|
|
108
|
+
"kz.rte.link" : {
|
|
109
|
+
"description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
|
|
110
|
+
"message" : "Link"
|
|
111
|
+
},
|
|
112
|
+
"kz.rte.numbered_list" : {
|
|
113
|
+
"description" : "Label for the \"Numbered list\" button in a text editor",
|
|
114
|
+
"message" : "De-numerong listahan"
|
|
115
|
+
},
|
|
116
|
+
"kz.rte.toolbar.aria_label" : {
|
|
117
|
+
"description" : "Label for the text formatting toolbar in a Rich Text Editor",
|
|
118
|
+
"message" : "Pag-format ng text"
|
|
119
|
+
},
|
|
120
|
+
"kz.rte.underline" : {
|
|
121
|
+
"description" : "Label for the \"Underline\" button in a text editor",
|
|
122
|
+
"message" : "Underline"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "makipag-ugnayan sa suporta"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "Karagdagang mga aksiyon"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|
package/locales/tr.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "Aramayı temizle"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "Kalın"
|
|
91
|
+
},
|
|
92
|
+
"kz.rte.bullet_list" : {
|
|
93
|
+
"description" : "Label for the \"Bullet list\" button in a text editor",
|
|
94
|
+
"message" : "Madde listesi"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "Girintiyi azaltın"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "Girintiyi artırın"
|
|
103
|
+
},
|
|
104
|
+
"kz.rte.italic" : {
|
|
105
|
+
"description" : "Label for the \"Italic\" button in a text editor",
|
|
106
|
+
"message" : "İtalik"
|
|
107
|
+
},
|
|
108
|
+
"kz.rte.link" : {
|
|
109
|
+
"description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
|
|
110
|
+
"message" : "Bağlantı"
|
|
111
|
+
},
|
|
112
|
+
"kz.rte.numbered_list" : {
|
|
113
|
+
"description" : "Label for the \"Numbered list\" button in a text editor",
|
|
114
|
+
"message" : "Numaralı liste"
|
|
115
|
+
},
|
|
116
|
+
"kz.rte.toolbar.aria_label" : {
|
|
117
|
+
"description" : "Label for the text formatting toolbar in a Rich Text Editor",
|
|
118
|
+
"message" : "Metin biçimlendirme"
|
|
119
|
+
},
|
|
120
|
+
"kz.rte.underline" : {
|
|
121
|
+
"description" : "Label for the \"Underline\" button in a text editor",
|
|
122
|
+
"message" : "Altını çizin"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "sorun devam ederse"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "Ek eylemler"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|
package/locales/uk.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "Очистити пошук"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "Жирний"
|
|
91
|
+
},
|
|
92
|
+
"kz.rte.bullet_list" : {
|
|
93
|
+
"description" : "Label for the \"Bullet list\" button in a text editor",
|
|
94
|
+
"message" : "Маркований список"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "Зменшити відступ"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "Збільшити відступ"
|
|
103
|
+
},
|
|
104
|
+
"kz.rte.italic" : {
|
|
105
|
+
"description" : "Label for the \"Italic\" button in a text editor",
|
|
106
|
+
"message" : "Курсив"
|
|
107
|
+
},
|
|
108
|
+
"kz.rte.link" : {
|
|
109
|
+
"description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
|
|
110
|
+
"message" : "Посилання"
|
|
111
|
+
},
|
|
112
|
+
"kz.rte.numbered_list" : {
|
|
113
|
+
"description" : "Label for the \"Numbered list\" button in a text editor",
|
|
114
|
+
"message" : "Нумерований список"
|
|
115
|
+
},
|
|
116
|
+
"kz.rte.toolbar.aria_label" : {
|
|
117
|
+
"description" : "Label for the text formatting toolbar in a Rich Text Editor",
|
|
118
|
+
"message" : "Форматування тексту"
|
|
119
|
+
},
|
|
120
|
+
"kz.rte.underline" : {
|
|
121
|
+
"description" : "Label for the \"Underline\" button in a text editor",
|
|
122
|
+
"message" : "Підкреслити"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "зверніться до служби підтримки,"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "Додаткові дії"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|
package/locales/vi.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "Tìm kiếm rõ ràng"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "Đậm"
|
|
91
|
+
},
|
|
92
|
+
"kz.rte.bullet_list" : {
|
|
93
|
+
"description" : "Label for the \"Bullet list\" button in a text editor",
|
|
94
|
+
"message" : "Danh sách có dấu đầu dòng"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "Giảm thụt lề"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "Tăng thụt lề"
|
|
103
|
+
},
|
|
104
|
+
"kz.rte.italic" : {
|
|
105
|
+
"description" : "Label for the \"Italic\" button in a text editor",
|
|
106
|
+
"message" : "Nghiêng"
|
|
107
|
+
},
|
|
108
|
+
"kz.rte.link" : {
|
|
109
|
+
"description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
|
|
110
|
+
"message" : "Liên kết"
|
|
111
|
+
},
|
|
112
|
+
"kz.rte.numbered_list" : {
|
|
113
|
+
"description" : "Label for the \"Numbered list\" button in a text editor",
|
|
114
|
+
"message" : "Danh sách được đánh số"
|
|
115
|
+
},
|
|
116
|
+
"kz.rte.toolbar.aria_label" : {
|
|
117
|
+
"description" : "Label for the text formatting toolbar in a Rich Text Editor",
|
|
118
|
+
"message" : "Định dạng văn bản"
|
|
119
|
+
},
|
|
120
|
+
"kz.rte.underline" : {
|
|
121
|
+
"description" : "Label for the \"Underline\" button in a text editor",
|
|
122
|
+
"message" : "Gạch chân"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "liên hệ với bộ phận hỗ trợ"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "Các hành động bổ sung"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|
package/locales/zh-TW.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "清除搜尋"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "粗體"
|
|
91
|
+
},
|
|
92
|
+
"kz.rte.bullet_list" : {
|
|
93
|
+
"description" : "Label for the \"Bullet list\" button in a text editor",
|
|
94
|
+
"message" : "項目符號清單"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "減少縮排"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "增加縮排"
|
|
103
|
+
},
|
|
104
|
+
"kz.rte.italic" : {
|
|
105
|
+
"description" : "Label for the \"Italic\" button in a text editor",
|
|
106
|
+
"message" : "斜體"
|
|
107
|
+
},
|
|
108
|
+
"kz.rte.link" : {
|
|
109
|
+
"description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
|
|
110
|
+
"message" : "連結"
|
|
111
|
+
},
|
|
112
|
+
"kz.rte.numbered_list" : {
|
|
113
|
+
"description" : "Label for the \"Numbered list\" button in a text editor",
|
|
114
|
+
"message" : "編號清單"
|
|
115
|
+
},
|
|
116
|
+
"kz.rte.toolbar.aria_label" : {
|
|
117
|
+
"description" : "Label for the text formatting toolbar in a Rich Text Editor",
|
|
118
|
+
"message" : "文字格式化"
|
|
119
|
+
},
|
|
120
|
+
"kz.rte.underline" : {
|
|
121
|
+
"description" : "Label for the \"Underline\" button in a text editor",
|
|
122
|
+
"message" : "底線"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "聯絡支援中心"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "其他行動"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|
package/locales/zh.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "清除搜索"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "粗体"
|
|
91
|
+
},
|
|
92
|
+
"kz.rte.bullet_list" : {
|
|
93
|
+
"description" : "Label for the \"Bullet list\" button in a text editor",
|
|
94
|
+
"message" : "项目符号列表"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "减少缩进"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "增加缩进"
|
|
103
|
+
},
|
|
104
|
+
"kz.rte.italic" : {
|
|
105
|
+
"description" : "Label for the \"Italic\" button in a text editor",
|
|
106
|
+
"message" : "斜体"
|
|
107
|
+
},
|
|
108
|
+
"kz.rte.link" : {
|
|
109
|
+
"description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
|
|
110
|
+
"message" : "链接"
|
|
111
|
+
},
|
|
112
|
+
"kz.rte.numbered_list" : {
|
|
113
|
+
"description" : "Label for the \"Numbered list\" button in a text editor",
|
|
114
|
+
"message" : "编号列表"
|
|
115
|
+
},
|
|
116
|
+
"kz.rte.toolbar.aria_label" : {
|
|
117
|
+
"description" : "Label for the text formatting toolbar in a Rich Text Editor",
|
|
118
|
+
"message" : "文本格式"
|
|
119
|
+
},
|
|
120
|
+
"kz.rte.underline" : {
|
|
121
|
+
"description" : "Label for the \"Underline\" button in a text editor",
|
|
122
|
+
"message" : "下划线"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "联系支持人员"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "附加操作"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|
package/package.json
CHANGED
|
@@ -51,6 +51,10 @@
|
|
|
51
51
|
display: inline-block;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
+
.toolbarWrapper {
|
|
55
|
+
border-bottom: inherit;
|
|
56
|
+
}
|
|
57
|
+
|
|
54
58
|
/* stylelint-disable no-descending-specificity */
|
|
55
59
|
.editorWrapper {
|
|
56
60
|
position: relative;
|
|
@@ -62,37 +66,21 @@
|
|
|
62
66
|
&:hover,
|
|
63
67
|
&:focus-within {
|
|
64
68
|
border-color: $color-gray-600;
|
|
65
|
-
|
|
66
|
-
.toolbar {
|
|
67
|
-
border-color: $color-gray-600;
|
|
68
|
-
}
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
&.error {
|
|
72
|
-
|
|
73
|
-
.toolbar {
|
|
74
|
-
border-color: $color-red-500;
|
|
75
|
-
}
|
|
72
|
+
border-color: $color-red-500;
|
|
76
73
|
|
|
77
74
|
&:hover {
|
|
78
|
-
|
|
79
|
-
.toolbar {
|
|
80
|
-
border-color: $color-red-600;
|
|
81
|
-
}
|
|
75
|
+
border-color: $color-red-600;
|
|
82
76
|
}
|
|
83
77
|
}
|
|
84
78
|
|
|
85
79
|
&.caution {
|
|
86
|
-
|
|
87
|
-
.toolbar {
|
|
88
|
-
border-color: $color-yellow-600;
|
|
89
|
-
}
|
|
80
|
+
border-color: $color-yellow-600;
|
|
90
81
|
|
|
91
82
|
&:hover {
|
|
92
|
-
|
|
93
|
-
.toolbar {
|
|
94
|
-
border-color: $color-yellow-700;
|
|
95
|
-
}
|
|
83
|
+
border-color: $color-yellow-700;
|
|
96
84
|
}
|
|
97
85
|
}
|
|
98
86
|
/* stylelint-enable no-descending-specificity */
|
|
@@ -87,8 +87,8 @@ describe('RTE receives list controls', () => {
|
|
|
87
87
|
it('renders list buttons when receiving a list controls', () => {
|
|
88
88
|
render(<TestRTE />)
|
|
89
89
|
|
|
90
|
-
const bulletButton = screen.getByRole('button', { name: 'Bullet
|
|
91
|
-
const orderedButton = screen.getByRole('button', { name: 'Numbered
|
|
90
|
+
const bulletButton = screen.getByRole('button', { name: 'Bullet list' })
|
|
91
|
+
const orderedButton = screen.getByRole('button', { name: 'Numbered list' })
|
|
92
92
|
|
|
93
93
|
expect(bulletButton && orderedButton).toBeTruthy()
|
|
94
94
|
})
|
|
@@ -117,7 +117,7 @@ describe('RTE receives list controls', () => {
|
|
|
117
117
|
})
|
|
118
118
|
|
|
119
119
|
await waitFor(() => {
|
|
120
|
-
fireEvent.click(screen.getByRole('button', { name: 'Bullet
|
|
120
|
+
fireEvent.click(screen.getByRole('button', { name: 'Bullet list' }))
|
|
121
121
|
screen.getByRole('list')
|
|
122
122
|
|
|
123
123
|
expect(document.querySelectorAll('ul').length).toBeGreaterThan(0)
|
|
@@ -132,7 +132,7 @@ describe('RTE receives list controls', () => {
|
|
|
132
132
|
})
|
|
133
133
|
|
|
134
134
|
await waitFor(() => {
|
|
135
|
-
fireEvent.click(screen.getByRole('button', { name: 'Numbered
|
|
135
|
+
fireEvent.click(screen.getByRole('button', { name: 'Numbered list' }))
|
|
136
136
|
|
|
137
137
|
expect(document.querySelectorAll('ol').length).toBeGreaterThan(0)
|
|
138
138
|
})
|
|
@@ -3,8 +3,8 @@ import classnames from 'classnames'
|
|
|
3
3
|
import { FieldMessage } from '~components/FieldMessage'
|
|
4
4
|
import { Label } from '~components/Label'
|
|
5
5
|
import { InlineNotification } from '~components/Notification'
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
6
|
+
import type { OverrideClassName } from '~components/types/OverrideClassName'
|
|
7
|
+
import type { EditorContentArray, EditorRows, ToolbarItems } from '../types'
|
|
8
8
|
import { useRichTextEditor } from '../utils/core'
|
|
9
9
|
import { createLinkManager } from '../utils/plugins'
|
|
10
10
|
import {
|
|
@@ -15,10 +15,7 @@ import {
|
|
|
15
15
|
ProseMirrorState,
|
|
16
16
|
} from '../utils/prosemirror'
|
|
17
17
|
import { createSchemaFromControls } from './schema'
|
|
18
|
-
import {
|
|
19
|
-
import { Toolbar } from './subcomponents/Toolbar'
|
|
20
|
-
import { ToolbarSection } from './subcomponents/ToolbarSection'
|
|
21
|
-
import { buildControlMap } from './utils/controlmap'
|
|
18
|
+
import { ToolbarControls } from './subcomponents/ToolbarControls'
|
|
22
19
|
import { buildInputRules } from './utils/inputrules'
|
|
23
20
|
import { buildKeymap } from './utils/keymap'
|
|
24
21
|
import styles from './RichTextEditor.module.scss'
|
|
@@ -132,8 +129,6 @@ export const RichTextEditor = ({
|
|
|
132
129
|
|
|
133
130
|
const [editorRef, editorState, dispatchTransaction] = useRichTextEditorResult
|
|
134
131
|
|
|
135
|
-
const controlMap = buildControlMap(schema, editorState, controls)
|
|
136
|
-
|
|
137
132
|
// @todo: Fix if possible - avoiding breaking in eslint upgrade
|
|
138
133
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
139
134
|
useEffect(() => {
|
|
@@ -148,28 +143,15 @@ export const RichTextEditor = ({
|
|
|
148
143
|
<Label classNameOverride={styles.editorLabel} id={labelId} labelText={labelText} />
|
|
149
144
|
)}
|
|
150
145
|
<div className={classnames(styles.editorWrapper, styles[status])}>
|
|
151
|
-
{
|
|
152
|
-
<
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
{
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
<ToggleIconButton
|
|
161
|
-
key={controlKeyIndex}
|
|
162
|
-
icon={controlConfig.icon}
|
|
163
|
-
disabled={controlConfig.disabled}
|
|
164
|
-
label={controlConfig.label}
|
|
165
|
-
isActive={controlConfig.isActive}
|
|
166
|
-
onClick={(): void => dispatchTransaction(controlConfig.action)}
|
|
167
|
-
/>
|
|
168
|
-
))}
|
|
169
|
-
</ToolbarSection>
|
|
170
|
-
))}
|
|
171
|
-
</Toolbar>
|
|
172
|
-
)}
|
|
146
|
+
<div className={styles.toolbarWrapper}>
|
|
147
|
+
<ToolbarControls
|
|
148
|
+
editorId={editorId}
|
|
149
|
+
controls={controls}
|
|
150
|
+
editorState={editorState}
|
|
151
|
+
schema={schema}
|
|
152
|
+
dispatchTransaction={dispatchTransaction}
|
|
153
|
+
/>
|
|
154
|
+
</div>
|
|
173
155
|
<div
|
|
174
156
|
id={editorId}
|
|
175
157
|
ref={editorRef}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import React, { useCallback } from 'react'
|
|
2
|
+
import { useIntl } from '@cultureamp/i18n-react-intl'
|
|
3
|
+
import type { ToolbarItems } from '../../../types'
|
|
4
|
+
import type { CommandOrTransaction } from '../../../utils/core'
|
|
5
|
+
import type { ProseMirrorModel, ProseMirrorState } from '../../../utils/prosemirror'
|
|
6
|
+
import { useControlMap } from '../../utils/controlmap'
|
|
7
|
+
import { ToggleIconButton } from '../ToggleIconButton'
|
|
8
|
+
import { Toolbar } from '../Toolbar'
|
|
9
|
+
import { ToolbarSection } from '../ToolbarSection'
|
|
10
|
+
|
|
11
|
+
type ToolbarControlsProps = {
|
|
12
|
+
editorId: string
|
|
13
|
+
controls?: ToolbarItems[]
|
|
14
|
+
editorState: ProseMirrorState.EditorState
|
|
15
|
+
schema: ProseMirrorModel.Schema<any, any>
|
|
16
|
+
dispatchTransaction: (commandOrTransaction: CommandOrTransaction) => void
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export const ToolbarControls = ({
|
|
20
|
+
editorId,
|
|
21
|
+
controls,
|
|
22
|
+
editorState,
|
|
23
|
+
schema,
|
|
24
|
+
dispatchTransaction,
|
|
25
|
+
}: ToolbarControlsProps): JSX.Element | null => {
|
|
26
|
+
const controlMap = useControlMap(schema, editorState, controls)
|
|
27
|
+
const { formatMessage } = useIntl()
|
|
28
|
+
const handleControlClick = useCallback(
|
|
29
|
+
(action: ProseMirrorState.Command) => {
|
|
30
|
+
dispatchTransaction(action)
|
|
31
|
+
},
|
|
32
|
+
[dispatchTransaction],
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
if (controlMap.length <= 0) return null
|
|
36
|
+
|
|
37
|
+
return (
|
|
38
|
+
<Toolbar
|
|
39
|
+
aria-controls={editorId}
|
|
40
|
+
aria-label={formatMessage({
|
|
41
|
+
id: 'kz.rte.toolbar.aria_label',
|
|
42
|
+
defaultMessage: 'Text formatting',
|
|
43
|
+
description: 'Label for the text formatting toolbar in a Rich Text Editor',
|
|
44
|
+
})}
|
|
45
|
+
>
|
|
46
|
+
{controlMap.map((section, index) => (
|
|
47
|
+
<ToolbarSection key={index}>
|
|
48
|
+
{section.map((controlConfig, controlKeyIndex) => (
|
|
49
|
+
<ToggleIconButton
|
|
50
|
+
key={controlKeyIndex}
|
|
51
|
+
icon={controlConfig.icon}
|
|
52
|
+
disabled={controlConfig.disabled}
|
|
53
|
+
label={controlConfig.label}
|
|
54
|
+
isActive={controlConfig.isActive}
|
|
55
|
+
onClick={() => handleControlClick(controlConfig.action)}
|
|
56
|
+
/>
|
|
57
|
+
))}
|
|
58
|
+
</ToolbarSection>
|
|
59
|
+
))}
|
|
60
|
+
</Toolbar>
|
|
61
|
+
)
|
|
62
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ToolbarControls'
|