uEdition-Editor 2.0.0b4__py3-none-any.whl → 2.0.0b5__py3-none-any.whl

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.

Potentially problematic release.


This version of uEdition-Editor might be problematic. Click here for more details.

@@ -6,7 +6,7 @@
6
6
  <link rel="icon" type="image/svg+xml" href="/app/ueditor.svg" />
7
7
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
8
8
  <title>μEditor loading. Please wait...</title>
9
- <script type="module" crossorigin src="/app/assets/index-CD2zWAAU.js"></script>
9
+ <script type="module" crossorigin src="/app/assets/index-DHdOJOZY.js"></script>
10
10
  <link rel="stylesheet" crossorigin href="/app/assets/index-HmBQiVS_.css">
11
11
  </head>
12
12
 
@@ -346,6 +346,21 @@ class TEIInputMarkAttribute(BaseModel):
346
346
  """The label for the entry."""
347
347
 
348
348
 
349
+ class TEISelectMarkAttribute(BaseModel):
350
+ """A TEI form element to select a mark attribute."""
351
+
352
+ type: Literal["select-mark-attribute"]
353
+ """The form element type."""
354
+ mark: str
355
+ """The mark to apply the attribute to."""
356
+ name: str
357
+ """The name of the attribute."""
358
+ title: str
359
+ """The label for the entry."""
360
+ values: list
361
+ """The available selection values."""
362
+
363
+
349
364
  class TEIInputBlockAttribute(BaseModel):
350
365
  """A TEI form element to input a block attribute value."""
351
366
 
@@ -367,7 +382,11 @@ class TEITextFormBlock(BaseModel):
367
382
  type: Literal["form"]
368
383
  """The type is set to form."""
369
384
  items: list[
370
- TEISelectBlockAttribute | TEISelectCrossReferenceMarkAttribute | TEIInputMarkAttribute | TEIInputBlockAttribute
385
+ TEISelectBlockAttribute
386
+ | TEISelectCrossReferenceMarkAttribute
387
+ | TEIInputMarkAttribute
388
+ | TEIInputBlockAttribute
389
+ | TEISelectMarkAttribute
371
390
  ]
372
391
  """The list of menu items to show."""
373
392
  condition: Optional[TEIMenuCondition] = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uEdition-Editor
3
- Version: 2.0.0b4
3
+ Version: 2.0.0b5
4
4
  Project-URL: Documentation, https://github.com/uEdition/uEditor#readme
5
5
  Project-URL: Issues, https://github.com/uEdition/uEditor/issues
6
6
  Project-URL: Source, https://github.com/uEdition/uEditor
@@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.13
15
15
  Classifier: Programming Language :: Python :: Implementation :: CPython
16
16
  Classifier: Programming Language :: Python :: Implementation :: PyPy
17
17
  Requires-Python: >=3.11
18
+ Requires-Dist: aiocron<3,>=2.1
18
19
  Requires-Dist: fastapi<1
19
20
  Requires-Dist: httptools<1
20
21
  Requires-Dist: httpx<1,>=0.28.1
