@powerlines/plugin-alloy 0.18.0 → 0.18.2

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 (45) hide show
  1. package/dist/_virtual/rolldown_runtime.cjs +0 -8
  2. package/dist/core/components/output.d.cts +2 -2
  3. package/dist/core/components/output.d.mts +2 -2
  4. package/dist/core/components/single-line-comment.d.cts +2 -2
  5. package/dist/core/components/single-line-comment.d.mts +2 -2
  6. package/dist/core/components/source-file.d.cts +2 -2
  7. package/dist/core/components/source-file.d.mts +2 -2
  8. package/dist/core/contexts/reflection.d.cts +8 -8
  9. package/dist/core/contexts/reflection.d.mts +8 -8
  10. package/dist/core/index.d.cts +1 -0
  11. package/dist/deepkit/src/utilities.cjs +42 -42
  12. package/dist/deepkit/src/utilities.mjs +42 -42
  13. package/dist/helpers/capnp.cjs +20 -20
  14. package/dist/helpers/capnp.d.cts +14 -14
  15. package/dist/helpers/capnp.d.mts +14 -14
  16. package/dist/helpers/capnp.mjs +20 -20
  17. package/dist/helpers/typescript.d.cts +2 -2
  18. package/dist/helpers/typescript.d.mts +2 -2
  19. package/dist/markdown/components/markdown-file.d.cts +3 -3
  20. package/dist/markdown/components/markdown-file.d.mts +3 -3
  21. package/dist/markdown/components/markdown-table.d.cts +4 -4
  22. package/dist/markdown/components/markdown-table.d.mts +4 -4
  23. package/dist/typescript/components/builtin-file.d.cts +2 -2
  24. package/dist/typescript/components/builtin-file.d.mts +2 -2
  25. package/dist/typescript/components/dynamic-import-statement.d.cts +2 -2
  26. package/dist/typescript/components/dynamic-import-statement.d.mts +2 -2
  27. package/dist/typescript/components/entry-file.d.cts +2 -2
  28. package/dist/typescript/components/entry-file.d.mts +2 -2
  29. package/dist/typescript/components/tsdoc-reflection.d.cts +4 -4
  30. package/dist/typescript/components/tsdoc-reflection.d.mts +4 -4
  31. package/dist/typescript/components/typescript-interface.cjs +2 -2
  32. package/dist/typescript/components/typescript-interface.d.cts +6 -6
  33. package/dist/typescript/components/typescript-interface.d.mts +6 -6
  34. package/dist/typescript/components/typescript-interface.mjs +2 -2
  35. package/dist/typescript/components/typescript-object.d.cts +6 -6
  36. package/dist/typescript/components/typescript-object.d.mts +6 -6
  37. package/dist/typescript/index.d.cts +1 -0
  38. package/package.json +4 -4
  39. package/dist/_virtual/rolldown_runtime.mjs +0 -29
  40. package/dist/deepkit/src/vendor/core.cjs +0 -20
  41. package/dist/deepkit/src/vendor/core.mjs +0 -11
  42. package/dist/deepkit/src/vendor/type.cjs +0 -20
  43. package/dist/deepkit/src/vendor/type.d.cts +0 -7
  44. package/dist/deepkit/src/vendor/type.d.mts +0 -7
  45. package/dist/deepkit/src/vendor/type.mjs +0 -11
@@ -1,6 +1,6 @@
1
1
  import { ComponentProps } from "../../types/components.mjs";
2
2
  import { MarkdownTableColumnContextInterface } from "../contexts/markdown-table.mjs";
3
- import * as _alloy_js_core9 from "@alloy-js/core";
3
+ import * as _alloy_js_core2 from "@alloy-js/core";
4
4
 
5
5
  //#region src/markdown/components/markdown-table.d.ts
