wbcore 1.59.6rc0__py2.py3-none-any.whl → 1.59.7__py2.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.
- wbcore/configurations/configurations/templates.py +1 -1
- wbcore/contrib/example_app/templates/example_app/embedded_view.html +4 -4
- wbcore/contrib/example_app/views.py +1 -2
- wbcore/filters/mixins.py +2 -2
- wbcore/metadata/configs/buttons/__init__.py +1 -1
- wbcore/metadata/configs/buttons/bases.py +1 -6
- wbcore/metadata/configs/buttons/buttons.py +1 -7
- wbcore/metadata/configs/buttons/enums.py +0 -7
- wbcore/metadata/tests/test_buttons.py +1 -13
- wbcore/serializers/fields/fields.py +4 -2
- wbcore/serializers/fields/types.py +1 -0
- wbcore/template.py +29 -0
- {wbcore-1.59.6rc0.dist-info → wbcore-1.59.7.dist-info}/METADATA +1 -1
- {wbcore-1.59.6rc0.dist-info → wbcore-1.59.7.dist-info}/RECORD +15 -14
- {wbcore-1.59.6rc0.dist-info → wbcore-1.59.7.dist-info}/WHEEL +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<html>
|
|
2
2
|
<head>
|
|
3
|
-
<link rel="stylesheet" href="https://stainly-cdn.fra1.cdn.digitaloceanspaces.com/static/{{
|
|
3
|
+
<link rel="stylesheet" href="https://stainly-cdn.fra1.cdn.digitaloceanspaces.com/static/{{ FRONTEND_VERSION }}/embedded/main.css">
|
|
4
4
|
</head>
|
|
5
5
|
<body>
|
|
6
6
|
<h1>Embedded View Example</h1>
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
<div style="height: 750px;" data-wb-endpoint="{% url 'example_app:team-list' %}" data-wb-lazy-load></div>
|
|
13
13
|
<div style="height: 750px;" data-wb-endpoint="{% url 'example_app:stadium-list' %}" data-wb-hide-control-bar data-wb-lazy-load data-wb-lazy-load-threshold="500"></div>
|
|
14
14
|
<script>window.wbcore_config_url = 'https://staging.atonra.stainly-bench.com/wbcore/config/'</script>
|
|
15
|
-
<script src="
|
|
16
|
-
<script src="https://stainly-cdn.fra1.cdn.digitaloceanspaces.com/static/{{
|
|
17
|
-
<script src="https://stainly-cdn.fra1.cdn.digitaloceanspaces.com/static/{{
|
|
15
|
+
<script src="{{ PLOTLY_CDN }}" charset="utf-8"></script>
|
|
16
|
+
<script src="https://stainly-cdn.fra1.cdn.digitaloceanspaces.com/static/{{ FRONTEND_VERSION }}/embedded/embeddedWbView-runtime.umd.js" type="module"></script>
|
|
17
|
+
<script src="https://stainly-cdn.fra1.cdn.digitaloceanspaces.com/static/{{ FRONTEND_VERSION }}/embedded/embeddedWbView-main.umd.js" type="module"></script>
|
|
18
18
|
</body>
|
|
19
19
|
</html>
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
from django.conf import settings
|
|
2
1
|
from django.http import HttpRequest, HttpResponse
|
|
3
2
|
from django.shortcuts import render
|
|
4
3
|
|
|
5
4
|
|
|
6
5
|
def embedded_view_example(request: HttpRequest) -> HttpResponse:
|
|
7
|
-
return render(request, "example_app/embedded_view.html"
|
|
6
|
+
return render(request, "example_app/embedded_view.html")
|
wbcore/filters/mixins.py
CHANGED
|
@@ -90,12 +90,12 @@ class WBCoreFilterMixin:
|
|
|
90
90
|
"help_text": self.get_help_text(),
|
|
91
91
|
}
|
|
92
92
|
lookup_expr = {
|
|
93
|
-
"label": get_lookup_label(self.lookup_expr) if self.lookup_label is None else self.lookup_label,
|
|
94
93
|
"icon": get_lookup_icon(self.lookup_expr) if self.lookup_icon is None else self.lookup_icon,
|
|
95
|
-
"key": name,
|
|
96
94
|
"hidden": self.hidden,
|
|
97
95
|
"allow_exclude": self.allow_exclude,
|
|
98
96
|
"input_properties": {
|
|
97
|
+
"label": get_lookup_label(self.lookup_expr) if self.lookup_label is None else self.lookup_label,
|
|
98
|
+
"key": name,
|
|
99
99
|
"type": self.filter_type,
|
|
100
100
|
},
|
|
101
101
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
from .bases import ButtonConfig
|
|
2
2
|
from .buttons import ActionButton, DropDownButton, HyperlinkButton, WidgetButton
|
|
3
|
-
from .enums import ButtonDefaultColor, ButtonType
|
|
3
|
+
from .enums import ButtonDefaultColor, ButtonType
|
|
4
4
|
from .view_config import ButtonViewConfig
|
|
@@ -11,7 +11,6 @@ class ButtonConfig:
|
|
|
11
11
|
label: Optional[str] = None
|
|
12
12
|
icon: Optional[str] = None
|
|
13
13
|
title: Optional[str] = None
|
|
14
|
-
style: Optional[dict] = None
|
|
15
14
|
color: ButtonDefaultColor | str = ButtonDefaultColor.PRIMARY
|
|
16
15
|
weight: int = 100
|
|
17
16
|
disabled: bool = False
|
|
@@ -31,16 +30,12 @@ class ButtonConfig:
|
|
|
31
30
|
if iter := getattr(super(), "__iter__", None):
|
|
32
31
|
yield from iter()
|
|
33
32
|
|
|
34
|
-
for key in ["label", "icon", "title"
|
|
33
|
+
for key in ["label", "icon", "title"]:
|
|
35
34
|
value = getattr(self, key, None)
|
|
36
35
|
if value:
|
|
37
36
|
yield key, value
|
|
38
37
|
color = getattr(self.color, "value", self.color)
|
|
39
38
|
yield "color", color
|
|
40
|
-
yield (
|
|
41
|
-
"level",
|
|
42
|
-
color,
|
|
43
|
-
) # TODO: we return level for backward compatibility reason. to be removed once we move to frontend version 2
|
|
44
39
|
yield "disabled", self.disabled # set to True if you want to set the css "disabled" property to that button
|
|
45
40
|
yield "always_render", self.always_render # set to True the button always needs to be rendered (even if empty)
|
|
46
41
|
yield "placeholder", self.placeholder # set to a valid string if a placeholder is needed onhover
|
|
@@ -11,7 +11,7 @@ from wbcore.serializers import ListSerializer, RepresentationSerializer, Seriali
|
|
|
11
11
|
from wbcore.utils.urls import get_parse_endpoint, get_urlencode_endpoint
|
|
12
12
|
|
|
13
13
|
from .bases import ButtonConfig, ButtonTypeMixin, ButtonUrlMixin
|
|
14
|
-
from .enums import ButtonType
|
|
14
|
+
from .enums import ButtonType
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
@dataclass
|
|
@@ -71,12 +71,6 @@ class WidgetButton(ButtonTypeMixin, ButtonUrlMixin, ButtonConfig):
|
|
|
71
71
|
@dataclass
|
|
72
72
|
class HyperlinkButton(ButtonTypeMixin, ButtonUrlMixin, ButtonConfig):
|
|
73
73
|
button_type = ButtonType.HYPERLINK
|
|
74
|
-
target: HyperlinkTarget = HyperlinkTarget.BLANK
|
|
75
|
-
|
|
76
|
-
def serialize(self, request, **kwargs):
|
|
77
|
-
res = super().serialize(request, **kwargs)
|
|
78
|
-
res["target"] = self.target.value
|
|
79
|
-
return res
|
|
80
74
|
|
|
81
75
|
def __hash__(self):
|
|
82
76
|
if self.key:
|
|
@@ -11,7 +11,7 @@ from wbcore.metadata.configs.buttons import (
|
|
|
11
11
|
HyperlinkButton,
|
|
12
12
|
WidgetButton,
|
|
13
13
|
)
|
|
14
|
-
from wbcore.metadata.configs.buttons.enums import ButtonDefaultColor
|
|
14
|
+
from wbcore.metadata.configs.buttons.enums import ButtonDefaultColor
|
|
15
15
|
from wbcore.metadata.configs.display.instance_display import create_simple_display
|
|
16
16
|
from wbcore.metadata.utils import prefix_key
|
|
17
17
|
|
|
@@ -31,7 +31,6 @@ class TestDropDownButton:
|
|
|
31
31
|
assert serialized_btn["icon"] == button.icon
|
|
32
32
|
assert serialized_btn["title"] == button.title
|
|
33
33
|
assert serialized_btn["color"] == button.color
|
|
34
|
-
assert serialized_btn["level"] == button.color
|
|
35
34
|
assert serialized_btn["buttons"] == [button.buttons[0].serialize(rf)]
|
|
36
35
|
assert serialized_btn["type"] == DropDownButton.button_type.value
|
|
37
36
|
|
|
@@ -43,7 +42,6 @@ class TestDropDownButton:
|
|
|
43
42
|
assert serialized_btn["icon"] == button.icon
|
|
44
43
|
assert serialized_btn["title"] == button.title
|
|
45
44
|
assert serialized_btn["color"] == button.color
|
|
46
|
-
assert serialized_btn["level"] == button.color
|
|
47
45
|
assert serialized_btn["buttons"] == [nested_button.serialize(rf, key_prefix=key_prefix)]
|
|
48
46
|
assert serialized_btn["type"] == DropDownButton.button_type.value
|
|
49
47
|
assert serialized_btn["buttons"][0]["key"] == prefix_key(nested_button.key, key_prefix)
|
|
@@ -78,7 +76,6 @@ class TestWidgetButton:
|
|
|
78
76
|
assert serialized_btn["icon"] == key_button.icon
|
|
79
77
|
assert serialized_btn["title"] == key_button.title
|
|
80
78
|
assert serialized_btn["color"] == key_button.color
|
|
81
|
-
assert serialized_btn["level"] == key_button.color
|
|
82
79
|
assert serialized_btn["key"] == key_button.key
|
|
83
80
|
assert serialized_btn["type"] == self.button_class.button_type.value
|
|
84
81
|
|
|
@@ -89,7 +86,6 @@ class TestWidgetButton:
|
|
|
89
86
|
assert serialized_btn["icon"] == key_button.icon
|
|
90
87
|
assert serialized_btn["title"] == key_button.title
|
|
91
88
|
assert serialized_btn["color"] == key_button.color
|
|
92
|
-
assert serialized_btn["level"] == key_button.color
|
|
93
89
|
assert serialized_btn["type"] == self.button_class.button_type.value
|
|
94
90
|
assert serialized_btn["key"] == prefix_key(key_button.key, key_prefix)
|
|
95
91
|
|
|
@@ -104,7 +100,6 @@ class TestWidgetButton:
|
|
|
104
100
|
assert serialized_btn["icon"] == endpoint_button.icon
|
|
105
101
|
assert serialized_btn["title"] == endpoint_button.title
|
|
106
102
|
assert serialized_btn["color"] == endpoint_button.color
|
|
107
|
-
assert serialized_btn["level"] == endpoint_button.color
|
|
108
103
|
assert serialized_btn["endpoint"] == endpoint_button.endpoint
|
|
109
104
|
assert serialized_btn["type"] == self.button_class.button_type.value
|
|
110
105
|
|
|
@@ -118,18 +113,11 @@ class TestWidgetButton:
|
|
|
118
113
|
class TestHyperlinkButtonutton(TestWidgetButton):
|
|
119
114
|
button_class = HyperlinkButton
|
|
120
115
|
|
|
121
|
-
def test_serialize(self, rf, key_button):
|
|
122
|
-
super().test_serialize(rf, key_button)
|
|
123
|
-
key_button.target = random.choice(list(HyperlinkTarget))
|
|
124
|
-
serialized_btn = key_button.serialize(rf)
|
|
125
|
-
assert serialized_btn["target"] == key_button.target.value
|
|
126
|
-
|
|
127
116
|
def test_serialize_endpoint_button(self, rf, endpoint_button):
|
|
128
117
|
serialized_btn = endpoint_button.serialize(rf)
|
|
129
118
|
assert serialized_btn["icon"] == endpoint_button.icon
|
|
130
119
|
assert serialized_btn["title"] == endpoint_button.title
|
|
131
120
|
assert serialized_btn["color"] == endpoint_button.color
|
|
132
|
-
assert serialized_btn["level"] == endpoint_button.color
|
|
133
121
|
assert serialized_btn["endpoint"] == endpoint_button.endpoint
|
|
134
122
|
assert serialized_btn["type"] == self.button_class.button_type.value
|
|
135
123
|
|
|
@@ -13,7 +13,7 @@ from wbcore.signals import (
|
|
|
13
13
|
from wbcore.utils.importlib import parse_signal_received_for_module
|
|
14
14
|
|
|
15
15
|
from .mixins import WBCoreSerializerFieldMixin
|
|
16
|
-
from .text import
|
|
16
|
+
from .text import StringRelatedField
|
|
17
17
|
from .types import WBCoreType
|
|
18
18
|
|
|
19
19
|
logger = logging.getLogger(__name__)
|
|
@@ -155,6 +155,8 @@ class AdditionalResourcesField(WBCoreSerializerFieldMixin, serializers.ReadOnlyF
|
|
|
155
155
|
|
|
156
156
|
|
|
157
157
|
class HyperlinkField(WBCoreSerializerFieldMixin, serializers.ReadOnlyField):
|
|
158
|
+
field_type = WBCoreType.HYPERLINK.value
|
|
159
|
+
|
|
158
160
|
def __init__(self, *args, **kwargs):
|
|
159
161
|
self.reverse_name = kwargs.pop("reverse_name")
|
|
160
162
|
self.id_field_name = kwargs.pop("id_field_name", "id")
|
|
@@ -178,7 +180,7 @@ class SlugRelatedField(WBCoreSerializerFieldMixin, serializers.SlugRelatedField)
|
|
|
178
180
|
|
|
179
181
|
|
|
180
182
|
class SerializerMethodField(WBCoreSerializerFieldMixin, serializers.SerializerMethodField):
|
|
181
|
-
def __init__(self, method_name=None, field_class=
|
|
183
|
+
def __init__(self, method_name=None, field_class=StringRelatedField, **kwargs):
|
|
182
184
|
self.field_class = field_class
|
|
183
185
|
self.initkwargs = kwargs
|
|
184
186
|
super().__init__(method_name, **kwargs)
|
wbcore/template.py
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from django.conf import settings
|
|
2
|
+
from django.template import TemplateDoesNotExist
|
|
3
|
+
from django.template.backends.django import DjangoTemplates as BaseDjangoTemplates
|
|
4
|
+
from django.template.backends.django import Template as BaseTemplate
|
|
5
|
+
from django.template.backends.django import reraise
|
|
6
|
+
from django.template.context import make_context
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class Template(BaseTemplate):
|
|
10
|
+
def render(self, context=None, request=None):
|
|
11
|
+
context = make_context(context, request, autoescape=self.backend.engine.autoescape)
|
|
12
|
+
context.update(
|
|
13
|
+
{
|
|
14
|
+
"PLOTLY_CDN": settings.WBCORE_PLOTLY_CDN_URL,
|
|
15
|
+
"FRONTEND_VERSION": settings.FRONTEND_VERSION,
|
|
16
|
+
}
|
|
17
|
+
)
|
|
18
|
+
try:
|
|
19
|
+
return self.template.render(context)
|
|
20
|
+
except TemplateDoesNotExist as exc:
|
|
21
|
+
reraise(exc, self.backend)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class DjangoTemplates(BaseDjangoTemplates):
|
|
25
|
+
def get_template(self, template_name):
|
|
26
|
+
try:
|
|
27
|
+
return Template(self.engine.get_template(template_name), self)
|
|
28
|
+
except TemplateDoesNotExist as exc:
|
|
29
|
+
reraise(exc, self)
|
|
@@ -11,6 +11,7 @@ wbcore/messages.py,sha256=fSfELjXkastcd3gFiWGJrGI_dl0BzsKg8UfaApXf5nM,1967
|
|
|
11
11
|
wbcore/pagination.py,sha256=lOW1BzJwlATzfOHo4BJA23avrg_39-LCL6mHctsAoBk,2282
|
|
12
12
|
wbcore/routers.py,sha256=gLbQc8MRHuJax88FBDejtt3_MavE9KkwZMsQvAqJj0I,2174
|
|
13
13
|
wbcore/tasks.py,sha256=PXjAuJ3vQ8ESwucaLi0rfSAQneB5d3b5AODD0XC0naE,4102
|
|
14
|
+
wbcore/template.py,sha256=Vrr6G3dmzxgO15Ogh-UEa5HTouR587Ep6PBxHVGwNoU,1093
|
|
14
15
|
wbcore/urls.py,sha256=kis0kfmc4TnqHDxY9Kmck_W3jnotMdzDxMeuT2uXukY,4740
|
|
15
16
|
wbcore/views.py,sha256=6vfq4DfKmCJD27T_XvKdigMBy9NbpzcaBO3gYcq60tI,950
|
|
16
17
|
wbcore/workers.py,sha256=26PB4nhSay9LJ3DAj_G3gWZKX3ctu9WT4Ll0lC38L3k,351
|
|
@@ -41,7 +42,7 @@ wbcore/configurations/configurations/middleware.py,sha256=ITqS3loS2ottWLBLKDnaPu
|
|
|
41
42
|
wbcore/configurations/configurations/network.py,sha256=seM15W9V1_id6X2Vxff_8mpQODB2v-hs8q5QFo2zeWM,822
|
|
42
43
|
wbcore/configurations/configurations/rest_framework.py,sha256=u1c0cup3KnSr5CuWjxPYbnLxpTjIqeQ00zw9ADAx9hQ,2084
|
|
43
44
|
wbcore/configurations/configurations/static.py,sha256=-OZXJvFpSlPAYspkeq97PL1VdiV1nh5_BYPO0jGmiVk,690
|
|
44
|
-
wbcore/configurations/configurations/templates.py,sha256=
|
|
45
|
+
wbcore/configurations/configurations/templates.py,sha256=pCghzXBQXn-lN_1nmjnvCnAz1LaF0lLWZ34AhDz2QW0,575
|
|
45
46
|
wbcore/configurations/configurations/uvicorn.py,sha256=ZkklzlFwvMnOljNvr-Pl9QSGAGlNw-dYQjSiGx2GC-Y,368
|
|
46
47
|
wbcore/configurations/configurations/wbcore.py,sha256=t11pM-AFCMaFrQQxH9Kz58lVSYQO7ZeQCrkBZTlxAys,3023
|
|
47
48
|
wbcore/content_type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -468,7 +469,7 @@ wbcore/contrib/example_app/apps.py,sha256=h5pkRPxGGVlXFq95eGayfPL9XJAwFHGrsigYxF
|
|
|
468
469
|
wbcore/contrib/example_app/models.py,sha256=_fyLDzUBJHrEq8PTbVGGmqGdll0mKp48EribeojqCZM,32831
|
|
469
470
|
wbcore/contrib/example_app/urls.py,sha256=KbHORgxYJc-w7415BSDf52eSsfjuvZV-0VKLLzRz90o,4813
|
|
470
471
|
wbcore/contrib/example_app/utils.py,sha256=zHEwC7IzIHpZoqFNVnuA75w0IIKKMR9xMpIYkNWKi5A,697
|
|
471
|
-
wbcore/contrib/example_app/views.py,sha256=
|
|
472
|
+
wbcore/contrib/example_app/views.py,sha256=OpwQciGHiLvjY56Gem3U4YfO8hM2FMGsrSoVz1qSTVE,214
|
|
472
473
|
wbcore/contrib/example_app/factories/__init__.py,sha256=eOak3Fa5SSIzUuBQxgozarS7ZXK5DMiws6z9pVJdAVc,318
|
|
473
474
|
wbcore/contrib/example_app/factories/event.py,sha256=BKlodLmQvVmq2cf0LIeriix9Agxznu-NHS1_Ns_AhWg,1049
|
|
474
475
|
wbcore/contrib/example_app/factories/league.py,sha256=xor6ZUBlNaJV_OTG8_NFjbJ7gc-n0k0Goj60p-jVqeg,648
|
|
@@ -506,7 +507,7 @@ wbcore/contrib/example_app/serializers/season.py,sha256=lQG5XpnwqvTbqpB-B6t3Uxj_
|
|
|
506
507
|
wbcore/contrib/example_app/serializers/sport.py,sha256=w6T-6inrBmWKY7OnqnP8EOn2WSctAmQcLeL3LOJJWpk,1299
|
|
507
508
|
wbcore/contrib/example_app/serializers/stadium.py,sha256=SkTDB92QC9ECwJePmu3tufkdG5nlwFw4u3Yle2HnkM8,2093
|
|
508
509
|
wbcore/contrib/example_app/serializers/teamresult.py,sha256=zCKFSP1RWHeh_OhAYr82zfY6a6TUxRMRdBVUifkQJ8A,1574
|
|
509
|
-
wbcore/contrib/example_app/templates/example_app/embedded_view.html,sha256=
|
|
510
|
+
wbcore/contrib/example_app/templates/example_app/embedded_view.html,sha256=iKwdmgGmY4PL5AC7FWYbXJ2Cv4D4yREi1G-R2D8g0Po,1482
|
|
510
511
|
wbcore/contrib/example_app/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
511
512
|
wbcore/contrib/example_app/tests/conftest.py,sha256=QyZxcZOxi8gQR2lXyQ1G3Ag9OdJnNAQhoZ-DyqE7WzI,430
|
|
512
513
|
wbcore/contrib/example_app/tests/signals.py,sha256=KfPXtAHWC4lF3gDO8-PNFL_PkYZUnmOJMExwRcQ7SuU,238
|
|
@@ -970,7 +971,7 @@ wbcore/filters/backends.py,sha256=7XX5LcFrAFE5jvFj5qSjww4VMux8aKRlcQKmZxdIiKY,73
|
|
|
970
971
|
wbcore/filters/defaults.py,sha256=poSD8Ww2NumwYjZ01zS0iBsNCmv6Bee1z3bDSYdX17A,1988
|
|
971
972
|
wbcore/filters/filterset.py,sha256=TTk4mQq9DFCXdyzMq3Ig6e5uIbmjsr4HT2kswOgiuPc,11775
|
|
972
973
|
wbcore/filters/lookups.py,sha256=IYuQqEcYutiXk9UpzY3qKSCaCR2vyllB0RXBj98o8Ao,1186
|
|
973
|
-
wbcore/filters/mixins.py,sha256=
|
|
974
|
+
wbcore/filters/mixins.py,sha256=YIy2SEOtDjUVb7oePiC5oPjQEIdiwym02BHAyDkdep4,4495
|
|
974
975
|
wbcore/filters/utils.py,sha256=wSs0g7mKF6n_ziSEDItfFYcuHwZTXyu78D6LHxzY2Bk,786
|
|
975
976
|
wbcore/filters/fields/__init__.py,sha256=ZucwBossNTlvcUfRullicg0ovghQEGO0jxY5eQ3UaEs,546
|
|
976
977
|
wbcore/filters/fields/booleans.py,sha256=6BrK3p1Bv_KIlVCeMOgJ7V8_P8tWQKBnxTOBOBSsGvE,175
|
|
@@ -1023,10 +1024,10 @@ wbcore/metadata/configs/primary_keys.py,sha256=MZSAHZpAOvVtd-zGkkcrZ88EzlGUL6ewO
|
|
|
1023
1024
|
wbcore/metadata/configs/search_fields.py,sha256=FOq3zk6jSPQ24m1QII0iV-eLTcD_Z4IPp8TnBjVdFXI,275
|
|
1024
1025
|
wbcore/metadata/configs/titles.py,sha256=Iha24FKpL6BacGlN61-_O4f7v9meHwJDkG4W09PWi5s,1841
|
|
1025
1026
|
wbcore/metadata/configs/window_types.py,sha256=RbUbUvid9qMIXZMI0sqLTanZcWCP-pmwm-_33z_3hQs,451
|
|
1026
|
-
wbcore/metadata/configs/buttons/__init__.py,sha256=
|
|
1027
|
-
wbcore/metadata/configs/buttons/bases.py,sha256=
|
|
1028
|
-
wbcore/metadata/configs/buttons/buttons.py,sha256=
|
|
1029
|
-
wbcore/metadata/configs/buttons/enums.py,sha256=
|
|
1027
|
+
wbcore/metadata/configs/buttons/__init__.py,sha256=s_FcAPwADxa8YE3gTbhbeqZhqBfoCZR3j4laLt7gpOo,205
|
|
1028
|
+
wbcore/metadata/configs/buttons/bases.py,sha256=rAw5Te9V5y6tCCKOTbZXz-uln0vT7io2oPV6QDn1Ijc,2823
|
|
1029
|
+
wbcore/metadata/configs/buttons/buttons.py,sha256=0dKPokHYMis_SZhFZ1gTHayFTMQk5nVAvyDetTNdQ6o,5033
|
|
1030
|
+
wbcore/metadata/configs/buttons/enums.py,sha256=vkJBfNFPTIIFvYrDGxrugqgRe22_KcqFRU39jo8ZvFw,1472
|
|
1030
1031
|
wbcore/metadata/configs/buttons/metadata.py,sha256=OhSkW18R6B_uJrtcGjN8VEkNCPlXD2DxuYWCqZXQbD0,348
|
|
1031
1032
|
wbcore/metadata/configs/buttons/view_config.py,sha256=31fFJFeV9iM24FQY7I6XaPthokJdCuzSeCBdAB1xGnE,5308
|
|
1032
1033
|
wbcore/metadata/configs/display/__init__.py,sha256=K3CdAUuC-YbowUusZ9F6vGfepppSqE8cfvazczEGePo,272
|
|
@@ -1052,7 +1053,7 @@ wbcore/metadata/configs/display/instance_display/layouts/inlines.py,sha256=xfcZ7
|
|
|
1052
1053
|
wbcore/metadata/configs/display/instance_display/layouts/layouts.py,sha256=3nY6M-4ZmE9labpY80wx_yPIqQmQw0_mjG5smmrujl8,3264
|
|
1053
1054
|
wbcore/metadata/configs/display/instance_display/layouts/sections.py,sha256=yFo5i-41KJp733MoDlzonaXDylOn0pbBlwqd7late0A,1298
|
|
1054
1055
|
wbcore/metadata/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1055
|
-
wbcore/metadata/tests/test_buttons.py,sha256=
|
|
1056
|
+
wbcore/metadata/tests/test_buttons.py,sha256=CxwzXS8rFW5N37GrkZl9AI2NyhMdlVCAETyPETe6fBc,6696
|
|
1056
1057
|
wbcore/migrations/0001_initial_squashed_squashed_0010_preset_appliedpreset.py,sha256=6RxsuOPKfhSSox5DC0bwUrI-oR9bGPkSyI1zDv5juSM,16460
|
|
1057
1058
|
wbcore/migrations/0011_genericmodel.py,sha256=w-SK0-EwQCbXtLyFz3V-rBY-hj8bw7_n0xe0NM2HF8U,588
|
|
1058
1059
|
wbcore/migrations/0012_delete_notification.py,sha256=HM0oUd05bgpuupsO_oG7t-C3lXInpq_Sg1vcEIyfHd0,293
|
|
@@ -1102,7 +1103,7 @@ wbcore/serializers/fields/__init__.py,sha256=xNNak0yl8FtC6m-__B5mfieSNGAygXND34E
|
|
|
1102
1103
|
wbcore/serializers/fields/boolean.py,sha256=vwP7HQflArFEG0w9FfXkPYKreFJ5qMjs-L0qKMeKCVQ,1682
|
|
1103
1104
|
wbcore/serializers/fields/choice.py,sha256=ozVwKaPCpsgPuQXQWr8TxHIcxSdGvhw23OFVD0xnipg,2128
|
|
1104
1105
|
wbcore/serializers/fields/datetime.py,sha256=UVrBAdh-Iy3cDdVxbce9rsPYwwfxDJ-kJEr_1K_29ec,7386
|
|
1105
|
-
wbcore/serializers/fields/fields.py,sha256=
|
|
1106
|
+
wbcore/serializers/fields/fields.py,sha256=R_JJxnSfgKK6pYFgfe_-7qo_y25YksQ-WuNgiKWev4U,7068
|
|
1106
1107
|
wbcore/serializers/fields/file.py,sha256=tDDK2bITiP7zxl9Ilzja2_gWae_lf9CkO1rDEBPaj6g,568
|
|
1107
1108
|
wbcore/serializers/fields/fsm.py,sha256=xUYxDj166PDnmDLggI4fShXdSunJVzbc8quFQioM3Yc,700
|
|
1108
1109
|
wbcore/serializers/fields/json.py,sha256=8SmEOW2hXnTTfuCztaxA8AA3qtTxhCZtft7BJm1yO6o,2225
|
|
@@ -1113,7 +1114,7 @@ wbcore/serializers/fields/other.py,sha256=3r_70JH_A_daS99LuwQWwa0LNtyosKW7QKJzZg
|
|
|
1113
1114
|
wbcore/serializers/fields/primary_key.py,sha256=yTbs5B2QlUX-XKEtop3JpwIPeP-FhM8u-2qDXM5q6u0,676
|
|
1114
1115
|
wbcore/serializers/fields/related.py,sha256=mq7QhcjSG273G400ZueYJnNVNDlGgnUHLoAHaKRjW_Q,6355
|
|
1115
1116
|
wbcore/serializers/fields/text.py,sha256=8cmRiH1RpCDGzuUmO1zMmm8uiybXDMqyuBkjFblNMmQ,5060
|
|
1116
|
-
wbcore/serializers/fields/types.py,sha256=
|
|
1117
|
+
wbcore/serializers/fields/types.py,sha256=Jf2lcNRKOnxMn55JZTTcvACRpADXwwXgPX3ojigrung,1011
|
|
1117
1118
|
wbcore/shares/__init__.py,sha256=uhHkbgHoFgbcsxHUPxNNzNs11oIjjQ7zIxG8FzsREAI,32
|
|
1118
1119
|
wbcore/shares/config.py,sha256=7-Tfit2PFUVpr9qbapcmtZbjeMiUHSyfYX6PKGwnj_w,2292
|
|
1119
1120
|
wbcore/shares/decorator.py,sha256=vFoVidO2IxLzYPZ-qWDWjjPxbCzFAvw4FVl2YZfPPAQ,448
|
|
@@ -1233,6 +1234,6 @@ wbcore/viewsets/generics.py,sha256=lKDq9UY_Tyc56u1bqaIEvHGgoaXwXxpZ1c3fLVteptI,1
|
|
|
1233
1234
|
wbcore/viewsets/mixins.py,sha256=IdHd_uixOv3ExKoHxTgL5Bt8OELIwfYwhBZm0nsvZfc,12054
|
|
1234
1235
|
wbcore/viewsets/utils.py,sha256=4520Ij3ASM8lOa8QZkCqbBfOexVRiZu688eW-PGqMOA,882
|
|
1235
1236
|
wbcore/viewsets/viewsets.py,sha256=FPPESunEjlunDr5VFsjTfsquTS3iDSQkw0H6QjMKPqk,6574
|
|
1236
|
-
wbcore-1.59.
|
|
1237
|
-
wbcore-1.59.
|
|
1238
|
-
wbcore-1.59.
|
|
1237
|
+
wbcore-1.59.7.dist-info/METADATA,sha256=RfAq-41a0Bam7az-ii2DomjwzI5xDq2uJM-R60xVO90,2316
|
|
1238
|
+
wbcore-1.59.7.dist-info/WHEEL,sha256=aha0VrrYvgDJ3Xxl3db_g_MDIW-ZexDdrc_m-Hk8YY4,105
|
|
1239
|
+
wbcore-1.59.7.dist-info/RECORD,,
|
|
File without changes
|