cronixui 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/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,8 +21,8 @@ npm install cronixui
|
|
|
21
21
|
### CDN
|
|
22
22
|
|
|
23
23
|
```html
|
|
24
|
-
<link rel="stylesheet" href="https://unpkg.com/cronixui/dist/cronixui.css">
|
|
25
|
-
<script src="https://unpkg.com/cronixui/dist/cronixui.js"></script>
|
|
24
|
+
<link rel="stylesheet" href="https://unpkg.com/cronixui@1.0.1/packages/web/dist/cronixui.css">
|
|
25
|
+
<script src="https://unpkg.com/cronixui@1.0.1/packages/web/dist/cronixui.js"></script>
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
### React
|
|
@@ -44,14 +44,14 @@ Coming soon to NuGet.
|
|
|
44
44
|
<meta charset="UTF-8">
|
|
45
45
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
46
46
|
<title>My App</title>
|
|
47
|
-
<link rel="stylesheet" href="https://unpkg.com/cronixui/dist/cronixui.css">
|
|
47
|
+
<link rel="stylesheet" href="https://unpkg.com/cronixui@1.0.1/packages/web/dist/cronixui.css">
|
|
48
48
|
</head>
|
|
49
49
|
<body>
|
|
50
50
|
<div class="cn-container">
|
|
51
51
|
<h1 class="cn-h1">Hello, CronixUI!</h1>
|
|
52
52
|
<button class="cn-btn cn-btn-primary">Get Started</button>
|
|
53
53
|
</div>
|
|
54
|
-
<script src="https://unpkg.com/cronixui/dist/cronixui.js"></script>
|
|
54
|
+
<script src="https://unpkg.com/cronixui@1.0.1/packages/web/dist/cronixui.js"></script>
|
|
55
55
|
</body>
|
|
56
56
|
</html>
|
|
57
57
|
```
|