@atipicus/mrs-ui 1.0.2 → 1.1.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/README.md +1 -1
- package/README.npm.md +4 -4
- package/dist/components/molecules/index.d.ts +0 -1
- package/dist/components/molecules/index.d.ts.map +1 -1
- package/dist/index.js +0 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -10
- package/dist/index.mjs.map +1 -1
- package/dist/lazy.d.ts +1 -41
- package/dist/lazy.d.ts.map +1 -1
- package/dist/lazy.js +0 -30
- package/dist/lazy.js.map +1 -1
- package/dist/lazy.mjs +1 -31
- package/dist/lazy.mjs.map +1 -1
- package/package.json +34 -30
- package/dist/Timeline-BPdic0I4.mjs +0 -59
- package/dist/Timeline-BPdic0I4.mjs.map +0 -1
- package/dist/Timeline-BzDR_6ve.js +0 -58
- package/dist/Timeline-BzDR_6ve.js.map +0 -1
- package/dist/components/molecules/Timeline/Timeline.d.ts +0 -50
- package/dist/components/molecules/Timeline/Timeline.d.ts.map +0 -1
- package/dist/components/molecules/Timeline/Timeline.types.d.ts +0 -75
- package/dist/components/molecules/Timeline/Timeline.types.d.ts.map +0 -1
- package/dist/components/molecules/Timeline/index.d.ts +0 -6
- package/dist/components/molecules/Timeline/index.d.ts.map +0 -1
- package/dist/index--v2dNPpd.js +0 -11
- package/dist/index--v2dNPpd.js.map +0 -1
- package/dist/index-CBDmTLHS.mjs +0 -11
- package/dist/index-CBDmTLHS.mjs.map +0 -1
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
import { TimelineProps as MuiTimelineProps } from '@mui/lab/Timeline';
|
|
2
|
-
import { TimelineItemProps as MuiTimelineItemProps } from '@mui/lab/TimelineItem';
|
|
3
|
-
import { TimelineSeparatorProps as MuiTimelineSeparatorProps } from '@mui/lab/TimelineSeparator';
|
|
4
|
-
import { TimelineDotProps as MuiTimelineDotProps } from '@mui/lab/TimelineDot';
|
|
5
|
-
import { TimelineConnectorProps as MuiTimelineConnectorProps } from '@mui/lab/TimelineConnector';
|
|
6
|
-
import { TimelineContentProps as MuiTimelineContentProps } from '@mui/lab/TimelineContent';
|
|
7
|
-
import { TimelineOppositeContentProps as MuiTimelineOppositeContentProps } from '@mui/lab/TimelineOppositeContent';
|
|
8
|
-
/**
|
|
9
|
-
* Props for the Timeline component
|
|
10
|
-
*
|
|
11
|
-
* @see {@link https://mui.com/material-ui/api/timeline/}
|
|
12
|
-
*/
|
|
13
|
-
export interface TimelineProps extends MuiTimelineProps {
|
|
14
|
-
/**
|
|
15
|
-
* The position where the timeline's content should appear
|
|
16
|
-
* @default 'left'
|
|
17
|
-
*/
|
|
18
|
-
position?: 'left' | 'right' | 'alternate' | 'alternate-reverse';
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* Props for the TimelineItem component
|
|
22
|
-
*
|
|
23
|
-
* @see {@link https://mui.com/material-ui/api/timeline-item/}
|
|
24
|
-
*/
|
|
25
|
-
export interface TimelineItemProps extends MuiTimelineItemProps {
|
|
26
|
-
/**
|
|
27
|
-
* The position where the timeline item's content should appear
|
|
28
|
-
*/
|
|
29
|
-
position?: 'left' | 'right';
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* Props for the TimelineSeparator component
|
|
33
|
-
*
|
|
34
|
-
* @see {@link https://mui.com/material-ui/api/timeline-separator/}
|
|
35
|
-
*/
|
|
36
|
-
export interface TimelineSeparatorProps extends MuiTimelineSeparatorProps {
|
|
37
|
-
}
|
|
38
|
-
/**
|
|
39
|
-
* Props for the TimelineDot component
|
|
40
|
-
*
|
|
41
|
-
* @see {@link https://mui.com/material-ui/api/timeline-dot/}
|
|
42
|
-
*/
|
|
43
|
-
export interface TimelineDotProps extends MuiTimelineDotProps {
|
|
44
|
-
/**
|
|
45
|
-
* The color of the component
|
|
46
|
-
*/
|
|
47
|
-
color?: 'inherit' | 'grey' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning';
|
|
48
|
-
/**
|
|
49
|
-
* The variant to use
|
|
50
|
-
* @default 'filled'
|
|
51
|
-
*/
|
|
52
|
-
variant?: 'filled' | 'outlined';
|
|
53
|
-
}
|
|
54
|
-
/**
|
|
55
|
-
* Props for the TimelineConnector component
|
|
56
|
-
*
|
|
57
|
-
* @see {@link https://mui.com/material-ui/api/timeline-connector/}
|
|
58
|
-
*/
|
|
59
|
-
export interface TimelineConnectorProps extends MuiTimelineConnectorProps {
|
|
60
|
-
}
|
|
61
|
-
/**
|
|
62
|
-
* Props for the TimelineContent component
|
|
63
|
-
*
|
|
64
|
-
* @see {@link https://mui.com/material-ui/api/timeline-content/}
|
|
65
|
-
*/
|
|
66
|
-
export interface TimelineContentProps extends MuiTimelineContentProps {
|
|
67
|
-
}
|
|
68
|
-
/**
|
|
69
|
-
* Props for the TimelineOppositeContent component
|
|
70
|
-
*
|
|
71
|
-
* @see {@link https://mui.com/material-ui/api/timeline-opposite-content/}
|
|
72
|
-
*/
|
|
73
|
-
export interface TimelineOppositeContentProps extends MuiTimelineOppositeContentProps {
|
|
74
|
-
}
|
|
75
|
-
//# sourceMappingURL=Timeline.types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Timeline.types.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/Timeline/Timeline.types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,aAAa,IAAI,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAC3E,OAAO,KAAK,EAAE,iBAAiB,IAAI,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AACvF,OAAO,KAAK,EAAE,sBAAsB,IAAI,yBAAyB,EAAE,MAAM,4BAA4B,CAAC;AACtG,OAAO,KAAK,EAAE,gBAAgB,IAAI,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AACpF,OAAO,KAAK,EAAE,sBAAsB,IAAI,yBAAyB,EAAE,MAAM,4BAA4B,CAAC;AACtG,OAAO,KAAK,EAAE,oBAAoB,IAAI,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AAChG,OAAO,KAAK,EAAE,4BAA4B,IAAI,+BAA+B,EAAE,MAAM,kCAAkC,CAAC;AAExH;;;;GAIG;AACH,MAAM,WAAW,aAAc,SAAQ,gBAAgB;IACrD;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,WAAW,GAAG,mBAAmB,CAAC;CACjE;AAED;;;;GAIG;AACH,MAAM,WAAW,iBAAkB,SAAQ,oBAAoB;IAC7D;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;CAC7B;AAED;;;;GAIG;AACH,MAAM,WAAW,sBAAuB,SAAQ,yBAAyB;CAAG;AAE5E;;;;GAIG;AACH,MAAM,WAAW,gBAAiB,SAAQ,mBAAmB;IAC3D;;OAEG;IACH,KAAK,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,WAAW,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,CAAC;IAEhG;;;OAGG;IACH,OAAO,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC;CACjC;AAED;;;;GAIG;AACH,MAAM,WAAW,sBAAuB,SAAQ,yBAAyB;CAAG;AAE5E;;;;GAIG;AACH,MAAM,WAAW,oBAAqB,SAAQ,uBAAuB;CAAG;AAExE;;;;GAIG;AACH,MAAM,WAAW,4BAA6B,SAAQ,+BAA+B;CAAG"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Timeline Component Exports
|
|
3
|
-
*/
|
|
4
|
-
export { Timeline, TimelineItem, TimelineSeparator, TimelineDot, TimelineConnector, TimelineContent, TimelineOppositeContent, } from './Timeline';
|
|
5
|
-
export type { TimelineProps, TimelineItemProps, TimelineSeparatorProps, TimelineDotProps, TimelineConnectorProps, TimelineContentProps, TimelineOppositeContentProps, } from './Timeline.types';
|
|
6
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/molecules/Timeline/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EACL,QAAQ,EACR,YAAY,EACZ,iBAAiB,EACjB,WAAW,EACX,iBAAiB,EACjB,eAAe,EACf,uBAAuB,GACxB,MAAM,YAAY,CAAC;AAEpB,YAAY,EACV,aAAa,EACb,iBAAiB,EACjB,sBAAsB,EACtB,gBAAgB,EAChB,sBAAsB,EACtB,oBAAoB,EACpB,4BAA4B,GAC7B,MAAM,kBAAkB,CAAC"}
|
package/dist/index--v2dNPpd.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const Timeline = require("./Timeline-BzDR_6ve.js");
|
|
4
|
-
exports.Timeline = Timeline.Timeline;
|
|
5
|
-
exports.TimelineConnector = Timeline.TimelineConnector;
|
|
6
|
-
exports.TimelineContent = Timeline.TimelineContent;
|
|
7
|
-
exports.TimelineDot = Timeline.TimelineDot;
|
|
8
|
-
exports.TimelineItem = Timeline.TimelineItem;
|
|
9
|
-
exports.TimelineOppositeContent = Timeline.TimelineOppositeContent;
|
|
10
|
-
exports.TimelineSeparator = Timeline.TimelineSeparator;
|
|
11
|
-
//# sourceMappingURL=index--v2dNPpd.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index--v2dNPpd.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;"}
|
package/dist/index-CBDmTLHS.mjs
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { T, d, e, c, a, f, b } from "./Timeline-BPdic0I4.mjs";
|
|
2
|
-
export {
|
|
3
|
-
T as Timeline,
|
|
4
|
-
d as TimelineConnector,
|
|
5
|
-
e as TimelineContent,
|
|
6
|
-
c as TimelineDot,
|
|
7
|
-
a as TimelineItem,
|
|
8
|
-
f as TimelineOppositeContent,
|
|
9
|
-
b as TimelineSeparator
|
|
10
|
-
};
|
|
11
|
-
//# sourceMappingURL=index-CBDmTLHS.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-CBDmTLHS.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|