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

5
node_modules/buetify/lib/components/navbar/BNavbar.d.ts generated vendored Executable file
View File

@@ -0,0 +1,5 @@
import './navbar.sass';
declare const _default: import("vue").FunctionalComponent<{
tag?: string | undefined;
}, {}>;
export default _default;

4
node_modules/buetify/lib/components/navbar/BNavbar.js generated vendored Executable file
View File

@@ -0,0 +1,4 @@
import "../../../src/components/navbar/navbar.sass";
import { getSimpleFunctionalComponent } from '../../utils/getSimpleFunctionalComponent';
export default getSimpleFunctionalComponent('navbar', 'nav');
//# sourceMappingURL=BNavbar.js.map

1
node_modules/buetify/lib/components/navbar/BNavbar.js.map generated vendored Executable file
View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../../src/components/navbar/BNavbar.ts"],"names":[],"mappings":"AAAA,OAAO,4CAAP;AACA,SAAS,4BAAT,QAA6C,0CAA7C;AAEA,eAAe,4BAA4B,CAAC,QAAD,EAAW,KAAX,CAA3C","sourcesContent":["import './navbar.sass';\nimport { getSimpleFunctionalComponent } from '../../utils/getSimpleFunctionalComponent';\n\nexport default getSimpleFunctionalComponent('navbar', 'nav');\n"],"sourceRoot":"","file":"BNavbar.js"}

View File

@@ -0,0 +1,4 @@
declare const _default: import("vue").FunctionalComponent<{
tag?: string | undefined;
}, {}>;
export default _default;

3
node_modules/buetify/lib/components/navbar/BNavbarBrand.js generated vendored Executable file
View File

@@ -0,0 +1,3 @@
import { getSimpleFunctionalComponent } from '../../utils/getSimpleFunctionalComponent';
export default getSimpleFunctionalComponent('navbar-brand');
//# sourceMappingURL=BNavbarBrand.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../../src/components/navbar/BNavbarBrand.ts"],"names":[],"mappings":"AAAA,SAAS,4BAAT,QAA6C,0CAA7C;AAEA,eAAe,4BAA4B,CAAC,cAAD,CAA3C","sourcesContent":["import { getSimpleFunctionalComponent } from '../../utils/getSimpleFunctionalComponent';\n\nexport default getSimpleFunctionalComponent('navbar-brand');\n"],"sourceRoot":"","file":"BNavbarBrand.js"}

View File

@@ -0,0 +1,7 @@
export interface BNavbarBurgerProps {
tag?: string;
isActive?: boolean;
}
export default function BNavbarBurger(props: BNavbarBurgerProps): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>;

14
node_modules/buetify/lib/components/navbar/BNavbarBurger.js generated vendored Executable file
View File

@@ -0,0 +1,14 @@
import { makeBy } from 'fp-ts/lib/Array';
import { h } from 'vue';
const hamburgerLines = makeBy(3, () => h('span', {
'aria-hidden': true
}));
export default function BNavbarBurger(props) {
return h(props.tag || 'button', {
class: ['b-navbar-burger', 'navbar-burger', {
'is-active': !!props.isActive
}],
'aria-expanded': !!props.isActive
}, hamburgerLines);
}
//# sourceMappingURL=BNavbarBurger.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../../src/components/navbar/BNavbarBurger.ts"],"names":[],"mappings":"AAAA,SAAS,MAAT,QAAuB,iBAAvB;AACA,SAAS,CAAT,QAAkB,KAAlB;AAOA,MAAM,cAAc,GAAG,MAAM,CAAC,CAAD,EAAI,MAAM,CAAC,CAAC,MAAD,EAAS;AAAE,iBAAe;AAAjB,CAAT,CAAX,CAA7B;AAEA,eAAc,SAAU,aAAV,CAAwB,KAAxB,EAAiD;AAC7D,SAAO,CAAC,CACN,KAAK,CAAC,GAAN,IAAa,QADP,EAEN;AACE,IAAA,KAAK,EAAE,CAAC,iBAAD,EAAoB,eAApB,EAAqC;AAAE,mBAAa,CAAC,CAAC,KAAK,CAAC;AAAvB,KAArC,CADT;AAEE,qBAAiB,CAAC,CAAC,KAAK,CAAC;AAF3B,GAFM,EAMN,cANM,CAAR;AAQD","sourcesContent":["import { makeBy } from 'fp-ts/lib/Array';\nimport { h } from 'vue';\n\nexport interface BNavbarBurgerProps {\n tag?: string;\n isActive?: boolean;\n}\n\nconst hamburgerLines = makeBy(3, () => h('span', { 'aria-hidden': true }));\n\nexport default function BNavbarBurger(props: BNavbarBurgerProps) {\n return h(\n props.tag || 'button',\n {\n class: ['b-navbar-burger', 'navbar-burger', { 'is-active': !!props.isActive }],\n 'aria-expanded': !!props.isActive\n },\n hamburgerLines\n );\n}\n"],"sourceRoot":"","file":"BNavbarBurger.js"}

