@voidzero-dev/vite-plus-test 0.1.11 → 0.1.12-alpha.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.
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
type ARIAWidgetRole =
|
|
2
|
+
| "button"
|
|
3
|
+
| "checkbox"
|
|
4
|
+
| "gridcell"
|
|
5
|
+
| "link"
|
|
6
|
+
| "menuitem"
|
|
7
|
+
| "menuitemcheckbox"
|
|
8
|
+
| "menuitemradio"
|
|
9
|
+
| "option"
|
|
10
|
+
| "progressbar"
|
|
11
|
+
| "radio"
|
|
12
|
+
| "scrollbar"
|
|
13
|
+
| "searchbox"
|
|
14
|
+
| "slider"
|
|
15
|
+
| "spinbutton"
|
|
16
|
+
| "switch"
|
|
17
|
+
| "tab"
|
|
18
|
+
| "tabpanel"
|
|
19
|
+
| "textbox"
|
|
20
|
+
| "treeitem";
|
|
21
|
+
|
|
22
|
+
type ARIACompositeWidgetRole =
|
|
23
|
+
| "combobox"
|
|
24
|
+
| "grid"
|
|
25
|
+
| "listbox"
|
|
26
|
+
| "menu"
|
|
27
|
+
| "menubar"
|
|
28
|
+
| "radiogroup"
|
|
29
|
+
| "tablist"
|
|
30
|
+
| "tree"
|
|
31
|
+
| "treegrid";
|
|
32
|
+
|
|
33
|
+
type ARIADocumentStructureRole =
|
|
34
|
+
| "application"
|
|
35
|
+
| "article"
|
|
36
|
+
| "blockquote"
|
|
37
|
+
| "caption"
|
|
38
|
+
| "cell"
|
|
39
|
+
| "columnheader"
|
|
40
|
+
| "definition"
|
|
41
|
+
| "deletion"
|
|
42
|
+
| "directory"
|
|
43
|
+
| "document"
|
|
44
|
+
| "emphasis"
|
|
45
|
+
| "feed"
|
|
46
|
+
| "figure"
|
|
47
|
+
| "generic"
|
|
48
|
+
| "group"
|
|
49
|
+
| "heading"
|
|
50
|
+
| "img"
|
|
51
|
+
| "insertion"
|
|
52
|
+
| "list"
|
|
53
|
+
| "listitem"
|
|
54
|
+
| "math"
|
|
55
|
+
| "meter"
|
|
56
|
+
| "none"
|
|
57
|
+
| "note"
|
|
58
|
+
| "paragraph"
|
|
59
|
+
| "presentation"
|
|
60
|
+
| "row"
|
|
61
|
+
| "rowgroup"
|
|
62
|
+
| "rowheader"
|
|
63
|
+
| "separator"
|
|
64
|
+
| "strong"
|
|
65
|
+
| "subscript"
|
|
66
|
+
| "superscript"
|
|
67
|
+
| "table"
|
|
68
|
+
| "term"
|
|
69
|
+
| "time"
|
|
70
|
+
| "toolbar"
|
|
71
|
+
| "tooltip";
|
|
72
|
+
|
|
73
|
+
type ARIALandmarkRole =
|
|
74
|
+
| "banner"
|
|
75
|
+
| "complementary"
|
|
76
|
+
| "contentinfo"
|
|
77
|
+
| "form"
|
|
78
|
+
| "main"
|
|
79
|
+
| "navigation"
|
|
80
|
+
| "region"
|
|
81
|
+
| "search";
|
|
82
|
+
|
|
83
|
+
type ARIALiveRegionRole = "alert" | "log" | "marquee" | "status" | "timer";
|
|
84
|
+
|
|
85
|
+
type ARIAWindowRole = "alertdialog" | "dialog";
|
|
86
|
+
|
|
87
|
+
type ARIAUncategorizedRole = "code";
|
|
88
|
+
|
|
89
|
+
export type ARIARole =
|
|
90
|
+
| ARIAWidgetRole
|
|
91
|
+
| ARIACompositeWidgetRole
|
|
92
|
+
| ARIADocumentStructureRole
|
|
93
|
+
| ARIALandmarkRole
|
|
94
|
+
| ARIALiveRegionRole
|
|
95
|
+
| ARIAWindowRole
|
|
96
|
+
| ARIAUncategorizedRole;
|
package/package.json
CHANGED
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voidzero-dev/vite-plus-test",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12-alpha.2",
|
|
4
|
+
"description": "The Unified Toolchain for the Web",
|
|
5
|
+
"homepage": "https://viteplus.dev/guide",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/voidzero-dev/vite-plus/issues"
|
|
8
|
+
},
|
|
4
9
|
"license": "MIT",
|
|
10
|
+
"author": "VoidZero Inc.",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/voidzero-dev/vite-plus.git",
|
|
14
|
+
"directory": "packages/test"
|
|
15
|
+
},
|
|
5
16
|
"files": [
|
|
6
17
|
"*.cjs",
|
|
7
18
|
"*.cts",
|
|
@@ -269,7 +280,7 @@
|
|
|
269
280
|
"tinyexec": "^1.0.2",
|
|
270
281
|
"tinyglobby": "^0.2.15",
|
|
271
282
|
"ws": "^8.18.3",
|
|
272
|
-
"@voidzero-dev/vite-plus-core": "0.1.
|
|
283
|
+
"@voidzero-dev/vite-plus-core": "0.1.12-alpha.2"
|
|
273
284
|
},
|
|
274
285
|
"devDependencies": {
|
|
275
286
|
"@blazediff/core": "1.9.1",
|