6
6
  interface MarkdownTableProps<T extends Record<string, any> = Record<string, any>> extends ComponentProps {
@@ -9,18 +9,18 @@ interface MarkdownTableProps<T extends Record<string, any> = Record<string, any>
9
9
  /**
10
10
  * Component that provides a context for rendering markdown tables.
11
11
  */
12
- declare function MarkdownTable<T extends Record<string, any> = Record<string, any>>(props: MarkdownTableProps<T>): _alloy_js_core9.Children;
12
+ declare function MarkdownTable<T extends Record<string, any> = Record<string, any>>(props: MarkdownTableProps<T>): _alloy_js_core2.Children;
13
13
  type MarkdownTableColumnProps = ComponentProps & Partial<Pick<MarkdownTableColumnContextInterface, "align">> & Required<Pick<MarkdownTableColumnContextInterface, "name">> & {
14
14
  width?: number;
15
15
  };
16
16
  /**
17
17
  * Component that provides a context for rendering markdown tables.
18
18
  */
19
- declare function MarkdownTableColumn(props: MarkdownTableColumnProps): _alloy_js_core9.Children;
19
+ declare function MarkdownTableColumn(props: MarkdownTableColumnProps): _alloy_js_core2.Children;
20
20
  /**
21
21
  * Component that provides a context for rendering markdown tables.
22
22
  */
23
- declare function MarkdownTableColumnHeader(props: MarkdownTableColumnProps): _alloy_js_core9.Children;
23
+ declare function MarkdownTableColumnHeader(props: MarkdownTableColumnProps): _alloy_js_core2.Children;
24
24
  declare type __ΩMarkdownTableProps = any[];
25
25
  declare type __ΩMarkdownTableColumnProps = any[];
26
26
  //#endregion
@@ -1,6 +1,6 @@
1
1
  import { TSDocModuleProps } from "./tsdoc.cjs";
2
2
  import { TypescriptFileProps } from "./typescript-file.cjs";
3
- import * as _alloy_js_core16 from "@alloy-js/core";
3
+ import * as _alloy_js_core13 from "@alloy-js/core";
4
4
 
5
5
  //#region src/typescript/components/builtin-file.d.ts
6
6
  type BuiltinFileProps = Omit<TypescriptFileProps, "path"> & Omit<TSDocModuleProps, "name"> & {
@@ -28,7 +28,7 @@ type BuiltinFileProps = Omit<TypescriptFileProps, "path"> & Omit<TSDocModuleProp
28
28
  * @param props - The properties for the source file.
29
29
  * @returns The rendered source file component.
30
30
  */
31
- declare function BuiltinFile(props: BuiltinFileProps): _alloy_js_core16.Children;
31
+ declare function BuiltinFile(props: BuiltinFileProps): _alloy_js_core13.Children;
32
32
  declare type __ΩBuiltinFileProps = any[];
33
33
  //#endregion
34
34
  export { BuiltinFile, BuiltinFileProps, __ΩBuiltinFileProps };
@@ -1,6 +1,6 @@
1
1
  import { TSDocModuleProps } from "./tsdoc.mjs";
2
2
  import { TypescriptFileProps } from "./typescript-file.mjs";
3
- import * as _alloy_js_core12 from "@alloy-js/core";
3
+ import * as _alloy_js_core16 from "@alloy-js/core";
4
4
 
5
5
  //#region src/typescript/components/builtin-file.d.ts
6
6
  type BuiltinFileProps = Omit<TypescriptFileProps, "path"> & Omit<TSDocModuleProps, "name"> & {
@@ -28,7 +28,7 @@ type BuiltinFileProps = Omit<TypescriptFileProps, "path"> & Omit<TSDocModuleProp
28
28
  * @param props - The properties for the source file.
29
29
  * @returns The rendered source file component.
30
30
  */
31
- declare function BuiltinFile(props: BuiltinFileProps): _alloy_js_core12.Children;
31
+ declare function BuiltinFile(props: BuiltinFileProps): _alloy_js_core16.Children;
32
32
  declare type __ΩBuiltinFileProps = any[];
33
33
  //#endregion
34
34
  export { BuiltinFile, BuiltinFileProps, __ΩBuiltinFileProps };
@@ -1,4 +1,4 @@
1
- import * as _alloy_js_core4 from "@alloy-js/core";
1
+ import * as _alloy_js_core14 from "@alloy-js/core";
2
2
  import { VarDeclarationProps } from "@alloy-js/typescript";
3
3
 
4
4
  //#region src/typescript/components/dynamic-import-statement.d.ts
@@ -26,7 +26,7 @@ interface DynamicImportStatementProps extends Omit<VarDeclarationProps, "initial
26
26
  * @param props - The properties for the dynamic import statement.
27
27
  * @returns A `VarDeclaration` component representing the dynamic import statement.
28
28
  */
29
- declare function DynamicImportStatement(props: DynamicImportStatementProps): _alloy_js_core4.Children;
29
+ declare function DynamicImportStatement(props: DynamicImportStatementProps): _alloy_js_core14.Children;
30
30
  declare type __ΩDynamicImportStatementProps = any[];
31
31
  //#endregion
32
32
  export { DynamicImportStatement, DynamicImportStatementProps, __ΩDynamicImportStatementProps };
@@ -1,4 +1,4 @@
1
- import * as _alloy_js_core13 from "@alloy-js/core";
1
+ import * as _alloy_js_core15 from "@alloy-js/core";
2
2
  import { VarDeclarationProps } from "@alloy-js/typescript";
3
3
 
4
4
  //#region src/typescript/components/dynamic-import-statement.d.ts
@@ -26,7 +26,7 @@ interface DynamicImportStatementProps extends Omit<VarDeclarationProps, "initial
26
26
  * @param props - The properties for the dynamic import statement.
27
27
  * @returns A `VarDeclaration` component representing the dynamic import statement.
28
28
  */
29
- declare function DynamicImportStatement(props: DynamicImportStatementProps): _alloy_js_core13.Children;
29
+ declare function DynamicImportStatement(props: DynamicImportStatementProps): _alloy_js_core15.Children;
30
30
  declare type __ΩDynamicImportStatementProps = any[];
31
31
  //#endregion
32
32
  export { DynamicImportStatement, DynamicImportStatementProps, __ΩDynamicImportStatementProps };
@@ -1,6 +1,6 @@
1
1
  import { ResolvedEntryTypeDefinition } from "../../powerlines/src/types/resolved.cjs";
2
2
  import { TypescriptFileProps } from "./typescript-file.cjs";
3
- import * as _alloy_js_core5 from "@alloy-js/core";
3
+ import * as _alloy_js_core16 from "@alloy-js/core";
4
4
 
5
5
  //#region src/typescript/components/entry-file.d.ts
6
6
  type EntryFileProps = TypescriptFileProps & {
@@ -21,7 +21,7 @@ type EntryFileProps = TypescriptFileProps & {
21
21
  * @param props - The properties for the source file.
22
22
  * @returns The rendered source file component.
23
23
  */
24
- declare function EntryFile(props: EntryFileProps): _alloy_js_core5.Children;
24
+ declare function EntryFile(props: EntryFileProps): _alloy_js_core16.Children;
25
25
  declare type __ΩEntryFileProps = any[];
26
26
  //#endregion
27
27
  export { EntryFile, EntryFileProps, __ΩEntryFileProps };
@@ -1,6 +1,6 @@
1
1
  import { ResolvedEntryTypeDefinition } from "../../powerlines/src/types/resolved.mjs";
2
2
  import { TypescriptFileProps } from "./typescript-file.mjs";
3
- import * as _alloy_js_core6 from "@alloy-js/core";
3
+ import * as _alloy_js_core14 from "@alloy-js/core";
4
4
 
5
5
  //#region src/typescript/components/entry-file.d.ts
6
6
  type EntryFileProps = TypescriptFileProps & {
@@ -21,7 +21,7 @@ type EntryFileProps = TypescriptFileProps & {
21
21
  * @param props - The properties for the source file.
22
22
  * @returns The rendered source file component.
23
23
  */
24
- declare function EntryFile(props: EntryFileProps): _alloy_js_core6.Children;
24
+ declare function EntryFile(props: EntryFileProps): _alloy_js_core14.Children;
25
25
  declare type __ΩEntryFileProps = any[];
26
26
  //#endregion
27
27
  export { EntryFile, EntryFileProps, __ΩEntryFileProps };
@@ -1,18 +1,18 @@
1
1
  import { TSDocProps } from "./tsdoc.cjs";
2
- import * as _alloy_js_core1 from "@alloy-js/core";
2
+ import * as _alloy_js_core10 from "@alloy-js/core";
3
3
 
4
4
  //#region src/typescript/components/tsdoc-reflection.d.ts
5
5
  /**
6
6
  * Generates a TypeScript interface property for the given reflection class.
7
7
  */
8
- declare function TSDocReflectionClass<T extends Record<string, any> = Record<string, any>>(props: TSDocProps): _alloy_js_core1.Children;
8
+ declare function TSDocReflectionClass<T extends Record<string, any> = Record<string, any>>(props: TSDocProps): _alloy_js_core10.Children;
9
9
  /**
10
10
  * Generates a TypeScript interface property for the given reflection class.
11
11
  */
12
- declare function TSDocReflectionProperty(props: TSDocProps): _alloy_js_core1.Children;
12
+ declare function TSDocReflectionProperty(props: TSDocProps): _alloy_js_core10.Children;
13
13
  /**
14
14
  * Generates a TypeScript interface property for the given reflection class.
15
15
  */
16
- declare function TSDocReflectionMethod(props: TSDocProps): _alloy_js_core1.Children;
16
+ declare function TSDocReflectionMethod(props: TSDocProps): _alloy_js_core10.Children;
17
17
  //#endregion
18
18
  export { TSDocReflectionClass, TSDocReflectionMethod, TSDocReflectionProperty };
@@ -1,18 +1,18 @@
1
1
  import { TSDocProps } from "./tsdoc.mjs";
2
- import * as _alloy_js_core14 from "@alloy-js/core";
2
+ import * as _alloy_js_core11 from "@alloy-js/core";
3
3
 
4
4
  //#region src/typescript/components/tsdoc-reflection.d.ts
5
5
  /**
6
6
  * Generates a TypeScript interface property for the given reflection class.
7
7
  */
8
- declare function TSDocReflectionClass<T extends Record<string, any> = Record<string, any>>(props: TSDocProps): _alloy_js_core14.Children;
8
+ declare function TSDocReflectionClass<T extends Record<string, any> = Record<string, any>>(props: TSDocProps): _alloy_js_core11.Children;
9
9
  /**
10
10
  * Generates a TypeScript interface property for the given reflection class.
11
11
  */
12
- declare function TSDocReflectionProperty(props: TSDocProps): _alloy_js_core14.Children;
12
+ declare function TSDocReflectionProperty(props: TSDocProps): _alloy_js_core11.Children;
13
13
  /**
14
14
  * Generates a TypeScript interface property for the given reflection class.
15
15
  */
16
- declare function TSDocReflectionMethod(props: TSDocProps): _alloy_js_core14.Children;
16
+ declare function TSDocReflectionMethod(props: TSDocProps): _alloy_js_core11.Children;
17
17
  //#endregion
18
18
  export { TSDocReflectionClass, TSDocReflectionMethod, TSDocReflectionProperty };
@@ -1,9 +1,9 @@
1
1
  const require_rolldown_runtime = require('../../_virtual/rolldown_runtime.cjs');
2
2
  const require_core_contexts_reflection = require('../../core/contexts/reflection.cjs');
3
- const require_type = require('../../deepkit/src/vendor/type.cjs');
4
3
  const require_typescript_components_tsdoc_reflection = require('./tsdoc-reflection.cjs');
5
4
  let __alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
6
5
  let __alloy_js_core = require("@alloy-js/core");
6
+ let __powerlines_deepkit_vendor_type = require("@powerlines/deepkit/vendor/type");
7
7
  let __stryke_type_checks_is_string = require("@stryke/type-checks/is-string");
8
8
  let __stryke_string_format_pascal_case = require("@stryke/string-format/pascal-case");
9
9
  let __alloy_js_typescript = require("@alloy-js/typescript");
@@ -57,7 +57,7 @@ function TypescriptInterfaceProperty(props) {
57
57
  return property.isNullable();
58
58
  },
59
59
  get type() {
60
- return (0, require_type.type_exports.stringifyType)(property.getType());
60
+ return (0, __powerlines_deepkit_vendor_type.stringifyType)(property.getType());
61
61
  }
62
62
  }, rest))];
63
63
  }
@@ -1,24 +1,24 @@
1
1
  import { ComponentProps } from "../../types/components.cjs";
2
- import { type_d_exports } from "../../deepkit/src/vendor/type.cjs";
3
- import * as _alloy_js_core0 from "@alloy-js/core";
2
+ import * as _alloy_js_core3 from "@alloy-js/core";
4
3
  import { InterfaceDeclarationProps, InterfaceMemberProps } from "@alloy-js/typescript";
4
+ import { ReflectionClass, ReflectionProperty } from "@powerlines/deepkit/vendor/type";
5
5
 
6
6
  //#region src/typescript/components/typescript-interface.d.ts
7
7
  interface TypeScriptInterfaceProps<T extends Record<string, any> = Record<string, any>> extends InterfaceDeclarationProps, ComponentProps {
8
- reflection: type_d_exports.ReflectionClass<T>;
8
+ reflection: ReflectionClass<T>;
9
9
  defaultValue?: Partial<T>;
10
10
  }
11
11
  interface TypescriptInterfacePropertyProps extends Omit<InterfaceMemberProps, "name">, ComponentProps {
12
- property: type_d_exports.ReflectionProperty;
12
+ property: ReflectionProperty;
13
13
  }
14
14
  /**
15
15
  * Generates a TypeScript interface for the given reflection class.
16
16
  */
17
- declare function TypeScriptInterface<T extends Record<string, any> = Record<string, any>>(props: TypeScriptInterfaceProps<T>): _alloy_js_core0.Children;
17
+ declare function TypeScriptInterface<T extends Record<string, any> = Record<string, any>>(props: TypeScriptInterfaceProps<T>): _alloy_js_core3.Children;
18
18
  /**
19
19
  * Generates a TypeScript interface property for the given reflection class.
20
20
  */
21
- declare function TypescriptInterfaceProperty(props: TypescriptInterfacePropertyProps): _alloy_js_core0.Children;
21
+ declare function TypescriptInterfaceProperty(props: TypescriptInterfacePropertyProps): _alloy_js_core3.Children;
22
22
  declare type __ΩTypeScriptInterfaceProps = any[];
23
23
  declare type __ΩTypescriptInterfacePropertyProps = any[];
24
24
  //#endregion
@@ -1,24 +1,24 @@
1
1
  import { ComponentProps } from "../../types/components.mjs";
2
- import { type_d_exports } from "../../deepkit/src/vendor/type.mjs";
3
- import * as _alloy_js_core7 from "@alloy-js/core";
2
+ import * as _alloy_js_core9 from "@alloy-js/core";
3
+ import { ReflectionClass, ReflectionProperty } from "@powerlines/deepkit/vendor/type";
4
4
  import { InterfaceDeclarationProps, InterfaceMemberProps } from "@alloy-js/typescript";
5
5
 
6
6
  //#region src/typescript/components/typescript-interface.d.ts
7
7
  interface TypeScriptInterfaceProps<T extends Record<string, any> = Record<string, any>> extends InterfaceDeclarationProps, ComponentProps {
8
- reflection: type_d_exports.ReflectionClass<T>;
8
+ reflection: ReflectionClass<T>;
9
9
  defaultValue?: Partial<T>;
10
10
  }
11
11
  interface TypescriptInterfacePropertyProps extends Omit<InterfaceMemberProps, "name">, ComponentProps {
12
- property: type_d_exports.ReflectionProperty;
12
+ property: ReflectionProperty;
13
13
  }
14
14
  /**
15
15
  * Generates a TypeScript interface for the given reflection class.
16
16
  */
17
- declare function TypeScriptInterface<T extends Record<string, any> = Record<string, any>>(props: TypeScriptInterfaceProps<T>): _alloy_js_core7.Children;
17
+ declare function TypeScriptInterface<T extends Record<string, any> = Record<string, any>>(props: TypeScriptInterfaceProps<T>): _alloy_js_core9.Children;
18
18
  /**
19
19
  * Generates a TypeScript interface property for the given reflection class.
20
20
  */
21
- declare function TypescriptInterfaceProperty(props: TypescriptInterfacePropertyProps): _alloy_js_core7.Children;
21
+ declare function TypescriptInterfaceProperty(props: TypescriptInterfacePropertyProps): _alloy_js_core9.Children;
22
22
  declare type __ΩTypeScriptInterfaceProps = any[];
23
23
  declare type __ΩTypescriptInterfacePropertyProps = any[];
24
24
  //#endregion
@@ -1,8 +1,8 @@
1
1
  import { ReflectionClassContext, ReflectionPropertyContext } from "../../core/contexts/reflection.mjs";
2
- import { type_exports } from "../../deepkit/src/vendor/type.mjs";
3
2
  import { TSDocReflectionClass, TSDocReflectionProperty } from "./tsdoc-reflection.mjs";
4
3
  import { createComponent, mergeProps } from "@alloy-js/core/jsx-runtime";
5
4
  import { For, computed, splitProps } from "@alloy-js/core";
5
+ import { stringifyType } from "@powerlines/deepkit/vendor/type";
6
6
  import { isString } from "@stryke/type-checks/is-string";
7
7
  import { pascalCase } from "@stryke/string-format/pascal-case";
8
8
  import { InterfaceDeclaration, InterfaceMember } from "@alloy-js/typescript";
@@ -56,7 +56,7 @@ function TypescriptInterfaceProperty(props) {
56
56
  return property.isNullable();
57
57
  },
58
58
  get type() {
59
- return (0, type_exports.stringifyType)(property.getType());
59
+ return stringifyType(property.getType());
60
60
  }
61
61
  }, rest))];
62
62
  }
@@ -1,25 +1,25 @@
1
1
  import { ComponentProps } from "../../types/components.cjs";
2
- import { type_d_exports } from "../../deepkit/src/vendor/type.cjs";
3
- import * as _alloy_js_core14 from "@alloy-js/core";
2
+ import * as _alloy_js_core0 from "@alloy-js/core";
4
3
  import { VarDeclarationProps } from "@alloy-js/typescript";
4
+ import { ReflectionClass, ReflectionProperty } from "@powerlines/deepkit/vendor/type";
5
5
  import { ComputedRef } from "@vue/reactivity";
6
6
 
7
7
  //#region src/typescript/components/typescript-object.d.ts
8
8
  interface TypescriptObjectProps<T extends Record<string, any> = Record<string, any>> extends VarDeclarationProps {
9
- reflection?: ComputedRef<type_d_exports.ReflectionClass<T>>;
9
+ reflection?: ComputedRef<ReflectionClass<T>>;
10
10
  defaultValue?: ComputedRef<Partial<T> | undefined>;
11
11
  }
12
12
  interface TypescriptObjectPropertyProps extends ComponentProps {
13
- property: type_d_exports.ReflectionProperty;
13
+ property: ReflectionProperty;
14
14
  }
15
15
  /**
16
16
  * Generates a TypeScript object for the given reflection class.
17
17
  */
