@axos-web-dev/shared-components 0.0.176 → 0.0.177
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/main.js +2 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +2 -0
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -169,6 +169,7 @@ import { associatedEmail } from "./utils/EverestValidity.js";
|
|
|
169
169
|
import { getVariant, getVariantWithRegex } from "./utils/getVariant.js";
|
|
170
170
|
import { isAbsoluteUrl, isEmailLink, isPhoneLink, shortUrl, validateLink } from "./utils/validateExternalLinks.js";
|
|
171
171
|
import { columnValues } from "./utils/variant.types.js";
|
|
172
|
+
import { appendQueryParams } from "./utils/appendQueryParams.js";
|
|
172
173
|
import { padding_in_footer, smb_section, smb_wrapper } from "./SocialMediaBar/SocialMediaBar.css.js";
|
|
173
174
|
export {
|
|
174
175
|
default20 as AASLogo,
|
|
@@ -338,6 +339,7 @@ export {
|
|
|
338
339
|
ant_section,
|
|
339
340
|
ant_svg_fill,
|
|
340
341
|
app_col,
|
|
342
|
+
appendQueryParams,
|
|
341
343
|
apy_billboard,
|
|
342
344
|
apy_table,
|
|
343
345
|
associatedEmail,
|
package/dist/utils/index.d.ts
CHANGED
package/dist/utils/index.js
CHANGED
|
@@ -3,7 +3,9 @@ import { associatedEmail } from "./EverestValidity.js";
|
|
|
3
3
|
import { getVariant, getVariantWithRegex } from "./getVariant.js";
|
|
4
4
|
import { isAbsoluteUrl, isEmailLink, isPhoneLink, shortUrl, validateLink } from "./validateExternalLinks.js";
|
|
5
5
|
import { columnValues } from "./variant.types.js";
|
|
6
|
+
import { appendQueryParams } from "./appendQueryParams.js";
|
|
6
7
|
export {
|
|
8
|
+
appendQueryParams,
|
|
7
9
|
associatedEmail,
|
|
8
10
|
columnValues,
|
|
9
11
|
findMoreAxosDomains,
|