plain.admin 0.33.0__py3-none-any.whl → 0.33.2__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.
- plain/admin/CHANGELOG.md +20 -1
- plain/admin/assets/admin/admin.css +17 -12
- plain/admin/assets/admin/admin.js +2 -2
- {plain_admin-0.33.0.dist-info → plain_admin-0.33.2.dist-info}/METADATA +1 -1
- {plain_admin-0.33.0.dist-info → plain_admin-0.33.2.dist-info}/RECORD +7 -8
- plain/admin/impersonate/models.py +0 -0
- {plain_admin-0.33.0.dist-info → plain_admin-0.33.2.dist-info}/WHEEL +0 -0
- {plain_admin-0.33.0.dist-info → plain_admin-0.33.2.dist-info}/licenses/LICENSE +0 -0
plain/admin/CHANGELOG.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
# plain-admin changelog
|
2
2
|
|
3
|
+
## [0.33.2](https://github.com/dropseed/plain/releases/plain-admin@0.33.2) (2025-07-07)
|
4
|
+
|
5
|
+
### What's changed
|
6
|
+
|
7
|
+
- No user-facing changes in this release. Internal CSS cleanup and linter adjustments were made to the bundled admin styles ([3265f5f](https://github.com/dropseed/plain/commit/3265f5f)).
|
8
|
+
|
9
|
+
### Upgrade instructions
|
10
|
+
|
11
|
+
- No changes required
|
12
|
+
|
13
|
+
## [0.33.1](https://github.com/dropseed/plain/releases/plain-admin@0.33.1) (2025-06-26)
|
14
|
+
|
15
|
+
### What's changed
|
16
|
+
|
17
|
+
- No user-facing changes in this release. Internal documentation formatting was improved ([2fc81de](https://github.com/dropseed/plain/commit/2fc81de)).
|
18
|
+
|
19
|
+
### Upgrade instructions
|
20
|
+
|
21
|
+
- No changes required
|
22
|
+
|
3
23
|
## [0.33.0](https://github.com/dropseed/plain/releases/plain-admin@0.33.0) (2025-06-23)
|
4
24
|
|
5
25
|
### What's changed
|
@@ -10,4 +30,3 @@
|
|
10
30
|
### Upgrade instructions
|
11
31
|
|
12
32
|
- No changes required
|
13
|
-
|
@@ -5,9 +5,11 @@ end-user to drop in HTML elements and have a decent, consistent starting point.
|
|
5
5
|
We shouldn't use many custom classes in here (like .btn) because the user
|
6
6
|
could unintentionally overwrite those since our CSS is combined.
|
7
7
|
*/
|
8
|
+
|
9
|
+
/* biome-disable lint/style/noDescendingSpecificity */
|
8
10
|
table {
|
9
11
|
width: 100%;
|
10
|
-
font-size: .875rem;
|
12
|
+
font-size: 0.875rem;
|
11
13
|
line-height: 1.25rem;
|
12
14
|
table-layout: auto;
|
13
15
|
}
|
@@ -17,6 +19,14 @@ th {
|
|
17
19
|
padding: 0.5rem 0.5rem;
|
18
20
|
}
|
19
21
|
|
22
|
+
main a {
|
23
|
+
color: rgb(37, 99, 235);
|
24
|
+
}
|
25
|
+
|
26
|
+
main a:hover {
|
27
|
+
text-decoration: underline;
|
28
|
+
}
|
29
|
+
|
20
30
|
table th a {
|
21
31
|
color: rgba(255, 255, 255, 0.6);
|
22
32
|
}
|
@@ -47,23 +57,15 @@ table img {
|
|
47
57
|
border-radius: 2px;
|
48
58
|
}
|
49
59
|
|
50
|
-
main a {
|
51
|
-
color: rgb(37, 99, 235);
|
52
|
-
}
|
53
|
-
|
54
|
-
main a:hover {
|
55
|
-
text-decoration: underline;
|
56
|
-
}
|
57
|
-
|
58
60
|
select {
|
59
61
|
border-radius: 6px;
|
60
62
|
background-color: rgba(255, 255, 255, 0.05);
|
61
63
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
62
64
|
}
|
63
65
|
|
64
|
-
|
66
|
+
main button,
|
65
67
|
.actions button,
|
66
|
-
|
68
|
+
.actions a {
|
67
69
|
display: inline-block;
|
68
70
|
padding: 8px 16px;
|
69
71
|
font-size: 14px;
|
@@ -74,7 +76,10 @@ main button {
|
|
74
76
|
background-color: #2a2826;
|
75
77
|
border: 1px solid #3f3d3b;
|
76
78
|
border-radius: 6px;
|
77
|
-
transition:
|
79
|
+
transition:
|
80
|
+
background-color 0.2s,
|
81
|
+
border-color 0.2s,
|
82
|
+
transform 0.2s;
|
78
83
|
cursor: pointer;
|
79
84
|
flex-shrink: 0;
|
80
85
|
|
@@ -2,7 +2,7 @@ jQuery(($) => {
|
|
2
2
|
$("[data-toggle]").on("click", function (e) {
|
3
3
|
e.preventDefault();
|
4
4
|
const targets = $(this).data("toggle").split(",");
|
5
|
-
$.each(targets, (
|
5
|
+
$.each(targets, (_index, target) => {
|
6
6
|
const $target = $(target);
|
7
7
|
if ($target.data("toggle-class")) {
|
8
8
|
$target.toggleClass($target.data("toggle-class"));
|
@@ -12,7 +12,7 @@ jQuery(($) => {
|
|
12
12
|
});
|
13
13
|
});
|
14
14
|
|
15
|
-
$("[data-autosubmit]").on("change", function (
|
15
|
+
$("[data-autosubmit]").on("change", function (_e) {
|
16
16
|
$(this).closest("form").submit();
|
17
17
|
});
|
18
18
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
plain/admin/CHANGELOG.md,sha256=
|
1
|
+
plain/admin/CHANGELOG.md,sha256=N11d-amtJRZVskK52ohuSbpmOx1sLYzC-90Dka4t4Jw,1320
|
2
2
|
plain/admin/README.md,sha256=w5N8yhHdMgY2RIf4WUvIXKvBrRTHLy4CV0ROtdK2Jiw,4614
|
3
3
|
plain/admin/__init__.py,sha256=bPv9iftT8aLqBH6dDy-HTVXW66dQUhfIiEZ-LIUMC0Y,78
|
4
4
|
plain/admin/config.py,sha256=TDYmJe4UYmKw4bz0x5s9PkDa-X4V-9JoJlka162-J7M,676
|
@@ -8,8 +8,8 @@ plain/admin/middleware.py,sha256=k3yP1o3CzvLiZZSoxqq-DvAZlp4sICRauaT-kD3FJKM,398
|
|
8
8
|
plain/admin/templates.py,sha256=0xgMQmJEbh5U45ZlN2f15Xs42Y2A_lSS-_wdMp1BeD4,854
|
9
9
|
plain/admin/toolbar.py,sha256=1bZm4Ub7d7rEXyh6TH7qbpcu9zqDOsS3Ynl9Xs0eM2M,2779
|
10
10
|
plain/admin/urls.py,sha256=sriMi2RCkcrkjCX3CIIP1-Qzs_zDm2pxXeOw28vc7Y4,1301
|
11
|
-
plain/admin/assets/admin/admin.css,sha256=
|
12
|
-
plain/admin/assets/admin/admin.js,sha256=
|
11
|
+
plain/admin/assets/admin/admin.css,sha256=HsayPTAn0-pnwBR-fKkih9KrXUhM7jrWuReXwe5byHo,2662
|
12
|
+
plain/admin/assets/admin/admin.js,sha256=jI5u55YMvffibugVDf2QAZyrdahFsGLCciHyzFBCvmI,2571
|
13
13
|
plain/admin/assets/admin/list.js,sha256=SDmDpSqsbbgLeAaV6V6JKbI-nG7WdjCD3MqFeO4LS_0,1835
|
14
14
|
plain/admin/assets/admin/vendor/chart.js,sha256=GZiCYXjL6SmyuSCGE0Df80QvOUkw6H2YD-zsVID05lo,205089
|
15
15
|
plain/admin/assets/admin/vendor/jquery-3.6.1.slim.min.js,sha256=W2eb4M1jdKpuZ_-_KnDgqI9X9SwGLrXtO0dknpNPJyE,72534
|
@@ -23,7 +23,6 @@ plain/admin/cards/tables.py,sha256=lGUBeSaBsNVuzINVH8qU-1XF0PfPY03gcUKtN-462zE,5
|
|
23
23
|
plain/admin/impersonate/README.md,sha256=GT7ubMxyB2RhUh-gDg_yYqWSm7oMp0hy1LepXyDRMo8,1012
|
24
24
|
plain/admin/impersonate/__init__.py,sha256=houAFRscvEx8ajejZl9Im8Iu1aJFTTloHMXpgSwViVs,83
|
25
25
|
plain/admin/impersonate/middleware.py,sha256=gFDLyEBqslJC908gKk1bFKmLFpimiaQdeaaXCBjUvaM,1261
|
26
|
-
plain/admin/impersonate/models.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
26
|
plain/admin/impersonate/permissions.py,sha256=N0EFshs0pgwFIAsK2MUgfnyhdb2rYheY_l47cYdGurE,332
|
28
27
|
plain/admin/impersonate/settings.py,sha256=4wbWBN9eZIzei4fwkFLfw-_T5pvP_GG4l1lDdVpL_Co,193
|
29
28
|
plain/admin/impersonate/urls.py,sha256=s8bwi8qPueKCCYcLW75p-hPFkBKhm2AMi6AQKQcZsWc,304
|
@@ -80,7 +79,7 @@ plain/admin/views/objects.py,sha256=eKL8A2B1ZMgTrCbTXnh6vCeju_HObxwetn_xc1vYlfY,
|
|
80
79
|
plain/admin/views/registry.py,sha256=Lxib4YSQCMHb_zACnLKymJakV8jCZPWYll7J8-aV9Xw,3712
|
81
80
|
plain/admin/views/types.py,sha256=ONMMdUoapgMoUVYgSIe-4YCdfvaVMQ4jgPWYiMo0pDk,178
|
82
81
|
plain/admin/views/viewsets.py,sha256=dqMlQ6kLn9iqd9BwBWAZT1S271wH1FdfM5HXbOgBMEw,1655
|
83
|
-
plain_admin-0.33.
|
84
|
-
plain_admin-0.33.
|
85
|
-
plain_admin-0.33.
|
86
|
-
plain_admin-0.33.
|
82
|
+
plain_admin-0.33.2.dist-info/METADATA,sha256=Rj5VzVT3GsJRYPqjcYuVz5Ff3kkqHj54UZ0DdIbfIvI,5051
|
83
|
+
plain_admin-0.33.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
84
|
+
plain_admin-0.33.2.dist-info/licenses/LICENSE,sha256=cvKM3OlqHx3ijD6e34zsSUkPvzl-ya3Dd63A6EHL94U,1500
|
85
|
+
plain_admin-0.33.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|