hans-ui-design-lib 1.0.22 → 1.0.26
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 -9
- package/dist/index.cjs.js +50 -71
- package/dist/index.css +1 -1
- package/dist/index.d.ts +16 -2
- package/dist/index.es.js +3816 -3809
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -113,11 +113,11 @@ If you're using other Technologies like Angular for example, you don't have to i
|
|
|
113
113
|
...
|
|
114
114
|
<head>
|
|
115
115
|
...
|
|
116
|
-
<link
|
|
117
|
-
rel="stylesheet"
|
|
118
|
-
href="https://hans-ui-design-lib-cdn.vercel.app/hans-ui-design-lib.css?v=1.0.
|
|
119
|
-
/>
|
|
120
|
-
<script src="https://hans-ui-design-lib-cdn.vercel.app/hans-ui-web-components.js?v=1.0.
|
|
116
|
+
<link
|
|
117
|
+
rel="stylesheet"
|
|
118
|
+
href="https://hans-ui-design-lib-cdn.vercel.app/hans-ui-design-lib.css?v=1.0.22"
|
|
119
|
+
/>
|
|
120
|
+
<script src="https://hans-ui-design-lib-cdn.vercel.app/hans-ui-web-components.js?v=1.0.22"></script>
|
|
121
121
|
</head>
|
|
122
122
|
<body>
|
|
123
123
|
...
|
|
@@ -362,9 +362,9 @@ Example:
|
|
|
362
362
|
```html
|
|
363
363
|
<link
|
|
364
364
|
rel="stylesheet"
|
|
365
|
-
href="https://hans-ui-design-lib-cdn.vercel.app/hans-ui-design-lib.css?v=1.0.
|
|
365
|
+
href="https://hans-ui-design-lib-cdn.vercel.app/hans-ui-design-lib.css?v=1.0.22"
|
|
366
366
|
/>
|
|
367
|
-
<script src="https://hans-ui-design-lib-cdn.vercel.app/hans-ui-web-components.js?v=1.0.
|
|
367
|
+
<script src="https://hans-ui-design-lib-cdn.vercel.app/hans-ui-web-components.js?v=1.0.22"></script>
|
|
368
368
|
```
|
|
369
369
|
|
|
370
370
|
Or with immutable versioned files:
|
|
@@ -372,9 +372,9 @@ Or with immutable versioned files:
|
|
|
372
372
|
```html
|
|
373
373
|
<link
|
|
374
374
|
rel="stylesheet"
|
|
375
|
-
href="https://hans-ui-design-lib-cdn.vercel.app/hans-ui-design-lib-1.0.
|
|
375
|
+
href="https://hans-ui-design-lib-cdn.vercel.app/hans-ui-design-lib-1.0.22.css"
|
|
376
376
|
/>
|
|
377
|
-
<script src="https://hans-ui-design-lib-cdn.vercel.app/hans-ui-web-components-1.0.
|
|
377
|
+
<script src="https://hans-ui-design-lib-cdn.vercel.app/hans-ui-web-components-1.0.22.js"></script>
|
|
378
378
|
```
|
|
379
379
|
|
|
380
380
|
### Release flow for npm + CDN
|