@@ -0,0 +1,28 @@
1
+ uedition_editor/__about__.py,sha256=e2v-pzclDwW6hnYUCd6mhOylSCUbLtjUTXuafPIWp5Q,160
2
+ uedition_editor/__init__.py,sha256=8X2_abCuSWRKPu7MiqIhtARDXRretiHlUlkvgBvh4I0,1293
3
+ uedition_editor/__main__.py,sha256=b4COmnuVMw6l_M_HFxKWvPYWwegDk0382NAL_l7w8Do,222
4
+ uedition_editor/cron.py,sha256=b4e2Q5tf7kX1kJehW1sjkrlz7C31nSppamKysW_ep7U,1197
5
+ uedition_editor/settings.py,sha256=NNxu-W3S4lhcROvDXrvWMKJwrT4oZCJJwnDl0sM9mfM,14401
6
+ uedition_editor/api/__init__.py,sha256=zXhBEHFh2UWl9KDgF9bFlVMhUhkES6jmKh1QoBnHtDI,1911
7
+ uedition_editor/api/auth.py,sha256=yZG3K3QglRziJtEod4wFNVrCTyYZC89Hwhx33wGcYgw,7255
8
+ uedition_editor/api/branches.py,sha256=fkm1J72bcCunLn6ofUn0yeovnWR4g26UAulgSZ2PFYQ,9287
9
+ uedition_editor/api/configs.py,sha256=lXRpbdxaKQ4OMTVL0nrTHdGE4SBcSMWaWgYhSBXoOh4,2919
10
+ uedition_editor/api/files.py,sha256=ed2lYGwUXMT27dl8ud0n4TR7dJED4hYBhC9hffejVdY,32978
11
+ uedition_editor/api/tests.py,sha256=f9BF3oBAY1o8TA7EhouXmeIDOp4elA4SQaDDtlG1Nh8,1162
12
+ uedition_editor/api/util.py,sha256=9KfcaHVjfmvf6OwWJ3XHQGVS6MKUu4YmjYXvm2Q4tvY,4037
13
+ uedition_editor/cli/__init__.py,sha256=5AK1wUlflAXCt7cBZ348V4aueV5iJGKV-ouqoXpsIh0,983
14
+ uedition_editor/frontend/dist/index.html,sha256=JHw6IjE4P3IMHK3RMVHFi5ab8FTWYsRCCBIZ6vAzxXw,474
15
+ uedition_editor/frontend/dist/ueditor.svg,sha256=rvEMqMyRGiGIorMjRxWO4rbTlS_H6oxhhibmsunFYFg,340
16
+ uedition_editor/frontend/dist/assets/CodeMirrorEditor-B8N4a0_6.js,sha256=GATaiBKhDOi8uVMdscwUHac4DlIoPPYs_BD-RH1wPos,606870
17
+ uedition_editor/frontend/dist/assets/CodeMirrorEditor-ddcHt3UE.css,sha256=TMoYtZ0n60AEBxfWW_ge2AxPYcamaOOwnGWTz5_13OA,846
18
+ uedition_editor/frontend/dist/assets/FolderEditor-zEVI7VnV.js,sha256=HhPvRb1Zh-Pja7qkzWfNH44ikjVDgvzxgbtZgt4Z6ko,2938
19
+ uedition_editor/frontend/dist/assets/ImageEditor-D2waaDFD.js,sha256=Ef8D1jpkMPefP5jbmMf-r3FweRTHx_iq94n5oFNrPsw,801
20
+ uedition_editor/frontend/dist/assets/TeiEditor-DaKNV6gH.js,sha256=M_y8crNyLvoisMueK7UUDhdyY7ieabI9sdRI4m2EtEU,350821
21
+ uedition_editor/frontend/dist/assets/index-DHdOJOZY.js,sha256=D7K_JXw9KdJUsXKUmnpTggXM4VB17H6BLkPq_6W4hBI,324116
22
+ uedition_editor/frontend/dist/assets/index-HmBQiVS_.css,sha256=I-O-hMFBmkNau7U6v3iX3AMfMu6stKgFtrNVoGRh1Pk,19716
23
+ uedition_editor/frontend/dist/assets/index-Vcq4gwWv.js,sha256=7NTN0-UTH-BpoJQqdC43Ec4Cdwj4Wv8viGg4W3EBqx8,1494
24
+ uedition_editor-2.0.0b5.dist-info/METADATA,sha256=3zQt2q9TGT4jh3KcHXAqbIsNRKeOEKnL-uRRxDeww4s,2753
25
+ uedition_editor-2.0.0b5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
26
+ uedition_editor-2.0.0b5.dist-info/entry_points.txt,sha256=v2HE8dFcsAPreD-LjMrjsB31iyTTqKjQ-Uj2_ztaqpg,52
27
+ uedition_editor-2.0.0b5.dist-info/licenses/LICENSE.txt,sha256=pL_y3ondEzJrX26zSglvj0GOT0p2SjFnDm7dRpMgk64,1101
28
+ uedition_editor-2.0.0b5.dist-info/RECORD,,