4
node_modules/buetify/lib/components/navbar/BNavbarEnd.d.ts generated vendored Executable file
View File

@@ -0,0 +1,4 @@
declare const _default: import("vue").FunctionalComponent<{
tag?: string | undefined;
}, {}>;
export default _default;

3
node_modules/buetify/lib/components/navbar/BNavbarEnd.js generated vendored Executable file
View File

@@ -0,0 +1,3 @@
import { getSimpleFunctionalComponent } from '../../utils/getSimpleFunctionalComponent';
export default getSimpleFunctionalComponent('navbar-end');
//# sourceMappingURL=BNavbarEnd.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../../src/components/navbar/BNavbarEnd.ts"],"names":[],"mappings":"AAAA,SAAS,4BAAT,QAA6C,0CAA7C;AAEA,eAAe,4BAA4B,CAAC,YAAD,CAA3C","sourcesContent":["import { getSimpleFunctionalComponent } from '../../utils/getSimpleFunctionalComponent';\n\nexport default getSimpleFunctionalComponent('navbar-end');\n"],"sourceRoot":"","file":"BNavbarEnd.js"}

View File

@@ -0,0 +1,4 @@
declare const _default: import("vue").FunctionalComponent<{
tag?: string | undefined;
}, {}>;
export default _default;

3
node_modules/buetify/lib/components/navbar/BNavbarItem.js generated vendored Executable file
View File

@@ -0,0 +1,3 @@
import { getSimpleFunctionalComponent } from '../../utils/getSimpleFunctionalComponent';
export default getSimpleFunctionalComponent('navbar-item', 'a');
//# sourceMappingURL=BNavbarItem.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../../src/components/navbar/BNavbarItem.ts"],"names":[],"mappings":"AAAA,SAAS,4BAAT,QAA6C,0CAA7C;AAEA,eAAe,4BAA4B,CAAC,aAAD,EAAgB,GAAhB,CAA3C","sourcesContent":["import { getSimpleFunctionalComponent } from '../../utils/getSimpleFunctionalComponent';\n\nexport default getSimpleFunctionalComponent('navbar-item', 'a');\n"],"sourceRoot":"","file":"BNavbarItem.js"}

13
node_modules/buetify/lib/components/navbar/BNavbarMenu.d.ts generated vendored Executable file
View File

@@ -0,0 +1,13 @@
declare const _default: import("vue").DefineComponent<{
isActive: {
type: BooleanConstructor;
default: boolean;
};
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
isActive: boolean;
} & {}>, {
isActive: boolean;
}>;
export default _default;

22
node_modules/buetify/lib/components/navbar/BNavbarMenu.js generated vendored Executable file
View File

@@ -0,0 +1,22 @@
import { h, defineComponent } from 'vue';
export default defineComponent({
name: 'b-navbar-menu',
props: {
isActive: {
type: Boolean,
default: false
}
},
setup(props, {
slots
}) {
return () => h('div', {
class: ['navbar-menu', {
isActive: props.isActive
}]
}, slots.default && slots.default());
}
});
//# sourceMappingURL=BNavbarMenu.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../../src/components/navbar/BNavbarMenu.ts"],"names":[],"mappings":"AAAA,SAAS,CAAT,EAAY,eAAZ,QAAmC,KAAnC;AAEA,eAAe,eAAe,CAAC;AAC7B,EAAA,IAAI,EAAE,eADuB;AAE7B,EAAA,KAAK,EAAE;AACL,IAAA,QAAQ,EAAE;AACR,MAAA,IAAI,EAAE,OADE;AAER,MAAA,OAAO,EAAE;AAFD;AADL,GAFsB;;AAQ7B,EAAA,KAAK,CAAC,KAAD,EAAQ;AAAE,IAAA;AAAF,GAAR,EAAiB;AACpB,WAAO,MACL,CAAC,CACC,KADD,EAEC;AACE,MAAA,KAAK,EAAE,CAAC,aAAD,EAAgB;AAAE,QAAA,QAAQ,EAAE,KAAK,CAAC;AAAlB,OAAhB;AADT,KAFD,EAKC,KAAK,CAAC,OAAN,IAAiB,KAAK,CAAC,OAAN,EALlB,CADH;AAQD;;AAjB4B,CAAD,CAA9B","sourcesContent":["import { h, defineComponent } from 'vue';\n\nexport default defineComponent({\n name: 'b-navbar-menu',\n props: {\n isActive: {\n type: Boolean,\n default: false\n }\n },\n setup(props, { slots }) {\n return () =>\n h(\n 'div',\n {\n class: ['navbar-menu', { isActive: props.isActive }]\n },\n slots.default && slots.default()\n );\n }\n});\n"],"sourceRoot":"","file":"BNavbarMenu.js"}

