@powerlines/plugin-date 0.12.142 → 0.12.144

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.
Files changed (198) hide show
  1. package/dist/_virtual/rolldown_runtime.cjs +29 -0
  2. package/dist/components/date-fns.cjs +527 -0
  3. package/dist/components/date-fns.d.cts +13 -0
  4. package/dist/components/date-fns.d.mts +13 -0
  5. package/dist/components/date-fns.mjs +527 -0
  6. package/dist/components/dayjs.cjs +472 -0
  7. package/dist/components/dayjs.d.cts +13 -0
  8. package/dist/components/dayjs.d.mts +13 -0
  9. package/dist/components/dayjs.mjs +472 -0
  10. package/dist/components/index.cjs +4 -0
  11. package/dist/components/index.d.cts +4 -0
  12. package/dist/components/index.d.mts +4 -0
  13. package/dist/components/index.mjs +6 -0
  14. package/dist/components/luxon.cjs +476 -0
  15. package/dist/components/luxon.d.cts +13 -0
  16. package/dist/components/luxon.d.mts +13 -0
  17. package/dist/components/luxon.mjs +476 -0
  18. package/dist/components/moment.cjs +462 -0
  19. package/dist/components/moment.d.cts +13 -0
  20. package/dist/components/moment.d.mts +13 -0
  21. package/dist/components/moment.mjs +462 -0
  22. package/dist/deepkit/schemas/reflection.cjs +3998 -0
  23. package/dist/deepkit/schemas/reflection.d.cts +1560 -0
  24. package/dist/deepkit/schemas/reflection.d.mts +1560 -0
  25. package/dist/deepkit/schemas/reflection.mjs +3996 -0
  26. package/dist/deepkit/schemas/reflection2.cjs +4112 -0
  27. package/dist/deepkit/schemas/reflection2.mjs +4110 -0
  28. package/dist/deepkit/src/capnp.cjs +913 -0
  29. package/dist/deepkit/src/capnp.mjs +911 -0
  30. package/dist/deepkit/src/esbuild-plugin.cjs +47 -0
  31. package/dist/deepkit/src/esbuild-plugin.mjs +46 -0
  32. package/dist/deepkit/src/reflect-type.cjs +22 -0
  33. package/dist/deepkit/src/reflect-type.mjs +20 -0
  34. package/dist/deepkit/src/resolve-reflections.cjs +16 -0
  35. package/dist/deepkit/src/resolve-reflections.mjs +15 -0
  36. package/dist/deepkit/src/transformer.cjs +52 -0
  37. package/dist/deepkit/src/transformer.mjs +49 -0
  38. package/dist/deepkit/src/transpile.cjs +29 -0
  39. package/dist/deepkit/src/transpile.mjs +27 -0
  40. package/dist/deepkit/src/types.d.cts +10 -0
  41. package/dist/deepkit/src/types.d.mts +10 -0
  42. package/dist/deepkit/src/utilities.cjs +66 -0
  43. package/dist/deepkit/src/utilities.mjs +65 -0
  44. package/dist/index.cjs +17 -13844
  45. package/dist/index.d.cts +9 -40
  46. package/dist/index.d.mts +9 -40
  47. package/dist/index.mjs +6 -13800
  48. package/dist/plugin-alloy/src/core/components/output.cjs +38 -0
  49. package/dist/plugin-alloy/src/core/components/output.mjs +37 -0
  50. package/dist/plugin-alloy/src/core/components/single-line-comment.cjs +20 -0
  51. package/dist/plugin-alloy/src/core/components/single-line-comment.mjs +19 -0
  52. package/dist/plugin-alloy/src/core/components/source-file.cjs +60 -0
  53. package/dist/plugin-alloy/src/core/components/source-file.mjs +58 -0
  54. package/dist/plugin-alloy/src/core/contexts/context.cjs +60 -0
  55. package/dist/plugin-alloy/src/core/contexts/context.mjs +54 -0
  56. package/dist/plugin-alloy/src/core/contexts/index.cjs +2 -0
  57. package/dist/plugin-alloy/src/core/contexts/index.mjs +4 -0
  58. package/dist/plugin-alloy/src/core/contexts/reflection.cjs +46 -0
  59. package/dist/plugin-alloy/src/core/contexts/reflection.mjs +42 -0
  60. package/dist/plugin-alloy/src/helpers/refkey.cjs +16 -0
  61. package/dist/plugin-alloy/src/helpers/refkey.mjs +15 -0
  62. package/dist/plugin-alloy/src/index.cjs +90 -0
  63. package/dist/plugin-alloy/src/index.mjs +88 -0
  64. package/dist/plugin-alloy/src/markdown/components/markdown-file.cjs +7 -0
  65. package/dist/plugin-alloy/src/markdown/components/markdown-file.mjs +9 -0
  66. package/dist/plugin-alloy/src/markdown/components/markdown-table.cjs +5 -0
  67. package/dist/plugin-alloy/src/markdown/components/markdown-table.mjs +7 -0
  68. package/dist/plugin-alloy/src/markdown/contexts/markdown-table.cjs +17 -0
  69. package/dist/plugin-alloy/src/markdown/contexts/markdown-table.mjs +17 -0
  70. package/dist/plugin-alloy/src/types/components.d.mts +3 -0
  71. package/dist/plugin-alloy/src/types/index.d.mts +2 -0
  72. package/dist/plugin-alloy/src/types/plugin.d.cts +37 -0
  73. package/dist/plugin-alloy/src/types/plugin.d.mts +37 -0
  74. package/dist/plugin-alloy/src/typescript/components/builtin-file.cjs +47 -0
  75. package/dist/plugin-alloy/src/typescript/components/builtin-file.mjs +46 -0
  76. package/dist/plugin-alloy/src/typescript/components/tsdoc-reflection.cjs +75 -0
  77. package/dist/plugin-alloy/src/typescript/components/tsdoc-reflection.mjs +73 -0
  78. package/dist/plugin-alloy/src/typescript/components/tsdoc.cjs +359 -0
  79. package/dist/plugin-alloy/src/typescript/components/tsdoc.mjs +350 -0
  80. package/dist/plugin-alloy/src/typescript/components/typescript-file.cjs +143 -0
  81. package/dist/plugin-alloy/src/typescript/components/typescript-file.mjs +140 -0
  82. package/dist/plugin-alloy/src/typescript/components/typescript-interface.cjs +53 -0
  83. package/dist/plugin-alloy/src/typescript/components/typescript-interface.mjs +52 -0
  84. package/dist/plugin-alloy/src/typescript/components/typescript-object.cjs +94 -0
  85. package/dist/plugin-alloy/src/typescript/components/typescript-object.mjs +93 -0
  86. package/dist/plugin-automd/src/index.cjs +101 -0
  87. package/dist/plugin-automd/src/index.mjs +98 -0
  88. package/dist/plugin-automd/src/types/plugin.d.cts +38 -0
  89. package/dist/plugin-automd/src/types/plugin.d.mts +40 -0
  90. package/dist/plugin-automd/src/types/toc.d.cts +33 -0
  91. package/dist/plugin-automd/src/types/toc.d.mts +33 -0
  92. package/dist/plugin-babel/src/helpers/ast-utils.cjs +10 -0
  93. package/dist/plugin-babel/src/helpers/ast-utils.mjs +9 -0
  94. package/dist/plugin-babel/src/helpers/create-plugin.cjs +41 -0
  95. package/dist/plugin-babel/src/helpers/create-plugin.mjs +39 -0
  96. package/dist/plugin-babel/src/helpers/filters.cjs +23 -0
  97. package/dist/plugin-babel/src/helpers/filters.mjs +21 -0
  98. package/dist/plugin-babel/src/helpers/index.cjs +5 -0
  99. package/dist/plugin-babel/src/helpers/index.mjs +7 -0
  100. package/dist/plugin-babel/src/helpers/module-helpers.cjs +38 -0
  101. package/dist/plugin-babel/src/helpers/module-helpers.mjs +35 -0
  102. package/dist/plugin-babel/src/helpers/options.cjs +50 -0
  103. package/dist/plugin-babel/src/helpers/options.mjs +47 -0
  104. package/dist/plugin-babel/src/index.cjs +91 -0
  105. package/dist/plugin-babel/src/index.mjs +89 -0
  106. package/dist/plugin-babel/src/types/index.d.mts +1 -0
  107. package/dist/plugin-babel/src/types/plugin.d.cts +15 -0
  108. package/dist/plugin-babel/src/types/plugin.d.mts +15 -0
  109. package/dist/plugin-env/src/babel/index.cjs +1 -0
  110. package/dist/plugin-env/src/babel/index.mjs +3 -0
  111. package/dist/plugin-env/src/babel/plugin.cjs +121 -0
  112. package/dist/plugin-env/src/babel/plugin.mjs +119 -0
  113. package/dist/plugin-env/src/components/docs.cjs +9 -0
  114. package/dist/plugin-env/src/components/docs.mjs +11 -0
  115. package/dist/plugin-env/src/components/env.cjs +487 -0
  116. package/dist/plugin-env/src/components/env.mjs +484 -0
  117. package/dist/plugin-env/src/components/index.cjs +2 -0
  118. package/dist/plugin-env/src/components/index.mjs +4 -0
  119. package/dist/plugin-env/src/helpers/automd-generator.cjs +22 -0
  120. package/dist/plugin-env/src/helpers/automd-generator.mjs +21 -0
  121. package/dist/plugin-env/src/helpers/create-reflection-resource.cjs +55 -0
  122. package/dist/plugin-env/src/helpers/create-reflection-resource.mjs +54 -0
  123. package/dist/plugin-env/src/helpers/index.cjs +6 -0
  124. package/dist/plugin-env/src/helpers/index.mjs +8 -0
  125. package/dist/plugin-env/src/helpers/load.cjs +83 -0
  126. package/dist/plugin-env/src/helpers/load.mjs +80 -0
  127. package/dist/plugin-env/src/helpers/persistence.cjs +199 -0
  128. package/dist/plugin-env/src/helpers/persistence.mjs +188 -0
  129. package/dist/plugin-env/src/helpers/reflect.cjs +125 -0
  130. package/dist/plugin-env/src/helpers/reflect.mjs +117 -0
  131. package/dist/plugin-env/src/helpers/source-file-env.cjs +24 -0
  132. package/dist/plugin-env/src/helpers/source-file-env.mjs +23 -0
  133. package/dist/plugin-env/src/helpers/template-helpers.cjs +2 -0
  134. package/dist/plugin-env/src/helpers/template-helpers.mjs +4 -0
  135. package/dist/plugin-env/src/index.cjs +172 -0
  136. package/dist/plugin-env/src/index.mjs +170 -0
  137. package/dist/plugin-env/src/types/plugin.d.cts +151 -0
  138. package/dist/plugin-env/src/types/plugin.d.mts +153 -0
  139. package/dist/plugin-env/src/types/runtime.d.cts +792 -0
  140. package/dist/plugin-env/src/types/runtime.d.mts +792 -0
  141. package/dist/powerlines/src/lib/build/esbuild.cjs +102 -0
  142. package/dist/powerlines/src/lib/build/esbuild.mjs +100 -0
  143. package/dist/powerlines/src/lib/entry.cjs +12 -0
  144. package/dist/powerlines/src/lib/entry.mjs +14 -0
  145. package/dist/powerlines/src/lib/logger.cjs +41 -0
  146. package/dist/powerlines/src/lib/logger.mjs +39 -0
  147. package/dist/powerlines/src/lib/utilities/bundle.cjs +35 -0
  148. package/dist/powerlines/src/lib/utilities/bundle.mjs +34 -0
  149. package/dist/powerlines/src/lib/utilities/file-header.cjs +22 -0
  150. package/dist/powerlines/src/lib/utilities/file-header.mjs +21 -0
  151. package/dist/powerlines/src/lib/utilities/resolve.cjs +30 -0
  152. package/dist/powerlines/src/lib/utilities/resolve.mjs +29 -0
  153. package/dist/powerlines/src/plugin-utils/paths.cjs +1 -0
  154. package/dist/powerlines/src/plugin-utils/paths.mjs +3 -0
  155. package/dist/powerlines/src/types/babel.d.cts +22 -0
  156. package/dist/powerlines/src/types/babel.d.mts +22 -0
  157. package/dist/powerlines/src/types/build.d.cts +145 -0
  158. package/dist/powerlines/src/types/build.d.mts +145 -0
  159. package/dist/powerlines/src/types/commands.d.cts +8 -0
  160. package/dist/powerlines/src/types/commands.d.mts +9 -0
  161. package/dist/powerlines/src/types/config.d.cts +387 -0
  162. package/dist/powerlines/src/types/config.d.mts +388 -0
  163. package/dist/powerlines/src/types/context.d.cts +414 -0
  164. package/dist/powerlines/src/types/context.d.mts +416 -0
  165. package/dist/powerlines/src/types/fs.d.cts +486 -0
  166. package/dist/powerlines/src/types/fs.d.mts +486 -0
  167. package/dist/powerlines/src/types/hooks.d.mts +2 -0
  168. package/dist/powerlines/src/types/plugin.d.cts +231 -0
  169. package/dist/powerlines/src/types/plugin.d.mts +231 -0
  170. package/dist/powerlines/src/types/resolved.d.cts +82 -0
  171. package/dist/powerlines/src/types/resolved.d.mts +82 -0
  172. package/dist/powerlines/src/types/tsconfig.d.cts +69 -0
  173. package/dist/powerlines/src/types/tsconfig.d.mts +69 -0
  174. package/dist/types/index.cjs +0 -3
  175. package/dist/types/index.d.cts +2 -3
  176. package/dist/types/index.d.mts +2 -3
  177. package/dist/types/index.mjs +0 -4
  178. package/dist/types/plugin.cjs +0 -1
  179. package/dist/types/plugin.d.cts +42 -1
  180. package/dist/types/plugin.d.mts +42 -1
  181. package/dist/types/plugin.mjs +0 -2
  182. package/dist/types/runtime.cjs +0 -1
  183. package/dist/types/runtime.d.cts +710 -1
  184. package/dist/types/runtime.d.mts +710 -1
  185. package/dist/types/runtime.mjs +0 -2
  186. package/package.json +5 -5
  187. package/dist/index-CA4VvAY_.d.mts +0 -1
  188. package/dist/index-CmCelmEL.d.cts +0 -1
  189. package/dist/plugin-BUfZ6cT1.d.cts +0 -4432
  190. package/dist/plugin-CuNMs4r-.d.mts +0 -4434
  191. package/dist/plugin-DHXHjv16.cjs +0 -0
  192. package/dist/plugin-ufqFO5xS.mjs +0 -1
  193. package/dist/runtime-B7WoCmC4.mjs +0 -1
  194. package/dist/runtime-B8LVkjWB.d.cts +0 -711
  195. package/dist/runtime-CiYq8JJ6.d.mts +0 -711
  196. package/dist/runtime-D4zTdSwv.cjs +0 -0
  197. package/dist/types-BReKsBV6.mjs +0 -1
  198. package/dist/types-CBTc19th.cjs +0 -0
