@ddd-tool/domain-designer-ui-component 0.0.0-alpha.8 → 0.0.0-alpha.9
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/components/drag-zoom/Index.vue.d.ts +17 -0
- package/components/nomnoml/style.d.ts +1 -1
- package/domain/diagram-agg/index.d.ts +0 -2
- package/domain/i18n-agg/message.d.ts +1 -1
- package/index.css +1 -1
- package/index.js +3760 -3807
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: HTMLDivElement;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
11
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "\n#.command: visual=class fill=#aec6cf title=bold\n#.facadeCommand: visual=class fill=#779fae title=bold\n#.readModel: visual=class fill=#77dd77 title=bold\n#.aggregation: visual=class fill=#fdfd9d title=bold\n#.service: fill=#eee8d5 title=bold\n#.system: fill=#eee8d5 title=bold\n#.event: visual=class fill=#ffcb81 title=bold\n#.policy: fill=#b6a2db title=bold\n#.
|
|
1
|
+
declare const _default: "\n#.command: visual=class fill=#aec6cf title=bold\n#.facadeCommand: visual=class fill=#779fae title=bold\n#.readModel: visual=class fill=#77dd77 title=bold\n#.aggregation: visual=class fill=#fdfd9d title=bold\n#.service: fill=#eee8d5 title=bold\n#.system: fill=#eee8d5 title=bold\n#.event: visual=class fill=#ffcb81 title=bold\n#.policy: fill=#b6a2db title=bold\n// #.actor: padding=10\n\n//#bendSize: 0.3\n#padding: 4\n//#spacing: 40\n#edgeMargin: 0\n#lineWidth: 2.5\n#leading: 1.35\n//#zoom: 1\n#font: Times New Roman //consolas,Monaco\n#fontSize: 14\n\n";
|
|
2
2
|
export default _default;
|
|
@@ -445,7 +445,6 @@ export declare function useDiagramAgg(data?: Record<string, DomainDesigner>): Re
|
|
|
445
445
|
downloadEnabled: Readonly<import("vue").Ref<boolean, boolean>>;
|
|
446
446
|
displayReadModel: Readonly<import("vue").Ref<boolean, boolean>>;
|
|
447
447
|
displaySystem: Readonly<import("vue").Ref<boolean, boolean>>;
|
|
448
|
-
renderScale: Readonly<import("vue").Ref<number, number>>;
|
|
449
448
|
}>;
|
|
450
449
|
commands: Readonly<{
|
|
451
450
|
focusFlow: FocusFlowFn;
|
|
@@ -453,7 +452,6 @@ export declare function useDiagramAgg(data?: Record<string, DomainDesigner>): Re
|
|
|
453
452
|
setDownloadEnabled: (b: boolean) => void;
|
|
454
453
|
setDisplayReadModel: (b: boolean) => void;
|
|
455
454
|
setDisplaySystem: (b: boolean) => void;
|
|
456
|
-
setRenderScale: (scale: number) => void;
|
|
457
455
|
setCurrentInfo: (id: string | undefined) => void;
|
|
458
456
|
switchDesign: (key: string) => void;
|
|
459
457
|
getIdMap: () => Record<string, object>;
|
|
@@ -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.subtype' | 'constant.description' | 'constant.empty' | 'constant.others' | 'menu.focusOnUserStory' | 'menu.focusOnUserStory.focusNothing' | 'menu.settings' | 'menu.settings.renderExternalSystem' | 'menu.settings.renderReadModel' | 'menu.settings.language' | 'menu.settings.dataSource' | 'menu.exportSvg' | 'menu.replayWorkflow';
|
|
1
|
+
export type I18nMessageKeys = 'constant.type' | 'constant.type.id' | 'constant.type.document' | 'constant.type.function' | 'constant.type.valueObject' | 'constant.type.version' | 'constant.subtype' | 'constant.description' | 'constant.empty' | 'constant.others' | 'menu.focusOnUserStory' | 'menu.focusOnUserStory.focusNothing' | '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-d968da7a]{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-node g:first-child{animation:shining-node .6s alternate infinite;-webkit-animation:shining-node .6s alternate infinite;-moz-animation:shining-node .6s alternate infinite}.nomnoml .active text{stroke-width:1px;stroke-opacity:.8;stroke:#000;-webkit-text-stroke-color:#000}.p-dock{opacity:.4;transition:.5s}.p-dock:hover{opacity:1}.container{width:100vw;height:100vh;background-color:#f0f0f0;overflow:hidden;position:relative}.draggable{position:absolute;top:0;left:0;user-select:none;transform-origin:center}.container[data-v-dd05ade4]{width:auto;height:auto}.focus-all-btn[data-v-dd05ade4]{font-weight:700}
|