OrderList & PickList updates
parent
d382e6c960
commit
1de2720aed
|
@ -3147,7 +3147,8 @@ export default {
|
||||||
class: 'flex flex-col justify-center p-5'
|
class: 'flex flex-col justify-center p-5'
|
||||||
},
|
},
|
||||||
moveupbutton: {
|
moveupbutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3159,13 +3160,15 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
movetopbutton: {
|
movetopbutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3177,13 +3180,15 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
movedownbutton: {
|
movedownbutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3195,13 +3200,15 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
movebottombutton: {
|
movebottombutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3213,7 +3220,8 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
|
@ -3255,7 +3263,8 @@ export default {
|
||||||
class: 'flex flex-col justify-center p-5'
|
class: 'flex flex-col justify-center p-5'
|
||||||
},
|
},
|
||||||
sourcemoveupbutton: {
|
sourcemoveupbutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3267,13 +3276,15 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
sourcemovetopbutton: {
|
sourcemovetopbutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3285,13 +3296,15 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
sourcemovedownbutton: {
|
sourcemovedownbutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3303,13 +3316,15 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
sourcemovebottombutton: {
|
sourcemovebottombutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3321,7 +3336,8 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
|
@ -3358,7 +3374,8 @@ export default {
|
||||||
class: 'flex flex-col justify-center p-5'
|
class: 'flex flex-col justify-center p-5'
|
||||||
},
|
},
|
||||||
movetotargetbutton: {
|
movetotargetbutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3370,13 +3387,15 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
movealltotargetbutton: {
|
movealltotargetbutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3388,13 +3407,15 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
movetosourcebutton: {
|
movetosourcebutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3406,13 +3427,15 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
movealltosourcebutton: {
|
movealltosourcebutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3424,7 +3447,8 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
|
@ -3433,7 +3457,8 @@ export default {
|
||||||
class: 'flex flex-col justify-center p-5'
|
class: 'flex flex-col justify-center p-5'
|
||||||
},
|
},
|
||||||
targetmoveupbutton: {
|
targetmoveupbutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3445,13 +3470,15 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
targetmovetopbutton: {
|
targetmovetopbutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3463,13 +3490,15 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
targetmovedownbutton: {
|
targetmovedownbutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3481,13 +3510,15 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
targetmovebottombutton: {
|
targetmovebottombutton: {
|
||||||
root: ({ context }) => ({
|
root: ({ context }) => {
|
||||||
|
return {
|
||||||
class: [
|
class: [
|
||||||
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
'relative inline-flex cursor-pointer select-none items-center align-bottom text-center overflow-hidden m-0', // button component
|
||||||
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
'text-white bg-blue-500 border border-blue-500 rounded-md',
|
||||||
|
@ -3499,7 +3530,8 @@ export default {
|
||||||
'cursor-default pointer-events-none opacity-60': context.disabled
|
'cursor-default pointer-events-none opacity-60': context.disabled
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
};
|
||||||
|
},
|
||||||
label: {
|
label: {
|
||||||
class: 'flex-initial w-0'
|
class: 'flex-initial w-0'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue