@bluepic/embed 0.4.0-next.204 → 0.4.0-next.206
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bluepic-embed.iife.js +136 -136
- package/dist/bluepic-embed.umd.js +136 -136
- package/dist/components/BxTabs.vue.d.ts +7 -0
- package/dist/main.cjs +78 -78
- package/dist/main.mjs +19542 -19516
- package/dist/{markdown-it-BEy9XzVB.js → markdown-it-5-ieF6Bh.js} +1183 -1174
- package/dist/markdown-it-CLB5Jta6.cjs +16 -0
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/dist/markdown-it-csfK_Q_K.cjs +0 -16
|
@@ -4,6 +4,13 @@ type __VLS_Props = {
|
|
|
4
4
|
name: string;
|
|
5
5
|
label?: string;
|
|
6
6
|
icon?: () => VNode[] | VNode;
|
|
7
|
+
/**
|
|
8
|
+
* Rendered AFTER the label — a count, a status dot. Separate from `icon`
|
|
9
|
+
* because it trails the name rather than introducing it, and because a
|
|
10
|
+
* tab that carries a number wants that number to read as part of the tab
|
|
11
|
+
* rather than as a second word in its name.
|
|
12
|
+
*/
|
|
13
|
+
suffix?: () => VNode[] | VNode;
|
|
7
14
|
}[];
|
|
8
15
|
secondary?: boolean;
|
|
9
16
|
size?: 'tiny' | 'small' | 'medium' | 'large';
|