Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
50
VApp/node_modules/vuetify/lib/composables/variant.mjs
generated
vendored
Normal file
50
VApp/node_modules/vuetify/lib/composables/variant.mjs
generated
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
import { createVNode as _createVNode, Fragment as _Fragment } from "vue";
|
||||
// Composables
|
||||
import { useColor } from "./color.mjs"; // Utilities
|
||||
import { computed, unref } from 'vue';
|
||||
import { getCurrentInstanceName, propsFactory } from "../util/index.mjs"; // Types
|
||||
export const allowedVariants = ['elevated', 'flat', 'tonal', 'outlined', 'text', 'plain'];
|
||||
export function genOverlays(isClickable, name) {
|
||||
return _createVNode(_Fragment, null, [isClickable && _createVNode("span", {
|
||||
"key": "overlay",
|
||||
"class": `${name}__overlay`
|
||||
}, null), _createVNode("span", {
|
||||
"key": "underlay",
|
||||
"class": `${name}__underlay`
|
||||
}, null)]);
|
||||
}
|
||||
export const makeVariantProps = propsFactory({
|
||||
color: String,
|
||||
variant: {
|
||||
type: String,
|
||||
default: 'elevated',
|
||||
validator: v => allowedVariants.includes(v)
|
||||
}
|
||||
}, 'variant');
|
||||
export function useVariant(props) {
|
||||
let name = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : getCurrentInstanceName();
|
||||
const variantClasses = computed(() => {
|
||||
const {
|
||||
variant
|
||||
} = unref(props);
|
||||
return `${name}--variant-${variant}`;
|
||||
});
|
||||
const {
|
||||
colorClasses,
|
||||
colorStyles
|
||||
} = useColor(computed(() => {
|
||||
const {
|
||||
variant,
|
||||
color
|
||||
} = unref(props);
|
||||
return {
|
||||
[['elevated', 'flat'].includes(variant) ? 'background' : 'text']: color
|
||||
};
|
||||
}));
|
||||
return {
|
||||
colorClasses,
|
||||
colorStyles,
|
||||
variantClasses
|
||||
};
|
||||
}
|
||||
//# sourceMappingURL=variant.mjs.map
|
Reference in New Issue
Block a user