18
- declare function TypescriptObject<T extends Record<string, any> = Record<string, any>>(props: TypescriptObjectProps<T>): _alloy_js_core14.Children;
18
+ declare function TypescriptObject<T extends Record<string, any> = Record<string, any>>(props: TypescriptObjectProps<T>): _alloy_js_core0.Children;
19
19
  /**
20
20
  * Generates a TypeScript object property for the given reflection class.
21
21
  */
22
- declare function TypescriptObjectProperty(props: TypescriptObjectPropertyProps): _alloy_js_core14.Children;
22
+ declare function TypescriptObjectProperty(props: TypescriptObjectPropertyProps): _alloy_js_core0.Children;
23
23
  declare type __ΩTypescriptObjectProps = any[];
24
24
  declare type __ΩTypescriptObjectPropertyProps = any[];
25
25
  //#endregion
@@ -1,25 +1,25 @@
1
1
  import { ComponentProps } from "../../types/components.mjs";
2
- import { type_d_exports } from "../../deepkit/src/vendor/type.mjs";
3
- import * as _alloy_js_core2 from "@alloy-js/core";
2
+ import * as _alloy_js_core7 from "@alloy-js/core";
3
+ import { ReflectionClass, ReflectionProperty } from "@powerlines/deepkit/vendor/type";
4
4
  import { VarDeclarationProps } from "@alloy-js/typescript";
