@maggioli-design-system/magma-react 1.8.0 → 1.9.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.
@@ -24,6 +24,7 @@ import { MdsCard as MdsCardElement, defineCustomElement as defineMdsCard } from
24
24
  import { MdsChip as MdsChipElement, defineCustomElement as defineMdsChip } from "@maggioli-design-system/magma/dist/components/mds-chip.js";
25
25
  import { MdsDetails as MdsDetailsElement, defineCustomElement as defineMdsDetails } from "@maggioli-design-system/magma/dist/components/mds-details.js";
26
26
  import { MdsDropdown as MdsDropdownElement, defineCustomElement as defineMdsDropdown } from "@maggioli-design-system/magma/dist/components/mds-dropdown.js";
27
+ import { MdsEmoji as MdsEmojiElement, defineCustomElement as defineMdsEmoji } from "@maggioli-design-system/magma/dist/components/mds-emoji.js";
27
28
  import { MdsEntity as MdsEntityElement, defineCustomElement as defineMdsEntity } from "@maggioli-design-system/magma/dist/components/mds-entity.js";
28
29
  import { MdsFilePreview as MdsFilePreviewElement, defineCustomElement as defineMdsFilePreview } from "@maggioli-design-system/magma/dist/components/mds-file-preview.js";
29
30
  import { MdsFile as MdsFileElement, defineCustomElement as defineMdsFile } from "@maggioli-design-system/magma/dist/components/mds-file.js";
@@ -326,6 +327,14 @@ export const MdsDropdown = /*@__PURE__*/ createComponent({
326
327
  },
327
328
  defineCustomElement: defineMdsDropdown
328
329
  });
330
+ export const MdsEmoji = /*@__PURE__*/ createComponent({
331
+ tagName: 'mds-emoji',
332
+ elementClass: MdsEmojiElement,
333
+ // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
334
+ react: React,
335
+ events: {},
336
+ defineCustomElement: defineMdsEmoji
337
+ });
329
338
  export const MdsEntity = /*@__PURE__*/ createComponent({
330
339
  tagName: 'mds-entity',
331
340
  elementClass: MdsEntityElement,
@@ -441,6 +450,7 @@ export const MdsInput = /*@__PURE__*/ createComponent({
441
450
  onMdsInputKeydown: 'mdsInputKeydown',
442
451
  onMdsInputBlur: 'mdsInputBlur',
443
452
  onMdsInputFocus: 'mdsInputFocus',
453
+ onMdsInputSpeechEnd: 'mdsInputSpeechEnd',
444
454
  onMdsInputValidation: 'mdsInputValidation'
445
455
  },
446
456
  defineCustomElement: defineMdsInput
@@ -28,6 +28,7 @@ import { MdsCard as MdsCardElement } from "@maggioli-design-system/magma/dist/co
28
28
  import { MdsChip as MdsChipElement } from "@maggioli-design-system/magma/dist/components/mds-chip.js";
29
29
  import { MdsDetails as MdsDetailsElement } from "@maggioli-design-system/magma/dist/components/mds-details.js";
30
30
  import { MdsDropdown as MdsDropdownElement } from "@maggioli-design-system/magma/dist/components/mds-dropdown.js";
31
+ import { MdsEmoji as MdsEmojiElement } from "@maggioli-design-system/magma/dist/components/mds-emoji.js";
31
32
  import { MdsEntity as MdsEntityElement } from "@maggioli-design-system/magma/dist/components/mds-entity.js";
32
33
  import { MdsFilePreview as MdsFilePreviewElement } from "@maggioli-design-system/magma/dist/components/mds-file-preview.js";
33
34
  import { MdsFile as MdsFileElement } from "@maggioli-design-system/magma/dist/components/mds-file.js";
@@ -194,6 +195,8 @@ export type MdsDropdownEvents = {
194
195
  onMdsDropdownChange: EventName<MdsDropdownCustomEvent<MdsDropdownEventDetail>>;
195
196
  };
196
197
  export declare const MdsDropdown: StencilReactComponent<MdsDropdownElement, MdsDropdownEvents>;
198
+ export type MdsEmojiEvents = NonNullable<unknown>;
199
+ export declare const MdsEmoji: StencilReactComponent<MdsEmojiElement, MdsEmojiEvents>;
197
200
  export type MdsEntityEvents = NonNullable<unknown>;
198
201
  export declare const MdsEntity: StencilReactComponent<MdsEntityElement, MdsEntityEvents>;
199
202
  export type MdsFileEvents = {
@@ -240,6 +243,7 @@ export type MdsInputEvents = {
240
243
  onMdsInputKeydown: EventName<MdsInputCustomEvent<KeyboardEvent>>;
241
244
  onMdsInputBlur: EventName<CustomEvent<void>>;
242
245
  onMdsInputFocus: EventName<CustomEvent<void>>;
246
+ onMdsInputSpeechEnd: EventName<CustomEvent<void>>;
243
247
  onMdsInputValidation: EventName<CustomEvent<boolean>>;
244
248
  };
245
249
  export declare const MdsInput: StencilReactComponent<MdsInputElement, MdsInputEvents>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maggioli-design-system/magma-react",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "main": "dist/components.js",
5
5
  "module": "dist/components.js",
6
6
  "types": "dist/types/components.d.ts",
@@ -15,7 +15,7 @@
15
15
  "access": "public"
16
16
  },
17
17
  "dependencies": {
18
- "@maggioli-design-system/magma": "1.8.0",
18
+ "@maggioli-design-system/magma": "1.9.0",
19
19
  "@stencil/react-output-target": "1.0.2"
20
20
  },
21
21
  "devDependencies": {