flet-code-editor 0.82.3.dev7883__tar.gz → 0.82.3.dev7889__tar.gz
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.
- {flet_code_editor-0.82.3.dev7883/src/flet_code_editor.egg-info → flet_code_editor-0.82.3.dev7889}/PKG-INFO +2 -2
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/pyproject.toml +2 -2
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flet_code_editor/types.py +1 -2
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889/src/flet_code_editor.egg-info}/PKG-INFO +2 -2
- flet_code_editor-0.82.3.dev7889/src/flet_code_editor.egg-info/requires.txt +1 -0
- flet_code_editor-0.82.3.dev7883/src/flet_code_editor.egg-info/requires.txt +0 -1
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/LICENSE +0 -0
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/README.md +0 -0
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/setup.cfg +0 -0
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flet_code_editor/__init__.py +0 -0
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flet_code_editor/code_editor.py +0 -0
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flet_code_editor.egg-info/SOURCES.txt +0 -0
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flet_code_editor.egg-info/dependency_links.txt +0 -0
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flet_code_editor.egg-info/top_level.txt +0 -0
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flutter/flet_code_editor/lib/flet_code_editor.dart +0 -0
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flutter/flet_code_editor/lib/src/code_editor.dart +0 -0
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flutter/flet_code_editor/lib/src/extension.dart +0 -0
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flutter/flet_code_editor/lib/src/utils/code_editor.dart +0 -0
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flutter/flet_code_editor/lib/src/utils/flet_code_controller.dart +0 -0
- {flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flutter/flet_code_editor/pubspec.yaml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flet-code-editor
|
|
3
|
-
Version: 0.82.3.
|
|
3
|
+
Version: 0.82.3.dev7889
|
|
4
4
|
Summary: Edit and highlight source code inside Flet apps.
|
|
5
5
|
Author-email: Flet contributors <hello@flet.dev>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -11,7 +11,7 @@ Project-URL: Issues, https://github.com/flet-dev/flet/issues
|
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: flet==0.82.3.
|
|
14
|
+
Requires-Dist: flet==0.82.3.dev7889
|
|
15
15
|
Dynamic: license-file
|
|
16
16
|
|
|
17
17
|
# flet-code-editor
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "flet-code-editor"
|
|
3
|
-
version = "0.82.3.
|
|
3
|
+
version = "0.82.3.dev7889"
|
|
4
4
|
description = "Edit and highlight source code inside Flet apps."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Flet contributors", email = "hello@flet.dev" }]
|
|
7
7
|
license = "Apache-2.0"
|
|
8
8
|
requires-python = ">=3.10"
|
|
9
9
|
dependencies = [
|
|
10
|
-
"flet==0.82.3.
|
|
10
|
+
"flet==0.82.3.dev7889",
|
|
11
11
|
]
|
|
12
12
|
|
|
13
13
|
[project.urls]
|
{flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flet_code_editor/types.py
RENAMED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
from dataclasses import dataclass
|
|
2
1
|
from enum import Enum
|
|
3
2
|
from typing import Optional
|
|
4
3
|
|
|
@@ -823,7 +822,7 @@ CustomCodeTheme = MarkdownCustomCodeTheme
|
|
|
823
822
|
"""Alias for `flet.MarkdownCustomCodeTheme`."""
|
|
824
823
|
|
|
825
824
|
|
|
826
|
-
@
|
|
825
|
+
@ft.value
|
|
827
826
|
class GutterStyle:
|
|
828
827
|
"""Defines gutter appearance (line numbers) for the code editor."""
|
|
829
828
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flet-code-editor
|
|
3
|
-
Version: 0.82.3.
|
|
3
|
+
Version: 0.82.3.dev7889
|
|
4
4
|
Summary: Edit and highlight source code inside Flet apps.
|
|
5
5
|
Author-email: Flet contributors <hello@flet.dev>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -11,7 +11,7 @@ Project-URL: Issues, https://github.com/flet-dev/flet/issues
|
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: flet==0.82.3.
|
|
14
|
+
Requires-Dist: flet==0.82.3.dev7889
|
|
15
15
|
Dynamic: license-file
|
|
16
16
|
|
|
17
17
|
# flet-code-editor
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
flet==0.82.3.dev7889
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
flet==0.82.3.dev7883
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{flet_code_editor-0.82.3.dev7883 → flet_code_editor-0.82.3.dev7889}/src/flet_code_editor/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|