5
5
  import { ComputedRef } from "@vue/reactivity";
6
6
 
7
7
  //#region src/typescript/components/typescript-object.d.ts
8
8
  interface TypescriptObjectProps<T extends Record<string, any> = Record<string, any>> extends VarDeclarationProps {
9
- reflection?: ComputedRef<type_d_exports.ReflectionClass<T>>;
9
+ reflection?: ComputedRef<ReflectionClass<T>>;
10
10
  defaultValue?: ComputedRef<Partial<T> | undefined>;
11
11
  }
12
12
  interface TypescriptObjectPropertyProps extends ComponentProps {
13
- property: type_d_exports.ReflectionProperty;
13
+ property: ReflectionProperty;
14
14
  }
15
15
  /**
16
16
  * Generates a TypeScript object for the given reflection class.
17
17
  */
18
- declare function TypescriptObject<T extends Record<string, any> = Record<string, any>>(props: TypescriptObjectProps<T>): _alloy_js_core2.Children;
18
+ declare function TypescriptObject<T extends Record<string, any> = Record<string, any>>(props: TypescriptObjectProps<T>): _alloy_js_core7.Children;
19
19
  /**
20
20
  * Generates a TypeScript object property for the given reflection class.
21
21
  */
22
- declare function TypescriptObjectProperty(props: TypescriptObjectPropertyProps): _alloy_js_core2.Children;
22
+ declare function TypescriptObjectProperty(props: TypescriptObjectPropertyProps): _alloy_js_core7.Children;
23
23
  declare type __ΩTypescriptObjectProps = any[];
