@nmorph/nmorph-ui-kit 2.2.49 → 2.2.50

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,4 +1,4 @@
1
- const a = "2.2.49", e = {
1
+ const a = "2.2.50", e = {
2
2
  version: a
3
3
  };
4
4
  export {
@@ -1,5 +1,5 @@
1
1
  export type NmorphFileCardSurface = 'card' | 'soft' | 'plain';
2
- export type NmorphFileCardMediaPreview = 'none' | 'audio';
2
+ export type NmorphFileCardMediaPreview = 'none' | 'audio' | 'video';
3
3
  export interface INmorphFileCardProps {
4
4
  name: string;
5
5
  extension?: string;
@@ -10,11 +10,11 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<INmorphMediaTil
10
10
  src: string;
11
11
  fit: NmorphMediaTileFit;
12
12
  errorText: string;
13
+ muted: boolean;
14
+ playsinline: boolean;
13
15
  srcObject: MediaStream;
14
16
  mirrored: boolean;
15
- muted: boolean;
16
17
  autoplay: boolean;
17
- playsinline: boolean;
18
18
  avatarSrc: string;
19
19
  micMuted: boolean;
20
20
  videoOff: boolean;
@@ -24,15 +24,17 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<INmorphVideoPre
24
24
  fit: NmorphVideoPreviewFit;
25
25
  durationMs: number;
26
26
  surface: NmorphVideoPreviewSurface;
27
+ embedded: boolean;
27
28
  compact: boolean;
28
29
  preload: "metadata" | "auto" | "none";
29
30
  downloadHref: string;
30
31
  errorText: string;
31
32
  showDefaultActions: boolean;
32
- muted: boolean;
33
- playsinline: boolean;
34
33
  poster: string;
34
+ showMeta: boolean;
35
35
  controls: boolean;
36
+ muted: boolean;
37
+ playsinline: boolean;
36
38
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
37
39
  videoRef: HTMLVideoElement;
38
40
  }, HTMLDivElement>, {
@@ -8,6 +8,8 @@ export interface INmorphVideoPreviewProps {
8
8
  height?: number | string;
9
9
  durationMs?: number;
10
10
  surface?: NmorphVideoPreviewSurface;
11
+ embedded?: boolean;
12
+ showMeta?: boolean;
11
13
  compact?: boolean;
12
14
  controls?: boolean;
13
15
  muted?: boolean;
@@ -2,6 +2,7 @@ import { INmorphAlertProps } from '../../feedback/nmorph-alert/types';
2
2
  export interface INmorphNotification extends INmorphAlertProps {
3
3
  id?: string;
4
4
  duration?: number;
5
+ showDurationValue?: boolean;
5
6
  width?: string;
6
7
  placement?: TNmorphNotificationPlacement;
7
8
  }
@@ -4,6 +4,7 @@ export declare const useNmorphNotification: () => {
4
4
  notifications: Ref<{
5
5
  id?: string;
6
6
  duration?: number;
7
+ showDurationValue?: boolean;
7
8
  width?: string;
8
9
  placement?: "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top-center" | "bottom-center";
9
10
  type?: "error" | "success" | "warning" | "info";
@@ -19,6 +20,7 @@ export declare const useNmorphNotification: () => {
19
20
  }[], INmorphNotification[] | {
20
21
  id?: string;
21
22
  duration?: number;
23
+ showDurationValue?: boolean;
22
24
  width?: string;
23
25
  placement?: "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top-center" | "bottom-center";
24
26
  type?: "error" | "success" | "warning" | "info";