@licklist/design 0.78.7-stage.24 → 0.78.7-stage.25
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 +3 -3
- 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 +31 -2
|
@@ -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.25",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
|
|
@@ -42,7 +42,7 @@
|
|
|
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
47
|
"@licklist/plugins": "0.36.4-stage.13",
|
|
48
48
|
"clsx": "2.1.1",
|
|
@@ -64,7 +64,7 @@
|
|
|
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
69
|
"@licklist/plugins": "0.36.4-stage.13",
|
|
70
70
|
"@mantine/core": "6.0.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,6 +2442,35 @@ __metadata:
|
|
|
2442
2442
|
languageName: node
|
|
2443
2443
|
linkType: hard
|
|
2444
2444
|
|
|
2445
|
+
"@licklist/core@npm:0.36.3-stage.0":
|
|
2446
|
+
version: 0.36.3-stage.0
|
|
2447
|
+
resolution: "@licklist/core@npm:0.36.3-stage.0"
|
|
2448
|
+
dependencies:
|
|
2449
|
+
"@sentry/browser": "npm:6.2.0"
|
|
2450
|
+
axios: "npm:0.26.0"
|
|
2451
|
+
i18next: "npm:25.3.2"
|
|
2452
|
+
luxon: "npm:3.5.0"
|
|
2453
|
+
react: "npm:18.3.1"
|
|
2454
|
+
react-dom: "npm:18.3.1"
|
|
2455
|
+
react-i18next: "npm:15.6.1"
|
|
2456
|
+
react-intl: "npm:7.1.11"
|
|
2457
|
+
uuid: "npm:9.0.0"
|
|
2458
|
+
wait-for-expect: "npm:3.0.2"
|
|
2459
|
+
zustand: "npm:3.7.2"
|
|
2460
|
+
peerDependencies:
|
|
2461
|
+
"@licklist/eslint-config": 0.5.6
|
|
2462
|
+
axios: 0.26.0
|
|
2463
|
+
i18next: 25.3.2
|
|
2464
|
+
luxon: 3.5.0
|
|
2465
|
+
react: 18.3.1
|
|
2466
|
+
react-dom: 18.3.1
|
|
2467
|
+
react-i18next: 15.6.1
|
|
2468
|
+
react-intl: 7.1.11
|
|
2469
|
+
zustand: 3.7.2
|
|
2470
|
+
checksum: 10c0/d5f50af7f4c97b2d24c5ba42c83b69df1f14fdbab5c0ae66296c89a6881de6b347d9e489a63d5fb4d0c1af58d376cb4043194e06a6a8ca04f20983d7b8a3d5bb
|
|
2471
|
+
languageName: node
|
|
2472
|
+
linkType: hard
|
|
2473
|
+
|
|
2445
2474
|
"@licklist/core@npm:0.36.3-stage.5":
|
|
2446
2475
|
version: 0.36.3-stage.5
|
|
2447
2476
|
resolution: "@licklist/core@npm:0.36.3-stage.5"
|
|
@@ -2482,7 +2511,7 @@ __metadata:
|
|
|
2482
2511
|
"@dnd-kit/utilities": "npm:2.0.0"
|
|
2483
2512
|
"@fortawesome/fontawesome-svg-core": "npm:1.2.34"
|
|
2484
2513
|
"@fortawesome/free-solid-svg-icons": "npm:5.15.2"
|
|
2485
|
-
"@licklist/core": "npm:0.36.3-stage.
|
|
2514
|
+
"@licklist/core": "npm:0.36.3-stage.0"
|
|
2486
2515
|
"@licklist/eslint-config": "npm:0.5.6"
|
|
2487
2516
|
"@licklist/plugins": "npm:0.36.4-stage.13"
|
|
2488
2517
|
"@mantine/core": "npm:6.0.22"
|
|
@@ -2613,7 +2642,7 @@ __metadata:
|
|
|
2613
2642
|
vite-plugin-svgr: "npm:4.2.0"
|
|
2614
2643
|
vite-tsconfig-paths: "npm:5.0.1"
|
|
2615
2644
|
peerDependencies:
|
|
2616
|
-
"@licklist/core": 0.36.3-stage.
|
|
2645
|
+
"@licklist/core": 0.36.3-stage.0
|
|
2617
2646
|
"@licklist/eslint-config": 0.5.6
|
|
2618
2647
|
"@licklist/plugins": 0.36.4-stage.13
|
|
2619
2648
|
clsx: 2.1.1
|