@n1k1t/mock-server 0.1.14 → 0.1.16
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/README.md +9 -124
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -4
- package/public/index.html +8 -3
- package/public/scripts/main.js +305 -108
- package/public/styles/fa-all.css +1 -1
- package/public/styles/main.css +61 -12
package/public/index.html
CHANGED
|
@@ -4,18 +4,23 @@
|
|
|
4
4
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>Mock server</title>
|
|
7
|
-
<link rel="stylesheet" href="
|
|
8
|
-
<link rel="stylesheet" href="
|
|
7
|
+
<link rel="stylesheet" href="styles/main.css">
|
|
8
|
+
<link rel="stylesheet" href="styles/fa-all.css">
|
|
9
9
|
<link type="image/png" sizes="120x120" rel="icon" href="images/favicon.png">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<header>
|
|
13
13
|
<div id="container-select" class="buttons-container">
|
|
14
|
+
<button class="icon-only" id="switch-to-settings-container"><i class="fas fa-cog"></i></button>
|
|
14
15
|
<button id="switch-to-expectations-container" class="checked"><i class="fas fa-magic"></i>Expectations</button>
|
|
15
16
|
<button id="switch-to-history-container"><i class="fas fa-history"></i>History</button>
|
|
16
17
|
</div>
|
|
17
18
|
</header>
|
|
18
19
|
|
|
20
|
+
<section id="settings">
|
|
21
|
+
<div id="config"></div>
|
|
22
|
+
</section>
|
|
23
|
+
|
|
19
24
|
<section id="expectations">
|
|
20
25
|
<div id="config"></div>
|
|
21
26
|
</section>
|
|
@@ -25,6 +30,6 @@
|
|
|
25
30
|
</section>
|
|
26
31
|
|
|
27
32
|
<div class="popups-container"></div>
|
|
28
|
-
<script src="
|
|
33
|
+
<script src="scripts/main.js"></script>
|
|
29
34
|
</body>
|
|
30
35
|
</html>
|