@fluid-app/fluid-cli-widget 0.1.5 → 0.1.7
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-app/fluid-cli-widget",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Fluid CLI plugin for standalone widget package workflows",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"commander": "^12.0.0",
|
|
24
24
|
"ora": "^8.0.0",
|
|
25
25
|
"prompts": "^2.4.2",
|
|
26
|
-
"@fluid-app/fluid-cli
|
|
27
|
-
"@fluid-app/fluid-cli": "0.1.
|
|
26
|
+
"@fluid-app/fluid-cli": "0.1.12",
|
|
27
|
+
"@fluid-app/fluid-cli-portal": "0.1.35"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "^24",
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
.fluid-widget-preview-shell {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
min-height: 100vh;
|
|
4
|
+
padding: 48px 24px;
|
|
2
5
|
color: #111827;
|
|
3
6
|
background: #f8fafc;
|
|
4
7
|
font-family:
|
|
@@ -11,26 +14,20 @@
|
|
|
11
14
|
sans-serif;
|
|
12
15
|
}
|
|
13
16
|
|
|
14
|
-
body {
|
|
15
|
-
margin: 0;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
button {
|
|
19
|
-
font: inherit;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.fluid-widget-preview-shell {
|
|
23
|
-
min-height: 100vh;
|
|
24
|
-
padding: 48px 24px;
|
|
25
|
-
box-sizing: border-box;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
17
|
.fluid-widget-preview-frame {
|
|
29
18
|
max-width: 960px;
|
|
30
19
|
margin: 0 auto;
|
|
31
20
|
}
|
|
32
21
|
|
|
33
22
|
.review-carousel {
|
|
23
|
+
font-family:
|
|
24
|
+
Inter,
|
|
25
|
+
ui-sans-serif,
|
|
26
|
+
system-ui,
|
|
27
|
+
-apple-system,
|
|
28
|
+
BlinkMacSystemFont,
|
|
29
|
+
"Segoe UI",
|
|
30
|
+
sans-serif;
|
|
34
31
|
border: 1px solid #e5e7eb;
|
|
35
32
|
border-radius: 24px;
|
|
36
33
|
padding: 32px;
|
|
@@ -93,6 +90,7 @@ button {
|
|
|
93
90
|
border-radius: 999px;
|
|
94
91
|
color: #111827;
|
|
95
92
|
background: #ffffff;
|
|
93
|
+
font: inherit;
|
|
96
94
|
cursor: pointer;
|
|
97
95
|
}
|
|
98
96
|
|
|
@@ -6,12 +6,22 @@ import type { IncomingMessage, ServerResponse } from "node:http";
|
|
|
6
6
|
export default defineConfig({
|
|
7
7
|
plugins: [react(), fluidWidgetDevRoutes()],
|
|
8
8
|
resolve: {
|
|
9
|
-
conditions: [
|
|
9
|
+
conditions: [
|
|
10
|
+
"fluid-widget-authoring",
|
|
11
|
+
"module",
|
|
12
|
+
"browser",
|
|
13
|
+
"development|production",
|
|
14
|
+
],
|
|
10
15
|
},
|
|
11
16
|
ssr: {
|
|
12
17
|
noExternal: ["@fluid-app/portal-sdk"],
|
|
13
18
|
resolve: {
|
|
14
|
-
conditions: [
|
|
19
|
+
conditions: [
|
|
20
|
+
"fluid-widget-authoring",
|
|
21
|
+
"module",
|
|
22
|
+
"node",
|
|
23
|
+
"development|production",
|
|
24
|
+
],
|
|
15
25
|
},
|
|
16
26
|
},
|
|
17
27
|
});
|