@elliemae/ds-pills 2.2.0-next.6 → 2.2.0-rc.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/package.json +15 -15
- package/types/components/PillGroup.d.ts +1 -1
- package/types/deprecated/DropdownPill.d.ts +1 -10
- package/types/deprecated/LabeledDropdownPills.d.ts +1 -12
- package/types/deprecated/LabeledPills.d.ts +1 -8
- package/types/deprecated/OverflowPill.d.ts +1 -5
- package/types/deprecated/Pill.d.ts +1 -9
- package/types/deprecated/PillGroup.d.ts +1 -7
- package/types/deprecated/ReadOnlyPill.d.ts +1 -8
- package/types/deprecated/RemovablePill.d.ts +1 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-pills",
|
|
3
|
-
"version": "2.2.0-
|
|
3
|
+
"version": "2.2.0-rc.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Pills",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -144,20 +144,20 @@
|
|
|
144
144
|
"build": "node ../../scripts/build/build.js"
|
|
145
145
|
},
|
|
146
146
|
"dependencies": {
|
|
147
|
-
"@elliemae/ds-button": "2.2.0-
|
|
148
|
-
"@elliemae/ds-classnames": "2.2.0-
|
|
149
|
-
"@elliemae/ds-dropdownmenu": "2.2.0-
|
|
150
|
-
"@elliemae/ds-form": "2.2.0-
|
|
151
|
-
"@elliemae/ds-grid": "2.2.0-
|
|
152
|
-
"@elliemae/ds-icons": "2.2.0-
|
|
153
|
-
"@elliemae/ds-modal": "2.2.0-
|
|
154
|
-
"@elliemae/ds-popover": "2.2.0-
|
|
155
|
-
"@elliemae/ds-props-helpers": "2.2.0-
|
|
156
|
-
"@elliemae/ds-shared": "2.2.0-
|
|
157
|
-
"@elliemae/ds-system": "2.2.0-
|
|
158
|
-
"@elliemae/ds-tooltip": "2.2.0-
|
|
159
|
-
"@elliemae/ds-truncated-tooltip-text": "2.2.0-
|
|
160
|
-
"@elliemae/ds-utilities": "2.2.0-
|
|
147
|
+
"@elliemae/ds-button": "2.2.0-rc.0",
|
|
148
|
+
"@elliemae/ds-classnames": "2.2.0-rc.0",
|
|
149
|
+
"@elliemae/ds-dropdownmenu": "2.2.0-rc.0",
|
|
150
|
+
"@elliemae/ds-form": "2.2.0-rc.0",
|
|
151
|
+
"@elliemae/ds-grid": "2.2.0-rc.0",
|
|
152
|
+
"@elliemae/ds-icons": "2.2.0-rc.0",
|
|
153
|
+
"@elliemae/ds-modal": "2.2.0-rc.0",
|
|
154
|
+
"@elliemae/ds-popover": "2.2.0-rc.0",
|
|
155
|
+
"@elliemae/ds-props-helpers": "2.2.0-rc.0",
|
|
156
|
+
"@elliemae/ds-shared": "2.2.0-rc.0",
|
|
157
|
+
"@elliemae/ds-system": "2.2.0-rc.0",
|
|
158
|
+
"@elliemae/ds-tooltip": "2.2.0-rc.0",
|
|
159
|
+
"@elliemae/ds-truncated-tooltip-text": "2.2.0-rc.0",
|
|
160
|
+
"@elliemae/ds-utilities": "2.2.0-rc.0",
|
|
161
161
|
"prop-types": "~15.7.2",
|
|
162
162
|
"react-desc": "~4.1.3",
|
|
163
163
|
"uid": "~2.0.0"
|
|
@@ -6,7 +6,7 @@ export declare const DSPillGroupV2Context: React.Context<{
|
|
|
6
6
|
}>;
|
|
7
7
|
declare const DSPillGroupV2: React.ComponentType<DSPillGroupProps>;
|
|
8
8
|
declare const DSPillGroupV2WithSchema: {
|
|
9
|
-
(props?:
|
|
9
|
+
(props?: unknown): JSX.Element;
|
|
10
10
|
propTypes: unknown;
|
|
11
11
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
12
12
|
};
|
|
@@ -59,16 +59,7 @@ declare namespace DropdownPill {
|
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
61
|
declare const DSDropdownPillWithSchema: {
|
|
62
|
-
(props?:
|
|
63
|
-
[x: string]: any;
|
|
64
|
-
containerProps?: {} | undefined;
|
|
65
|
-
label?: string | undefined;
|
|
66
|
-
variant: any;
|
|
67
|
-
tabIndex?: number | undefined;
|
|
68
|
-
closeMenuOnItemSelection?: boolean | undefined;
|
|
69
|
-
maxWidth: any;
|
|
70
|
-
minWidth: any;
|
|
71
|
-
} | undefined): JSX.Element;
|
|
62
|
+
(props?: unknown): JSX.Element;
|
|
72
63
|
propTypes: unknown;
|
|
73
64
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
74
65
|
};
|
|
@@ -75,18 +75,7 @@ declare namespace LabeledDropdownPills {
|
|
|
75
75
|
};
|
|
76
76
|
}
|
|
77
77
|
declare const DSLabeledDropdownPillsWithSchema: {
|
|
78
|
-
(props?:
|
|
79
|
-
[x: string]: any;
|
|
80
|
-
label?: string | undefined;
|
|
81
|
-
value: any;
|
|
82
|
-
type: any;
|
|
83
|
-
onFocusNextGroup: any;
|
|
84
|
-
onFocusPreviousGroup: any;
|
|
85
|
-
onFocusGroupSet: any;
|
|
86
|
-
maxWidth: any;
|
|
87
|
-
minWidth: any;
|
|
88
|
-
fixed: any;
|
|
89
|
-
} | undefined): JSX.Element;
|
|
78
|
+
(props?: unknown): JSX.Element;
|
|
90
79
|
propTypes: unknown;
|
|
91
80
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
92
81
|
};
|
|
@@ -45,14 +45,7 @@ declare namespace LabeledPills {
|
|
|
45
45
|
};
|
|
46
46
|
}
|
|
47
47
|
declare const DSLabeledPillsWithSchema: {
|
|
48
|
-
(props?:
|
|
49
|
-
children: any;
|
|
50
|
-
label?: string | undefined;
|
|
51
|
-
leftAddon: any;
|
|
52
|
-
onFocusGroupSet: any;
|
|
53
|
-
onFocusNextGroup: any;
|
|
54
|
-
onFocusPreviousGroup: any;
|
|
55
|
-
} | undefined): JSX.Element;
|
|
48
|
+
(props?: unknown): JSX.Element;
|
|
56
49
|
propTypes: unknown;
|
|
57
50
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
58
51
|
};
|
|
@@ -26,11 +26,7 @@ declare namespace OverflowPill {
|
|
|
26
26
|
};
|
|
27
27
|
}
|
|
28
28
|
declare const DSOverflowPillWithSchema: {
|
|
29
|
-
(props?:
|
|
30
|
-
containerProps?: {} | undefined;
|
|
31
|
-
label?: string | undefined;
|
|
32
|
-
options?: never[] | undefined;
|
|
33
|
-
} | undefined): JSX.Element;
|
|
29
|
+
(props?: unknown): JSX.Element;
|
|
34
30
|
propTypes: unknown;
|
|
35
31
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
36
32
|
};
|
|
@@ -51,15 +51,7 @@ declare namespace Pill {
|
|
|
51
51
|
};
|
|
52
52
|
}
|
|
53
53
|
declare const DSPillWithSchema: {
|
|
54
|
-
(props?:
|
|
55
|
-
[x: string]: any;
|
|
56
|
-
containerProps?: {} | undefined;
|
|
57
|
-
label?: string | undefined;
|
|
58
|
-
leftAddon: any;
|
|
59
|
-
rightAddon: any;
|
|
60
|
-
variant?: string | undefined;
|
|
61
|
-
size?: string | undefined;
|
|
62
|
-
} | undefined): JSX.Element;
|
|
54
|
+
(props?: unknown): JSX.Element;
|
|
63
55
|
propTypes: unknown;
|
|
64
56
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
65
57
|
};
|
|
@@ -43,13 +43,7 @@ declare const PillGroup: {
|
|
|
43
43
|
};
|
|
44
44
|
};
|
|
45
45
|
declare const DSPillGroupWithSchema: {
|
|
46
|
-
(props?:
|
|
47
|
-
containerProps?: {} | undefined;
|
|
48
|
-
onFocusNextGroup: any;
|
|
49
|
-
onFocusPreviousGroup: any;
|
|
50
|
-
onFocusGroupSet: any;
|
|
51
|
-
children: any;
|
|
52
|
-
} | undefined): JSX.Element;
|
|
46
|
+
(props?: unknown): JSX.Element;
|
|
53
47
|
propTypes: unknown;
|
|
54
48
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
55
49
|
};
|
|
@@ -49,14 +49,7 @@ declare const ReadOnlyPill: {
|
|
|
49
49
|
};
|
|
50
50
|
};
|
|
51
51
|
declare const DSReadOnlyPillWithSchema: {
|
|
52
|
-
(props?:
|
|
53
|
-
containerProps?: {} | undefined;
|
|
54
|
-
modalContent?: string | undefined;
|
|
55
|
-
label?: string | undefined;
|
|
56
|
-
leftAddon: any;
|
|
57
|
-
modalTitle?: string | undefined;
|
|
58
|
-
tooltipText?: string | undefined;
|
|
59
|
-
} | undefined): JSX.Element;
|
|
52
|
+
(props?: unknown): JSX.Element;
|
|
60
53
|
propTypes: unknown;
|
|
61
54
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
62
55
|
};
|
|
@@ -42,13 +42,7 @@ declare namespace RemovablePill {
|
|
|
42
42
|
};
|
|
43
43
|
}
|
|
44
44
|
declare const DSRemovablePillWithSchema: {
|
|
45
|
-
(props?:
|
|
46
|
-
containerProps?: {} | undefined;
|
|
47
|
-
label?: string | undefined;
|
|
48
|
-
onRemove: any;
|
|
49
|
-
size?: string | undefined;
|
|
50
|
-
leftAddon: any;
|
|
51
|
-
} | undefined): JSX.Element;
|
|
45
|
+
(props?: unknown): JSX.Element;
|
|
52
46
|
propTypes: unknown;
|
|
53
47
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
54
48
|
};
|