This project is mirrored from https://*****@github.com/iqb-berlin/verona-modules-aspect.git.
Pull mirroring updated .
- Feb 02, 2024
-
-
rhenck authored
-
- Jun 13, 2023
-
-
rhenck authored
- Background color must not be transparent for the stickied panel to overlay properly. - Use TextImagePanel where possible
-
- May 05, 2023
-
-
jojohoch authored
-
- May 04, 2023
-
-
jojohoch authored
-
- Sep 07, 2022
-
-
jojohoch authored
-
- Aug 09, 2022
-
-
rhenck authored
-
- Aug 08, 2022
-
-
rhenck authored
-
- May 17, 2022
-
-
rhenck authored
This way elements can handle their logic themselves without having to rely on outside utility classes. Also restructure files in common in a more logical way.
-
- Apr 13, 2022
-
-
rhenck authored
-
- Apr 07, 2022
-
-
rhenck authored
verticalButtonAlignment is the new property for likert rows, which tells the actual radio button to either be at the top or in the middle.
-
- Feb 28, 2022
-
-
jojohoch authored
-
- Feb 17, 2022
-
-
rhenck authored
This removes all the classes and goes back to simple interfaces for unit, pages etc and all elements. This makes creating them easier and cleaner. Things like specific needs when setting element properties and most importantly compatibility handling is done by a special service module, that knows all the elements and how to repair old their potentially outdated definitions.
-
- Feb 09, 2022
-
-
rhenck authored
This is done according to the Angular best practices and minimizes namespace collisions when using other packages which might use the same selectors. Technically the selectors are not even becessary since we use an Angular component factory to create element components but it is still useful for the DOM element naming, for debugging purposes for example.
-
- Jan 14, 2022
-
-
jojohoch authored
-
- Dec 14, 2021
-
-
rhenck authored
The theme file is now project specific because Angular demands assets to be part of the project. It also differs in content: The editor theme is only applied to canvas elements. For the player every checkbox and radio button is affected. The components now again use the default color of 'accent'. The custom theme now has the green as accent color and no longer primary.
-
- Dec 13, 2021
-
-
rhenck authored
Used in checkboxes and radio buttons, which are now green. The secondary is unused but for safety set to the same as the default theme should be.
-
- Dec 09, 2021
-
-
rhenck authored
-
- Dec 07, 2021
-
-
rhenck authored
For all elements using radio buttons.
-
- Nov 26, 2021
-
-
rhenck authored
The problem being solved is that compound-sub-elements must not have all the properties other elements have. For exampe positioning info. Sub-Elements are positioned inline. To avoid having similar class inheritance structures for positioned and inline elements, we use interface. Positioning is done via interface and is therefore optional. Those optional properties are kept in an object in a variable. This allows to hide specifics from element classes and removes the need to initialize all the fields in every class using the interface. The elements mostly care about their own specific properties anyway. The same technique is used for font and surface elements. Here we also don't want to initialize all the styles in every class. Changing values of element properties works like before. Just set the property as if it would be a direkt prop of the element. The element itself puts the value in the currect sub-object (positioningProps, fontProps etc). For reading the values there is a similar method, but it is not used anywhere by now. Since the properties panel operates on the raw values anyway (refer CombinedProperties) and for element components this would mean calling a function in the template, which caused change detection to run the function very often and is therefore bad practice. Additional notes and refactorings: - Restructure all files in common. UIElements in the same folder etc. - Move all interfaces to the UIElement file. This avoids circular imports, which would be needed to allow PositionedElement to extend UIElement. - Interface initializers also handle reading values in the old form. - Add PositionedElement for use in canvas overlays. This is a UIElement with guaranteed postionProps. - Don't export all Material packages from common, only the ones used in player and editor. The rest is only used in common and does not need to be exported.
-
- Nov 22, 2021
-
-
rhenck authored
Also all elements now take the parentForm as input. Allowing it to use them with template binding and not only setting the value directly (in the controller).
-
- Nov 18, 2021
-
-
rhenck authored
- Images now scale up and down depending on the available space. - The new property controls the first (column) size parameter for the grid. The others are fixed at 1. Decimal values are allowed for fine-tuned control. This prop is passed on to the child likert-row component. It uses the same grid and needs this info for proper alignment with the column headers. - Remove unnecessary div in likert
-
- Nov 10, 2021
-
-
rhenck authored
This change mainly helps the editor. The idea is to make the element components have the correct value of their model and don't rely on the formcontrol value. The formcontrol can be hard to manipulate, especially in compound elements. Setting the model value is way easier. The formcontrols are kept and should not interfere.
-
- Nov 05, 2021
-
-
rhenck authored
There were some things missing when renaming questions/answers to rows/columns. Now everything is properly named.
-
- Oct 29, 2021
-
-
rhenck authored
For elements which don't have this functionality the workaround is to use pointer events and make the elements unclickable.
-
- Oct 22, 2021