generated from shgysk8zer0/npm-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcore.js
More file actions
47 lines (35 loc) · 1.7 KB
/
core.js
File metadata and controls
47 lines (35 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
* @copyright 2023-2024 Chris Zuber <admin@kernvalley.us>
*/
export {
attachListeners, observeEvents, disconnectEventsObserver, EVENTS,
setGlobalErrorHandler, registerEventAttribute,
} from '@aegisjsproject/callback-registry/events.js';
export {
hasCallback, getCallback, listCallbacks, callCallback, createCallback,
closeRegistration, registerCallback, getHost, FUNCS,
} from '@aegisjsproject/callback-registry/callbackRegistry.js';
export {
text, createStyleSheet, createCSSParser, css, lightCSS, darkCSS, useScopedStyle,
styleSheetToFile, styleSheetToLink, createHTMLParser, html, doc, trustedHTML,
htmlUnsafe, docUnsafe, htmlToFile, createTrustedHTMLTemplate, xml, svg, json, math, url,
createShadowParser, shadow, styledShadow, el, createBoundParser, adoptStyles, prefixCSSRules, createStyleScope,
} from './parsers.js';
export {
setProp, setAttr, isTrustPolicy, hasDefaultPolicy, getAttributeType,
getPropertyType, isHTML, isScript, isScriptURL, isTrustedType, createHTML,
createScript, createScriptURL, createPolicy, createSanitizerPolicy, getDefaultPolicy,
} from './trust.js';
export { DATE_FORMAT, formatDate, stringify, data, attr } from './stringify.js';
export {
getUniqueSelector, replaceStyles, addStyles, appendTo, prependTo, replace,
escape, escapeAttrVal,
} from './dom.js';
export {
registerComponent, getRegisteredComponentTags, getRegisteredComponents,
} from './componentRegistry.js';
export { registerBlob, unregisterBlob, getBlobURL, hasBlobURL } from './blob-registry.js';
export { createComponent, clone } from './component.js';
export * from '@aegisjsproject/state/state.js';
export * from '@aegisjsproject/router/router.js';
export * from '@aegisjsproject/component/component.js';