amelia-booking-ui 0.0.535 → 0.0.537

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.
@@ -1,5 +1,3 @@
1
1
  import { Extension } from '@tiptap/core';
2
2
  declare const EmojiToCodeExtension: Extension<any, any>;
3
- declare function convertEmojiToCode(text: string): string;
4
3
  export default EmojiToCodeExtension;
5
- export { convertEmojiToCode };
@@ -25,6 +25,7 @@ declare function __VLS_template(): {
25
25
  };
26
26
  refs: {
27
27
  formItem: HTMLDivElement;
28
+ formItemTranslate: HTMLDivElement;
28
29
  };
29
30
  rootEl: HTMLDivElement;
30
31
  };
@@ -45,6 +46,7 @@ declare const __VLS_component: import('vue').DefineComponent<FormItemProps, {
45
46
  forceHasValue: boolean;
46
47
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
47
48
  formItem: HTMLDivElement;
49
+ formItemTranslate: HTMLDivElement;
48
50
  }, HTMLDivElement>;
49
51
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
50
52
  export default _default;
@@ -71,4 +71,5 @@ export type { RuleItem, ValidateError, ValidateFieldsError } from 'async-validat
71
71
  export type { MultiSelectOption } from './types/multi-select-option';
72
72
  export { default as utilCountries } from './utils/utilCountries.ts';
73
73
  export { usePopperBackground, type PopperBackgroundLevel } from './utils/utilPopper.ts';
74
+ export { convertEmojiToCode } from './utils/utilEmoji.ts';
74
75
  export { default as localeMap } from './assets/languages/localeMap';
@@ -0,0 +1,2 @@
1
+ export declare function convertEmojiToCode(text: string): string;
2
+ export default convertEmojiToCode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amelia-booking-ui",
3
- "version": "0.0.535",
3
+ "version": "0.0.537",
4
4
  "description": "A Vue 3 component library for Amelia Booking Plugin.",
5
5
  "type": "module",
6
6
  "repository": {