@db-ux/v-core-components 3.1.20 → 4.0.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 +11 -0
- package/dist/components/custom-select/custom-select.vue.d.ts +1 -1
- package/dist/components/custom-select/model.d.ts +1 -1
- package/dist/components/input/model.d.ts +0 -1
- package/dist/components/switch/model.d.ts +7 -3
- package/dist/components/switch/switch.vue.d.ts +6 -1
- package/dist/db-ux.es.js +1979 -1894
- package/dist/db-ux.umd.js +1 -1
- package/dist/shared/model.d.ts +2 -0
- package/dist/utils/index.d.ts +10 -0
- package/package.json +4 -4
package/dist/shared/model.d.ts
CHANGED
|
@@ -308,6 +308,8 @@ export type FormCheckProps = {
|
|
|
308
308
|
};
|
|
309
309
|
export declare const LabelVariantList: readonly ["above", "floating"];
|
|
310
310
|
export type LabelVariantType = (typeof LabelVariantList)[number];
|
|
311
|
+
export declare const LabelVariantHorizontalList: readonly ["leading", "trailing"];
|
|
312
|
+
export type LabelVariantHorizontalType = (typeof LabelVariantHorizontalList)[number];
|
|
311
313
|
export declare const AutoCompleteList: readonly ["off", "on", "name", "honorific-prefix", "given-name", "additional-name", "family-name", "honorific-suffix", "nickname", "email", "username", "new-password", "current-password", "one-time-code", "organization-title", "organization", "street-address", "shipping", "billing", "address-line1", "address-line2", "address-line3", "address-level4", "address-level3", "address-level2", "address-level1", "country", "country-name", "postal-code", "cc-name", "cc-given-name", "cc-additional-name", "cc-family-name", "cc-number", "cc-exp", "cc-exp-month", "cc-exp-year", "cc-csc", "cc-type", "transaction-currency", "transaction-amount", "language", "bday", "bday-day", "bday-month", "bday-year", "sex", "tel", "tel-country-code", "tel-national", "tel-area-code", "tel-local", "tel-extension", "impp", "url", "photo", "webauthn"];
|
|
312
314
|
export type AutoCompleteType = (typeof AutoCompleteList)[number];
|
|
313
315
|
export type FormMessageProps = {
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -10,6 +10,16 @@ export type ClassNameArg = string | {
|
|
|
10
10
|
export declare const cls: (...args: ClassNameArg[]) => string;
|
|
11
11
|
export declare const isArrayOfStrings: (value: unknown) => value is string[];
|
|
12
12
|
export declare const hasVoiceOver: () => boolean;
|
|
13
|
+
/**
|
|
14
|
+
* Determines if the current browser is Safari running on an iOS device.
|
|
15
|
+
*
|
|
16
|
+
* This function checks the user agent string to verify both iOS platform
|
|
17
|
+
* (iPad, iPhone, or iPod) and Safari browser, excluding other browsers
|
|
18
|
+
* such as Chrome, Firefox, Opera, and Edge on iOS.
|
|
19
|
+
*
|
|
20
|
+
* @returns {boolean} `true` if the browser is Safari on iOS, otherwise `false`.
|
|
21
|
+
*/
|
|
22
|
+
export declare const isIOSSafari: () => boolean;
|
|
13
23
|
export declare const delay: (fn: () => void, ms: number) => Promise<unknown>;
|
|
14
24
|
/**
|
|
15
25
|
* Some frameworks like stencil would not add "true" as value for a prop
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/v-core-components",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Vue components for @db-ux/core-components",
|
|
6
6
|
"repository": {
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@vitejs/plugin-vue": "6.0.1",
|
|
46
46
|
"replace-in-file": "8.3.0",
|
|
47
47
|
"tsx": "4.20.6",
|
|
48
|
-
"typescript": "5.
|
|
48
|
+
"typescript": "5.9.3",
|
|
49
49
|
"vite": "7.1.9",
|
|
50
50
|
"vue": "3.5.22",
|
|
51
51
|
"vue-tsc": "3.1.1"
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"sideEffects": false,
|
|
58
58
|
"source": "src/index.ts",
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@db-ux/core-components": "
|
|
61
|
-
"@db-ux/core-foundations": "
|
|
60
|
+
"@db-ux/core-components": "4.0.0",
|
|
61
|
+
"@db-ux/core-foundations": "4.0.0"
|
|
62
62
|
}
|
|
63
63
|
}
|