View File

@@ -0,0 +1,4 @@
declare const _default: import("vue").FunctionalComponent<{
tag?: string | undefined;
}, {}>;
export default _default;

3
node_modules/buetify/lib/components/navbar/BNavbarStart.js generated vendored Executable file
View File

@@ -0,0 +1,3 @@
import { getSimpleFunctionalComponent } from '../../utils/getSimpleFunctionalComponent';
export default getSimpleFunctionalComponent('navbar-start');
//# sourceMappingURL=BNavbarStart.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../../src/components/navbar/BNavbarStart.ts"],"names":[],"mappings":"AAAA,SAAS,4BAAT,QAA6C,0CAA7C;AAEA,eAAe,4BAA4B,CAAC,cAAD,CAA3C","sourcesContent":["import { getSimpleFunctionalComponent } from '../../utils/getSimpleFunctionalComponent';\n\nexport default getSimpleFunctionalComponent('navbar-start');\n"],"sourceRoot":"","file":"BNavbarStart.js"}

8
node_modules/buetify/lib/components/navbar/index.d.ts generated vendored Executable file
View File

@@ -0,0 +1,8 @@
import BNavbar from './BNavbar';
import BNavbarBrand from './BNavbarBrand';
import BNavbarBurger from './BNavbarBurger';
import BNavbarEnd from './BNavbarEnd';
import BNavbarItem from './BNavbarItem';
import BNavbarMenu from './BNavbarMenu';
import BNavbarStart from './BNavbarStart';
export { BNavbar, BNavbarBrand, BNavbarBurger, BNavbarEnd, BNavbarItem, BNavbarMenu, BNavbarStart };

9
node_modules/buetify/lib/components/navbar/index.js generated vendored Executable file
View File

@@ -0,0 +1,9 @@
import BNavbar from './BNavbar';
import BNavbarBrand from './BNavbarBrand';
import BNavbarBurger from './BNavbarBurger';
import BNavbarEnd from './BNavbarEnd';
import BNavbarItem from './BNavbarItem';
import BNavbarMenu from './BNavbarMenu';
import BNavbarStart from './BNavbarStart';
export { BNavbar, BNavbarBrand, BNavbarBurger, BNavbarEnd, BNavbarItem, BNavbarMenu, BNavbarStart };
//# sourceMappingURL=index.js.map

1
node_modules/buetify/lib/components/navbar/index.js.map generated vendored Executable file
View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../../src/components/navbar/index.ts"],"names":[],"mappings":"AAAA,OAAO,OAAP,MAAoB,WAApB;AACA,OAAO,YAAP,MAAyB,gBAAzB;AACA,OAAO,aAAP,MAA0B,iBAA1B;AACA,OAAO,UAAP,MAAuB,cAAvB;AACA,OAAO,WAAP,MAAwB,eAAxB;AACA,OAAO,WAAP,MAAwB,eAAxB;AACA,OAAO,YAAP,MAAyB,gBAAzB;AAEA,SAAS,OAAT,EAAkB,YAAlB,EAAgC,aAAhC,EAA+C,UAA/C,EAA2D,WAA3D,EAAwE,WAAxE,EAAqF,YAArF","sourcesContent":["import BNavbar from './BNavbar';\nimport BNavbarBrand from './BNavbarBrand';\nimport BNavbarBurger from './BNavbarBurger';\nimport BNavbarEnd from './BNavbarEnd';\nimport BNavbarItem from './BNavbarItem';\nimport BNavbarMenu from './BNavbarMenu';\nimport BNavbarStart from './BNavbarStart';\n\nexport { BNavbar, BNavbarBrand, BNavbarBurger, BNavbarEnd, BNavbarItem, BNavbarMenu, BNavbarStart };\n"],"sourceRoot":"","file":"index.js"}