@mbao01/common 0.1.3 → 0.1.4
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.
|
@@ -20,6 +20,9 @@ declare const Select: {
|
|
|
20
20
|
outline?: boolean | undefined;
|
|
21
21
|
wide?: boolean | undefined;
|
|
22
22
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
Icon: React.ForwardRefExoticComponent<SelectPrimitive.SelectIconProps & React.RefAttributes<HTMLSpanElement>>;
|
|
24
|
+
ItemText: React.ForwardRefExoticComponent<SelectPrimitive.SelectItemTextProps & React.RefAttributes<HTMLSpanElement>>;
|
|
25
|
+
ItemIndicator: React.ForwardRefExoticComponent<SelectPrimitive.SelectItemIndicatorProps & React.RefAttributes<HTMLSpanElement>>;
|
|
23
26
|
Separator: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
24
27
|
ScrollUpButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
25
28
|
ScrollDownButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mbao01/common",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Ayomide Bakare",
|
|
7
7
|
"license": "MIT",
|
|
@@ -176,5 +176,5 @@
|
|
|
176
176
|
"recharts": "^2.15.0",
|
|
177
177
|
"typescript": "^5.7.2"
|
|
178
178
|
},
|
|
179
|
-
"gitHead": "
|
|
179
|
+
"gitHead": "72a56a6cd79264450edaa930779cba0ebf43c4d9"
|
|
180
180
|
}
|
|
@@ -121,6 +121,9 @@ Select.Trigger = SelectTrigger;
|
|
|
121
121
|
Select.Content = SelectContent;
|
|
122
122
|
Select.Label = SelectLabel;
|
|
123
123
|
Select.Item = SelectItem;
|
|
124
|
+
Select.Icon = SelectPrimitive.Icon;
|
|
125
|
+
Select.ItemText = SelectPrimitive.ItemText;
|
|
126
|
+
Select.ItemIndicator = SelectPrimitive.ItemIndicator;
|
|
124
127
|
Select.Separator = SelectSeparator;
|
|
125
128
|
Select.ScrollUpButton = SelectScrollUpButton;
|
|
126
129
|
Select.ScrollDownButton = SelectScrollDownButton;
|