We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38d9411 commit 7e1d68fCopy full SHA for 7e1d68f
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "koreui"
3
-version = "0.1.1"
+version = "0.1.2"
4
description = "Dynamic GUI Generator from JSON Schema"
5
readme = "README.md"
6
requires-python = ">=3.10"
src/__init__.py
@@ -1,18 +1,9 @@
-from .kore import (
- JsonSchemaForm,
- SchemaResolver,
- SchemaValidator,
- ValidationError
-)
7
-from .loader import load_schema, load_schema_with_defaults
+from .kore import JsonSchemaForm
+from .loader import load_schema
8
9
-__version__ = "0.1.1"
+__version__ = "0.1.2"
10
11
__all__ = [
12
"JsonSchemaForm",
13
- "SchemaResolver",
14
- "SchemaValidator",
15
- "ValidationError",
16
"load_schema",
17
- "load_schema_with_defaults"
18
]
0 commit comments