ods-component-lib 1.18.42 → 1.18.45
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/dist/components/antd/badge/OdsBadge.d.ts +4 -0
- package/dist/components/antd/badge/OdsBadge.styled.d.ts +4 -0
- package/dist/components/antd/badge/OdsBadgeRibbon.d.ts +4 -0
- package/dist/index.css +6 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.js +48 -52
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +48 -53
- package/dist/index.modern.js.map +1 -1
- package/dist/stories/OdsAutoComplete/OdsAutoComplete.stories.d.ts +110 -0
- package/dist/stories/OdsBadge/OdsBadge.stories.d.ts +12 -0
- package/dist/stories/OdsBadge/Samples/OdsBadgeBasic.Sample.d.ts +1 -0
- package/dist/stories/OdsBadge/Samples/OdsBadgeRibbon.Sample.d.ts +1 -0
- package/dist/stories/OdsDropdownButton/OdsDropdownButton.stories.d.ts +80 -1
- package/dist/stories/OdsTag/OdsTag.stories.d.ts +9 -0
- package/dist/stories/OdsTag/Samples/OdsTagBasic.Sample.d.ts +1 -0
- package/dist/stories/OdsTimePicker/OdsTimePicker.stories.d.ts +10 -0
- package/dist/stories/OdsTimePicker/Samples/Basic.Sample.d.ts +1 -0
- package/dist/stories/OdsTimePicker/Samples/TimeRangePicker.d.ts +2 -0
- package/package.json +1 -1
|
@@ -9,33 +9,143 @@ declare const _default: {
|
|
|
9
9
|
control: {
|
|
10
10
|
type: string;
|
|
11
11
|
};
|
|
12
|
+
description: string;
|
|
12
13
|
};
|
|
13
14
|
variant: {
|
|
14
15
|
options: string[];
|
|
15
16
|
control: {
|
|
16
17
|
type: string;
|
|
17
18
|
};
|
|
19
|
+
description: string;
|
|
20
|
+
};
|
|
21
|
+
autoFocus: {
|
|
22
|
+
options: string[];
|
|
23
|
+
description: string;
|
|
24
|
+
};
|
|
25
|
+
placement: {
|
|
26
|
+
description: string;
|
|
27
|
+
};
|
|
28
|
+
onClick: {
|
|
29
|
+
action: string;
|
|
30
|
+
description: string;
|
|
31
|
+
};
|
|
32
|
+
open: {
|
|
33
|
+
description: string;
|
|
34
|
+
};
|
|
35
|
+
disabled: {
|
|
36
|
+
description: string;
|
|
37
|
+
};
|
|
38
|
+
className: {
|
|
39
|
+
description: string;
|
|
40
|
+
};
|
|
41
|
+
rootClassName: {
|
|
42
|
+
description: string;
|
|
43
|
+
};
|
|
44
|
+
transitionName: {
|
|
45
|
+
description: string;
|
|
46
|
+
};
|
|
47
|
+
placeholder: {
|
|
48
|
+
description: string;
|
|
49
|
+
};
|
|
50
|
+
popupClassName: {
|
|
51
|
+
description: string;
|
|
52
|
+
};
|
|
53
|
+
popupMatchSelectWidth: {
|
|
54
|
+
description: string;
|
|
55
|
+
};
|
|
56
|
+
style: {
|
|
57
|
+
description: string;
|
|
58
|
+
};
|
|
59
|
+
options: {
|
|
60
|
+
description: string;
|
|
61
|
+
};
|
|
62
|
+
status: {
|
|
63
|
+
options: string[];
|
|
64
|
+
control: {
|
|
65
|
+
type: string;
|
|
66
|
+
};
|
|
67
|
+
description: string;
|
|
68
|
+
};
|
|
69
|
+
id: {
|
|
70
|
+
description: string;
|
|
71
|
+
};
|
|
72
|
+
direction: {
|
|
73
|
+
options: string[];
|
|
74
|
+
control: {
|
|
75
|
+
type: string;
|
|
76
|
+
};
|
|
77
|
+
description: string;
|
|
78
|
+
};
|
|
79
|
+
defaultValue: {
|
|
80
|
+
description: string;
|
|
81
|
+
};
|
|
82
|
+
value: {
|
|
83
|
+
description: string;
|
|
84
|
+
};
|
|
85
|
+
maxLength: {
|
|
86
|
+
description: string;
|
|
87
|
+
};
|
|
88
|
+
tabIndex: {
|
|
89
|
+
description: string;
|
|
90
|
+
};
|
|
91
|
+
title: {
|
|
92
|
+
description: string;
|
|
93
|
+
};
|
|
94
|
+
maxTagCount: {
|
|
95
|
+
description: string;
|
|
18
96
|
};
|
|
19
97
|
onBlur: {
|
|
20
98
|
action: string;
|
|
99
|
+
description: string;
|
|
21
100
|
};
|
|
22
101
|
onChange: {
|
|
23
102
|
action: string;
|
|
103
|
+
description: string;
|
|
24
104
|
};
|
|
25
105
|
onClear: {
|
|
26
106
|
action: string;
|
|
107
|
+
description: string;
|
|
27
108
|
};
|
|
28
109
|
onDropdownVisibleChange: {
|
|
29
110
|
action: string;
|
|
111
|
+
description: string;
|
|
30
112
|
};
|
|
31
113
|
onFocus: {
|
|
32
114
|
action: string;
|
|
115
|
+
description: string;
|
|
33
116
|
};
|
|
34
117
|
onSearch: {
|
|
35
118
|
action: string;
|
|
119
|
+
description: string;
|
|
36
120
|
};
|
|
37
121
|
onSelect: {
|
|
38
122
|
action: string;
|
|
123
|
+
description: string;
|
|
124
|
+
};
|
|
125
|
+
onDeselect: {
|
|
126
|
+
action: string;
|
|
127
|
+
description: string;
|
|
128
|
+
};
|
|
129
|
+
onInputKeyDown: {
|
|
130
|
+
action: string;
|
|
131
|
+
description: string;
|
|
132
|
+
};
|
|
133
|
+
onMouseEnter: {
|
|
134
|
+
action: string;
|
|
135
|
+
description: string;
|
|
136
|
+
};
|
|
137
|
+
onMouseLeave: {
|
|
138
|
+
action: string;
|
|
139
|
+
description: string;
|
|
140
|
+
};
|
|
141
|
+
onPopupScroll: {
|
|
142
|
+
action: string;
|
|
143
|
+
description: string;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
parameters: {
|
|
147
|
+
controls: {
|
|
148
|
+
exclude: string[];
|
|
39
149
|
};
|
|
40
150
|
};
|
|
41
151
|
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import OdsBadge from "../../components/antd/badge/OdsBadge";
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: typeof OdsBadge;
|
|
5
|
+
tags: string[];
|
|
6
|
+
argTypes: {
|
|
7
|
+
badges: any[];
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
export default _default;
|
|
11
|
+
export declare const OdsBadgeBasicTemplate: any;
|
|
12
|
+
export declare const OdsBadgeRibbonTemplate: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const OdsBadgeBasicTemp: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const OdsBadgeRibbonTemp: any;
|
|
@@ -3,7 +3,86 @@ declare const _default: {
|
|
|
3
3
|
title: string;
|
|
4
4
|
component: typeof DropdownButton;
|
|
5
5
|
tags: string[];
|
|
6
|
-
argTypes: {
|
|
6
|
+
argTypes: {
|
|
7
|
+
size: {
|
|
8
|
+
options: string[];
|
|
9
|
+
control: {
|
|
10
|
+
type: string;
|
|
11
|
+
};
|
|
12
|
+
description: string;
|
|
13
|
+
};
|
|
14
|
+
autoFocus: {
|
|
15
|
+
options: string[];
|
|
16
|
+
description: string;
|
|
17
|
+
};
|
|
18
|
+
trigger: {
|
|
19
|
+
options: string[];
|
|
20
|
+
description: string;
|
|
21
|
+
};
|
|
22
|
+
placement: {
|
|
23
|
+
description: string;
|
|
24
|
+
};
|
|
25
|
+
items: {
|
|
26
|
+
description: string;
|
|
27
|
+
};
|
|
28
|
+
menu: {
|
|
29
|
+
description: string;
|
|
30
|
+
};
|
|
31
|
+
arrow: {
|
|
32
|
+
description: string;
|
|
33
|
+
};
|
|
34
|
+
onClick: {
|
|
35
|
+
action: string;
|
|
36
|
+
description: string;
|
|
37
|
+
};
|
|
38
|
+
open: {
|
|
39
|
+
description: string;
|
|
40
|
+
};
|
|
41
|
+
disabled: {
|
|
42
|
+
description: string;
|
|
43
|
+
};
|
|
44
|
+
destroyPopupOnHide: {
|
|
45
|
+
description: string;
|
|
46
|
+
};
|
|
47
|
+
align: {
|
|
48
|
+
description: string;
|
|
49
|
+
};
|
|
50
|
+
className: {
|
|
51
|
+
description: string;
|
|
52
|
+
};
|
|
53
|
+
rootClassName: {
|
|
54
|
+
description: string;
|
|
55
|
+
};
|
|
56
|
+
transitionName: {
|
|
57
|
+
description: string;
|
|
58
|
+
};
|
|
59
|
+
overlayClassName: {
|
|
60
|
+
description: string;
|
|
61
|
+
};
|
|
62
|
+
overlayStyle: {
|
|
63
|
+
description: string;
|
|
64
|
+
};
|
|
65
|
+
forceRender: {
|
|
66
|
+
description: string;
|
|
67
|
+
};
|
|
68
|
+
mouseEnterDelay: {
|
|
69
|
+
description: string;
|
|
70
|
+
};
|
|
71
|
+
mouseLeaveDelay: {
|
|
72
|
+
description: string;
|
|
73
|
+
};
|
|
74
|
+
openClassName: {
|
|
75
|
+
description: string;
|
|
76
|
+
};
|
|
77
|
+
autoAdjustOverflow: {
|
|
78
|
+
description: string;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
parameters: {
|
|
82
|
+
controls: {
|
|
83
|
+
exclude: string[];
|
|
84
|
+
};
|
|
85
|
+
};
|
|
7
86
|
};
|
|
8
87
|
export default _default;
|
|
9
88
|
export declare const HoverDropdownButton: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const OdsTagBasicTemp: any;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: (props: import("antd").TimePickerProps) => import("react").JSX.Element;
|
|
5
|
+
tags: string[];
|
|
6
|
+
argTypes: {};
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
9
|
+
export declare const Basic: any;
|
|
10
|
+
export declare const Range: () => import("react").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BasicTemplate: any;
|