@licklist/design 0.70.0-dev.4 → 0.70.0-dev.6
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/assets/iframe/available.svg +4 -4
- package/dist/assets/iframe/available.svg.js +16 -18
- package/dist/availability-indicator/AvailabilityIndicator.d.ts +3 -1
- package/dist/availability-indicator/AvailabilityIndicator.d.ts.map +1 -1
- package/dist/availability-indicator/AvailabilityIndicator.js +112 -18
- package/dist/calendar/Calendar.d.ts +2 -0
- package/dist/calendar/Calendar.d.ts.map +1 -1
- package/dist/calendar/components/CalendarDates/CalendarDates.d.ts +2 -2
- package/dist/calendar/components/CalendarDates/CalendarDates.d.ts.map +1 -1
- package/dist/calendar/components/CalendarDates/CalendarDates.js +3 -2
- package/dist/date-time-button/DateTimeButton.d.ts +3 -1
- package/dist/date-time-button/DateTimeButton.d.ts.map +1 -1
- package/dist/date-time-button/DateTimeButton.js +2 -1
- package/dist/iframe/activity-card/ActivityCard.d.ts +3 -1
- package/dist/iframe/activity-card/ActivityCard.d.ts.map +1 -1
- package/dist/iframe/activity-card/ActivityCard.js +5 -3
- package/dist/snippet/snippet-template/preview/Preview.js +1 -0
- package/dist/styles/availability-indicator/AvailabilityIndicator.scss +9 -0
- package/dist/styles/date-time-button/DateTimeButton.scss +1 -1
- package/package.json +3 -3
- package/src/assets/iframe/available.svg +4 -4
- package/src/availability-indicator/AvailabilityIndicator.tsx +91 -16
- package/src/calendar/Calendar.tsx +2 -0
- package/src/calendar/components/CalendarDates/CalendarDates.tsx +3 -0
- package/src/date-time-button/DateTimeButton.tsx +4 -0
- package/src/iframe/activity-card/ActivityCard.tsx +15 -2
- package/src/styles/availability-indicator/AvailabilityIndicator.scss +9 -0
- package/src/styles/date-time-button/DateTimeButton.scss +1 -1
- package/yarn.lock +107 -107
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
<rect x="
|
|
3
|
-
<rect x="
|
|
4
|
-
<rect x="
|
|
1
|
+
<svg viewBox="auto" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="14%" y="0" width="63%" height="29%" rx="15%" fill="#4CF973" stroke="white"/>
|
|
3
|
+
<rect x="14%" y="33%" width="63%" height="29%" rx="15%" fill="#4CF973" stroke="white"/>
|
|
4
|
+
<rect x="14%" y="66%" width="63%" height="29%" rx="15%" fill="#4CF973" stroke="white"/>
|
|
5
5
|
</svg>
|
|
@@ -4,33 +4,31 @@ var _rect, _rect2, _rect3;
|
|
|
4
4
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
5
|
const SvgAvailable = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
fill: "none"
|
|
7
|
+
fill: "none",
|
|
8
|
+
viewBox: "auto"
|
|
10
9
|
}, props), _rect || (_rect = /*#__PURE__*/React.createElement("rect", {
|
|
11
|
-
width:
|
|
12
|
-
height:
|
|
13
|
-
x:
|
|
14
|
-
y: 1.037,
|
|
10
|
+
width: "63%",
|
|
11
|
+
height: "29%",
|
|
12
|
+
x: "14%",
|
|
15
13
|
fill: "#4CF973",
|
|
16
14
|
stroke: "#fff",
|
|
17
|
-
rx:
|
|
15
|
+
rx: "15%"
|
|
18
16
|
})), _rect2 || (_rect2 = /*#__PURE__*/React.createElement("rect", {
|
|
19
|
-
width:
|
|
20
|
-
height:
|
|
21
|
-
x:
|
|
22
|
-
y:
|
|
17
|
+
width: "63%",
|
|
18
|
+
height: "29%",
|
|
19
|
+
x: "14%",
|
|
20
|
+
y: "33%",
|
|
23
21
|
fill: "#4CF973",
|
|
24
22
|
stroke: "#fff",
|
|
25
|
-
rx:
|
|
23
|
+
rx: "15%"
|
|
26
24
|
})), _rect3 || (_rect3 = /*#__PURE__*/React.createElement("rect", {
|
|
27
|
-
width:
|
|
28
|
-
height:
|
|
29
|
-
x:
|
|
30
|
-
y:
|
|
25
|
+
width: "63%",
|
|
26
|
+
height: "29%",
|
|
27
|
+
x: "14%",
|
|
28
|
+
y: "66%",
|
|
31
29
|
fill: "#4CF973",
|
|
32
30
|
stroke: "#fff",
|
|
33
|
-
rx:
|
|
31
|
+
rx: "15%"
|
|
34
32
|
})));
|
|
35
33
|
|
|
36
34
|
export { SvgAvailable as ReactComponent };
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { ZoneResourcesAvailability } from '@licklist/core/dist/DataMapper/Order/ZoneResourcesAvailabilityDataMapper';
|
|
2
|
+
import { AvailabilityFormat } from '@licklist/core/dist/DataMapper/Provider/SnippetDataMapper';
|
|
2
3
|
type AvailabilityIndicatorProps = {
|
|
3
4
|
resources: ZoneResourcesAvailability;
|
|
4
5
|
isUnavailable?: boolean;
|
|
5
6
|
isSoldOut?: boolean;
|
|
7
|
+
availabilityFormat?: AvailabilityFormat | null;
|
|
6
8
|
};
|
|
7
|
-
export declare const AvailabilityIndicator: ({ resources, isUnavailable, isSoldOut, }: AvailabilityIndicatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const AvailabilityIndicator: ({ resources, isUnavailable, isSoldOut: _isSoldOut, availabilityFormat, }: AvailabilityIndicatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
10
|
export {};
|
|
9
11
|
//# sourceMappingURL=AvailabilityIndicator.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AvailabilityIndicator.d.ts","sourceRoot":"","sources":["../../src/availability-indicator/AvailabilityIndicator.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,yBAAyB,EAAE,MAAM,0EAA0E,CAAA;
|
|
1
|
+
{"version":3,"file":"AvailabilityIndicator.d.ts","sourceRoot":"","sources":["../../src/availability-indicator/AvailabilityIndicator.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,yBAAyB,EAAE,MAAM,0EAA0E,CAAA;AACpH,OAAO,EAEL,kBAAkB,EACnB,MAAM,2DAA2D,CAAA;AAuFlE,KAAK,0BAA0B,GAAG;IAChC,SAAS,EAAE,yBAAyB,CAAA;IACpC,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,kBAAkB,CAAC,EAAE,kBAAkB,GAAG,IAAI,CAAA;CAC/C,CAAA;AAED,eAAO,MAAM,qBAAqB,6EAK/B,0BAA0B,4CAwB5B,CAAA"}
|
|
@@ -1,40 +1,117 @@
|
|
|
1
1
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
2
2
|
import { useTranslation } from 'react-i18next';
|
|
3
|
+
import { AVAILABILITY_FORMAT_NUMBER } from '@licklist/core/dist/DataMapper/Provider/SnippetDataMapper';
|
|
4
|
+
import { useWindowDimensions } from '@licklist/plugins';
|
|
3
5
|
import { ReactComponent as SvgAvailable } from '../assets/iframe/available.svg.js';
|
|
4
6
|
import { ReactComponent as SvgLimited } from '../assets/iframe/limited.svg.js';
|
|
5
7
|
import { ReactComponent as SvgSoldOut } from '../assets/iframe/soldOut.svg.js';
|
|
8
|
+
import { TAB_WIDTH } from '../iframe/page/components/PageBody/constants.js';
|
|
6
9
|
|
|
10
|
+
function _define_property(obj, key, value) {
|
|
11
|
+
if (key in obj) {
|
|
12
|
+
Object.defineProperty(obj, key, {
|
|
13
|
+
value: value,
|
|
14
|
+
enumerable: true,
|
|
15
|
+
configurable: true,
|
|
16
|
+
writable: true
|
|
17
|
+
});
|
|
18
|
+
} else {
|
|
19
|
+
obj[key] = value;
|
|
20
|
+
}
|
|
21
|
+
return obj;
|
|
22
|
+
}
|
|
23
|
+
function _object_spread(target) {
|
|
24
|
+
for(var i = 1; i < arguments.length; i++){
|
|
25
|
+
var source = arguments[i] != null ? arguments[i] : {};
|
|
26
|
+
var ownKeys = Object.keys(source);
|
|
27
|
+
if (typeof Object.getOwnPropertySymbols === "function") {
|
|
28
|
+
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
29
|
+
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
30
|
+
}));
|
|
31
|
+
}
|
|
32
|
+
ownKeys.forEach(function(key) {
|
|
33
|
+
_define_property(target, key, source[key]);
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
return target;
|
|
37
|
+
}
|
|
38
|
+
function ownKeys(object, enumerableOnly) {
|
|
39
|
+
var keys = Object.keys(object);
|
|
40
|
+
if (Object.getOwnPropertySymbols) {
|
|
41
|
+
var symbols = Object.getOwnPropertySymbols(object);
|
|
42
|
+
if (enumerableOnly) {
|
|
43
|
+
symbols = symbols.filter(function(sym) {
|
|
44
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
keys.push.apply(keys, symbols);
|
|
48
|
+
}
|
|
49
|
+
return keys;
|
|
50
|
+
}
|
|
51
|
+
function _object_spread_props(target, source) {
|
|
52
|
+
source = source != null ? source : {};
|
|
53
|
+
if (Object.getOwnPropertyDescriptors) {
|
|
54
|
+
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
55
|
+
} else {
|
|
56
|
+
ownKeys(Object(source)).forEach(function(key) {
|
|
57
|
+
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
return target;
|
|
61
|
+
}
|
|
7
62
|
var LOTS_OF_SPACE_LIMIT = 0.2;
|
|
8
63
|
var LIMITED_LIMIT = 0.8;
|
|
9
|
-
var
|
|
10
|
-
var bookedResources = param.bookedResources, totalResources = param.totalResources;
|
|
11
|
-
|
|
64
|
+
var getLabelsWithArgument = function(param) {
|
|
65
|
+
var bookedResources = param.bookedResources, totalResources = param.totalResources, availabilityFormat = param.availabilityFormat, label = param.label;
|
|
66
|
+
var availableResources = totalResources - bookedResources;
|
|
67
|
+
if (availabilityFormat !== AVAILABILITY_FORMAT_NUMBER) {
|
|
12
68
|
return {
|
|
13
|
-
label:
|
|
14
|
-
Icon: SvgSoldOut
|
|
69
|
+
label: label
|
|
15
70
|
};
|
|
16
71
|
}
|
|
72
|
+
return availableResources === 1 ? {
|
|
73
|
+
label: 'availableSingleResource'
|
|
74
|
+
} : {
|
|
75
|
+
label: 'availableMultipleResources',
|
|
76
|
+
argument: availableResources
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
var getIconsAndLabelsWithArgument = function(param) {
|
|
80
|
+
var bookedResources = param.bookedResources, totalResources = param.totalResources, availabilityFormat = param.availabilityFormat;
|
|
17
81
|
// lots of space if less than 80% booked
|
|
18
82
|
if (bookedResources / totalResources <= LOTS_OF_SPACE_LIMIT) {
|
|
19
|
-
return {
|
|
20
|
-
|
|
83
|
+
return _object_spread_props(_object_spread({}, getLabelsWithArgument({
|
|
84
|
+
bookedResources: bookedResources,
|
|
85
|
+
totalResources: totalResources,
|
|
86
|
+
availabilityFormat: availabilityFormat,
|
|
87
|
+
label: 'lotsOfSpace'
|
|
88
|
+
})), {
|
|
21
89
|
Icon: SvgAvailable
|
|
22
|
-
};
|
|
90
|
+
});
|
|
23
91
|
}
|
|
24
92
|
if (bookedResources / totalResources >= LIMITED_LIMIT) {
|
|
25
|
-
return {
|
|
26
|
-
|
|
93
|
+
return _object_spread_props(_object_spread({}, getLabelsWithArgument({
|
|
94
|
+
bookedResources: bookedResources,
|
|
95
|
+
totalResources: totalResources,
|
|
96
|
+
availabilityFormat: availabilityFormat,
|
|
97
|
+
label: 'limited'
|
|
98
|
+
})), {
|
|
27
99
|
Icon: SvgLimited
|
|
28
|
-
};
|
|
100
|
+
});
|
|
29
101
|
}
|
|
30
|
-
return {
|
|
31
|
-
|
|
102
|
+
return _object_spread_props(_object_spread({}, getLabelsWithArgument({
|
|
103
|
+
bookedResources: bookedResources,
|
|
104
|
+
totalResources: totalResources,
|
|
105
|
+
availabilityFormat: availabilityFormat,
|
|
106
|
+
label: 'available'
|
|
107
|
+
})), {
|
|
32
108
|
Icon: SvgAvailable
|
|
33
|
-
};
|
|
109
|
+
});
|
|
34
110
|
};
|
|
35
111
|
var AvailabilityIndicator = function(param) {
|
|
36
|
-
var resources = param.resources, isUnavailable = param.isUnavailable, isSoldOut = param.
|
|
112
|
+
var resources = param.resources, isUnavailable = param.isUnavailable, _isSoldOut = param.isSoldOut, availabilityFormat = param.availabilityFormat;
|
|
37
113
|
var t = useTranslation('Design').t;
|
|
114
|
+
var isSoldOut = _isSoldOut || resources.bookedResources === resources.totalResources;
|
|
38
115
|
if (isUnavailable) {
|
|
39
116
|
return /*#__PURE__*/ jsx(Indicator, {
|
|
40
117
|
Icon: SvgSoldOut,
|
|
@@ -47,19 +124,36 @@ var AvailabilityIndicator = function(param) {
|
|
|
47
124
|
label: t('soldOut')
|
|
48
125
|
});
|
|
49
126
|
}
|
|
50
|
-
var
|
|
127
|
+
var _getIconsAndLabelsWithArgument = getIconsAndLabelsWithArgument(_object_spread_props(_object_spread({}, resources), {
|
|
128
|
+
availabilityFormat: availabilityFormat
|
|
129
|
+
})), Icon = _getIconsAndLabelsWithArgument.Icon, label = _getIconsAndLabelsWithArgument.label, argument = _getIconsAndLabelsWithArgument.argument;
|
|
51
130
|
return /*#__PURE__*/ jsx(Indicator, {
|
|
52
131
|
Icon: Icon,
|
|
53
|
-
label: t(label
|
|
132
|
+
label: t(label, argument ? {
|
|
133
|
+
argument: argument
|
|
134
|
+
} : undefined)
|
|
54
135
|
});
|
|
55
136
|
};
|
|
56
137
|
var Indicator = function(param) {
|
|
57
138
|
var Icon = param.Icon, label = param.label;
|
|
139
|
+
var width = useWindowDimensions().width;
|
|
140
|
+
var iconSizes = width > TAB_WIDTH ? {
|
|
141
|
+
height: 15,
|
|
142
|
+
width: 11
|
|
143
|
+
} : {
|
|
144
|
+
height: 11,
|
|
145
|
+
width: 7
|
|
146
|
+
};
|
|
58
147
|
return /*#__PURE__*/ jsxs("div", {
|
|
59
148
|
className: "availability-indicator",
|
|
60
149
|
children: [
|
|
61
|
-
/*#__PURE__*/ jsx(Icon, {
|
|
150
|
+
/*#__PURE__*/ jsx(Icon, {
|
|
151
|
+
height: iconSizes.height,
|
|
152
|
+
width: iconSizes.width,
|
|
153
|
+
viewBox: "auto"
|
|
154
|
+
}),
|
|
62
155
|
/*#__PURE__*/ jsx("div", {
|
|
156
|
+
className: "indicator-label",
|
|
63
157
|
children: label
|
|
64
158
|
})
|
|
65
159
|
]
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Dispatch, ReactElement, SetStateAction } from 'react';
|
|
2
2
|
import { DateTime } from 'luxon';
|
|
3
|
+
import { AvailabilityFormat } from '@licklist/core/dist/DataMapper/Provider/SnippetDataMapper';
|
|
3
4
|
import { DateTimeButtonProps } from 'src/date-time-button';
|
|
4
5
|
export declare const defaultStartDay: DateTime<true>;
|
|
5
6
|
export type CalendarProps = {
|
|
@@ -11,6 +12,7 @@ export type CalendarProps = {
|
|
|
11
12
|
fromPrice?: string | ReactElement | null;
|
|
12
13
|
isLoading?: boolean;
|
|
13
14
|
initialDate?: DateTime;
|
|
15
|
+
availabilityFormat?: AvailabilityFormat | null;
|
|
14
16
|
getDateTimeButtonProps: (date: DateTime) => Pick<DateTimeButtonProps, 'resources' | 'showResources' | 'isDisabled'>;
|
|
15
17
|
};
|
|
16
18
|
export declare const Calendar: (props: CalendarProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Calendar.d.ts","sourceRoot":"","sources":["../../src/calendar/Calendar.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,OAAO,CAAA;AAC9D,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAA;AAK1D,eAAO,MAAM,eAAe,gBAK1B,CAAA;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,WAAW,EAAE,QAAQ,CAAA;IACrB,cAAc,EAAE,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAA;IAClD,aAAa,EAAE,QAAQ,EAAE,CAAA;IACzB,YAAY,EAAE,QAAQ,GAAG,IAAI,CAAA;IAC7B,eAAe,EAAE,QAAQ,CAAC,cAAc,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC,CAAA;IAC1D,SAAS,CAAC,EAAE,MAAM,GAAG,YAAY,GAAG,IAAI,CAAA;IACxC,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,WAAW,CAAC,EAAE,QAAQ,CAAA;IACtB,sBAAsB,EAAE,CACtB,IAAI,EAAE,QAAQ,KACX,IAAI,CAAC,mBAAmB,EAAE,WAAW,GAAG,eAAe,GAAG,YAAY,CAAC,CAAA;CAC7E,CAAA;AAED,eAAO,MAAM,QAAQ,UAAW,aAAa,4CAW5C,CAAA"}
|
|
1
|
+
{"version":3,"file":"Calendar.d.ts","sourceRoot":"","sources":["../../src/calendar/Calendar.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,OAAO,CAAA;AAC9D,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,kBAAkB,EAAE,MAAM,2DAA2D,CAAA;AAC9F,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAA;AAK1D,eAAO,MAAM,eAAe,gBAK1B,CAAA;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,WAAW,EAAE,QAAQ,CAAA;IACrB,cAAc,EAAE,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAA;IAClD,aAAa,EAAE,QAAQ,EAAE,CAAA;IACzB,YAAY,EAAE,QAAQ,GAAG,IAAI,CAAA;IAC7B,eAAe,EAAE,QAAQ,CAAC,cAAc,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC,CAAA;IAC1D,SAAS,CAAC,EAAE,MAAM,GAAG,YAAY,GAAG,IAAI,CAAA;IACxC,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,WAAW,CAAC,EAAE,QAAQ,CAAA;IACtB,kBAAkB,CAAC,EAAE,kBAAkB,GAAG,IAAI,CAAA;IAC9C,sBAAsB,EAAE,CACtB,IAAI,EAAE,QAAQ,KACX,IAAI,CAAC,mBAAmB,EAAE,WAAW,GAAG,eAAe,GAAG,YAAY,CAAC,CAAA;CAC7E,CAAA;AAED,eAAO,MAAM,QAAQ,UAAW,aAAa,4CAW5C,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { CalendarProps } from '../../Calendar';
|
|
2
|
-
export type CalendarDatesProps = Pick<CalendarProps, 'calendarDates' | 'selectedDate' | 'setSelectedDate' | 'fromPrice' | 'getDateTimeButtonProps'>;
|
|
3
|
-
export declare const CalendarDates: ({ calendarDates, selectedDate, setSelectedDate, fromPrice, getDateTimeButtonProps, }: CalendarDatesProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export type CalendarDatesProps = Pick<CalendarProps, 'calendarDates' | 'selectedDate' | 'setSelectedDate' | 'fromPrice' | 'getDateTimeButtonProps' | 'availabilityFormat'>;
|
|
3
|
+
export declare const CalendarDates: ({ calendarDates, selectedDate, setSelectedDate, fromPrice, availabilityFormat, getDateTimeButtonProps, }: CalendarDatesProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
//# sourceMappingURL=CalendarDates.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CalendarDates.d.ts","sourceRoot":"","sources":["../../../../src/calendar/components/CalendarDates/CalendarDates.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAA;AAE9C,MAAM,MAAM,kBAAkB,GAAG,IAAI,CACnC,aAAa,EACX,eAAe,GACf,cAAc,GACd,iBAAiB,GACjB,WAAW,GACX,wBAAwB,
|
|
1
|
+
{"version":3,"file":"CalendarDates.d.ts","sourceRoot":"","sources":["../../../../src/calendar/components/CalendarDates/CalendarDates.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAA;AAE9C,MAAM,MAAM,kBAAkB,GAAG,IAAI,CACnC,aAAa,EACX,eAAe,GACf,cAAc,GACd,iBAAiB,GACjB,WAAW,GACX,wBAAwB,GACxB,oBAAoB,CACvB,CAAA;AAED,eAAO,MAAM,aAAa,6GAOvB,kBAAkB,4CA6CpB,CAAA"}
|
|
@@ -57,7 +57,7 @@ function _unsupported_iterable_to_array(o, minLen) {
|
|
|
57
57
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
58
58
|
}
|
|
59
59
|
var CalendarDates = function(param) {
|
|
60
|
-
var calendarDates = param.calendarDates, selectedDate = param.selectedDate, setSelectedDate = param.setSelectedDate, fromPrice = param.fromPrice, getDateTimeButtonProps = param.getDateTimeButtonProps;
|
|
60
|
+
var calendarDates = param.calendarDates, selectedDate = param.selectedDate, setSelectedDate = param.setSelectedDate, fromPrice = param.fromPrice, availabilityFormat = param.availabilityFormat, getDateTimeButtonProps = param.getDateTimeButtonProps;
|
|
61
61
|
var fillCalendarDates = useMemo(function() {
|
|
62
62
|
var _calendarDates_;
|
|
63
63
|
var _calendarDates__weekday;
|
|
@@ -90,7 +90,8 @@ var CalendarDates = function(param) {
|
|
|
90
90
|
return setSelectedDate(date);
|
|
91
91
|
},
|
|
92
92
|
price: fromPrice,
|
|
93
|
-
variant: Variant.month
|
|
93
|
+
variant: Variant.month,
|
|
94
|
+
availabilityFormat: availabilityFormat
|
|
94
95
|
}, props), +date);
|
|
95
96
|
})
|
|
96
97
|
})
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ReactElement } from 'react';
|
|
2
2
|
import { DateTime } from 'luxon';
|
|
3
3
|
import { ZoneResourcesAvailability } from '@licklist/core/dist/DataMapper/Order/ZoneResourcesAvailabilityDataMapper';
|
|
4
|
+
import { AvailabilityFormat } from '@licklist/core/dist/DataMapper/Provider/SnippetDataMapper';
|
|
4
5
|
export declare enum Variant {
|
|
5
6
|
week = "week",
|
|
6
7
|
month = "month",
|
|
@@ -16,6 +17,7 @@ export type DateTimeButtonProps = {
|
|
|
16
17
|
resources?: ZoneResourcesAvailability | null;
|
|
17
18
|
showResources?: boolean;
|
|
18
19
|
variant: Variant;
|
|
20
|
+
availabilityFormat?: AvailabilityFormat | null;
|
|
19
21
|
};
|
|
20
|
-
export declare const DateTimeButton: ({ date, isDisabled: _isDisabled, isSelected, isSoldOut: _isSoldOut, onSelect, price, resources, showResources, variant, }: DateTimeButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export declare const DateTimeButton: ({ date, isDisabled: _isDisabled, isSelected, isSoldOut: _isSoldOut, onSelect, price, resources, showResources, variant, availabilityFormat, }: DateTimeButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
21
23
|
//# sourceMappingURL=DateTimeButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DateTimeButton.d.ts","sourceRoot":"","sources":["../../src/date-time-button/DateTimeButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAEpC,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,yBAAyB,EAAE,MAAM,0EAA0E,CAAA;
|
|
1
|
+
{"version":3,"file":"DateTimeButton.d.ts","sourceRoot":"","sources":["../../src/date-time-button/DateTimeButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAEpC,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,yBAAyB,EAAE,MAAM,0EAA0E,CAAA;AACpH,OAAO,EAAE,kBAAkB,EAAE,MAAM,2DAA2D,CAAA;AAI9F,oBAAY,OAAO;IACjB,IAAI,SAAS;IACb,KAAK,UAAU;IACf,IAAI,SAAS;CACd;AAED,MAAM,MAAM,mBAAmB,GAAG;IAChC,IAAI,EAAE,QAAQ,CAAA;IACd,UAAU,EAAE,OAAO,CAAA;IACnB,UAAU,EAAE,OAAO,CAAA;IACnB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,EAAE,CAAC,IAAI,EAAE,QAAQ,KAAK,IAAI,CAAA;IAClC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,YAAY,GAAG,IAAI,CAAA;IAC7C,SAAS,CAAC,EAAE,yBAAyB,GAAG,IAAI,CAAA;IAC5C,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,OAAO,EAAE,OAAO,CAAA;IAChB,kBAAkB,CAAC,EAAE,kBAAkB,GAAG,IAAI,CAAA;CAC/C,CAAA;AAED,eAAO,MAAM,cAAc,kJAWxB,mBAAmB,4CA4CrB,CAAA"}
|
|
@@ -11,7 +11,7 @@ var Variant;
|
|
|
11
11
|
Variant["time"] = "time";
|
|
12
12
|
})(Variant || (Variant = {}));
|
|
13
13
|
var DateTimeButton = function(param) {
|
|
14
|
-
var date = param.date, _isDisabled = param.isDisabled, isSelected = param.isSelected, _isSoldOut = param.isSoldOut, onSelect = param.onSelect, price = param.price, resources = param.resources, showResources = param.showResources, _param_variant = param.variant, variant = _param_variant === void 0 ? "week" : _param_variant;
|
|
14
|
+
var date = param.date, _isDisabled = param.isDisabled, isSelected = param.isSelected, _isSoldOut = param.isSoldOut, onSelect = param.onSelect, price = param.price, resources = param.resources, showResources = param.showResources, _param_variant = param.variant, variant = _param_variant === void 0 ? "week" : _param_variant, availabilityFormat = param.availabilityFormat;
|
|
15
15
|
var isSoldOut = _isSoldOut || resources && resources.bookedResources >= resources.totalResources;
|
|
16
16
|
var isTimeVariant = variant === "time";
|
|
17
17
|
var isPast = variant === "time" ? isPastTime(date) : isPastDate(date);
|
|
@@ -36,6 +36,7 @@ var DateTimeButton = function(param) {
|
|
|
36
36
|
children: price
|
|
37
37
|
}),
|
|
38
38
|
showResources && resources && /*#__PURE__*/ jsx(AvailabilityIndicator, {
|
|
39
|
+
availabilityFormat: availabilityFormat,
|
|
39
40
|
resources: resources,
|
|
40
41
|
isUnavailable: _isDisabled || isPast,
|
|
41
42
|
isSoldOut: isSoldOut
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
2
|
import { Image } from '@licklist/core/dist/DataMapper/Media/ImageDataMapper';
|
|
3
3
|
import { ZoneResourcesAvailability } from '@licklist/core/dist/DataMapper/Order/ZoneResourcesAvailabilityDataMapper';
|
|
4
|
+
import { AvailabilityFormat } from '@licklist/core/dist/DataMapper/Provider/SnippetDataMapper';
|
|
4
5
|
export declare const LAYOUT_GRID = "grid";
|
|
5
6
|
export declare const LAYOUT_LIST = "list";
|
|
6
7
|
export type ActivityCardProps = {
|
|
@@ -14,6 +15,7 @@ export type ActivityCardProps = {
|
|
|
14
15
|
availableTimes?: string | null;
|
|
15
16
|
image?: Image | null;
|
|
16
17
|
resources?: ZoneResourcesAvailability;
|
|
18
|
+
availabilityFormat?: AvailabilityFormat | null;
|
|
17
19
|
};
|
|
18
|
-
export declare const ActivityCard: ({ title, duration, price, description, availableTimes, image, onSelect, isSelected, layout, resources, }: ActivityCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export declare const ActivityCard: ({ title, duration, price, description, availableTimes, image, onSelect, isSelected, layout, availabilityFormat, resources, }: ActivityCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
21
|
//# sourceMappingURL=ActivityCard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ActivityCard.d.ts","sourceRoot":"","sources":["../../../src/iframe/activity-card/ActivityCard.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAEjC,OAAO,EAAE,KAAK,EAAE,MAAM,sDAAsD,CAAA;AAC5E,OAAO,EAAE,yBAAyB,EAAE,MAAM,0EAA0E,CAAA;
|
|
1
|
+
{"version":3,"file":"ActivityCard.d.ts","sourceRoot":"","sources":["../../../src/iframe/activity-card/ActivityCard.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAEjC,OAAO,EAAE,KAAK,EAAE,MAAM,sDAAsD,CAAA;AAC5E,OAAO,EAAE,yBAAyB,EAAE,MAAM,0EAA0E,CAAA;AACpH,OAAO,EAAE,kBAAkB,EAAE,MAAM,2DAA2D,CAAA;AAG9F,eAAO,MAAM,WAAW,SAAS,CAAA;AACjC,eAAO,MAAM,WAAW,SAAS,CAAA;AAEjC,MAAM,MAAM,iBAAiB,GAAG;IAC9B,KAAK,EAAE,SAAS,CAAA;IAChB,QAAQ,EAAE,SAAS,CAAA;IACnB,KAAK,EAAE,SAAS,CAAA;IAChB,WAAW,CAAC,EAAE,SAAS,CAAA;IACvB,QAAQ,EAAE,MAAM,IAAI,CAAA;IACpB,UAAU,EAAE,OAAO,CAAA;IACnB,MAAM,CAAC,EAAE,OAAO,WAAW,GAAG,OAAO,WAAW,CAAA;IAChD,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC9B,KAAK,CAAC,EAAE,KAAK,GAAG,IAAI,CAAA;IACpB,SAAS,CAAC,EAAE,yBAAyB,CAAA;IACrC,kBAAkB,CAAC,EAAE,kBAAkB,GAAG,IAAI,CAAA;CAC/C,CAAA;AAED,eAAO,MAAM,YAAY,iIAYtB,iBAAiB,4CA6DnB,CAAA"}
|
|
@@ -5,7 +5,7 @@ import { AvailabilityIndicator } from '../../availability-indicator/Availability
|
|
|
5
5
|
var LAYOUT_GRID = 'grid';
|
|
6
6
|
var LAYOUT_LIST = 'list';
|
|
7
7
|
var ActivityCard = function(param) {
|
|
8
|
-
var title = param.title, duration = param.duration, price = param.price, description = param.description, availableTimes = param.availableTimes, image = param.image, onSelect = param.onSelect, isSelected = param.isSelected, _param_layout = param.layout, layout = _param_layout === void 0 ? LAYOUT_GRID : _param_layout, resources = param.resources;
|
|
8
|
+
var title = param.title, duration = param.duration, price = param.price, description = param.description, availableTimes = param.availableTimes, image = param.image, onSelect = param.onSelect, isSelected = param.isSelected, _param_layout = param.layout, layout = _param_layout === void 0 ? LAYOUT_GRID : _param_layout, availabilityFormat = param.availabilityFormat, resources = param.resources;
|
|
9
9
|
if (layout === LAYOUT_GRID) {
|
|
10
10
|
return /*#__PURE__*/ jsxs("button", {
|
|
11
11
|
type: "button",
|
|
@@ -35,7 +35,8 @@ var ActivityCard = function(param) {
|
|
|
35
35
|
children: description
|
|
36
36
|
}),
|
|
37
37
|
resources && /*#__PURE__*/ jsx(AvailabilityIndicator, {
|
|
38
|
-
resources: resources
|
|
38
|
+
resources: resources,
|
|
39
|
+
availabilityFormat: availabilityFormat
|
|
39
40
|
})
|
|
40
41
|
]
|
|
41
42
|
})
|
|
@@ -74,7 +75,8 @@ var ActivityCard = function(param) {
|
|
|
74
75
|
children: description
|
|
75
76
|
}),
|
|
76
77
|
resources && /*#__PURE__*/ jsx(AvailabilityIndicator, {
|
|
77
|
-
resources: resources
|
|
78
|
+
resources: resources,
|
|
79
|
+
availabilityFormat: availabilityFormat
|
|
78
80
|
})
|
|
79
81
|
]
|
|
80
82
|
}),
|
|
@@ -56,6 +56,7 @@ import 'react-bootstrap/ModalTitle';
|
|
|
56
56
|
import 'react-bootstrap/ModalBody';
|
|
57
57
|
import 'react-bootstrap/Modal';
|
|
58
58
|
import '../../../iframe/payment/payment-status-page/PaymentStatusPage.js';
|
|
59
|
+
import '@licklist/plugins';
|
|
59
60
|
import '@licklist/plugins/dist/services/Form/HookFormService';
|
|
60
61
|
import 'luxon';
|
|
61
62
|
import '../../../static/manual-date-picker/constants/index.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@licklist/design",
|
|
3
|
-
"version": "0.70.0-dev.
|
|
3
|
+
"version": "0.70.0-dev.6",
|
|
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.31.
|
|
45
|
+
"@licklist/core": "0.31.1-dev.4",
|
|
46
46
|
"@licklist/eslint-config": "0.5.6",
|
|
47
47
|
"@licklist/plugins": "0.34.0-dev.4",
|
|
48
48
|
"lodash": "4.17.21",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@dnd-kit/utilities": "2.0.0",
|
|
62
62
|
"@fortawesome/fontawesome-svg-core": "1.2.34",
|
|
63
63
|
"@fortawesome/free-solid-svg-icons": "5.15.2",
|
|
64
|
-
"@licklist/core": "0.31.
|
|
64
|
+
"@licklist/core": "0.31.1-dev.4",
|
|
65
65
|
"@licklist/eslint-config": "0.5.6",
|
|
66
66
|
"@licklist/plugins": "0.34.0-dev.4",
|
|
67
67
|
"@mantine/core": "6.0.22",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
<rect x="
|
|
3
|
-
<rect x="
|
|
4
|
-
<rect x="
|
|
1
|
+
<svg viewBox="auto" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="14%" y="0" width="63%" height="29%" rx="15%" fill="#4CF973" stroke="white"/>
|
|
3
|
+
<rect x="14%" y="33%" width="63%" height="29%" rx="15%" fill="#4CF973" stroke="white"/>
|
|
4
|
+
<rect x="14%" y="66%" width="63%" height="29%" rx="15%" fill="#4CF973" stroke="white"/>
|
|
5
5
|
</svg>
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import { FunctionComponent, SVGProps } from 'react'
|
|
2
2
|
import { useTranslation } from 'react-i18next'
|
|
3
3
|
import { ZoneResourcesAvailability } from '@licklist/core/dist/DataMapper/Order/ZoneResourcesAvailabilityDataMapper'
|
|
4
|
+
import {
|
|
5
|
+
AVAILABILITY_FORMAT_NUMBER,
|
|
6
|
+
AvailabilityFormat,
|
|
7
|
+
} from '@licklist/core/dist/DataMapper/Provider/SnippetDataMapper'
|
|
8
|
+
import { useWindowDimensions } from '@licklist/plugins'
|
|
4
9
|
import { ReactComponent as AvailableIcon } from '../assets/iframe/available.svg'
|
|
5
10
|
import { ReactComponent as LimitedIcon } from '../assets/iframe/limited.svg'
|
|
6
11
|
import { ReactComponent as SoldOutIcon } from '../assets/iframe/soldOut.svg'
|
|
12
|
+
import { TAB_WIDTH } from '../iframe/page/components/PageBody/constants'
|
|
7
13
|
|
|
8
14
|
const LOTS_OF_SPACE_LIMIT = 0.2
|
|
9
15
|
const LIMITED_LIMIT = 0.8
|
|
@@ -13,38 +19,94 @@ type Config = {
|
|
|
13
19
|
Icon: FunctionComponent<SVGProps<SVGSVGElement>>
|
|
14
20
|
}
|
|
15
21
|
|
|
16
|
-
|
|
22
|
+
type GetIconsAndLabelsWithArgumentResult = Config & {
|
|
23
|
+
argument?: number
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
interface GetIconsAndLabels extends ZoneResourcesAvailability {
|
|
27
|
+
availabilityFormat?: AvailabilityFormat | null
|
|
28
|
+
}
|
|
29
|
+
interface GetAppropreateLabelFormat extends GetIconsAndLabels {
|
|
30
|
+
label?: string
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
const getLabelsWithArgument = ({
|
|
17
34
|
bookedResources,
|
|
18
35
|
totalResources,
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
36
|
+
availabilityFormat,
|
|
37
|
+
label,
|
|
38
|
+
}: GetAppropreateLabelFormat): {
|
|
39
|
+
label: string
|
|
40
|
+
argument?: number
|
|
41
|
+
} => {
|
|
42
|
+
const availableResources = totalResources - bookedResources
|
|
43
|
+
|
|
44
|
+
if (availabilityFormat !== AVAILABILITY_FORMAT_NUMBER) {
|
|
45
|
+
return { label }
|
|
22
46
|
}
|
|
23
47
|
|
|
48
|
+
return availableResources === 1
|
|
49
|
+
? { label: 'availableSingleResource' }
|
|
50
|
+
: { label: 'availableMultipleResources', argument: availableResources }
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const getIconsAndLabelsWithArgument = ({
|
|
54
|
+
bookedResources,
|
|
55
|
+
totalResources,
|
|
56
|
+
availabilityFormat,
|
|
57
|
+
}: GetIconsAndLabels): GetIconsAndLabelsWithArgumentResult => {
|
|
24
58
|
// lots of space if less than 80% booked
|
|
25
59
|
if (bookedResources / totalResources <= LOTS_OF_SPACE_LIMIT) {
|
|
26
|
-
return {
|
|
60
|
+
return {
|
|
61
|
+
...getLabelsWithArgument({
|
|
62
|
+
bookedResources,
|
|
63
|
+
totalResources,
|
|
64
|
+
availabilityFormat,
|
|
65
|
+
label: 'lotsOfSpace',
|
|
66
|
+
}),
|
|
67
|
+
Icon: AvailableIcon,
|
|
68
|
+
}
|
|
27
69
|
}
|
|
28
70
|
|
|
29
71
|
if (bookedResources / totalResources >= LIMITED_LIMIT) {
|
|
30
|
-
return {
|
|
72
|
+
return {
|
|
73
|
+
...getLabelsWithArgument({
|
|
74
|
+
bookedResources,
|
|
75
|
+
totalResources,
|
|
76
|
+
availabilityFormat,
|
|
77
|
+
label: 'limited',
|
|
78
|
+
}),
|
|
79
|
+
Icon: LimitedIcon,
|
|
80
|
+
}
|
|
31
81
|
}
|
|
32
82
|
|
|
33
|
-
return {
|
|
83
|
+
return {
|
|
84
|
+
...getLabelsWithArgument({
|
|
85
|
+
bookedResources,
|
|
86
|
+
totalResources,
|
|
87
|
+
availabilityFormat,
|
|
88
|
+
label: 'available',
|
|
89
|
+
}),
|
|
90
|
+
Icon: AvailableIcon,
|
|
91
|
+
}
|
|
34
92
|
}
|
|
35
93
|
|
|
36
94
|
type AvailabilityIndicatorProps = {
|
|
37
95
|
resources: ZoneResourcesAvailability
|
|
38
96
|
isUnavailable?: boolean
|
|
39
97
|
isSoldOut?: boolean
|
|
98
|
+
availabilityFormat?: AvailabilityFormat | null
|
|
40
99
|
}
|
|
41
100
|
|
|
42
101
|
export const AvailabilityIndicator = ({
|
|
43
102
|
resources,
|
|
44
103
|
isUnavailable,
|
|
45
|
-
isSoldOut,
|
|
104
|
+
isSoldOut: _isSoldOut,
|
|
105
|
+
availabilityFormat,
|
|
46
106
|
}: AvailabilityIndicatorProps) => {
|
|
47
107
|
const { t } = useTranslation('Design')
|
|
108
|
+
const isSoldOut =
|
|
109
|
+
_isSoldOut || resources.bookedResources === resources.totalResources
|
|
48
110
|
|
|
49
111
|
if (isUnavailable) {
|
|
50
112
|
return <Indicator Icon={SoldOutIcon} label={t('notAvailable')} />
|
|
@@ -54,14 +116,27 @@ export const AvailabilityIndicator = ({
|
|
|
54
116
|
return <Indicator Icon={SoldOutIcon} label={t('soldOut')} />
|
|
55
117
|
}
|
|
56
118
|
|
|
57
|
-
const { Icon, label } =
|
|
119
|
+
const { Icon, label, argument } = getIconsAndLabelsWithArgument({
|
|
120
|
+
...resources,
|
|
121
|
+
availabilityFormat,
|
|
122
|
+
})
|
|
58
123
|
|
|
59
|
-
return
|
|
124
|
+
return (
|
|
125
|
+
<Indicator
|
|
126
|
+
Icon={Icon}
|
|
127
|
+
label={t(label, argument ? { argument } : undefined)}
|
|
128
|
+
/>
|
|
129
|
+
)
|
|
60
130
|
}
|
|
61
131
|
|
|
62
|
-
const Indicator = ({ Icon, label }: Config) =>
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
132
|
+
const Indicator = ({ Icon, label }: Config) => {
|
|
133
|
+
const { width } = useWindowDimensions()
|
|
134
|
+
const iconSizes =
|
|
135
|
+
width > TAB_WIDTH ? { height: 15, width: 11 } : { height: 11, width: 7 }
|
|
136
|
+
return (
|
|
137
|
+
<div className='availability-indicator'>
|
|
138
|
+
<Icon height={iconSizes.height} width={iconSizes.width} viewBox='auto' />
|
|
139
|
+
<div className='indicator-label'>{label}</div>
|
|
140
|
+
</div>
|
|
141
|
+
)
|
|
142
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Dispatch, ReactElement, SetStateAction } from 'react'
|
|
2
2
|
import { DateTime } from 'luxon'
|
|
3
|
+
import { AvailabilityFormat } from '@licklist/core/dist/DataMapper/Provider/SnippetDataMapper'
|
|
3
4
|
import { DateTimeButtonProps } from 'src/date-time-button'
|
|
4
5
|
import { CalendarButtons } from './components/CalendarButtons'
|
|
5
6
|
import { CalendarDates } from './components/CalendarDates'
|
|
@@ -21,6 +22,7 @@ export type CalendarProps = {
|
|
|
21
22
|
fromPrice?: string | ReactElement | null
|
|
22
23
|
isLoading?: boolean
|
|
23
24
|
initialDate?: DateTime
|
|
25
|
+
availabilityFormat?: AvailabilityFormat | null
|
|
24
26
|
getDateTimeButtonProps: (
|
|
25
27
|
date: DateTime,
|
|
26
28
|
) => Pick<DateTimeButtonProps, 'resources' | 'showResources' | 'isDisabled'>
|
|
@@ -11,6 +11,7 @@ export type CalendarDatesProps = Pick<
|
|
|
11
11
|
| 'setSelectedDate'
|
|
12
12
|
| 'fromPrice'
|
|
13
13
|
| 'getDateTimeButtonProps'
|
|
14
|
+
| 'availabilityFormat'
|
|
14
15
|
>
|
|
15
16
|
|
|
16
17
|
export const CalendarDates = ({
|
|
@@ -18,6 +19,7 @@ export const CalendarDates = ({
|
|
|
18
19
|
selectedDate,
|
|
19
20
|
setSelectedDate,
|
|
20
21
|
fromPrice,
|
|
22
|
+
availabilityFormat,
|
|
21
23
|
getDateTimeButtonProps,
|
|
22
24
|
}: CalendarDatesProps) => {
|
|
23
25
|
const fillCalendarDates = useMemo(() => {
|
|
@@ -56,6 +58,7 @@ export const CalendarDates = ({
|
|
|
56
58
|
onSelect={() => setSelectedDate(date)}
|
|
57
59
|
price={fromPrice}
|
|
58
60
|
variant={Variant.month}
|
|
61
|
+
availabilityFormat={availabilityFormat}
|
|
59
62
|
{...props}
|
|
60
63
|
/>
|
|
61
64
|
)
|
|
@@ -2,6 +2,7 @@ import { ReactElement } from 'react'
|
|
|
2
2
|
import clsx from 'clsx'
|
|
3
3
|
import { DateTime } from 'luxon'
|
|
4
4
|
import { ZoneResourcesAvailability } from '@licklist/core/dist/DataMapper/Order/ZoneResourcesAvailabilityDataMapper'
|
|
5
|
+
import { AvailabilityFormat } from '@licklist/core/dist/DataMapper/Provider/SnippetDataMapper'
|
|
5
6
|
import { AvailabilityIndicator } from '../availability-indicator'
|
|
6
7
|
import { DateContent } from './DateContent'
|
|
7
8
|
|
|
@@ -21,6 +22,7 @@ export type DateTimeButtonProps = {
|
|
|
21
22
|
resources?: ZoneResourcesAvailability | null
|
|
22
23
|
showResources?: boolean
|
|
23
24
|
variant: Variant
|
|
25
|
+
availabilityFormat?: AvailabilityFormat | null
|
|
24
26
|
}
|
|
25
27
|
|
|
26
28
|
export const DateTimeButton = ({
|
|
@@ -33,6 +35,7 @@ export const DateTimeButton = ({
|
|
|
33
35
|
resources,
|
|
34
36
|
showResources,
|
|
35
37
|
variant = Variant.week,
|
|
38
|
+
availabilityFormat,
|
|
36
39
|
}: DateTimeButtonProps) => {
|
|
37
40
|
const isSoldOut =
|
|
38
41
|
_isSoldOut ||
|
|
@@ -69,6 +72,7 @@ export const DateTimeButton = ({
|
|
|
69
72
|
{price && !isDisabled && <div className='price'>{price}</div>}
|
|
70
73
|
{showResources && resources && (
|
|
71
74
|
<AvailabilityIndicator
|
|
75
|
+
availabilityFormat={availabilityFormat}
|
|
72
76
|
resources={resources}
|
|
73
77
|
isUnavailable={_isDisabled || isPast}
|
|
74
78
|
isSoldOut={isSoldOut}
|
|
@@ -2,6 +2,7 @@ import { ReactNode } from 'react'
|
|
|
2
2
|
import clsx from 'clsx'
|
|
3
3
|
import { Image } from '@licklist/core/dist/DataMapper/Media/ImageDataMapper'
|
|
4
4
|
import { ZoneResourcesAvailability } from '@licklist/core/dist/DataMapper/Order/ZoneResourcesAvailabilityDataMapper'
|
|
5
|
+
import { AvailabilityFormat } from '@licklist/core/dist/DataMapper/Provider/SnippetDataMapper'
|
|
5
6
|
import { AvailabilityIndicator } from '../../availability-indicator'
|
|
6
7
|
|
|
7
8
|
export const LAYOUT_GRID = 'grid'
|
|
@@ -18,6 +19,7 @@ export type ActivityCardProps = {
|
|
|
18
19
|
availableTimes?: string | null
|
|
19
20
|
image?: Image | null
|
|
20
21
|
resources?: ZoneResourcesAvailability
|
|
22
|
+
availabilityFormat?: AvailabilityFormat | null
|
|
21
23
|
}
|
|
22
24
|
|
|
23
25
|
export const ActivityCard = ({
|
|
@@ -30,6 +32,7 @@ export const ActivityCard = ({
|
|
|
30
32
|
onSelect,
|
|
31
33
|
isSelected,
|
|
32
34
|
layout = LAYOUT_GRID,
|
|
35
|
+
availabilityFormat,
|
|
33
36
|
resources,
|
|
34
37
|
}: ActivityCardProps) => {
|
|
35
38
|
if (layout === LAYOUT_GRID) {
|
|
@@ -50,7 +53,12 @@ export const ActivityCard = ({
|
|
|
50
53
|
{description && (
|
|
51
54
|
<div className='mt-2 activity-card-description'>{description}</div>
|
|
52
55
|
)}
|
|
53
|
-
{resources &&
|
|
56
|
+
{resources && (
|
|
57
|
+
<AvailabilityIndicator
|
|
58
|
+
resources={resources}
|
|
59
|
+
availabilityFormat={availabilityFormat}
|
|
60
|
+
/>
|
|
61
|
+
)}
|
|
54
62
|
</div>
|
|
55
63
|
</button>
|
|
56
64
|
)
|
|
@@ -76,7 +84,12 @@ export const ActivityCard = ({
|
|
|
76
84
|
{description && (
|
|
77
85
|
<div className='mt-2 activity-card-description'>{description}</div>
|
|
78
86
|
)}
|
|
79
|
-
{resources &&
|
|
87
|
+
{resources && (
|
|
88
|
+
<AvailabilityIndicator
|
|
89
|
+
resources={resources}
|
|
90
|
+
availabilityFormat={availabilityFormat}
|
|
91
|
+
/>
|
|
92
|
+
)}
|
|
80
93
|
</div>
|
|
81
94
|
|
|
82
95
|
<hr className='list-activity-card-hr' />
|
package/yarn.lock
CHANGED
|
@@ -2152,12 +2152,12 @@ __metadata:
|
|
|
2152
2152
|
linkType: hard
|
|
2153
2153
|
|
|
2154
2154
|
"@floating-ui/dom@npm:^1.2.1":
|
|
2155
|
-
version: 1.6.
|
|
2156
|
-
resolution: "@floating-ui/dom@npm:1.6.
|
|
2155
|
+
version: 1.6.12
|
|
2156
|
+
resolution: "@floating-ui/dom@npm:1.6.12"
|
|
2157
2157
|
dependencies:
|
|
2158
2158
|
"@floating-ui/core": "npm:^1.6.0"
|
|
2159
2159
|
"@floating-ui/utils": "npm:^0.2.8"
|
|
2160
|
-
checksum: 10c0/
|
|
2160
|
+
checksum: 10c0/c67b39862175b175c6ac299ea970f17a22c7482cfdf3b1bc79313407bf0880188b022b878953fa69d3ce166ff2bd9ae57c86043e5dd800c262b470d877591b7d
|
|
2161
2161
|
languageName: node
|
|
2162
2162
|
linkType: hard
|
|
2163
2163
|
|
|
@@ -2466,9 +2466,9 @@ __metadata:
|
|
|
2466
2466
|
languageName: node
|
|
2467
2467
|
linkType: hard
|
|
2468
2468
|
|
|
2469
|
-
"@licklist/core@npm:0.31.0-dev.
|
|
2470
|
-
version: 0.31.0-dev.
|
|
2471
|
-
resolution: "@licklist/core@npm:0.31.0-dev.
|
|
2469
|
+
"@licklist/core@npm:0.31.0-dev.2":
|
|
2470
|
+
version: 0.31.0-dev.2
|
|
2471
|
+
resolution: "@licklist/core@npm:0.31.0-dev.2"
|
|
2472
2472
|
dependencies:
|
|
2473
2473
|
"@sentry/browser": "npm:6.2.0"
|
|
2474
2474
|
axios: "npm:0.26.0"
|
|
@@ -2490,13 +2490,13 @@ __metadata:
|
|
|
2490
2490
|
react-i18next: 11.8.8
|
|
2491
2491
|
react-intl: 6.6.8
|
|
2492
2492
|
zustand: 3.7.2
|
|
2493
|
-
checksum: 10c0/
|
|
2493
|
+
checksum: 10c0/fcefd4631fbf3d116a36833b748fc9b557cae8b580acae4c1bd7d29f1665a42456b1109a3f80620f6f7244161f8260d6243680ff739a2a544221e1b7e4a01e57
|
|
2494
2494
|
languageName: node
|
|
2495
2495
|
linkType: hard
|
|
2496
2496
|
|
|
2497
|
-
"@licklist/core@npm:0.31.
|
|
2498
|
-
version: 0.31.
|
|
2499
|
-
resolution: "@licklist/core@npm:0.31.
|
|
2497
|
+
"@licklist/core@npm:0.31.1-dev.4":
|
|
2498
|
+
version: 0.31.1-dev.4
|
|
2499
|
+
resolution: "@licklist/core@npm:0.31.1-dev.4"
|
|
2500
2500
|
dependencies:
|
|
2501
2501
|
"@sentry/browser": "npm:6.2.0"
|
|
2502
2502
|
axios: "npm:0.26.0"
|
|
@@ -2518,7 +2518,7 @@ __metadata:
|
|
|
2518
2518
|
react-i18next: 11.8.8
|
|
2519
2519
|
react-intl: 6.6.8
|
|
2520
2520
|
zustand: 3.7.2
|
|
2521
|
-
checksum: 10c0/
|
|
2521
|
+
checksum: 10c0/2cba12fe6e2d18ea5cf882489e03f2fe68fc9fb36fde88fabe2deba61fad99fd2dd22e445e6d5c0506008d138ba4b64c7f5d0e92ce131ea41ec72c16269901ab
|
|
2522
2522
|
languageName: node
|
|
2523
2523
|
linkType: hard
|
|
2524
2524
|
|
|
@@ -2533,7 +2533,7 @@ __metadata:
|
|
|
2533
2533
|
"@dnd-kit/utilities": "npm:2.0.0"
|
|
2534
2534
|
"@fortawesome/fontawesome-svg-core": "npm:1.2.34"
|
|
2535
2535
|
"@fortawesome/free-solid-svg-icons": "npm:5.15.2"
|
|
2536
|
-
"@licklist/core": "npm:0.31.
|
|
2536
|
+
"@licklist/core": "npm:0.31.1-dev.4"
|
|
2537
2537
|
"@licklist/eslint-config": "npm:0.5.6"
|
|
2538
2538
|
"@licklist/plugins": "npm:0.34.0-dev.4"
|
|
2539
2539
|
"@mantine/core": "npm:6.0.22"
|
|
@@ -2664,7 +2664,7 @@ __metadata:
|
|
|
2664
2664
|
vite-plugin-svgr: "npm:4.2.0"
|
|
2665
2665
|
vite-tsconfig-paths: "npm:5.0.1"
|
|
2666
2666
|
peerDependencies:
|
|
2667
|
-
"@licklist/core": 0.31.
|
|
2667
|
+
"@licklist/core": 0.31.1-dev.4
|
|
2668
2668
|
"@licklist/eslint-config": 0.5.6
|
|
2669
2669
|
"@licklist/plugins": 0.34.0-dev.4
|
|
2670
2670
|
lodash: 4.17.21
|
|
@@ -3316,128 +3316,128 @@ __metadata:
|
|
|
3316
3316
|
languageName: node
|
|
3317
3317
|
linkType: hard
|
|
3318
3318
|
|
|
3319
|
-
"@rollup/rollup-android-arm-eabi@npm:4.24.
|
|
3320
|
-
version: 4.24.
|
|
3321
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.24.
|
|
3319
|
+
"@rollup/rollup-android-arm-eabi@npm:4.24.3":
|
|
3320
|
+
version: 4.24.3
|
|
3321
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.24.3"
|
|
3322
3322
|
conditions: os=android & cpu=arm
|
|
3323
3323
|
languageName: node
|
|
3324
3324
|
linkType: hard
|
|
3325
3325
|
|
|
3326
|
-
"@rollup/rollup-android-arm64@npm:4.24.
|
|
3327
|
-
version: 4.24.
|
|
3328
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.24.
|
|
3326
|
+
"@rollup/rollup-android-arm64@npm:4.24.3":
|
|
3327
|
+
version: 4.24.3
|
|
3328
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.24.3"
|
|
3329
3329
|
conditions: os=android & cpu=arm64
|
|
3330
3330
|
languageName: node
|
|
3331
3331
|
linkType: hard
|
|
3332
3332
|
|
|
3333
|
-
"@rollup/rollup-darwin-arm64@npm:4.24.
|
|
3334
|
-
version: 4.24.
|
|
3335
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.24.
|
|
3333
|
+
"@rollup/rollup-darwin-arm64@npm:4.24.3":
|
|
3334
|
+
version: 4.24.3
|
|
3335
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.24.3"
|
|
3336
3336
|
conditions: os=darwin & cpu=arm64
|
|
3337
3337
|
languageName: node
|
|
3338
3338
|
linkType: hard
|
|
3339
3339
|
|
|
3340
|
-
"@rollup/rollup-darwin-x64@npm:4.24.
|
|
3341
|
-
version: 4.24.
|
|
3342
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.24.
|
|
3340
|
+
"@rollup/rollup-darwin-x64@npm:4.24.3":
|
|
3341
|
+
version: 4.24.3
|
|
3342
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.24.3"
|
|
3343
3343
|
conditions: os=darwin & cpu=x64
|
|
3344
3344
|
languageName: node
|
|
3345
3345
|
linkType: hard
|
|
3346
3346
|
|
|
3347
|
-
"@rollup/rollup-freebsd-arm64@npm:4.24.
|
|
3348
|
-
version: 4.24.
|
|
3349
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.24.
|
|
3347
|
+
"@rollup/rollup-freebsd-arm64@npm:4.24.3":
|
|
3348
|
+
version: 4.24.3
|
|
3349
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.24.3"
|
|
3350
3350
|
conditions: os=freebsd & cpu=arm64
|
|
3351
3351
|
languageName: node
|
|
3352
3352
|
linkType: hard
|
|
3353
3353
|
|
|
3354
|
-
"@rollup/rollup-freebsd-x64@npm:4.24.
|
|
3355
|
-
version: 4.24.
|
|
3356
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.24.
|
|
3354
|
+
"@rollup/rollup-freebsd-x64@npm:4.24.3":
|
|
3355
|
+
version: 4.24.3
|
|
3356
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.24.3"
|
|
3357
3357
|
conditions: os=freebsd & cpu=x64
|
|
3358
3358
|
languageName: node
|
|
3359
3359
|
linkType: hard
|
|
3360
3360
|
|
|
3361
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.24.
|
|
3362
|
-
version: 4.24.
|
|
3363
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.24.
|
|
3361
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.24.3":
|
|
3362
|
+
version: 4.24.3
|
|
3363
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.24.3"
|
|
3364
3364
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3365
3365
|
languageName: node
|
|
3366
3366
|
linkType: hard
|
|
3367
3367
|
|
|
3368
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.24.
|
|
3369
|
-
version: 4.24.
|
|
3370
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.24.
|
|
3368
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.24.3":
|
|
3369
|
+
version: 4.24.3
|
|
3370
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.24.3"
|
|
3371
3371
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3372
3372
|
languageName: node
|
|
3373
3373
|
linkType: hard
|
|
3374
3374
|
|
|
3375
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.24.
|
|
3376
|
-
version: 4.24.
|
|
3377
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.24.
|
|
3375
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.24.3":
|
|
3376
|
+
version: 4.24.3
|
|
3377
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.24.3"
|
|
3378
3378
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3379
3379
|
languageName: node
|
|
3380
3380
|
linkType: hard
|
|
3381
3381
|
|
|
3382
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.24.
|
|
3383
|
-
version: 4.24.
|
|
3384
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.24.
|
|
3382
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.24.3":
|
|
3383
|
+
version: 4.24.3
|
|
3384
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.24.3"
|
|
3385
3385
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3386
3386
|
languageName: node
|
|
3387
3387
|
linkType: hard
|
|
3388
3388
|
|
|
3389
|
-
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.
|
|
3390
|
-
version: 4.24.
|
|
3391
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.
|
|
3389
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.3":
|
|
3390
|
+
version: 4.24.3
|
|
3391
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.24.3"
|
|
3392
3392
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3393
3393
|
languageName: node
|
|
3394
3394
|
linkType: hard
|
|
3395
3395
|
|
|
3396
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.24.
|
|
3397
|
-
version: 4.24.
|
|
3398
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.24.
|
|
3396
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.24.3":
|
|
3397
|
+
version: 4.24.3
|
|
3398
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.24.3"
|
|
3399
3399
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3400
3400
|
languageName: node
|
|
3401
3401
|
linkType: hard
|
|
3402
3402
|
|
|
3403
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.24.
|
|
3404
|
-
version: 4.24.
|
|
3405
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.24.
|
|
3403
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.24.3":
|
|
3404
|
+
version: 4.24.3
|
|
3405
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.24.3"
|
|
3406
3406
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3407
3407
|
languageName: node
|
|
3408
3408
|
linkType: hard
|
|
3409
3409
|
|
|
3410
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.24.
|
|
3411
|
-
version: 4.24.
|
|
3412
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.24.
|
|
3410
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.24.3":
|
|
3411
|
+
version: 4.24.3
|
|
3412
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.24.3"
|
|
3413
3413
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3414
3414
|
languageName: node
|
|
3415
3415
|
linkType: hard
|
|
3416
3416
|
|
|
3417
|
-
"@rollup/rollup-linux-x64-musl@npm:4.24.
|
|
3418
|
-
version: 4.24.
|
|
3419
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.24.
|
|
3417
|
+
"@rollup/rollup-linux-x64-musl@npm:4.24.3":
|
|
3418
|
+
version: 4.24.3
|
|
3419
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.24.3"
|
|
3420
3420
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3421
3421
|
languageName: node
|
|
3422
3422
|
linkType: hard
|
|
3423
3423
|
|
|
3424
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.24.
|
|
3425
|
-
version: 4.24.
|
|
3426
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.24.
|
|
3424
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.24.3":
|
|
3425
|
+
version: 4.24.3
|
|
3426
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.24.3"
|
|
3427
3427
|
conditions: os=win32 & cpu=arm64
|
|
3428
3428
|
languageName: node
|
|
3429
3429
|
linkType: hard
|
|
3430
3430
|
|
|
3431
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.24.
|
|
3432
|
-
version: 4.24.
|
|
3433
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.24.
|
|
3431
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.24.3":
|
|
3432
|
+
version: 4.24.3
|
|
3433
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.24.3"
|
|
3434
3434
|
conditions: os=win32 & cpu=ia32
|
|
3435
3435
|
languageName: node
|
|
3436
3436
|
linkType: hard
|
|
3437
3437
|
|
|
3438
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.24.
|
|
3439
|
-
version: 4.24.
|
|
3440
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.24.
|
|
3438
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.24.3":
|
|
3439
|
+
version: 4.24.3
|
|
3440
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.24.3"
|
|
3441
3441
|
conditions: os=win32 & cpu=x64
|
|
3442
3442
|
languageName: node
|
|
3443
3443
|
linkType: hard
|
|
@@ -5698,11 +5698,11 @@ __metadata:
|
|
|
5698
5698
|
linkType: hard
|
|
5699
5699
|
|
|
5700
5700
|
"@types/node@npm:*":
|
|
5701
|
-
version: 22.8.
|
|
5702
|
-
resolution: "@types/node@npm:22.8.
|
|
5701
|
+
version: 22.8.4
|
|
5702
|
+
resolution: "@types/node@npm:22.8.4"
|
|
5703
5703
|
dependencies:
|
|
5704
5704
|
undici-types: "npm:~6.19.8"
|
|
5705
|
-
checksum: 10c0/
|
|
5705
|
+
checksum: 10c0/f88d030480630194a9168772462ec09b2d86454f34368c46d2b7fda5dc6e14594b1576fcc5c35cc53b57a4d1e8dd2865a85ae81f34ded0d1af753a0f5d294c25
|
|
5706
5706
|
languageName: node
|
|
5707
5707
|
linkType: hard
|
|
5708
5708
|
|
|
@@ -8080,9 +8080,9 @@ __metadata:
|
|
|
8080
8080
|
linkType: hard
|
|
8081
8081
|
|
|
8082
8082
|
"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001109, caniuse-lite@npm:^1.0.30001125, caniuse-lite@npm:^1.0.30001646, caniuse-lite@npm:^1.0.30001669":
|
|
8083
|
-
version: 1.0.
|
|
8084
|
-
resolution: "caniuse-lite@npm:1.0.
|
|
8085
|
-
checksum: 10c0/
|
|
8083
|
+
version: 1.0.30001675
|
|
8084
|
+
resolution: "caniuse-lite@npm:1.0.30001675"
|
|
8085
|
+
checksum: 10c0/95196bb508a35fa4e2bd1cb2458450cc73a71ed6aea034cd7e8831d569d4f6a2a78d63de75b5a00af5ef4dbf3f1c26b5841d270cb71556fdcd34c3b84c1b164f
|
|
8086
8086
|
languageName: node
|
|
8087
8087
|
linkType: hard
|
|
8088
8088
|
|
|
@@ -8218,8 +8218,8 @@ __metadata:
|
|
|
8218
8218
|
linkType: hard
|
|
8219
8219
|
|
|
8220
8220
|
"chromatic@npm:^11.4.0":
|
|
8221
|
-
version: 11.16.
|
|
8222
|
-
resolution: "chromatic@npm:11.16.
|
|
8221
|
+
version: 11.16.3
|
|
8222
|
+
resolution: "chromatic@npm:11.16.3"
|
|
8223
8223
|
peerDependencies:
|
|
8224
8224
|
"@chromatic-com/cypress": ^0.*.* || ^1.0.0
|
|
8225
8225
|
"@chromatic-com/playwright": ^0.*.* || ^1.0.0
|
|
@@ -8232,7 +8232,7 @@ __metadata:
|
|
|
8232
8232
|
chroma: dist/bin.js
|
|
8233
8233
|
chromatic: dist/bin.js
|
|
8234
8234
|
chromatic-cli: dist/bin.js
|
|
8235
|
-
checksum: 10c0/
|
|
8235
|
+
checksum: 10c0/407e8c78ea8cea7a47ea427fe76380d5033dc3be3928b5d3537b81aa0f617db4944d7c1a377705e83900b6bb78ca6d7cbeb55ea4ebf2154f0739c15fc605b3b5
|
|
8236
8236
|
languageName: node
|
|
8237
8237
|
linkType: hard
|
|
8238
8238
|
|
|
@@ -9840,9 +9840,9 @@ __metadata:
|
|
|
9840
9840
|
linkType: hard
|
|
9841
9841
|
|
|
9842
9842
|
"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.41":
|
|
9843
|
-
version: 1.5.
|
|
9844
|
-
resolution: "electron-to-chromium@npm:1.5.
|
|
9845
|
-
checksum: 10c0/
|
|
9843
|
+
version: 1.5.49
|
|
9844
|
+
resolution: "electron-to-chromium@npm:1.5.49"
|
|
9845
|
+
checksum: 10c0/7b22141c7ebea2f49b87adcbe2b353919abbe44066c50e5e44dd47759c4ef07f0a802b9fc8ce2eaa832a293945b6d49064c859f0fef36d10c12fb46af2c1005d
|
|
9846
9846
|
languageName: node
|
|
9847
9847
|
linkType: hard
|
|
9848
9848
|
|
|
@@ -16868,15 +16868,15 @@ __metadata:
|
|
|
16868
16868
|
linkType: hard
|
|
16869
16869
|
|
|
16870
16870
|
"prosemirror-tables@npm:^1.3.0":
|
|
16871
|
-
version: 1.6.
|
|
16872
|
-
resolution: "prosemirror-tables@npm:1.6.
|
|
16871
|
+
version: 1.6.1
|
|
16872
|
+
resolution: "prosemirror-tables@npm:1.6.1"
|
|
16873
16873
|
dependencies:
|
|
16874
16874
|
prosemirror-keymap: "npm:^1.1.2"
|
|
16875
16875
|
prosemirror-model: "npm:^1.8.1"
|
|
16876
16876
|
prosemirror-state: "npm:^1.3.1"
|
|
16877
16877
|
prosemirror-transform: "npm:^1.2.1"
|
|
16878
16878
|
prosemirror-view: "npm:^1.13.3"
|
|
16879
|
-
checksum: 10c0/
|
|
16879
|
+
checksum: 10c0/a42e33a30f39fdaf546c078bdaa1dfe91d3d2a28d24caca381fb79b6fe4762347d913e2a1d042b9e125d89ce9cabdecf2399e7eb555a63743860f88c537cff22
|
|
16880
16880
|
languageName: node
|
|
16881
16881
|
linkType: hard
|
|
16882
16882
|
|
|
@@ -16904,13 +16904,13 @@ __metadata:
|
|
|
16904
16904
|
linkType: hard
|
|
16905
16905
|
|
|
16906
16906
|
"prosemirror-view@npm:^1.0.0, prosemirror-view@npm:^1.1.0, prosemirror-view@npm:^1.13.3, prosemirror-view@npm:^1.23.6, prosemirror-view@npm:^1.27.0, prosemirror-view@npm:^1.28.2, prosemirror-view@npm:^1.31.0":
|
|
16907
|
-
version: 1.
|
|
16908
|
-
resolution: "prosemirror-view@npm:1.
|
|
16907
|
+
version: 1.35.0
|
|
16908
|
+
resolution: "prosemirror-view@npm:1.35.0"
|
|
16909
16909
|
dependencies:
|
|
16910
16910
|
prosemirror-model: "npm:^1.20.0"
|
|
16911
16911
|
prosemirror-state: "npm:^1.0.0"
|
|
16912
16912
|
prosemirror-transform: "npm:^1.1.0"
|
|
16913
|
-
checksum: 10c0/
|
|
16913
|
+
checksum: 10c0/3be83fb6cf6678b5fe233816e45af8895ee027f4996039081f7bedbe1576155c6fdbcf9de679e6847791c46baac31d8992bcd583d6971ff171605534d55b7bfc
|
|
16914
16914
|
languageName: node
|
|
16915
16915
|
linkType: hard
|
|
16916
16916
|
|
|
@@ -18740,27 +18740,27 @@ __metadata:
|
|
|
18740
18740
|
linkType: hard
|
|
18741
18741
|
|
|
18742
18742
|
"rollup@npm:^4.13.0":
|
|
18743
|
-
version: 4.24.
|
|
18744
|
-
resolution: "rollup@npm:4.24.
|
|
18745
|
-
dependencies:
|
|
18746
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.24.
|
|
18747
|
-
"@rollup/rollup-android-arm64": "npm:4.24.
|
|
18748
|
-
"@rollup/rollup-darwin-arm64": "npm:4.24.
|
|
18749
|
-
"@rollup/rollup-darwin-x64": "npm:4.24.
|
|
18750
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.24.
|
|
18751
|
-
"@rollup/rollup-freebsd-x64": "npm:4.24.
|
|
18752
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.24.
|
|
18753
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.24.
|
|
18754
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.24.
|
|
18755
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.24.
|
|
18756
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.24.
|
|
18757
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.24.
|
|
18758
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.24.
|
|
18759
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.24.
|
|
18760
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.24.
|
|
18761
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.24.
|
|
18762
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.24.
|
|
18763
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.24.
|
|
18743
|
+
version: 4.24.3
|
|
18744
|
+
resolution: "rollup@npm:4.24.3"
|
|
18745
|
+
dependencies:
|
|
18746
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.24.3"
|
|
18747
|
+
"@rollup/rollup-android-arm64": "npm:4.24.3"
|
|
18748
|
+
"@rollup/rollup-darwin-arm64": "npm:4.24.3"
|
|
18749
|
+
"@rollup/rollup-darwin-x64": "npm:4.24.3"
|
|
18750
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.24.3"
|
|
18751
|
+
"@rollup/rollup-freebsd-x64": "npm:4.24.3"
|
|
18752
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.24.3"
|
|
18753
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.24.3"
|
|
18754
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.24.3"
|
|
18755
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.24.3"
|
|
18756
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.24.3"
|
|
18757
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.24.3"
|
|
18758
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.24.3"
|
|
18759
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.24.3"
|
|
18760
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.24.3"
|
|
18761
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.24.3"
|
|
18762
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.24.3"
|
|
18763
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.24.3"
|
|
18764
18764
|
"@types/estree": "npm:1.0.6"
|
|
18765
18765
|
fsevents: "npm:~2.3.2"
|
|
18766
18766
|
dependenciesMeta:
|
|
@@ -18804,7 +18804,7 @@ __metadata:
|
|
|
18804
18804
|
optional: true
|
|
18805
18805
|
bin:
|
|
18806
18806
|
rollup: dist/bin/rollup
|
|
18807
|
-
checksum: 10c0/
|
|
18807
|
+
checksum: 10c0/32425475db7a0bcb8937f92488ee8e48f7adaff711b5b5c52d86d37114c9f21fe756e21a91312d12d30da146d33d8478a11dfeb6249dbecc54fbfcc78da46005
|
|
18808
18808
|
languageName: node
|
|
18809
18809
|
linkType: hard
|
|
18810
18810
|
|