master-components-react-ts 2.1.11 → 2.1.13
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/Dropdown/{Dropdown.d.ts → DropDown.d.ts} +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +4 -3
- package/dist/utils/Countries.d.ts +0 -16
- package/dist/utils/Data.d.ts +0 -50
- /package/dist/components/Checkbox/{Checkbox.d.ts → CheckBox.d.ts} +0 -0
- /package/dist/components/Dropdown/{Dropdown.types.d.ts → DropDown.types.d.ts} +0 -0
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { DropdownProps } from './
|
|
1
|
+
import { DropdownProps } from './DropDown.types';
|
|
2
2
|
declare const Dropdown: ({ data, withFilter, withClose, disableAll, withMultiselect, selectedOptionID, withInput, dropdownType, onSelect, onFocus, onBlur, onValueChange, customInputSlot, dropdownWrapperStyle, dropdownInputWrapperStyle, dropdownInputSlotStyle, dropdownInputSlotItemStyle, dropdownInputSlotItemLabelStyle, dropdownInputSlotItemCloseStyle, dropdownInputSlotItemMoreStyle, dropdownItemStyle, dropdownItemLabelStyle, itemCheckboxStyle, dropdownItemLabelTextStyle, dropdownListStyle, ...rest }: DropdownProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default Dropdown;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ export { default as MainButton } from './components/MainButton/MainButton';
|
|
|
2
2
|
export { default as FormInput } from './components/FormInput/FormInput';
|
|
3
3
|
export { default as Textarea } from './components/Textarea/Textarea';
|
|
4
4
|
export { default as Toggle } from './components/Toggle/Toggle';
|
|
5
|
-
export { default as Checkbox } from './components/Checkbox/
|
|
6
|
-
export { default as Dropdown } from './components/Dropdown/
|
|
5
|
+
export { default as Checkbox } from './components/Checkbox/CheckBox';
|
|
6
|
+
export { default as Dropdown } from './components/Dropdown/DropDown';
|
|
7
7
|
export { default as Radio } from './components/Radio/Radio';
|
|
8
8
|
export { default as Tooltip } from './components/Tooltip/Tooltip';
|
|
9
9
|
export { default as Popup } from './components/Popup/Popup';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
2
|
"name": "master-components-react-ts",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.13",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
"lint": "eslint ."
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"dayjs": "^1.11.13"
|
|
34
|
+
"dayjs": "^1.11.13",
|
|
35
|
+
"vite-plugin-css-injected-by-js": "^3.5.2"
|
|
35
36
|
},
|
|
36
37
|
"devDependencies": {
|
|
37
38
|
"@eslint/js": "^9.13.0",
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export declare const CountryList: {
|
|
2
|
-
id?: number;
|
|
3
|
-
name?: string;
|
|
4
|
-
dialCode?: string | number;
|
|
5
|
-
code?: string;
|
|
6
|
-
flag?: string;
|
|
7
|
-
localName?: string;
|
|
8
|
-
currency?: string;
|
|
9
|
-
label?: string;
|
|
10
|
-
currencySymbol?: string;
|
|
11
|
-
part_of?: string[];
|
|
12
|
-
preferred?: boolean;
|
|
13
|
-
country_code?: string;
|
|
14
|
-
area_codes?: string[];
|
|
15
|
-
secondary?: boolean;
|
|
16
|
-
}[];
|
package/dist/utils/Data.d.ts
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
interface TreeNode {
|
|
2
|
-
id: number;
|
|
3
|
-
label: string;
|
|
4
|
-
disabled?: boolean;
|
|
5
|
-
selected?: boolean;
|
|
6
|
-
children?: TreeNode[];
|
|
7
|
-
}
|
|
8
|
-
export declare const Data: {
|
|
9
|
-
Plain: {
|
|
10
|
-
label: string;
|
|
11
|
-
id: number;
|
|
12
|
-
selected?: boolean;
|
|
13
|
-
disabled?: boolean;
|
|
14
|
-
}[];
|
|
15
|
-
Colors: {
|
|
16
|
-
label: string;
|
|
17
|
-
id: number;
|
|
18
|
-
disabled?: boolean;
|
|
19
|
-
selected?: boolean;
|
|
20
|
-
}[];
|
|
21
|
-
Products: {
|
|
22
|
-
id: number;
|
|
23
|
-
label: string;
|
|
24
|
-
disabled?: boolean;
|
|
25
|
-
selected?: boolean;
|
|
26
|
-
}[];
|
|
27
|
-
Tree: TreeNode[];
|
|
28
|
-
Grid: {
|
|
29
|
-
id: number;
|
|
30
|
-
first_name?: string;
|
|
31
|
-
last_name?: string;
|
|
32
|
-
email?: string;
|
|
33
|
-
gender?: string;
|
|
34
|
-
ip_address?: string;
|
|
35
|
-
car?: string;
|
|
36
|
-
disableEdit?: boolean;
|
|
37
|
-
}[];
|
|
38
|
-
GridForSummary?: {
|
|
39
|
-
ID: number;
|
|
40
|
-
OrderNumber: number;
|
|
41
|
-
OrderDate: string;
|
|
42
|
-
SaleAmount: number;
|
|
43
|
-
Terms: string;
|
|
44
|
-
TotalAmount: number;
|
|
45
|
-
CustomerStoreState: string;
|
|
46
|
-
CustomerStoreCity: string;
|
|
47
|
-
Employee: string;
|
|
48
|
-
}[];
|
|
49
|
-
};
|
|
50
|
-
export {};
|
|
File without changes
|
|
File without changes
|