Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
3f02437
wip: add more field types and deal with Enum in facets
yohanboniface Aug 15, 2025
99b4f4d
wip: add FieldManager and refactor facets
yohanboniface Aug 19, 2025
7753990
wip: add fields management on the Umap object
yohanboniface Aug 22, 2025
37645f9
wip: allow to switch from filter dialog to field dialog and vice-versa
yohanboniface Sep 9, 2025
cdcb88c
wip: customize field input according to type and add icon
yohanboniface Sep 11, 2025
6e17ec1
fix: fix reordering fields
yohanboniface Sep 11, 2025
c9b2db7
wip: keep order on field rename
yohanboniface Sep 11, 2025
5f82dd5
wip: allow to reorder fields
yohanboniface Sep 11, 2025
7da94c7
wip: make sure fields are saved after changing their type
yohanboniface Sep 15, 2025
7da6c80
wip: introduce DateTimeInput
yohanboniface Sep 15, 2025
0eedb1f
wip: merge fieldsets for fields, filters and keys management
yohanboniface Sep 17, 2025
25cb468
wip: fix filters update
yohanboniface Sep 17, 2025
01e9d57
wip: poor man way of dealing with French formatted dates
yohanboniface Sep 17, 2025
3a5102f
wip: make sure we can undo a field rename
yohanboniface Sep 17, 2025
fe85d78
wip: fix tests
yohanboniface Sep 17, 2025
db2651c
wip: allow to edit filter from the browser
yohanboniface Sep 17, 2025
a670601
wip: add "+" icon to "add filter" button
yohanboniface Sep 17, 2025
72ed342
wip: move Facet fields to facets module
yohanboniface Sep 17, 2025
897db9c
wip: add button to create new filter from browser
yohanboniface Sep 17, 2025
65cdac1
wip: do not fail when filtering a feature with a field from another l…
yohanboniface Sep 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion umap/static/umap/css/form.css
Original file line number Diff line number Diff line change
Expand Up @@ -306,10 +306,14 @@ details summary {
color: var(--color-light);
}

.dark details fieldset {
.dark details fieldset:not(.formbox) {
border: 1px solid var(--color-darkGray);
}

summary h4 {
display: inline;
}

fieldset legend {
font-size: .9rem;
padding: 0 5px;
Expand Down
29 changes: 29 additions & 0 deletions umap/static/umap/css/icon.css
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,35 @@ html[dir="rtl"] .icon {
background-position: calc(var(--tile) * 5) 0;
}

.icon-field-Boolean {
background-position: calc(var(--tile) * 2) calc(var(--tile) * 8);
}

.icon-field-Date {
background-position: calc(var(--tile) * 5) calc(var(--tile) * 8);
}

.icon-field-Datetime {
background-position: calc(var(--tile) * 6) calc(var(--tile) * 8);
}

.icon-field-Enum {
background-position: calc(var(--tile) * 7) calc(var(--tile) * 8);
}

.icon-field-Number {
background-position: calc(var(--tile) * 3) calc(var(--tile) * 8);
}

.icon-field-String {
background-position: var(--tile) calc(var(--tile) * 8);
}

.icon-field-Text {
background-position: 0 calc(var(--tile) * 8);
}


.icon-filters {
background-position: 0px var(--tile);
}
Expand Down
14 changes: 11 additions & 3 deletions umap/static/umap/img/16-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion umap/static/umap/img/16.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading