juxscript 1.1.299 → 1.1.301
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/dist/lib/index.d.ts +4 -1
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/lib/index.js +5 -2
- package/package.json +1 -1
package/dist/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { tag, div, h1, h2, h3, h4, h5, h6, p, span, pre } from "./components/tag.js";
|
|
1
|
+
import { tag, div, h1, h2, h3, h4, h5, h6, p, span, pre, code } from "./components/tag.js";
|
|
2
2
|
import { include } from "./components/include.js";
|
|
3
3
|
import { input } from "./components/input.js";
|
|
4
4
|
import { select } from "./components/select.js";
|
|
@@ -8,6 +8,7 @@ import { pageState } from "./state/pageState.js";
|
|
|
8
8
|
import { data } from "./components/data.js";
|
|
9
9
|
import { store } from "./components/store.js";
|
|
10
10
|
import { devtools } from "./devtools/devtools.js";
|
|
11
|
+
import { style } from "./components/style.js";
|
|
11
12
|
export declare const jux: {
|
|
12
13
|
tag: typeof tag;
|
|
13
14
|
div: typeof div;
|
|
@@ -20,6 +21,7 @@ export declare const jux: {
|
|
|
20
21
|
p: typeof p;
|
|
21
22
|
span: typeof span;
|
|
22
23
|
pre: typeof pre;
|
|
24
|
+
code: typeof code;
|
|
23
25
|
include: typeof include;
|
|
24
26
|
input: typeof input;
|
|
25
27
|
select: typeof select;
|
|
@@ -29,6 +31,7 @@ export declare const jux: {
|
|
|
29
31
|
data: typeof data;
|
|
30
32
|
store: typeof store;
|
|
31
33
|
devtools: typeof devtools;
|
|
34
|
+
style: typeof style;
|
|
32
35
|
};
|
|
33
36
|
export { pageState };
|
|
34
37
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAC;AAC3F,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC9C,OAAO,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAChD,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACnE,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACjD,OAAO,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAC;AAC5C,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAE9C,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;CAkBf,CAAA;AAED,OAAO,EAAE,SAAS,EAAE,CAAC"}
|
package/dist/lib/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { tag, div, h1, h2, h3, h4, h5, h6, p, span, pre } from "./components/tag.js";
|
|
1
|
+
import { tag, div, h1, h2, h3, h4, h5, h6, p, span, pre, code } from "./components/tag.js";
|
|
2
2
|
import { include } from "./components/include.js";
|
|
3
3
|
import { input } from "./components/input.js";
|
|
4
4
|
import { select } from "./components/select.js";
|
|
@@ -8,6 +8,7 @@ import { pageState } from "./state/pageState.js";
|
|
|
8
8
|
import { data } from "./components/data.js";
|
|
9
9
|
import { store } from "./components/store.js";
|
|
10
10
|
import { devtools } from "./devtools/devtools.js";
|
|
11
|
+
import { style } from "./components/style.js";
|
|
11
12
|
export const jux = {
|
|
12
13
|
tag,
|
|
13
14
|
div,
|
|
@@ -15,6 +16,7 @@ export const jux = {
|
|
|
15
16
|
p,
|
|
16
17
|
span,
|
|
17
18
|
pre,
|
|
19
|
+
code,
|
|
18
20
|
include,
|
|
19
21
|
input,
|
|
20
22
|
select,
|
|
@@ -23,7 +25,8 @@ export const jux = {
|
|
|
23
25
|
checkboxGroup,
|
|
24
26
|
data,
|
|
25
27
|
store,
|
|
26
|
-
devtools
|
|
28
|
+
devtools,
|
|
29
|
+
style
|
|
27
30
|
};
|
|
28
31
|
export { pageState };
|
|
29
32
|
jux.watch = pageState.__watch;
|