@ddd-tool/domain-designer-ui-component 0.0.0-alpha.9 → 0.1.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -3
- package/UI.vue.d.ts +1 -1
- package/common.d.ts +2 -0
- package/components/drag-zoom/Index.vue.d.ts +33 -12
- package/components/node-info/Index.vue.d.ts +7 -0
- package/components/nomnoml/Index.vue.d.ts +1 -1
- package/domain/common.d.ts +7 -5
- package/domain/diagram-agg/index.d.ts +104 -361
- package/domain/i18n-agg/message.d.ts +1 -1
- package/index.css +1 -1
- package/index.d.ts +1 -1
- package/index.js +843 -17500
- package/package.json +13 -13
- package/ui.d.ts +5 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type I18nMessageKeys = 'constant.type' | 'constant.type.id' | 'constant.type.document' | 'constant.type.function' | 'constant.type.valueObject' | 'constant.type.version' | 'constant.
|
|
1
|
+
export type I18nMessageKeys = 'constant.type' | 'constant.type.id' | 'constant.type.document' | 'constant.type.function' | 'constant.type.valueObject' | 'constant.type.version' | 'constant.relatedTypes' | 'constant.note' | 'constant.empty' | 'constant.others' | 'menu.focusOnUserStory' | 'menu.focusOnUserStory.focusNothing' | 'menu.completenessAssist' | 'menu.settings' | 'menu.settings.renderExternalSystem' | 'menu.settings.renderReadModel' | 'menu.settings.language' | 'menu.settings.dataSource' | 'menu.help' | 'menu.exportSvg' | 'menu.replayWorkflow';
|
|
2
2
|
export type I18nMessages = {
|
|
3
3
|
[key in I18nMessageKeys]: string;
|
|
4
4
|
};
|
package/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.nomnoml[data-v-
|
|
1
|
+
.nomnoml[data-v-83e775ca]{height:100%;overflow:auto}.nomnoml text{cursor:pointer}@keyframes shining-info{0%{stroke-width:1px;stroke-opacity:.2;stroke:#000;-webkit-text-stroke-color:#000}to{stroke-width:1px;stroke-opacity:.8;stroke:#000;-webkit-text-stroke-color:#000}}@keyframes shining-node{0%{stroke-opacity:.2;stroke:#33322e;-webkit-text-stroke-color:#33322e}to{stroke-opacity:1;stroke:#33322e;-webkit-text-stroke-color:#33322e}}.nomnoml .highlight-info:not(.active) text{animation:shining-info .6s alternate infinite;-webkit-animation:shining-info .6s alternate infinite;-moz-animation:shining-info .6s alternate infinite}.nomnoml .highlight-note:not(.active){animation:shining-info .6s alternate infinite;-webkit-animation:shining-info .6s alternate infinite;-moz-animation:shining-info .6s alternate infinite}.nomnoml .highlight-node:not(.active) g:first-child{animation:shining-node .6s alternate infinite;-webkit-animation:shining-node .6s alternate infinite;-moz-animation:shining-node .6s alternate infinite}.nomnoml g[data-id].active text,.nomnoml tspan[data-id].active{stroke-width:1px;stroke-opacity:.8;stroke:#000;-webkit-text-stroke-color:#000}.nomnoml g.node.active{animation:shining-node .6s alternate infinite;-webkit-animation:shining-node .6s alternate infinite;-moz-animation:shining-node .6s alternate infinite}.container{width:100vw;height:100vh;background-color:#f0f0f0;overflow:hidden;position:relative}.draggable{position:absolute;top:0;left:0;user-select:none;transform-origin:0 0}.p-dock{opacity:.4;transition:.5s}.p-dock:hover{opacity:1}.p-dock .p-dock-item:hover{scale:1.1}.root-fieldset{opacity:.9;white-space:pre-line;position:absolute;right:4rem;top:0;width:30%}.root-fieldset .note:before{content:"";display:inline-block;height:1rem;width:.5rem;border-radius:.25rem;margin-right:.5rem;background-color:#4441ff}
|
package/index.d.ts
CHANGED