24
24
  declare type __ΩTypescriptObjectPropertyProps = any[];
25
25
  //#endregion
@@ -7,4 +7,5 @@ import { RecordExpression, RecordExpressionProps, __ΩRecordExpressionProps } fr
7
7
  import { TSDocReflectionClass, TSDocReflectionMethod, TSDocReflectionProperty } from "./components/tsdoc-reflection.cjs";
8
8
  import { TypeScriptInterface, TypeScriptInterfaceProps, TypescriptInterfaceProperty, TypescriptInterfacePropertyProps, __ΩTypeScriptInterfaceProps, __ΩTypescriptInterfacePropertyProps } from "./components/typescript-interface.cjs";
9
9
  import { TypescriptObject, TypescriptObjectProperty, TypescriptObjectPropertyProps, TypescriptObjectProps, __ΩTypescriptObjectPropertyProps, __ΩTypescriptObjectProps } from "./components/typescript-object.cjs";
10
+ import "./components/index.cjs";
10
11
  export { BuiltinFile, BuiltinFileProps, DynamicImportStatement, DynamicImportStatementProps, EntryFile, EntryFileProps, RecordExpression, RecordExpressionProps, TSDoc, TSDocAlias, TSDocAttributesTags, TSDocAttributesTagsProps, TSDocDefaultValue, TSDocDefaultValueProps, TSDocDomain, TSDocExample, TSDocExampleProps, TSDocHidden, TSDocIgnore, TSDocInternal, TSDocLink, TSDocModule, TSDocModuleProps, TSDocParam, TSDocParamProps, TSDocParams, TSDocParamsProps, TSDocPermission, TSDocProps, TSDocReadonly, TSDocReflectionClass, TSDocReflectionMethod, TSDocReflectionProperty, TSDocRemarks, TSDocReturns, TSDocTag, TSDocTagProps, TSDocThrows, TSDocTitle, TypeScriptInterface, TypeScriptInterfaceProps, TypescriptFile, TypescriptFileHeader, TypescriptFileHeaderImports, TypescriptFileHeaderImportsProps, TypescriptFileHeaderProps, TypescriptFileProps, TypescriptInterfaceProperty, TypescriptInterfacePropertyProps, TypescriptObject, TypescriptObjectProperty, TypescriptObjectPropertyProps, TypescriptObjectProps, __ΩBuiltinFileProps, __ΩDynamicImportStatementProps, __ΩEntryFileProps, __ΩRecordExpressionProps, __ΩTSDocAttributesTagsProps, __ΩTSDocDefaultValueProps, __ΩTSDocExampleProps, __ΩTSDocModuleProps, __ΩTSDocParamProps, __ΩTSDocParamsProps, __ΩTSDocProps, __ΩTSDocTagProps, __ΩTypeScriptInterfaceProps, __ΩTypescriptFileHeaderImportsProps, __ΩTypescriptFileHeaderProps, __ΩTypescriptFileProps, __ΩTypescriptInterfacePropertyProps, __ΩTypescriptObjectPropertyProps, __ΩTypescriptObjectProps };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-alloy",
