@codemonster-ru/vueforge-core 1.7.0 → 1.8.0
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/README.md +26 -19
- package/dist/components/breadcrumbs/VfBreadcrumbs.vue.d.ts +13 -0
- package/dist/components/breadcrumbs/VfBreadcrumbs.vue.d.ts.map +1 -0
- package/dist/components/breadcrumbs/index.d.ts +2 -0
- package/dist/components/breadcrumbs/index.d.ts.map +1 -0
- package/dist/components/dialog/VfDialog.vue.d.ts.map +1 -1
- package/dist/components/drawer/VfDrawer.vue.d.ts +2 -0
- package/dist/components/drawer/VfDrawer.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +4 -3
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/link/VfLink.vue.d.ts +4 -4
- package/dist/components/link/VfLink.vue.d.ts.map +1 -1
- package/dist/components/menu-bar/VfMenuBar.vue.d.ts +24 -0
- package/dist/components/menu-bar/VfMenuBar.vue.d.ts.map +1 -0
- package/dist/components/menu-bar/VfMenuBarItemNode.vue.d.ts +18 -0
- package/dist/components/menu-bar/VfMenuBarItemNode.vue.d.ts.map +1 -0
- package/dist/components/menu-bar/index.d.ts +2 -0
- package/dist/components/menu-bar/index.d.ts.map +1 -0
- package/dist/components/nav-menu/VfNavMenu.vue.d.ts +1 -1
- package/dist/components/nav-menu/VfNavMenu.vue.d.ts.map +1 -1
- package/dist/components/nav-menu/VfNavMenuItemNode.vue.d.ts.map +1 -1
- package/dist/components/select/VfSelect.vue.d.ts +31 -0
- package/dist/components/select/VfSelect.vue.d.ts.map +1 -0
- package/dist/components/select/index.d.ts +2 -0
- package/dist/components/select/index.d.ts.map +1 -0
- package/dist/components/{prose/VfProse.vue.d.ts → table/VfTable.vue.d.ts} +14 -5
- package/dist/components/table/VfTable.vue.d.ts.map +1 -0
- package/dist/components/table/index.d.ts +2 -0
- package/dist/components/table/index.d.ts.map +1 -0
- package/dist/components/table-of-contents/VfTableOfContents.vue.d.ts +5 -18
- package/dist/components/table-of-contents/VfTableOfContents.vue.d.ts.map +1 -1
- package/dist/components/tabs/VfTabs.vue.d.ts +6 -2
- package/dist/components/tabs/VfTabs.vue.d.ts.map +1 -1
- package/dist/components/theme-switch/VfThemeSwitch.vue.d.ts.map +1 -1
- package/dist/components/tooltip/VfTooltip.vue.d.ts.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/providers/VfThemeProvider.vue.d.ts.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/theme/default-preset-source.d.ts +10 -10
- package/dist/theme/default-preset-source.d.ts.map +1 -1
- package/dist/theme/utils.d.ts.map +1 -1
- package/dist/theme-api.js +1 -1
- package/dist/theme.css +26 -18
- package/dist/tokens.css +54 -54
- package/dist/types/components.d.ts +15 -3
- package/dist/types/components.d.ts.map +1 -1
- package/dist/types/theme.d.ts +12 -8
- package/dist/types/theme.d.ts.map +1 -1
- package/dist/{utils-T2JkaeUr.js → utils-BJVEoCfQ.js} +81 -76
- package/dist/vueforge-core.js +1956 -1254
- package/package.json +5 -2
- package/dist/components/heading/VfHeading.vue.d.ts +0 -26
- package/dist/components/heading/VfHeading.vue.d.ts.map +0 -1
- package/dist/components/heading/index.d.ts +0 -2
- package/dist/components/heading/index.d.ts.map +0 -1
- package/dist/components/prose/VfProse.vue.d.ts.map +0 -1
- package/dist/components/prose/index.d.ts +0 -2
- package/dist/components/prose/index.d.ts.map +0 -1
- package/dist/components/text/VfText.vue.d.ts +0 -28
- package/dist/components/text/VfText.vue.d.ts.map +0 -1
- package/dist/components/text/index.d.ts +0 -2
- package/dist/components/text/index.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -125,14 +125,12 @@ This means `vueforge-core` is still the easiest way to consume the default VueFo
|
|
|
125
125
|
|
|
126
126
|
For long-form docs pages, the recommended pattern is:
|
|
127
127
|
|
|
128
|
-
- `VfProse` for content typography
|
|
129
128
|
- `VfTableOfContents` for section navigation
|
|
130
129
|
- `useTableOfContents()` for active-section tracking
|
|
131
130
|
|
|
132
131
|
```vue
|
|
133
132
|
<script setup lang="ts">
|
|
134
133
|
import {
|
|
135
|
-
VfProse,
|
|
136
134
|
VfTableOfContents,
|
|
137
135
|
useTableOfContents,
|
|
138
136
|
} from "@codemonster-ru/vueforge-core";
|
|
@@ -151,15 +149,17 @@ const { activeId } = useTableOfContents({
|
|
|
151
149
|
|
|
152
150
|
<template>
|
|
153
151
|
<aside>
|
|
152
|
+
<p>On This Page</p>
|
|
154
153
|
<VfTableOfContents
|
|
155
|
-
label="On This Page"
|
|
156
154
|
aria-label="Page navigation"
|
|
155
|
+
smooth
|
|
156
|
+
:scroll-offset="96"
|
|
157
157
|
:items="items"
|
|
158
158
|
:active-id="activeId"
|
|
159
159
|
/>
|
|
160
160
|
</aside>
|
|
161
161
|
|
|
162
|
-
<
|
|
162
|
+
<article>
|
|
163
163
|
<h2 id="getting-started">Getting started</h2>
|
|
164
164
|
<p>Intro copy.</p>
|
|
165
165
|
|
|
@@ -168,27 +168,35 @@ const { activeId } = useTableOfContents({
|
|
|
168
168
|
|
|
169
169
|
<h3 id="theme-api">Theme API</h3>
|
|
170
170
|
<p>Customize tokens and theme mode behavior.</p>
|
|
171
|
-
</
|
|
171
|
+
</article>
|
|
172
172
|
</template>
|
|
173
173
|
```
|
|
174
174
|
|
|
175
|
-
|
|
175
|
+
If your page has a sticky header, handle anchor offset in the consuming app with
|
|
176
|
+
`scroll-margin-top` on the target headings:
|
|
176
177
|
|
|
177
|
-
|
|
178
|
+
```css
|
|
179
|
+
.docs-content h2,
|
|
180
|
+
.docs-content h3,
|
|
181
|
+
.docs-content h4 {
|
|
182
|
+
scroll-margin-top: 5rem;
|
|
183
|
+
}
|
|
184
|
+
```
|
|
178
185
|
|
|
179
|
-
|
|
180
|
-
-
|
|
181
|
-
|
|
186
|
+
Use `offset` in `useTableOfContents()` for active-section tracking,
|
|
187
|
+
`scroll-margin-top` for native anchor scrolling, and the optional
|
|
188
|
+
`smooth` / `scrollOffset` props on `VfTableOfContents` when you want the
|
|
189
|
+
component itself to handle anchor scrolling.
|
|
182
190
|
|
|
183
|
-
|
|
184
|
-
<VfHeading as="h1" size="xl">Page Title</VfHeading>
|
|
185
|
-
<VfText tone="muted">Short supporting copy.</VfText>
|
|
191
|
+
## Typography Usage
|
|
186
192
|
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
193
|
+
VueForge typography is now body-first:
|
|
194
|
+
|
|
195
|
+
- application `body` styles define the baseline font family and text rhythm
|
|
196
|
+
- components inherit that baseline and size around it
|
|
197
|
+
- theme tokens remain the source of truth for scale, weights, and semantic text roles
|
|
198
|
+
|
|
199
|
+
Use regular HTML elements in app code and docs content, and rely on tokens when you need CSS-level typography control.
|
|
192
200
|
|
|
193
201
|
## Foundation Usage
|
|
194
202
|
|
|
@@ -238,7 +246,6 @@ npm run test
|
|
|
238
246
|
## Visual Baseline
|
|
239
247
|
|
|
240
248
|
- [Visual Baseline 1.0](./docs/visual-baseline.md)
|
|
241
|
-
- [Typography API](./docs/typography-api.md)
|
|
242
249
|
- [Theme API](./docs/theme-api.md)
|
|
243
250
|
- [Foundation API](./docs/foundation-api.md)
|
|
244
251
|
- [Overlay API](./docs/overlay-api.md)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Component } from 'vue';
|
|
2
|
+
import { VfBreadcrumbItem } from '../../types/components';
|
|
3
|
+
interface VfBreadcrumbsProps {
|
|
4
|
+
items: VfBreadcrumbItem[];
|
|
5
|
+
ariaLabel?: string;
|
|
6
|
+
component?: string | Component;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import('vue').DefineComponent<VfBreadcrumbsProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<VfBreadcrumbsProps> & Readonly<{}>, {
|
|
9
|
+
component: string | Component;
|
|
10
|
+
ariaLabel: string;
|
|
11
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
export default _default;
|
|
13
|
+
//# sourceMappingURL=VfBreadcrumbs.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VfBreadcrumbs.vue.d.ts","sourceRoot":"","sources":["../../../src/components/breadcrumbs/VfBreadcrumbs.vue"],"names":[],"mappings":"AAuHA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAC;AAGrC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAM3D,UAAU,kBAAkB;IAC1B,KAAK,EAAE,gBAAgB,EAAE,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAChC;;eADa,MAAM,GAAG,SAAS;eADlB,MAAM;;AAuKpB,wBAOG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/breadcrumbs/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VfDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/dialog/VfDialog.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VfDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/dialog/VfDialog.vue"],"names":[],"mappings":"AA8RA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAEvD,UAAU,aAAa;IACrB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI,GAAG,KAAK,CAAC;IACjD,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAiFD,iBAAS,KAAK,SAEb;AA2FD,iBAAS,cAAc;WAoJT,OAAO,IAA6B;;wBAfrB,GAAG;6BACE,GAAG;;;YACP,GAAG;;;YACH,GAAG;;;YACJ,GAAG;;;;;;EAgB/B;AAwBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;WAxWX,MAAM;UAFP,OAAO;iBACA,OAAO;UAGd,YAAY;gBACN,MAAM,GAAG,WAAW,GAAG,IAAI,GAAG,KAAK;qBAC9B,OAAO;yBACH,OAAO;mBACb,OAAO;cACZ,OAAO;iBANJ,MAAM;;;OAiXpB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -5,6 +5,7 @@ interface VfDrawerProps {
|
|
|
5
5
|
title?: string;
|
|
6
6
|
size?: VfDialogSize;
|
|
7
7
|
placement?: VfDrawerPlacement;
|
|
8
|
+
rounded?: boolean;
|
|
8
9
|
offsetTop?: string | number;
|
|
9
10
|
bodyPadding?: string | number;
|
|
10
11
|
teleportTo?: string | HTMLElement | null | false;
|
|
@@ -47,6 +48,7 @@ declare const __VLS_component: import('vue').DefineComponent<VfDrawerProps, {},
|
|
|
47
48
|
defaultOpen: boolean;
|
|
48
49
|
size: VfDialogSize;
|
|
49
50
|
placement: VfDrawerPlacement;
|
|
51
|
+
rounded: boolean;
|
|
50
52
|
offsetTop: string | number;
|
|
51
53
|
bodyPadding: string | number;
|
|
52
54
|
teleportTo: string | HTMLElement | null | false;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VfDrawer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/drawer/VfDrawer.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VfDrawer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/drawer/VfDrawer.vue"],"names":[],"mappings":"AAsVA,OAAO,KAAK,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAM1E,UAAU,aAAa;IACrB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,SAAS,CAAC,EAAE,iBAAiB,CAAC;IAC9B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC5B,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,UAAU,CAAC,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI,GAAG,KAAK,CAAC;IACjD,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,gBAAgB,CAAC,EAAE,WAAW,GAAG,IAAI,GAAG,KAAK,CAAC;IAC9C,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAkID,iBAAS,KAAK,SAEb;AAiGD,iBAAS,cAAc;WAyIT,OAAO,IAA6B;;wBAdrB,GAAG;;;YACF,GAAG;;;YACH,GAAG;;;YACJ,GAAG;;;;;;EAgB/B;AA0BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;WA1ZX,MAAM;UAFP,OAAO;iBACA,OAAO;UAEd,YAAY;eACP,iBAAiB;aACnB,OAAO;eACL,MAAM,GAAG,MAAM;iBACb,MAAM,GAAG,MAAM;gBAChB,MAAM,GAAG,WAAW,GAAG,IAAI,GAAG,KAAK;qBAC9B,OAAO;sBACN,WAAW,GAAG,IAAI,GAAG,KAAK;yBACvB,OAAO;mBACb,OAAO;cACZ,OAAO;;;OAwZlB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { VfAccordion } from './accordion';
|
|
2
2
|
export { VfAlert } from './alert';
|
|
3
3
|
export { VfBadge } from './badge';
|
|
4
|
+
export { VfBreadcrumbs } from './breadcrumbs';
|
|
4
5
|
export { VfButton } from './button';
|
|
5
6
|
export { VfCard } from './card';
|
|
6
7
|
export { VfCheckbox } from './checkbox';
|
|
@@ -8,18 +9,18 @@ export { VfDrawer } from './drawer';
|
|
|
8
9
|
export { VfDialog } from './dialog';
|
|
9
10
|
export { VfDivider } from './divider';
|
|
10
11
|
export { VfDropdown } from './dropdown';
|
|
11
|
-
export { VfHeading } from './heading';
|
|
12
12
|
export { VfIconButton } from './icon-button';
|
|
13
13
|
export { VfInput } from './input';
|
|
14
14
|
export { VfLink } from './link';
|
|
15
|
+
export { VfMenuBar } from './menu-bar';
|
|
15
16
|
export { VfNavMenu } from './nav-menu';
|
|
16
17
|
export { VfPanel } from './panel';
|
|
17
18
|
export { VfPopover } from './popover';
|
|
18
|
-
export { VfProse } from './prose';
|
|
19
19
|
export { VfRadio } from './radio';
|
|
20
|
+
export { VfSelect } from './select';
|
|
20
21
|
export { VfSwitch } from './switch';
|
|
22
|
+
export { VfTable } from './table';
|
|
21
23
|
export { VfTableOfContents } from './table-of-contents';
|
|
22
|
-
export { VfText } from './text';
|
|
23
24
|
export { VfThemeSwitch } from './theme-switch';
|
|
24
25
|
export { VfTag } from './tag';
|
|
25
26
|
export { VfTabs } from './tabs';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AACpC,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACxC,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AACpC,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAC7C,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AACvC,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AACtC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AACpC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AAC9B,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Component } from 'vue';
|
|
2
|
-
import { VfLinkTone } from '../../types/components';
|
|
2
|
+
import { VfLinkTone, VfLinkUnderline } from '../../types/components';
|
|
3
3
|
interface VfLinkProps {
|
|
4
4
|
href?: string;
|
|
5
5
|
to?: string | Record<string, unknown>;
|
|
6
6
|
target?: string;
|
|
7
7
|
rel?: string;
|
|
8
|
-
underline?:
|
|
8
|
+
underline?: VfLinkUnderline;
|
|
9
9
|
tone?: VfLinkTone;
|
|
10
10
|
component?: string | Component;
|
|
11
11
|
}
|
|
@@ -22,9 +22,9 @@ declare const __VLS_component: import('vue').DefineComponent<VfLinkProps, {}, {}
|
|
|
22
22
|
component: string | Component;
|
|
23
23
|
target: string;
|
|
24
24
|
tone: VfLinkTone;
|
|
25
|
-
underline: boolean;
|
|
26
|
-
to: string | Record<string, unknown>;
|
|
27
25
|
href: string;
|
|
26
|
+
to: string | Record<string, unknown>;
|
|
27
|
+
underline: VfLinkUnderline;
|
|
28
28
|
rel: string;
|
|
29
29
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
30
30
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VfLink.vue.d.ts","sourceRoot":"","sources":["../../../src/components/link/VfLink.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VfLink.vue.d.ts","sourceRoot":"","sources":["../../../src/components/link/VfLink.vue"],"names":[],"mappings":"AAwFA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAC;AAErC,OAAO,KAAK,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAMtE,UAAU,WAAW;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACtC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,eAAe,CAAC;IAC5B,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAChC;AAyED,iBAAS,cAAc;WA8BT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;eAzHP,MAAM,GAAG,SAAS;YAJrB,MAAM;UAGR,UAAU;UALV,MAAM;QACR,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;eAGzB,eAAe;SADrB,MAAM;6EAmIZ,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { VfNavMenuItem } from '../../types/components';
|
|
2
|
+
interface VfMenuBarProps {
|
|
3
|
+
items: VfNavMenuItem[];
|
|
4
|
+
modelValue?: string;
|
|
5
|
+
defaultValue?: string;
|
|
6
|
+
ariaLabel?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import('vue').DefineComponent<VfMenuBarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
change: (value: string) => any;
|
|
10
|
+
select: (item: VfNavMenuItem) => any;
|
|
11
|
+
"update:modelValue": (value: string) => any;
|
|
12
|
+
}, string, import('vue').PublicProps, Readonly<VfMenuBarProps> & Readonly<{
|
|
13
|
+
onChange?: ((value: string) => any) | undefined;
|
|
14
|
+
onSelect?: ((item: VfNavMenuItem) => any) | undefined;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
ariaLabel: string;
|
|
18
|
+
modelValue: string;
|
|
19
|
+
defaultValue: string;
|
|
20
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
21
|
+
rootRef: HTMLElement;
|
|
22
|
+
}, HTMLElement>;
|
|
23
|
+
export default _default;
|
|
24
|
+
//# sourceMappingURL=VfMenuBar.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VfMenuBar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/menu-bar/VfMenuBar.vue"],"names":[],"mappings":"AAsIA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAExD,UAAU,cAAc;IACtB,KAAK,EAAE,aAAa,EAAE,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;;;;;;;;;;eADa,MAAM;gBAFL,MAAM;kBACJ,MAAM;;;;AAmMvB,wBAUG"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { VfNavMenuItem } from '../../types/components';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
item: VfNavMenuItem;
|
|
4
|
+
depth: number;
|
|
5
|
+
parentPath: string[];
|
|
6
|
+
activeValue?: string;
|
|
7
|
+
openPath: string[];
|
|
8
|
+
hoverEnabled?: boolean;
|
|
9
|
+
};
|
|
10
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
+
select: (item: VfNavMenuItem) => any;
|
|
12
|
+
openPathChange: (path: string[]) => any;
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
14
|
+
onSelect?: ((item: VfNavMenuItem) => any) | undefined;
|
|
15
|
+
onOpenPathChange?: ((path: string[]) => any) | undefined;
|
|
16
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLIElement>;
|
|
17
|
+
export default _default;
|
|
18
|
+
//# sourceMappingURL=VfMenuBarItemNode.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VfMenuBarItemNode.vue.d.ts","sourceRoot":"","sources":["../../../src/components/menu-bar/VfMenuBarItemNode.vue"],"names":[],"mappings":"AAqSA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAMxD,KAAK,WAAW,GAAG;IACjB,IAAI,EAAE,aAAa,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB,CAAC;;;;;;;;AAwbF,wBAQG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/menu-bar/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -15,9 +15,9 @@ declare const _default: import('vue').DefineComponent<VfNavMenuProps, {}, {}, {}
|
|
|
15
15
|
onSelect?: ((item: VfNavMenuItem) => any) | undefined;
|
|
16
16
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
|
+
ariaLabel: string;
|
|
18
19
|
modelValue: string;
|
|
19
20
|
defaultValue: string;
|
|
20
|
-
ariaLabel: string;
|
|
21
21
|
expandMode: "multiple" | "single";
|
|
22
22
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
23
23
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VfNavMenu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nav-menu/VfNavMenu.vue"],"names":[],"mappings":"AAoMA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAExD,UAAU,cAAc;IACtB,KAAK,EAAE,aAAa,EAAE,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,UAAU,GAAG,QAAQ,CAAC;CACpC;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"VfNavMenu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nav-menu/VfNavMenu.vue"],"names":[],"mappings":"AAoMA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAExD,UAAU,cAAc;IACtB,KAAK,EAAE,aAAa,EAAE,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,UAAU,GAAG,QAAQ,CAAC;CACpC;;;;;;;;;;eAFa,MAAM;gBAFL,MAAM;kBACJ,MAAM;gBAER,UAAU,GAAG,QAAQ;;AA2PpC,wBASG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VfNavMenuItemNode.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nav-menu/VfNavMenuItemNode.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VfNavMenuItemNode.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nav-menu/VfNavMenuItemNode.vue"],"names":[],"mappings":"AAqTA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAMxD,KAAK,WAAW,GAAG;IACjB,IAAI,EAAE,aAAa,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,EAAE,MAAM,EAAE,CAAC;CAC1B,CAAC;;;;eAI2B,MAAM;oBAAc,MAAM,EAAE;;;;;eAA5B,MAAM;oBAAc,MAAM,EAAE;;;AAyfzD,wBAQG"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { VfControlSize, VfDropdownPlacement, VfSelectOption } from '../../types/components';
|
|
2
|
+
interface VfSelectProps {
|
|
3
|
+
modelValue?: string;
|
|
4
|
+
options: VfSelectOption[];
|
|
5
|
+
size?: VfControlSize;
|
|
6
|
+
invalid?: boolean;
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
placement?: VfDropdownPlacement;
|
|
10
|
+
teleportTo?: string | HTMLElement | null | false;
|
|
11
|
+
disableTeleport?: boolean;
|
|
12
|
+
}
|
|
13
|
+
declare const _default: import('vue').DefineComponent<VfSelectProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
|
+
"update:modelValue": (value: string) => any;
|
|
15
|
+
}, string, import('vue').PublicProps, Readonly<VfSelectProps> & Readonly<{
|
|
16
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
invalid: boolean;
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
size: VfControlSize;
|
|
21
|
+
placeholder: string;
|
|
22
|
+
modelValue: string;
|
|
23
|
+
placement: VfDropdownPlacement;
|
|
24
|
+
teleportTo: string | HTMLElement | null | false;
|
|
25
|
+
disableTeleport: boolean;
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
27
|
+
triggerRef: HTMLButtonElement;
|
|
28
|
+
menuRef: HTMLDivElement;
|
|
29
|
+
}, any>;
|
|
30
|
+
export default _default;
|
|
31
|
+
//# sourceMappingURL=VfSelect.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VfSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/select/VfSelect.vue"],"names":[],"mappings":"AAyZA,OAAO,KAAK,EACV,aAAa,EACb,mBAAmB,EACnB,cAAc,EACf,MAAM,oBAAoB,CAAC;AAM5B,UAAU,aAAa;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,cAAc,EAAE,CAAC;IAC1B,IAAI,CAAC,EAAE,aAAa,CAAC;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,mBAAmB,CAAC;IAChC,UAAU,CAAC,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI,GAAG,KAAK,CAAC;IACjD,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;;;;;;aANW,OAAO;cAEN,OAAO;UAHX,aAAa;iBAEN,MAAM;gBAJP,MAAM;eAMP,mBAAmB;gBAClB,MAAM,GAAG,WAAW,GAAG,IAAI,GAAG,KAAK;qBAC9B,OAAO;;;;;AA0c3B,wBASG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/select/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAC"}
|
|
@@ -1,17 +1,26 @@
|
|
|
1
|
-
interface
|
|
2
|
-
|
|
1
|
+
interface VfTableProps {
|
|
2
|
+
caption?: string;
|
|
3
|
+
compact?: boolean;
|
|
4
|
+
striped?: boolean;
|
|
5
|
+
stickyHeader?: boolean;
|
|
3
6
|
}
|
|
4
7
|
declare function __VLS_template(): {
|
|
5
8
|
attrs: Partial<{}>;
|
|
6
9
|
slots: {
|
|
10
|
+
caption?(_: {}): any;
|
|
11
|
+
header?(_: {}): any;
|
|
7
12
|
default?(_: {}): any;
|
|
13
|
+
footer?(_: {}): any;
|
|
8
14
|
};
|
|
9
15
|
refs: {};
|
|
10
16
|
rootEl: any;
|
|
11
17
|
};
|
|
12
18
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
14
|
-
|
|
19
|
+
declare const __VLS_component: import('vue').DefineComponent<VfTableProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<VfTableProps> & Readonly<{}>, {
|
|
20
|
+
caption: string;
|
|
21
|
+
compact: boolean;
|
|
22
|
+
striped: boolean;
|
|
23
|
+
stickyHeader: boolean;
|
|
15
24
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
25
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
26
|
export default _default;
|
|
@@ -20,4 +29,4 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
20
29
|
$slots: S;
|
|
21
30
|
};
|
|
22
31
|
};
|
|
23
|
-
//# sourceMappingURL=
|
|
32
|
+
//# sourceMappingURL=VfTable.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VfTable.vue.d.ts","sourceRoot":"","sources":["../../../src/components/table/VfTable.vue"],"names":[],"mappings":"AAqEA,UAAU,YAAY;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AA6BD,iBAAS,cAAc;WA6DT,OAAO,IAA6B;;yBAbrB,GAAG;wBACJ,GAAG;yBACF,GAAG;wBACJ,GAAG;;;;EAe9B;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;aA/GT,MAAM;aACN,OAAO;aACP,OAAO;kBACF,OAAO;6EAmHtB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/table/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -3,27 +3,14 @@ interface VfTableOfContentsProps {
|
|
|
3
3
|
items: VfTableOfContentsItem[];
|
|
4
4
|
activeId?: string;
|
|
5
5
|
ariaLabel?: string;
|
|
6
|
-
|
|
6
|
+
smooth?: boolean;
|
|
7
|
+
scrollOffset?: number;
|
|
7
8
|
}
|
|
8
|
-
declare
|
|
9
|
-
attrs: Partial<{}>;
|
|
10
|
-
slots: {
|
|
11
|
-
label?(_: {}): any;
|
|
12
|
-
};
|
|
13
|
-
refs: {};
|
|
14
|
-
rootEl: any;
|
|
15
|
-
};
|
|
16
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
|
-
declare const __VLS_component: import('vue').DefineComponent<VfTableOfContentsProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<VfTableOfContentsProps> & Readonly<{}>, {
|
|
18
|
-
label: string;
|
|
9
|
+
declare const _default: import('vue').DefineComponent<VfTableOfContentsProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<VfTableOfContentsProps> & Readonly<{}>, {
|
|
19
10
|
ariaLabel: string;
|
|
11
|
+
smooth: boolean;
|
|
20
12
|
activeId: string;
|
|
13
|
+
scrollOffset: number;
|
|
21
14
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
22
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
15
|
export default _default;
|
|
24
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
25
|
-
new (): {
|
|
26
|
-
$slots: S;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
16
|
//# sourceMappingURL=VfTableOfContents.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VfTableOfContents.vue.d.ts","sourceRoot":"","sources":["../../../src/components/table-of-contents/VfTableOfContents.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VfTableOfContents.vue.d.ts","sourceRoot":"","sources":["../../../src/components/table-of-contents/VfTableOfContents.vue"],"names":[],"mappings":"AAsLA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAMhE,UAAU,sBAAsB;IAC9B,KAAK,EAAE,qBAAqB,EAAE,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;;eAHa,MAAM;YACT,OAAO;cAFL,MAAM;kBAGF,MAAM;;AAoMvB,wBAOG"}
|
|
@@ -11,7 +11,9 @@ declare function __VLS_template(): {
|
|
|
11
11
|
activeValue: string;
|
|
12
12
|
}): any;
|
|
13
13
|
};
|
|
14
|
-
refs: {
|
|
14
|
+
refs: {
|
|
15
|
+
listRef: HTMLDivElement;
|
|
16
|
+
};
|
|
15
17
|
rootEl: HTMLDivElement;
|
|
16
18
|
};
|
|
17
19
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
@@ -24,7 +26,9 @@ declare const __VLS_component: import('vue').DefineComponent<VfTabsProps, {}, {}
|
|
|
24
26
|
}>, {
|
|
25
27
|
modelValue: string;
|
|
26
28
|
defaultValue: string;
|
|
27
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
29
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
30
|
+
listRef: HTMLDivElement;
|
|
31
|
+
}, HTMLDivElement>;
|
|
28
32
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
29
33
|
export default _default;
|
|
30
34
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VfTabs.vue.d.ts","sourceRoot":"","sources":["../../../src/components/tabs/VfTabs.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VfTabs.vue.d.ts","sourceRoot":"","sources":["../../../src/components/tabs/VfTabs.vue"],"names":[],"mappings":"AAsQA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAEpD,UAAU,WAAW;IACnB,KAAK,EAAE,SAAS,EAAE,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AA8LD,iBAAS,cAAc;WA0ET,OAAO,IAA6B;;;;YAXvB,GAAG;;;;;;EAgB7B;AAmBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;gBAnSN,MAAM;kBACJ,MAAM;;;kBA4SrB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VfThemeSwitch.vue.d.ts","sourceRoot":"","sources":["../../../src/components/theme-switch/VfThemeSwitch.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VfThemeSwitch.vue.d.ts","sourceRoot":"","sources":["../../../src/components/theme-switch/VfThemeSwitch.vue"],"names":[],"mappings":"AA2FA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAMxD,UAAU,kBAAkB;IAC1B,IAAI,CAAC,EAAE,aAAa,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAuDD,iBAAS,cAAc;WAuET,OAAO,IAA6B;;;;YAXvB,GAAG;yBACA,GAAG;;;;EAehC;AAgBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;WArJX,MAAM;cADH,OAAO;UADX,aAAa;6EA8JpB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VfTooltip.vue.d.ts","sourceRoot":"","sources":["../../../src/components/tooltip/VfTooltip.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VfTooltip.vue.d.ts","sourceRoot":"","sources":["../../../src/components/tooltip/VfTooltip.vue"],"names":[],"mappings":"AAiMA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAE7D,UAAU,cAAc;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,kBAAkB,CAAC;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI,GAAG,KAAK,CAAC;IACjD,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;AAgID,iBAAS,cAAc;WA0FT,OAAO,IAA6B;;yBAdrB,GAAG;yBACF,GAAG;;;;;;;;EAkBhC;AAuBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;UA5PZ,MAAM;eACD,kBAAkB;gBAEjB,MAAM,GAAG,WAAW,GAAG,IAAI,GAAG,KAAK;qBAC9B,OAAO;eAFb,MAAM;;;;;mBAmQlB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export { default, VueForgeCore, createVueForgeCore } from './plugin';
|
|
2
2
|
export { default as VfThemeProvider } from './providers/VfThemeProvider.vue';
|
|
3
|
-
export { VfAccordion, VfAlert, VfBadge, VfButton, VfCard, VfCheckbox, VfDrawer, VfDialog, VfDivider, VfDropdown,
|
|
3
|
+
export { VfAccordion, VfAlert, VfBadge, VfBreadcrumbs, VfButton, VfCard, VfCheckbox, VfDrawer, VfDialog, VfDivider, VfDropdown, VfIconButton, VfInput, VfLink, VfMenuBar, VfNavMenu, VfPanel, VfPopover, VfRadio, VfSelect, VfSwitch, VfTable, VfTableOfContents, VfThemeSwitch, VfTag, VfTabs, VfTextarea, VfTooltip, } from './components';
|
|
4
4
|
export { useClickOutside, useDisclosure, useEscapeKey, useFloating, useFocusTrap, useId, useTableOfContents, useTheme, } from './composables';
|
|
5
5
|
export { vfBreakpoints, toMaxWidthQuery, toMinWidthQuery, useBreakpoint, useBreakpoints, useBreakpointValue, useScrollLock, } from './foundation';
|
|
6
6
|
export { createThemePreset, defaultThemePreset } from './theme/public';
|
|
7
|
-
export type { VfBadgeTone, VfButtonVariant, VfControlSize, VfDialogSize, VfDrawerPlacement, VfDividerOrientation, VfDropdownPlacement, VfFeedbackTone,
|
|
7
|
+
export type { VfBadgeTone, VfBreadcrumbItem, VfButtonVariant, VfControlSize, VfDialogSize, VfDrawerPlacement, VfDividerOrientation, VfDropdownPlacement, VfFeedbackTone, VfLinkTone, VfNavMenuItem, VfSelectOption, VfTabItem, VfTableOfContentsItem, VfTooltipPlacement, } from './types/components';
|
|
8
8
|
export type { VfResolvedTheme, VfThemeConfig, VfThemeContext, VfThemeMode, VfThemePreset, VfThemePresetOptions, VfThemeProviderProps, VfThemeTokens, VfVueForgeOptions, } from './types/theme';
|
|
9
9
|
export type { UseBreakpointOptions, UseScrollLockOptions, VfBreakpointName, VfBreakpointValue, VfBreakpointValues, } from './foundation';
|
|
10
10
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,gCAAgC,CAAC;AACxC,OAAO,+BAA+B,CAAC;AACvC,OAAO,yBAAyB,CAAC;AAEjC,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAC7E,OAAO,EACL,WAAW,EACX,OAAO,EACP,OAAO,EACP,QAAQ,EACR,MAAM,EACN,UAAU,EACV,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,UAAU,EACV,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,gCAAgC,CAAC;AACxC,OAAO,+BAA+B,CAAC;AACvC,OAAO,yBAAyB,CAAC;AAEjC,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AACrE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAC7E,OAAO,EACL,WAAW,EACX,OAAO,EACP,OAAO,EACP,aAAa,EACb,QAAQ,EACR,MAAM,EACN,UAAU,EACV,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,UAAU,EACV,YAAY,EACZ,OAAO,EACP,MAAM,EACN,SAAS,EACT,SAAS,EACT,OAAO,EACP,SAAS,EACT,OAAO,EACP,QAAQ,EACR,QAAQ,EACR,OAAO,EACP,iBAAiB,EACjB,aAAa,EACb,KAAK,EACL,MAAM,EACN,UAAU,EACV,SAAS,GACV,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,eAAe,EACf,aAAa,EACb,YAAY,EACZ,WAAW,EACX,YAAY,EACZ,KAAK,EACL,kBAAkB,EAClB,QAAQ,GACT,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,aAAa,EACb,eAAe,EACf,eAAe,EACf,aAAa,EACb,cAAc,EACd,kBAAkB,EAClB,aAAa,GACd,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACvE,YAAY,EACV,WAAW,EACX,gBAAgB,EAChB,eAAe,EACf,aAAa,EACb,YAAY,EACZ,iBAAiB,EACjB,oBAAoB,EACpB,mBAAmB,EACnB,cAAc,EACd,UAAU,EACV,aAAa,EACb,cAAc,EACd,SAAS,EACT,qBAAqB,EACrB,kBAAkB,GACnB,MAAM,oBAAoB,CAAC;AAC5B,YAAY,EACV,eAAe,EACf,aAAa,EACb,cAAc,EACd,WAAW,EACX,aAAa,EACb,oBAAoB,EACpB,oBAAoB,EACpB,aAAa,EACb,iBAAiB,GAClB,MAAM,eAAe,CAAC;AACvB,YAAY,EACV,oBAAoB,EACpB,oBAAoB,EACpB,gBAAgB,EAChB,iBAAiB,EACjB,kBAAkB,GACnB,MAAM,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VfThemeProvider.vue.d.ts","sourceRoot":"","sources":["../../src/providers/VfThemeProvider.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VfThemeProvider.vue.d.ts","sourceRoot":"","sources":["../../src/providers/VfThemeProvider.vue"],"names":[],"mappings":"AAqLA,OAAO,KAAK,EAGV,oBAAoB,EACrB,MAAM,eAAe,CAAC;AAuJvB,iBAAS,cAAc;WAoBT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAQD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,oTAMnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|