Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/Umbraco.Web.UI.Client/src/assets/lang/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2754,6 +2754,14 @@ export default {
toolbar_removeItem: 'Remove action',
toolbar_emptyGroup: 'Empty',
sourceCodeEdit: 'Edit source code',
charmap_headline: 'Special character',
charmap_currency: 'Currency',
charmap_text: 'Text',
charmap_quotations: 'Quotations',
charmap_maths: 'Mathematical',
charmap_extlatin: 'Extended Latin',
charmap_symbols: 'Symbols',
charmap_arrows: 'Arrows',
},
linkPicker: {
modalSource: 'Source',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,12 @@ export const data: Array<UmbMockDataTypeModel> = [
'Umb.Tiptap.Toolbar.TextAlignCenter',
'Umb.Tiptap.Toolbar.TextAlignRight',
],
['Umb.Tiptap.Toolbar.TextDirectionRtl', 'Umb.Tiptap.Toolbar.TextDirectionLtr'],
['Umb.Tiptap.Toolbar.Subscript', 'Umb.Tiptap.Toolbar.Superscript'],
[
'Umb.Tiptap.Toolbar.CharacterMap',
'Umb.Tiptap.Toolbar.TextDirectionRtl',
'Umb.Tiptap.Toolbar.TextDirectionLtr',
],
[
'Umb.Tiptap.Toolbar.BulletList',
'Umb.Tiptap.Toolbar.OrderedList',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1387,6 +1387,10 @@
"file": "phone.svg",
"legacy": true
},
{
"name": "icon-omega",
"file": "omega.svg"
},
{
"name": "icon-operator",
"file": "user-cog.svg"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1123,6 +1123,9 @@ legacy: true,
hidden: true,
path: () => import("./icons/icon-old-phone.js"),
},{
name: "icon-omega",
path: () => import("./icons/icon-omega.js"),
},{
name: "icon-operator",
path: () => import("./icons/icon-operator.js"),
},{
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-omega" viewBox="0 0 24 24"><path d="M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21"/></svg>`;
Loading
Loading