3
- "version": "0.18.0",
3
+ "version": "0.18.2",
4
4
  "type": "module",
5
5
  "description": "A package containing various Alloy framework components and helper utilities.",
6
6
  "repository": {
@@ -360,8 +360,8 @@
360
360
  "@alloy-js/markdown": "^0.22.0",
361
361
  "@alloy-js/rollup-plugin": "^0.1.0",
362
362
  "@alloy-js/typescript": "^0.22.0",
363
- "@powerlines/deepkit": "^0.5.36",
364
- "@powerlines/plugin-plugin": "^0.12.73",
363
+ "@powerlines/deepkit": "^0.5.37",
364
+ "@powerlines/plugin-plugin": "^0.12.74",
365
365
  "@storm-software/config-tools": "^1.188.75",
366
366
  "@stryke/capnp": "^0.12.52",
367
367
  "@stryke/convert": "^0.6.30",
@@ -379,5 +379,5 @@
379
379
  },
380
380
  "devDependencies": { "@types/node": "^24.10.4" },
381
381
  "publishConfig": { "access": "public" },
382
- "gitHead": "b9a0574767447bffa6549e0492812dfe64e879e3"
382
+ "gitHead": "a703a2dd9be6175a67a9bf4847d0217be4e920af"
383
383
  }
