@quidgest/ui 0.21.0 → 0.21.2
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 +17 -0
- package/dist/json/api.json +184 -3
- package/dist/manifest/components.json +1 -0
- package/dist/ui.css +194 -7
- package/dist/ui.esm.js +1242 -1180
- package/dist/ui.js +505 -443
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +505 -443
- package/dist/ui.scss +227 -10
- package/esm/components/QObfuscation/QObfuscation.d.ts +1 -1
- package/esm/components/QObfuscation/QObfuscation.d.ts.map +1 -1
- package/esm/components/QObfuscation/QObfuscation.vue.js +52 -55
- package/esm/components/QObfuscation/index.d.ts +6 -6
- package/esm/components/QObfuscation/types.d.ts +1 -1
- package/esm/components/QObfuscation/types.d.ts.map +1 -1
- package/esm/components/QOverflow/QOverflow.d.ts +43 -0
- package/esm/components/QOverflow/QOverflow.d.ts.map +1 -0
- package/esm/components/QOverflow/QOverflow.vue.js +281 -0
- package/esm/components/QOverflow/QOverflow2.vue.js +5 -0
- package/esm/components/QOverflow/constants.d.ts +30 -0
- package/esm/components/QOverflow/constants.d.ts.map +1 -0
- package/esm/components/QOverflow/constants.js +12 -0
- package/esm/components/QOverflow/index.d.ts +58 -0
- package/esm/components/QOverflow/index.d.ts.map +1 -0
- package/esm/components/QOverflow/index.js +6 -0
- package/esm/components/QOverflow/types.d.ts +119 -0
- package/esm/components/QOverflow/types.d.ts.map +1 -0
- package/esm/components/index.d.ts +1 -0
- package/esm/components/index.d.ts.map +1 -1
- package/esm/components/index.js +58 -56
- package/esm/index.d.ts +1 -0
- package/package.json +1 -1
package/esm/components/index.js
CHANGED
|
@@ -24,34 +24,35 @@ import { QOverlay as O } from "./QOverlay/index.js";
|
|
|
24
24
|
import { QCombobox as k } from "./QCombobox/index.js";
|
|
25
25
|
import { QSwitch as A } from "./QSwitch/index.js";
|
|
26
26
|
import { QDateTimePicker as j } from "./QDateTimePicker/index.js";
|
|
27
|
-
import { QDefaultsProvider as
|
|
28
|
-
import { QDialog as
|
|
29
|
-
import { QDivider as
|
|
30
|
-
import { QDropdownMenu as
|
|
31
|
-
import { QFileUpload as
|
|
32
|
-
import { QGauge as
|
|
33
|
-
import { QCol as
|
|
27
|
+
import { QDefaultsProvider as M } from "./QDefaultsProvider/index.js";
|
|
28
|
+
import { QDialog as N, QDialogProvider as P } from "./QDialog/index.js";
|
|
29
|
+
import { QDivider as F } from "./QDivider/index.js";
|
|
30
|
+
import { QDropdownMenu as I } from "./QDropdownMenu/index.js";
|
|
31
|
+
import { QFileUpload as L } from "./QFileUpload/index.js";
|
|
32
|
+
import { QGauge as R } from "./QGauge/index.js";
|
|
33
|
+
import { QCol as z, QContainer as te, QRow as B, QSpacer as V } from "./QGrid/index.js";
|
|
34
34
|
import { QInputGroup as H } from "./QInputGroup/index.js";
|
|
35
35
|
import { QLineLoader as U } from "./QLineLoader/index.js";
|
|
36
36
|
import { QMeter as W } from "./QMeter/index.js";
|
|
37
37
|
import { QObfuscation as G } from "./QObfuscation/index.js";
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
38
|
+
import { QOverflow as K } from "./QOverflow/index.js";
|
|
39
|
+
import { QPasswordField as q } from "./QPasswordField/index.js";
|
|
40
|
+
import { QPopover as J } from "./QPopover/index.js";
|
|
41
|
+
import { QSelect as Y } from "./QSelect/index.js";
|
|
42
|
+
import { QPhoneField as X } from "./QPhoneField/index.js";
|
|
43
|
+
import { QPropertyList as Z, QPropertyListGroup as Q, QPropertyListPanel as $, QPropertyListRow as ne } from "./QPropertyList/index.js";
|
|
44
|
+
import { QRadioButton as re, QRadioGroup as ie } from "./QRadioGroup/index.js";
|
|
45
|
+
import { QSection as ae } from "./QSection/index.js";
|
|
46
|
+
import { QToggle as oe } from "./QToggle/index.js";
|
|
47
|
+
import { QSidebar as se, QSidebarItem as ce } from "./QSidebar/index.js";
|
|
48
|
+
import { QTab as le, QTabs as ue } from "./QTabs/index.js";
|
|
49
|
+
import { QTextArea as de } from "./QTextArea/index.js";
|
|
50
|
+
import { QThemeProvider as fe } from "./QThemeProvider/index.js";
|
|
51
|
+
import { QToast as pe, QToaster as me } from "./QToast/index.js";
|
|
52
|
+
import { QToggleGroup as he, QToggleGroupItem as ge } from "./QToggleGroup/index.js";
|
|
53
|
+
import { QTooltip as _e } from "./QTooltip/index.js";
|
|
53
54
|
//#region src/components/index.ts
|
|
54
|
-
var
|
|
55
|
+
var ve = /* @__PURE__ */ ee({
|
|
55
56
|
DEFAULT_TEXTS: () => b,
|
|
56
57
|
QAccordion: () => c,
|
|
57
58
|
QAccordionItem: () => l,
|
|
@@ -64,22 +65,22 @@ var _e = /* @__PURE__ */ ee({
|
|
|
64
65
|
QCarousel: () => h,
|
|
65
66
|
QCheckbox: () => _,
|
|
66
67
|
QCheckboxLabel: () => v,
|
|
67
|
-
QCol: () =>
|
|
68
|
+
QCol: () => z,
|
|
68
69
|
QCollapsible: () => s,
|
|
69
70
|
QColorPicker: () => S,
|
|
70
71
|
QCombobox: () => k,
|
|
71
|
-
QContainer: () =>
|
|
72
|
+
QContainer: () => te,
|
|
72
73
|
QDateTimePicker: () => j,
|
|
73
|
-
QDefaultsProvider: () =>
|
|
74
|
-
QDialog: () =>
|
|
75
|
-
QDialogProvider: () =>
|
|
74
|
+
QDefaultsProvider: () => M,
|
|
75
|
+
QDialog: () => N,
|
|
76
|
+
QDialogProvider: () => P,
|
|
76
77
|
QDismissibleLayer: () => E,
|
|
77
|
-
QDivider: () =>
|
|
78
|
-
QDropdownMenu: () =>
|
|
78
|
+
QDivider: () => F,
|
|
79
|
+
QDropdownMenu: () => I,
|
|
79
80
|
QField: () => y,
|
|
80
|
-
QFileUpload: () =>
|
|
81
|
+
QFileUpload: () => L,
|
|
81
82
|
QFocusWrap: () => D,
|
|
82
|
-
QGauge: () =>
|
|
83
|
+
QGauge: () => R,
|
|
83
84
|
QIcon: () => r,
|
|
84
85
|
QIconFont: () => i,
|
|
85
86
|
QIconImg: () => a,
|
|
@@ -92,36 +93,37 @@ var _e = /* @__PURE__ */ ee({
|
|
|
92
93
|
QListItemGroup: () => T,
|
|
93
94
|
QMeter: () => W,
|
|
94
95
|
QObfuscation: () => G,
|
|
96
|
+
QOverflow: () => K,
|
|
95
97
|
QOverlay: () => O,
|
|
96
|
-
QPasswordField: () =>
|
|
97
|
-
QPhoneField: () =>
|
|
98
|
-
QPopover: () =>
|
|
99
|
-
QPropertyList: () =>
|
|
100
|
-
QPropertyListGroup: () =>
|
|
101
|
-
QPropertyListPanel: () =>
|
|
102
|
-
QPropertyListRow: () =>
|
|
103
|
-
QRadioButton: () =>
|
|
104
|
-
QRadioGroup: () =>
|
|
98
|
+
QPasswordField: () => q,
|
|
99
|
+
QPhoneField: () => X,
|
|
100
|
+
QPopover: () => J,
|
|
101
|
+
QPropertyList: () => Z,
|
|
102
|
+
QPropertyListGroup: () => Q,
|
|
103
|
+
QPropertyListPanel: () => $,
|
|
104
|
+
QPropertyListRow: () => ne,
|
|
105
|
+
QRadioButton: () => re,
|
|
106
|
+
QRadioGroup: () => ie,
|
|
105
107
|
QRow: () => B,
|
|
106
|
-
QSection: () =>
|
|
107
|
-
QSelect: () =>
|
|
108
|
-
QSidebar: () =>
|
|
109
|
-
QSidebarItem: () =>
|
|
108
|
+
QSection: () => ae,
|
|
109
|
+
QSelect: () => Y,
|
|
110
|
+
QSidebar: () => se,
|
|
111
|
+
QSidebarItem: () => ce,
|
|
110
112
|
QSkeletonLoader: () => m,
|
|
111
113
|
QSpacer: () => V,
|
|
112
114
|
QSpinnerLoader: () => e,
|
|
113
115
|
QSwitch: () => A,
|
|
114
|
-
QTab: () =>
|
|
115
|
-
QTabs: () =>
|
|
116
|
-
QTextArea: () =>
|
|
116
|
+
QTab: () => le,
|
|
117
|
+
QTabs: () => ue,
|
|
118
|
+
QTextArea: () => de,
|
|
117
119
|
QTextField: () => x,
|
|
118
|
-
QThemeProvider: () =>
|
|
119
|
-
QToast: () =>
|
|
120
|
-
QToaster: () =>
|
|
121
|
-
QToggle: () =>
|
|
122
|
-
QToggleGroup: () =>
|
|
123
|
-
QToggleGroupItem: () =>
|
|
124
|
-
QTooltip: () =>
|
|
120
|
+
QThemeProvider: () => fe,
|
|
121
|
+
QToast: () => pe,
|
|
122
|
+
QToaster: () => me,
|
|
123
|
+
QToggle: () => oe,
|
|
124
|
+
QToggleGroup: () => he,
|
|
125
|
+
QToggleGroupItem: () => ge,
|
|
126
|
+
QTooltip: () => _e
|
|
125
127
|
});
|
|
126
128
|
//#endregion
|
|
127
|
-
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,
|
|
129
|
+
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, z as QCol, s as QCollapsible, S as QColorPicker, k as QCombobox, te as QContainer, j as QDateTimePicker, M as QDefaultsProvider, N as QDialog, P as QDialogProvider, E as QDismissibleLayer, F as QDivider, I as QDropdownMenu, y as QField, L as QFileUpload, D as QFocusWrap, R as QGauge, r as QIcon, i as QIconFont, a as QIconImg, o as QIconSvg, H as QInputGroup, g as QLabel, U as QLineLoader, C as QList, w as QListItem, T as QListItemGroup, W as QMeter, G as QObfuscation, K as QOverflow, O as QOverlay, q as QPasswordField, X as QPhoneField, J as QPopover, Z as QPropertyList, Q as QPropertyListGroup, $ as QPropertyListPanel, ne as QPropertyListRow, re as QRadioButton, ie as QRadioGroup, B as QRow, ae as QSection, Y as QSelect, se as QSidebar, ce as QSidebarItem, m as QSkeletonLoader, V as QSpacer, e as QSpinnerLoader, A as QSwitch, le as QTab, ue as QTabs, de as QTextArea, x as QTextField, fe as QThemeProvider, pe as QToast, me as QToaster, oe as QToggle, he as QToggleGroup, ge as QToggleGroupItem, _e as QTooltip, ve as components_exports };
|
package/esm/index.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ declare module '@vue/runtime-core' {
|
|
|
49
49
|
QListItemGroup: typeof import('@quidgest/ui/components')['QListItemGroup']
|
|
50
50
|
QMeter: typeof import('@quidgest/ui/components')['QMeter']
|
|
51
51
|
QObfuscation: typeof import('@quidgest/ui/components')['QObfuscation']
|
|
52
|
+
QOverflow: typeof import('@quidgest/ui/components')['QOverflow']
|
|
52
53
|
QOverlay: typeof import('@quidgest/ui/components')['QOverlay']
|
|
53
54
|
QPasswordField: typeof import('@quidgest/ui/components')['QPasswordField']
|
|
54
55
|
QPhoneField: typeof import('@quidgest/ui/components')['QPhoneField']
|