init component

This commit is contained in:
Robin COuret
2026-02-16 17:28:37 +01:00
parent 460c7a25e0
commit e0e50af706
4557 changed files with 666911 additions and 8 deletions

1
node_modules/buetify/lib/composables/disable/index.d.ts generated vendored Executable file
View File

@@ -0,0 +1 @@
export * from './useDisable';

2
node_modules/buetify/lib/composables/disable/index.js generated vendored Executable file
View File

@@ -0,0 +1,2 @@
export * from './useDisable';
//# sourceMappingURL=index.js.map

1
node_modules/buetify/lib/composables/disable/index.js.map generated vendored Executable file
View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../../src/composables/disable/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAd","sourcesContent":["export * from './useDisable';\n"],"sourceRoot":"","file":"index.js"}

20
node_modules/buetify/lib/composables/disable/useDisable.d.ts generated vendored Executable file
View File

@@ -0,0 +1,20 @@
import { Ref, PropType, ExtractPropTypes } from 'vue';
export declare const UseDisablePropsDefinition: {
isDisabled: {
type: PropType<boolean>;
required: boolean;
default: boolean;
};
isReadonly: {
type: PropType<boolean>;
required: boolean;
default: boolean;
};
disableIfReadonly: {
type: PropType<boolean>;
required: boolean;
default: boolean;
};
};
export declare type UseDisableProps = ExtractPropTypes<typeof UseDisablePropsDefinition>;
export declare function useDisable(props: UseDisableProps): Ref<boolean>;

22
node_modules/buetify/lib/composables/disable/useDisable.js generated vendored Executable file
View File

@@ -0,0 +1,22 @@
import { computed } from 'vue';
export const UseDisablePropsDefinition = {
isDisabled: {
type: Boolean,
required: false,
default: false
},
isReadonly: {
type: Boolean,
required: false,
default: false
},
disableIfReadonly: {
type: Boolean,
required: false,
default: false
}
};
export function useDisable(props) {
return computed(() => props.isDisabled || props.isReadonly && props.disableIfReadonly);
}
//# sourceMappingURL=useDisable.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../../src/composables/disable/useDisable.ts"],"names":[],"mappings":"AAAA,SAAc,QAAd,QAA0D,KAA1D;AAEA,OAAO,MAAM,yBAAyB,GAAG;AACvC,EAAA,UAAU,EAAE;AACV,IAAA,IAAI,EAAE,OADI;AAEV,IAAA,QAAQ,EAAE,KAFA;AAGV,IAAA,OAAO,EAAE;AAHC,GAD2B;AAMvC,EAAA,UAAU,EAAE;AACV,IAAA,IAAI,EAAE,OADI;AAEV,IAAA,QAAQ,EAAE,KAFA;AAGV,IAAA,OAAO,EAAE;AAHC,GAN2B;AAWvC,EAAA,iBAAiB,EAAE;AACjB,IAAA,IAAI,EAAE,OADW;AAEjB,IAAA,QAAQ,EAAE,KAFO;AAGjB,IAAA,OAAO,EAAE;AAHQ;AAXoB,CAAlC;AAoBP,OAAM,SAAU,UAAV,CAAqB,KAArB,EAA2C;AAC/C,SAAO,QAAQ,CAAC,MAAM,KAAK,CAAC,UAAN,IAAqB,KAAK,CAAC,UAAN,IAAoB,KAAK,CAAC,iBAAtD,CAAf;AACD","sourcesContent":["import { Ref, computed, PropType, ExtractPropTypes } from 'vue';\n\nexport const UseDisablePropsDefinition = {\n isDisabled: {\n type: Boolean as PropType<boolean>,\n required: false,\n default: false\n },\n isReadonly: {\n type: Boolean as PropType<boolean>,\n required: false,\n default: false\n },\n disableIfReadonly: {\n type: Boolean as PropType<boolean>,\n required: false,\n default: false\n }\n};\n\nexport type UseDisableProps = ExtractPropTypes<typeof UseDisablePropsDefinition>;\n\nexport function useDisable(props: UseDisableProps): Ref<boolean> {\n return computed(() => props.isDisabled || (props.isReadonly && props.disableIfReadonly));\n}\n"],"sourceRoot":"","file":"useDisable.js"}