@lvce-editor/virtual-dom-worker 2.13.0 → 2.14.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/dist/index.d.ts +2 -1
- package/dist/index.js +2 -0
- package/package.json +1 -1
- package/src/parts/AriaRoles/AriaRoles.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ declare const Button = "button";
|
|
|
5
5
|
declare const CheckBox = "checkbox";
|
|
6
6
|
declare const ComboBox = "combobox";
|
|
7
7
|
declare const Document = "document";
|
|
8
|
+
declare const Group = "group";
|
|
8
9
|
declare const ListBox = "listbox";
|
|
9
10
|
declare const None = "none";
|
|
10
11
|
declare const Option = "option";
|
|
@@ -517,7 +518,7 @@ declare namespace VirtualDomElements {
|
|
|
517
518
|
export { A, Abbr, Article, Aside$1 as Aside, Audio, Br, Button$2 as Button, Cite, Code, Col, ColGroup, Data, Dd, Del, Div, Dl, Dt, Figcaption, Figure, Footer, H1, H2, H3, H4, H5, H6, Header, Hr, I, Img, Input, Ins, Kbd, Label$1 as Label, Li, Nav, Ol, Option$1 as Option, P, Pre, Root, Search$1 as Search, Section, Select, Span, TBody, THead, Table$1 as Table, Td, Text, TextArea, Tfoot, Th, Time, Tr, Ul, Video };
|
|
518
519
|
}
|
|
519
520
|
declare namespace AriaRoles {
|
|
520
|
-
export { Alert, Button, CheckBox, ComboBox, Document, ListBox, None, Option, Panel, ScrollBar, Status, Tab, TabList, ToolBar, Tree, TreeItem };
|
|
521
|
+
export { Alert, Button, CheckBox, ComboBox, Document, Group, ListBox, None, Option, Panel, ScrollBar, Status, Tab, TabList, ToolBar, Tree, TreeItem };
|
|
521
522
|
}
|
|
522
523
|
declare namespace AriaLive {
|
|
523
524
|
export { Polite };
|
package/dist/index.js
CHANGED
|
@@ -3,6 +3,7 @@ const Button$2 = 'button';
|
|
|
3
3
|
const CheckBox = 'checkbox';
|
|
4
4
|
const ComboBox = 'combobox';
|
|
5
5
|
const Document = 'document';
|
|
6
|
+
const Group = 'group';
|
|
6
7
|
const ListBox = 'listbox';
|
|
7
8
|
const None = 'none';
|
|
8
9
|
const Option$1 = 'option';
|
|
@@ -22,6 +23,7 @@ const AriaRoles = {
|
|
|
22
23
|
CheckBox,
|
|
23
24
|
ComboBox,
|
|
24
25
|
Document,
|
|
26
|
+
Group,
|
|
25
27
|
ListBox,
|
|
26
28
|
None,
|
|
27
29
|
Option: Option$1,
|
package/package.json
CHANGED