@quidgest/ui 0.19.0 → 0.20.1
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 +21 -1
- package/dist/json/api.json +1414 -45
- package/dist/manifest/components.json +2 -0
- package/dist/ui.css +1374 -5
- package/dist/ui.esm.js +1459 -841
- package/dist/ui.js +1444 -826
- package/dist/ui.min.css +2 -1
- package/dist/ui.min.js +1444 -826
- package/dist/ui.scss +569 -7
- package/esm/components/QField/QField.d.ts.map +1 -1
- package/esm/components/QField/QField.vue.js +1 -1
- package/esm/components/QGauge/QGauge.d.ts +56 -0
- package/esm/components/QGauge/QGauge.d.ts.map +1 -0
- package/esm/components/QGauge/QGauge.vue.js +305 -0
- package/esm/components/QGauge/QGauge2.vue.js +5 -0
- package/esm/components/QGauge/constants.d.ts +6 -0
- package/esm/components/QGauge/constants.d.ts.map +1 -0
- package/esm/components/QGauge/constants.js +8 -0
- package/esm/components/QGauge/index.d.ts +124 -0
- package/esm/components/QGauge/index.d.ts.map +1 -0
- package/esm/components/QGauge/index.js +6 -0
- package/esm/components/QGauge/types.d.ts +146 -0
- package/esm/components/QGauge/types.d.ts.map +1 -0
- package/esm/components/QInputGroup/QInputGroup.d.ts +147 -3
- package/esm/components/QInputGroup/QInputGroup.d.ts.map +1 -1
- package/esm/components/QInputGroup/QInputGroup.vue.js +32 -23
- package/esm/components/QInputGroup/index.d.ts +81 -4
- package/esm/components/QInputGroup/index.d.ts.map +1 -1
- package/esm/components/QList/QList.d.ts.map +1 -1
- package/esm/components/QList/QList.vue.js +3 -1
- package/esm/components/QList/QListItem.d.ts.map +1 -1
- package/esm/components/QList/QListItem.vue.js +24 -28
- package/esm/components/QList/types.d.ts +1 -1
- package/esm/components/QOverlay/types.d.ts +3 -1
- package/esm/components/QOverlay/types.d.ts.map +1 -1
- package/esm/components/QPhoneField/QPhoneField.d.ts +2263 -0
- package/esm/components/QPhoneField/QPhoneField.d.ts.map +1 -0
- package/esm/components/QPhoneField/QPhoneField.vue.js +478 -0
- package/esm/components/QPhoneField/QPhoneField2.vue.js +5 -0
- package/esm/components/QPhoneField/constants.d.ts +11 -0
- package/esm/components/QPhoneField/constants.d.ts.map +1 -0
- package/esm/components/QPhoneField/constants.js +14 -0
- package/esm/components/QPhoneField/index.d.ts +1253 -0
- package/esm/components/QPhoneField/index.d.ts.map +1 -0
- package/esm/components/QPhoneField/index.js +6 -0
- package/esm/components/QPhoneField/types.d.ts +108 -0
- package/esm/components/QPhoneField/types.d.ts.map +1 -0
- package/esm/components/QSelect/QSelect.d.ts +16 -1
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +158 -129
- package/esm/components/QSelect/index.d.ts +31 -3
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/esm/components/QSelect/types.d.ts +13 -0
- package/esm/components/QSelect/types.d.ts.map +1 -1
- package/esm/components/index.d.ts +2 -0
- package/esm/components/index.d.ts.map +1 -1
- package/esm/components/index.js +64 -60
- package/esm/composables/useColor/index.d.ts +8 -0
- package/esm/composables/useColor/index.d.ts.map +1 -1
- package/esm/composables/useColor/index.js +16 -18
- package/esm/composables/useDialog/index.d.ts +2 -88
- package/esm/composables/useDialog/index.d.ts.map +1 -1
- package/esm/composables/useDialog/index.js +6 -6
- package/esm/composables/useDialog/types.d.ts +14 -4
- package/esm/composables/useDialog/types.d.ts.map +1 -1
- package/esm/index.d.ts +2 -0
- package/esm/vendors/country-flag-icons/modules/countries.json.js +4 -0
- package/esm/vendors/country-flag-icons/modules/hasFlag.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouType.js +312 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.PatternMatcher.js +142 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.PatternParser.js +145 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.complete.js +45 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.js +258 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeFormatter.util.js +57 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeParser.js +242 -0
- package/esm/vendors/libphonenumber-js/es6/AsYouTypeState.js +115 -0
- package/esm/vendors/libphonenumber-js/es6/ParseError.js +116 -0
- package/esm/vendors/libphonenumber-js/es6/PhoneNumber.js +164 -0
- package/esm/vendors/libphonenumber-js/es6/constants.js +4 -0
- package/esm/vendors/libphonenumber-js/es6/format.js +77 -0
- package/esm/vendors/libphonenumber-js/es6/formatIncompletePhoneNumber.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/getCountries.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/getExampleNumber.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/RFC3966.js +9 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/applyInternationalSeparatorStyle.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/checkNumberLength.js +21 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extension/createExtensionPattern.js +11 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extension/extractExtension.js +16 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extractCountryCallingCode.js +36 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js +21 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extractFormattedPhoneNumberFromPossibleRfc3966NumberUri.js +18 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extractNationalNumber.js +27 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js +27 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/extractPhoneContext.js +15 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/formatNationalNumberUsingFormat.js +11 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/getCountryAndCallingCodeFromOneOfThem.js +13 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/getCountryByCallingCode.js +12 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/getCountryByNationalNumber.js +43 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/getIddPrefix.js +10 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/getNumberType.js +61 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/getPossibleCountriesForNumber.js +14 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/isCallingCode.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/isCountryCode.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/isObject.js +7 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/isViablePhoneNumber.js +12 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/matchesEntirely.js +6 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/mergeArrays.js +39 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/parseDigits.js +82 -0
- package/esm/vendors/libphonenumber-js/es6/helpers/stripIddPrefix.js +18 -0
- package/esm/vendors/libphonenumber-js/es6/isPossible.js +32 -0
- package/esm/vendors/libphonenumber-js/es6/isValid.js +11 -0
- package/esm/vendors/libphonenumber-js/es6/metadata.js +474 -0
- package/esm/vendors/libphonenumber-js/es6/normalizeArguments.js +110 -0
- package/esm/vendors/libphonenumber-js/es6/parse.js +103 -0
- package/esm/vendors/libphonenumber-js/es6/parseIncompletePhoneNumber.js +48 -0
- package/esm/vendors/libphonenumber-js/es6/parsePhoneNumber.js +9 -0
- package/esm/vendors/libphonenumber-js/es6/parsePhoneNumberWithError_.js +58 -0
- package/esm/vendors/libphonenumber-js/es6/parsePhoneNumber_.js +66 -0
- package/esm/vendors/libphonenumber-js/es6/tools/semver-compare.js +14 -0
- package/esm/vendors/libphonenumber-js/examples.mobile.json.js +250 -0
- package/esm/vendors/libphonenumber-js/max/exports/AsYouType.js +9 -0
- package/esm/vendors/libphonenumber-js/max/exports/formatIncompletePhoneNumber.js +8 -0
- package/esm/vendors/libphonenumber-js/max/exports/getCountries.js +8 -0
- package/esm/vendors/libphonenumber-js/max/exports/getCountryCallingCode.js +8 -0
- package/esm/vendors/libphonenumber-js/max/exports/getExampleNumber.js +8 -0
- package/esm/vendors/libphonenumber-js/max/exports/isSupportedCountry.js +8 -0
- package/esm/vendors/libphonenumber-js/max/exports/parsePhoneNumber.js +8 -0
- package/esm/vendors/libphonenumber-js/max/exports/withMetadataArgument.js +8 -0
- package/esm/vendors/libphonenumber-js/metadata.max.json.js +10489 -0
- package/package.json +3 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { QFieldProps } from '../QField';
|
|
2
2
|
import { Group, Item } from '../QList/types';
|
|
3
|
+
import { QOverlayAnchor } from '../QOverlay';
|
|
3
4
|
import { DEFAULT_ICONS, DEFAULT_TEXTS } from './constants';
|
|
4
5
|
export type QSelectProps = QFieldProps & {
|
|
5
6
|
/**
|
|
@@ -26,6 +27,18 @@ export type QSelectProps = QFieldProps & {
|
|
|
26
27
|
* @category Behavior
|
|
27
28
|
*/
|
|
28
29
|
inline?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* An alternative element used to anchor and size the options overlay.
|
|
32
|
+
*
|
|
33
|
+
* @category Identification
|
|
34
|
+
*/
|
|
35
|
+
overlayAnchor?: QOverlayAnchor;
|
|
36
|
+
/**
|
|
37
|
+
* Whether pressing Tab while an option is focused selects it before focus moves away.
|
|
38
|
+
*
|
|
39
|
+
* @category Behavior
|
|
40
|
+
*/
|
|
41
|
+
selectOnTab?: boolean;
|
|
29
42
|
/**
|
|
30
43
|
* Whether multiple options can be selected.
|
|
31
44
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAC5C,OAAO,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAA;AACjD,OAAO,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAE/D,MAAM,MAAM,YAAY,GAAG,WAAW,GAAG;IACxC;;;;OAIG;IACH,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;IAEd;;;;OAIG;IACH,MAAM,CAAC,EAAE,KAAK,EAAE,CAAA;IAEhB;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;;;OAIG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;;;OAIG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;;;;OAKG;IAEH,UAAU,CAAC,EAAE,GAAG,CAAA;IAEhB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;IAE5B;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAC5C,OAAO,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAA;AACjD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AACjD,OAAO,KAAK,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAE/D,MAAM,MAAM,YAAY,GAAG,WAAW,GAAG;IACxC;;;;OAIG;IACH,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;IAEd;;;;OAIG;IACH,MAAM,CAAC,EAAE,KAAK,EAAE,CAAA;IAEhB;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;;;OAIG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;;;OAIG;IACH,aAAa,CAAC,EAAE,cAAc,CAAA;IAE9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;IAErB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;;;OAIG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;;;;OAKG;IAEH,UAAU,CAAC,EAAE,GAAG,CAAA;IAEhB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;IAE5B;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA"}
|
|
@@ -19,6 +19,7 @@ export * from './QDropdownMenu';
|
|
|
19
19
|
export * from './QField';
|
|
20
20
|
export * from './QFileUpload';
|
|
21
21
|
export * from './QFocusWrap';
|
|
22
|
+
export * from './QGauge';
|
|
22
23
|
export * from './QGrid';
|
|
23
24
|
export * from './QIcon';
|
|
24
25
|
export * from './QInputGroup';
|
|
@@ -29,6 +30,7 @@ export * from './QMeter';
|
|
|
29
30
|
export * from './QObfuscation';
|
|
30
31
|
export * from './QOverlay';
|
|
31
32
|
export * from './QPasswordField';
|
|
33
|
+
export * from './QPhoneField';
|
|
32
34
|
export * from './QPopover';
|
|
33
35
|
export * from './QPropertyList';
|
|
34
36
|
export * from './QRadioGroup';
|
|
@@ -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,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"}
|
|
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,UAAU,CAAA;AACxB,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,eAAe,CAAA;AAC7B,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
|
@@ -24,32 +24,34 @@ 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
|
|
27
|
+
import { QDefaultsProvider as te } from "./QDefaultsProvider/index.js";
|
|
28
|
+
import { QDialog as M, QDialogProvider as N } from "./QDialog/index.js";
|
|
29
|
+
import { QDivider as P } from "./QDivider/index.js";
|
|
30
|
+
import { QDropdownMenu as F } from "./QDropdownMenu/index.js";
|
|
31
31
|
import { QFileUpload as I } from "./QFileUpload/index.js";
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
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 {
|
|
32
|
+
import { QGauge as L } from "./QGauge/index.js";
|
|
33
|
+
import { QCol as R, QContainer as z, QRow as B, QSpacer as V } from "./QGrid/index.js";
|
|
34
|
+
import { QInputGroup as H } from "./QInputGroup/index.js";
|
|
35
|
+
import { QLineLoader as U } from "./QLineLoader/index.js";
|
|
36
|
+
import { QMeter as W } from "./QMeter/index.js";
|
|
37
|
+
import { QObfuscation as G } from "./QObfuscation/index.js";
|
|
38
|
+
import { QPasswordField as K } from "./QPasswordField/index.js";
|
|
39
|
+
import { QPopover as q } from "./QPopover/index.js";
|
|
40
|
+
import { QSelect as J } from "./QSelect/index.js";
|
|
41
|
+
import { QPhoneField as Y } from "./QPhoneField/index.js";
|
|
42
|
+
import { QPropertyList as X, QPropertyListGroup as Z, QPropertyListPanel as Q, QPropertyListRow as $ } from "./QPropertyList/index.js";
|
|
43
|
+
import { QRadioButton as ne, QRadioGroup as re } from "./QRadioGroup/index.js";
|
|
44
|
+
import { QSection as ie } from "./QSection/index.js";
|
|
45
|
+
import { QToggle as ae } from "./QToggle/index.js";
|
|
46
|
+
import { QSidebar as oe, QSidebarItem as se } from "./QSidebar/index.js";
|
|
47
|
+
import { QTab as ce, QTabs as le } from "./QTabs/index.js";
|
|
48
|
+
import { QTextArea as ue } from "./QTextArea/index.js";
|
|
49
|
+
import { QThemeProvider as de } from "./QThemeProvider/index.js";
|
|
50
|
+
import { QToast as fe, QToaster as pe } from "./QToast/index.js";
|
|
51
|
+
import { QToggleGroup as me, QToggleGroupItem as he } from "./QToggleGroup/index.js";
|
|
52
|
+
import { QTooltip as ge } from "./QTooltip/index.js";
|
|
51
53
|
//#region src/components/index.ts
|
|
52
|
-
var
|
|
54
|
+
var _e = /* @__PURE__ */ ee({
|
|
53
55
|
DEFAULT_TEXTS: () => b,
|
|
54
56
|
QAccordion: () => c,
|
|
55
57
|
QAccordionItem: () => l,
|
|
@@ -62,62 +64,64 @@ var he = /* @__PURE__ */ ee({
|
|
|
62
64
|
QCarousel: () => h,
|
|
63
65
|
QCheckbox: () => _,
|
|
64
66
|
QCheckboxLabel: () => v,
|
|
65
|
-
QCol: () =>
|
|
67
|
+
QCol: () => R,
|
|
66
68
|
QCollapsible: () => s,
|
|
67
69
|
QColorPicker: () => S,
|
|
68
70
|
QCombobox: () => k,
|
|
69
|
-
QContainer: () =>
|
|
71
|
+
QContainer: () => z,
|
|
70
72
|
QDateTimePicker: () => j,
|
|
71
|
-
QDefaultsProvider: () =>
|
|
72
|
-
QDialog: () =>
|
|
73
|
-
QDialogProvider: () =>
|
|
73
|
+
QDefaultsProvider: () => te,
|
|
74
|
+
QDialog: () => M,
|
|
75
|
+
QDialogProvider: () => N,
|
|
74
76
|
QDismissibleLayer: () => E,
|
|
75
|
-
QDivider: () =>
|
|
76
|
-
QDropdownMenu: () =>
|
|
77
|
+
QDivider: () => P,
|
|
78
|
+
QDropdownMenu: () => F,
|
|
77
79
|
QField: () => y,
|
|
78
80
|
QFileUpload: () => I,
|
|
79
81
|
QFocusWrap: () => D,
|
|
82
|
+
QGauge: () => L,
|
|
80
83
|
QIcon: () => r,
|
|
81
84
|
QIconFont: () => i,
|
|
82
85
|
QIconImg: () => a,
|
|
83
86
|
QIconSvg: () => o,
|
|
84
|
-
QInputGroup: () =>
|
|
87
|
+
QInputGroup: () => H,
|
|
85
88
|
QLabel: () => g,
|
|
86
|
-
QLineLoader: () =>
|
|
89
|
+
QLineLoader: () => U,
|
|
87
90
|
QList: () => C,
|
|
88
91
|
QListItem: () => w,
|
|
89
92
|
QListItemGroup: () => T,
|
|
90
|
-
QMeter: () =>
|
|
91
|
-
QObfuscation: () =>
|
|
93
|
+
QMeter: () => W,
|
|
94
|
+
QObfuscation: () => G,
|
|
92
95
|
QOverlay: () => O,
|
|
93
|
-
QPasswordField: () =>
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
96
|
+
QPasswordField: () => K,
|
|
97
|
+
QPhoneField: () => Y,
|
|
98
|
+
QPopover: () => q,
|
|
99
|
+
QPropertyList: () => X,
|
|
100
|
+
QPropertyListGroup: () => Z,
|
|
101
|
+
QPropertyListPanel: () => Q,
|
|
102
|
+
QPropertyListRow: () => $,
|
|
103
|
+
QRadioButton: () => ne,
|
|
104
|
+
QRadioGroup: () => re,
|
|
105
|
+
QRow: () => B,
|
|
106
|
+
QSection: () => ie,
|
|
107
|
+
QSelect: () => J,
|
|
108
|
+
QSidebar: () => oe,
|
|
109
|
+
QSidebarItem: () => se,
|
|
106
110
|
QSkeletonLoader: () => m,
|
|
107
|
-
QSpacer: () =>
|
|
111
|
+
QSpacer: () => V,
|
|
108
112
|
QSpinnerLoader: () => e,
|
|
109
113
|
QSwitch: () => A,
|
|
110
|
-
QTab: () =>
|
|
111
|
-
QTabs: () =>
|
|
112
|
-
QTextArea: () =>
|
|
114
|
+
QTab: () => ce,
|
|
115
|
+
QTabs: () => le,
|
|
116
|
+
QTextArea: () => ue,
|
|
113
117
|
QTextField: () => x,
|
|
114
|
-
QThemeProvider: () =>
|
|
115
|
-
QToast: () =>
|
|
116
|
-
QToaster: () =>
|
|
117
|
-
QToggle: () =>
|
|
118
|
-
QToggleGroup: () =>
|
|
119
|
-
QToggleGroupItem: () =>
|
|
120
|
-
QTooltip: () =>
|
|
118
|
+
QThemeProvider: () => de,
|
|
119
|
+
QToast: () => fe,
|
|
120
|
+
QToaster: () => pe,
|
|
121
|
+
QToggle: () => ae,
|
|
122
|
+
QToggleGroup: () => me,
|
|
123
|
+
QToggleGroupItem: () => he,
|
|
124
|
+
QTooltip: () => ge
|
|
121
125
|
});
|
|
122
126
|
//#endregion
|
|
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,
|
|
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, R as QCol, s as QCollapsible, S as QColorPicker, k as QCombobox, z as QContainer, j as QDateTimePicker, te as QDefaultsProvider, M as QDialog, N as QDialogProvider, E as QDismissibleLayer, P as QDivider, F as QDropdownMenu, y as QField, I as QFileUpload, D as QFocusWrap, L 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, O as QOverlay, K as QPasswordField, Y as QPhoneField, q as QPopover, X as QPropertyList, Z as QPropertyListGroup, Q as QPropertyListPanel, $ as QPropertyListRow, ne as QRadioButton, re as QRadioGroup, B as QRow, ie as QSection, J as QSelect, oe as QSidebar, se as QSidebarItem, m as QSkeletonLoader, V as QSpacer, e as QSpinnerLoader, A as QSwitch, ce as QTab, le as QTabs, ue as QTextArea, x as QTextField, de as QThemeProvider, fe as QToast, pe as QToaster, ae as QToggle, me as QToggleGroup, he as QToggleGroupItem, ge as QTooltip, _e as components_exports };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { MaybeRef } from 'vue';
|
|
2
2
|
import { UseColorReturn } from './types';
|
|
3
|
+
import { ColorScheme } from '../../utils/color';
|
|
3
4
|
/**
|
|
4
5
|
* A composable function that processes and returns color-related information and styles.
|
|
5
6
|
*
|
|
@@ -23,6 +24,13 @@ import { UseColorReturn } from './types';
|
|
|
23
24
|
* @throws Will log an error to console if color parsing fails
|
|
24
25
|
*/
|
|
25
26
|
export declare function useColor(color: MaybeRef<string | undefined>): UseColorReturn;
|
|
27
|
+
/**
|
|
28
|
+
* Resolves a utility color against a color scheme while preserving CSS and custom colors.
|
|
29
|
+
*
|
|
30
|
+
* This pure variant is useful when a component needs to resolve a dynamic collection of
|
|
31
|
+
* colors and therefore cannot create one `useColor` instance per collection entry.
|
|
32
|
+
*/
|
|
33
|
+
export declare function resolveColor(color: string, scheme: Readonly<ColorScheme>): string;
|
|
26
34
|
/**
|
|
27
35
|
* Checks if a given string represents a valid CSS color format.
|
|
28
36
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/composables/useColor/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,KAAK,EAAc,cAAc,EAAE,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/composables/useColor/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAA;AACnC,OAAO,KAAK,EAAc,cAAc,EAAE,MAAM,SAAS,CAAA;AACzD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAA;AAcpD;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,wBAAgB,QAAQ,CAAC,KAAK,EAAE,QAAQ,CAAC,MAAM,GAAG,SAAS,CAAC,GAAG,cAAc,CAwC5E;AAED;;;;;GAKG;AACH,wBAAgB,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,CAAC,WAAW,CAAC,GAAG,MAAM,CAGjF;AAED;;;;;GAKG;AACH,wBAAgB,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAEjD"}
|
|
@@ -6,38 +6,36 @@ import { useTheme as o } from "../theme.js";
|
|
|
6
6
|
import { computed as s, unref as c } from "vue";
|
|
7
7
|
//#region src/composables/useColor/index.ts
|
|
8
8
|
function l(l) {
|
|
9
|
-
let
|
|
9
|
+
let f = s(() => c(l));
|
|
10
10
|
return {
|
|
11
|
-
isUtilityColor: f,
|
|
11
|
+
isUtilityColor: s(() => f.value ? !d(f.value) : !1),
|
|
12
12
|
style: s(() => {
|
|
13
|
-
let s =
|
|
13
|
+
let s = f.value;
|
|
14
14
|
if (!s) return;
|
|
15
|
-
let c = s,
|
|
16
|
-
if (f.value) {
|
|
17
|
-
let e = s;
|
|
18
|
-
c = l.current.value.scheme[e] ?? s;
|
|
19
|
-
}
|
|
20
|
-
let u;
|
|
15
|
+
let c = u(s, o().current.value.scheme), l;
|
|
21
16
|
try {
|
|
22
|
-
if (
|
|
17
|
+
if (l = r(c), !l) return;
|
|
23
18
|
} catch (e) {
|
|
24
19
|
console.error("Failed to parse color:", e);
|
|
25
20
|
return;
|
|
26
21
|
}
|
|
27
|
-
let
|
|
22
|
+
let d = i(t(l).l), p = a(l, 25), m = e(p);
|
|
28
23
|
return {
|
|
29
24
|
mainColor: c,
|
|
30
|
-
mainColorRgb: n(
|
|
31
|
-
onMainColor:
|
|
32
|
-
hoverColor:
|
|
33
|
-
hoverColorRgb: n(
|
|
34
|
-
onHoverColor:
|
|
25
|
+
mainColorRgb: n(l),
|
|
26
|
+
onMainColor: d,
|
|
27
|
+
hoverColor: m,
|
|
28
|
+
hoverColorRgb: n(p),
|
|
29
|
+
onHoverColor: d
|
|
35
30
|
};
|
|
36
31
|
})
|
|
37
32
|
};
|
|
38
33
|
}
|
|
39
|
-
function u(e) {
|
|
34
|
+
function u(e, t) {
|
|
35
|
+
return d(e) ? e : t[e] ?? e;
|
|
36
|
+
}
|
|
37
|
+
function d(e) {
|
|
40
38
|
return e.startsWith("#") || e.startsWith("rgb") || e.startsWith("hsl");
|
|
41
39
|
}
|
|
42
40
|
//#endregion
|
|
43
|
-
export {
|
|
41
|
+
export { d as isCssColor, u as resolveColor, l as useColor };
|
|
@@ -1,94 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { UseDialogReturn } from './types.ts';
|
|
2
2
|
/**
|
|
3
3
|
* Manager for dialog models
|
|
4
4
|
*
|
|
5
5
|
* @returns Dialog state and functions
|
|
6
6
|
*/
|
|
7
|
-
export declare function useDialog():
|
|
8
|
-
addDialog: (props: QDialogProps, id?: string, options?: QDialogOptions, handlers?: QDialogHandlers) => string;
|
|
9
|
-
removeDialog: (id: string) => void;
|
|
10
|
-
dialogs: {
|
|
11
|
-
id: string;
|
|
12
|
-
props: {
|
|
13
|
-
id?: string | undefined;
|
|
14
|
-
class?: string | unknown[] | undefined;
|
|
15
|
-
modelValue?: boolean | undefined;
|
|
16
|
-
title?: string | undefined;
|
|
17
|
-
text?: string | undefined;
|
|
18
|
-
icon?: {
|
|
19
|
-
id?: string | undefined;
|
|
20
|
-
class?: string | unknown[] | undefined;
|
|
21
|
-
icon: string;
|
|
22
|
-
size?: number | undefined;
|
|
23
|
-
color?: string | undefined;
|
|
24
|
-
type?: "svg" | "font" | "img" | undefined;
|
|
25
|
-
} | undefined;
|
|
26
|
-
buttons?: {
|
|
27
|
-
id: string;
|
|
28
|
-
icon?: {
|
|
29
|
-
id?: string | undefined;
|
|
30
|
-
class?: string | unknown[] | undefined;
|
|
31
|
-
icon: string;
|
|
32
|
-
size?: number | undefined;
|
|
33
|
-
color?: string | undefined;
|
|
34
|
-
type?: "svg" | "font" | "img" | undefined;
|
|
35
|
-
} | undefined;
|
|
36
|
-
action?: {
|
|
37
|
-
(value?: string): void;
|
|
38
|
-
} | undefined;
|
|
39
|
-
props: {
|
|
40
|
-
id?: string | undefined;
|
|
41
|
-
class?: string | unknown[] | undefined;
|
|
42
|
-
label?: string | undefined;
|
|
43
|
-
variant?: import('../../components/index.ts').QButtonVariant | undefined;
|
|
44
|
-
color?: string | undefined;
|
|
45
|
-
borderless?: boolean | undefined;
|
|
46
|
-
elevated?: boolean | undefined;
|
|
47
|
-
block?: boolean | undefined;
|
|
48
|
-
size?: import('../../components/index.ts').QButtonSize | undefined;
|
|
49
|
-
iconPos?: import('../../components/index.ts').QButtonIconPosition | undefined;
|
|
50
|
-
pill?: boolean | undefined;
|
|
51
|
-
disabled?: boolean | undefined;
|
|
52
|
-
loading?: boolean | undefined;
|
|
53
|
-
};
|
|
54
|
-
}[] | undefined;
|
|
55
|
-
backdropBlur?: boolean | undefined;
|
|
56
|
-
size?: import('../../components/index.ts').QDialogSize | undefined;
|
|
57
|
-
centerVertically?: boolean | undefined;
|
|
58
|
-
attach?: string | undefined;
|
|
59
|
-
inline?: boolean | undefined;
|
|
60
|
-
focusWrap?: boolean | undefined;
|
|
61
|
-
initialFocus?: (HTMLElement | string | null) | undefined;
|
|
62
|
-
focusWithinOnActivate?: boolean | undefined;
|
|
63
|
-
closingFocus?: (HTMLElement | string) | undefined;
|
|
64
|
-
returnFocusOnDeactivate?: boolean | undefined;
|
|
65
|
-
dismissible?: boolean | undefined;
|
|
66
|
-
html?: boolean | undefined;
|
|
67
|
-
input?: {
|
|
68
|
-
type: string;
|
|
69
|
-
placeholder?: string | undefined;
|
|
70
|
-
validator?: ((value: string) => string | undefined) | undefined;
|
|
71
|
-
} | undefined;
|
|
72
|
-
icons?: {
|
|
73
|
-
close: {
|
|
74
|
-
icon: string;
|
|
75
|
-
};
|
|
76
|
-
} | undefined;
|
|
77
|
-
};
|
|
78
|
-
options?: {
|
|
79
|
-
size?: import('../../components/index.ts').QDialogSize | undefined;
|
|
80
|
-
dismissible?: boolean | undefined;
|
|
81
|
-
input?: {
|
|
82
|
-
type: string;
|
|
83
|
-
placeholder?: string | undefined;
|
|
84
|
-
validator?: ((value: string) => string | undefined) | undefined;
|
|
85
|
-
} | undefined;
|
|
86
|
-
} | undefined;
|
|
87
|
-
handlers?: {
|
|
88
|
-
onEnter?: (() => void) | undefined;
|
|
89
|
-
onLeave?: (() => boolean | void) | undefined;
|
|
90
|
-
onAction?: ((val: string) => void) | undefined;
|
|
91
|
-
} | undefined;
|
|
92
|
-
}[];
|
|
93
|
-
};
|
|
7
|
+
export declare function useDialog(): UseDialogReturn;
|
|
94
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/composables/useDialog/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/composables/useDialog/index.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAkB,eAAe,EAAE,MAAM,YAAY,CAAA;AAQjE;;;;GAIG;AACH,wBAAgB,SAAS,IAAI,eAAe,CAyD3C"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { useId as e } from "../uid.js";
|
|
2
|
-
import {
|
|
2
|
+
import { ref as t } from "vue";
|
|
3
3
|
//#region src/composables/useDialog/index.ts
|
|
4
|
-
var n = t(
|
|
4
|
+
var n = t([]);
|
|
5
5
|
function r() {
|
|
6
6
|
function t(t, r, i, a) {
|
|
7
7
|
let o = e(r).value;
|
|
8
|
-
return n.
|
|
8
|
+
return n.value.push({
|
|
9
9
|
id: o,
|
|
10
10
|
props: {
|
|
11
11
|
...t,
|
|
@@ -16,11 +16,11 @@ function r() {
|
|
|
16
16
|
}), a?.onEnter && a.onEnter(), o;
|
|
17
17
|
}
|
|
18
18
|
function r(e) {
|
|
19
|
-
let t = n.
|
|
20
|
-
t !== -1 && (n.
|
|
19
|
+
let t = n.value.findIndex((t) => t.id === e);
|
|
20
|
+
t !== -1 && (n.value[t]?.handlers?.onLeave?.() ?? !0) && n.value.splice(t, 1);
|
|
21
21
|
}
|
|
22
22
|
return {
|
|
23
|
-
|
|
23
|
+
dialogs: n,
|
|
24
24
|
addDialog: t,
|
|
25
25
|
removeDialog: r
|
|
26
26
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
1
2
|
import { QDialogProps, QDialogOptions, QDialogHandlers } from '../../components/QDialog/types.ts';
|
|
2
3
|
/**
|
|
3
4
|
* Represents an instance of a dialog component.
|
|
@@ -21,12 +22,21 @@ export type DialogInstance = {
|
|
|
21
22
|
handlers?: QDialogHandlers;
|
|
22
23
|
};
|
|
23
24
|
/**
|
|
24
|
-
* Represents the
|
|
25
|
+
* Represents the return type of the `useDialog` composable, providing methods and state
|
|
26
|
+
* for managing dialog instances.
|
|
25
27
|
*/
|
|
26
|
-
export type
|
|
28
|
+
export type UseDialogReturn = {
|
|
27
29
|
/**
|
|
28
|
-
*
|
|
30
|
+
* A Vue Ref containing the list of currently active dialog instances.
|
|
29
31
|
*/
|
|
30
|
-
dialogs: DialogInstance[]
|
|
32
|
+
dialogs: Ref<DialogInstance[]>;
|
|
33
|
+
/**
|
|
34
|
+
* Adds a new dialog to the state with the specified properties and an optional custom ID.
|
|
35
|
+
*/
|
|
36
|
+
addDialog(props: QDialogProps, id?: string, options?: QDialogOptions, handlers?: QDialogHandlers): string;
|
|
37
|
+
/**
|
|
38
|
+
* Removes a dialog from the state by its unique identifier.
|
|
39
|
+
*/
|
|
40
|
+
removeDialog(id: string): void;
|
|
31
41
|
};
|
|
32
42
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/composables/useDialog/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACX,YAAY,EACZ,cAAc,EACd,eAAe,EACf,MAAM,mCAAmC,CAAA;AAE1C;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC5B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAA;IAEV;;OAEG;IACH,KAAK,EAAE,YAAY,CAAA;IAEnB;;OAEG;IACH,OAAO,CAAC,EAAE,cAAc,CAAA;IAExB;;OAEG;IACH,QAAQ,CAAC,EAAE,eAAe,CAAA;CAC1B,CAAA;AAED
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/composables/useDialog/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAC9B,OAAO,KAAK,EACX,YAAY,EACZ,cAAc,EACd,eAAe,EACf,MAAM,mCAAmC,CAAA;AAE1C;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC5B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAA;IAEV;;OAEG;IACH,KAAK,EAAE,YAAY,CAAA;IAEnB;;OAEG;IACH,OAAO,CAAC,EAAE,cAAc,CAAA;IAExB;;OAEG;IACH,QAAQ,CAAC,EAAE,eAAe,CAAA;CAC1B,CAAA;AAED;;;GAGG;AACH,MAAM,MAAM,eAAe,GAAG;IAC7B;;OAEG;IACH,OAAO,EAAE,GAAG,CAAC,cAAc,EAAE,CAAC,CAAA;IAE9B;;OAEG;IACH,SAAS,CACR,KAAK,EAAE,YAAY,EACnB,EAAE,CAAC,EAAE,MAAM,EACX,OAAO,CAAC,EAAE,cAAc,EACxB,QAAQ,CAAC,EAAE,eAAe,GACxB,MAAM,CAAA;IAET;;OAEG;IACH,YAAY,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,CAAA;CAC9B,CAAA"}
|
package/esm/index.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ declare module '@vue/runtime-core' {
|
|
|
32
32
|
QField: typeof import('@quidgest/ui/components')['QField']
|
|
33
33
|
QFileUpload: typeof import('@quidgest/ui/components')['QFileUpload']
|
|
34
34
|
QFocusWrap: typeof import('@quidgest/ui/components')['QFocusWrap']
|
|
35
|
+
QGauge: typeof import('@quidgest/ui/components')['QGauge']
|
|
35
36
|
QCol: typeof import('@quidgest/ui/components')['QCol']
|
|
36
37
|
QContainer: typeof import('@quidgest/ui/components')['QContainer']
|
|
37
38
|
QRow: typeof import('@quidgest/ui/components')['QRow']
|
|
@@ -50,6 +51,7 @@ declare module '@vue/runtime-core' {
|
|
|
50
51
|
QObfuscation: typeof import('@quidgest/ui/components')['QObfuscation']
|
|
51
52
|
QOverlay: typeof import('@quidgest/ui/components')['QOverlay']
|
|
52
53
|
QPasswordField: typeof import('@quidgest/ui/components')['QPasswordField']
|
|
54
|
+
QPhoneField: typeof import('@quidgest/ui/components')['QPhoneField']
|
|
53
55
|
QPopover: typeof import('@quidgest/ui/components')['QPopover']
|
|
54
56
|
QPropertyList: typeof import('@quidgest/ui/components')['QPropertyList']
|
|
55
57
|
QPropertyListRow: typeof import('@quidgest/ui/components')['QPropertyListRow']
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
//#region ../../node_modules/.pnpm/country-flag-icons@1.6.19/node_modules/country-flag-icons/modules/countries.json.js
|
|
2
|
+
var e = /* @__PURE__ */ "AC.AD.AE.AF.AG.AI.AL.AM.AO.AQ.AR.AS.AT.AU.AW.AX.AZ.BA.BB.BD.BE.BF.BG.BH.BI.BJ.BL.BM.BN.BO.BQ-BO.BQ-SA.BQ-SE.BQ.BR.BS.BT.BV.BW.BY.BZ.CA.CC.CD.CF.CG.CH.CI.CK.CL.CM.CN.CO.CR.CU.CV.CW.CX.CY.CZ.DE.DJ.DK.DM.DO.DZ.EC.EE.EG.EH.ER.ES-CT.ES.ET.EU.FI.FJ.FK.FM.FO.FR.GA.GB-ENG.GB-NIR.GB-SCT.GB-WLS.GB.GD.GE.GF.GG.GH.GI.GL.GM.GN.GP.GQ.GR.GS.GT.GU.GW.GY.HK.HM.HN.HR.HT.HU.IC.ID.IE.IL.IM.IN.IO.IQ.IR.IS.IT.JE.JM.JO.JP.KE.KG.KH.KI.KM.KN.KP.KR.KW.KY.KZ.LA.LB.LC.LI.LK.LR.LS.LT.LU.LV.LY.MA.MC.MD.ME.MF.MG.MH.MK.ML.MM.MN.MO.MP.MQ.MR.MS.MT.MU.MV.MW.MX.MY.MZ.NA.NC.NE.NF.NG.NI.NL.NO.NP.NR.NU.NZ.OM.PA.PE.PF.PG.PH.PK.PL.PM.PN.PR.PS.PT.PW.PY.QA.RE.RO.RS.RU.RW.SA.SB.SC.SD.SE.SG.SH.SI.SJ.SK.SL.SM.SN.SO.SR.SS.ST.SV.SX.SY.SZ.TA.TC.TD.TF.TG.TH.TJ.TK.TL.TM.TN.TO.TR.TT.TV.TW.TZ.UA.UG.UM.US.UY.UZ.VA.VC.VE.VG.VI.VN.VU.WF.WS.XA.XC.XK.XO.YE.YT.ZA.ZM.ZW".split(".");
|
|
3
|
+
//#endregion
|
|
4
|
+
export { e as default };
|