@manyducks.co/dolla 2.0.0-alpha.36 → 2.0.0-alpha.37
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 +1 -1
- package/dist/core/dolla.d.ts +1 -1
- package/dist/core/signals.d.ts +0 -3
- package/dist/http/index.d.ts +0 -1
- package/dist/index.js +1234 -854
- package/dist/index.js.map +1 -1
- package/dist/jsx-dev-runtime.js +20 -14
- package/dist/jsx-dev-runtime.js.map +1 -1
- package/dist/jsx-runtime.js +27 -16
- package/dist/jsx-runtime.js.map +1 -1
- package/dist/markup-Px0heVon.js +1465 -0
- package/dist/markup-Px0heVon.js.map +1 -0
- package/dist/typeChecking.test.d.ts +1 -0
- package/dist/types.d.ts +0 -1
- package/package.json +2 -1
- package/vite.config.js +5 -3
- package/dist/core/_batch.d.ts +0 -21
- package/dist/core/_signals_new.d.ts +0 -130
- package/dist/markup-ILMFXzoo.js +0 -1442
- package/dist/markup-ILMFXzoo.js.map +0 -1
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ Dolla's goals include:
|
|
|
35
35
|
A basic view. Note that the view function is called exactly once when the view is first mounted. All changes to DOM nodes thereafter happen as a result of `$state` values changing.
|
|
36
36
|
|
|
37
37
|
```js
|
|
38
|
-
import Dolla, { atom,
|
|
38
|
+
import Dolla, { atom, html } from "@manyducks.co/dolla";
|
|
39
39
|
|
|
40
40
|
function Counter() {
|
|
41
41
|
const count = atom(0);
|
package/dist/core/dolla.d.ts
CHANGED
|
@@ -125,4 +125,4 @@ export declare class Dolla implements StoreProviderContext, StoreConsumerContext
|
|
|
125
125
|
*/
|
|
126
126
|
constructMarkup(markup: Markup | Markup[]): MarkupElement;
|
|
127
127
|
}
|
|
128
|
-
export declare function getDefaultConsole():
|
|
128
|
+
export declare function getDefaultConsole(): Console | undefined;
|
package/dist/core/signals.d.ts
CHANGED
|
@@ -36,9 +36,6 @@ export interface ReactiveOptions<T> {
|
|
|
36
36
|
}
|
|
37
37
|
export declare class Atom<T> implements Reactive<T> {
|
|
38
38
|
#private;
|
|
39
|
-
/**
|
|
40
|
-
* A label for debugging purposes.
|
|
41
|
-
*/
|
|
42
39
|
name?: string;
|
|
43
40
|
constructor(signal: Signal<T>, options?: ReactiveOptions<T>);
|
|
44
41
|
get value(): T;
|