@@ -1,29 +0,0 @@
1
- //#region rolldown:runtime
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __copyProps = (to, from, except, desc) => {
7
- if (from && typeof from === "object" || typeof from === "function") {
8
- for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
9
- key = keys[i];
10
- if (!__hasOwnProp.call(to, key) && key !== except) {
11
- __defProp(to, key, {
12
- get: ((k) => from[k]).bind(null, key),
13
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
14
- });
15
- }
16
- }
17
- }
18
- return to;
19
- };
20
- var __reExport = (target, mod, secondTarget, symbols) => {
21
- if (symbols) {
22
- __defProp(target, Symbol.toStringTag, { value: "Module" });
23
- secondTarget && __defProp(secondTarget, Symbol.toStringTag, { value: "Module" });
24
- }
25
- __copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default");
26
- };
27
-
28
- //#endregion
29
- export { __reExport };
@@ -1,20 +0,0 @@
1
- const require_rolldown_runtime = require('../../../_virtual/rolldown_runtime.cjs');
2
-
3
- //#region ../deepkit/src/vendor/core.ts
4
- var core_exports = {};
5
- require_rolldown_runtime.__reExport(core_exports, require("@deepkit/core"));
6
-
7
- //#endregion
8
- Object.defineProperty(exports, 'core_exports', {
9
- enumerable: true,
10
- get: function () {
11
- return core_exports;
12
- }
13
- });
14
- var __deepkit_core = require("@deepkit/core");
15
- Object.keys(__deepkit_core).forEach(function (k) {
16
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
17
- enumerable: true,
18
- get: function () { return __deepkit_core[k]; }
19
- });
20
- });
@@ -1,11 +0,0 @@
1
- import { __reExport } from "../../../_virtual/rolldown_runtime.mjs";
2
-
3
- export * from "@deepkit/core"
4
-
5
- //#region ../deepkit/src/vendor/core.ts
6
- var core_exports = {};
7
- import * as import___deepkit_core from "@deepkit/core";
8
- __reExport(core_exports, import___deepkit_core);
9
-
10
- //#endregion
11
- export { core_exports };
@@ -1,20 +0,0 @@
1
- const require_rolldown_runtime = require('../../../_virtual/rolldown_runtime.cjs');
2
-
3
- //#region ../deepkit/src/vendor/type.ts
4
- var type_exports = {};
5
- require_rolldown_runtime.__reExport(type_exports, require("@deepkit/type"));
6
-
7
- //#endregion
8
- Object.defineProperty(exports, 'type_exports', {
9
- enumerable: true,
10
- get: function () {
11
- return type_exports;
12
- }
13
- });
14
- var __deepkit_type = require("@deepkit/type");
15
- Object.keys(__deepkit_type).forEach(function (k) {
16
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
17
- enumerable: true,
18
- get: function () { return __deepkit_type[k]; }
19
- });
20
- });
@@ -1,7 +0,0 @@
1
- export * from "@deepkit/type";
2
-
3
- //#region ../deepkit/src/vendor/type.d.ts
4
-
5
- import * as import___deepkit_type from "@deepkit/type";
6
- //#endregion
7
- export { import___deepkit_type as type_d_exports };
@@ -1,7 +0,0 @@
1
- export * from "@deepkit/type";
2
-
3
- //#region ../deepkit/src/vendor/type.d.ts
4
-
5
- import * as import___deepkit_type from "@deepkit/type";
6
- //#endregion
7
- export { import___deepkit_type as type_d_exports };
@@ -1,11 +0,0 @@
1
- import { __reExport } from "../../../_virtual/rolldown_runtime.mjs";
2
-
3
- export * from "@deepkit/type"
4
-
5
- //#region ../deepkit/src/vendor/type.ts
6
- var type_exports = {};
7
- import * as import___deepkit_type from "@deepkit/type";
8
- __reExport(type_exports, import___deepkit_type);
9
-
10
- //#endregion
11
- export { type_exports };