mini-van-plate
Advanced tools
Comparing version 0.6.0-rc.0 to 0.6.0-rc.1
{ | ||
"name": "mini-van-plate", | ||
"version": "0.6.0-rc.0", | ||
"version": "0.6.0-rc.1", | ||
"description": "A minimalist template engine for DOM generation and manipulation, working for both client-side and server-side rendering", | ||
@@ -5,0 +5,0 @@ "files": [ |
@@ -157,3 +157,3 @@ # **Mini-Van**: A Minimalist Template Engine for Client/Server-side Rendering without JSX | ||
```typescript | ||
import van from "https://deno.land/x/minivan@0.5.7/src/van-plate.js" | ||
import van from "https://deno.land/x/minivan@0.6.0/src/van-plate.js" | ||
@@ -199,3 +199,3 @@ const {a, body, li, p, ul} = van.tags | ||
import { DOMParser } from "https://deno.land/x/deno_dom@v0.1.38/deno-dom-wasm.ts" | ||
import van from "https://deno.land/x/minivan@0.5.7/src/mini-van.js" | ||
import van from "https://deno.land/x/minivan@0.6.0/src/mini-van.js" | ||
@@ -240,3 +240,3 @@ const document = new DOMParser().parseFromString("", "text/html")! | ||
```javascript | ||
import van from "https://cdn.jsdelivr.net/gh/vanjs-org/mini-van/public/mini-van-0.5.7.min.js" | ||
import van from "https://cdn.jsdelivr.net/gh/vanjs-org/mini-van/public/mini-van-0.6.0.min.js" | ||
``` | ||
@@ -247,6 +247,6 @@ | ||
```html | ||
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/vanjs-org/mini-van/public/mini-van-0.5.7.nomodule.min.js"></script> | ||
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/vanjs-org/mini-van/public/mini-van-0.6.0.nomodule.min.js"></script> | ||
``` | ||
Alternative, you can download the files ([`mini-van-0.5.7.min.js`](https://vanjs.org/autodownload?file=mini-van-0.5.7.min.js), [`mini-van-0.5.7.nomodule.min.js`](https://vanjs.org/autodownload?file=mini-van-0.5.7.nomodule.min.js)) and serve them locally. | ||
Alternative, you can download the files ([`mini-van-0.6.0.min.js`](https://vanjs.org/autodownload?file=mini-van-0.6.0.min.js), [`mini-van-0.6.0.nomodule.min.js`](https://vanjs.org/autodownload?file=mini-van-0.6.0.nomodule.min.js)) and serve them locally. | ||
@@ -253,0 +253,0 @@ You can find all relevant **Mini-Van** files in this [Download Table](https://vanjs.org/minivan#download-table). |
@@ -29,3 +29,3 @@ export interface State<T> { | ||
readonly raw: <T extends object>(obj: T) => T; | ||
readonly list: <T extends object, ElementType>(container: (() => ElementType) | ElementType, items: T, itemFunc: (v: State<ValueType<T>>, deleter: () => void, k: KeyType<T>) => any) => ElementType; | ||
readonly list: <T extends object>(container: any, items: T, itemFunc: (v: State<ValueType<T>>, deleter: () => void, k: KeyType<T>) => any) => any; | ||
readonly replace: <T extends object>(obj: T, replacement: ReplacementFunc<T> | T) => T; | ||
@@ -32,0 +32,0 @@ readonly compact: <T extends object>(obj: T) => T; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24022