@@ -0,0 +1,7 @@
1
+ require('../../core/contexts/context.cjs');
2
+ require('../../core/components/single-line-comment.cjs');
3
+ require('../../core/components/source-file.cjs');
4
+ let __alloy_js_core = require("@alloy-js/core");
5
+ let react_jsx_runtime = require("react/jsx-runtime");
6
+ let __stryke_string_format_title_case = require("@stryke/string-format/title-case");
7
+ require("@alloy-js/markdown");
@@ -0,0 +1,9 @@
1
+ import "../../core/contexts/context.mjs";
2
+ import "../../core/components/single-line-comment.mjs";
3
+ import "../../core/components/source-file.mjs";
4
+ import { Show, code, splitProps } from "@alloy-js/core";
5
+ import { Fragment, jsx, jsxs } from "react/jsx-runtime";
6
+ import { titleCase } from "@stryke/string-format/title-case";
7
+ import "@alloy-js/markdown";
8
+
9
+ export { };
@@ -0,0 +1,5 @@
1
+ require('../contexts/markdown-table.cjs');
2
+ let __alloy_js_core = require("@alloy-js/core");
3
+ let react_jsx_runtime = require("react/jsx-runtime");
4
+ let __stryke_string_format_title_case = require("@stryke/string-format/title-case");
5
+ let __stryke_type_checks_is_undefined = require("@stryke/type-checks/is-undefined");
@@ -0,0 +1,7 @@
1
+ import "../contexts/markdown-table.mjs";
2
+ import { Prose, Show, code, computed, splitProps } from "@alloy-js/core";
3
+ import { Fragment, jsx, jsxs } from "react/jsx-runtime";
4
+ import { titleCase } from "@stryke/string-format/title-case";
5
+ import { isUndefined } from "@stryke/type-checks/is-undefined";
6
+
7
+ export { };
@@ -0,0 +1,17 @@
1
+ const require_rolldown_runtime = require('../../../../_virtual/rolldown_runtime.cjs');
2
+ let __alloy_js_core = require("@alloy-js/core");
3
+
4
+ //#region ../plugin-alloy/src/markdown/contexts/markdown-table.ts
5
+ /**
6
+ * The Powerlines context used in template rendering.
7
+ */
8
+ const MarkdownTableColumnContext = (0, __alloy_js_core.createNamedContext)("markdown-table-column", {});
9
+ /**
10
+ * The Powerlines context used in template rendering.
11
+ */
12
+ const MarkdownTableContext = (0, __alloy_js_core.createContext)({
13
+ columns: [],
14
+ data: []
15
+ });
16
+
17
+ //#endregion
@@ -0,0 +1,17 @@
1
+ import { createContext, createNamedContext, useContext } from "@alloy-js/core";
2
+
3
+ //#region ../plugin-alloy/src/markdown/contexts/markdown-table.ts
4
+ /**
5
+ * The Powerlines context used in template rendering.
6
+ */
7
+ const MarkdownTableColumnContext = createNamedContext("markdown-table-column", {});
8
+ /**
9
+ * The Powerlines context used in template rendering.
10
+ */
11
+ const MarkdownTableContext = createContext({
12
+ columns: [],
13
+ data: []
14
+ });
15
+
16
+ //#endregion
17
+ export { };
@@ -0,0 +1,3 @@
1
+ import "../../../powerlines/src/types/resolved.mjs";
2
+ import { Children } from "@alloy-js/core";
3
+ import { SourceFileContext as SourceFileContext$1 } from "@alloy-js/typescript";
@@ -0,0 +1,2 @@
1
+ import "./components.mjs";
2
+ import { AlloyPluginContext, AlloyPluginOptions, AlloyPluginResolvedConfig, AlloyPluginUserConfig } from "./plugin.mjs";
@@ -0,0 +1,37 @@
1
+ import { UserConfig } from "../../../powerlines/src/types/config.cjs";
2
+ import { ResolvedConfig } from "../../../powerlines/src/types/resolved.cjs";
3
+ import { PluginContext } from "../../../powerlines/src/types/context.cjs";
4
+ import { Children, PrintTreeOptions } from "@alloy-js/core";
5
+
6
+ //#region ../plugin-alloy/src/types/plugin.d.ts
7
+ type AlloyPluginOptions = Partial<PrintTreeOptions> & {
8
+ /**
9
+ * If true, the Alloy framework is used to generate Typescript output files.
10
+ *
11
+ * @defaultValue true
12
+ */
13
+ typescript?: boolean;
14
+ /**
15
+ * If true, the Alloy framework is used to generate JSON output files.
16
+ *
17
+ * @defaultValue false
18
+ */
19
+ json?: boolean;
20
+ /**
21
+ * If true, the Alloy framework is used to generate Markdown output files.
22
+ *
23
+ * @defaultValue false
24
+ */
25
+ markdown?: boolean;
26
+ };
27
+ type AlloyPluginUserConfig = UserConfig & {
28
+ alloy?: AlloyPluginOptions;
29
+ };
30
+ type AlloyPluginResolvedConfig = ResolvedConfig & {
31
+ alloy: AlloyPluginOptions;
32
+ };
33
+ type AlloyPluginContext<TResolvedConfig extends AlloyPluginResolvedConfig = AlloyPluginResolvedConfig> = PluginContext<TResolvedConfig> & {
34
+ render: <TContext extends AlloyPluginContext>(this: TContext, children: Children) => Promise<void>;
35
+ };
36
+ //#endregion
37
+ export { AlloyPluginContext, AlloyPluginOptions, AlloyPluginResolvedConfig, AlloyPluginUserConfig };
@@ -0,0 +1,37 @@
1
+ import { UserConfig } from "../../../powerlines/src/types/config.mjs";
2
+ import { ResolvedConfig } from "../../../powerlines/src/types/resolved.mjs";
3
+ import { PluginContext } from "../../../powerlines/src/types/context.mjs";
4
+ import { Children, PrintTreeOptions } from "@alloy-js/core";
5
+
6
+ //#region ../plugin-alloy/src/types/plugin.d.ts
7
+ type AlloyPluginOptions = Partial<PrintTreeOptions> & {
8
+ /**
9
+ * If true, the Alloy framework is used to generate Typescript output files.
10
+ *
11
+ * @defaultValue true
12
+ */
13
+ typescript?: boolean;
14
+ /**
15
+ * If true, the Alloy framework is used to generate JSON output files.
16
+ *
17
+ * @defaultValue false
18
+ */
19
+ json?: boolean;
20
+ /**
21
+ * If true, the Alloy framework is used to generate Markdown output files.
22
+ *
23
+ * @defaultValue false
24
+ */
25
+ markdown?: boolean;
26
+ };
27
+ type AlloyPluginUserConfig = UserConfig & {
28
+ alloy?: AlloyPluginOptions;
29
+ };
30
+ type AlloyPluginResolvedConfig = ResolvedConfig & {
31
+ alloy: AlloyPluginOptions;
32
+ };
33
+ type AlloyPluginContext<TResolvedConfig extends AlloyPluginResolvedConfig = AlloyPluginResolvedConfig> = PluginContext<TResolvedConfig> & {
34
+ render: <TContext extends AlloyPluginContext>(this: TContext, children: Children) => Promise<void>;
35
+ };
36
+ //#endregion
37
+ export { AlloyPluginContext, AlloyPluginOptions, AlloyPluginResolvedConfig, AlloyPluginUserConfig };
@@ -0,0 +1,47 @@
1
+ const require_rolldown_runtime = require('../../../../_virtual/rolldown_runtime.cjs');
2
+ const require_context = require('../../core/contexts/context.cjs');
3
+ const require_tsdoc = require('./tsdoc.cjs');
4
+ const require_typescript_file = require('./typescript-file.cjs');
5
+ let __alloy_js_core = require("@alloy-js/core");
6
+ let __stryke_path_replace = require("@stryke/path/replace");
7
+ let react_jsx_runtime = require("react/jsx-runtime");
8
+ let __stryke_path_file_path_fns = require("@stryke/path/file-path-fns");
9
+ let __stryke_type_checks_is_set = require("@stryke/type-checks/is-set");
10
+
11
+ //#region ../plugin-alloy/src/typescript/components/builtin-file.tsx
12
+ /**
13
+ * A base component representing a Powerlines generated Typescript source file.
14
+ *
15
+ * @param props - The properties for the source file.
16
+ * @returns The rendered source file component.
17
+ */
18
+ function BuiltinFile(props) {
19
+ const [{ children, imports, id, description, tsx }, rest] = (0, __alloy_js_core.splitProps)(props, [
20
+ "children",
21
+ "imports",
22
+ "id",
23
+ "description",
24
+ "tsx"
25
+ ]);
26
+ const context = require_context.usePowerlines();
27
+ const path = (0, __alloy_js_core.computed)(() => (0, __stryke_path_replace.replacePath)(`${!(0, __stryke_type_checks_is_set.isSet)(tsx) ? id : (0, __stryke_path_replace.replaceExtension)(id)}${(0, __stryke_path_file_path_fns.hasFileExtension)(id) && !(0, __stryke_type_checks_is_set.isSet)(tsx) ? "" : tsx ? ".tsx" : ".ts"}`, context.builtinsPath));
28
+ return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_typescript_file.TypescriptFile, {
29
+ header: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_typescript_file.TypescriptFileHeader, {
30
+ header: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_tsdoc.TSDocModule, {
31
+ name: id,
32
+ children: description
33
+ }),
34
+ children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_typescript_file.TypescriptFileHeaderImports, { imports })
35
+ }),
36
+ meta: {
37
+ kind: "builtin",
38
+ id: (0, __stryke_path_replace.replaceExtension)(id)
39
+ },
40
+ ...rest,
41
+ path: path.value,
42
+ children
43
+ });
44
+ }
45
+
46
+ //#endregion
47
+ exports.BuiltinFile = BuiltinFile;
@@ -0,0 +1,46 @@
1
+ import { usePowerlines } from "../../core/contexts/context.mjs";
2
+ import { TSDocModule } from "./tsdoc.mjs";
3
+ import { TypescriptFile, TypescriptFileHeader, TypescriptFileHeaderImports } from "./typescript-file.mjs";
4
+ import { computed, splitProps } from "@alloy-js/core";
5
+ import { replaceExtension, replacePath } from "@stryke/path/replace";
6
+ import { jsx } from "react/jsx-runtime";
7
+ import { hasFileExtension } from "@stryke/path/file-path-fns";
8
+ import { isSet } from "@stryke/type-checks/is-set";
9
+
10
+ //#region ../plugin-alloy/src/typescript/components/builtin-file.tsx
11
+ /**
12
+ * A base component representing a Powerlines generated Typescript source file.
13
+ *
14
+ * @param props - The properties for the source file.
15
+ * @returns The rendered source file component.
16
+ */
17
+ function BuiltinFile(props) {
18
+ const [{ children, imports, id, description, tsx }, rest] = splitProps(props, [
19
+ "children",
20
+ "imports",
21
+ "id",
22
+ "description",
23
+ "tsx"
24
+ ]);
25
+ const context = usePowerlines();
26
+ const path = computed(() => replacePath(`${!isSet(tsx) ? id : replaceExtension(id)}${hasFileExtension(id) && !isSet(tsx) ? "" : tsx ? ".tsx" : ".ts"}`, context.builtinsPath));
27
+ return /* @__PURE__ */ jsx(TypescriptFile, {
28
+ header: /* @__PURE__ */ jsx(TypescriptFileHeader, {
29
+ header: /* @__PURE__ */ jsx(TSDocModule, {
30
+ name: id,
31
+ children: description
32
+ }),
33
+ children: /* @__PURE__ */ jsx(TypescriptFileHeaderImports, { imports })
34
+ }),
35
+ meta: {
36
+ kind: "builtin",
37
+ id: replaceExtension(id)
38
+ },
39
+ ...rest,
40
+ path: path.value,
41
+ children
42
+ });
43
+ }
44
+
45
+ //#endregion
46
+ export { BuiltinFile };
@@ -0,0 +1,75 @@
1
+ const require_rolldown_runtime = require('../../../../_virtual/rolldown_runtime.cjs');
2
+ const require_tsdoc = require('./tsdoc.cjs');
3
+ const require_reflection = require('../../core/contexts/reflection.cjs');
4
+ let __alloy_js_core = require("@alloy-js/core");
5
+ let react_jsx_runtime = require("react/jsx-runtime");
6
+ let __stryke_type_checks_is_set_string = require("@stryke/type-checks/is-set-string");
7
+ let __stryke_string_format_title_case = require("@stryke/string-format/title-case");
8
+ let __stryke_type_checks_is_string = require("@stryke/type-checks/is-string");
9
+ let __stryke_type_checks_is_undefined = require("@stryke/type-checks/is-undefined");
10
+
11
+ //#region ../plugin-alloy/src/typescript/components/tsdoc-reflection.tsx
12
+ /**
13
+ * Generates a TypeScript interface property for the given reflection class.
14
+ */
15
+ function TSDocReflectionClass(props) {
16
+ const [{ children }, rest] = (0, __alloy_js_core.splitProps)(props, ["children"]);
17
+ const reflectionClass = require_reflection.useReflectionClass();
18
+ const title = (0, __alloy_js_core.computed)(() => reflectionClass.reflection.getTitle() || (0, __stryke_string_format_title_case.titleCase)(reflectionClass.reflection.getName()));
19
+ const alias = (0, __alloy_js_core.computed)(() => reflectionClass.reflection.getAlias());
20
+ const domain = (0, __alloy_js_core.computed)(() => reflectionClass.reflection.getDomain());
21
+ const permission = (0, __alloy_js_core.computed)(() => reflectionClass.reflection.getPermission());
22
+ const readonly = (0, __alloy_js_core.computed)(() => reflectionClass.reflection.isReadonly());
23
+ const internal = (0, __alloy_js_core.computed)(() => reflectionClass.reflection.isInternal());
24
+ const ignore = (0, __alloy_js_core.computed)(() => reflectionClass.reflection.isIgnored());
25
+ const hidden = (0, __alloy_js_core.computed)(() => reflectionClass.reflection.isHidden());
26
+ if (!reflectionClass.reflection.getName()) return null;
27
+ return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(require_tsdoc.TSDoc, {
28
+ ...rest,
29
+ heading: reflectionClass.reflection.getDescription(),
30
+ children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)(__alloy_js_core.Show, {
31
+ when: (0, __stryke_type_checks_is_set_string.isSetString)(title.value) || !(0, __stryke_type_checks_is_undefined.isUndefined)(alias.value) && alias.value.length > 0 || !(0, __stryke_type_checks_is_undefined.isUndefined)(permission.value) && permission.value.length > 0 || (0, __stryke_type_checks_is_set_string.isSetString)(domain.value) || !(0, __stryke_type_checks_is_undefined.isUndefined)(readonly.value) || !(0, __stryke_type_checks_is_undefined.isUndefined)(internal.value) || !(0, __stryke_type_checks_is_undefined.isUndefined)(ignore.value) || !(0, __stryke_type_checks_is_undefined.isUndefined)(hidden.value),
32
+ children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_tsdoc.TSDocAttributesTags, {
33
+ title: title.value,
34
+ alias: alias.value,
35
+ domain: domain.value,
36
+ permission: permission.value,
37
+ readonly: readonly.value,
38
+ internal: internal.value,
39
+ ignore: ignore.value,
40
+ hidden: hidden.value
41
+ })
42
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__alloy_js_core.Show, {
43
+ when: Boolean(children) && (0, __alloy_js_core.childrenArray)(() => children).length > 0,
44
+ children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__alloy_js_core.List, { children: (0, __alloy_js_core.childrenArray)(() => children) })
45
+ })]
46
+ });
47
+ }
48
+ /**
49
+ * Generates a TypeScript interface property for the given reflection class.
50
+ */
51
+ function TSDocReflectionProperty(props) {
52
+ const [{ children }, rest] = (0, __alloy_js_core.splitProps)(props, ["children"]);
53
+ const context = require_reflection.useReflectionProperty();
54
+ return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(require_tsdoc.TSDoc, {
55
+ heading: context.getDescription(),
56
+ ...rest,
57
+ children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_tsdoc.TSDocAttributesTags, {
58
+ title: context.getTitle(),
59
+ alias: context.getAlias(),
60
+ domain: context.getDomain(),
61
+ permission: context.getPermission(),
62
+ readonly: context.isReadonly(),
63
+ internal: context.isInternal(),
64
+ ignore: context.isIgnored(),
65
+ hidden: context.isHidden()
66
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__alloy_js_core.Show, {
67
+ when: Boolean(children) && (0, __alloy_js_core.childrenArray)(() => children).length > 0,
68
+ children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(__alloy_js_core.List, { children: (0, __alloy_js_core.childrenArray)(() => children) })
69
+ })]
70
+ });
71
+ }
72
+
73
+ //#endregion
74
+ exports.TSDocReflectionClass = TSDocReflectionClass;
75
+ exports.TSDocReflectionProperty = TSDocReflectionProperty;
@@ -0,0 +1,73 @@
1
+ import { TSDoc, TSDocAttributesTags } from "./tsdoc.mjs";
2
+ import { useReflectionClass, useReflectionProperty } from "../../core/contexts/reflection.mjs";
3
+ import { List, Show, childrenArray, code, computed, splitProps } from "@alloy-js/core";
4
+ import { jsx, jsxs } from "react/jsx-runtime";
5
+ import { isSetString } from "@stryke/type-checks/is-set-string";
6
+ import { titleCase } from "@stryke/string-format/title-case";
7
+ import { isString } from "@stryke/type-checks/is-string";
8
+ import { isUndefined } from "@stryke/type-checks/is-undefined";
9
+
10
+ //#region ../plugin-alloy/src/typescript/components/tsdoc-reflection.tsx
11
+ /**
12
+ * Generates a TypeScript interface property for the given reflection class.
13
+ */
14
+ function TSDocReflectionClass(props) {
15
+ const [{ children }, rest] = splitProps(props, ["children"]);
16
+ const reflectionClass = useReflectionClass();
17
+ const title = computed(() => reflectionClass.reflection.getTitle() || titleCase(reflectionClass.reflection.getName()));
18
+ const alias = computed(() => reflectionClass.reflection.getAlias());
19
+ const domain = computed(() => reflectionClass.reflection.getDomain());
20
+ const permission = computed(() => reflectionClass.reflection.getPermission());
21
+ const readonly = computed(() => reflectionClass.reflection.isReadonly());
22
+ const internal = computed(() => reflectionClass.reflection.isInternal());
23
+ const ignore = computed(() => reflectionClass.reflection.isIgnored());
24
+ const hidden = computed(() => reflectionClass.reflection.isHidden());
25
+ if (!reflectionClass.reflection.getName()) return null;
26
+ return /* @__PURE__ */ jsxs(TSDoc, {
27
+ ...rest,
28
+ heading: reflectionClass.reflection.getDescription(),
29
+ children: [/* @__PURE__ */ jsx(Show, {
30
+ when: isSetString(title.value) || !isUndefined(alias.value) && alias.value.length > 0 || !isUndefined(permission.value) && permission.value.length > 0 || isSetString(domain.value) || !isUndefined(readonly.value) || !isUndefined(internal.value) || !isUndefined(ignore.value) || !isUndefined(hidden.value),
31
+ children: /* @__PURE__ */ jsx(TSDocAttributesTags, {
32
+ title: title.value,
33
+ alias: alias.value,
34
+ domain: domain.value,
35
+ permission: permission.value,
36
+ readonly: readonly.value,
37
+ internal: internal.value,
38
+ ignore: ignore.value,
39
+ hidden: hidden.value
40
+ })
41
+ }), /* @__PURE__ */ jsx(Show, {
42
+ when: Boolean(children) && childrenArray(() => children).length > 0,
43
+ children: /* @__PURE__ */ jsx(List, { children: childrenArray(() => children) })
44
+ })]
45
+ });
46
+ }
47
+ /**
48
+ * Generates a TypeScript interface property for the given reflection class.
49
+ */
50
+ function TSDocReflectionProperty(props) {
51
+ const [{ children }, rest] = splitProps(props, ["children"]);
52
+ const context = useReflectionProperty();
53
+ return /* @__PURE__ */ jsxs(TSDoc, {
54
+ heading: context.getDescription(),
55
+ ...rest,
56
+ children: [/* @__PURE__ */ jsx(TSDocAttributesTags, {
57
+ title: context.getTitle(),
58
+ alias: context.getAlias(),
59
+ domain: context.getDomain(),
60
+ permission: context.getPermission(),
61
+ readonly: context.isReadonly(),
62
+ internal: context.isInternal(),
63
+ ignore: context.isIgnored(),
64
+ hidden: context.isHidden()
65
+ }), /* @__PURE__ */ jsx(Show, {
66
+ when: Boolean(children) && childrenArray(() => children).length > 0,
67
+ children: /* @__PURE__ */ jsx(List, { children: childrenArray(() => children) })
68
+ })]
69
+ });
70
+ }
71
+
72
+ //#endregion
73
+ export { TSDocReflectionClass, TSDocReflectionProperty };