@javaguns/flow-ui
Version:
``` <template> <a-spin :spinning="loading"> <FlowDesigner ref="flowDesigner" top="50px"> </FlowDesigner> </a-spin> </template> <script lang="ts" setup> import { ref, provide, onMounted } from 'vue'; import { FlowDesigner, LoadingKey } from '@j
81 lines (80 loc) • 1.4 kB
CSS
.guns-space {
display: flex;
gap: 16px;
transition: all 0.2s ease-in-out;
}
.guns-space.inline {
display: inline-flex;
}
.guns-space.dir-horizontal-reverse {
flex-direction: row-reverse;
}
.guns-space.dir-vertical {
flex-direction: column;
}
.guns-space.dir-vertical-reverse {
flex-direction: column-reverse;
}
.guns-space.align-start {
align-items: flex-start;
}
.guns-space.align-center {
align-items: center;
}
.guns-space.align-end {
align-items: flex-end;
}
.guns-space.align-baseline {
align-items: baseline;
}
.guns-space.align.stretch {
align-items: stretch;
}
.guns-space.justify-start {
justify-content: flex-start;
}
.guns-space.justify-center {
justify-content: center;
}
.guns-space.justify-end {
justify-content: flex-end;
}
.guns-space.justify-between {
justify-content: space-between;
}
.guns-space.justify-around {
justify-content: space-around;
}
.guns-space.justify-evenly {
justify-content: space-evenly;
}
.guns-space.wrap {
flex-wrap: wrap;
}
.guns-space.wrap-reverse {
flex-wrap: wrap-reverse;
}
.guns-space.overflow-auto {
overflow: auto;
}
.guns-space.overflow-hidden {
overflow: hidden;
}
.guns-space.overflow-scroll {
overflow: scroll;
}
.guns-space.overflow.clip {
overflow: clip;
}
.guns-space.size-ss {
gap: 4px;
}
.guns-space.size-s {
gap: 8px;
}
.guns-space.size-m {
gap: 12px;
}
.guns-space.size-xl {
gap: 24px;
}