sit-onyx 1.0.0-beta.94 → 1.0.0-beta.95
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/dist/components/OnyxAlertDialog/OnyxAlertDialog.vue.d.ts +58 -0
- package/dist/components/OnyxAlertDialog/types.d.ts +8 -0
- package/dist/components/OnyxNavBar/modules/OnyxFlyoutMenu/types.d.ts +5 -0
- package/dist/i18n/locales/de-DE.json +3 -0
- package/dist/i18n/locales/en-US.json +3 -0
- package/dist/index.cjs +4 -4
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1433 -1367
- package/dist/style.css +1 -1
- package/dist/utils/validity.d.ts +1 -1
- package/package.json +4 -4
- package/src/i18n/locales/de-DE.json +3 -0
- package/src/i18n/locales/en-US.json +3 -0
package/dist/utils/validity.d.ts
CHANGED
|
@@ -8,4 +8,4 @@ export declare const transformValidityStateToObject: (validityState: ValiditySta
|
|
|
8
8
|
* Extracts the first invalid validity type from the given HTML ValidityState.
|
|
9
9
|
* "valueMissing" is prioritized over other types to align with the default browser behavior.
|
|
10
10
|
*/
|
|
11
|
-
export declare const getFirstInvalidType: (validity: ValidityState) => "
|
|
11
|
+
export declare const getFirstInvalidType: (validity: ValidityState) => "tooShort" | "tooLong" | "rangeUnderflow" | "rangeOverflow" | "patternMismatch" | "valueMissing" | "stepMismatch" | "badInput" | "typeMismatch" | "customError" | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sit-onyx",
|
|
3
3
|
"description": "A design system and Vue.js component library created by Schwarz IT",
|
|
4
|
-
"version": "1.0.0-beta.
|
|
4
|
+
"version": "1.0.0-beta.95",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Schwarz IT KG",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"storybook-dark-mode": "^4.0.2",
|
|
51
51
|
"vue": "3.5.13",
|
|
52
52
|
"vue-component-type-helpers": "^2.1.10",
|
|
53
|
-
"@sit-onyx/headless": "^1.0.0-beta.
|
|
54
|
-
"@sit-onyx/playwright-utils": "^1.0.0-beta.
|
|
53
|
+
"@sit-onyx/headless": "^1.0.0-beta.14",
|
|
54
|
+
"@sit-onyx/playwright-utils": "^1.0.0-beta.2",
|
|
55
55
|
"@sit-onyx/storybook-utils": "^1.0.0-beta.75"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
@@ -62,6 +62,6 @@
|
|
|
62
62
|
"preview": "vite serve storybook-static",
|
|
63
63
|
"test": "vitest",
|
|
64
64
|
"test:coverage": "vitest run --coverage",
|
|
65
|
-
"test:
|
|
65
|
+
"test:playwright": "playwright install && playwright test"
|
|
66
66
|
}
|
|
67
67
|
}
|