ice-render 2.0.1 → 2.1.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.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/index.d.mts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/types/index.d.mts
CHANGED
|
@@ -55,6 +55,7 @@ export { default as PluginHost } from './plugin/PluginHost.mjs';
|
|
|
55
55
|
export type { ICEPlugin, ICEPluginTool, ICERenderHook, ICERenderFrame } from './plugin/PluginHost.mjs';
|
|
56
56
|
export { default as Serializer, SERIALIZATION_VERSION } from './persistence/Serializer.mjs';
|
|
57
57
|
export { default as Deserializer, SERIALIZATION_MIGRATIONS } from './persistence/Deserializer.mjs';
|
|
58
|
+
export { toIsoTime } from './persistence/document-time.mjs';
|
|
58
59
|
export { TYPE_ID_PATTERN, isTypeId, assertTypeId, parseTypeId, makeTypeId } from './util/type-id.mjs';
|
|
59
60
|
export { buildAccessibilityTree } from './a11y/accessibility.mjs';
|
|
60
61
|
export type { ICEAccessibleNode, ICEAccessibleRole, ICEAccessibilityOptions } from './a11y/accessibility.mjs';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export { default as PluginHost } from './plugin/PluginHost';
|
|
|
55
55
|
export type { ICEPlugin, ICEPluginTool, ICERenderHook, ICERenderFrame } from './plugin/PluginHost';
|
|
56
56
|
export { default as Serializer, SERIALIZATION_VERSION } from './persistence/Serializer';
|
|
57
57
|
export { default as Deserializer, SERIALIZATION_MIGRATIONS } from './persistence/Deserializer';
|
|
58
|
+
export { toIsoTime } from './persistence/document-time';
|
|
58
59
|
export { TYPE_ID_PATTERN, isTypeId, assertTypeId, parseTypeId, makeTypeId } from './util/type-id';
|
|
59
60
|
export { buildAccessibilityTree } from './a11y/accessibility';
|
|
60
61
|
export type { ICEAccessibleNode, ICEAccessibleRole, ICEAccessibilityOptions } from './a11y/accessibility';
|