@loadsmart/miranda-react 1.56.0 → 1.57.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.
@@ -0,0 +1,24 @@
1
+ import type { ComponentProps } from 'react';
2
+ import type { EventName, WebComponentProps } from '@lit-labs/react';
3
+ import { EmptyState as WCEmptyState } from '@loadsmart/miranda-wc';
4
+ declare global {
5
+ namespace JSX {
6
+ interface IntrinsicElements {
7
+ 'm-empty-state': WebComponentProps<WCEmptyState>;
8
+ }
9
+ }
10
+ }
11
+ export declare const EmptyState: import("@lit-labs/react").ReactWebComponent<WCEmptyState, {
12
+ onAction: EventName<CustomEvent<any>>;
13
+ }> & {
14
+ Illustration: import("@lit-labs/react").ReactWebComponent<import("@loadsmart/miranda-wc").EmptyStateIllustration, {}>;
15
+ Header: import("@lit-labs/react").ReactWebComponent<import("@loadsmart/miranda-wc").EmptyStateHeader, {}>;
16
+ Message: import("@lit-labs/react").ReactWebComponent<import("@loadsmart/miranda-wc").EmptyStateMessage, {}>;
17
+ Action: import("react").ForwardRefExoticComponent<Omit<import("./EmptyStateAction").EmptyStateActionProps, "ref"> & import("react").RefAttributes<import("@loadsmart/miranda-wc").EmptyStateAction>>;
18
+ };
19
+ export type EmptyStateProps = ComponentProps<typeof EmptyState>;
20
+ export type { EmptyStateIllustrationProps } from './EmptyStateIllustration';
21
+ export type { EmptyStateHeaderProps } from './EmptyStateHeader';
22
+ export type { EmptyStateMessageProps } from './EmptyStateMessage';
23
+ export type { EmptyStateActionProps } from './EmptyStateAction';
24
+ //# sourceMappingURL=EmptyState.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmptyState.d.ts","sourceRoot":"","sources":["../../../src/components/EmptyState/EmptyState.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAC5C,OAAO,KAAK,EAAE,SAAS,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAEpE,OAAO,EAAE,UAAU,IAAI,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAOnE,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,GAAG,CAAC;QACb,UAAU,iBAAiB;YAC1B,eAAe,EAAE,iBAAiB,CAAC,YAAY,CAAC,CAAC;SACjD;KACD;CACD;AAED,eAAO,MAAM,UAAU;;;;;;;CAarB,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,cAAc,CAAC,OAAO,UAAU,CAAC,CAAC;AAChE,YAAY,EAAE,2BAA2B,EAAE,MAAM,0BAA0B,CAAC;AAC5E,YAAY,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAChE,YAAY,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAClE,YAAY,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC"}
@@ -0,0 +1,18 @@
1
+ import type { ReactNode, ComponentProps } from 'react';
2
+ import type { WebComponentProps } from '@lit-labs/react';
3
+ import { EmptyStateAction as WCEmptyStateAction } from '@loadsmart/miranda-wc';
4
+ declare global {
5
+ namespace JSX {
6
+ interface IntrinsicElements {
7
+ 'm-empty-state-action': WebComponentProps<WCEmptyStateAction>;
8
+ }
9
+ }
10
+ }
11
+ declare const WiredEmptyStateAction: import("@lit-labs/react").ReactWebComponent<WCEmptyStateAction, {}>;
12
+ export interface EmptyStateActionProps extends ComponentProps<typeof WiredEmptyStateAction> {
13
+ leading?: ReactNode;
14
+ trailing?: ReactNode;
15
+ }
16
+ export declare const EmptyStateAction: import("react").ForwardRefExoticComponent<Omit<EmptyStateActionProps, "ref"> & import("react").RefAttributes<WCEmptyStateAction>>;
17
+ export {};
18
+ //# sourceMappingURL=EmptyStateAction.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmptyStateAction.d.ts","sourceRoot":"","sources":["../../../src/components/EmptyState/EmptyStateAction.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AACvD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,gBAAgB,IAAI,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAI/E,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,GAAG,CAAC;QACb,UAAU,iBAAiB;YAC1B,sBAAsB,EAAE,iBAAiB,CAAC,kBAAkB,CAAC,CAAC;SAC9D;KACD;CACD;AAED,QAAA,MAAM,qBAAqB,qEAIzB,CAAC;AAEH,MAAM,WAAW,qBAChB,SAAQ,cAAc,CAAC,OAAO,qBAAqB,CAAC;IACpD,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACrB;AAED,eAAO,MAAM,gBAAgB,mIAa3B,CAAC"}
@@ -0,0 +1,13 @@
1
+ import type { ComponentProps } from 'react';
2
+ import type { WebComponentProps } from '@lit-labs/react';
3
+ import { EmptyStateHeader as WCEmptyStateHeader } from '@loadsmart/miranda-wc';
4
+ declare global {
5
+ namespace JSX {
6
+ interface IntrinsicElements {
7
+ 'm-empty-state-header': WebComponentProps<WCEmptyStateHeader>;
8
+ }
9
+ }
10
+ }
11
+ export declare const EmptyStateHeader: import("@lit-labs/react").ReactWebComponent<WCEmptyStateHeader, {}>;
12
+ export type EmptyStateHeaderProps = ComponentProps<typeof EmptyStateHeader>;
13
+ //# sourceMappingURL=EmptyStateHeader.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmptyStateHeader.d.ts","sourceRoot":"","sources":["../../../src/components/EmptyState/EmptyStateHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAC5C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,gBAAgB,IAAI,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAG/E,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,GAAG,CAAC;QACb,UAAU,iBAAiB;YAC1B,sBAAsB,EAAE,iBAAiB,CAAC,kBAAkB,CAAC,CAAC;SAC9D;KACD;CACD;AAED,eAAO,MAAM,gBAAgB,qEAI3B,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAAG,cAAc,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
@@ -0,0 +1,13 @@
1
+ import type { ComponentProps } from 'react';
2
+ import type { WebComponentProps } from '@lit-labs/react';
3
+ import { EmptyStateIllustration as WCEmptyStateIllustration } from '@loadsmart/miranda-wc';
4
+ declare global {
5
+ namespace JSX {
6
+ interface IntrinsicElements {
7
+ 'm-empty-state-illustration': WebComponentProps<WCEmptyStateIllustration>;
8
+ }
9
+ }
10
+ }
11
+ export declare const EmptyStateIllustration: import("@lit-labs/react").ReactWebComponent<WCEmptyStateIllustration, {}>;
12
+ export type EmptyStateIllustrationProps = ComponentProps<typeof EmptyStateIllustration>;
13
+ //# sourceMappingURL=EmptyStateIllustration.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmptyStateIllustration.d.ts","sourceRoot":"","sources":["../../../src/components/EmptyState/EmptyStateIllustration.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAC5C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,sBAAsB,IAAI,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AAG3F,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,GAAG,CAAC;QACb,UAAU,iBAAiB;YAC1B,4BAA4B,EAAE,iBAAiB,CAAC,wBAAwB,CAAC,CAAC;SAC1E;KACD;CACD;AAED,eAAO,MAAM,sBAAsB,2EAIjC,CAAC;AAEH,MAAM,MAAM,2BAA2B,GAAG,cAAc,CACvD,OAAO,sBAAsB,CAC7B,CAAC"}
@@ -0,0 +1,13 @@
1
+ import type { ComponentProps } from 'react';
2
+ import type { WebComponentProps } from '@lit-labs/react';
3
+ import { EmptyStateMessage as WCEmptyStateMessage } from '@loadsmart/miranda-wc';
4
+ declare global {
5
+ namespace JSX {
6
+ interface IntrinsicElements {
7
+ 'm-empty-state-message': WebComponentProps<WCEmptyStateMessage>;
8
+ }
9
+ }
10
+ }
11
+ export declare const EmptyStateMessage: import("@lit-labs/react").ReactWebComponent<WCEmptyStateMessage, {}>;
12
+ export type EmptyStateMessageProps = ComponentProps<typeof EmptyStateMessage>;
13
+ //# sourceMappingURL=EmptyStateMessage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmptyStateMessage.d.ts","sourceRoot":"","sources":["../../../src/components/EmptyState/EmptyStateMessage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAC5C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,iBAAiB,IAAI,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAGjF,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,GAAG,CAAC;QACb,UAAU,iBAAiB;YAC1B,uBAAuB,EAAE,iBAAiB,CAAC,mBAAmB,CAAC,CAAC;SAChE;KACD;CACD;AAED,eAAO,MAAM,iBAAiB,sEAI5B,CAAC;AAEH,MAAM,MAAM,sBAAsB,GAAG,cAAc,CAAC,OAAO,iBAAiB,CAAC,CAAC"}
@@ -0,0 +1,5 @@
1
+ export { EmptyState } from './EmptyState';
2
+ export type { EmptyStateProps, EmptyStateIllustrationProps, EmptyStateHeaderProps, EmptyStateMessageProps, EmptyStateActionProps, } from './EmptyState';
3
+ export { EMPTY_STATE_VARIANTS } from '@loadsmart/miranda-wc';
4
+ export type { EmptyStateVariant } from '@loadsmart/miranda-wc';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/EmptyState/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,YAAY,EACX,eAAe,EACf,2BAA2B,EAC3B,qBAAqB,EACrB,sBAAsB,EACtB,qBAAqB,GACrB,MAAM,cAAc,CAAC;AAEtB,OAAO,EAAE,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AAC7D,YAAY,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loadsmart/miranda-react",
3
- "version": "1.56.0",
3
+ "version": "1.57.0",
4
4
  "description": "React component library based on Miranda Web Components",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",