@forter/helpers
Advanced tools
Comparing version 1.0.1-beta.295 to 1.0.1-beta.332
10
index.js
export { query, queryAll } from './decorators/query.js'; | ||
export { DECORATORS_MODULE } from './decorators/index.js'; | ||
export { range } from './functions/range.js'; | ||
@@ -10,2 +11,7 @@ export { sleep } from './functions/sleep.js'; | ||
export { getPxString } from './functions/get-px-string.js'; | ||
export { includes, join, replace, split, toLowerCase } from './functions/pointfree.js'; | ||
export { length } from './functions/length.js'; | ||
export { last } from './functions/last.js'; | ||
export { getHost } from './functions/get-host.js'; | ||
export { FUNCTIONS_MODULE } from './functions/index.js'; | ||
export { FireMixin } from './mixins/fire-mixin.js'; | ||
@@ -15,2 +21,6 @@ export { IsSlottedMixin } from './mixins/is-slotted-mixin.js'; | ||
export { log } from './log/log.js'; | ||
export { LOG_MODULE } from './log/index.js'; | ||
export { SelectMixin } from './mixins/select-mixin.js'; | ||
export { MIXINS_MODULE } from './mixins/index.js'; | ||
export { optionTemplate } from './templates/option-template.js'; | ||
export { TEMPLATES_MODULE } from './templates/index.js'; |
@@ -7,2 +7,3 @@ import { FireMixin } from './fire-mixin.js'; | ||
import { log } from '../log/log.js'; | ||
import '../log/index.js'; | ||
@@ -9,0 +10,0 @@ const isAllowedChild = allowedChildren => ({ |
{ | ||
"name": "@forter/helpers", | ||
"version": "1.0.1-beta.295+43bd1c3", | ||
"version": "1.0.1-beta.332+29f5bda", | ||
"description": "Helpers for Forter Components", | ||
@@ -47,3 +47,3 @@ "main": "index.js", | ||
}, | ||
"gitHead": "43bd1c352a3313066d4390ad3ad4d75863ee9d34" | ||
"gitHead": "29f5bda92976f7c1dba91419fcc784eff8c8b95f" | ||
} |
export * from './query'; | ||
export const DECORATORS_MODULE = 'decorators'; |
@@ -1,8 +0,15 @@ | ||
export { range } from './range'; | ||
export { sleep } from './sleep'; | ||
export { capitalize } from './capitalize'; | ||
export { humanize } from './humanize'; | ||
export { register } from './register'; | ||
export { getTitleFromLocationSearch } from './get-title-from-location-search'; | ||
export { urlDashCaseToHuman } from './url-to-dash-case-human'; | ||
export { getPxString } from './get-px-string'; | ||
export * from './range'; | ||
export * from './sleep'; | ||
export * from './capitalize'; | ||
export * from './humanize'; | ||
export * from './register'; | ||
export * from './get-title-from-location-search'; | ||
export * from './url-to-dash-case-human'; | ||
export * from './get-px-string'; | ||
export * from './pointfree'; | ||
export * from './length'; | ||
export * from './last'; | ||
export * from './get-host'; | ||
// HACK: gets Rollup to include the index | ||
export const FUNCTIONS_MODULE = 'functions'; |
@@ -5,1 +5,2 @@ export * from './decorators'; | ||
export * from './log'; | ||
export * from './templates'; |
export * from './log'; | ||
export const LOG_MODULE = 'log'; |
@@ -5,1 +5,3 @@ export * from './fire-mixin'; | ||
export * from './select-mixin'; | ||
export const MIXINS_MODULE = 'mixins'; |
export * from './option-template'; | ||
export const TEMPLATES_MODULE = 'templates'; |
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
126083
62
3485