chris
c0171aa8d8
IMPRO,FEAT: added modifyChildren
enables passing a modifier to all children of a flex container.
Similar to distributeSpacingEvengly.
might be refactored into component in general.
10 months ago
chris
6933a89111
IMPRO,REFA,FEAT: extended distributeSpacingEvengly
it now can be either executed directly or on generate.
it allows defining excess spaces/gaps.
10 months ago
chris
7a40c27712
REFA,IMPRO: select elements are InputComponents as well
10 months ago
chris
6de0aca195
REFA,FIX,IMPRO: changed default behaviour of text()
Instead of catching the default behaviour for HTMLInputElements
when calling text() on every component,
It is now an extension for InputComponents.
10 months ago
chris
1a51451e82
DOC,REFA,LINT: implemented first couple of lint issues
10 months ago
chris
d361a1bbee
FEAT,REFA: externalized extension base class
For reusability in the setup of jpclw extensions
10 months ago
chris
c25f9bb93e
FEAT: added noselect modifier
instead of always manual setting no select stylings
10 months ago
chris
aa65dc1e54
FIX,IMPRO,REFA: overriding all function for border
10 months ago
chris
5dab23dc14
FEAT,FIX,IMPRO,REFA: reworked overflow behaviour
10 months ago
chris
46f12f517d
FIX,REFA: handling parameter given as string or function
10 months ago
chris
ab4d39d55d
IMPRO,MINOR,FIX: changed replacement order of empty string characters
to replace those that are a combination of two first.
Otherwise the combination would be replaced twice.
10 months ago
chris
0496bb0295
FIX,IMPRO,REFA: removed shape invokation on border constructor
the "default" value would always override the border-shape
that might be set in the component earlier by the clip() function.
10 months ago
chris
d578a56269
MINOR,FIX: lookup for existing key in object
10 months ago
chris
61a32a7bfe
MINOR,IMPRO,FIX,REFA: changed to map approach
10 months ago
chris
27cc2d930d
FIX: entries is a function of a map
10 months ago
chris
73c85f4d2e
FIX: wrongfully created a dependend call loop
the visibillity toggle functions were calling each other.
This might have ended in an not ending cycle.
10 months ago
chris
025573a16c
FIX: default values for parameters were wrongfully provided
in overriding methods - there were default parameters set.
10 months ago
chris
2b50ed88d1
FIX: generator used this (legacy from component)
- changed method calls in generator from this (legacy from component)
to component or similar.
- removed modifier param from generate() method
- reintroduced ExtStore initialization in Component ancestry
since the extstore logic might be reevaluated all together
the reintroduction is a quicker fix then to implement a dedicated
solution that might be removed later anyway
11 months ago
chris
60776d6fc3
DOC,REFA: unified used "imports", updated usage of deprecated methods
11 months ago
chris
fc1dfd7e21
REFA: renamed files to represent classes directly
11 months ago
chris
9f374eeaa4
IMPRO: default generator
11 months ago
chris
20710fc461
MAJOR,IMPL,FEAT,REFA: generator
11 months ago
chris
db5750ca16
REFA: changed extStore setup
11 months ago
chris
0110253876
REFA: moved executeStoreTypeCollectedTriple function
11 months ago
chris
e495aa72ad
FIX: setFunctionsExtStorage setting property
method set property _styleExtStore instead of _functionsExtStore
11 months ago
chris
439a98eb33
REFA,DOC: Added Doc removed empty lines
11 months ago
chris
70e5d0d66f
REFA: renamed properties of WebTrinity
11 months ago
chris
60faa1a062
MAJOR,REFA: extracted TwoDimPoint class in own file
related helper funcitons were moved into a corresponding file
11 months ago
chris
e539ace5a0
DRAFT,IMPL,DOC: changed loop approaches
11 months ago
chris
23e30b8ffb
MINOR,FEAT,REFA,DOC: first implementation of generator class
11 months ago
chris
8d6eb00ae4
MAJOR,REFA: moved context.js into corresponding module
11 months ago
chris
c2a34dd540
MAJOR,REFA: moved base types into sepperate module
11 months ago
chris
12f52feca8
MAJOR,REFA: moved event/behaviour modifiers to handlers module
11 months ago
chris
89bc8106c9
MAJOR,REFA: seperated and moved baseCompontent
11 months ago
chris
c34114c176
MAJOR,REFA: Moved style-modifiers into decorators dir
Even though the moved properties don't have dependencies.
They are style-decorators.
Therefore they are moved accordingly
11 months ago
chris
6ff45892cb
REFA: removing empty lines at begin of files (and doc if redundant)
11 months ago
chris
6f186b64d8
MAJOR,REFA: moved component and ancestry into module
11 months ago
chris
dd3d986485
MAJOR,REFA: moved modifiers to decorators
- the decorators are stored in a more flat hirearchy.
- the differencen between modifier and decorators is more intuitiv now.
11 months ago
chris
d9cef5210d
MAJOR,REFA: moved helpers into module out of context
11 months ago
chris
26becc9431
MAJOR,REFA: moved twoDimPoint to helpers instead
11 months ago
chris
3afeb8a5e6
MAJOR,REFA: Moved/Renamed modifier extensions into "module" dir
11 months ago
chris
0209c1012f
MAJOR,REFA: externalized modifier extension classes
11 months ago
chris
b53ffc3571
REFA, IMPRO: removing the property "_wenity"
The property didn't introduced any additional functionality.
11 months ago
chris
eca487c2fe
CHORE,REFA: removed copyright disclaimer from 'every' file
Either the copyright disclaimer will be added through build/generate
or a default licence file in the repo should be enough.
Overachieving licence security is a waste of creative energy.
11 months ago
chris
e0fbe8bd96
CHORE,DOC: some doc added, removed unused dependencies
11 months ago
chris
c228b251b2
MINOR,FEAT: return parent if child is undefined to allow empty method stubs
11 months ago
chris
208481a867
FIX,DOC: adjusted return types and fixed integer identification
11 months ago
chris
aada47b8e0
FEAT,MAJOR,REFA,FIX: unified logic of DirectionUnitDependentAttributes
More specific the logic of DirectionUnitDependetAttributes (DUDA) extending
classes and corresponding Modifier-call methods.
Set the old link<CallMethod> methods @deprecated .
Now you can call an DUDA-CallMethod with either:
- default value (usually number): returns modifier
- nothing: returns DUDA-Ext-Chain
- DUDA-Ext: returns modifier
Introduced mixins to extend DUDA-Extensions with (unified)
returns to modifier or component methods.
Rearanged, added and updated some doc
Moved some of the DUDA-Ext into their own files under src/modifier/.
11 months ago
chris
512551c4f4
FEAT: chainChild - chain of single elements
11 months ago
chris
578d26c2e5
MINOR,FEAT,REFA: introduced modifier passing to generator
11 months ago