@bldrs-ai/conway 1.346.1102 → 1.347.1107
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/compiled/examples/browser-bundled.cjs +1 -1
- package/compiled/examples/cli-bundled.cjs +1 -1
- package/compiled/examples/cli-step-bundled.cjs +1 -1
- package/compiled/examples/validator-bundled.cjs +1 -1
- package/compiled/src/AP214E3_2010/ap214_product_structure_extraction.d.ts +144 -0
- package/compiled/src/AP214E3_2010/ap214_product_structure_extraction.d.ts.map +1 -0
- package/compiled/src/AP214E3_2010/ap214_product_structure_extraction.js +236 -0
- package/compiled/src/AP214E3_2010/ap214_product_structure_extraction.test.d.ts +2 -0
- package/compiled/src/AP214E3_2010/ap214_product_structure_extraction.test.d.ts.map +1 -0
- package/compiled/src/AP214E3_2010/ap214_product_structure_extraction.test.js +107 -0
- package/compiled/src/AP214E3_2010/ap214_property_extraction.d.ts +90 -0
- package/compiled/src/AP214E3_2010/ap214_property_extraction.d.ts.map +1 -0
- package/compiled/src/AP214E3_2010/ap214_property_extraction.js +143 -0
- package/compiled/src/AP214E3_2010/ap214_property_extraction.test.d.ts +2 -0
- package/compiled/src/AP214E3_2010/ap214_property_extraction.test.d.ts.map +1 -0
- package/compiled/src/AP214E3_2010/ap214_property_extraction.test.js +56 -0
- package/compiled/src/compat/web-ifc/ap214_properties.d.ts +140 -13
- package/compiled/src/compat/web-ifc/ap214_properties.d.ts.map +1 -1
- package/compiled/src/compat/web-ifc/ap214_properties.js +267 -26
- package/compiled/src/compat/web-ifc/ap214_properties.test.d.ts +2 -0
- package/compiled/src/compat/web-ifc/ap214_properties.test.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/ap214_properties.test.js +85 -0
- package/compiled/src/version/version.js +1 -1
- package/compiled/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import { AP214ProductStructureExtraction } from "./ap214_product_structure_extraction.js";
|
|
2
|
+
import { descriptive_representation_item } from "./AP214E3_2010_gen/descriptive_representation_item.gen.js";
|
|
3
|
+
import { general_property } from "./AP214E3_2010_gen/general_property.gen.js";
|
|
4
|
+
import { general_property_association } from "./AP214E3_2010_gen/general_property_association.gen.js";
|
|
5
|
+
import { measure_representation_item } from "./AP214E3_2010_gen/measure_representation_item.gen.js";
|
|
6
|
+
import { property_definition } from "./AP214E3_2010_gen/property_definition.gen.js";
|
|
7
|
+
import { property_definition_representation } from "./AP214E3_2010_gen/property_definition_representation.gen.js";
|
|
8
|
+
import { shape_definition_representation } from "./AP214E3_2010_gen/shape_definition_representation.gen.js";
|
|
9
|
+
/**
|
|
10
|
+
* Extracts STEP part properties from a populated {@link AP214StepModel}.
|
|
11
|
+
*
|
|
12
|
+
* Walks the property chain
|
|
13
|
+
* `general_property` → (`general_property_association`) → `property_definition`
|
|
14
|
+
* → `property_definition_representation` → `representation` →
|
|
15
|
+
* `descriptive_representation_item` / `measure_representation_item` into
|
|
16
|
+
* per-part key/value rows. Includes the NIST validation properties
|
|
17
|
+
* (`geometric/attribute validation property`, e.g. volume via
|
|
18
|
+
* `measure_representation_item`).
|
|
19
|
+
*
|
|
20
|
+
* Mirrors the IFC precedent (`src/ifc/ifc_property_extraction.ts`); feeds the
|
|
21
|
+
* web-ifc compat surface `ap214_properties.ts` that Share consumes.
|
|
22
|
+
*/
|
|
23
|
+
export class AP214PropertyExtraction {
|
|
24
|
+
/**
|
|
25
|
+
* @param model The populated AP214/AP242 step model to walk.
|
|
26
|
+
*/
|
|
27
|
+
constructor(model) {
|
|
28
|
+
this.model = model;
|
|
29
|
+
this.generalPropertyNameByDef_ = new Map();
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Build the per-part property map.
|
|
33
|
+
*
|
|
34
|
+
* @return {ExtractedPropertyMap} Properties keyed by owning
|
|
35
|
+
* `product_definition` express id. Properties whose owner is a feature
|
|
36
|
+
* (`shape_aspect`, dimensions) rather than a part are skipped at this
|
|
37
|
+
* (Simplified) tier — they belong to the Full PMI tier.
|
|
38
|
+
*/
|
|
39
|
+
extractProperties() {
|
|
40
|
+
this.indexGeneralPropertyNames();
|
|
41
|
+
const result = new Map();
|
|
42
|
+
for (const element of this.model.types(property_definition_representation)) {
|
|
43
|
+
// shape_definition_representation is a subtype: its representation holds
|
|
44
|
+
// geometry, not properties — skip it here, geometry extraction owns it.
|
|
45
|
+
if (element instanceof shape_definition_representation) {
|
|
46
|
+
continue;
|
|
47
|
+
}
|
|
48
|
+
const pdr = element;
|
|
49
|
+
this.collectFromRepresentation(pdr, result);
|
|
50
|
+
}
|
|
51
|
+
return result;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Index general-property names by the express id of the `property_definition`
|
|
55
|
+
* they are associated with, so a property can carry the canonical
|
|
56
|
+
* `general_property` label when one exists.
|
|
57
|
+
*/
|
|
58
|
+
indexGeneralPropertyNames() {
|
|
59
|
+
for (const element of this.model.types(general_property_association)) {
|
|
60
|
+
const association = element;
|
|
61
|
+
const base = association.base_definition;
|
|
62
|
+
const derived = association.derived_definition;
|
|
63
|
+
if (!(base instanceof general_property) ||
|
|
64
|
+
!(derived instanceof property_definition)) {
|
|
65
|
+
continue;
|
|
66
|
+
}
|
|
67
|
+
const definitionId = derived.expressID;
|
|
68
|
+
if (definitionId !== void 0 && base.name.length > 0) {
|
|
69
|
+
this.generalPropertyNameByDef_.set(definitionId, base.name);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Resolve the part owner and value rows for one
|
|
75
|
+
* `property_definition_representation` and append them to the result map.
|
|
76
|
+
*
|
|
77
|
+
* @param pdr The property-definition representation to walk.
|
|
78
|
+
* @param result The accumulating per-part property map.
|
|
79
|
+
*/
|
|
80
|
+
collectFromRepresentation(pdr, result) {
|
|
81
|
+
const propertyDefinition = pdr.definition;
|
|
82
|
+
if (!(propertyDefinition instanceof property_definition)) {
|
|
83
|
+
return;
|
|
84
|
+
}
|
|
85
|
+
const ownerId = AP214ProductStructureExtraction.resolveProductDefinitionId(propertyDefinition.definition);
|
|
86
|
+
if (ownerId === void 0) {
|
|
87
|
+
return;
|
|
88
|
+
}
|
|
89
|
+
const definitionId = propertyDefinition.expressID;
|
|
90
|
+
const group = propertyDefinition.name;
|
|
91
|
+
const fallbackKey = (definitionId !== void 0 ? this.generalPropertyNameByDef_.get(definitionId) : void 0) ??
|
|
92
|
+
(group.length > 0 ? group : (propertyDefinition.description ?? ""));
|
|
93
|
+
const representation = pdr.used_representation;
|
|
94
|
+
if (representation === void 0) {
|
|
95
|
+
return;
|
|
96
|
+
}
|
|
97
|
+
for (const item of representation.items) {
|
|
98
|
+
const property = AP214PropertyExtraction.toProperty(item, fallbackKey, group);
|
|
99
|
+
if (property === void 0) {
|
|
100
|
+
continue;
|
|
101
|
+
}
|
|
102
|
+
let rows = result.get(ownerId);
|
|
103
|
+
if (rows === void 0) {
|
|
104
|
+
rows = [];
|
|
105
|
+
result.set(ownerId, rows);
|
|
106
|
+
}
|
|
107
|
+
rows.push(property);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* Convert a representation item into a property row, or `undefined` for item
|
|
112
|
+
* kinds that carry no key/value (e.g. a centroid `cartesian_point`).
|
|
113
|
+
*
|
|
114
|
+
* @param item The representation item to convert.
|
|
115
|
+
* @param fallbackKey Key to use when the item itself is unnamed.
|
|
116
|
+
* @param group Grouping label from the owning property definition.
|
|
117
|
+
* @return {ExtractedProperty | undefined} The property row, or `undefined`.
|
|
118
|
+
*/
|
|
119
|
+
static toProperty(item, fallbackKey, group) {
|
|
120
|
+
const key = item.name.length > 0 ? item.name : fallbackKey;
|
|
121
|
+
const expressID = item.expressID;
|
|
122
|
+
if (item instanceof descriptive_representation_item) {
|
|
123
|
+
// Skip a descriptive item with no value — it would surface as a blank
|
|
124
|
+
// key/value row in the Properties panel where there is nothing to show.
|
|
125
|
+
if (item.description.length === 0) {
|
|
126
|
+
return void 0;
|
|
127
|
+
}
|
|
128
|
+
return { name: key, value: item.description, group, expressID };
|
|
129
|
+
}
|
|
130
|
+
if (item instanceof measure_representation_item) {
|
|
131
|
+
// `value_component` is a `measure_value` SELECT: most members carry a
|
|
132
|
+
// numeric `.Value`, but `descriptive_measure` / `context_dependent_measure`
|
|
133
|
+
// carry a string. Only treat a genuinely numeric value as `numericValue`
|
|
134
|
+
// so a textual measure doesn't end up typed as a number downstream.
|
|
135
|
+
const rawValue = item.value_component.Value;
|
|
136
|
+
if (typeof rawValue === "number") {
|
|
137
|
+
return { name: key, value: String(rawValue), numericValue: rawValue, group, expressID };
|
|
138
|
+
}
|
|
139
|
+
return { name: key, value: String(rawValue), group, expressID };
|
|
140
|
+
}
|
|
141
|
+
return void 0;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ap214_property_extraction.test.d.ts","sourceRoot":"","sources":["../../../src/AP214E3_2010/ap214_property_extraction.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import fs from "fs";
|
|
2
|
+
import { describe, expect, test } from "@jest/globals";
|
|
3
|
+
import AP214StepParser from "./ap214_step_parser.js";
|
|
4
|
+
import ParsingBuffer from "../parsing/parsing_buffer.js";
|
|
5
|
+
import { ParseResult } from "../step/parsing/step_parser.js";
|
|
6
|
+
import { AP214PropertyExtraction, } from "./ap214_property_extraction.js";
|
|
7
|
+
const parser = AP214StepParser.Instance;
|
|
8
|
+
/** Express id of the single part (`product_definition`) in the CTC fixture. */
|
|
9
|
+
const CTC_PRODUCT_DEFINITION_EXPRESS_ID = 4368;
|
|
10
|
+
/** Expected volume validation value for the CTC fixture. */
|
|
11
|
+
const CTC_VOLUME_MEASURE = 14644822.6361138;
|
|
12
|
+
/**
|
|
13
|
+
* Parse the hermetic CTC properties fixture and extract its property map.
|
|
14
|
+
*
|
|
15
|
+
* @return {ExtractedPropertyMap} Properties keyed by owning product definition.
|
|
16
|
+
*/
|
|
17
|
+
function extractCtcProperties() {
|
|
18
|
+
const buffer = fs.readFileSync("data/nist-ctc-properties.step");
|
|
19
|
+
const bufferInput = new ParsingBuffer(buffer);
|
|
20
|
+
const headerResult = parser.parseHeader(bufferInput)[1];
|
|
21
|
+
expect(headerResult).toBe(ParseResult.COMPLETE);
|
|
22
|
+
const [result, model] = parser.parseDataToModel(bufferInput);
|
|
23
|
+
expect(model).not.toBe(void 0);
|
|
24
|
+
expect(result === ParseResult.COMPLETE || result === ParseResult.INCOMPLETE).toBe(true);
|
|
25
|
+
return new AP214PropertyExtraction(model).extractProperties();
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Find a property by key among a part's property rows.
|
|
29
|
+
*
|
|
30
|
+
* @param rows The property rows for a part.
|
|
31
|
+
* @param name The property key to find.
|
|
32
|
+
* @return {ExtractedProperty} The matching property row.
|
|
33
|
+
*/
|
|
34
|
+
function property(rows, name) {
|
|
35
|
+
const found = rows.find((row) => row.name === name);
|
|
36
|
+
expect(found).not.toBe(void 0);
|
|
37
|
+
return found;
|
|
38
|
+
}
|
|
39
|
+
describe("AP214PropertyExtraction", () => {
|
|
40
|
+
test("attaches properties to the owning product definition", () => {
|
|
41
|
+
const properties = extractCtcProperties();
|
|
42
|
+
expect(properties.has(CTC_PRODUCT_DEFINITION_EXPRESS_ID)).toBe(true);
|
|
43
|
+
});
|
|
44
|
+
test("extracts the NIST attribute key/values", () => {
|
|
45
|
+
const rows = extractCtcProperties().get(CTC_PRODUCT_DEFINITION_EXPRESS_ID);
|
|
46
|
+
expect(property(rows, "Modeled By").value).toBe("Engineer");
|
|
47
|
+
expect(property(rows, "CAGE Code").value).toBe("64JW1");
|
|
48
|
+
expect(property(rows, "Company").value).toBe("ACME");
|
|
49
|
+
});
|
|
50
|
+
test("extracts the geometric validation volume property", () => {
|
|
51
|
+
const rows = extractCtcProperties().get(CTC_PRODUCT_DEFINITION_EXPRESS_ID);
|
|
52
|
+
const volume = property(rows, "volume measure");
|
|
53
|
+
expect(volume.numericValue).toBeCloseTo(CTC_VOLUME_MEASURE);
|
|
54
|
+
expect(volume.group).toBe("geometric validation property");
|
|
55
|
+
});
|
|
56
|
+
});
|
|
@@ -1,21 +1,148 @@
|
|
|
1
1
|
import { IfcApiProxyAP214 } from "./ifc_api_proxy_ap214.js";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
2
|
+
import { Node } from "./properties_passthrough.js";
|
|
3
|
+
/**
|
|
4
|
+
* web-ifc-compatible property/spatial surface over an AP214/AP242 step model.
|
|
5
|
+
*
|
|
6
|
+
* Backed by {@link AP214ProductStructureExtraction} and
|
|
7
|
+
* {@link AP214PropertyExtraction}: `getSpatialStructure` returns the real
|
|
8
|
+
* nested, named, occurrence-keyed tree (replacing the old flat, nameless stub);
|
|
9
|
+
* `getItemProperties` / `getPropertySets` return the extracted attribute and
|
|
10
|
+
* validation rows; `getAllItemsOfType` is backed by the model type index.
|
|
11
|
+
*
|
|
12
|
+
* This is the seam Share consumes (via `IfcApiProxyAP214`); nothing in Share
|
|
13
|
+
* changes — it lights up the moment this returns a real tree.
|
|
14
|
+
*/
|
|
7
15
|
export declare class AP214Properties {
|
|
8
16
|
private api;
|
|
9
|
-
private
|
|
17
|
+
private structureRoots_?;
|
|
18
|
+
private propertyMap_?;
|
|
19
|
+
private ownerByExpressID_?;
|
|
20
|
+
private nodeNameByExpressID_?;
|
|
21
|
+
private propertyByItemId_?;
|
|
22
|
+
/**
|
|
23
|
+
* @param api The AP214 passthrough proxy owning the step model.
|
|
24
|
+
*/
|
|
10
25
|
constructor(api: IfcApiProxyAP214);
|
|
26
|
+
/**
|
|
27
|
+
* No-op type-name lookup retained for interface compatibility; AP214 surfaces
|
|
28
|
+
* STEP entity names directly on the nodes.
|
|
29
|
+
*
|
|
30
|
+
* @param type The numeric type code.
|
|
31
|
+
* @return {string} The empty string (AP214 has no IFC type-name map).
|
|
32
|
+
*/
|
|
11
33
|
getIfcType(type: number): string;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
34
|
+
/**
|
|
35
|
+
* Resolve one express id to a web-ifc-shaped item, dispatching on what the id
|
|
36
|
+
* denotes:
|
|
37
|
+
*
|
|
38
|
+
* - a **property single** (a `descriptive_/measure_representation_item` id,
|
|
39
|
+
* referenced from a pset's `HasProperties`) → `{ expressID, Name: {value},
|
|
40
|
+
* NominalValue: {value} }`, the shape `unpackHelper` reads after it
|
|
41
|
+
* dereferences a `HasProperties` handle;
|
|
42
|
+
* - a **tree node** (NAUO occurrence id, or `product_definition[_shape]` id
|
|
43
|
+
* for single-part files) → `{ expressID, Name: {value} }`, the part's
|
|
44
|
+
* identity row.
|
|
45
|
+
*
|
|
46
|
+
* Property-single ids and node ids are disjoint (distinct STEP entities), so
|
|
47
|
+
* the lookup is unambiguous.
|
|
48
|
+
*
|
|
49
|
+
* @param id Express id to resolve.
|
|
50
|
+
* @param recursive Unused; kept for web-ifc signature parity.
|
|
51
|
+
* @return {Promise<object>} The web-ifc-shaped item.
|
|
52
|
+
*/
|
|
53
|
+
getItemProperties(id: number, recursive?: boolean): Promise<object>;
|
|
54
|
+
/**
|
|
55
|
+
* Get a part's property sets: one `IfcPropertySet`-shaped set per grouping
|
|
56
|
+
* label (plain attributes vs. validation properties). Each set's
|
|
57
|
+
* `HasProperties` is an array of web-ifc reference handles
|
|
58
|
+
* (`{ type: 5, value: itemExpressID }`) that Share's Properties panel resolves
|
|
59
|
+
* back to individual properties via `getItemProperties` — emitting inline
|
|
60
|
+
* property objects instead would trip `unpackHelper`'s reference-type guard.
|
|
61
|
+
*
|
|
62
|
+
* @param elementID Node express id.
|
|
63
|
+
* @param recursive Unused; kept for web-ifc signature parity.
|
|
64
|
+
* @return {Promise<any[]>} The property sets for the element.
|
|
65
|
+
*/
|
|
66
|
+
getPropertySets(elementID: number, recursive?: boolean): Promise<any[]>;
|
|
67
|
+
/**
|
|
68
|
+
* Type properties are not modeled for AP214 at the Simplified tier.
|
|
69
|
+
*
|
|
70
|
+
* @param elementID Node express id.
|
|
71
|
+
* @param recursive Unused; kept for web-ifc signature parity.
|
|
72
|
+
* @return {Promise<any[]>} An empty array.
|
|
73
|
+
*/
|
|
74
|
+
getTypeProperties(elementID: number, recursive?: boolean): Promise<any[]>;
|
|
75
|
+
/**
|
|
76
|
+
* Material properties are not modeled for AP214 at the Simplified tier.
|
|
77
|
+
*
|
|
78
|
+
* @param elementID Node express id.
|
|
79
|
+
* @param recursive Unused; kept for web-ifc signature parity.
|
|
80
|
+
* @return {Promise<any[]>} An empty array.
|
|
81
|
+
*/
|
|
82
|
+
getMaterialsProperties(elementID: number, recursive?: boolean): Promise<any[]>;
|
|
83
|
+
/**
|
|
84
|
+
* Get the real nested, named, occurrence-keyed product structure.
|
|
85
|
+
*
|
|
86
|
+
* @param includeProperties When true, merge each node's item properties onto
|
|
87
|
+
* the node (mirrors the IFC surface's `includeProperties`).
|
|
88
|
+
* @return {Promise<Node>} The root node. A single-root file returns its root
|
|
89
|
+
* directly; a multi-root file is wrapped in a synthetic container root.
|
|
90
|
+
*/
|
|
16
91
|
getSpatialStructure(includeProperties?: boolean): Promise<Node>;
|
|
17
|
-
|
|
18
|
-
|
|
92
|
+
/**
|
|
93
|
+
* Get every element of a STEP entity type, backed by the model type index.
|
|
94
|
+
*
|
|
95
|
+
* @param type The numeric AP214 entity type id.
|
|
96
|
+
* @param verbose When true, return raw line data; otherwise express ids.
|
|
97
|
+
* @return {Promise<any[]>} The matching elements (ids or raw lines).
|
|
98
|
+
*/
|
|
99
|
+
getAllItemsOfType(type: number, verbose: boolean): Promise<any[]>;
|
|
100
|
+
/**
|
|
101
|
+
* Convert an extracted structure node into a spatial node for the compat
|
|
102
|
+
* surface, recursing into children.
|
|
103
|
+
*
|
|
104
|
+
* @param node The extracted product-structure node.
|
|
105
|
+
* @param includeProperties When true, merge the node's item properties.
|
|
106
|
+
* @return {Promise<AP214Node>} The converted spatial node.
|
|
107
|
+
*/
|
|
108
|
+
private toSpatialNode;
|
|
109
|
+
/**
|
|
110
|
+
* Resolve the property rows for an element, mapping an occurrence node id back
|
|
111
|
+
* to its owning product definition (where properties are keyed).
|
|
112
|
+
*
|
|
113
|
+
* @param id Node express id.
|
|
114
|
+
* @return {AP214PropertyRow[]} The element's property rows (possibly empty).
|
|
115
|
+
*/
|
|
116
|
+
private rowsForElement;
|
|
117
|
+
/**
|
|
118
|
+
* Lazily build and cache every index the surface reads in one pass:
|
|
119
|
+
* - `structureRoots_` — the assembly forest;
|
|
120
|
+
* - `ownerByExpressID_` — node id → owning product-definition id (where the
|
|
121
|
+
* property map is keyed);
|
|
122
|
+
* - `nodeNameByExpressID_` — node id → display name (for `getItemProperties`
|
|
123
|
+
* identity rows);
|
|
124
|
+
* - `propertyByItemId_` — representation-item id → property (so a pset's
|
|
125
|
+
* `HasProperties` reference resolves back to its key/value).
|
|
126
|
+
*/
|
|
127
|
+
private buildIndexes;
|
|
128
|
+
/**
|
|
129
|
+
* Record a node's owning product-definition id and display name, recursing
|
|
130
|
+
* into children.
|
|
131
|
+
*
|
|
132
|
+
* @param node The node to index.
|
|
133
|
+
*/
|
|
134
|
+
private indexNodes;
|
|
135
|
+
/**
|
|
136
|
+
* Return the cached product-structure forest, building the indexes if needed.
|
|
137
|
+
*
|
|
138
|
+
* @return {ProductStructureNode[]} The cached assembly roots.
|
|
139
|
+
*/
|
|
140
|
+
private productStructure;
|
|
141
|
+
/**
|
|
142
|
+
* Lazily build and cache the extracted property map.
|
|
143
|
+
*
|
|
144
|
+
* @return {ExtractedPropertyMap} The cached per-part property map.
|
|
145
|
+
*/
|
|
146
|
+
private properties;
|
|
19
147
|
}
|
|
20
|
-
export {};
|
|
21
148
|
//# sourceMappingURL=ap214_properties.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ap214_properties.d.ts","sourceRoot":"","sources":["../../../../src/compat/web-ifc/ap214_properties.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ap214_properties.d.ts","sourceRoot":"","sources":["../../../../src/compat/web-ifc/ap214_properties.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AACxD,OAAO,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAA;AA0E/C;;;;;;;;;;;GAWG;AACH,qBAAa,eAAe;IAWb,OAAO,CAAC,GAAG;IATxB,OAAO,CAAC,eAAe,CAAC,CAAwB;IAChD,OAAO,CAAC,YAAY,CAAC,CAAsB;IAC3C,OAAO,CAAC,iBAAiB,CAAC,CAAqB;IAC/C,OAAO,CAAC,oBAAoB,CAAC,CAAqB;IAClD,OAAO,CAAC,iBAAiB,CAAC,CAAgC;IAE1D;;OAEG;gBACkB,GAAG,EAAE,gBAAgB;IAG1C;;;;;;OAMG;IACH,UAAU,CAAE,IAAI,EAAE,MAAM,GAAI,MAAM;IAIlC;;;;;;;;;;;;;;;;;;OAkBG;IACG,iBAAiB,CAAE,EAAE,EAAE,MAAM,EAAE,SAAS,UAAQ,GAAI,OAAO,CAAC,MAAM,CAAC;IAoBzE;;;;;;;;;;;OAWG;IACG,eAAe,CAAE,SAAS,EAAE,MAAM,EAAE,SAAS,UAAQ,GAAI,OAAO,CAAC,GAAG,EAAE,CAAC;IAkD7E;;;;;;OAMG;IACG,iBAAiB,CAAE,SAAS,EAAE,MAAM,EAAE,SAAS,UAAQ,GAAI,OAAO,CAAC,GAAG,EAAE,CAAC;IAI/E;;;;;;OAMG;IACG,sBAAsB,CAAE,SAAS,EAAE,MAAM,EAAE,SAAS,UAAQ,GAAI,OAAO,CAAC,GAAG,EAAE,CAAC;IAIpF;;;;;;;OAOG;IACG,mBAAmB,CAAE,iBAAiB,CAAC,EAAE,OAAO,GAAI,OAAO,CAAC,IAAI,CAAC;IAuBvE;;;;;;OAMG;IACG,iBAAiB,CAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAI,OAAO,CAAC,GAAG,EAAE,CAAC;IAmBzE;;;;;;;OAOG;YACW,aAAa;IAwB3B;;;;;;OAMG;IACH,OAAO,CAAC,cAAc;IAmBtB;;;;;;;;;OASG;IACH,OAAO,CAAC,YAAY;IA6BpB;;;;;OAKG;IACH,OAAO,CAAC,UAAU;IAUlB;;;;OAIG;IACH,OAAO,CAAC,gBAAgB;IAKxB;;;;OAIG;IACH,OAAO,CAAC,UAAU;CAQnB"}
|