@asaleh37/ui-base 1.2.17 → 1.2.19
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/.env.development +1 -1
- package/dist/index.d.ts +27 -5
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/public/no_image.png +0 -0
- package/src/components/administration/admin/OrganizationApplicationModuleGrid.tsx +10 -34
- package/src/components/administration/admin/OrganizationGrid.tsx +4 -87
- package/src/components/administration/admin/OrganizationRankGrid.tsx +34 -16
- package/src/components/administration/admin/OrganizationUnitGrid.tsx +34 -30
- package/src/components/administration/admin/OrganizationUnitTypeGrid.tsx +3 -16
- package/src/components/administration/admin/PersonGrid.tsx +38 -1
- package/src/components/administration/admin/RoleAuthoritiesForm.tsx +2 -4
- package/src/components/administration/admin/SystemApplicationAuthorityGrid.tsx +2 -18
- package/src/components/administration/admin/SystemApplicationGrid.tsx +5 -83
- package/src/components/administration/admin/SystemApplicationModuleGrid.tsx +2 -15
- package/src/components/administration/admin/SystemApplicationRoleGrid.tsx +1 -15
- package/src/components/administration/dev/AttachmentConfigGrid.tsx +213 -0
- package/src/components/administration/dev/AttachmentGrid.tsx +172 -0
- package/src/components/administration/dev/LookupGrid.tsx +1 -12
- package/src/components/common/Home.tsx +24 -22
- package/src/components/templates/DataEntryTemplates/DataEntryTypes.ts +13 -1
- package/src/components/templates/DataEntryTemplates/DataEntryUtil.ts +6 -0
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementField.tsx +1 -3
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormFields/SystemLookupCombobox.tsx +1 -1
- package/src/components/templates/DataEntryTemplates/TemplateDataForm/TemplateForm.tsx +100 -8
- package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGrid.tsx +113 -4
- package/src/components/templates/attachment/AttachmentCard.tsx +126 -0
- package/src/components/templates/attachment/AttachmentImageViewer.tsx +44 -0
- package/src/components/templates/attachment/AttachmentPanel.tsx +269 -0
- package/src/components/templates/workflow/WorkflowDocumentPanel.tsx +4 -4
- package/src/hooks/UseSession.tsx +20 -2
- package/src/hooks/useAxios.tsx +71 -11
- package/src/hooks/useLookupGridColumn.tsx +2 -2
- package/src/layout/MainContent.tsx +49 -46
- package/src/layout/TopBar.tsx +6 -1
- package/src/locales/arabic/devLocalsAr.json +13 -1
- package/src/locales/english/devLocalsEn.json +13 -1
- package/src/main.tsx +3 -3
- package/src/navigationItems/Administration/adminNavigationItems.tsx +77 -3
- package/src/redux/features/administration/AdministrationStoresMetaData.ts +14 -6
- package/src/routes/administration/adminRoutes.tsx +21 -0
- package/src/routes/administration/devRoutes.tsx +24 -0
- package/public/icons/LICENSE.md +0 -5
- package/public/icons/arrow-clockwise.svg +0 -4
- package/public/icons/arrow-counterclockwise.svg +0 -4
- package/public/icons/journal-text.svg +0 -5
- package/public/icons/justify.svg +0 -3
- package/public/icons/text-center.svg +0 -3
- package/public/icons/text-left.svg +0 -3
- package/public/icons/text-paragraph.svg +0 -3
- package/public/icons/text-right.svg +0 -3
- package/public/icons/type-bold.svg +0 -3
- package/public/icons/type-italic.svg +0 -3
- package/public/icons/type-strikethrough.svg +0 -3
- package/public/icons/type-underline.svg +0 -3
package/src/main.tsx
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { StrictMode } from "react";
|
|
2
2
|
import { createRoot } from "react-dom/client";
|
|
3
3
|
import { BaseApp } from "./components";
|
|
4
|
-
import logo from "./assets/logo.png";
|
|
4
|
+
// import logo from "./assets/logo.png";
|
|
5
5
|
|
|
6
6
|
createRoot(document.getElementById("root")!).render(
|
|
7
7
|
<BaseApp
|
|
8
|
-
apiBaseUrl="http://localhost:8080/
|
|
9
|
-
appLogo={logo}
|
|
8
|
+
apiBaseUrl="http://localhost:8080/api-base"
|
|
9
|
+
appLogo={"/public/logo.png"}
|
|
10
10
|
appName="UI Base Library"
|
|
11
11
|
appVersion="0.0"
|
|
12
12
|
businessCommonStoresMetaData={{}}
|
|
@@ -9,9 +9,9 @@ export const adminNavigationItems: TreeViewBaseItem<ExtendedTreeItemProps>[] = [
|
|
|
9
9
|
icon: "cog",
|
|
10
10
|
children: [
|
|
11
11
|
{
|
|
12
|
-
id: "development_admin.
|
|
12
|
+
id: "development_admin.organizations",
|
|
13
13
|
label: "ORGANIZATION_PLURAL",
|
|
14
|
-
authority: "
|
|
14
|
+
authority: "ORGANIZATION_ADMIN",
|
|
15
15
|
icon: "globe",
|
|
16
16
|
action: "NAVIGATION",
|
|
17
17
|
actionPayload: { path: "admin/organizations" },
|
|
@@ -19,11 +19,48 @@ export const adminNavigationItems: TreeViewBaseItem<ExtendedTreeItemProps>[] = [
|
|
|
19
19
|
{
|
|
20
20
|
id: "development_admin.SystemApplication",
|
|
21
21
|
label: "SYSTEM_APPLICATION_PLURAL",
|
|
22
|
-
authority: "
|
|
22
|
+
authority: "ORGANIZATION_ADMIN",
|
|
23
23
|
icon: "window-restore",
|
|
24
24
|
action: "NAVIGATION",
|
|
25
25
|
actionPayload: { path: "admin/systemapplications" },
|
|
26
26
|
},
|
|
27
|
+
{
|
|
28
|
+
id: "development_admin.organization",
|
|
29
|
+
label: "Organization Info",
|
|
30
|
+
authority: "DEVELOPMENT_ADMIN",
|
|
31
|
+
icon: "globe",
|
|
32
|
+
children: [
|
|
33
|
+
{
|
|
34
|
+
id: "development_admin.organization.modules",
|
|
35
|
+
label: "Subscriped Modules",
|
|
36
|
+
icon: "layer-group",
|
|
37
|
+
authority: "ORGANIZATION_ADMIN",
|
|
38
|
+
action: "NAVIGATION",
|
|
39
|
+
actionPayload: { path: "admin/org/apps" },
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
id: "development_admin.organization.unitTypes",
|
|
43
|
+
label: "Organization Unit Types",
|
|
44
|
+
icon: "tags",
|
|
45
|
+
action: "NAVIGATION",
|
|
46
|
+
actionPayload: { path: "admin/org/unit/types" },
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
id: "development_admin.organization.units",
|
|
50
|
+
label: "Organization Units",
|
|
51
|
+
icon: "folder-tree",
|
|
52
|
+
action: "NAVIGATION",
|
|
53
|
+
actionPayload: { path: "admin/org/units" },
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
id: "development_admin.organization.ranks",
|
|
57
|
+
label: "Organization Ranks",
|
|
58
|
+
icon: "street-view",
|
|
59
|
+
action: "NAVIGATION",
|
|
60
|
+
actionPayload: { path: "admin/org/ranks" },
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
},
|
|
27
64
|
{
|
|
28
65
|
id: "system_admin.Person",
|
|
29
66
|
label: "PERSON_PLURAL",
|
|
@@ -34,8 +71,37 @@ export const adminNavigationItems: TreeViewBaseItem<ExtendedTreeItemProps>[] = [
|
|
|
34
71
|
{
|
|
35
72
|
id: "system_admin.devtools",
|
|
36
73
|
label: "DEVELOPMENT_TOOLS",
|
|
74
|
+
authority: "DEVELOPMENT_ADMIN",
|
|
37
75
|
icon: "code",
|
|
38
76
|
children: [
|
|
77
|
+
{
|
|
78
|
+
id: "system_admin.devtools.modules",
|
|
79
|
+
label: "System Modules",
|
|
80
|
+
icon: "layer-group",
|
|
81
|
+
action: "NAVIGATION",
|
|
82
|
+
actionPayload: { path: "dev/system/modules" },
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
id: "system_admin.devtools.authorities",
|
|
86
|
+
label: "System Authorities",
|
|
87
|
+
icon: "key",
|
|
88
|
+
action: "NAVIGATION",
|
|
89
|
+
actionPayload: { path: "dev/system/authorities" },
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
id: "system_admin.devtools.roles",
|
|
93
|
+
label: "System Roles",
|
|
94
|
+
icon: "tag",
|
|
95
|
+
action: "NAVIGATION",
|
|
96
|
+
actionPayload: { path: "dev/system/roles" },
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
id: "system_admin.devtools.lookups",
|
|
100
|
+
label: "System Lookups",
|
|
101
|
+
icon: "list-check",
|
|
102
|
+
action: "NAVIGATION",
|
|
103
|
+
actionPayload: { path: "dev/system/lookups" },
|
|
104
|
+
},
|
|
39
105
|
{
|
|
40
106
|
id: "system_admin.devtools.DatasourceConnection",
|
|
41
107
|
label: "DATASOURCE_CONNECTION_PLURAL",
|
|
@@ -99,6 +165,13 @@ export const adminNavigationItems: TreeViewBaseItem<ExtendedTreeItemProps>[] = [
|
|
|
99
165
|
action: "NAVIGATION",
|
|
100
166
|
actionPayload: { path: "dev/dashboards" },
|
|
101
167
|
},
|
|
168
|
+
{
|
|
169
|
+
id: "system_admin.devtools.AttachmentConfig",
|
|
170
|
+
label: "ATTACHMENT_CONFIG_PLURAL",
|
|
171
|
+
icon: "paperclip",
|
|
172
|
+
action: "NAVIGATION",
|
|
173
|
+
actionPayload: { path: "dev/attachmentconfigs" },
|
|
174
|
+
},
|
|
102
175
|
{
|
|
103
176
|
id: "system_admin.devtools.BluePrint",
|
|
104
177
|
label: "BLUE_PRINT_PLURAL",
|
|
@@ -118,6 +191,7 @@ export const adminNavigationItems: TreeViewBaseItem<ExtendedTreeItemProps>[] = [
|
|
|
118
191
|
{
|
|
119
192
|
id: "system_admin.followup",
|
|
120
193
|
label: "SYSTEM_MONITORING",
|
|
194
|
+
authority: "SYSTEM_ADMIN",
|
|
121
195
|
icon: "tv",
|
|
122
196
|
children: [
|
|
123
197
|
{
|
|
@@ -44,20 +44,22 @@ export const ADMINISTRATION_STORES: CommonStores = {
|
|
|
44
44
|
},
|
|
45
45
|
SystemOrganizations: {
|
|
46
46
|
autoLoad: true,
|
|
47
|
-
url: "api/v1/
|
|
48
|
-
authority: "DEVELOPMENT_ADMIN",
|
|
47
|
+
url: "api/v1/public/organization/all",
|
|
49
48
|
data: [],
|
|
50
49
|
},
|
|
51
50
|
SystemOrganizationRanks: {
|
|
52
51
|
autoLoad: true,
|
|
53
|
-
url: "api/v1/
|
|
54
|
-
authority: "DEVELOPMENT_ADMIN",
|
|
52
|
+
url: "api/v1/public/organization/ranks/all",
|
|
55
53
|
data: [],
|
|
56
54
|
},
|
|
57
55
|
SystemOrganizationUnits: {
|
|
58
56
|
autoLoad: true,
|
|
59
|
-
url: "api/v1/
|
|
60
|
-
|
|
57
|
+
url: "api/v1/public/organization/units/all",
|
|
58
|
+
data: [],
|
|
59
|
+
},
|
|
60
|
+
SystemOrganizationUnitType: {
|
|
61
|
+
autoLoad: true,
|
|
62
|
+
url: "api/v1/public/organizationunittype/all",
|
|
61
63
|
data: [],
|
|
62
64
|
},
|
|
63
65
|
SystemDataSources: {
|
|
@@ -102,4 +104,10 @@ export const ADMINISTRATION_STORES: CommonStores = {
|
|
|
102
104
|
authority: "DEVELOPMENT_ADMIN",
|
|
103
105
|
url: "api/v1/dev/widget/all",
|
|
104
106
|
},
|
|
107
|
+
SystemApplicationModules: {
|
|
108
|
+
autoLoad: true,
|
|
109
|
+
data: [],
|
|
110
|
+
authority: "DEVELOPMENT_ADMIN",
|
|
111
|
+
url: "api/v1/admin/systemapplicationmodule/application/all",
|
|
112
|
+
},
|
|
105
113
|
};
|
|
@@ -11,6 +11,7 @@ import SystemApplicationAuthorityGrid from "../../components/administration/admi
|
|
|
11
11
|
import SystemApplicationModuleGrid from "../../components/administration/admin/SystemApplicationModuleGrid";
|
|
12
12
|
import SystemApplicationRoleGrid from "../../components/administration/admin/SystemApplicationRoleGrid";
|
|
13
13
|
import SystemApplicationRoleAuthorityGrid from "../../components/administration/admin/SystemApplicationRoleAuthorityGrid";
|
|
14
|
+
import OrganizationApplicationModuleGrid from "../../components/administration/admin/OrganizationApplicationModuleGrid";
|
|
14
15
|
export const adminRoutes: Array<SystemRoute> = [
|
|
15
16
|
{
|
|
16
17
|
path: "admin/organizations",
|
|
@@ -72,6 +73,26 @@ export const adminRoutes: Array<SystemRoute> = [
|
|
|
72
73
|
component: SystemApplicationRoleAuthorityGrid,
|
|
73
74
|
authority: "SYSTEM_APPLICATION_ROLE_AUTHORITY_VIEW",
|
|
74
75
|
},
|
|
76
|
+
{
|
|
77
|
+
path: "admin/org/apps",
|
|
78
|
+
component: OrganizationApplicationModuleGrid,
|
|
79
|
+
authority: "ORGANIZATION_ADMIN",
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
path: "admin/org/unit/types",
|
|
83
|
+
component: OrganizationUnitTypeGrid,
|
|
84
|
+
authority: "DEVELOPMENT_ADMIN",
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
path: "admin/org/units",
|
|
88
|
+
component: OrganizationUnitGrid,
|
|
89
|
+
authority: "DEVELOPMENT_ADMIN",
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
path: "admin/org/ranks",
|
|
93
|
+
component: OrganizationRankGrid,
|
|
94
|
+
authority: "DEVELOPMENT_ADMIN",
|
|
95
|
+
},
|
|
75
96
|
];
|
|
76
97
|
|
|
77
98
|
// import { adminRoutes } from "./adminRoutes";
|
|
@@ -15,6 +15,10 @@ import DashboardGrid from "../../components/administration/dev/DashboardGrid";
|
|
|
15
15
|
import DashboardRouteView from "../../components/templates/visuals/DashboardRouteView";
|
|
16
16
|
import WorkflowDocumentMailLogGrid from "../../components/administration/dev/WorkflowDocumentMailLogGrid";
|
|
17
17
|
import MailNotificationQueueGrid from "../../components/administration/dev/MailNotificationQueueGrid";
|
|
18
|
+
import SystemApplicationAuthorityGrid from "../../components/administration/admin/SystemApplicationAuthorityGrid";
|
|
19
|
+
import SystemApplicationRoleGrid from "../../components/administration/admin/SystemApplicationRoleGrid";
|
|
20
|
+
import SystemApplicationModuleGrid from "../../components/administration/admin/SystemApplicationModuleGrid";
|
|
21
|
+
import AttachmentConfigGrid from "../../components/administration/dev/AttachmentConfigGrid";
|
|
18
22
|
|
|
19
23
|
export const devRoutes: Array<SystemRoute> = [
|
|
20
24
|
{
|
|
@@ -84,6 +88,26 @@ export const devRoutes: Array<SystemRoute> = [
|
|
|
84
88
|
path: "dev/mailnotificationqueues",
|
|
85
89
|
component: MailNotificationQueueGrid,
|
|
86
90
|
},
|
|
91
|
+
{
|
|
92
|
+
path: "dev/system/authorities",
|
|
93
|
+
component: SystemApplicationAuthorityGrid,
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
path: "dev/system/roles",
|
|
97
|
+
component: SystemApplicationRoleGrid,
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
path: "dev/system/lookups",
|
|
101
|
+
component: LookupGrid,
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
path: "dev/system/modules",
|
|
105
|
+
component: SystemApplicationModuleGrid,
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
path: "dev/attachmentconfigs",
|
|
109
|
+
component: AttachmentConfigGrid,
|
|
110
|
+
},
|
|
87
111
|
];
|
|
88
112
|
|
|
89
113
|
// import { devRoutes } from "./devRoutes";
|
package/public/icons/LICENSE.md
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-clockwise" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M8 3a5 5 0 1 0 4.546 2.914.5.5 0 0 1 .908-.417A6 6 0 1 1 8 2v1z"/>
|
|
3
|
-
<path d="M8 4.466V.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384L8.41 4.658A.25.25 0 0 1 8 4.466z"/>
|
|
4
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-counterclockwise" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M8 3a5 5 0 1 1-4.546 2.914.5.5 0 0 0-.908-.417A6 6 0 1 0 8 2v1z"/>
|
|
3
|
-
<path d="M8 4.466V.534a.25.25 0 0 0-.41-.192L5.23 2.308a.25.25 0 0 0 0 .384l2.36 1.966A.25.25 0 0 0 8 4.466z"/>
|
|
4
|
-
</svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-journal-text" viewBox="0 0 16 16">
|
|
2
|
-
<path d="M5 10.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5zm0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5z"/>
|
|
3
|
-
<path d="M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2z"/>
|
|
4
|
-
<path d="M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1H1z"/>
|
|
5
|
-
</svg>
|
package/public/icons/justify.svg
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-justify" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M2 12.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-text-center" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M4 12.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5zm2-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-text-left" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M2 12.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-text-paragraph" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M2 12.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5zm4-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5z"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-text-right" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M6 12.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-4-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5zm4-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-4-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-type-bold" viewBox="0 0 16 16">
|
|
2
|
-
<path d="M8.21 13c2.106 0 3.412-1.087 3.412-2.823 0-1.306-.984-2.283-2.324-2.386v-.055a2.176 2.176 0 0 0 1.852-2.14c0-1.51-1.162-2.46-3.014-2.46H3.843V13H8.21zM5.908 4.674h1.696c.963 0 1.517.451 1.517 1.244 0 .834-.629 1.32-1.73 1.32H5.908V4.673zm0 6.788V8.598h1.73c1.217 0 1.88.492 1.88 1.415 0 .943-.643 1.449-1.832 1.449H5.907z"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-type-italic" viewBox="0 0 16 16">
|
|
2
|
-
<path d="M7.991 11.674 9.53 4.455c.123-.595.246-.71 1.347-.807l.11-.52H7.211l-.11.52c1.06.096 1.128.212 1.005.807L6.57 11.674c-.123.595-.246.71-1.346.806l-.11.52h3.774l.11-.52c-1.06-.095-1.129-.211-1.006-.806z"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-type-strikethrough" viewBox="0 0 16 16">
|
|
2
|
-
<path d="M6.333 5.686c0 .31.083.581.27.814H5.166a2.776 2.776 0 0 1-.099-.76c0-1.627 1.436-2.768 3.48-2.768 1.969 0 3.39 1.175 3.445 2.85h-1.23c-.11-1.08-.964-1.743-2.25-1.743-1.23 0-2.18.602-2.18 1.607zm2.194 7.478c-2.153 0-3.589-1.107-3.705-2.81h1.23c.144 1.06 1.129 1.703 2.544 1.703 1.34 0 2.31-.705 2.31-1.675 0-.827-.547-1.374-1.914-1.675L8.046 8.5H1v-1h14v1h-3.504c.468.437.675.994.675 1.697 0 1.826-1.436 2.967-3.644 2.967z"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-type-underline" viewBox="0 0 16 16">
|
|
2
|
-
<path d="M5.313 3.136h-1.23V9.54c0 2.105 1.47 3.623 3.917 3.623s3.917-1.518 3.917-3.623V3.136h-1.23v6.323c0 1.49-.978 2.57-2.687 2.57-1.709 0-2.687-1.08-2.687-2.57V3.136zM12.5 15h-9v-1h9v1z"/>
|
|
3
|
-
</svg>
|