@quidgest/ui 0.18.0 → 0.19.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/CHANGELOG.md +79 -0
- package/dist/json/api.json +136 -129
- package/dist/manifest/components.json +2 -1
- package/dist/ui.css +242 -155
- package/dist/ui.esm.js +365 -343
- package/dist/ui.js +121 -99
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +121 -99
- package/dist/ui.scss +225 -151
- package/esm/components/QGrid/QCol.vue.js +1 -1
- package/esm/components/{QGroupBox/QGroupBox.d.ts → QSection/QSection.d.ts} +4 -4
- package/esm/components/QSection/QSection.d.ts.map +1 -0
- package/esm/components/{QGroupBox/QGroupBox.vue.js → QSection/QSection.vue.js} +8 -8
- package/esm/components/QSection/QSection2.vue.js +5 -0
- package/esm/components/{QGroupBox → QSection}/index.d.ts +8 -8
- package/esm/components/QSection/index.d.ts.map +1 -0
- package/esm/components/QSection/index.js +6 -0
- package/esm/components/QSection/types.d.ts +32 -0
- package/esm/components/QSection/types.d.ts.map +1 -0
- package/esm/components/QSidebar/QSidebar.d.ts +53 -6
- package/esm/components/QSidebar/QSidebar.d.ts.map +1 -1
- package/esm/components/QSidebar/QSidebar.vue.js +76 -106
- package/esm/components/QSidebar/QSidebarAnchor.d.ts +24 -210
- package/esm/components/QSidebar/QSidebarAnchor.d.ts.map +1 -1
- package/esm/components/QSidebar/QSidebarAnchor.vue.js +47 -59
- package/esm/components/QSidebar/QSidebarItem.d.ts +213 -0
- package/esm/components/QSidebar/QSidebarItem.d.ts.map +1 -0
- package/esm/components/QSidebar/QSidebarItem.vue.js +130 -0
- package/esm/components/QSidebar/QSidebarItem2.vue.js +5 -0
- package/esm/components/QSidebar/QSidebarPanel.d.ts +1 -7
- package/esm/components/QSidebar/QSidebarPanel.d.ts.map +1 -1
- package/esm/components/QSidebar/QSidebarPanel.vue.js +4 -10
- package/esm/components/QSidebar/context.d.ts +108 -0
- package/esm/components/QSidebar/context.d.ts.map +1 -0
- package/esm/components/QSidebar/context.js +4 -0
- package/esm/components/QSidebar/index.d.ts +166 -8
- package/esm/components/QSidebar/index.d.ts.map +1 -1
- package/esm/components/QSidebar/index.js +3 -2
- package/esm/components/QSidebar/types.d.ts +77 -42
- package/esm/components/QSidebar/types.d.ts.map +1 -1
- package/esm/components/QTabs/QTab.d.ts +1 -0
- package/esm/components/QTabs/QTab.d.ts.map +1 -1
- package/esm/components/QTabs/QTab.vue.js +2 -1
- package/esm/components/QTabs/QTabs.d.ts +2 -0
- package/esm/components/QTabs/QTabs.d.ts.map +1 -1
- package/esm/components/QTabs/QTabs.vue.js +125 -46
- package/esm/components/QTabs/context.d.ts +10 -3
- package/esm/components/QTabs/context.d.ts.map +1 -1
- package/esm/components/QTabs/index.d.ts +2 -0
- package/esm/components/QTabs/index.d.ts.map +1 -1
- package/esm/components/QTabs/types.d.ts +3 -1
- package/esm/components/QTabs/types.d.ts.map +1 -1
- package/esm/components/index.d.ts +1 -1
- package/esm/components/index.d.ts.map +1 -1
- package/esm/components/index.js +41 -40
- package/esm/index.d.ts +2 -1
- package/package.json +7 -6
- package/esm/components/QGroupBox/QGroupBox.d.ts.map +0 -1
- package/esm/components/QGroupBox/QGroupBox2.vue.js +0 -5
- package/esm/components/QGroupBox/index.d.ts.map +0 -1
- package/esm/components/QGroupBox/index.js +0 -6
- package/esm/components/QGroupBox/types.d.ts +0 -32
- package/esm/components/QGroupBox/types.d.ts.map +0 -1
|
@@ -3,7 +3,8 @@ import { QTabsDirection } from './types';
|
|
|
3
3
|
/**
|
|
4
4
|
* Metadata registered by each {@link QTab} with its parent {@link QTabs}.
|
|
5
5
|
*
|
|
6
|
-
* Used for keyboard navigation, default selection,
|
|
6
|
+
* Used for keyboard navigation, default selection, focusing tab triggers,
|
|
7
|
+
* and positioning the line-variant active indicator.
|
|
7
8
|
*/
|
|
8
9
|
export type TabRegistration = {
|
|
9
10
|
/**
|
|
@@ -16,6 +17,12 @@ export type TabRegistration = {
|
|
|
16
17
|
* Stored as a computed so the parent can react when the prop changes.
|
|
17
18
|
*/
|
|
18
19
|
disabled: ComputedRef<boolean>;
|
|
20
|
+
/**
|
|
21
|
+
* Template ref for the tab trigger element (indicator positioning).
|
|
22
|
+
*/
|
|
23
|
+
tabRef: Ref<{
|
|
24
|
+
$el?: HTMLElement;
|
|
25
|
+
} | HTMLElement | null>;
|
|
19
26
|
/**
|
|
20
27
|
* Moves DOM focus to this tab's trigger button.
|
|
21
28
|
*/
|
|
@@ -32,9 +39,9 @@ export type TabRegistration = {
|
|
|
32
39
|
*/
|
|
33
40
|
export type TabsContext = {
|
|
34
41
|
/**
|
|
35
|
-
* DOM element
|
|
42
|
+
* DOM element with `role="tablist"` that owns teleported tab triggers.
|
|
36
43
|
*
|
|
37
|
-
*
|
|
44
|
+
* The line indicator lives on the outer `.q-tabs__list` host, not here.
|
|
38
45
|
*/
|
|
39
46
|
tabListEl: Ref<HTMLElement | null>;
|
|
40
47
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../../src/components/QTabs/context.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AACzD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAE7C
|
|
1
|
+
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../../src/components/QTabs/context.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AACzD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAE7C;;;;;GAKG;AACH,MAAM,MAAM,eAAe,GAAG;IAC7B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAA;IAEb;;;;OAIG;IACH,QAAQ,EAAE,WAAW,CAAC,OAAO,CAAC,CAAA;IAE9B;;OAEG;IACH,MAAM,EAAE,GAAG,CAAC;QAAE,GAAG,CAAC,EAAE,WAAW,CAAA;KAAE,GAAG,WAAW,GAAG,IAAI,CAAC,CAAA;IAEvD;;OAEG;IACH,KAAK,EAAE,MAAM,IAAI,CAAA;IAEjB;;OAEG;IACH,MAAM,EAAE,MAAM,IAAI,CAAA;CAClB,CAAA;AAED;;;;GAIG;AACH,MAAM,MAAM,WAAW,GAAG;IACzB;;;;OAIG;IACH,SAAS,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,CAAA;IAElC;;;;OAIG;IACH,SAAS,EAAE,WAAW,CAAC,cAAc,CAAC,CAAA;IAEtC;;;;OAIG;IACH,QAAQ,EAAE,CAAC,GAAG,EAAE,eAAe,KAAK,IAAI,CAAA;IAExC;;;;OAIG;IACH,UAAU,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IAEnC;;;;;OAKG;IACH,aAAa,EAAE,CAAC,YAAY,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IAE5D;;OAEG;IACH,UAAU,EAAE,MAAM,IAAI,CAAA;IAEtB;;OAEG;IACH,SAAS,EAAE,MAAM,IAAI,CAAA;CACrB,CAAA;AAED;;GAEG;AACH,eAAO,MAAM,UAAU,EAAE,YAAY,CAAC,WAAW,CAAoB,CAAA"}
|
|
@@ -15,6 +15,7 @@ declare const QTabs: {
|
|
|
15
15
|
direction: import('./types').QTabsDirection;
|
|
16
16
|
align: import('./types').QTabsAlign;
|
|
17
17
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
18
|
+
tabListHost: HTMLDivElement;
|
|
18
19
|
tabListEl: HTMLDivElement;
|
|
19
20
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
20
21
|
P: {};
|
|
@@ -155,6 +156,7 @@ declare const QTab: {
|
|
|
155
156
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
156
157
|
$slots: {
|
|
157
158
|
'title.prepend'?(_: {}): any;
|
|
159
|
+
title?(_: {}): any;
|
|
158
160
|
'title.append'?(_: {}): any;
|
|
159
161
|
default?(_: {}): any;
|
|
160
162
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QTabs/index.ts"],"names":[],"mappings":"AAOA,QAAA,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QTabs/index.ts"],"names":[],"mappings":"AAOA,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA0B,CAAA;AACrC,QAAA,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAOy30B,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAPt90B,CAAA;AAGnC,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,CAAA;AAGtB,cAAc,SAAS,CAAA"}
|
|
@@ -20,7 +20,7 @@ export type QTabsAlign = 'start' | 'end' | 'center' | 'justify';
|
|
|
20
20
|
/**
|
|
21
21
|
* Visual style of the tab list.
|
|
22
22
|
*
|
|
23
|
-
* - `line` — underline indicator on a shared baseline
|
|
23
|
+
* - `line` — sliding underline / edge indicator on a shared baseline
|
|
24
24
|
* - `card` — bordered folder tabs that merge into the panel
|
|
25
25
|
*/
|
|
26
26
|
export type QTabsVariant = 'line' | 'card';
|
|
@@ -69,6 +69,8 @@ export type QTabProps = QBaseComponentProps & {
|
|
|
69
69
|
/**
|
|
70
70
|
* The label text shown on the tab trigger.
|
|
71
71
|
*
|
|
72
|
+
* Overridden when the `title` slot is provided.
|
|
73
|
+
*
|
|
72
74
|
* @category Content
|
|
73
75
|
*/
|
|
74
76
|
title?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QTabs/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAGhD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAEhE;;;;;GAKG;AACH,MAAM,MAAM,cAAc,GAAG,YAAY,GAAG,UAAU,CAAA;AAEtD;;;;;;;;GAQG;AACH,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAA;AAE/D;;;;;GAKG;AACH,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,MAAM,CAAA;AAE1C;;;;GAIG;AACH,MAAM,MAAM,UAAU,GAAG,mBAAmB,GAAG;IAC9C;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,cAAc,CAAA;IAE1B;;;;;OAKG;IACH,KAAK,CAAC,EAAE,UAAU,CAAA;IAElB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,YAAY,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;CAClB,CAAA;AAED;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,mBAAmB,GAAG;IAC7C
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QTabs/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAGhD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAEhE;;;;;GAKG;AACH,MAAM,MAAM,cAAc,GAAG,YAAY,GAAG,UAAU,CAAA;AAEtD;;;;;;;;GAQG;AACH,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAA;AAE/D;;;;;GAKG;AACH,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,MAAM,CAAA;AAE1C;;;;GAIG;AACH,MAAM,MAAM,UAAU,GAAG,mBAAmB,GAAG;IAC9C;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,cAAc,CAAA;IAE1B;;;;;OAKG;IACH,KAAK,CAAC,EAAE,UAAU,CAAA;IAElB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,YAAY,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;CAClB,CAAA;AAED;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,mBAAmB,GAAG;IAC7C;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;;;;;OAQG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA"}
|
|
@@ -20,7 +20,6 @@ export * from './QField';
|
|
|
20
20
|
export * from './QFileUpload';
|
|
21
21
|
export * from './QFocusWrap';
|
|
22
22
|
export * from './QGrid';
|
|
23
|
-
export * from './QGroupBox';
|
|
24
23
|
export * from './QIcon';
|
|
25
24
|
export * from './QInputGroup';
|
|
26
25
|
export * from './QLabel';
|
|
@@ -33,6 +32,7 @@ export * from './QPasswordField';
|
|
|
33
32
|
export * from './QPopover';
|
|
34
33
|
export * from './QPropertyList';
|
|
35
34
|
export * from './QRadioGroup';
|
|
35
|
+
export * from './QSection';
|
|
36
36
|
export * from './QSelect';
|
|
37
37
|
export * from './QSidebar';
|
|
38
38
|
export * from './QSkeletonLoader';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,mBAAmB,CAAA;AACjC,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,qBAAqB,CAAA;AACnC,cAAc,WAAW,CAAA;AACzB,cAAc,qBAAqB,CAAA;AACnC,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,cAAc,CAAA;AAC5B,cAAc,SAAS,CAAA;AACvB,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,mBAAmB,CAAA;AACjC,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,mBAAmB,CAAA;AACjC,cAAc,qBAAqB,CAAA;AACnC,cAAc,WAAW,CAAA;AACzB,cAAc,qBAAqB,CAAA;AACnC,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,cAAc,CAAA;AAC5B,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,YAAY,CAAA;AAC1B,cAAc,kBAAkB,CAAA;AAChC,cAAc,YAAY,CAAA;AAC1B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,WAAW,CAAA;AACzB,cAAc,YAAY,CAAA;AAC1B,cAAc,mBAAmB,CAAA;AACjC,cAAc,kBAAkB,CAAA;AAChC,cAAc,WAAW,CAAA;AACzB,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA;AAC5B,cAAc,kBAAkB,CAAA;AAChC,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,gBAAgB,CAAA;AAC9B,cAAc,YAAY,CAAA"}
|
package/esm/components/index.js
CHANGED
|
@@ -30,26 +30,26 @@ import { QDivider as F } from "./QDivider/index.js";
|
|
|
30
30
|
import { QDropdownMenu as te } from "./QDropdownMenu/index.js";
|
|
31
31
|
import { QFileUpload as I } from "./QFileUpload/index.js";
|
|
32
32
|
import { QCol as L, QContainer as R, QRow as z, QSpacer as B } from "./QGrid/index.js";
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
33
|
+
import { QInputGroup as V } from "./QInputGroup/index.js";
|
|
34
|
+
import { QLineLoader as H } from "./QLineLoader/index.js";
|
|
35
|
+
import { QMeter as U } from "./QMeter/index.js";
|
|
36
|
+
import { QObfuscation as W } from "./QObfuscation/index.js";
|
|
37
|
+
import { QPasswordField as G } from "./QPasswordField/index.js";
|
|
38
|
+
import { QPopover as K } from "./QPopover/index.js";
|
|
39
|
+
import { QPropertyList as q, QPropertyListGroup as J, QPropertyListPanel as Y, QPropertyListRow as X } from "./QPropertyList/index.js";
|
|
40
|
+
import { QRadioButton as Z, QRadioGroup as Q } from "./QRadioGroup/index.js";
|
|
41
|
+
import { QSection as $ } from "./QSection/index.js";
|
|
42
42
|
import { QSelect as ne } from "./QSelect/index.js";
|
|
43
43
|
import { QToggle as re } from "./QToggle/index.js";
|
|
44
|
-
import { QSidebar as ie } from "./QSidebar/index.js";
|
|
45
|
-
import { QTab as
|
|
46
|
-
import { QTextArea as
|
|
47
|
-
import { QThemeProvider as
|
|
48
|
-
import { QToast as
|
|
49
|
-
import { QToggleGroup as
|
|
50
|
-
import { QTooltip as
|
|
44
|
+
import { QSidebar as ie, QSidebarItem as ae } from "./QSidebar/index.js";
|
|
45
|
+
import { QTab as oe, QTabs as se } from "./QTabs/index.js";
|
|
46
|
+
import { QTextArea as ce } from "./QTextArea/index.js";
|
|
47
|
+
import { QThemeProvider as le } from "./QThemeProvider/index.js";
|
|
48
|
+
import { QToast as ue, QToaster as de } from "./QToast/index.js";
|
|
49
|
+
import { QToggleGroup as fe, QToggleGroupItem as pe } from "./QToggleGroup/index.js";
|
|
50
|
+
import { QTooltip as me } from "./QTooltip/index.js";
|
|
51
51
|
//#region src/components/index.ts
|
|
52
|
-
var
|
|
52
|
+
var he = /* @__PURE__ */ ee({
|
|
53
53
|
DEFAULT_TEXTS: () => b,
|
|
54
54
|
QAccordion: () => c,
|
|
55
55
|
QAccordionItem: () => l,
|
|
@@ -77,46 +77,47 @@ var me = /* @__PURE__ */ ee({
|
|
|
77
77
|
QField: () => y,
|
|
78
78
|
QFileUpload: () => I,
|
|
79
79
|
QFocusWrap: () => D,
|
|
80
|
-
QGroupBox: () => V,
|
|
81
80
|
QIcon: () => r,
|
|
82
81
|
QIconFont: () => i,
|
|
83
82
|
QIconImg: () => a,
|
|
84
83
|
QIconSvg: () => o,
|
|
85
|
-
QInputGroup: () =>
|
|
84
|
+
QInputGroup: () => V,
|
|
86
85
|
QLabel: () => g,
|
|
87
|
-
QLineLoader: () =>
|
|
86
|
+
QLineLoader: () => H,
|
|
88
87
|
QList: () => C,
|
|
89
88
|
QListItem: () => w,
|
|
90
89
|
QListItemGroup: () => T,
|
|
91
|
-
QMeter: () =>
|
|
92
|
-
QObfuscation: () =>
|
|
90
|
+
QMeter: () => U,
|
|
91
|
+
QObfuscation: () => W,
|
|
93
92
|
QOverlay: () => O,
|
|
94
|
-
QPasswordField: () =>
|
|
95
|
-
QPopover: () =>
|
|
96
|
-
QPropertyList: () =>
|
|
97
|
-
QPropertyListGroup: () =>
|
|
98
|
-
QPropertyListPanel: () =>
|
|
99
|
-
QPropertyListRow: () =>
|
|
100
|
-
QRadioButton: () =>
|
|
101
|
-
QRadioGroup: () =>
|
|
93
|
+
QPasswordField: () => G,
|
|
94
|
+
QPopover: () => K,
|
|
95
|
+
QPropertyList: () => q,
|
|
96
|
+
QPropertyListGroup: () => J,
|
|
97
|
+
QPropertyListPanel: () => Y,
|
|
98
|
+
QPropertyListRow: () => X,
|
|
99
|
+
QRadioButton: () => Z,
|
|
100
|
+
QRadioGroup: () => Q,
|
|
102
101
|
QRow: () => z,
|
|
102
|
+
QSection: () => $,
|
|
103
103
|
QSelect: () => ne,
|
|
104
104
|
QSidebar: () => ie,
|
|
105
|
+
QSidebarItem: () => ae,
|
|
105
106
|
QSkeletonLoader: () => m,
|
|
106
107
|
QSpacer: () => B,
|
|
107
108
|
QSpinnerLoader: () => e,
|
|
108
109
|
QSwitch: () => A,
|
|
109
|
-
QTab: () =>
|
|
110
|
-
QTabs: () =>
|
|
111
|
-
QTextArea: () =>
|
|
110
|
+
QTab: () => oe,
|
|
111
|
+
QTabs: () => se,
|
|
112
|
+
QTextArea: () => ce,
|
|
112
113
|
QTextField: () => x,
|
|
113
|
-
QThemeProvider: () =>
|
|
114
|
-
QToast: () =>
|
|
115
|
-
QToaster: () =>
|
|
114
|
+
QThemeProvider: () => le,
|
|
115
|
+
QToast: () => ue,
|
|
116
|
+
QToaster: () => de,
|
|
116
117
|
QToggle: () => re,
|
|
117
|
-
QToggleGroup: () =>
|
|
118
|
-
QToggleGroupItem: () =>
|
|
119
|
-
QTooltip: () =>
|
|
118
|
+
QToggleGroup: () => fe,
|
|
119
|
+
QToggleGroupItem: () => pe,
|
|
120
|
+
QTooltip: () => me
|
|
120
121
|
});
|
|
121
122
|
//#endregion
|
|
122
|
-
export { b as DEFAULT_TEXTS, c as QAccordion, l as QAccordionItem, u as QAvatar, f as QBadge, p as QBadgeIndicator, t as QButton, d as QButtonGroup, n as QCard, h as QCarousel, _ as QCheckbox, v as QCheckboxLabel, L as QCol, s as QCollapsible, S as QColorPicker, k as QCombobox, R as QContainer, j as QDateTimePicker, M as QDefaultsProvider, N as QDialog, P as QDialogProvider, E as QDismissibleLayer, F as QDivider, te as QDropdownMenu, y as QField, I as QFileUpload, D as QFocusWrap,
|
|
123
|
+
export { b as DEFAULT_TEXTS, c as QAccordion, l as QAccordionItem, u as QAvatar, f as QBadge, p as QBadgeIndicator, t as QButton, d as QButtonGroup, n as QCard, h as QCarousel, _ as QCheckbox, v as QCheckboxLabel, L as QCol, s as QCollapsible, S as QColorPicker, k as QCombobox, R as QContainer, j as QDateTimePicker, M as QDefaultsProvider, N as QDialog, P as QDialogProvider, E as QDismissibleLayer, F as QDivider, te as QDropdownMenu, y as QField, I as QFileUpload, D as QFocusWrap, r as QIcon, i as QIconFont, a as QIconImg, o as QIconSvg, V as QInputGroup, g as QLabel, H as QLineLoader, C as QList, w as QListItem, T as QListItemGroup, U as QMeter, W as QObfuscation, O as QOverlay, G as QPasswordField, K as QPopover, q as QPropertyList, J as QPropertyListGroup, Y as QPropertyListPanel, X as QPropertyListRow, Z as QRadioButton, Q as QRadioGroup, z as QRow, $ as QSection, ne as QSelect, ie as QSidebar, ae as QSidebarItem, m as QSkeletonLoader, B as QSpacer, e as QSpinnerLoader, A as QSwitch, oe as QTab, se as QTabs, ce as QTextArea, x as QTextField, le as QThemeProvider, ue as QToast, de as QToaster, re as QToggle, fe as QToggleGroup, pe as QToggleGroupItem, me as QTooltip, he as components_exports };
|
package/esm/index.d.ts
CHANGED
|
@@ -36,7 +36,6 @@ declare module '@vue/runtime-core' {
|
|
|
36
36
|
QContainer: typeof import('@quidgest/ui/components')['QContainer']
|
|
37
37
|
QRow: typeof import('@quidgest/ui/components')['QRow']
|
|
38
38
|
QSpacer: typeof import('@quidgest/ui/components')['QSpacer']
|
|
39
|
-
QGroupBox: typeof import('@quidgest/ui/components')['QGroupBox']
|
|
40
39
|
QIcon: typeof import('@quidgest/ui/components')['QIcon']
|
|
41
40
|
QIconFont: typeof import('@quidgest/ui/components')['QIconFont']
|
|
42
41
|
QIconImg: typeof import('@quidgest/ui/components')['QIconImg']
|
|
@@ -58,8 +57,10 @@ declare module '@vue/runtime-core' {
|
|
|
58
57
|
QPropertyListPanel: typeof import('@quidgest/ui/components')['QPropertyListPanel']
|
|
59
58
|
QRadioButton: typeof import('@quidgest/ui/components')['QRadioButton']
|
|
60
59
|
QRadioGroup: typeof import('@quidgest/ui/components')['QRadioGroup']
|
|
60
|
+
QSection: typeof import('@quidgest/ui/components')['QSection']
|
|
61
61
|
QSelect: typeof import('@quidgest/ui/components')['QSelect']
|
|
62
62
|
QSidebar: typeof import('@quidgest/ui/components')['QSidebar']
|
|
63
|
+
QSidebarItem: typeof import('@quidgest/ui/components')['QSidebarItem']
|
|
63
64
|
QSkeletonLoader: typeof import('@quidgest/ui/components')['QSkeletonLoader']
|
|
64
65
|
QSpinnerLoader: typeof import('@quidgest/ui/components')['QSpinnerLoader']
|
|
65
66
|
QSwitch: typeof import('@quidgest/ui/components')['QSwitch']
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quidgest/ui",
|
|
3
3
|
"description": "Quidgest's UI framework",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.19.0",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"author": "Quidgest",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"style": "dist/ui.css",
|
|
21
21
|
"sideEffects": false,
|
|
22
22
|
"files": [
|
|
23
|
+
"CHANGELOG.md",
|
|
23
24
|
"dist",
|
|
24
25
|
"esm"
|
|
25
26
|
],
|
|
@@ -45,10 +46,10 @@
|
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
48
|
"@fortawesome/fontawesome-free": "^6.7.2",
|
|
48
|
-
"@storybook/addon-docs": "^10.
|
|
49
|
-
"@storybook/addon-links": "^10.
|
|
50
|
-
"@storybook/vue3": "^10.
|
|
51
|
-
"@storybook/vue3-vite": "^10.
|
|
49
|
+
"@storybook/addon-docs": "^10.6.0-alpha.7",
|
|
50
|
+
"@storybook/addon-links": "^10.6.0-alpha.7",
|
|
51
|
+
"@storybook/vue3": "^10.6.0-alpha.7",
|
|
52
|
+
"@storybook/vue3-vite": "^10.6.0-alpha.7",
|
|
52
53
|
"@vitejs/plugin-vue": "^6.0.7",
|
|
53
54
|
"@vue/test-utils": "^2.4.6",
|
|
54
55
|
"acorn": "^8.15.0",
|
|
@@ -56,7 +57,7 @@
|
|
|
56
57
|
"autoprefixer": "^10.4.20",
|
|
57
58
|
"cssnano": "^7.0.6",
|
|
58
59
|
"postcss": "^8.5.1",
|
|
59
|
-
"storybook": "^10.
|
|
60
|
+
"storybook": "^10.6.0-alpha.7",
|
|
60
61
|
"terser": "^5.44.0",
|
|
61
62
|
"vite": "^8.1.0",
|
|
62
63
|
"vite-plugin-dts": "^4.5.0",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"QGroupBox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QGroupBox/QGroupBox.vue"],"names":[],"mappings":"AAcA;AA6CC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,GAAG,CAAA;AA+BxC,iBAAS,cAAc;WAkCT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAUD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;wFAQnB,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 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QGroupBox/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;EAA8B,CAAA;AAG7C,OAAO,EAAE,SAAS,EAAE,CAAA;AAGpB,cAAc,SAAS,CAAA"}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { QBaseComponentProps } from '../../types/component';
|
|
2
|
-
/**
|
|
3
|
-
* QGroupBox visual style variants.
|
|
4
|
-
*/
|
|
5
|
-
export type QGroupBoxVariant = 'default' | 'background' | 'minor' | 'minor-border-top' | 'title-background';
|
|
6
|
-
export type QGroupBoxProps = QBaseComponentProps & {
|
|
7
|
-
/**
|
|
8
|
-
* The title of the group box.
|
|
9
|
-
*
|
|
10
|
-
* @category Content
|
|
11
|
-
*/
|
|
12
|
-
title?: string;
|
|
13
|
-
/**
|
|
14
|
-
* If true, the group box has no borders.
|
|
15
|
-
*
|
|
16
|
-
* @category Presentation
|
|
17
|
-
*/
|
|
18
|
-
borderless?: boolean;
|
|
19
|
-
/**
|
|
20
|
-
* The styling variant of the group box.
|
|
21
|
-
*
|
|
22
|
-
* @category Presentation
|
|
23
|
-
*/
|
|
24
|
-
variant?: QGroupBoxVariant;
|
|
25
|
-
/**
|
|
26
|
-
* If true, the group box spans the full width of its container.
|
|
27
|
-
*
|
|
28
|
-
* @category Presentation
|
|
29
|
-
*/
|
|
30
|
-
block?: boolean;
|
|
31
|
-
};
|
|
32
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QGroupBox/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAEhE;;GAEG;AACH,MAAM,MAAM,gBAAgB,GACzB,SAAS,GACT,YAAY,GACZ,OAAO,GACP,kBAAkB,GAClB,kBAAkB,CAAA;AAErB,MAAM,MAAM,cAAc,GAAG,mBAAmB,GAAG;IAClD;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IAEpB;;;;OAIG;IACH,OAAO,CAAC,EAAE,gBAAgB,CAAA;IAE1B;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;CACf,CAAA"}
|