aboutsummaryrefslogtreecommitdiff
path: root/static/components (follow)
Commit message (Collapse)AuthorAge
* Change innerHTML to textContent.Hugo Hörnquist2021-11-22
| | | | Also changed some innerText to textContent
* Rework popup components.Hugo Hörnquist2021-11-21
| | | | | | | | | | | | | | Previously popups were driven through some CSS hacks, which used labels with specific positioning, and z-index changes. This never really worked, and led the rest of the tree to be unmanagable. This commit replaces that system with a simpler one, which is being driven by javascript. This also allowed a much simpler tree, which allowed us to - make the popups rezisable (with a resize anchor) - move the window handle to above (configurable) - Add and remove tabs without having manually reflow where all labels are
* Add basic rrule tab.Hugo Hörnquist2021-11-19
|
* Add input-list custom element.Hugo Hörnquist2021-11-19
|
* vevent-dl formats rrules.Hugo Hörnquist2021-11-19
|
* Change popup tabs interface.Hugo Hörnquist2021-11-18
|
* Restore remove event functionality.Hugo Hörnquist2021-11-18
|
* Minor fixes.Hugo Hörnquist2021-11-18
|
* Remove .interactive, fix date-time checkbox.Hugo Hörnquist2021-11-18
|
* Various fixes <date-time-input/>Hugo Hörnquist2021-11-18
|
* Fix calendar for popup.Hugo Hörnquist2021-11-15
|
* Rework some drawing and how calendar is accessed.Hugo Hörnquist2021-11-15
|
* Reword popup visible attribute.Hugo Hörnquist2021-11-15
| | | | | | Now all logic for handling hiding and showing popups are inside the PopupElement class, making it much harder to do stuff incorrectly. It also slowly releases the knot around popup.ts.
* Re-modularize javascript.Hugo Hörnquist2021-11-10
This moves almost everything out of globals.ts, into sepparate files. Things are still slightly to tightly coupled. But that is worked on.