sag_components 2.0.0-beta25 → 2.0.0-beta26
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 +4 -8
- package/dist/types/components/Datepicker/Datepicker.d.ts +0 -12
- package/dist/types/components/Datepicker/Datepicker.style.d.ts +0 -1
- package/dist/types/components/Dropdown/Dropdown.d.ts +0 -24
- package/dist/types/components/Dropdown/Dropdown.style.d.ts +0 -1
- package/dist/types/components/DropdownMulti/DropdownMulti.d.ts +0 -75
- package/dist/types/components/DropdownMulti/DropdownMulti.style.d.ts +0 -1
- package/dist/types/components/TextField/TextField.d.ts +0 -6
- package/dist/types/components/TextField/TextField.style.d.ts +0 -1
- package/dist/types/icons/ArrowDropDownIcon.d.ts +0 -6
- package/dist/types/icons/CalendarIcon.d.ts +0 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sag_components",
|
|
3
|
-
"version": "2.0.0-
|
|
3
|
+
"version": "2.0.0-beta26",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -75,15 +75,12 @@
|
|
|
75
75
|
"vite": "^6.1.0"
|
|
76
76
|
},
|
|
77
77
|
"peerDependencies": {
|
|
78
|
-
"react": "^18.
|
|
79
|
-
"react-dom": "^18.
|
|
78
|
+
"react": "^18.3.1",
|
|
79
|
+
"react-dom": "^18.3.1"
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
82
|
"@emotion/react": "^11.11.4",
|
|
83
83
|
"@emotion/styled": "^11.11.5",
|
|
84
|
-
"@mui/icons-material": "^5.15.16",
|
|
85
|
-
"@mui/material": "^5.15.16",
|
|
86
|
-
"@mui/x-date-pickers": "^6.18.6",
|
|
87
84
|
"classnames": "^2.3.2",
|
|
88
85
|
"dayjs": "^1.11.10",
|
|
89
86
|
"framer-motion": "^11.15.0",
|
|
@@ -110,6 +107,5 @@
|
|
|
110
107
|
"last 1 firefox version",
|
|
111
108
|
"last 1 safari version"
|
|
112
109
|
]
|
|
113
|
-
}
|
|
114
|
-
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
110
|
+
}
|
|
115
111
|
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export function Datepicker({ width, text, format, shape, onChange, value, disableClearable, disabled, labelColor, }: {
|
|
2
|
-
width?: string | undefined;
|
|
3
|
-
text: any;
|
|
4
|
-
format?: string | undefined;
|
|
5
|
-
shape: any;
|
|
6
|
-
onChange: any;
|
|
7
|
-
value: any;
|
|
8
|
-
disableClearable: any;
|
|
9
|
-
disabled?: boolean | undefined;
|
|
10
|
-
labelColor?: string | undefined;
|
|
11
|
-
}): import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
export default Datepicker;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const DatepickerContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
export function Dropdown({ width, size, text, shape, placeHolder, multiSelect, showPopupIcon, showSearchIcon, options, onChange, onInputChange, labelColor, required, inputRef, defaultValue, allowedInput, reset, disableClearable, disabled, dropdownListfontSize, placeHolderFontSize, }: {
|
|
2
|
-
width?: string | undefined;
|
|
3
|
-
size: any;
|
|
4
|
-
text: any;
|
|
5
|
-
shape: any;
|
|
6
|
-
placeHolder: any;
|
|
7
|
-
multiSelect: any;
|
|
8
|
-
showPopupIcon: any;
|
|
9
|
-
showSearchIcon: any;
|
|
10
|
-
options: any;
|
|
11
|
-
onChange: any;
|
|
12
|
-
onInputChange: any;
|
|
13
|
-
labelColor?: string | undefined;
|
|
14
|
-
required: any;
|
|
15
|
-
inputRef: any;
|
|
16
|
-
defaultValue: any;
|
|
17
|
-
allowedInput?: string | undefined;
|
|
18
|
-
reset?: boolean | undefined;
|
|
19
|
-
disableClearable?: boolean | undefined;
|
|
20
|
-
disabled?: boolean | undefined;
|
|
21
|
-
dropdownListfontSize?: string | undefined;
|
|
22
|
-
placeHolderFontSize?: string | undefined;
|
|
23
|
-
}): import("react/jsx-runtime").JSX.Element;
|
|
24
|
-
export default Dropdown;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const DropdownContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
export function DropdownMulti(props: any): import("react/jsx-runtime").JSX.Element;
|
|
2
|
-
export namespace DropdownMulti {
|
|
3
|
-
namespace propTypes {
|
|
4
|
-
const name: PropTypes.Requireable<string>;
|
|
5
|
-
const width: PropTypes.Requireable<string>;
|
|
6
|
-
const size: PropTypes.Requireable<string>;
|
|
7
|
-
const text: PropTypes.Requireable<string>;
|
|
8
|
-
const shape: PropTypes.Requireable<string>;
|
|
9
|
-
const placeHolder: PropTypes.Requireable<string>;
|
|
10
|
-
const limitTagsOnMultiSelect: PropTypes.Requireable<string>;
|
|
11
|
-
const showPopupIcon: PropTypes.Requireable<string>;
|
|
12
|
-
const options: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
13
|
-
id: PropTypes.Requireable<string>;
|
|
14
|
-
label: PropTypes.Requireable<number>;
|
|
15
|
-
}> | null | undefined)[]>;
|
|
16
|
-
const onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
17
|
-
const onInputChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
18
|
-
const labelColor: PropTypes.Requireable<string>;
|
|
19
|
-
const required: PropTypes.Requireable<boolean>;
|
|
20
|
-
const inputRef: PropTypes.Requireable<string>;
|
|
21
|
-
const allowedInput: PropTypes.Requireable<string>;
|
|
22
|
-
const reset: PropTypes.Requireable<boolean>;
|
|
23
|
-
const disableClearable: PropTypes.Requireable<boolean>;
|
|
24
|
-
const disabled: PropTypes.Requireable<boolean>;
|
|
25
|
-
const dropdownListfontSize: PropTypes.Requireable<string>;
|
|
26
|
-
const placeHolderFontSize: PropTypes.Requireable<string>;
|
|
27
|
-
const dropdownMultiMaxWidth: PropTypes.Requireable<string>;
|
|
28
|
-
}
|
|
29
|
-
namespace defaultProps {
|
|
30
|
-
const name_1: string;
|
|
31
|
-
export { name_1 as name };
|
|
32
|
-
const width_1: string;
|
|
33
|
-
export { width_1 as width };
|
|
34
|
-
const size_1: string;
|
|
35
|
-
export { size_1 as size };
|
|
36
|
-
const text_1: string;
|
|
37
|
-
export { text_1 as text };
|
|
38
|
-
const limitTagsOnMultiSelect_1: number;
|
|
39
|
-
export { limitTagsOnMultiSelect_1 as limitTagsOnMultiSelect };
|
|
40
|
-
const placeHolder_1: string;
|
|
41
|
-
export { placeHolder_1 as placeHolder };
|
|
42
|
-
const shape_1: string;
|
|
43
|
-
export { shape_1 as shape };
|
|
44
|
-
const showPopupIcon_1: boolean;
|
|
45
|
-
export { showPopupIcon_1 as showPopupIcon };
|
|
46
|
-
const options_1: never[];
|
|
47
|
-
export { options_1 as options };
|
|
48
|
-
export function onChange_1(): void;
|
|
49
|
-
export { onChange_1 as onChange };
|
|
50
|
-
export function onInputChange_1(): void;
|
|
51
|
-
export { onInputChange_1 as onInputChange };
|
|
52
|
-
const labelColor_1: string;
|
|
53
|
-
export { labelColor_1 as labelColor };
|
|
54
|
-
const required_1: boolean;
|
|
55
|
-
export { required_1 as required };
|
|
56
|
-
const inputRef_1: undefined;
|
|
57
|
-
export { inputRef_1 as inputRef };
|
|
58
|
-
const allowedInput_1: string;
|
|
59
|
-
export { allowedInput_1 as allowedInput };
|
|
60
|
-
const disableClearable_1: boolean;
|
|
61
|
-
export { disableClearable_1 as disableClearable };
|
|
62
|
-
const disabled_1: boolean;
|
|
63
|
-
export { disabled_1 as disabled };
|
|
64
|
-
const reset_1: boolean;
|
|
65
|
-
export { reset_1 as reset };
|
|
66
|
-
const dropdownListfontSize_1: string;
|
|
67
|
-
export { dropdownListfontSize_1 as dropdownListfontSize };
|
|
68
|
-
const placeHolderFontSize_1: string;
|
|
69
|
-
export { placeHolderFontSize_1 as placeHolderFontSize };
|
|
70
|
-
const dropdownMultiMaxWidth_1: undefined;
|
|
71
|
-
export { dropdownMultiMaxWidth_1 as dropdownMultiMaxWidth };
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
export default DropdownMulti;
|
|
75
|
-
import PropTypes from "prop-types";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const DropdownContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const TextFieldContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|