Skip to content

Commit b301b91

Browse files
committed
fix(docs): docs should be working again
1 parent e10edbf commit b301b91

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+20833
-31
lines changed

apps/docs/docs/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
home: true
3+
heroImage: /logo.png
4+
heroAlt: Logo image
5+
heroText: BootstrapVue 3
6+
tagline: Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
7+
actions:
8+
- text: Get Started
9+
link: /getting-started/
10+
features:
11+
- title: Simplicity First
12+
details: Minimal setup with markdown-centered project structure helps you focus on writing.
13+
- title: Vue-Powered
14+
details: Enjoy the dev experience of Vue + webpack, use Vue components in markdown, and develop custom themes with Vue.
15+
- title: Performant
16+
details: VitePress generates pre-rendered static HTML for each page, and runs as an SPA once a page is loaded.
17+
footer: MIT Licensed | Copyright © 2021-present Carlos Bonadeo
18+
---
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "@bootstrap-vue-3/collapse",
3+
"version": "Alpha",
4+
"meta": {
5+
"title": "Accordion",
6+
"description": "Build vertically collapsing accordions in combination with <b-collapse> component.",
7+
"components": [
8+
{
9+
"component": "BAccordion",
10+
"props": [
11+
{
12+
"prop": "flush",
13+
"description": "remove the default background-color, some borders, and some rounded corners to render accordions edge-to-edge with their parent container"
14+
},
15+
{
16+
"prop": "free",
17+
"description": "accordion items stay open when another item is opened"
18+
},
19+
{
20+
"prop": "id",
21+
"description": "The ID to be injected to accordian items and used to in b-collaspe for state managment"
22+
}
23+
],
24+
"emits": []
25+
}
26+
]
27+
}
28+
}
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"name": "@bootstrap-vue-3/Alert",
3+
"version": "Alpha",
4+
"meta": {
5+
"title": "Alert",
6+
"description": "Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.",
7+
"components": [
8+
{
9+
"component": "BAlert",
10+
"props": [
11+
{
12+
"prop": "dismissLabel",
13+
"description": "Value for the 'aria-label' attribute on the dismiss button"
14+
},
15+
{
16+
"prop": "dismissible",
17+
"description": "When set, enables the dismiss close button"
18+
},
19+
{
20+
"prop": "fade",
21+
"description": "When set to true, enables the fade animation/transition on the component"
22+
},
23+
{
24+
"prop": "show",
25+
"description": "When set, shows the alert. Do not use together with v-model"
26+
},
27+
{
28+
"prop": "variant",
29+
"description": "Applies one of the Bootstrap theme color variants to the component"
30+
}
31+
],
32+
"emits": [
33+
{
34+
"emit": "dismissed",
35+
"description": "Alert dismissed either via the dismiss close button or when the dismiss countdown has expired"
36+
},
37+
{
38+
"emit": "dismiss-count-down",
39+
"description": "Content to place in the alert",
40+
"args": [
41+
{
42+
"arg": "dismissCountDown",
43+
"description": " Time remaining to dismissed"
44+
}
45+
]
46+
},
47+
{
48+
"emit": "update:modelValue",
49+
"description": "Standard event to update the v-model",
50+
"args": []
51+
}
52+
]
53+
}
54+
]
55+
}
56+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "@bootstrap-vue-3/Badge",
3+
"version": "Alpha",
4+
"meta": {
5+
"title": "Badge",
6+
"description": "Badges, for counting and labeling components",
7+
"components": [
8+
{
9+
"component": "BBadge",
10+
"props": [
11+
{
12+
"prop": "dotIndicator",
13+
"description": "Indication position and dot styling applied"
14+
},
15+
{
16+
"prop": "textIndicator",
17+
"description": "Indication position applied"
18+
},
19+
{
20+
"prop": "pill",
21+
"description": "When set to 'true', renders the badge in pill style"
22+
},
23+
{
24+
"prop": "variant",
25+
"description": "Applies one of the Bootstrap theme color variants to the component"
26+
},
27+
{
28+
"prop": "tag",
29+
"description": "Specify the HTML tag to render instead of the default tag"
30+
}
31+
],
32+
"emits": []
33+
}
34+
]
35+
}
36+
}

0 commit comments

Comments
 (0)