@omnsight/osint-entity-components 0.2.5 → 0.2.7
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/index.js +8 -8
- package/dist/index.mjs +1429 -1146
- package/package.json +23 -2
- package/src/App.tsx +397 -141
- package/src/assets/icons/generated/boxicons-file-report.tsx +20 -0
- package/src/assets/icons/generated/bx-plus-medical.tsx +8 -0
- package/src/assets/icons/generated/bx-run.tsx +8 -0
- package/src/assets/icons/generated/fa-solid-fist-raised.tsx +8 -0
- package/src/assets/icons/generated/fluent-emoji-high-contrast-ballot-box-with-ballot.tsx +8 -0
- package/src/assets/icons/generated/glyphs-handshake-bold.tsx +8 -0
- package/src/assets/icons/generated/icon-park-currency.tsx +8 -0
- package/src/assets/icons/generated/icon-park-great-wall.tsx +8 -0
- package/src/assets/icons/generated/iconoir-commodity.tsx +8 -0
- package/src/assets/icons/generated/lsicon-work-order-abnormal-outline.tsx +8 -0
- package/src/assets/icons/generated/material-symbols-light-drone.tsx +8 -0
- package/src/assets/icons/generated/material-symbols-satellite-alt.tsx +8 -0
- package/src/assets/icons/generated/mdi-anchor.tsx +19 -0
- package/src/assets/icons/generated/ph-mask-happy-fill.tsx +8 -0
- package/src/assets/icons/generated/streamline-ultimate-meeting-remote-bold.tsx +19 -0
- package/src/assets/icons/generated/tabler-barrier-block.tsx +8 -0
- package/src/assets/icons/generated/typcn-flash.tsx +8 -0
- package/src/avatars/layouts/AvatarDropdown.tsx +1 -1
- package/src/forms/BaseForm.tsx +138 -0
- package/src/forms/EditableAttributes.tsx +131 -0
- package/src/forms/EventForm/EditableForm.tsx +78 -0
- package/src/forms/EventForm/EditingForm.tsx +401 -0
- package/src/forms/EventForm/IconFormSection.tsx +54 -0
- package/src/forms/EventForm/StaticForm.tsx +272 -0
- package/src/forms/EventForm/index.ts +1 -0
- package/src/forms/InsightForm/EditableForm.tsx +70 -0
- package/src/forms/InsightForm/EditingForm.tsx +79 -0
- package/src/forms/InsightForm/StaticForm.tsx +139 -0
- package/src/forms/InsightForm/index.ts +1 -0
- package/src/forms/MonitoringSourceForm/EditableForm.tsx +59 -0
- package/src/forms/MonitoringSourceForm/EditingForm.tsx +192 -0
- package/src/forms/MonitoringSourceForm/StaticForm.tsx +107 -0
- package/src/forms/MonitoringSourceForm/index.ts +1 -0
- package/src/forms/OrganizationForm/EditableForm.tsx +74 -0
- package/src/forms/OrganizationForm/EditingForm.tsx +177 -0
- package/src/forms/OrganizationForm/IconFormSection.tsx +60 -0
- package/src/forms/OrganizationForm/StaticForm.tsx +209 -0
- package/src/forms/OrganizationForm/index.ts +1 -0
- package/src/forms/PersonForm/EditableForm.tsx +74 -0
- package/src/forms/PersonForm/EditingForm.tsx +187 -0
- package/src/forms/PersonForm/IconFormSection.tsx +54 -0
- package/src/forms/PersonForm/StaticForm.tsx +202 -0
- package/src/forms/PersonForm/index.ts +1 -0
- package/src/forms/RelationForm/EditableForm.tsx +74 -0
- package/src/forms/RelationForm/EditingForm.tsx +147 -0
- package/src/forms/RelationForm/StaticForm.tsx +182 -0
- package/src/forms/RelationForm/index.ts +1 -0
- package/src/forms/SourceForm/EditableForm.tsx +74 -0
- package/src/forms/SourceForm/EditingForm.tsx +199 -0
- package/src/forms/SourceForm/IconFormSection.tsx +54 -0
- package/src/forms/SourceForm/StaticForm.tsx +209 -0
- package/src/forms/SourceForm/index.ts +1 -0
- package/src/forms/WebsiteForm/EditableForm.tsx +74 -0
- package/src/forms/WebsiteForm/EditingForm.tsx +216 -0
- package/src/forms/WebsiteForm/IconFormSection.tsx +54 -0
- package/src/forms/WebsiteForm/StaticForm.tsx +225 -0
- package/src/forms/WebsiteForm/index.ts +1 -0
- package/src/forms/accessLevel.ts +48 -0
- package/src/forms/index.ts +8 -0
- package/src/icons/Event/Select.tsx +7 -6
- package/src/icons/Event/icons.ts +112 -4
- package/src/icons/Organization/Select.tsx +7 -6
- package/src/icons/Person/Select.tsx +7 -6
- package/src/icons/Source/Select.tsx +7 -6
- package/src/icons/Website/Select.tsx +9 -8
- package/src/icons/index.ts +1 -0
- package/src/inputs/CountrySelect.tsx +45 -0
- package/src/inputs/CustomDatePicker.tsx +51 -0
- package/src/inputs/CustomDateTimePicker.tsx +51 -0
- package/src/inputs/RangeDatePicker.tsx +99 -0
- package/src/inputs/TimezoneSelect.tsx +20 -0
- package/src/inputs/index.ts +5 -0
- package/src/locales/en.json +153 -1
- package/src/locales/zh.json +153 -1
- package/src/main.tsx +20 -4
package/src/locales/en.json
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
+
"access": {
|
|
3
|
+
"public": "Public",
|
|
4
|
+
"platform": "Platform User",
|
|
5
|
+
"paid": "Paid Users",
|
|
6
|
+
"private": "Private"
|
|
7
|
+
},
|
|
2
8
|
"source": {
|
|
3
9
|
"type": {
|
|
4
10
|
"news": "News",
|
|
@@ -45,11 +51,14 @@
|
|
|
45
51
|
"event": {
|
|
46
52
|
"type": {
|
|
47
53
|
"announcement": "Announcement",
|
|
54
|
+
"conference": "Conference",
|
|
48
55
|
"conversation": "Conversation",
|
|
56
|
+
"report": "Report",
|
|
49
57
|
"exchange": "Exchange",
|
|
50
58
|
"oil": "Oil",
|
|
51
59
|
"trade": "Trade",
|
|
52
60
|
"supplychain-risk": "Supply Chain Risk",
|
|
61
|
+
"harbor": "Harbor",
|
|
53
62
|
"ship": "Ship",
|
|
54
63
|
"truck": "Truck",
|
|
55
64
|
"train": "Train",
|
|
@@ -61,7 +70,21 @@
|
|
|
61
70
|
"naval": "Naval",
|
|
62
71
|
"tank": "Tank",
|
|
63
72
|
"infantry": "Infantry",
|
|
64
|
-
"intelligence": "Intelligence"
|
|
73
|
+
"intelligence": "Intelligence",
|
|
74
|
+
"policy": "Policy",
|
|
75
|
+
"border": "Border",
|
|
76
|
+
"election": "Election",
|
|
77
|
+
"currency": "Currency",
|
|
78
|
+
"acquisition": "Acquisition",
|
|
79
|
+
"commodity": "Commodity",
|
|
80
|
+
"electricity": "Electricity",
|
|
81
|
+
"cyber": "Cyber",
|
|
82
|
+
"evacuation": "Evacuation",
|
|
83
|
+
"civil-unrest": "Civil Unrest",
|
|
84
|
+
"defense": "Defense",
|
|
85
|
+
"medical": "Medical",
|
|
86
|
+
"drone": "Drone",
|
|
87
|
+
"satellite": "Satellite"
|
|
65
88
|
},
|
|
66
89
|
"title": "Title",
|
|
67
90
|
"description": "Description"
|
|
@@ -76,5 +99,134 @@
|
|
|
76
99
|
"confidence": "Confidence",
|
|
77
100
|
"createdDate": "Created Date",
|
|
78
101
|
"updatedDate": "Updated Date"
|
|
102
|
+
},
|
|
103
|
+
"common": {
|
|
104
|
+
"error": "Error",
|
|
105
|
+
"reset": "Reset",
|
|
106
|
+
"apply": "Apply",
|
|
107
|
+
"create": "Create",
|
|
108
|
+
"entity": {
|
|
109
|
+
"Person": "Person",
|
|
110
|
+
"Organization": "Organization",
|
|
111
|
+
"Event": "Event",
|
|
112
|
+
"Website": "Website",
|
|
113
|
+
"Source": "Source"
|
|
114
|
+
},
|
|
115
|
+
"required": "This field is required",
|
|
116
|
+
"types": {
|
|
117
|
+
"text": "text",
|
|
118
|
+
"number": "number",
|
|
119
|
+
"toggle": "toggle"
|
|
120
|
+
},
|
|
121
|
+
"remove": "Remove",
|
|
122
|
+
"add": "Add Attribute",
|
|
123
|
+
"confirm": "Confirm",
|
|
124
|
+
"cancel": "Cancel",
|
|
125
|
+
"save": "Save",
|
|
126
|
+
"warning": "Warning"
|
|
127
|
+
},
|
|
128
|
+
"components": {
|
|
129
|
+
"inputs": {
|
|
130
|
+
"TimezoneSelect": {
|
|
131
|
+
"select": "Select a timezone"
|
|
132
|
+
},
|
|
133
|
+
"RangeDatePicker": {
|
|
134
|
+
"dateLimitExceeded": "Date range exceeds limit",
|
|
135
|
+
"dateLimitMessage": "Date range exceeds limit, max 1 month",
|
|
136
|
+
"dateRange": "Date Range",
|
|
137
|
+
"today": "Today",
|
|
138
|
+
"yesterday": "Yesterday",
|
|
139
|
+
"lastWeek": "Last Week",
|
|
140
|
+
"lastMonth": "Last Month",
|
|
141
|
+
"selectDateRange": "Select Date Range"
|
|
142
|
+
},
|
|
143
|
+
"CountrySelect": {
|
|
144
|
+
"select": "Select a country"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"forms": {
|
|
148
|
+
"WebsiteForm": {
|
|
149
|
+
"title": "Edit Website"
|
|
150
|
+
},
|
|
151
|
+
"SourceForm": {
|
|
152
|
+
"title": "Source Title",
|
|
153
|
+
"sourceDescription": "Enter source description"
|
|
154
|
+
},
|
|
155
|
+
"RelationForm": {
|
|
156
|
+
"title": "Edit Relation",
|
|
157
|
+
"namePattern": "Can only contain letters, underscores, and hyphens"
|
|
158
|
+
},
|
|
159
|
+
"PersonForm": {
|
|
160
|
+
"title": "Edit Person",
|
|
161
|
+
"name": "Name"
|
|
162
|
+
},
|
|
163
|
+
"OrganizationForm": {
|
|
164
|
+
"title": "Edit Organization",
|
|
165
|
+
"name": "Organization Name"
|
|
166
|
+
},
|
|
167
|
+
"MonitoringSourceForm": {
|
|
168
|
+
"title": "Edit Monitoring Source",
|
|
169
|
+
"name": "Source Name"
|
|
170
|
+
},
|
|
171
|
+
"InsightForm": {
|
|
172
|
+
"title": "Edit Insight"
|
|
173
|
+
},
|
|
174
|
+
"EventForm": {
|
|
175
|
+
"title": "Event Title",
|
|
176
|
+
"eventDescription": "event description",
|
|
177
|
+
"minLatitude": "Latitude cannot be less than -90",
|
|
178
|
+
"maxLatitude": "Latitude cannot be greater than 90",
|
|
179
|
+
"minLongitude": "Longitude cannot be less than -180",
|
|
180
|
+
"maxLongitude": "Longitude cannot be greater than 180",
|
|
181
|
+
"mustIncludeAdmin": "Must include admin"
|
|
182
|
+
},
|
|
183
|
+
"BaseForm": {
|
|
184
|
+
"discardChanges": "Discard Changes And Exit",
|
|
185
|
+
"unsavedChangesWarning": "Are you sure you want to discard the changes?"
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"input": {
|
|
190
|
+
"color": "Select A Color",
|
|
191
|
+
"icon": "Select An Icon"
|
|
192
|
+
},
|
|
193
|
+
"placeholder": {
|
|
194
|
+
"title": "Title",
|
|
195
|
+
"url": "URL",
|
|
196
|
+
"description": "Description",
|
|
197
|
+
"type": "Type",
|
|
198
|
+
"foundedDate": "Founded Date",
|
|
199
|
+
"discoveredDate": "Discovered Date",
|
|
200
|
+
"tags": "Tags",
|
|
201
|
+
"attributes": "Attributes",
|
|
202
|
+
"reliability": "Reliability",
|
|
203
|
+
"label": "Label",
|
|
204
|
+
"name": "Name",
|
|
205
|
+
"confidence": "Confidence",
|
|
206
|
+
"role": "Role",
|
|
207
|
+
"nationality": "Nationality",
|
|
208
|
+
"birthDate": "Birth Date",
|
|
209
|
+
"source": {
|
|
210
|
+
"type": "Source Type"
|
|
211
|
+
},
|
|
212
|
+
"lastReviewed": "Last Reviewed",
|
|
213
|
+
"enter": "Enter",
|
|
214
|
+
"date": "Date",
|
|
215
|
+
"location": "Location",
|
|
216
|
+
"address": "Address",
|
|
217
|
+
"locality": "Locality",
|
|
218
|
+
"subLocality": "Sub Locality (optional)",
|
|
219
|
+
"adminArea": "Administrative Area",
|
|
220
|
+
"subAdminArea": "Sub Administrative Area (optional)",
|
|
221
|
+
"latitude": "Latitude",
|
|
222
|
+
"longitude": "Longitude",
|
|
223
|
+
"country": "Country",
|
|
224
|
+
"postalCode": "Postal Code",
|
|
225
|
+
"key": "Key",
|
|
226
|
+
"value": "Value",
|
|
227
|
+
"unknown": "Unknown",
|
|
228
|
+
"accessLabel": "Access Control",
|
|
229
|
+
"readAccess": "Read Access",
|
|
230
|
+
"writeAccess": "Write Access"
|
|
79
231
|
}
|
|
80
232
|
}
|
package/src/locales/zh.json
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
+
"access": {
|
|
3
|
+
"public": "公开",
|
|
4
|
+
"platform": "平台用户",
|
|
5
|
+
"paid": "付费",
|
|
6
|
+
"private": "私密"
|
|
7
|
+
},
|
|
2
8
|
"source": {
|
|
3
9
|
"type": {
|
|
4
10
|
"news": "新闻",
|
|
@@ -45,11 +51,14 @@
|
|
|
45
51
|
"event": {
|
|
46
52
|
"type": {
|
|
47
53
|
"announcement": "公告",
|
|
54
|
+
"conference": "会议",
|
|
48
55
|
"conversation": "对话",
|
|
56
|
+
"report": "报告",
|
|
49
57
|
"exchange": "投资交易",
|
|
50
58
|
"oil": "石油",
|
|
51
59
|
"trade": "贸易",
|
|
52
60
|
"supplychain-risk": "供应链风险",
|
|
61
|
+
"harbor": "港口",
|
|
53
62
|
"ship": "航运",
|
|
54
63
|
"truck": "陆运",
|
|
55
64
|
"train": "轨道交通",
|
|
@@ -61,7 +70,21 @@
|
|
|
61
70
|
"naval": "海军",
|
|
62
71
|
"tank": "坦克",
|
|
63
72
|
"infantry": "步兵",
|
|
64
|
-
"intelligence": "情报"
|
|
73
|
+
"intelligence": "情报",
|
|
74
|
+
"policy": "政策",
|
|
75
|
+
"border": "边境",
|
|
76
|
+
"election": "选举",
|
|
77
|
+
"currency": "货币",
|
|
78
|
+
"acquisition": "收购",
|
|
79
|
+
"commodity": "商品",
|
|
80
|
+
"electricity": "电力",
|
|
81
|
+
"cyber": "网络",
|
|
82
|
+
"evacuation": "疏散",
|
|
83
|
+
"civil-unrest": "社会动荡",
|
|
84
|
+
"defense": "防御",
|
|
85
|
+
"medical": "医疗",
|
|
86
|
+
"drone": "无人机",
|
|
87
|
+
"satellite": "卫星"
|
|
65
88
|
},
|
|
66
89
|
"title": "标题",
|
|
67
90
|
"description": "描述"
|
|
@@ -76,5 +99,134 @@
|
|
|
76
99
|
"confidence": "置信度",
|
|
77
100
|
"createdDate": "创建日期",
|
|
78
101
|
"updatedDate": "更新日期"
|
|
102
|
+
},
|
|
103
|
+
"common": {
|
|
104
|
+
"error": "错误",
|
|
105
|
+
"reset": "重置",
|
|
106
|
+
"apply": "应用",
|
|
107
|
+
"create": "创建",
|
|
108
|
+
"entity": {
|
|
109
|
+
"Person": "个人",
|
|
110
|
+
"Organization": "组织",
|
|
111
|
+
"Event": "事件",
|
|
112
|
+
"Website": "网站",
|
|
113
|
+
"Source": "信源"
|
|
114
|
+
},
|
|
115
|
+
"required": "此项为必填项",
|
|
116
|
+
"types": {
|
|
117
|
+
"text": "文本",
|
|
118
|
+
"number": "数字",
|
|
119
|
+
"toggle": "开关"
|
|
120
|
+
},
|
|
121
|
+
"remove": "删除",
|
|
122
|
+
"add": "添加",
|
|
123
|
+
"confirm": "确认",
|
|
124
|
+
"cancel": "取消",
|
|
125
|
+
"save": "保存",
|
|
126
|
+
"warning": "警告"
|
|
127
|
+
},
|
|
128
|
+
"components": {
|
|
129
|
+
"inputs": {
|
|
130
|
+
"TimezoneSelect": {
|
|
131
|
+
"select": "请选择时区"
|
|
132
|
+
},
|
|
133
|
+
"RangeDatePicker": {
|
|
134
|
+
"dateLimitExceeded": "日期范围超出限制",
|
|
135
|
+
"dateLimitMessage": "日期范围超出限制,最多选择一个月",
|
|
136
|
+
"dateRange": "日期范围",
|
|
137
|
+
"today": "今天",
|
|
138
|
+
"yesterday": "昨天",
|
|
139
|
+
"lastWeek": "上周",
|
|
140
|
+
"lastMonth": "上个月",
|
|
141
|
+
"selectDateRange": "选择日期范围"
|
|
142
|
+
},
|
|
143
|
+
"CountrySelect": {
|
|
144
|
+
"select": "请选择国家"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"forms": {
|
|
148
|
+
"WebsiteForm": {
|
|
149
|
+
"title": "编辑网站消息"
|
|
150
|
+
},
|
|
151
|
+
"SourceForm": {
|
|
152
|
+
"title": "编辑信源",
|
|
153
|
+
"sourceDescription": "请输入信源详情"
|
|
154
|
+
},
|
|
155
|
+
"RelationForm": {
|
|
156
|
+
"title": "编辑关系",
|
|
157
|
+
"namePattern": "只能包含字母、下划线和减号"
|
|
158
|
+
},
|
|
159
|
+
"PersonForm": {
|
|
160
|
+
"title": "编辑个人信息",
|
|
161
|
+
"name": "姓名"
|
|
162
|
+
},
|
|
163
|
+
"OrganizationForm": {
|
|
164
|
+
"title": "编辑组织信息",
|
|
165
|
+
"name": "组织名称"
|
|
166
|
+
},
|
|
167
|
+
"MonitoringSourceForm": {
|
|
168
|
+
"title": "编辑监控信源",
|
|
169
|
+
"name": "信源名称"
|
|
170
|
+
},
|
|
171
|
+
"InsightForm": {
|
|
172
|
+
"title": "编辑专栏"
|
|
173
|
+
},
|
|
174
|
+
"EventForm": {
|
|
175
|
+
"title": "事件标题",
|
|
176
|
+
"eventDescription": "事件详细描述",
|
|
177
|
+
"minLatitude": "纬度不能小于-90",
|
|
178
|
+
"maxLatitude": "纬度不能大于90",
|
|
179
|
+
"minLongitude": "经度不能小于-180",
|
|
180
|
+
"maxLongitude": "经度不能大于180",
|
|
181
|
+
"mustIncludeAdmin": "必须包含私有权限"
|
|
182
|
+
},
|
|
183
|
+
"BaseForm": {
|
|
184
|
+
"discardChanges": "放弃修改并退出",
|
|
185
|
+
"unsavedChangesWarning": "是否确认放弃修改?注意:所有未保存的修改将丢失。"
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"input": {
|
|
190
|
+
"color": "请选择颜色",
|
|
191
|
+
"icon": "请选择图标"
|
|
192
|
+
},
|
|
193
|
+
"placeholder": {
|
|
194
|
+
"title": "标题",
|
|
195
|
+
"url": "链接",
|
|
196
|
+
"description": "描述",
|
|
197
|
+
"type": "类型",
|
|
198
|
+
"foundedDate": "成立日期",
|
|
199
|
+
"discoveredDate": "发现日期",
|
|
200
|
+
"tags": "标签",
|
|
201
|
+
"attributes": "其它属性",
|
|
202
|
+
"reliability": "可靠性",
|
|
203
|
+
"label": "标签",
|
|
204
|
+
"name": "名称",
|
|
205
|
+
"confidence": "置信度",
|
|
206
|
+
"role": "角色",
|
|
207
|
+
"nationality": "国籍",
|
|
208
|
+
"birthDate": "出生日期",
|
|
209
|
+
"source": {
|
|
210
|
+
"type": "信源类型"
|
|
211
|
+
},
|
|
212
|
+
"lastReviewed": "上次检查",
|
|
213
|
+
"enter": "输入",
|
|
214
|
+
"date": "日期",
|
|
215
|
+
"location": "位置",
|
|
216
|
+
"address": "地址",
|
|
217
|
+
"locality": "城市",
|
|
218
|
+
"subLocality": "次级区域(可选)",
|
|
219
|
+
"adminArea": "行政区域",
|
|
220
|
+
"subAdminArea": "次级行政区域(可选)",
|
|
221
|
+
"latitude": "纬度",
|
|
222
|
+
"longitude": "经度",
|
|
223
|
+
"country": "国家",
|
|
224
|
+
"postalCode": "邮政编码",
|
|
225
|
+
"key": "标签",
|
|
226
|
+
"value": "内容",
|
|
227
|
+
"unknown": "未知",
|
|
228
|
+
"accessLabel": "访问权限",
|
|
229
|
+
"readAccess": "读取权限",
|
|
230
|
+
"writeAccess": "写入权限"
|
|
79
231
|
}
|
|
80
232
|
}
|
package/src/main.tsx
CHANGED
|
@@ -1,22 +1,38 @@
|
|
|
1
1
|
import "@mantine/core/styles.css";
|
|
2
|
+
import "@mantine/dates/styles.css";
|
|
3
|
+
import "@mantine/notifications/styles.css";
|
|
2
4
|
import i18n from "./i18n";
|
|
3
5
|
import App from "./App";
|
|
4
6
|
import { StrictMode } from "react";
|
|
5
7
|
import { createRoot } from "react-dom/client";
|
|
6
|
-
import { createTheme, MantineProvider } from "@mantine/core";
|
|
8
|
+
import { createTheme, MantineProvider, Modal, Popover } from "@mantine/core";
|
|
7
9
|
import { I18nextProvider } from "react-i18next";
|
|
10
|
+
import { ModalsProvider } from "@mantine/modals";
|
|
8
11
|
|
|
9
12
|
const theme = createTheme({
|
|
10
13
|
primaryColor: "blue",
|
|
11
14
|
autoContrast: true,
|
|
15
|
+
components: {
|
|
16
|
+
Modal: Modal.extend({
|
|
17
|
+
defaultProps: { zIndex: 1200 },
|
|
18
|
+
}),
|
|
19
|
+
Popover: Popover.extend({
|
|
20
|
+
defaultProps: { zIndex: 1300 },
|
|
21
|
+
}),
|
|
22
|
+
Tooltip: {
|
|
23
|
+
defaultProps: { zIndex: 1400 },
|
|
24
|
+
},
|
|
25
|
+
},
|
|
12
26
|
});
|
|
13
27
|
|
|
14
28
|
createRoot(document.getElementById("root")!).render(
|
|
15
29
|
<StrictMode>
|
|
16
30
|
<MantineProvider theme={theme}>
|
|
17
|
-
<
|
|
18
|
-
<
|
|
19
|
-
|
|
31
|
+
<ModalsProvider>
|
|
32
|
+
<I18nextProvider i18n={i18n}>
|
|
33
|
+
<App />
|
|
34
|
+
</I18nextProvider>
|
|
35
|
+
</ModalsProvider>
|
|
20
36
|
</MantineProvider>
|
|
21
37
|
</StrictMode>,
|
|
22
38
|
);
|