@media-quest/engine 0.0.39 → 0.0.41

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/src/public-api.ts CHANGED
@@ -1,26 +1,25 @@
1
- export * from "./engine/SchemaResult";
2
- export * from "./engine/SchemaEngine";
3
- export * from "./engine/SchemaDto";
4
- export * from "./engine/page-que-ruleengine-action";
5
- export * from "./rules/rule";
6
- export * from "./rules/fact";
7
- export * from "./rules/rule-engine";
8
- export * from "./rules/condition";
9
- export * from "./utils/DUtil";
10
- export { SchemaResult } from "./engine/SchemaResult";
11
- // export * from "./utils/ID";
12
-
13
- export * from "./events/mq-events";
14
-
15
- // ELEMENTS
16
- export * from "./Delement/css";
17
- export * from "./Delement/DStyle";
18
- export * from "./Delement/DImg";
19
- export * from "./Delement/DText";
20
- export * from "./Delement/DButton";
21
- export * from "./Delement/Ddiv";
22
- export * from "./Delement/button-click-action";
23
- export * from "./Delement/DElement";
24
- export * from "./Delement/DElement.dto";
25
- export { PageDto } from "./page/Page";
26
- export * from "./page/task";
1
+ export * from "./engine/SchemaResult";
2
+ export * from "./engine/SchemaEngine";
3
+ export * from "./engine/SchemaDto";
4
+ export * from "./engine/page-que-ruleengine-action";
5
+ export * from "./rules/rule";
6
+ export * from "./rules/fact";
7
+ export * from "./rules/rule-engine";
8
+ export * from "./rules/condition";
9
+ export * from "./utils/DUtil";
10
+ // export * from "./utils/ID";
11
+
12
+ export * from "./events/mq-events";
13
+
14
+ // ELEMENTS
15
+ export * from "./Delement/css";
16
+ export * from "./Delement/DStyle";
17
+ export * from "./Delement/DImg";
18
+ export * from "./Delement/DText";
19
+ export * from "./Delement/DButton";
20
+ export * from "./Delement/Ddiv";
21
+ export * from "./Delement/button-click-action";
22
+ export * from "./Delement/DElement";
23
+ export * from "./Delement/DElement.dto";
24
+ export { PageDto } from "./page/Page";
25
+ export * from "./page/task";
@@ -65,9 +65,6 @@ export namespace DUtil {
65
65
  return false;
66
66
  }
67
67
 
68
- if (obj === null) {
69
- return false;
70
- }
71
68
  return true;
72
69
  };
73
70
 
@@ -113,4 +110,6 @@ export namespace DUtil {
113
110
  return Math.min(value, lowerLimit);
114
111
  };
115
112
  };
113
+
114
+
116
115
  }
package/tsconfig.json CHANGED
@@ -1,19 +1,19 @@
1
- {
2
- "compilerOptions": {
3
- "target": "es2022",
4
- "module": "commonjs",
5
- "moduleResolution": "node",
6
- "declaration": true,
7
- "strict": true,
8
- "esModuleInterop": true,
9
- "skipLibCheck": true,
10
- "forceConsistentCasingInFileNames": true,
11
- "rootDir": "./src",
12
- "stripInternal": true,
13
- "strictPropertyInitialization": true,
14
- "strictNullChecks": true,
15
- "outDir": "./dist"
16
- },
17
- "include": ["src/**/*"],
18
- "exclude": ["node_modules", "dist"]
19
- }
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es2022",
4
+ "module": "commonjs",
5
+ "moduleResolution": "node",
6
+ "declaration": true,
7
+ "strict": true,
8
+ "esModuleInterop": true,
9
+ "skipLibCheck": true,
10
+ "forceConsistentCasingInFileNames": true,
11
+ "rootDir": "./src",
12
+ "stripInternal": true,
13
+ "strictPropertyInitialization": true,
14
+ "strictNullChecks": true,
15
+ "outDir": "./dist"
16
+ },
17
+ "include": ["src/**/*"],
18
+ "exclude": ["node_modules", "dist"]
19
+ }