@licklist/design 0.78.7-stage.24 → 0.78.7-stage.26
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/CustomDatePicker/CustomDatePicker.d.ts.map +1 -1
- package/dist/customRadioButton/RadioButton.d.ts +11 -0
- package/dist/customRadioButton/RadioButton.d.ts.map +1 -0
- package/dist/customRadioButton/RadioButton.js +93 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/sales/guest-profile/profile/Profile.d.ts.map +1 -1
- package/dist/sales/guest-profile/profile/Profile.js +2 -1
- package/package.json +5 -5
- package/src/CustomDatePicker/CustomDatePicker.tsx +6 -0
- package/src/customRadioButton/RadioButton.tsx +84 -0
- package/src/index.ts +1 -0
- package/src/sales/guest-profile/profile/Profile.tsx +2 -5
- package/yarn.lock +14 -14
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CustomDatePicker.d.ts","sourceRoot":"","sources":["../../src/CustomDatePicker/CustomDatePicker.tsx"],"names":[],"mappings":"AAMA,KAAK,qBAAqB,GAAG;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAA;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,IAAI,EACJ,KAAK,EACL,OAAc,EACd,QAAe,EAChB,EAAE,qBAAqB,
|
|
1
|
+
{"version":3,"file":"CustomDatePicker.d.ts","sourceRoot":"","sources":["../../src/CustomDatePicker/CustomDatePicker.tsx"],"names":[],"mappings":"AAMA,KAAK,qBAAqB,GAAG;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAA;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,IAAI,EACJ,KAAK,EACL,OAAc,EACd,QAAe,EAChB,EAAE,qBAAqB,2CA8OvB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface RadioButtonProps {
|
|
3
|
+
name: string;
|
|
4
|
+
value: string;
|
|
5
|
+
checked: boolean;
|
|
6
|
+
onChange: (value: string) => void;
|
|
7
|
+
label?: string;
|
|
8
|
+
}
|
|
9
|
+
declare const RadioButton: React.FC<RadioButtonProps>;
|
|
10
|
+
export default RadioButton;
|
|
11
|
+
//# sourceMappingURL=RadioButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RadioButton.d.ts","sourceRoot":"","sources":["../../src/customRadioButton/RadioButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,UAAU,gBAAgB;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAuE3C,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
import 'react';
|
|
3
|
+
|
|
4
|
+
var RadioButton = function(param) {
|
|
5
|
+
var name = param.name, value = param.value, checked = param.checked, onChange = param.onChange, label = param.label;
|
|
6
|
+
// Generate a stable id so label could be connected if needed
|
|
7
|
+
var id = "".concat(name, "-").concat(value);
|
|
8
|
+
return /*#__PURE__*/ jsxs("div", {
|
|
9
|
+
className: "tw-flex tw-items-center tw-space-x-3",
|
|
10
|
+
style: {
|
|
11
|
+
display: 'flex',
|
|
12
|
+
alignItems: 'center',
|
|
13
|
+
gap: 12
|
|
14
|
+
},
|
|
15
|
+
children: [
|
|
16
|
+
/*#__PURE__*/ jsxs("div", {
|
|
17
|
+
className: "tw-relative tw-cursor-pointer",
|
|
18
|
+
style: {
|
|
19
|
+
position: 'relative',
|
|
20
|
+
cursor: 'pointer'
|
|
21
|
+
},
|
|
22
|
+
onClick: function() {
|
|
23
|
+
return onChange(value);
|
|
24
|
+
},
|
|
25
|
+
children: [
|
|
26
|
+
/*#__PURE__*/ jsx("input", {
|
|
27
|
+
id: id,
|
|
28
|
+
type: "radio",
|
|
29
|
+
name: name,
|
|
30
|
+
value: value,
|
|
31
|
+
checked: checked,
|
|
32
|
+
onChange: function() {
|
|
33
|
+
return onChange(value);
|
|
34
|
+
},
|
|
35
|
+
className: "tw-sr-only",
|
|
36
|
+
style: {
|
|
37
|
+
position: 'absolute',
|
|
38
|
+
opacity: 0,
|
|
39
|
+
pointerEvents: 'none',
|
|
40
|
+
width: 0,
|
|
41
|
+
height: 0
|
|
42
|
+
}
|
|
43
|
+
}),
|
|
44
|
+
/*#__PURE__*/ jsx("div", {
|
|
45
|
+
className: "tw-w-[47px] tw-h-[47px] tw-border-[3px] tw-border-black tw-rounded-full tw-bg-white tw-flex tw-items-center tw-justify-center tw-transition-all tw-duration-200 hover:tw-shadow-sm",
|
|
46
|
+
style: {
|
|
47
|
+
width: 52,
|
|
48
|
+
height: 52,
|
|
49
|
+
borderWidth: 3,
|
|
50
|
+
borderStyle: 'solid',
|
|
51
|
+
borderColor: '#000',
|
|
52
|
+
borderRadius: 9999,
|
|
53
|
+
background: '#fff',
|
|
54
|
+
display: 'flex',
|
|
55
|
+
alignItems: 'center',
|
|
56
|
+
justifyContent: 'center',
|
|
57
|
+
transition: 'all 200ms'
|
|
58
|
+
},
|
|
59
|
+
children: checked && /*#__PURE__*/ jsx("div", {
|
|
60
|
+
className: "tw-w-[30px] tw-h-[30px] tw-bg-slate-900 tw-rounded-full",
|
|
61
|
+
style: {
|
|
62
|
+
width: 30,
|
|
63
|
+
height: 30,
|
|
64
|
+
background: '#0f172a',
|
|
65
|
+
borderRadius: 9999
|
|
66
|
+
}
|
|
67
|
+
})
|
|
68
|
+
})
|
|
69
|
+
]
|
|
70
|
+
}),
|
|
71
|
+
label && /*#__PURE__*/ jsx("label", {
|
|
72
|
+
htmlFor: id,
|
|
73
|
+
className: "tw-cursor-pointer tw-text-gray-700 tw-select-none tw-flex tw-items-center tw-leading-none",
|
|
74
|
+
style: {
|
|
75
|
+
cursor: 'pointer',
|
|
76
|
+
color: '#374151',
|
|
77
|
+
userSelect: 'none',
|
|
78
|
+
display: 'inline-flex',
|
|
79
|
+
alignItems: 'center',
|
|
80
|
+
lineHeight: 1,
|
|
81
|
+
position: 'relative',
|
|
82
|
+
top: 5
|
|
83
|
+
},
|
|
84
|
+
onClick: function() {
|
|
85
|
+
return onChange(value);
|
|
86
|
+
},
|
|
87
|
+
children: label
|
|
88
|
+
})
|
|
89
|
+
]
|
|
90
|
+
});
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
export { RadioButton as default };
|
package/dist/index.d.ts
CHANGED
|
@@ -43,4 +43,5 @@ export * from './availability-indicator';
|
|
|
43
43
|
export * from './number-of-people-input';
|
|
44
44
|
export * from './fullscreen-loader';
|
|
45
45
|
export * from './pages';
|
|
46
|
+
export { default as RadioButton } from './customRadioButton/RadioButton';
|
|
46
47
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAA;AACtB,cAAc,2BAA2B,CAAA;AACzC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA;AACxB,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,SAAS,CAAA;AACvB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,UAAU,CAAA;AACxB,cAAc,kBAAkB,CAAA;AAChC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,QAAQ,CAAA;AACtB,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,wBAAwB,CAAA;AACtC,cAAc,cAAc,CAAA;AAC5B,cAAc,qBAAqB,CAAA;AACnC,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,0BAA0B,CAAA;AACxC,cAAc,0BAA0B,CAAA;AACxC,cAAc,qBAAqB,CAAA;AACnC,cAAc,SAAS,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAA;AACtB,cAAc,2BAA2B,CAAA;AACzC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA;AACxB,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,oBAAoB,CAAA;AAClC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,SAAS,CAAA;AACvB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,WAAW,CAAA;AACzB,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,UAAU,CAAA;AACxB,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,UAAU,CAAA;AACxB,cAAc,kBAAkB,CAAA;AAChC,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,QAAQ,CAAA;AACtB,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,wBAAwB,CAAA;AACtC,cAAc,cAAc,CAAA;AAC5B,cAAc,qBAAqB,CAAA;AACnC,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAClC,cAAc,YAAY,CAAA;AAC1B,cAAc,0BAA0B,CAAA;AACxC,cAAc,0BAA0B,CAAA;AACxC,cAAc,qBAAqB,CAAA;AACnC,cAAc,SAAS,CAAA;AACvB,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,iCAAiC,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -205,6 +205,7 @@ export { useFullscreenLoader } from './fullscreen-loader/useFullscreenLoader.js'
|
|
|
205
205
|
export { FullscreenLoaderContext } from './fullscreen-loader/context.js';
|
|
206
206
|
export { PrivacyComponent } from './pages/PrivacyComponent.js';
|
|
207
207
|
export { TermsComponent } from './pages/TermsComponent.js';
|
|
208
|
+
export { default as RadioButton } from './customRadioButton/RadioButton.js';
|
|
208
209
|
export { default as CountrySelect } from './static/CountrySelect.js';
|
|
209
210
|
export { default as FormCard } from './static/FormCard.js';
|
|
210
211
|
export { default as Image } from './static/Image.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Profile.d.ts","sourceRoot":"","sources":["../../../../src/sales/guest-profile/profile/Profile.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,sDAAsD,CAAA;AAO5E,KAAK,YAAY,GAAG;IAClB,IAAI,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAA;CAGrB,CAAA;AAED,eAAO,MAAM,OAAO,aAAc,YAAY,
|
|
1
|
+
{"version":3,"file":"Profile.d.ts","sourceRoot":"","sources":["../../../../src/sales/guest-profile/profile/Profile.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,sDAAsD,CAAA;AAO5E,KAAK,YAAY,GAAG;IAClB,IAAI,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAA;CAGrB,CAAA;AAED,eAAO,MAAM,OAAO,aAAc,YAAY,4CA6C7C,CAAA"}
|
|
@@ -10,7 +10,8 @@ var Profile = function(param) {
|
|
|
10
10
|
if (!user) {
|
|
11
11
|
return null;
|
|
12
12
|
}
|
|
13
|
-
var firstName = user.firstName, lastName = user.lastName,
|
|
13
|
+
var firstName = user.firstName, lastName = user.lastName, userDetail = user.userDetail;
|
|
14
|
+
var gender = userDetail === null || userDetail === void 0 ? void 0 : userDetail.gender;
|
|
14
15
|
return /*#__PURE__*/ jsx("div", {
|
|
15
16
|
className: "profile",
|
|
16
17
|
children: /*#__PURE__*/ jsxs("div", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@licklist/design",
|
|
3
|
-
"version": "0.78.7-stage.
|
|
3
|
+
"version": "0.78.7-stage.26",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
]
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@licklist/core": "0.36.3-stage.
|
|
45
|
+
"@licklist/core": "^0.36.3-stage.0",
|
|
46
46
|
"@licklist/eslint-config": "0.5.6",
|
|
47
|
-
"@licklist/plugins": "0.36.4-stage.
|
|
47
|
+
"@licklist/plugins": "^0.36.4-stage.0",
|
|
48
48
|
"clsx": "2.1.1",
|
|
49
49
|
"i18next": "25.3.2",
|
|
50
50
|
"lodash": "4.17.21",
|
|
@@ -64,9 +64,9 @@
|
|
|
64
64
|
"@dnd-kit/utilities": "2.0.0",
|
|
65
65
|
"@fortawesome/fontawesome-svg-core": "1.2.34",
|
|
66
66
|
"@fortawesome/free-solid-svg-icons": "5.15.2",
|
|
67
|
-
"@licklist/core": "0.36.3-stage.
|
|
67
|
+
"@licklist/core": "^0.36.3-stage.0",
|
|
68
68
|
"@licklist/eslint-config": "0.5.6",
|
|
69
|
-
"@licklist/plugins": "0.36.4-stage.
|
|
69
|
+
"@licklist/plugins": "^0.36.4-stage.0",
|
|
70
70
|
"@mantine/core": "6.0.22",
|
|
71
71
|
"@mantine/hooks": "6.0.22",
|
|
72
72
|
"@mdx-js/react": "1.6.22",
|
|
@@ -142,6 +142,8 @@ export function CustomDatePicker({
|
|
|
142
142
|
placeholder="DD"
|
|
143
143
|
maxLength={2}
|
|
144
144
|
error={!!displayError}
|
|
145
|
+
classNames={{ input: 'tw-placeholder-[#626A90]' }}
|
|
146
|
+
styles={{ input: { '&::placeholder': { color: '#626A90' } } }}
|
|
145
147
|
onChange={(e) => {
|
|
146
148
|
const value = e.target.value.replace(/[^0-9]/g, '')
|
|
147
149
|
field.onChange(value)
|
|
@@ -175,6 +177,8 @@ export function CustomDatePicker({
|
|
|
175
177
|
placeholder="MM"
|
|
176
178
|
maxLength={2}
|
|
177
179
|
error={!!displayError}
|
|
180
|
+
classNames={{ input: 'tw-placeholder-[#626A90]' }}
|
|
181
|
+
styles={{ input: { '&::placeholder': { color: '#626A90' } } }}
|
|
178
182
|
onChange={(e) => {
|
|
179
183
|
const value = e.target.value.replace(/[^0-9]/g, '')
|
|
180
184
|
field.onChange(value)
|
|
@@ -208,6 +212,8 @@ export function CustomDatePicker({
|
|
|
208
212
|
placeholder="YYYY"
|
|
209
213
|
maxLength={4}
|
|
210
214
|
error={!!displayError}
|
|
215
|
+
classNames={{ input: 'tw-placeholder-[#626A90]' }}
|
|
216
|
+
styles={{ input: { '&::placeholder': { color: '#626A90' } } }}
|
|
211
217
|
onChange={(e) => {
|
|
212
218
|
const value = e.target.value.replace(/[^0-9]/g, '')
|
|
213
219
|
field.onChange(value)
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface RadioButtonProps {
|
|
4
|
+
name: string;
|
|
5
|
+
value: string;
|
|
6
|
+
checked: boolean;
|
|
7
|
+
onChange: (value: string) => void;
|
|
8
|
+
label?: string;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const RadioButton: React.FC<RadioButtonProps> = ({
|
|
12
|
+
name,
|
|
13
|
+
value,
|
|
14
|
+
checked,
|
|
15
|
+
onChange,
|
|
16
|
+
label
|
|
17
|
+
}) => {
|
|
18
|
+
// Generate a stable id so label could be connected if needed
|
|
19
|
+
const id = `${name}-${value}`;
|
|
20
|
+
|
|
21
|
+
return (
|
|
22
|
+
<div
|
|
23
|
+
className="tw-flex tw-items-center tw-space-x-3"
|
|
24
|
+
style={{ display: 'flex', alignItems: 'center', gap: 12 }}
|
|
25
|
+
>
|
|
26
|
+
<div
|
|
27
|
+
className="tw-relative tw-cursor-pointer"
|
|
28
|
+
style={{ position: 'relative', cursor: 'pointer' }}
|
|
29
|
+
onClick={() => onChange(value)}
|
|
30
|
+
>
|
|
31
|
+
{/* Hidden native radio input for accessibility */}
|
|
32
|
+
<input
|
|
33
|
+
id={id}
|
|
34
|
+
type="radio"
|
|
35
|
+
name={name}
|
|
36
|
+
value={value}
|
|
37
|
+
checked={checked}
|
|
38
|
+
onChange={() => onChange(value)}
|
|
39
|
+
className="tw-sr-only"
|
|
40
|
+
style={{ position: 'absolute', opacity: 0, pointerEvents: 'none', width: 0, height: 0 }}
|
|
41
|
+
/>
|
|
42
|
+
|
|
43
|
+
{/* Custom radio button circle */}
|
|
44
|
+
<div
|
|
45
|
+
className="tw-w-[47px] tw-h-[47px] tw-border-[3px] tw-border-black tw-rounded-full tw-bg-white tw-flex tw-items-center tw-justify-center tw-transition-all tw-duration-200 hover:tw-shadow-sm"
|
|
46
|
+
style={{
|
|
47
|
+
width: 52,
|
|
48
|
+
height: 52,
|
|
49
|
+
borderWidth: 3,
|
|
50
|
+
borderStyle: 'solid',
|
|
51
|
+
borderColor: '#000',
|
|
52
|
+
borderRadius: 9999,
|
|
53
|
+
background: '#fff',
|
|
54
|
+
display: 'flex',
|
|
55
|
+
alignItems: 'center',
|
|
56
|
+
justifyContent: 'center',
|
|
57
|
+
transition: 'all 200ms',
|
|
58
|
+
}}
|
|
59
|
+
>
|
|
60
|
+
{/* Inner filled circle when selected */}
|
|
61
|
+
{checked && (
|
|
62
|
+
<div
|
|
63
|
+
className="tw-w-[30px] tw-h-[30px] tw-bg-slate-900 tw-rounded-full"
|
|
64
|
+
style={{ width: 30, height: 30, background: '#0f172a', borderRadius: 9999 }}
|
|
65
|
+
/>
|
|
66
|
+
)}
|
|
67
|
+
</div>
|
|
68
|
+
</div>
|
|
69
|
+
|
|
70
|
+
{label && (
|
|
71
|
+
<label
|
|
72
|
+
htmlFor={id}
|
|
73
|
+
className="tw-cursor-pointer tw-text-gray-700 tw-select-none tw-flex tw-items-center tw-leading-none"
|
|
74
|
+
style={{ cursor: 'pointer', color: '#374151', userSelect: 'none', display: 'inline-flex', alignItems: 'center', lineHeight: 1, position: 'relative', top: 5 }}
|
|
75
|
+
onClick={() => onChange(value)}
|
|
76
|
+
>
|
|
77
|
+
{label}
|
|
78
|
+
</label>
|
|
79
|
+
)}
|
|
80
|
+
</div>
|
|
81
|
+
);
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
export default RadioButton;
|
package/src/index.ts
CHANGED
|
@@ -16,11 +16,8 @@ export const Profile = ({ user }: ProfileProps) => {
|
|
|
16
16
|
return null
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
const {
|
|
20
|
-
|
|
21
|
-
lastName,
|
|
22
|
-
userDetail: { gender },
|
|
23
|
-
} = user
|
|
19
|
+
const { firstName, lastName, userDetail } = user
|
|
20
|
+
const gender = userDetail?.gender
|
|
24
21
|
|
|
25
22
|
return (
|
|
26
23
|
<div className='profile'>
|
package/yarn.lock
CHANGED
|
@@ -2442,9 +2442,9 @@ __metadata:
|
|
|
2442
2442
|
languageName: node
|
|
2443
2443
|
linkType: hard
|
|
2444
2444
|
|
|
2445
|
-
"@licklist/core@npm:0.36.3-stage.
|
|
2446
|
-
version: 0.36.
|
|
2447
|
-
resolution: "@licklist/core@npm:0.36.
|
|
2445
|
+
"@licklist/core@npm:0.36.4, @licklist/core@npm:^0.36.3-stage.0":
|
|
2446
|
+
version: 0.36.4
|
|
2447
|
+
resolution: "@licklist/core@npm:0.36.4"
|
|
2448
2448
|
dependencies:
|
|
2449
2449
|
"@sentry/browser": "npm:6.2.0"
|
|
2450
2450
|
axios: "npm:0.26.0"
|
|
@@ -2467,7 +2467,7 @@ __metadata:
|
|
|
2467
2467
|
react-i18next: 15.6.1
|
|
2468
2468
|
react-intl: 7.1.11
|
|
2469
2469
|
zustand: 3.7.2
|
|
2470
|
-
checksum: 10c0/
|
|
2470
|
+
checksum: 10c0/d0e5c70446342c9a8b3364077344d1d374ec65110ab9610acdf1bcd615699579da984cab56d688c4126067d28ee26e665b1a92e5631bb23c3f87a7dbf178ac3d
|
|
2471
2471
|
languageName: node
|
|
2472
2472
|
linkType: hard
|
|
2473
2473
|
|
|
@@ -2482,9 +2482,9 @@ __metadata:
|
|
|
2482
2482
|
"@dnd-kit/utilities": "npm:2.0.0"
|
|
2483
2483
|
"@fortawesome/fontawesome-svg-core": "npm:1.2.34"
|
|
2484
2484
|
"@fortawesome/free-solid-svg-icons": "npm:5.15.2"
|
|
2485
|
-
"@licklist/core": "npm
|
|
2485
|
+
"@licklist/core": "npm:^0.36.3-stage.0"
|
|
2486
2486
|
"@licklist/eslint-config": "npm:0.5.6"
|
|
2487
|
-
"@licklist/plugins": "npm
|
|
2487
|
+
"@licklist/plugins": "npm:^0.36.4-stage.0"
|
|
2488
2488
|
"@mantine/core": "npm:6.0.22"
|
|
2489
2489
|
"@mantine/hooks": "npm:6.0.22"
|
|
2490
2490
|
"@mdx-js/react": "npm:1.6.22"
|
|
@@ -2613,9 +2613,9 @@ __metadata:
|
|
|
2613
2613
|
vite-plugin-svgr: "npm:4.2.0"
|
|
2614
2614
|
vite-tsconfig-paths: "npm:5.0.1"
|
|
2615
2615
|
peerDependencies:
|
|
2616
|
-
"@licklist/core": 0.36.3-stage.
|
|
2616
|
+
"@licklist/core": ^0.36.3-stage.0
|
|
2617
2617
|
"@licklist/eslint-config": 0.5.6
|
|
2618
|
-
"@licklist/plugins": 0.36.4-stage.
|
|
2618
|
+
"@licklist/plugins": ^0.36.4-stage.0
|
|
2619
2619
|
clsx: 2.1.1
|
|
2620
2620
|
i18next: 25.3.2
|
|
2621
2621
|
lodash: 4.17.21
|
|
@@ -2648,11 +2648,11 @@ __metadata:
|
|
|
2648
2648
|
languageName: node
|
|
2649
2649
|
linkType: hard
|
|
2650
2650
|
|
|
2651
|
-
"@licklist/plugins@npm
|
|
2652
|
-
version: 0.36.
|
|
2653
|
-
resolution: "@licklist/plugins@npm:0.36.
|
|
2651
|
+
"@licklist/plugins@npm:^0.36.4-stage.0":
|
|
2652
|
+
version: 0.36.5
|
|
2653
|
+
resolution: "@licklist/plugins@npm:0.36.5"
|
|
2654
2654
|
dependencies:
|
|
2655
|
-
"@licklist/core": "npm:0.36.
|
|
2655
|
+
"@licklist/core": "npm:0.36.4"
|
|
2656
2656
|
axios: "npm:0.26.0"
|
|
2657
2657
|
clsx: "npm:2.1.1"
|
|
2658
2658
|
history: "npm:4.10.1"
|
|
@@ -2675,7 +2675,7 @@ __metadata:
|
|
|
2675
2675
|
tailwind-merge: "npm:3.1.0"
|
|
2676
2676
|
use-debounce: "npm:7.0.1"
|
|
2677
2677
|
peerDependencies:
|
|
2678
|
-
"@licklist/core": 0.36.
|
|
2678
|
+
"@licklist/core": 0.36.4
|
|
2679
2679
|
"@licklist/eslint-config": 0.5.6
|
|
2680
2680
|
axios: 0.26.0
|
|
2681
2681
|
clsx: 2.1.1
|
|
@@ -2689,7 +2689,7 @@ __metadata:
|
|
|
2689
2689
|
react-loader: 2.4.7
|
|
2690
2690
|
react-query: 3.34.12
|
|
2691
2691
|
react-router-dom: 6.30.1
|
|
2692
|
-
checksum: 10c0/
|
|
2692
|
+
checksum: 10c0/98b2efbbba3a165e9ec0b8f69835d5b86ff97aabd7513d455de423e0e151aaceed682ad2335bee3a987a9fa1dfc3af184c1ebff650c6e8c28dd6501af4132867
|
|
2693
2693
|
languageName: node
|
|
2694
2694
|
linkType: hard
|
|
2695
2695
|
|