@lvce-editor/constants 1.3.0 → 1.4.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
CHANGED
|
@@ -307,6 +307,8 @@ declare const Option$1 = "option";
|
|
|
307
307
|
declare const Code = "code";
|
|
308
308
|
declare const Label$1 = "label";
|
|
309
309
|
declare const Dt = "dt";
|
|
310
|
+
declare const ENOENT = "ENOENT";
|
|
311
|
+
declare const EXDEV = "EXDEV";
|
|
310
312
|
declare const InsertText = "insertText";
|
|
311
313
|
declare const DeleteContentBackward = "deleteContentBackward";
|
|
312
314
|
declare const DeleteContentForward = "deleteContentForward";
|
|
@@ -629,6 +631,9 @@ declare namespace ElementTagMap {
|
|
|
629
631
|
declare namespace ElementTags {
|
|
630
632
|
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, Search$1 as Search, Section, Select, Span, TBody, THead, Table$1 as Table, Td, TextArea, Tfoot, Th, Time, Tr, Ul, Video };
|
|
631
633
|
}
|
|
634
|
+
declare namespace ErrorCodes {
|
|
635
|
+
export { ENOENT, EXDEV };
|
|
636
|
+
}
|
|
632
637
|
declare namespace InputEventType {
|
|
633
638
|
export { DeleteContentBackward, DeleteContentForward, DeleteWordBackward, DeleteWordForward, InsertCompositionText, InsertFromPaste, InsertLineBreak, InsertText };
|
|
634
639
|
}
|
|
@@ -665,6 +670,7 @@ export {
|
|
|
665
670
|
ClassNames,
|
|
666
671
|
ElementTagMap,
|
|
667
672
|
ElementTags,
|
|
673
|
+
ErrorCodes,
|
|
668
674
|
InputEventType,
|
|
669
675
|
KeyCode,
|
|
670
676
|
KeyModifier,
|
package/dist/parts/Main/Main.js
CHANGED
|
@@ -2,6 +2,7 @@ export * as AriaRoles from "../AriaRoles/AriaRoles.js";
|
|
|
2
2
|
export * as ClassNames from "../ClassNames/ClassNames.js";
|
|
3
3
|
export * as ElementTagMap from "../ElementTagMap/ElementTagMap.js";
|
|
4
4
|
export * as ElementTags from "../ElementTags/ElementTags.js";
|
|
5
|
+
export * as ErrorCodes from "../ErrorCodes/ErrorCodes.js";
|
|
5
6
|
export * as InputEventType from "../InputEventType/InputEventType.js";
|
|
6
7
|
export * as KeyCode from "../KeyCode/KeyCode.js";
|
|
7
8
|
export * as KeyModifier from "../KeyModifier/KeyModifier.js";
|