@muraldevkit/ui-toolkit 3.2.3 → 4.0.0-dev-8Iww.1
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.
|
@@ -21,8 +21,6 @@ export interface SvgPropTypes extends Omit<MrlComponentProps, 'style'>, Omit<Rea
|
|
|
21
21
|
style?: Record<string, unknown>;
|
|
22
22
|
/** The SVG object to parse into an HTML SVG element */
|
|
23
23
|
svg: DSIconType;
|
|
24
|
-
/** The theme associated to an SVG Component */
|
|
25
|
-
theme?: string;
|
|
26
24
|
}
|
|
27
25
|
/**
|
|
28
26
|
* Creating and exporting component class for Mural SVG
|
|
@@ -6,7 +6,6 @@ export declare const storyData: {
|
|
|
6
6
|
args: {
|
|
7
7
|
color: string;
|
|
8
8
|
size: import("./constants").SVGSize;
|
|
9
|
-
theme: string;
|
|
10
9
|
};
|
|
11
10
|
argTypes: {
|
|
12
11
|
color: {
|
|
@@ -20,12 +19,6 @@ export declare const storyData: {
|
|
|
20
19
|
type: string;
|
|
21
20
|
};
|
|
22
21
|
};
|
|
23
|
-
theme: {
|
|
24
|
-
control: {
|
|
25
|
-
options: string[];
|
|
26
|
-
type: string;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
22
|
};
|
|
30
23
|
manifest: {
|
|
31
24
|
scans: {
|
|
@@ -35,46 +28,18 @@ export declare const storyData: {
|
|
|
35
28
|
title: string;
|
|
36
29
|
};
|
|
37
30
|
export declare const iconStoryData: {
|
|
38
|
-
args: {
|
|
39
|
-
theme: string;
|
|
40
|
-
};
|
|
41
|
-
argTypes: {
|
|
42
|
-
theme: {
|
|
43
|
-
control: {
|
|
44
|
-
options: string[];
|
|
45
|
-
type: string;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
48
|
-
};
|
|
49
31
|
manifest: {
|
|
50
32
|
exclude: {
|
|
51
33
|
default: string[];
|
|
52
34
|
};
|
|
53
|
-
scans: {
|
|
54
|
-
theme: string[];
|
|
55
|
-
};
|
|
56
35
|
};
|
|
57
36
|
title: string;
|
|
58
37
|
};
|
|
59
38
|
export declare const pictogramStoryData: {
|
|
60
|
-
args: {
|
|
61
|
-
theme: string;
|
|
62
|
-
};
|
|
63
|
-
argTypes: {
|
|
64
|
-
theme: {
|
|
65
|
-
control: {
|
|
66
|
-
options: string[];
|
|
67
|
-
type: string;
|
|
68
|
-
};
|
|
69
|
-
};
|
|
70
|
-
};
|
|
71
39
|
manifest: {
|
|
72
40
|
exclude: {
|
|
73
41
|
default: string[];
|
|
74
42
|
};
|
|
75
|
-
scans: {
|
|
76
|
-
theme: string[];
|
|
77
|
-
};
|
|
78
43
|
};
|
|
79
44
|
title: string;
|
|
80
45
|
};
|
|
@@ -4,11 +4,9 @@ export type SVGSize = 'small' | 'medium' | 'large' | 'auto';
|
|
|
4
4
|
export interface SVGDefaults {
|
|
5
5
|
attrs: AttrsObject;
|
|
6
6
|
size: SVGSize;
|
|
7
|
-
theme: string;
|
|
8
7
|
}
|
|
9
8
|
interface AllowedValues {
|
|
10
9
|
sizes: Array<string>;
|
|
11
|
-
themes: Array<string>;
|
|
12
10
|
}
|
|
13
11
|
/**
|
|
14
12
|
* Defines all of values allowed for attributes with limited values;
|
|
@@ -29,7 +27,7 @@ interface AnimationConfigWithPath extends AnimationConfigWithData<'svg'> {
|
|
|
29
27
|
export declare const allowedAnimatedValues: {
|
|
30
28
|
states: readonly ["stop", "play"];
|
|
31
29
|
};
|
|
32
|
-
export type AnimatedState = typeof allowedAnimatedValues.states[number];
|
|
30
|
+
export type AnimatedState = (typeof allowedAnimatedValues.states)[number];
|
|
33
31
|
export interface AnimatedDefaults {
|
|
34
32
|
delay: number;
|
|
35
33
|
state: AnimatedState;
|