-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feat] Composer module #36
base: master
Are you sure you want to change the base?
Conversation
And hide internal components DI token
That will return all available components in orchestrator
By replacing Object.values => Object.keys
And use localized imports of modules
And add missing layout module import to unit tests
Of LOCAL_UPDATE_CONFIG token
e118002
to
19aedc1
Compare
And reset component state when it has to be changed but kept due to tracking optimizations
And render config in a card component with controls in popver
So only one component has it's popover active at a time
To unload droppable component
So they can be extended via DI from third-party modules re orchestratora/rfcs#2
And update list of used peer dependencies
@@ -2,22 +2,32 @@ import { Type } from '@angular/core'; | |||
|
|||
import { createMetadataGetSet } from './util'; | |||
|
|||
export interface ConfigurationMeta { | |||
const Reflect = (window as any).Reflect; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
User should be able to provide Reflect API differently otherwise default back to getting it from global window.
For example:
https://github.com/orchestratora/gen-io-ts/blob/6f8d6565809100c05fef809fa38942e7086b01d2/projects/gen-io-ts/src/lib/reflect.ts
NOTE: Ideally Reflect API should be shared between libs like @orchestratora/gen-io-ts
.
Update composer module PR #36
Implements orchestratora/rfcs#2