@apolitical/component-library 6.6.23-ac.2 → 6.6.23-beta.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/helpers/index.d.ts +0 -1
- package/helpers/intl.d.ts +2 -1
- package/index.d.ts +1 -1
- package/index.js +38 -43
- package/index.mjs +5662 -5782
- package/modals/components/modal/index.d.ts +1 -1
- package/modals/components/modal/modal.d.ts +2 -5
- package/package.json +1 -1
- package/style.css +1 -1
- package/helpers/calendar-details.d.ts +0 -19
package/helpers/index.d.ts
CHANGED
package/helpers/intl.d.ts
CHANGED
|
@@ -536,12 +536,13 @@ export declare const checkIntlPathExists: (path: string, language?: {
|
|
|
536
536
|
markdown_skip_video: string;
|
|
537
537
|
markdown_skip_padlet: string;
|
|
538
538
|
markdown_skip_poll: string;
|
|
539
|
+
markdown_skip_survey: string;
|
|
539
540
|
markdown_skip: string;
|
|
540
541
|
markdown_iframe_title: string;
|
|
541
542
|
markdown_iframe_video: string;
|
|
542
543
|
markdown_iframe_padlet: string;
|
|
543
544
|
markdown_iframe_poll: string;
|
|
544
|
-
|
|
545
|
+
markdown_iframe_survey: string;
|
|
545
546
|
}) => boolean;
|
|
546
547
|
export declare const getIntlPath: (callback: (args1: {
|
|
547
548
|
id: string;
|
package/index.d.ts
CHANGED
|
@@ -22,4 +22,4 @@ export * from './text';
|
|
|
22
22
|
export * from './user';
|
|
23
23
|
export * from './helpers/cases';
|
|
24
24
|
export * from './helpers/prerender';
|
|
25
|
-
export { basicReducer, checkIntlPathExists, generateCssIcon,
|
|
25
|
+
export { basicReducer, checkIntlPathExists, generateCssIcon, getLongDate, getShortDate, passwordValidator, } from './helpers';
|