-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall_includes_template.txt
80 lines (70 loc) · 1.79 KB
/
all_includes_template.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import * as React from "react";
import "./styles.css";
import "antd/dist/antd.css";
import { logo } from "./img/logo";
import keysvg from "./img/svgs/key.svg";
import {
Avatar,
Button,
Divider,
Modal,
Radio,
Input,
List,
message,
Alert,
Steps,
Typography,
Space,
DatePicker,
Collapse,
Tag,
Select,
TimePicker,
Empty
} from "antd";
import {
CaretUpOutlined,
CheckOutlined,
CopyOutlined,
DeleteOutlined,
SmileFilled,
SmileOutlined
} from "@ant-design/icons";
import * as encryptor from "simple-encryptor";
import { setTheme, getTheme, ToggleDarkMode } from "./layout/darkmode";
import { CreateNewKeys } from "./components/CreateNewKeys";
import { AddLockData } from "./components/AddLockData";
import { ShareForgetKeys } from "./components/ShareOrForget";
import { MobileDataHelperModal } from "./components/MobileDataHelperModal";
import { AlertType, ResultAlert } from "./components/ResultAlert";
import { StartUnlock } from "./components/StartUnlock";
import { DebugData } from "./components/DebugData";
import { AvailableData } from "./components/AvailData";
import {
fetchNewGroup,
Group,
fetchEncPass,
fetchStartUnlock,
fetchFinishUnlock
} from "./api/api-def";
import { Provider } from "react-redux";
import { store, useAppDispatch, useAppSelector } from "./redux/store";
import {
addKey,
addUnLockedData,
delKey,
delLockedData,
delUnLockedData,
KeyDef,
LockedDataDef,
UnlockDef,
clearAll
} from "./redux/main-slice";
import { default as prettyms } from "pretty-ms";
const { TextArea } = Input;
const { Option } = Select;
const { Panel } = Collapse;
const { Title, Text, Paragraph } = Typography;
const { RangePicker } = DatePicker;
const { Step } = Steps;