@powerlines/plugin-react 0.1.151 → 0.1.153

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.
@@ -1,14 +1,23 @@
1
1
  import { ComponentProps } from "../../types/components.cjs";
2
2
  import { Children } from "@alloy-js/core";
3
3
  import "@alloy-js/typescript";
4
+ import "@powerlines/deepkit/vendor/type";
4
5
 
5
6
  //#region ../plugin-alloy/src/typescript/components/tsdoc.d.ts
6
7
 
7
8
  interface TSDocModuleProps extends ComponentProps {
8
9
  /**
9
- * the prefix for the builtin module name
10
+ * The prefix for the builtin module name
10
11
  *
11
- * @defaultValue "storm"
12
+ * @remarks
13
+ * This value is populated from the Powerlines configuration output builtin prefix by default.
14
+ *
15
+ * @example
16
+ * ```ts
17
+ * /**
18
+ * @module powerlines:my-module
19
+ * \/
20
+ * ```
12
21
  */
13
22
  prefix?: string;
14
23
  /**
@@ -19,7 +28,7 @@ interface TSDocModuleProps extends ComponentProps {
19
28
  *
20
29
  * @example
21
30
  * ```ts
22
- * import { MyModule } from "storm:my-module";
31
+ * import { MyModule } from "powerlines:my-module";
23
32
  * ```
24
33
  */
25
34
  name: Children;
@@ -1,4 +1,5 @@
1
1
  import { ComponentProps } from "../../types/components.mjs";
2
+ import { ReflectionKind } from "@powerlines/deepkit/vendor/type";
2
3
  import { Children } from "@alloy-js/core";
3
4
  import "@alloy-js/typescript";
4
5
 
@@ -6,9 +7,17 @@ import "@alloy-js/typescript";
6
7
 
7
8
  interface TSDocModuleProps extends ComponentProps {
8
9
  /**
9
- * the prefix for the builtin module name
10
+ * The prefix for the builtin module name
10
11
  *
11
- * @defaultValue "storm"
12
+ * @remarks
13
+ * This value is populated from the Powerlines configuration output builtin prefix by default.
14
+ *
15
+ * @example
16
+ * ```ts
17
+ * /**
18
+ * @module powerlines:my-module
19
+ * \/
20
+ * ```
12
21
  */
13
22
  prefix?: string;
14
23
  /**
@@ -19,7 +28,7 @@ interface TSDocModuleProps extends ComponentProps {
19
28
  *
20
29
  * @example
21
30
  * ```ts
22
- * import { MyModule } from "storm:my-module";
31
+ * import { MyModule } from "powerlines:my-module";
23
32
  * ```
24
33
  */
25
34
  name: Children;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-react",
3
- "version": "0.1.151",
3
+ "version": "0.1.153",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin for building a React application.",
6
6
  "repository": {
@@ -141,9 +141,9 @@
141
141
  "@alloy-js/markdown": "^0.22.0",
142
142
  "@alloy-js/typescript": "^0.22.0",
143
143
  "@babel/core": "^7.28.5",
144
- "@powerlines/plugin-alloy": "^0.18.19",
145
- "@powerlines/plugin-babel": "^0.12.146",
146
- "@powerlines/plugin-env": "^0.15.22",
144
+ "@powerlines/plugin-alloy": "^0.18.21",
145
+ "@powerlines/plugin-babel": "^0.12.147",
146
+ "@powerlines/plugin-env": "^0.15.24",
147
147
  "@storm-software/config-tools": "^1.188.75",
148
148
  "@stryke/cli": "^0.12.37",
149
149
  "@stryke/convert": "^0.6.30",
@@ -152,14 +152,14 @@
152
152
  "@vitejs/plugin-react": "^5.1.2",
153
153
  "babel-plugin-react-compiler": "^1.0.0",
154
154
  "defu": "^6.1.4",
155
- "powerlines": "^0.37.11"
155
+ "powerlines": "^0.37.12"
156
156
  },
157
157
  "devDependencies": {
158
- "@powerlines/plugin-plugin": "^0.12.89",
158
+ "@powerlines/plugin-plugin": "^0.12.90",
159
159
  "@types/node": "^24.10.4",
160
160
  "@types/react": "^19.2.7",
161
161
  "@types/react-dom": "^19.2.3"
162
162
  },
163
163
  "publishConfig": { "access": "public" },
164
- "gitHead": "f3772c353f185b0d76e51bceea500ec8dcd9f041"
164
+ "gitHead": "818edcf68d107e24b0b00b8b1a549efa7b2ac7d7"
165
165
  }