@licklist/design 0.71.18 → 0.71.19-stage.0
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/iframe/activity-card/ActivityCard.d.ts +1 -2
- package/dist/iframe/activity-card/ActivityCard.d.ts.map +1 -1
- package/dist/iframe/activity-card/ActivityCard.js +1 -7
- package/dist/report/ReportRunnerModal/ReportRunnerModal.d.ts +2 -1
- package/dist/report/ReportRunnerModal/ReportRunnerModal.d.ts.map +1 -1
- package/dist/report/ReportRunnerModal/ReportRunnerModal.js +3 -2
- package/dist/styles/date-time-button/DateTimeButton.scss +3 -1
- package/package.json +4 -4
- package/src/iframe/activity-card/ActivityCard.stories.tsx +0 -2
- package/src/iframe/activity-card/ActivityCard.tsx +0 -4
- package/src/report/ReportRunnerModal/ReportRunnerModal.tsx +3 -0
- package/src/styles/date-time-button/DateTimeButton.scss +3 -1
- package/yarn.lock +145 -137
|
@@ -6,7 +6,6 @@ export declare const LAYOUT_GRID = "grid";
|
|
|
6
6
|
export declare const LAYOUT_LIST = "list";
|
|
7
7
|
export type ActivityCardProps = {
|
|
8
8
|
title: ReactNode;
|
|
9
|
-
duration: ReactNode;
|
|
10
9
|
price: ReactNode;
|
|
11
10
|
description?: ReactNode;
|
|
12
11
|
onSelect: () => void;
|
|
@@ -17,5 +16,5 @@ export type ActivityCardProps = {
|
|
|
17
16
|
resources?: ZoneResourcesAvailability;
|
|
18
17
|
availabilityFormat?: AvailabilityFormat | null;
|
|
19
18
|
};
|
|
20
|
-
export declare const ActivityCard: ({ title,
|
|
19
|
+
export declare const ActivityCard: ({ title, price, description, availableTimes, image, onSelect, isSelected, layout, availabilityFormat, resources, }: ActivityCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
21
20
|
//# 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;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,
|
|
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,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,uHAWtB,iBAAiB,4CA2DnB,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,
|
|
8
|
+
var title = param.title, 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",
|
|
@@ -24,9 +24,6 @@ var ActivityCard = function(param) {
|
|
|
24
24
|
className: "activity-card-title",
|
|
25
25
|
children: title
|
|
26
26
|
}),
|
|
27
|
-
duration && /*#__PURE__*/ jsx("div", {
|
|
28
|
-
children: duration
|
|
29
|
-
}),
|
|
30
27
|
price && /*#__PURE__*/ jsx("div", {
|
|
31
28
|
children: price
|
|
32
29
|
}),
|
|
@@ -64,9 +61,6 @@ var ActivityCard = function(param) {
|
|
|
64
61
|
availableTimes && /*#__PURE__*/ jsx("div", {
|
|
65
62
|
children: availableTimes
|
|
66
63
|
}),
|
|
67
|
-
duration && /*#__PURE__*/ jsx("div", {
|
|
68
|
-
children: duration
|
|
69
|
-
}),
|
|
70
64
|
price && /*#__PURE__*/ jsx("div", {
|
|
71
65
|
children: price
|
|
72
66
|
}),
|
|
@@ -15,7 +15,8 @@ export type ReportRunnerModalProps = {
|
|
|
15
15
|
onHide: () => void;
|
|
16
16
|
onEdit: () => void;
|
|
17
17
|
reports?: Report[] | null;
|
|
18
|
+
providerId?: number;
|
|
18
19
|
};
|
|
19
|
-
export declare const ReportRunnerModal: ({ reportId, show, onHide, useShowReportFields, reports, generate, download, onEdit, }: ReportRunnerModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export declare const ReportRunnerModal: ({ reportId, show, onHide, useShowReportFields, reports, generate, download, onEdit, providerId }: ReportRunnerModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
21
|
export {};
|
|
21
22
|
//# sourceMappingURL=ReportRunnerModal.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ReportRunnerModal.d.ts","sourceRoot":"","sources":["../../../src/report/ReportRunnerModal/ReportRunnerModal.tsx"],"names":[],"mappings":"AAAA,OAAO,EAKL,MAAM,EAEN,UAAU,EACX,MAAM,uCAAuC,CAAA;AAM9C,OAAO,EAAE,SAAS,EAAE,MAAM,+CAA+C,CAAA;AACzE,OAAO,EAAE,uBAAuB,EAAE,MAAM,qDAAqD,CAAA;AAG7F,UAAU,WAAW;IACnB,EAAE,EAAE,MAAM,CAAA;IACV,GAAG,EAAE,MAAM,CAAA;IACX,KAAK,EAAE,MAAM,CAAA;CACd;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,QAAQ,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAA;IAC7B,IAAI,EAAE,OAAO,CAAA;IACb,mBAAmB,EAAE,CACnB,UAAU,CAAC,EAAE,UAAU,KACpB,uBAAuB,CAAC,WAAW,EAAE,EAAE,OAAO,CAAC,CAAA;IACpD,QAAQ,CAAC,EAAE,SAAS,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,CAAA;IACrD,QAAQ,CAAC,EAAE,SAAS,CAAC,IAAI,GAAG,IAAI,CAAC,CAAA;IACjC,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,OAAO,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAA;
|
|
1
|
+
{"version":3,"file":"ReportRunnerModal.d.ts","sourceRoot":"","sources":["../../../src/report/ReportRunnerModal/ReportRunnerModal.tsx"],"names":[],"mappings":"AAAA,OAAO,EAKL,MAAM,EAEN,UAAU,EACX,MAAM,uCAAuC,CAAA;AAM9C,OAAO,EAAE,SAAS,EAAE,MAAM,+CAA+C,CAAA;AACzE,OAAO,EAAE,uBAAuB,EAAE,MAAM,qDAAqD,CAAA;AAG7F,UAAU,WAAW;IACnB,EAAE,EAAE,MAAM,CAAA;IACV,GAAG,EAAE,MAAM,CAAA;IACX,KAAK,EAAE,MAAM,CAAA;CACd;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,QAAQ,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAA;IAC7B,IAAI,EAAE,OAAO,CAAA;IACb,mBAAmB,EAAE,CACnB,UAAU,CAAC,EAAE,UAAU,KACpB,uBAAuB,CAAC,WAAW,EAAE,EAAE,OAAO,CAAC,CAAA;IACpD,QAAQ,CAAC,EAAE,SAAS,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,CAAA;IACrD,QAAQ,CAAC,EAAE,SAAS,CAAC,IAAI,GAAG,IAAI,CAAC,CAAA;IACjC,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,OAAO,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAA;IACzB,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB,CAAA;AASD,eAAO,MAAM,iBAAiB,qGAU3B,sBAAsB,4CA8KxB,CAAA"}
|
|
@@ -189,7 +189,7 @@ function _ts_generator(thisArg, body) {
|
|
|
189
189
|
var _obj;
|
|
190
190
|
var labelByPeriodType = (_obj = {}, _define_property(_obj, PERIOD_BY_CREATION_DATE, 'Design:reportPeriodByCreationDate'), _define_property(_obj, PERIOD_BY_BOOKING_DATE, 'Design:reportPeriodByBookingDate'), _obj);
|
|
191
191
|
var ReportRunnerModal = function(param) {
|
|
192
|
-
var reportId = param.reportId, show = param.show, onHide = param.onHide, useShowReportFields = param.useShowReportFields, reports = param.reports, generate = param.generate, download = param.download, onEdit = param.onEdit;
|
|
192
|
+
var reportId = param.reportId, show = param.show, onHide = param.onHide, useShowReportFields = param.useShowReportFields, reports = param.reports, generate = param.generate, download = param.download, onEdit = param.onEdit, providerId = param.providerId;
|
|
193
193
|
var _errors_periodBy, _errors_periodBy1, _errors_periodBy2, _errors_dateFrom, _errors_dateTo;
|
|
194
194
|
var t = useTranslation([
|
|
195
195
|
'App',
|
|
@@ -230,7 +230,8 @@ var ReportRunnerModal = function(param) {
|
|
|
230
230
|
type: report.type,
|
|
231
231
|
dateFrom: values.dateFrom,
|
|
232
232
|
dateTo: values.dateTo,
|
|
233
|
-
data: data
|
|
233
|
+
data: data,
|
|
234
|
+
providerId: providerId
|
|
234
235
|
});
|
|
235
236
|
return [
|
|
236
237
|
2
|
|
@@ -33,8 +33,10 @@
|
|
|
33
33
|
|
|
34
34
|
&.disabled {
|
|
35
35
|
border: 2px solid $snippet-calendar-disabled-button-border-color;
|
|
36
|
-
background-color:
|
|
36
|
+
background-color:transparent;
|
|
37
|
+
border: none;
|
|
37
38
|
color: $snippet-calendar-disabled-button-font-color;
|
|
39
|
+
cursor: not-allowed;
|
|
38
40
|
|
|
39
41
|
.weekday-info {
|
|
40
42
|
div:last-child {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@licklist/design",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.19-stage.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@licklist/core": "0.32.7",
|
|
46
46
|
"@licklist/eslint-config": "0.5.6",
|
|
47
|
-
"@licklist/plugins": "0.35.
|
|
47
|
+
"@licklist/plugins": "0.35.7",
|
|
48
48
|
"lodash": "4.17.21",
|
|
49
49
|
"luxon": "3.5.0",
|
|
50
50
|
"react": "17.0.2",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@fortawesome/free-solid-svg-icons": "5.15.2",
|
|
64
64
|
"@licklist/core": "0.32.7",
|
|
65
65
|
"@licklist/eslint-config": "0.5.6",
|
|
66
|
-
"@licklist/plugins": "0.35.
|
|
66
|
+
"@licklist/plugins": "0.35.7",
|
|
67
67
|
"@mantine/core": "6.0.22",
|
|
68
68
|
"@mantine/hooks": "6.0.22",
|
|
69
69
|
"@mdx-js/react": "1.6.22",
|
|
@@ -206,4 +206,4 @@
|
|
|
206
206
|
"node": "20.9.0",
|
|
207
207
|
"yarn": "4.4.0"
|
|
208
208
|
}
|
|
209
|
-
}
|
|
209
|
+
}
|
|
@@ -27,7 +27,6 @@ export const GridView: Story<ActivityCardProps> = (props) => {
|
|
|
27
27
|
GridView.args = {
|
|
28
28
|
layout: LAYOUT_GRID,
|
|
29
29
|
title: 'Clay Pigeons & Axe Thowing',
|
|
30
|
-
duration: '60 mins',
|
|
31
30
|
price: 'from £20',
|
|
32
31
|
}
|
|
33
32
|
|
|
@@ -46,6 +45,5 @@ export const ListView: Story<ActivityCardProps> = (props) => {
|
|
|
46
45
|
ListView.args = {
|
|
47
46
|
layout: LAYOUT_LIST,
|
|
48
47
|
title: 'Clay Pigeons & Axe Thowing',
|
|
49
|
-
duration: '60 mins',
|
|
50
48
|
price: 'from £20',
|
|
51
49
|
}
|
|
@@ -10,7 +10,6 @@ export const LAYOUT_LIST = 'list'
|
|
|
10
10
|
|
|
11
11
|
export type ActivityCardProps = {
|
|
12
12
|
title: ReactNode
|
|
13
|
-
duration: ReactNode
|
|
14
13
|
price: ReactNode
|
|
15
14
|
description?: ReactNode
|
|
16
15
|
onSelect: () => void
|
|
@@ -24,7 +23,6 @@ export type ActivityCardProps = {
|
|
|
24
23
|
|
|
25
24
|
export const ActivityCard = ({
|
|
26
25
|
title,
|
|
27
|
-
duration,
|
|
28
26
|
price,
|
|
29
27
|
description,
|
|
30
28
|
availableTimes,
|
|
@@ -48,7 +46,6 @@ export const ActivityCard = ({
|
|
|
48
46
|
|
|
49
47
|
<div>
|
|
50
48
|
<div className='activity-card-title'>{title}</div>
|
|
51
|
-
{duration && <div>{duration}</div>}
|
|
52
49
|
{price && <div>{price}</div>}
|
|
53
50
|
{description && (
|
|
54
51
|
<div className='mt-2 activity-card-description'>{description}</div>
|
|
@@ -79,7 +76,6 @@ export const ActivityCard = ({
|
|
|
79
76
|
<div className='activity-card-info'>
|
|
80
77
|
<div className='activity-card-title mb-2'>{title}</div>
|
|
81
78
|
{availableTimes && <div>{availableTimes}</div>}
|
|
82
|
-
{duration && <div>{duration}</div>}
|
|
83
79
|
{price && <div>{price}</div>}
|
|
84
80
|
{description && (
|
|
85
81
|
<div className='mt-2 activity-card-description'>{description}</div>
|
|
@@ -33,6 +33,7 @@ export type ReportRunnerModalProps = {
|
|
|
33
33
|
onHide: () => void
|
|
34
34
|
onEdit: () => void
|
|
35
35
|
reports?: Report[] | null
|
|
36
|
+
providerId?: number
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
type FormValues = Pick<GenerateReportBody, 'dateFrom' | 'dateTo' | 'periodBy'>
|
|
@@ -51,6 +52,7 @@ export const ReportRunnerModal = ({
|
|
|
51
52
|
generate,
|
|
52
53
|
download,
|
|
53
54
|
onEdit,
|
|
55
|
+
providerId
|
|
54
56
|
}: ReportRunnerModalProps) => {
|
|
55
57
|
const { t } = useTranslation(['App', 'Design'])
|
|
56
58
|
const report = reports?.find((report) => report.id === reportId)
|
|
@@ -83,6 +85,7 @@ export const ReportRunnerModal = ({
|
|
|
83
85
|
dateFrom: values.dateFrom,
|
|
84
86
|
dateTo: values.dateTo,
|
|
85
87
|
data,
|
|
88
|
+
providerId,
|
|
86
89
|
})
|
|
87
90
|
})
|
|
88
91
|
|
|
@@ -33,8 +33,10 @@
|
|
|
33
33
|
|
|
34
34
|
&.disabled {
|
|
35
35
|
border: 2px solid $snippet-calendar-disabled-button-border-color;
|
|
36
|
-
background-color:
|
|
36
|
+
background-color:transparent;
|
|
37
|
+
border: none;
|
|
37
38
|
color: $snippet-calendar-disabled-button-font-color;
|
|
39
|
+
cursor: not-allowed;
|
|
38
40
|
|
|
39
41
|
.weekday-info {
|
|
40
42
|
div:last-child {
|
package/yarn.lock
CHANGED
|
@@ -2522,7 +2522,7 @@ __metadata:
|
|
|
2522
2522
|
"@fortawesome/free-solid-svg-icons": "npm:5.15.2"
|
|
2523
2523
|
"@licklist/core": "npm:0.32.7"
|
|
2524
2524
|
"@licklist/eslint-config": "npm:0.5.6"
|
|
2525
|
-
"@licklist/plugins": "npm:0.35.
|
|
2525
|
+
"@licklist/plugins": "npm:0.35.7"
|
|
2526
2526
|
"@mantine/core": "npm:6.0.22"
|
|
2527
2527
|
"@mantine/hooks": "npm:6.0.22"
|
|
2528
2528
|
"@mdx-js/react": "npm:1.6.22"
|
|
@@ -2653,7 +2653,7 @@ __metadata:
|
|
|
2653
2653
|
peerDependencies:
|
|
2654
2654
|
"@licklist/core": 0.32.7
|
|
2655
2655
|
"@licklist/eslint-config": 0.5.6
|
|
2656
|
-
"@licklist/plugins": 0.35.
|
|
2656
|
+
"@licklist/plugins": 0.35.7
|
|
2657
2657
|
lodash: 4.17.21
|
|
2658
2658
|
luxon: 3.5.0
|
|
2659
2659
|
react: 17.0.2
|
|
@@ -2683,9 +2683,9 @@ __metadata:
|
|
|
2683
2683
|
languageName: node
|
|
2684
2684
|
linkType: hard
|
|
2685
2685
|
|
|
2686
|
-
"@licklist/plugins@npm:0.35.
|
|
2687
|
-
version: 0.35.
|
|
2688
|
-
resolution: "@licklist/plugins@npm:0.35.
|
|
2686
|
+
"@licklist/plugins@npm:0.35.7":
|
|
2687
|
+
version: 0.35.7
|
|
2688
|
+
resolution: "@licklist/plugins@npm:0.35.7"
|
|
2689
2689
|
dependencies:
|
|
2690
2690
|
"@licklist/core": "npm:0.32.2"
|
|
2691
2691
|
axios: "npm:0.26.0"
|
|
@@ -2719,7 +2719,7 @@ __metadata:
|
|
|
2719
2719
|
react-loader: 2.4.7
|
|
2720
2720
|
react-query: 3.34.12
|
|
2721
2721
|
react-router-dom: 5.2.0
|
|
2722
|
-
checksum: 10c0/
|
|
2722
|
+
checksum: 10c0/2dc228d314cc76b7eac088bc87c1c359204b87fefa7b4ed45eb9e5a9956dc4f29de1c54162be56e2aa146308822523e01aa4d1f99ae1785457e4fb405419d267
|
|
2723
2723
|
languageName: node
|
|
2724
2724
|
linkType: hard
|
|
2725
2725
|
|
|
@@ -3303,135 +3303,135 @@ __metadata:
|
|
|
3303
3303
|
languageName: node
|
|
3304
3304
|
linkType: hard
|
|
3305
3305
|
|
|
3306
|
-
"@rollup/rollup-android-arm-eabi@npm:4.
|
|
3307
|
-
version: 4.
|
|
3308
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.
|
|
3306
|
+
"@rollup/rollup-android-arm-eabi@npm:4.31.0":
|
|
3307
|
+
version: 4.31.0
|
|
3308
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.31.0"
|
|
3309
3309
|
conditions: os=android & cpu=arm
|
|
3310
3310
|
languageName: node
|
|
3311
3311
|
linkType: hard
|
|
3312
3312
|
|
|
3313
|
-
"@rollup/rollup-android-arm64@npm:4.
|
|
3314
|
-
version: 4.
|
|
3315
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.
|
|
3313
|
+
"@rollup/rollup-android-arm64@npm:4.31.0":
|
|
3314
|
+
version: 4.31.0
|
|
3315
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.31.0"
|
|
3316
3316
|
conditions: os=android & cpu=arm64
|
|
3317
3317
|
languageName: node
|
|
3318
3318
|
linkType: hard
|
|
3319
3319
|
|
|
3320
|
-
"@rollup/rollup-darwin-arm64@npm:4.
|
|
3321
|
-
version: 4.
|
|
3322
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.
|
|
3320
|
+
"@rollup/rollup-darwin-arm64@npm:4.31.0":
|
|
3321
|
+
version: 4.31.0
|
|
3322
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.31.0"
|
|
3323
3323
|
conditions: os=darwin & cpu=arm64
|
|
3324
3324
|
languageName: node
|
|
3325
3325
|
linkType: hard
|
|
3326
3326
|
|
|
3327
|
-
"@rollup/rollup-darwin-x64@npm:4.
|
|
3328
|
-
version: 4.
|
|
3329
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.
|
|
3327
|
+
"@rollup/rollup-darwin-x64@npm:4.31.0":
|
|
3328
|
+
version: 4.31.0
|
|
3329
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.31.0"
|
|
3330
3330
|
conditions: os=darwin & cpu=x64
|
|
3331
3331
|
languageName: node
|
|
3332
3332
|
linkType: hard
|
|
3333
3333
|
|
|
3334
|
-
"@rollup/rollup-freebsd-arm64@npm:4.
|
|
3335
|
-
version: 4.
|
|
3336
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.
|
|
3334
|
+
"@rollup/rollup-freebsd-arm64@npm:4.31.0":
|
|
3335
|
+
version: 4.31.0
|
|
3336
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.31.0"
|
|
3337
3337
|
conditions: os=freebsd & cpu=arm64
|
|
3338
3338
|
languageName: node
|
|
3339
3339
|
linkType: hard
|
|
3340
3340
|
|
|
3341
|
-
"@rollup/rollup-freebsd-x64@npm:4.
|
|
3342
|
-
version: 4.
|
|
3343
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.
|
|
3341
|
+
"@rollup/rollup-freebsd-x64@npm:4.31.0":
|
|
3342
|
+
version: 4.31.0
|
|
3343
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.31.0"
|
|
3344
3344
|
conditions: os=freebsd & cpu=x64
|
|
3345
3345
|
languageName: node
|
|
3346
3346
|
linkType: hard
|
|
3347
3347
|
|
|
3348
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.
|
|
3349
|
-
version: 4.
|
|
3350
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.
|
|
3348
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.31.0":
|
|
3349
|
+
version: 4.31.0
|
|
3350
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.31.0"
|
|
3351
3351
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3352
3352
|
languageName: node
|
|
3353
3353
|
linkType: hard
|
|
3354
3354
|
|
|
3355
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.
|
|
3356
|
-
version: 4.
|
|
3357
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.
|
|
3355
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.31.0":
|
|
3356
|
+
version: 4.31.0
|
|
3357
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.31.0"
|
|
3358
3358
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3359
3359
|
languageName: node
|
|
3360
3360
|
linkType: hard
|
|
3361
3361
|
|
|
3362
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.
|
|
3363
|
-
version: 4.
|
|
3364
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.
|
|
3362
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.31.0":
|
|
3363
|
+
version: 4.31.0
|
|
3364
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.31.0"
|
|
3365
3365
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3366
3366
|
languageName: node
|
|
3367
3367
|
linkType: hard
|
|
3368
3368
|
|
|
3369
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.
|
|
3370
|
-
version: 4.
|
|
3371
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.
|
|
3369
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.31.0":
|
|
3370
|
+
version: 4.31.0
|
|
3371
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.31.0"
|
|
3372
3372
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3373
3373
|
languageName: node
|
|
3374
3374
|
linkType: hard
|
|
3375
3375
|
|
|
3376
|
-
"@rollup/rollup-linux-loongarch64-gnu@npm:4.
|
|
3377
|
-
version: 4.
|
|
3378
|
-
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.
|
|
3376
|
+
"@rollup/rollup-linux-loongarch64-gnu@npm:4.31.0":
|
|
3377
|
+
version: 4.31.0
|
|
3378
|
+
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.31.0"
|
|
3379
3379
|
conditions: os=linux & cpu=loong64 & libc=glibc
|
|
3380
3380
|
languageName: node
|
|
3381
3381
|
linkType: hard
|
|
3382
3382
|
|
|
3383
|
-
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.
|
|
3384
|
-
version: 4.
|
|
3385
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.
|
|
3383
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.31.0":
|
|
3384
|
+
version: 4.31.0
|
|
3385
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.31.0"
|
|
3386
3386
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3387
3387
|
languageName: node
|
|
3388
3388
|
linkType: hard
|
|
3389
3389
|
|
|
3390
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.
|
|
3391
|
-
version: 4.
|
|
3392
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.
|
|
3390
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.31.0":
|
|
3391
|
+
version: 4.31.0
|
|
3392
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.31.0"
|
|
3393
3393
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3394
3394
|
languageName: node
|
|
3395
3395
|
linkType: hard
|
|
3396
3396
|
|
|
3397
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.
|
|
3398
|
-
version: 4.
|
|
3399
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.
|
|
3397
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.31.0":
|
|
3398
|
+
version: 4.31.0
|
|
3399
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.31.0"
|
|
3400
3400
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3401
3401
|
languageName: node
|
|
3402
3402
|
linkType: hard
|
|
3403
3403
|
|
|
3404
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.
|
|
3405
|
-
version: 4.
|
|
3406
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.
|
|
3404
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.31.0":
|
|
3405
|
+
version: 4.31.0
|
|
3406
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.31.0"
|
|
3407
3407
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3408
3408
|
languageName: node
|
|
3409
3409
|
linkType: hard
|
|
3410
3410
|
|
|
3411
|
-
"@rollup/rollup-linux-x64-musl@npm:4.
|
|
3412
|
-
version: 4.
|
|
3413
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.
|
|
3411
|
+
"@rollup/rollup-linux-x64-musl@npm:4.31.0":
|
|
3412
|
+
version: 4.31.0
|
|
3413
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.31.0"
|
|
3414
3414
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3415
3415
|
languageName: node
|
|
3416
3416
|
linkType: hard
|
|
3417
3417
|
|
|
3418
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.
|
|
3419
|
-
version: 4.
|
|
3420
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.
|
|
3418
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.31.0":
|
|
3419
|
+
version: 4.31.0
|
|
3420
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.31.0"
|
|
3421
3421
|
conditions: os=win32 & cpu=arm64
|
|
3422
3422
|
languageName: node
|
|
3423
3423
|
linkType: hard
|
|
3424
3424
|
|
|
3425
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.
|
|
3426
|
-
version: 4.
|
|
3427
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.
|
|
3425
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.31.0":
|
|
3426
|
+
version: 4.31.0
|
|
3427
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.31.0"
|
|
3428
3428
|
conditions: os=win32 & cpu=ia32
|
|
3429
3429
|
languageName: node
|
|
3430
3430
|
linkType: hard
|
|
3431
3431
|
|
|
3432
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.
|
|
3433
|
-
version: 4.
|
|
3434
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.
|
|
3432
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.31.0":
|
|
3433
|
+
version: 4.31.0
|
|
3434
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.31.0"
|
|
3435
3435
|
conditions: os=win32 & cpu=x64
|
|
3436
3436
|
languageName: node
|
|
3437
3437
|
linkType: hard
|
|
@@ -5175,14 +5175,14 @@ __metadata:
|
|
|
5175
5175
|
linkType: hard
|
|
5176
5176
|
|
|
5177
5177
|
"@tiptap/extension-bubble-menu@npm:^2.0.0-beta.56":
|
|
5178
|
-
version: 2.11.
|
|
5179
|
-
resolution: "@tiptap/extension-bubble-menu@npm:2.11.
|
|
5178
|
+
version: 2.11.3
|
|
5179
|
+
resolution: "@tiptap/extension-bubble-menu@npm:2.11.3"
|
|
5180
5180
|
dependencies:
|
|
5181
5181
|
tippy.js: "npm:^6.3.7"
|
|
5182
5182
|
peerDependencies:
|
|
5183
5183
|
"@tiptap/core": ^2.7.0
|
|
5184
5184
|
"@tiptap/pm": ^2.7.0
|
|
5185
|
-
checksum: 10c0/
|
|
5185
|
+
checksum: 10c0/3c672b457f5c83cef38f684f7a3fdbfd2c2ec59e3b213485d210011285fbc47d37b8b65f9e41a2d091678faaa8d8768b3dff0aaa53f53d2e89a2a7ce94d455fb
|
|
5186
5186
|
languageName: node
|
|
5187
5187
|
linkType: hard
|
|
5188
5188
|
|
|
@@ -5205,14 +5205,14 @@ __metadata:
|
|
|
5205
5205
|
linkType: hard
|
|
5206
5206
|
|
|
5207
5207
|
"@tiptap/extension-floating-menu@npm:^2.0.0-beta.51":
|
|
5208
|
-
version: 2.11.
|
|
5209
|
-
resolution: "@tiptap/extension-floating-menu@npm:2.11.
|
|
5208
|
+
version: 2.11.3
|
|
5209
|
+
resolution: "@tiptap/extension-floating-menu@npm:2.11.3"
|
|
5210
5210
|
dependencies:
|
|
5211
5211
|
tippy.js: "npm:^6.3.7"
|
|
5212
5212
|
peerDependencies:
|
|
5213
5213
|
"@tiptap/core": ^2.7.0
|
|
5214
5214
|
"@tiptap/pm": ^2.7.0
|
|
5215
|
-
checksum: 10c0/
|
|
5215
|
+
checksum: 10c0/8d6c3ce5999eaaae61bacca56f881090bc9b58b3588e50ed4981008806c7eea70b48ad56e489679d64a6e4d34b1d65c49028ab4160c2e717ffd90973533b7a81
|
|
5216
5216
|
languageName: node
|
|
5217
5217
|
linkType: hard
|
|
5218
5218
|
|
|
@@ -5692,11 +5692,11 @@ __metadata:
|
|
|
5692
5692
|
linkType: hard
|
|
5693
5693
|
|
|
5694
5694
|
"@types/node@npm:*":
|
|
5695
|
-
version: 22.10.
|
|
5696
|
-
resolution: "@types/node@npm:22.10.
|
|
5695
|
+
version: 22.10.9
|
|
5696
|
+
resolution: "@types/node@npm:22.10.9"
|
|
5697
5697
|
dependencies:
|
|
5698
5698
|
undici-types: "npm:~6.20.0"
|
|
5699
|
-
checksum: 10c0/
|
|
5699
|
+
checksum: 10c0/ed2d7b2cf20ce520e04711eab48e9cd7d6a835d2859fbdc5d9a8c5e00a97c1f872a409f789783c473062b29beaf1cddf4b1c7ad03ae3fe433b072b7cf9fff741
|
|
5700
5700
|
languageName: node
|
|
5701
5701
|
linkType: hard
|
|
5702
5702
|
|
|
@@ -5964,11 +5964,11 @@ __metadata:
|
|
|
5964
5964
|
linkType: hard
|
|
5965
5965
|
|
|
5966
5966
|
"@types/react@npm:*, @types/react@npm:>=16.14.8, @types/react@npm:>=16.9.11":
|
|
5967
|
-
version: 19.0.
|
|
5968
|
-
resolution: "@types/react@npm:19.0.
|
|
5967
|
+
version: 19.0.8
|
|
5968
|
+
resolution: "@types/react@npm:19.0.8"
|
|
5969
5969
|
dependencies:
|
|
5970
5970
|
csstype: "npm:^3.0.2"
|
|
5971
|
-
checksum: 10c0/
|
|
5971
|
+
checksum: 10c0/5fa7236356b1476de03519c66ef65d4fd904826956105619e2ad60cb0b55ae7b251dd5fff02234076225b5e15333d0d936bf9dbe1d461406f8a2ba01c197ddcd
|
|
5972
5972
|
languageName: node
|
|
5973
5973
|
linkType: hard
|
|
5974
5974
|
|
|
@@ -6552,10 +6552,10 @@ __metadata:
|
|
|
6552
6552
|
languageName: node
|
|
6553
6553
|
linkType: hard
|
|
6554
6554
|
|
|
6555
|
-
"abbrev@npm:^
|
|
6556
|
-
version:
|
|
6557
|
-
resolution: "abbrev@npm:
|
|
6558
|
-
checksum: 10c0/
|
|
6555
|
+
"abbrev@npm:^3.0.0":
|
|
6556
|
+
version: 3.0.0
|
|
6557
|
+
resolution: "abbrev@npm:3.0.0"
|
|
6558
|
+
checksum: 10c0/049704186396f571650eb7b22ed3627b77a5aedf98bb83caf2eac81ca2a3e25e795394b0464cfb2d6076df3db6a5312139eac5b6a126ca296ac53c5008069c28
|
|
6559
6559
|
languageName: node
|
|
6560
6560
|
linkType: hard
|
|
6561
6561
|
|
|
@@ -7203,6 +7203,13 @@ __metadata:
|
|
|
7203
7203
|
languageName: node
|
|
7204
7204
|
linkType: hard
|
|
7205
7205
|
|
|
7206
|
+
"async-function@npm:^1.0.0":
|
|
7207
|
+
version: 1.0.0
|
|
7208
|
+
resolution: "async-function@npm:1.0.0"
|
|
7209
|
+
checksum: 10c0/669a32c2cb7e45091330c680e92eaeb791bc1d4132d827591e499cd1f776ff5a873e77e5f92d0ce795a8d60f10761dec9ddfe7225a5de680f5d357f67b1aac73
|
|
7210
|
+
languageName: node
|
|
7211
|
+
linkType: hard
|
|
7212
|
+
|
|
7206
7213
|
"asynckit@npm:^0.4.0":
|
|
7207
7214
|
version: 0.4.0
|
|
7208
7215
|
resolution: "asynckit@npm:0.4.0"
|
|
@@ -8093,9 +8100,9 @@ __metadata:
|
|
|
8093
8100
|
linkType: hard
|
|
8094
8101
|
|
|
8095
8102
|
"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.30001688":
|
|
8096
|
-
version: 1.0.
|
|
8097
|
-
resolution: "caniuse-lite@npm:1.0.
|
|
8098
|
-
checksum: 10c0/
|
|
8103
|
+
version: 1.0.30001695
|
|
8104
|
+
resolution: "caniuse-lite@npm:1.0.30001695"
|
|
8105
|
+
checksum: 10c0/acf90a767051fdd8083711b3ff9f07a28149c55e394115d8f874f149aa4f130e6bc50cea1dd94fe03035b9ebbe13b64f446518a6d2e19f72650962bdff44b2c5
|
|
8099
8106
|
languageName: node
|
|
8100
8107
|
linkType: hard
|
|
8101
8108
|
|
|
@@ -8238,8 +8245,8 @@ __metadata:
|
|
|
8238
8245
|
linkType: hard
|
|
8239
8246
|
|
|
8240
8247
|
"chromatic@npm:^11.4.0":
|
|
8241
|
-
version: 11.
|
|
8242
|
-
resolution: "chromatic@npm:11.
|
|
8248
|
+
version: 11.25.1
|
|
8249
|
+
resolution: "chromatic@npm:11.25.1"
|
|
8243
8250
|
peerDependencies:
|
|
8244
8251
|
"@chromatic-com/cypress": ^0.*.* || ^1.0.0
|
|
8245
8252
|
"@chromatic-com/playwright": ^0.*.* || ^1.0.0
|
|
@@ -8252,7 +8259,7 @@ __metadata:
|
|
|
8252
8259
|
chroma: dist/bin.js
|
|
8253
8260
|
chromatic: dist/bin.js
|
|
8254
8261
|
chromatic-cli: dist/bin.js
|
|
8255
|
-
checksum: 10c0/
|
|
8262
|
+
checksum: 10c0/869939cf65ddc4c606ac982cbbaba63d3d6cbc8082e24f04f74ee6a5e3979cdec49e8fab2549f87e8cfa8127c15dbda1f86371306642bdabcb43ee9cff46ceae
|
|
8256
8263
|
languageName: node
|
|
8257
8264
|
linkType: hard
|
|
8258
8265
|
|
|
@@ -9882,9 +9889,9 @@ __metadata:
|
|
|
9882
9889
|
linkType: hard
|
|
9883
9890
|
|
|
9884
9891
|
"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.73":
|
|
9885
|
-
version: 1.5.
|
|
9886
|
-
resolution: "electron-to-chromium@npm:1.5.
|
|
9887
|
-
checksum: 10c0/
|
|
9892
|
+
version: 1.5.86
|
|
9893
|
+
resolution: "electron-to-chromium@npm:1.5.86"
|
|
9894
|
+
checksum: 10c0/f0af8465d9390d21cb3ffec5ed6ce011b5026615f59ebc7a70bb0da806a27918888b2ec446432a5080da0e0bea4f3c6a3a4dcff24c9eb8e884813b0ccceedc59
|
|
9888
9895
|
languageName: node
|
|
9889
9896
|
linkType: hard
|
|
9890
9897
|
|
|
@@ -10982,9 +10989,9 @@ __metadata:
|
|
|
10982
10989
|
linkType: hard
|
|
10983
10990
|
|
|
10984
10991
|
"fast-uri@npm:^3.0.1":
|
|
10985
|
-
version: 3.0.
|
|
10986
|
-
resolution: "fast-uri@npm:3.0.
|
|
10987
|
-
checksum: 10c0/
|
|
10992
|
+
version: 3.0.6
|
|
10993
|
+
resolution: "fast-uri@npm:3.0.6"
|
|
10994
|
+
checksum: 10c0/74a513c2af0584448aee71ce56005185f81239eab7a2343110e5bad50c39ad4fb19c5a6f99783ead1cac7ccaf3461a6034fda89fffa2b30b6d99b9f21c2f9d29
|
|
10988
10995
|
languageName: node
|
|
10989
10996
|
linkType: hard
|
|
10990
10997
|
|
|
@@ -11669,11 +11676,11 @@ __metadata:
|
|
|
11669
11676
|
linkType: hard
|
|
11670
11677
|
|
|
11671
11678
|
"get-tsconfig@npm:^4.7.3":
|
|
11672
|
-
version: 4.
|
|
11673
|
-
resolution: "get-tsconfig@npm:4.
|
|
11679
|
+
version: 4.10.0
|
|
11680
|
+
resolution: "get-tsconfig@npm:4.10.0"
|
|
11674
11681
|
dependencies:
|
|
11675
11682
|
resolve-pkg-maps: "npm:^1.0.0"
|
|
11676
|
-
checksum: 10c0/
|
|
11683
|
+
checksum: 10c0/c9b5572c5118923c491c04285c73bd55b19e214992af957c502a3be0fc0043bb421386ffd45ca3433c0a7fba81221ca300479e8393960acf15d0ed4563f38a86
|
|
11677
11684
|
languageName: node
|
|
11678
11685
|
linkType: hard
|
|
11679
11686
|
|
|
@@ -12758,14 +12765,15 @@ __metadata:
|
|
|
12758
12765
|
linkType: hard
|
|
12759
12766
|
|
|
12760
12767
|
"is-async-function@npm:^2.0.0":
|
|
12761
|
-
version: 2.1.
|
|
12762
|
-
resolution: "is-async-function@npm:2.1.
|
|
12768
|
+
version: 2.1.1
|
|
12769
|
+
resolution: "is-async-function@npm:2.1.1"
|
|
12763
12770
|
dependencies:
|
|
12771
|
+
async-function: "npm:^1.0.0"
|
|
12764
12772
|
call-bound: "npm:^1.0.3"
|
|
12765
12773
|
get-proto: "npm:^1.0.1"
|
|
12766
12774
|
has-tostringtag: "npm:^1.0.2"
|
|
12767
12775
|
safe-regex-test: "npm:^1.1.0"
|
|
12768
|
-
checksum: 10c0/
|
|
12776
|
+
checksum: 10c0/d70c236a5e82de6fc4d44368ffd0c2fee2b088b893511ce21e679da275a5ecc6015ff59a7d7e1bdd7ca39f71a8dbdd253cf8cce5c6b3c91cdd5b42b5ce677298
|
|
12769
12777
|
languageName: node
|
|
12770
12778
|
linkType: hard
|
|
12771
12779
|
|
|
@@ -15148,13 +15156,13 @@ __metadata:
|
|
|
15148
15156
|
linkType: hard
|
|
15149
15157
|
|
|
15150
15158
|
"nopt@npm:^8.0.0":
|
|
15151
|
-
version: 8.
|
|
15152
|
-
resolution: "nopt@npm:8.
|
|
15159
|
+
version: 8.1.0
|
|
15160
|
+
resolution: "nopt@npm:8.1.0"
|
|
15153
15161
|
dependencies:
|
|
15154
|
-
abbrev: "npm:^
|
|
15162
|
+
abbrev: "npm:^3.0.0"
|
|
15155
15163
|
bin:
|
|
15156
15164
|
nopt: bin/nopt.js
|
|
15157
|
-
checksum: 10c0/
|
|
15165
|
+
checksum: 10c0/62e9ea70c7a3eb91d162d2c706b6606c041e4e7b547cbbb48f8b3695af457dd6479904d7ace600856bf923dd8d1ed0696f06195c8c20f02ac87c1da0e1d315ef
|
|
15158
15166
|
languageName: node
|
|
15159
15167
|
linkType: hard
|
|
15160
15168
|
|
|
@@ -15897,9 +15905,9 @@ __metadata:
|
|
|
15897
15905
|
linkType: hard
|
|
15898
15906
|
|
|
15899
15907
|
"pathe@npm:^2.0.1":
|
|
15900
|
-
version: 2.0.
|
|
15901
|
-
resolution: "pathe@npm:2.0.
|
|
15902
|
-
checksum: 10c0/
|
|
15908
|
+
version: 2.0.2
|
|
15909
|
+
resolution: "pathe@npm:2.0.2"
|
|
15910
|
+
checksum: 10c0/21fce96ca9cebf037b075de8e5cc4ac6aa1009bce57946a72695f47ded84cf4b29f03bed721ea0f6e39b69eb1a0620bcee1f72eca46086765214a2965399b83a
|
|
15903
15911
|
languageName: node
|
|
15904
15912
|
linkType: hard
|
|
15905
15913
|
|
|
@@ -17063,13 +17071,13 @@ __metadata:
|
|
|
17063
17071
|
linkType: hard
|
|
17064
17072
|
|
|
17065
17073
|
"prosemirror-view@npm:^1.0.0, prosemirror-view@npm:^1.1.0, prosemirror-view@npm:^1.23.6, prosemirror-view@npm:^1.27.0, prosemirror-view@npm:^1.28.2, prosemirror-view@npm:^1.31.0, prosemirror-view@npm:^1.37.1":
|
|
17066
|
-
version: 1.37.
|
|
17067
|
-
resolution: "prosemirror-view@npm:1.37.
|
|
17074
|
+
version: 1.37.2
|
|
17075
|
+
resolution: "prosemirror-view@npm:1.37.2"
|
|
17068
17076
|
dependencies:
|
|
17069
17077
|
prosemirror-model: "npm:^1.20.0"
|
|
17070
17078
|
prosemirror-state: "npm:^1.0.0"
|
|
17071
17079
|
prosemirror-transform: "npm:^1.1.0"
|
|
17072
|
-
checksum: 10c0/
|
|
17080
|
+
checksum: 10c0/a64cf4acca6e199f06ef3cbfe27953eda2c1cec63f55c68b93bb56d6222ab8f51a4ec082f07a89b3c603bfa167e185b9c2a4890457738e6b4de31ad6066c9dec
|
|
17073
17081
|
languageName: node
|
|
17074
17082
|
linkType: hard
|
|
17075
17083
|
|
|
@@ -17890,21 +17898,21 @@ __metadata:
|
|
|
17890
17898
|
linkType: hard
|
|
17891
17899
|
|
|
17892
17900
|
"react-remove-scroll@npm:^2.5.5":
|
|
17893
|
-
version: 2.6.
|
|
17894
|
-
resolution: "react-remove-scroll@npm:2.6.
|
|
17901
|
+
version: 2.6.3
|
|
17902
|
+
resolution: "react-remove-scroll@npm:2.6.3"
|
|
17895
17903
|
dependencies:
|
|
17896
17904
|
react-remove-scroll-bar: "npm:^2.3.7"
|
|
17897
|
-
react-style-singleton: "npm:^2.2.
|
|
17905
|
+
react-style-singleton: "npm:^2.2.3"
|
|
17898
17906
|
tslib: "npm:^2.1.0"
|
|
17899
17907
|
use-callback-ref: "npm:^1.3.3"
|
|
17900
|
-
use-sidecar: "npm:^1.1.
|
|
17908
|
+
use-sidecar: "npm:^1.1.3"
|
|
17901
17909
|
peerDependencies:
|
|
17902
17910
|
"@types/react": "*"
|
|
17903
17911
|
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
17904
17912
|
peerDependenciesMeta:
|
|
17905
17913
|
"@types/react":
|
|
17906
17914
|
optional: true
|
|
17907
|
-
checksum: 10c0/
|
|
17915
|
+
checksum: 10c0/068e9704ff26816fffc4c8903e2c6c8df7291ee08615d7c1ab0cf8751f7080e2c5a5d78ef5d908b11b9cfc189f176d312e44cb02ea291ca0466d8283b479b438
|
|
17908
17916
|
languageName: node
|
|
17909
17917
|
linkType: hard
|
|
17910
17918
|
|
|
@@ -18024,7 +18032,7 @@ __metadata:
|
|
|
18024
18032
|
languageName: node
|
|
18025
18033
|
linkType: hard
|
|
18026
18034
|
|
|
18027
|
-
"react-style-singleton@npm:^2.2.
|
|
18035
|
+
"react-style-singleton@npm:^2.2.2, react-style-singleton@npm:^2.2.3":
|
|
18028
18036
|
version: 2.2.3
|
|
18029
18037
|
resolution: "react-style-singleton@npm:2.2.3"
|
|
18030
18038
|
dependencies:
|
|
@@ -18919,28 +18927,28 @@ __metadata:
|
|
|
18919
18927
|
linkType: hard
|
|
18920
18928
|
|
|
18921
18929
|
"rollup@npm:^4.13.0":
|
|
18922
|
-
version: 4.
|
|
18923
|
-
resolution: "rollup@npm:4.
|
|
18924
|
-
dependencies:
|
|
18925
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.
|
|
18926
|
-
"@rollup/rollup-android-arm64": "npm:4.
|
|
18927
|
-
"@rollup/rollup-darwin-arm64": "npm:4.
|
|
18928
|
-
"@rollup/rollup-darwin-x64": "npm:4.
|
|
18929
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.
|
|
18930
|
-
"@rollup/rollup-freebsd-x64": "npm:4.
|
|
18931
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.
|
|
18932
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.
|
|
18933
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.
|
|
18934
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.
|
|
18935
|
-
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.
|
|
18936
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.
|
|
18937
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.
|
|
18938
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.
|
|
18939
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.
|
|
18940
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.
|
|
18941
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.
|
|
18942
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.
|
|
18943
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.
|
|
18930
|
+
version: 4.31.0
|
|
18931
|
+
resolution: "rollup@npm:4.31.0"
|
|
18932
|
+
dependencies:
|
|
18933
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.31.0"
|
|
18934
|
+
"@rollup/rollup-android-arm64": "npm:4.31.0"
|
|
18935
|
+
"@rollup/rollup-darwin-arm64": "npm:4.31.0"
|
|
18936
|
+
"@rollup/rollup-darwin-x64": "npm:4.31.0"
|
|
18937
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.31.0"
|
|
18938
|
+
"@rollup/rollup-freebsd-x64": "npm:4.31.0"
|
|
18939
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.31.0"
|
|
18940
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.31.0"
|
|
18941
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.31.0"
|
|
18942
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.31.0"
|
|
18943
|
+
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.31.0"
|
|
18944
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.31.0"
|
|
18945
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.31.0"
|
|
18946
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.31.0"
|
|
18947
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.31.0"
|
|
18948
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.31.0"
|
|
18949
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.31.0"
|
|
18950
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.31.0"
|
|
18951
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.31.0"
|
|
18944
18952
|
"@types/estree": "npm:1.0.6"
|
|
18945
18953
|
fsevents: "npm:~2.3.2"
|
|
18946
18954
|
dependenciesMeta:
|
|
@@ -18986,7 +18994,7 @@ __metadata:
|
|
|
18986
18994
|
optional: true
|
|
18987
18995
|
bin:
|
|
18988
18996
|
rollup: dist/bin/rollup
|
|
18989
|
-
checksum: 10c0/
|
|
18997
|
+
checksum: 10c0/0d6da45098af14c678e78be887fefefbf5a97fef6277c5a1c24ca722537bb3a02e695c6fcad8880218d8fbef8a7a17d865786afd99bb6e70409fad73844ca8cf
|
|
18990
18998
|
languageName: node
|
|
18991
18999
|
linkType: hard
|
|
18992
19000
|
|
|
@@ -21479,7 +21487,7 @@ __metadata:
|
|
|
21479
21487
|
languageName: node
|
|
21480
21488
|
linkType: hard
|
|
21481
21489
|
|
|
21482
|
-
"use-sidecar@npm:^1.1.
|
|
21490
|
+
"use-sidecar@npm:^1.1.3":
|
|
21483
21491
|
version: 1.1.3
|
|
21484
21492
|
resolution: "use-sidecar@npm:1.1.3"
|
|
21485
21493
|
dependencies:
|