flet-code-editor 0.83.0__tar.gz → 0.84.0.dev0__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.
Files changed (20) hide show
  1. {flet_code_editor-0.83.0/src/flet_code_editor.egg-info → flet_code_editor-0.84.0.dev0}/PKG-INFO +4 -4
  2. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/README.md +1 -1
  3. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/pyproject.toml +3 -3
  4. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/src/flet_code_editor/code_editor.py +1 -1
  5. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0/src/flet_code_editor.egg-info}/PKG-INFO +4 -4
  6. flet_code_editor-0.84.0.dev0/src/flet_code_editor.egg-info/requires.txt +1 -0
  7. flet_code_editor-0.83.0/src/flet_code_editor.egg-info/requires.txt +0 -1
  8. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/LICENSE +0 -0
  9. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/setup.cfg +0 -0
  10. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/src/flet_code_editor/__init__.py +0 -0
  11. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/src/flet_code_editor/types.py +0 -0
  12. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/src/flet_code_editor.egg-info/SOURCES.txt +0 -0
  13. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/src/flet_code_editor.egg-info/dependency_links.txt +0 -0
  14. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/src/flet_code_editor.egg-info/top_level.txt +0 -0
  15. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/src/flutter/flet_code_editor/lib/flet_code_editor.dart +0 -0
  16. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/src/flutter/flet_code_editor/lib/src/code_editor.dart +0 -0
  17. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/src/flutter/flet_code_editor/lib/src/extension.dart +0 -0
  18. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/src/flutter/flet_code_editor/lib/src/utils/code_editor.dart +0 -0
  19. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/src/flutter/flet_code_editor/lib/src/utils/flet_code_controller.dart +0 -0
  20. {flet_code_editor-0.83.0 → flet_code_editor-0.84.0.dev0}/src/flutter/flet_code_editor/pubspec.yaml +0 -0
@@ -1,17 +1,17 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flet-code-editor
3
- Version: 0.83.0
3
+ Version: 0.84.0.dev0
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
7
7
  Project-URL: Homepage, https://flet.dev
8
- Project-URL: Documentation, https://docs.flet.dev/codeeditor
8
+ Project-URL: Documentation, https://flet.dev/docs/controls/codeeditor
9
9
  Project-URL: Repository, https://github.com/flet-dev/flet/tree/main/sdk/python/packages/flet-code-editor
10
10
  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.83.0
14
+ Requires-Dist: flet==0.84.0.dev0
15
15
  Dynamic: license-file
16
16
 
17
17
  # flet-code-editor
@@ -26,7 +26,7 @@ It is based on the [flutter_code_editor](https://pub.dev/packages/flutter_code_e
26
26
 
27
27
  ## Documentation
28
28
 
29
- Detailed documentation to this package can be found [here](https://docs.flet.dev/codeeditor/).
29
+ Detailed documentation to this package can be found [here](https://flet.dev/docs/controls/codeeditor/).
30
30
 
31
31
  ## Usage
32
32
 
@@ -10,7 +10,7 @@ It is based on the [flutter_code_editor](https://pub.dev/packages/flutter_code_e
10
10
 
11
11
  ## Documentation
12
12
 
13
- Detailed documentation to this package can be found [here](https://docs.flet.dev/codeeditor/).
13
+ Detailed documentation to this package can be found [here](https://flet.dev/docs/controls/codeeditor/).
14
14
 
15
15
  ## Usage
16
16
 
@@ -1,18 +1,18 @@
1
1
  [project]
2
2
  name = "flet-code-editor"
3
- version = "0.83.0"
3
+ version = "0.84.0.dev0"
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.83.0",
10
+ "flet==0.84.0.dev0",
11
11
  ]
12
12
 
13
13
  [project.urls]
14
14
  Homepage = "https://flet.dev"
15
- Documentation = "https://docs.flet.dev/codeeditor"
15
+ Documentation = "https://flet.dev/docs/controls/codeeditor"
16
16
  Repository = "https://github.com/flet-dev/flet/tree/main/sdk/python/packages/flet-code-editor"
17
17
  Issues = "https://github.com/flet-dev/flet/issues"
18
18
 
@@ -34,7 +34,7 @@ class CodeEditor(ft.LayoutControl):
34
34
  Represents the current text selection or caret position in the editor.
35
35
 
36
36
  Setting this property updates the editor selection and may trigger
37
- [`on_selection_change`][(c).] when the editor is focused.
37
+ :attr:`on_selection_change` when the editor is focused.
38
38
  """
39
39
 
40
40
  gutter_style: Optional[GutterStyle] = None
@@ -1,17 +1,17 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flet-code-editor
3
- Version: 0.83.0
3
+ Version: 0.84.0.dev0
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
7
7
  Project-URL: Homepage, https://flet.dev
8
- Project-URL: Documentation, https://docs.flet.dev/codeeditor
8
+ Project-URL: Documentation, https://flet.dev/docs/controls/codeeditor
9
9
  Project-URL: Repository, https://github.com/flet-dev/flet/tree/main/sdk/python/packages/flet-code-editor
10
10
  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.83.0
14
+ Requires-Dist: flet==0.84.0.dev0
15
15
  Dynamic: license-file
16
16
 
17
17
  # flet-code-editor
@@ -26,7 +26,7 @@ It is based on the [flutter_code_editor](https://pub.dev/packages/flutter_code_e
26
26
 
27
27
  ## Documentation
28
28
 
29
- Detailed documentation to this package can be found [here](https://docs.flet.dev/codeeditor/).
29
+ Detailed documentation to this package can be found [here](https://flet.dev/docs/controls/codeeditor/).
30
30
 
31
31
  ## Usage
32
32