@uniformdev/uniform-nuxt 20.49.1 → 20.49.3-alpha.47
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/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import { resolve } from 'path';
|
|
|
3
3
|
import { fileURLToPath } from 'url';
|
|
4
4
|
|
|
5
5
|
const uniformContextProxyPath = "uniform/context/instance.ts";
|
|
6
|
-
const module = defineNuxtModule({
|
|
6
|
+
const module$1 = defineNuxtModule({
|
|
7
7
|
meta: {
|
|
8
8
|
name: "nuxt-uniform",
|
|
9
9
|
configKey: "uniform"
|
|
@@ -62,4 +62,4 @@ function optimizeDeps(deps) {
|
|
|
62
62
|
});
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
-
export { module as default };
|
|
65
|
+
export { module$1 as default };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { linkParamValueToHtmlAttributes } from "@uniformdev/richtext";
|
|
2
2
|
import { defineNuxtLink } from "nuxt/app";
|
|
3
3
|
import { h } from "vue";
|
|
4
4
|
const NuxtRichTextLink = defineNuxtLink({
|
|
@@ -6,11 +6,5 @@ const NuxtRichTextLink = defineNuxtLink({
|
|
|
6
6
|
});
|
|
7
7
|
export const NuxtLinkRichTextNode = (props, context) => {
|
|
8
8
|
const { link } = props.node;
|
|
9
|
-
return h(
|
|
10
|
-
NuxtRichTextLink,
|
|
11
|
-
{
|
|
12
|
-
href: linkParamValueToHref(link)
|
|
13
|
-
},
|
|
14
|
-
context.slots
|
|
15
|
-
);
|
|
9
|
+
return h(NuxtRichTextLink, linkParamValueToHtmlAttributes(link), context.slots);
|
|
16
10
|
};
|
package/dist/runtime/plugin.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
32
32
|
sourceCache?: "edge-cdn-cache" | "long-term-cache" | "api-cache";
|
|
33
33
|
cacheLocation?: string;
|
|
34
34
|
requestId?: string;
|
|
35
|
+
ignoredQueryParams?: string[];
|
|
35
36
|
};
|
|
36
37
|
configRetrieval?: {
|
|
37
38
|
duration: number;
|
|
@@ -50,6 +51,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
50
51
|
sourceCache?: string;
|
|
51
52
|
statusCodes: number[];
|
|
52
53
|
};
|
|
54
|
+
projection?: string;
|
|
53
55
|
data: unknown;
|
|
54
56
|
}[];
|
|
55
57
|
};
|
|
@@ -74,6 +76,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
74
76
|
locale?: string;
|
|
75
77
|
conditionIndex?: number;
|
|
76
78
|
clauseIndex?: number;
|
|
79
|
+
statusCode?: number;
|
|
77
80
|
}[];
|
|
78
81
|
warnings?: {
|
|
79
82
|
componentId?: string;
|
|
@@ -96,6 +99,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
96
99
|
locale?: string;
|
|
97
100
|
conditionIndex?: number;
|
|
98
101
|
clauseIndex?: number;
|
|
102
|
+
statusCode?: number;
|
|
99
103
|
}[];
|
|
100
104
|
infos?: {
|
|
101
105
|
componentId?: string;
|
|
@@ -118,6 +122,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
118
122
|
locale?: string;
|
|
119
123
|
conditionIndex?: number;
|
|
120
124
|
clauseIndex?: number;
|
|
125
|
+
statusCode?: number;
|
|
121
126
|
}[];
|
|
122
127
|
} & {
|
|
123
128
|
state: number;
|
|
@@ -125,6 +130,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
125
130
|
projectId: string;
|
|
126
131
|
created: string;
|
|
127
132
|
modified: string;
|
|
133
|
+
deletedAt?: string;
|
|
128
134
|
creator?: string;
|
|
129
135
|
author?: string;
|
|
130
136
|
categoryId?: string;
|
|
@@ -818,6 +824,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
818
824
|
sourceCache?: "edge-cdn-cache" | "long-term-cache" | "api-cache";
|
|
819
825
|
cacheLocation?: string;
|
|
820
826
|
requestId?: string;
|
|
827
|
+
ignoredQueryParams?: string[];
|
|
821
828
|
};
|
|
822
829
|
configRetrieval?: {
|
|
823
830
|
duration: number;
|
|
@@ -836,6 +843,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
836
843
|
sourceCache?: string;
|
|
837
844
|
statusCodes: number[];
|
|
838
845
|
};
|
|
846
|
+
projection?: string;
|
|
839
847
|
data: unknown;
|
|
840
848
|
}[];
|
|
841
849
|
};
|
|
@@ -860,6 +868,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
860
868
|
locale?: string;
|
|
861
869
|
conditionIndex?: number;
|
|
862
870
|
clauseIndex?: number;
|
|
871
|
+
statusCode?: number;
|
|
863
872
|
}[];
|
|
864
873
|
warnings?: {
|
|
865
874
|
componentId?: string;
|
|
@@ -882,6 +891,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
882
891
|
locale?: string;
|
|
883
892
|
conditionIndex?: number;
|
|
884
893
|
clauseIndex?: number;
|
|
894
|
+
statusCode?: number;
|
|
885
895
|
}[];
|
|
886
896
|
infos?: {
|
|
887
897
|
componentId?: string;
|
|
@@ -904,6 +914,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
904
914
|
locale?: string;
|
|
905
915
|
conditionIndex?: number;
|
|
906
916
|
clauseIndex?: number;
|
|
917
|
+
statusCode?: number;
|
|
907
918
|
}[];
|
|
908
919
|
} & {
|
|
909
920
|
state: number;
|
|
@@ -911,6 +922,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
911
922
|
projectId: string;
|
|
912
923
|
created: string;
|
|
913
924
|
modified: string;
|
|
925
|
+
deletedAt?: string;
|
|
914
926
|
creator?: string;
|
|
915
927
|
author?: string;
|
|
916
928
|
categoryId?: string;
|
|
@@ -1615,6 +1627,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
1615
1627
|
sourceCache?: "edge-cdn-cache" | "long-term-cache" | "api-cache";
|
|
1616
1628
|
cacheLocation?: string;
|
|
1617
1629
|
requestId?: string;
|
|
1630
|
+
ignoredQueryParams?: string[];
|
|
1618
1631
|
};
|
|
1619
1632
|
configRetrieval?: {
|
|
1620
1633
|
duration: number;
|
|
@@ -1633,6 +1646,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
1633
1646
|
sourceCache?: string;
|
|
1634
1647
|
statusCodes: number[];
|
|
1635
1648
|
};
|
|
1649
|
+
projection?: string;
|
|
1636
1650
|
data: unknown;
|
|
1637
1651
|
}[];
|
|
1638
1652
|
};
|
|
@@ -1657,6 +1671,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
1657
1671
|
locale?: string;
|
|
1658
1672
|
conditionIndex?: number;
|
|
1659
1673
|
clauseIndex?: number;
|
|
1674
|
+
statusCode?: number;
|
|
1660
1675
|
}[];
|
|
1661
1676
|
warnings?: {
|
|
1662
1677
|
componentId?: string;
|
|
@@ -1679,6 +1694,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
1679
1694
|
locale?: string;
|
|
1680
1695
|
conditionIndex?: number;
|
|
1681
1696
|
clauseIndex?: number;
|
|
1697
|
+
statusCode?: number;
|
|
1682
1698
|
}[];
|
|
1683
1699
|
infos?: {
|
|
1684
1700
|
componentId?: string;
|
|
@@ -1701,6 +1717,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
1701
1717
|
locale?: string;
|
|
1702
1718
|
conditionIndex?: number;
|
|
1703
1719
|
clauseIndex?: number;
|
|
1720
|
+
statusCode?: number;
|
|
1704
1721
|
}[];
|
|
1705
1722
|
} & {
|
|
1706
1723
|
state: number;
|
|
@@ -1708,6 +1725,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
1708
1725
|
projectId: string;
|
|
1709
1726
|
created: string;
|
|
1710
1727
|
modified: string;
|
|
1728
|
+
deletedAt?: string;
|
|
1711
1729
|
creator?: string;
|
|
1712
1730
|
author?: string;
|
|
1713
1731
|
categoryId?: string;
|
|
@@ -2401,6 +2419,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
2401
2419
|
sourceCache?: "edge-cdn-cache" | "long-term-cache" | "api-cache";
|
|
2402
2420
|
cacheLocation?: string;
|
|
2403
2421
|
requestId?: string;
|
|
2422
|
+
ignoredQueryParams?: string[];
|
|
2404
2423
|
};
|
|
2405
2424
|
configRetrieval?: {
|
|
2406
2425
|
duration: number;
|
|
@@ -2419,6 +2438,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
2419
2438
|
sourceCache?: string;
|
|
2420
2439
|
statusCodes: number[];
|
|
2421
2440
|
};
|
|
2441
|
+
projection?: string;
|
|
2422
2442
|
data: unknown;
|
|
2423
2443
|
}[];
|
|
2424
2444
|
};
|
|
@@ -2443,6 +2463,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
2443
2463
|
locale?: string;
|
|
2444
2464
|
conditionIndex?: number;
|
|
2445
2465
|
clauseIndex?: number;
|
|
2466
|
+
statusCode?: number;
|
|
2446
2467
|
}[];
|
|
2447
2468
|
warnings?: {
|
|
2448
2469
|
componentId?: string;
|
|
@@ -2465,6 +2486,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
2465
2486
|
locale?: string;
|
|
2466
2487
|
conditionIndex?: number;
|
|
2467
2488
|
clauseIndex?: number;
|
|
2489
|
+
statusCode?: number;
|
|
2468
2490
|
}[];
|
|
2469
2491
|
infos?: {
|
|
2470
2492
|
componentId?: string;
|
|
@@ -2487,6 +2509,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
2487
2509
|
locale?: string;
|
|
2488
2510
|
conditionIndex?: number;
|
|
2489
2511
|
clauseIndex?: number;
|
|
2512
|
+
statusCode?: number;
|
|
2490
2513
|
}[];
|
|
2491
2514
|
} & {
|
|
2492
2515
|
state: number;
|
|
@@ -2494,6 +2517,7 @@ declare const _default: import("#app").Plugin<{
|
|
|
2494
2517
|
projectId: string;
|
|
2495
2518
|
created: string;
|
|
2496
2519
|
modified: string;
|
|
2520
|
+
deletedAt?: string;
|
|
2497
2521
|
creator?: string;
|
|
2498
2522
|
author?: string;
|
|
2499
2523
|
categoryId?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/uniform-nuxt",
|
|
3
|
-
"version": "20.49.
|
|
3
|
+
"version": "20.49.3-alpha.47+9aed70a64d",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -24,29 +24,28 @@
|
|
|
24
24
|
"prepack": "nuxt-module-build build",
|
|
25
25
|
"build": "nuxt-module-build build",
|
|
26
26
|
"clean": "rimraf dist",
|
|
27
|
-
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
|
|
28
27
|
"format": "prettier --write \"src/**/*.{js,ts,tsx}\"",
|
|
29
|
-
"
|
|
28
|
+
"apidocs-extract": "api-extractor run --local"
|
|
30
29
|
},
|
|
31
30
|
"dependencies": {
|
|
32
|
-
"@nuxt/kit": "4.
|
|
33
|
-
"@uniformdev/canvas": "20.49.
|
|
34
|
-
"@uniformdev/canvas-vue": "20.49.
|
|
35
|
-
"@uniformdev/context": "20.49.
|
|
36
|
-
"@uniformdev/context-vue": "20.49.
|
|
37
|
-
"@uniformdev/richtext": "20.49.
|
|
31
|
+
"@nuxt/kit": "4.4.8",
|
|
32
|
+
"@uniformdev/canvas": "20.49.3-alpha.47+9aed70a64d",
|
|
33
|
+
"@uniformdev/canvas-vue": "20.49.3-alpha.47+9aed70a64d",
|
|
34
|
+
"@uniformdev/context": "20.49.3-alpha.47+9aed70a64d",
|
|
35
|
+
"@uniformdev/context-vue": "20.49.3-alpha.47+9aed70a64d",
|
|
36
|
+
"@uniformdev/richtext": "20.49.3-alpha.47+9aed70a64d"
|
|
38
37
|
},
|
|
39
38
|
"devDependencies": {
|
|
40
39
|
"@nuxt/module-builder": "1.0.2",
|
|
41
|
-
"@nuxt/schema": "4.
|
|
40
|
+
"@nuxt/schema": "4.4.8",
|
|
42
41
|
"@nuxtjs/eslint-config-typescript": "12.1.0",
|
|
43
|
-
"esbuild": "0.
|
|
44
|
-
"nuxt": "4.
|
|
45
|
-
"vue": "3.5.
|
|
42
|
+
"esbuild": "0.28.1",
|
|
43
|
+
"nuxt": "4.4.8",
|
|
44
|
+
"vue": "3.5.38",
|
|
46
45
|
"vue-router": "4.5.1"
|
|
47
46
|
},
|
|
48
47
|
"publishConfig": {
|
|
49
48
|
"access": "public"
|
|
50
49
|
},
|
|
51
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "9aed70a64de0ca177d27ea99dc25f1ad053f87ad"
|
|
52
51
|
}
|