@mchp-mcc/clock-16bit-driver 1.0.1 → 1.0.2
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/Changelog.md +7 -0
- package/Readme.md +7 -2
- package/output/creator.js +3328 -3
- package/output/creator.js.map +1 -1
- package/output/index.html +25 -0
- package/output/nullPrototype.json +11 -1
- package/output/processor.js +6096 -16
- package/output/processor.js.map +1 -1
- package/output/reducer.js +17774 -0
- package/output/reducer.js.map +1 -0
- package/output/resources/help-icon.png +0 -0
- package/output/resources/loading-status.gif +0 -0
- package/package.json +34 -10
- package/src/App.tsx +54 -0
- package/src/DerivedData.tsx +219 -13
- package/src/actions.ts +22 -0
- package/src/catalog.json +25 -0
- package/src/index.tsx +48 -0
- package/src/moduleConfig.json +13 -3
- package/src/reducer.tsx +94 -0
@@ -0,0 +1,25 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7
|
+
</head>
|
8
|
+
|
9
|
+
<body style="font-size: .875em; line-height: 1.5; margin: 0;">
|
10
|
+
<div id="root">
|
11
|
+
<div id="loadingContent" style="text-align: center;">
|
12
|
+
<h2 id="loadingHeader"
|
13
|
+
style="line-height: 1.5; margin-bottom: 20px; margin-top: 10px; font-size: 1.75em;
|
14
|
+
font-weight: bold; font-family: 'Times New Roman', Times, serif;"
|
15
|
+
>
|
16
|
+
MCC's Code Configurator Library
|
17
|
+
</h2>
|
18
|
+
<p id="loadingDesc" style="font-family: 'Times New Roman', Times, serif;" >Loading Module... </p>
|
19
|
+
<!-- Gif generated from https://www.npmjs.com/package/react-spinners -->
|
20
|
+
<img src="./resources/loading-status.gif" alt="Loading Module..." height="50px" width="50px"/>
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
<script src="reducer.js"></script></body>
|
24
|
+
|
25
|
+
</html>
|
@@ -4,7 +4,7 @@
|
|
4
4
|
"clock_16bit_config_interface": {
|
5
5
|
"interfaceId": {
|
6
6
|
"name": "clock-16bit-config-interface",
|
7
|
-
"version": "1.
|
7
|
+
"version": "^1.1.0"
|
8
8
|
},
|
9
9
|
"isRequired": true
|
10
10
|
}
|
@@ -19,6 +19,16 @@
|
|
19
19
|
}
|
20
20
|
}
|
21
21
|
]
|
22
|
+
},
|
23
|
+
"clock_16bit_ux_interface": {
|
24
|
+
"interfaces": [
|
25
|
+
{
|
26
|
+
"interfaceId": {
|
27
|
+
"name": "clock-16bit-ux-interface",
|
28
|
+
"version": "0.1.0"
|
29
|
+
}
|
30
|
+
}
|
31
|
+
]
|
22
32
|
}
|
23
33
|
},
|
24
34
|
"isEntryPoint": true
|