i'm so sorry.
At assembly Lazarus the old version of modules, therefore property was used was not displayed. Whether there is a description - how correctly to adjust ways to libraries?
> by the way, setting Transaction automatically sets UpdateTransaction, it's ok?
i'ts ok.
>(with some changes)
What?
Sorry I have not checked lately the lazarus ccr documentation, so I don't know if there are documentation on how to set the paths to the libraries (If I undestand correctly your first question)
on the second question this is what I have done:
1.
Changed the paths in the Package Compiler's options.
A)They were refered to what I supposed was your UIB install in C: and B) the output dir for the package (the lib dir), also at some point in your C: disk.
I changed to point to my UIB install and the correct unit output for me.
2.
I changed the references to Windows, Messages in the uses to:
{$IFDEF WIN32}
Windows, Messages,
{$ELSE}
LCLIntf,
{$ENDIF}
I've not checked if LCLIntf is really needed, though but it works
for A) I think all what is needed is a dependency to the UIB package and not set the path to the source because this create duplicated units (which lazarus nicely detects

) For B) it's not necesary to set an absolute path to the output unit dir (the lib dir), setting the value to: lib it's enought and will work in windows and linux.
there is a problematic file, though: jvuib.inc which is shared between your component and UIB. Maybe copying the file directly to your source tree will be enought but I don't tested.
I just tried to compile your component and not tried many things above, I will do it as soon as possible.
It's a nice component, great editor. Congratulations.