@licklist/design 0.71.5-dev.5 → 0.71.5-dev.7
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/events/edit-recurrent-event-modal/EditRecurrentEventModal.d.ts.map +1 -1
- package/dist/events/edit-recurrent-event-modal/EditRecurrentEventModal.js +1 -0
- package/dist/iframe/page/components/PageBody/hooks/useResizePageBody.d.ts.map +1 -1
- package/dist/iframe/page/components/PageBody/hooks/useResizePageBody.js +5 -3
- package/package.json +1 -1
- package/src/events/edit-recurrent-event-modal/EditRecurrentEventModal.tsx +6 -1
- package/src/iframe/page/components/PageBody/hooks/useResizePageBody.ts +10 -8
- package/yarn.lock +231 -229
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EditRecurrentEventModal.d.ts","sourceRoot":"","sources":["../../../src/events/edit-recurrent-event-modal/EditRecurrentEventModal.tsx"],"names":[],"mappings":"AAKA,eAAO,MAAM,eAAe,cAAc,CAAA;AAC1C,eAAO,MAAM,8BAA8B,2BAA2B,CAAA;AACtE,eAAO,MAAM,eAAe,cAAc,CAAA;AAE1C,QAAA,MAAM,KAAK,+DAID,CAAA;AAEV,eAAO,MAAM,2BAA2B,cAAkB,CAAA;AAE1D,eAAO,MAAM,yBAAyB;;;;CAIrC,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAA;AAEvD,MAAM,MAAM,6BAA6B,GAAG;IAC1C,IAAI,EAAE,kBAAkB,CAAA;CACzB,CAAA;AAED,MAAM,MAAM,4BAA4B,GAAG;IACzC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,EAAE,OAAO,CAAA;IACf,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,CAAC,MAAM,EAAE,6BAA6B,KAAK,IAAI,CAAA;CAC1D,CAAA;AAED,eAAO,MAAM,uBAAuB,mDAMjC,4BAA4B,
|
|
1
|
+
{"version":3,"file":"EditRecurrentEventModal.d.ts","sourceRoot":"","sources":["../../../src/events/edit-recurrent-event-modal/EditRecurrentEventModal.tsx"],"names":[],"mappings":"AAKA,eAAO,MAAM,eAAe,cAAc,CAAA;AAC1C,eAAO,MAAM,8BAA8B,2BAA2B,CAAA;AACtE,eAAO,MAAM,eAAe,cAAc,CAAA;AAE1C,QAAA,MAAM,KAAK,+DAID,CAAA;AAEV,eAAO,MAAM,2BAA2B,cAAkB,CAAA;AAE1D,eAAO,MAAM,yBAAyB;;;;CAIrC,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,CAAC,CAAA;AAEvD,MAAM,MAAM,6BAA6B,GAAG;IAC1C,IAAI,EAAE,kBAAkB,CAAA;CACzB,CAAA;AAED,MAAM,MAAM,4BAA4B,GAAG;IACzC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,EAAE,OAAO,CAAA;IACf,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,CAAC,MAAM,EAAE,6BAA6B,KAAK,IAAI,CAAA;CAC1D,CAAA;AAED,eAAO,MAAM,uBAAuB,mDAMjC,4BAA4B,4CAgF9B,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useResizePageBody.d.ts","sourceRoot":"","sources":["../../../../../../src/iframe/page/components/PageBody/hooks/useResizePageBody.ts"],"names":[],"mappings":"AAuBA,eAAO,MAAM,iBAAiB;;;;;;;;;;;;eAMnB,MAAM;gBACL,MAAM;;
|
|
1
|
+
{"version":3,"file":"useResizePageBody.d.ts","sourceRoot":"","sources":["../../../../../../src/iframe/page/components/PageBody/hooks/useResizePageBody.ts"],"names":[],"mappings":"AAuBA,eAAO,MAAM,iBAAiB;;;;;;;;;;;;eAMnB,MAAM;gBACL,MAAM;;CAmPjB,CAAA"}
|
|
@@ -73,9 +73,11 @@ var useResizePageBody = function() {
|
|
|
73
73
|
behavior: 'smooth'
|
|
74
74
|
});
|
|
75
75
|
}
|
|
76
|
-
if (width <= MOBILE_WIDTH)
|
|
77
|
-
|
|
78
|
-
|
|
76
|
+
if (width <= MOBILE_WIDTH && Boolean(CALENDAR_WRAPPER_HEIGHT)) {
|
|
77
|
+
return {
|
|
78
|
+
maxHeight: height - STANDARD_BODY_PADDING - rightBlockHeight - CALENDAR_WRAPPER_HEIGHT
|
|
79
|
+
};
|
|
80
|
+
}
|
|
79
81
|
return {
|
|
80
82
|
maxHeight: height - STANDARD_BODY_PADDING - rightBlockHeight - STANDARD_HEADER_FOOTER_SIZE - CALENDAR_WRAPPER_HEIGHT
|
|
81
83
|
};
|
package/package.json
CHANGED
|
@@ -61,7 +61,12 @@ export const EditRecurrentEventModal = ({
|
|
|
61
61
|
<Form onSubmit={handleSubmit(onSubmit)} noValidate>
|
|
62
62
|
<Modal.Header className='border-0'>
|
|
63
63
|
<Modal.Title as='h6'>{title}</Modal.Title>
|
|
64
|
-
<Button
|
|
64
|
+
<Button
|
|
65
|
+
variant='danger'
|
|
66
|
+
className='btn-sm rounded'
|
|
67
|
+
disabled={disabled}
|
|
68
|
+
onClick={onHide}
|
|
69
|
+
>
|
|
65
70
|
<FaTimes size={16} />
|
|
66
71
|
</Button>
|
|
67
72
|
</Modal.Header>
|
|
@@ -61,14 +61,16 @@ export const useResizePageBody = () => {
|
|
|
61
61
|
})
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
if (width <= MOBILE_WIDTH)
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
64
|
+
if (width <= MOBILE_WIDTH && Boolean(CALENDAR_WRAPPER_HEIGHT)) {
|
|
65
|
+
return {
|
|
66
|
+
maxHeight:
|
|
67
|
+
height -
|
|
68
|
+
STANDARD_BODY_PADDING -
|
|
69
|
+
rightBlockHeight -
|
|
70
|
+
CALENDAR_WRAPPER_HEIGHT,
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
}
|
|
72
74
|
return {
|
|
73
75
|
maxHeight:
|
|
74
76
|
height -
|
package/yarn.lock
CHANGED
|
@@ -1633,13 +1633,13 @@ __metadata:
|
|
|
1633
1633
|
linkType: hard
|
|
1634
1634
|
|
|
1635
1635
|
"@dnd-kit/accessibility@npm:^3.0.0":
|
|
1636
|
-
version: 3.1.
|
|
1637
|
-
resolution: "@dnd-kit/accessibility@npm:3.1.
|
|
1636
|
+
version: 3.1.1
|
|
1637
|
+
resolution: "@dnd-kit/accessibility@npm:3.1.1"
|
|
1638
1638
|
dependencies:
|
|
1639
1639
|
tslib: "npm:^2.0.0"
|
|
1640
1640
|
peerDependencies:
|
|
1641
1641
|
react: ">=16.8.0"
|
|
1642
|
-
checksum: 10c0/
|
|
1642
|
+
checksum: 10c0/be0bf41716dc58f9386bc36906ec1ce72b7b42b6d1d0e631d347afe9bd8714a829bd6f58a346dd089b1519e93918ae2f94497411a61a4f5e4d9247c6cfd1fef8
|
|
1643
1643
|
languageName: node
|
|
1644
1644
|
linkType: hard
|
|
1645
1645
|
|
|
@@ -1702,22 +1702,22 @@ __metadata:
|
|
|
1702
1702
|
languageName: node
|
|
1703
1703
|
linkType: hard
|
|
1704
1704
|
|
|
1705
|
-
"@emotion/babel-plugin@npm:^11.
|
|
1706
|
-
version: 11.
|
|
1707
|
-
resolution: "@emotion/babel-plugin@npm:11.
|
|
1705
|
+
"@emotion/babel-plugin@npm:^11.13.5":
|
|
1706
|
+
version: 11.13.5
|
|
1707
|
+
resolution: "@emotion/babel-plugin@npm:11.13.5"
|
|
1708
1708
|
dependencies:
|
|
1709
1709
|
"@babel/helper-module-imports": "npm:^7.16.7"
|
|
1710
1710
|
"@babel/runtime": "npm:^7.18.3"
|
|
1711
1711
|
"@emotion/hash": "npm:^0.9.2"
|
|
1712
1712
|
"@emotion/memoize": "npm:^0.9.0"
|
|
1713
|
-
"@emotion/serialize": "npm:^1.
|
|
1713
|
+
"@emotion/serialize": "npm:^1.3.3"
|
|
1714
1714
|
babel-plugin-macros: "npm:^3.1.0"
|
|
1715
1715
|
convert-source-map: "npm:^1.5.0"
|
|
1716
1716
|
escape-string-regexp: "npm:^4.0.0"
|
|
1717
1717
|
find-root: "npm:^1.1.0"
|
|
1718
1718
|
source-map: "npm:^0.5.7"
|
|
1719
1719
|
stylis: "npm:4.2.0"
|
|
1720
|
-
checksum: 10c0/
|
|
1720
|
+
checksum: 10c0/8ccbfec7defd0e513cb8a1568fa179eac1e20c35fda18aed767f6c59ea7314363ebf2de3e9d2df66c8ad78928dc3dceeded84e6fa8059087cae5c280090aeeeb
|
|
1721
1721
|
languageName: node
|
|
1722
1722
|
linkType: hard
|
|
1723
1723
|
|
|
@@ -1733,16 +1733,16 @@ __metadata:
|
|
|
1733
1733
|
languageName: node
|
|
1734
1734
|
linkType: hard
|
|
1735
1735
|
|
|
1736
|
-
"@emotion/cache@npm:^11.13.
|
|
1737
|
-
version: 11.13.
|
|
1738
|
-
resolution: "@emotion/cache@npm:11.13.
|
|
1736
|
+
"@emotion/cache@npm:^11.13.5, @emotion/cache@npm:^11.4.0":
|
|
1737
|
+
version: 11.13.5
|
|
1738
|
+
resolution: "@emotion/cache@npm:11.13.5"
|
|
1739
1739
|
dependencies:
|
|
1740
1740
|
"@emotion/memoize": "npm:^0.9.0"
|
|
1741
1741
|
"@emotion/sheet": "npm:^1.4.0"
|
|
1742
|
-
"@emotion/utils": "npm:^1.4.
|
|
1742
|
+
"@emotion/utils": "npm:^1.4.2"
|
|
1743
1743
|
"@emotion/weak-memoize": "npm:^0.4.0"
|
|
1744
1744
|
stylis: "npm:4.2.0"
|
|
1745
|
-
checksum: 10c0/
|
|
1745
|
+
checksum: 10c0/fc669bf2add27ddff7b1f341b54e7124379156285095f0b38fb846efe90c64c70d2826f73bc734358a4fce04578229774a38ff4de2599d286461bfca57ba7d23
|
|
1746
1746
|
languageName: node
|
|
1747
1747
|
linkType: hard
|
|
1748
1748
|
|
|
@@ -1811,15 +1811,15 @@ __metadata:
|
|
|
1811
1811
|
linkType: hard
|
|
1812
1812
|
|
|
1813
1813
|
"@emotion/react@npm:^11.1.1":
|
|
1814
|
-
version: 11.13.
|
|
1815
|
-
resolution: "@emotion/react@npm:11.13.
|
|
1814
|
+
version: 11.13.5
|
|
1815
|
+
resolution: "@emotion/react@npm:11.13.5"
|
|
1816
1816
|
dependencies:
|
|
1817
1817
|
"@babel/runtime": "npm:^7.18.3"
|
|
1818
|
-
"@emotion/babel-plugin": "npm:^11.
|
|
1819
|
-
"@emotion/cache": "npm:^11.13.
|
|
1820
|
-
"@emotion/serialize": "npm:^1.3.
|
|
1818
|
+
"@emotion/babel-plugin": "npm:^11.13.5"
|
|
1819
|
+
"@emotion/cache": "npm:^11.13.5"
|
|
1820
|
+
"@emotion/serialize": "npm:^1.3.3"
|
|
1821
1821
|
"@emotion/use-insertion-effect-with-fallbacks": "npm:^1.1.0"
|
|
1822
|
-
"@emotion/utils": "npm:^1.4.
|
|
1822
|
+
"@emotion/utils": "npm:^1.4.2"
|
|
1823
1823
|
"@emotion/weak-memoize": "npm:^0.4.0"
|
|
1824
1824
|
hoist-non-react-statics: "npm:^3.3.1"
|
|
1825
1825
|
peerDependencies:
|
|
@@ -1827,7 +1827,7 @@ __metadata:
|
|
|
1827
1827
|
peerDependenciesMeta:
|
|
1828
1828
|
"@types/react":
|
|
1829
1829
|
optional: true
|
|
1830
|
-
checksum: 10c0/
|
|
1830
|
+
checksum: 10c0/16b4810bc68c619cb25145e543880e905fc99332bacc1c39b20c913b2e6130289d9acd909abba55820fa796c5cca3cade6fe79a26b3ab7e4e2d040c61ee14a6e
|
|
1831
1831
|
languageName: node
|
|
1832
1832
|
linkType: hard
|
|
1833
1833
|
|
|
@@ -1844,16 +1844,16 @@ __metadata:
|
|
|
1844
1844
|
languageName: node
|
|
1845
1845
|
linkType: hard
|
|
1846
1846
|
|
|
1847
|
-
"@emotion/serialize@npm:^1.
|
|
1848
|
-
version: 1.3.
|
|
1849
|
-
resolution: "@emotion/serialize@npm:1.3.
|
|
1847
|
+
"@emotion/serialize@npm:^1.3.3":
|
|
1848
|
+
version: 1.3.3
|
|
1849
|
+
resolution: "@emotion/serialize@npm:1.3.3"
|
|
1850
1850
|
dependencies:
|
|
1851
1851
|
"@emotion/hash": "npm:^0.9.2"
|
|
1852
1852
|
"@emotion/memoize": "npm:^0.9.0"
|
|
1853
1853
|
"@emotion/unitless": "npm:^0.10.0"
|
|
1854
|
-
"@emotion/utils": "npm:^1.4.
|
|
1854
|
+
"@emotion/utils": "npm:^1.4.2"
|
|
1855
1855
|
csstype: "npm:^3.0.2"
|
|
1856
|
-
checksum: 10c0/
|
|
1856
|
+
checksum: 10c0/b28cb7de59de382021de2b26c0c94ebbfb16967a1b969a56fdb6408465a8993df243bfbd66430badaa6800e1834724e84895f5a6a9d97d0d224de3d77852acb4
|
|
1857
1857
|
languageName: node
|
|
1858
1858
|
linkType: hard
|
|
1859
1859
|
|
|
@@ -1936,10 +1936,10 @@ __metadata:
|
|
|
1936
1936
|
languageName: node
|
|
1937
1937
|
linkType: hard
|
|
1938
1938
|
|
|
1939
|
-
"@emotion/utils@npm:^1.4.
|
|
1940
|
-
version: 1.4.
|
|
1941
|
-
resolution: "@emotion/utils@npm:1.4.
|
|
1942
|
-
checksum: 10c0/
|
|
1939
|
+
"@emotion/utils@npm:^1.4.2":
|
|
1940
|
+
version: 1.4.2
|
|
1941
|
+
resolution: "@emotion/utils@npm:1.4.2"
|
|
1942
|
+
checksum: 10c0/7d0010bf60a2a8c1a033b6431469de4c80e47aeb8fd856a17c1d1f76bbc3a03161a34aeaa78803566e29681ca551e7bf9994b68e9c5f5c796159923e44f78d9a
|
|
1943
1943
|
languageName: node
|
|
1944
1944
|
linkType: hard
|
|
1945
1945
|
|
|
@@ -2847,21 +2847,21 @@ __metadata:
|
|
|
2847
2847
|
linkType: hard
|
|
2848
2848
|
|
|
2849
2849
|
"@microsoft/tsdoc-config@npm:~0.17.0":
|
|
2850
|
-
version: 0.17.
|
|
2851
|
-
resolution: "@microsoft/tsdoc-config@npm:0.17.
|
|
2850
|
+
version: 0.17.1
|
|
2851
|
+
resolution: "@microsoft/tsdoc-config@npm:0.17.1"
|
|
2852
2852
|
dependencies:
|
|
2853
|
-
"@microsoft/tsdoc": "npm:0.15.
|
|
2853
|
+
"@microsoft/tsdoc": "npm:0.15.1"
|
|
2854
2854
|
ajv: "npm:~8.12.0"
|
|
2855
2855
|
jju: "npm:~1.4.0"
|
|
2856
2856
|
resolve: "npm:~1.22.2"
|
|
2857
|
-
checksum: 10c0/
|
|
2857
|
+
checksum: 10c0/a686355796f492f27af17e2a17d615221309caf4d9f9047a5a8f17f8625c467c4c81e2a7923ddafd71b892631d5e5013c4b8cc49c5867d3cc1d260fd90c1413d
|
|
2858
2858
|
languageName: node
|
|
2859
2859
|
linkType: hard
|
|
2860
2860
|
|
|
2861
|
-
"@microsoft/tsdoc@npm:0.15.
|
|
2862
|
-
version: 0.15.
|
|
2863
|
-
resolution: "@microsoft/tsdoc@npm:0.15.
|
|
2864
|
-
checksum: 10c0/
|
|
2861
|
+
"@microsoft/tsdoc@npm:0.15.1, @microsoft/tsdoc@npm:~0.15.0":
|
|
2862
|
+
version: 0.15.1
|
|
2863
|
+
resolution: "@microsoft/tsdoc@npm:0.15.1"
|
|
2864
|
+
checksum: 10c0/09948691fac56c45a0d1920de478d66a30371a325bd81addc92eea5654d95106ce173c440fea1a1bd5bb95b3a544b6d4def7bb0b5a846c05d043575d8369a20c
|
|
2865
2865
|
languageName: node
|
|
2866
2866
|
linkType: hard
|
|
2867
2867
|
|
|
@@ -3150,13 +3150,13 @@ __metadata:
|
|
|
3150
3150
|
linkType: hard
|
|
3151
3151
|
|
|
3152
3152
|
"@react-aria/ssr@npm:^3.1.0":
|
|
3153
|
-
version: 3.9.
|
|
3154
|
-
resolution: "@react-aria/ssr@npm:3.9.
|
|
3153
|
+
version: 3.9.7
|
|
3154
|
+
resolution: "@react-aria/ssr@npm:3.9.7"
|
|
3155
3155
|
dependencies:
|
|
3156
3156
|
"@swc/helpers": "npm:^0.5.0"
|
|
3157
3157
|
peerDependencies:
|
|
3158
|
-
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
|
|
3159
|
-
checksum: 10c0/
|
|
3158
|
+
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
|
|
3159
|
+
checksum: 10c0/37168cd81b1e8223aedb906c1333381f3c436dadf58cbd675606ced314605ce5c49eee5c831309648bfbab78a8598c344be636a85962c742ebf11ae7e87ee93e
|
|
3160
3160
|
languageName: node
|
|
3161
3161
|
linkType: hard
|
|
3162
3162
|
|
|
@@ -3176,22 +3176,22 @@ __metadata:
|
|
|
3176
3176
|
linkType: hard
|
|
3177
3177
|
|
|
3178
3178
|
"@react-stately/utils@npm:^3.2.2":
|
|
3179
|
-
version: 3.10.
|
|
3180
|
-
resolution: "@react-stately/utils@npm:3.10.
|
|
3179
|
+
version: 3.10.5
|
|
3180
|
+
resolution: "@react-stately/utils@npm:3.10.5"
|
|
3181
3181
|
dependencies:
|
|
3182
3182
|
"@swc/helpers": "npm:^0.5.0"
|
|
3183
3183
|
peerDependencies:
|
|
3184
|
-
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
|
|
3185
|
-
checksum: 10c0/
|
|
3184
|
+
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
|
|
3185
|
+
checksum: 10c0/188500fef26361515d1a6c506ad347f68c82a1d61a13a09109080966a195e1cf97686991143e0d5684fd0b1a3c6a0a1e0149c92c0665bcc34c2026cd9730af1c
|
|
3186
3186
|
languageName: node
|
|
3187
3187
|
linkType: hard
|
|
3188
3188
|
|
|
3189
3189
|
"@react-types/shared@npm:^3.9.0":
|
|
3190
|
-
version: 3.
|
|
3191
|
-
resolution: "@react-types/shared@npm:3.
|
|
3190
|
+
version: 3.26.0
|
|
3191
|
+
resolution: "@react-types/shared@npm:3.26.0"
|
|
3192
3192
|
peerDependencies:
|
|
3193
|
-
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
|
|
3194
|
-
checksum: 10c0/
|
|
3193
|
+
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
|
|
3194
|
+
checksum: 10c0/3ff20c24dc01d0ad9574f9a13f0e2519f5e3fe962251b7e9dd51e57ee0c1507c8f180792a987531217b02d8900ec2ae92658083b943afa02b9d68018fc79188f
|
|
3195
3195
|
languageName: node
|
|
3196
3196
|
linkType: hard
|
|
3197
3197
|
|
|
@@ -3288,128 +3288,128 @@ __metadata:
|
|
|
3288
3288
|
languageName: node
|
|
3289
3289
|
linkType: hard
|
|
3290
3290
|
|
|
3291
|
-
"@rollup/rollup-android-arm-eabi@npm:4.27.
|
|
3292
|
-
version: 4.27.
|
|
3293
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.27.
|
|
3291
|
+
"@rollup/rollup-android-arm-eabi@npm:4.27.4":
|
|
3292
|
+
version: 4.27.4
|
|
3293
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.27.4"
|
|
3294
3294
|
conditions: os=android & cpu=arm
|
|
3295
3295
|
languageName: node
|
|
3296
3296
|
linkType: hard
|
|
3297
3297
|
|
|
3298
|
-
"@rollup/rollup-android-arm64@npm:4.27.
|
|
3299
|
-
version: 4.27.
|
|
3300
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.27.
|
|
3298
|
+
"@rollup/rollup-android-arm64@npm:4.27.4":
|
|
3299
|
+
version: 4.27.4
|
|
3300
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.27.4"
|
|
3301
3301
|
conditions: os=android & cpu=arm64
|
|
3302
3302
|
languageName: node
|
|
3303
3303
|
linkType: hard
|
|
3304
3304
|
|
|
3305
|
-
"@rollup/rollup-darwin-arm64@npm:4.27.
|
|
3306
|
-
version: 4.27.
|
|
3307
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.27.
|
|
3305
|
+
"@rollup/rollup-darwin-arm64@npm:4.27.4":
|
|
3306
|
+
version: 4.27.4
|
|
3307
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.27.4"
|
|
3308
3308
|
conditions: os=darwin & cpu=arm64
|
|
3309
3309
|
languageName: node
|
|
3310
3310
|
linkType: hard
|
|
3311
3311
|
|
|
3312
|
-
"@rollup/rollup-darwin-x64@npm:4.27.
|
|
3313
|
-
version: 4.27.
|
|
3314
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.27.
|
|
3312
|
+
"@rollup/rollup-darwin-x64@npm:4.27.4":
|
|
3313
|
+
version: 4.27.4
|
|
3314
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.27.4"
|
|
3315
3315
|
conditions: os=darwin & cpu=x64
|
|
3316
3316
|
languageName: node
|
|
3317
3317
|
linkType: hard
|
|
3318
3318
|
|
|
3319
|
-
"@rollup/rollup-freebsd-arm64@npm:4.27.
|
|
3320
|
-
version: 4.27.
|
|
3321
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.27.
|
|
3319
|
+
"@rollup/rollup-freebsd-arm64@npm:4.27.4":
|
|
3320
|
+
version: 4.27.4
|
|
3321
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.27.4"
|
|
3322
3322
|
conditions: os=freebsd & cpu=arm64
|
|
3323
3323
|
languageName: node
|
|
3324
3324
|
linkType: hard
|
|
3325
3325
|
|
|
3326
|
-
"@rollup/rollup-freebsd-x64@npm:4.27.
|
|
3327
|
-
version: 4.27.
|
|
3328
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.27.
|
|
3326
|
+
"@rollup/rollup-freebsd-x64@npm:4.27.4":
|
|
3327
|
+
version: 4.27.4
|
|
3328
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.27.4"
|
|
3329
3329
|
conditions: os=freebsd & cpu=x64
|
|
3330
3330
|
languageName: node
|
|
3331
3331
|
linkType: hard
|
|
3332
3332
|
|
|
3333
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.27.
|
|
3334
|
-
version: 4.27.
|
|
3335
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.27.
|
|
3333
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.27.4":
|
|
3334
|
+
version: 4.27.4
|
|
3335
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.27.4"
|
|
3336
3336
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3337
3337
|
languageName: node
|
|
3338
3338
|
linkType: hard
|
|
3339
3339
|
|
|
3340
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.27.
|
|
3341
|
-
version: 4.27.
|
|
3342
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.27.
|
|
3340
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.27.4":
|
|
3341
|
+
version: 4.27.4
|
|
3342
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.27.4"
|
|
3343
3343
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3344
3344
|
languageName: node
|
|
3345
3345
|
linkType: hard
|
|
3346
3346
|
|
|
3347
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.27.
|
|
3348
|
-
version: 4.27.
|
|
3349
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.27.
|
|
3347
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.27.4":
|
|
3348
|
+
version: 4.27.4
|
|
3349
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.27.4"
|
|
3350
3350
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3351
3351
|
languageName: node
|
|
3352
3352
|
linkType: hard
|
|
3353
3353
|
|
|
3354
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.27.
|
|
3355
|
-
version: 4.27.
|
|
3356
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.27.
|
|
3354
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.27.4":
|
|
3355
|
+
version: 4.27.4
|
|
3356
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.27.4"
|
|
3357
3357
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3358
3358
|
languageName: node
|
|
3359
3359
|
linkType: hard
|
|
3360
3360
|
|
|
3361
|
-
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.27.
|
|
3362
|
-
version: 4.27.
|
|
3363
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.27.
|
|
3361
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.27.4":
|
|
3362
|
+
version: 4.27.4
|
|
3363
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.27.4"
|
|
3364
3364
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3365
3365
|
languageName: node
|
|
3366
3366
|
linkType: hard
|
|
3367
3367
|
|
|
3368
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.27.
|
|
3369
|
-
version: 4.27.
|
|
3370
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.27.
|
|
3368
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.27.4":
|
|
3369
|
+
version: 4.27.4
|
|
3370
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.27.4"
|
|
3371
3371
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3372
3372
|
languageName: node
|
|
3373
3373
|
linkType: hard
|
|
3374
3374
|
|
|
3375
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.27.
|
|
3376
|
-
version: 4.27.
|
|
3377
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.27.
|
|
3375
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.27.4":
|
|
3376
|
+
version: 4.27.4
|
|
3377
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.27.4"
|
|
3378
3378
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3379
3379
|
languageName: node
|
|
3380
3380
|
linkType: hard
|
|
3381
3381
|
|
|
3382
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.27.
|
|
3383
|
-
version: 4.27.
|
|
3384
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.27.
|
|
3382
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.27.4":
|
|
3383
|
+
version: 4.27.4
|
|
3384
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.27.4"
|
|
3385
3385
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3386
3386
|
languageName: node
|
|
3387
3387
|
linkType: hard
|
|
3388
3388
|
|
|
3389
|
-
"@rollup/rollup-linux-x64-musl@npm:4.27.
|
|
3390
|
-
version: 4.27.
|
|
3391
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.27.
|
|
3389
|
+
"@rollup/rollup-linux-x64-musl@npm:4.27.4":
|
|
3390
|
+
version: 4.27.4
|
|
3391
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.27.4"
|
|
3392
3392
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3393
3393
|
languageName: node
|
|
3394
3394
|
linkType: hard
|
|
3395
3395
|
|
|
3396
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.27.
|
|
3397
|
-
version: 4.27.
|
|
3398
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.27.
|
|
3396
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.27.4":
|
|
3397
|
+
version: 4.27.4
|
|
3398
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.27.4"
|
|
3399
3399
|
conditions: os=win32 & cpu=arm64
|
|
3400
3400
|
languageName: node
|
|
3401
3401
|
linkType: hard
|
|
3402
3402
|
|
|
3403
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.27.
|
|
3404
|
-
version: 4.27.
|
|
3405
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.27.
|
|
3403
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.27.4":
|
|
3404
|
+
version: 4.27.4
|
|
3405
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.27.4"
|
|
3406
3406
|
conditions: os=win32 & cpu=ia32
|
|
3407
3407
|
languageName: node
|
|
3408
3408
|
linkType: hard
|
|
3409
3409
|
|
|
3410
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.27.
|
|
3411
|
-
version: 4.27.
|
|
3412
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.27.
|
|
3410
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.27.4":
|
|
3411
|
+
version: 4.27.4
|
|
3412
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.27.4"
|
|
3413
3413
|
conditions: os=win32 & cpu=x64
|
|
3414
3414
|
languageName: node
|
|
3415
3415
|
linkType: hard
|
|
@@ -5072,11 +5072,11 @@ __metadata:
|
|
|
5072
5072
|
linkType: hard
|
|
5073
5073
|
|
|
5074
5074
|
"@swc/types@npm:^0.1.9":
|
|
5075
|
-
version: 0.1.
|
|
5076
|
-
resolution: "@swc/types@npm:0.1.
|
|
5075
|
+
version: 0.1.17
|
|
5076
|
+
resolution: "@swc/types@npm:0.1.17"
|
|
5077
5077
|
dependencies:
|
|
5078
5078
|
"@swc/counter": "npm:^0.1.3"
|
|
5079
|
-
checksum: 10c0/
|
|
5079
|
+
checksum: 10c0/29f5c8933a16042956f1adb7383e836ed7646cbf679826e78b53fdd0c08e8572cb42152e527b6b530a9bd1052d33d0972f90f589761ccd252c12652c9b7a72fc
|
|
5080
5080
|
languageName: node
|
|
5081
5081
|
linkType: hard
|
|
5082
5082
|
|
|
@@ -5153,14 +5153,14 @@ __metadata:
|
|
|
5153
5153
|
linkType: hard
|
|
5154
5154
|
|
|
5155
5155
|
"@tiptap/extension-bubble-menu@npm:^2.0.0-beta.56":
|
|
5156
|
-
version: 2.
|
|
5157
|
-
resolution: "@tiptap/extension-bubble-menu@npm:2.
|
|
5156
|
+
version: 2.10.3
|
|
5157
|
+
resolution: "@tiptap/extension-bubble-menu@npm:2.10.3"
|
|
5158
5158
|
dependencies:
|
|
5159
5159
|
tippy.js: "npm:^6.3.7"
|
|
5160
5160
|
peerDependencies:
|
|
5161
5161
|
"@tiptap/core": ^2.7.0
|
|
5162
5162
|
"@tiptap/pm": ^2.7.0
|
|
5163
|
-
checksum: 10c0/
|
|
5163
|
+
checksum: 10c0/757e0c8e1bb121472e0d606e9b598e326f43b0cab048611a947dbe2c7886f13925f1f93b3f886040daf718da912a84a48e2c549f20e8c842c4a29bb59d0fa02f
|
|
5164
5164
|
languageName: node
|
|
5165
5165
|
linkType: hard
|
|
5166
5166
|
|
|
@@ -5183,14 +5183,14 @@ __metadata:
|
|
|
5183
5183
|
linkType: hard
|
|
5184
5184
|
|
|
5185
5185
|
"@tiptap/extension-floating-menu@npm:^2.0.0-beta.51":
|
|
5186
|
-
version: 2.
|
|
5187
|
-
resolution: "@tiptap/extension-floating-menu@npm:2.
|
|
5186
|
+
version: 2.10.3
|
|
5187
|
+
resolution: "@tiptap/extension-floating-menu@npm:2.10.3"
|
|
5188
5188
|
dependencies:
|
|
5189
5189
|
tippy.js: "npm:^6.3.7"
|
|
5190
5190
|
peerDependencies:
|
|
5191
5191
|
"@tiptap/core": ^2.7.0
|
|
5192
5192
|
"@tiptap/pm": ^2.7.0
|
|
5193
|
-
checksum: 10c0/
|
|
5193
|
+
checksum: 10c0/dfce18a4f9d39b6ffe4486fe8354cf02494c49f49792aca3723dd15743f07d5d0d78d1fae739850ded8c04bd3317ba2ce1f778cd2a54bb7cfd264f710d8da533
|
|
5194
5194
|
languageName: node
|
|
5195
5195
|
linkType: hard
|
|
5196
5196
|
|
|
@@ -5670,11 +5670,11 @@ __metadata:
|
|
|
5670
5670
|
linkType: hard
|
|
5671
5671
|
|
|
5672
5672
|
"@types/node@npm:*":
|
|
5673
|
-
version: 22.
|
|
5674
|
-
resolution: "@types/node@npm:22.
|
|
5673
|
+
version: 22.10.1
|
|
5674
|
+
resolution: "@types/node@npm:22.10.1"
|
|
5675
5675
|
dependencies:
|
|
5676
|
-
undici-types: "npm:~6.
|
|
5677
|
-
checksum: 10c0/
|
|
5676
|
+
undici-types: "npm:~6.20.0"
|
|
5677
|
+
checksum: 10c0/0fbb6d29fa35d807f0223a4db709c598ac08d66820240a2cd6a8a69b8f0bc921d65b339d850a666b43b4e779f967e6ed6cf6f0fca3575e08241e6b900364c234
|
|
5678
5678
|
languageName: node
|
|
5679
5679
|
linkType: hard
|
|
5680
5680
|
|
|
@@ -8045,9 +8045,9 @@ __metadata:
|
|
|
8045
8045
|
linkType: hard
|
|
8046
8046
|
|
|
8047
8047
|
"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":
|
|
8048
|
-
version: 1.0.
|
|
8049
|
-
resolution: "caniuse-lite@npm:1.0.
|
|
8050
|
-
checksum: 10c0/
|
|
8048
|
+
version: 1.0.30001684
|
|
8049
|
+
resolution: "caniuse-lite@npm:1.0.30001684"
|
|
8050
|
+
checksum: 10c0/446485ca3d9caf408a339a44636a86a2b119ec247492393ae661cd93dccd6668401dd2dfec1e149be4e44563cd1e23351b44453a52fa2c2f19e2bf3287c865f6
|
|
8051
8051
|
languageName: node
|
|
8052
8052
|
linkType: hard
|
|
8053
8053
|
|
|
@@ -8183,8 +8183,8 @@ __metadata:
|
|
|
8183
8183
|
linkType: hard
|
|
8184
8184
|
|
|
8185
8185
|
"chromatic@npm:^11.4.0":
|
|
8186
|
-
version: 11.
|
|
8187
|
-
resolution: "chromatic@npm:11.
|
|
8186
|
+
version: 11.19.0
|
|
8187
|
+
resolution: "chromatic@npm:11.19.0"
|
|
8188
8188
|
peerDependencies:
|
|
8189
8189
|
"@chromatic-com/cypress": ^0.*.* || ^1.0.0
|
|
8190
8190
|
"@chromatic-com/playwright": ^0.*.* || ^1.0.0
|
|
@@ -8197,7 +8197,7 @@ __metadata:
|
|
|
8197
8197
|
chroma: dist/bin.js
|
|
8198
8198
|
chromatic: dist/bin.js
|
|
8199
8199
|
chromatic-cli: dist/bin.js
|
|
8200
|
-
checksum: 10c0/
|
|
8200
|
+
checksum: 10c0/e97715d20f72eb16b677cce2620a657164796c92ad6858eda01563c5aca85ffa1eeaf6baf68ffc7bacdb932388be7b5a16f793790109ba8273408c10260bc26a
|
|
8201
8201
|
languageName: node
|
|
8202
8202
|
linkType: hard
|
|
8203
8203
|
|
|
@@ -8216,12 +8216,12 @@ __metadata:
|
|
|
8216
8216
|
linkType: hard
|
|
8217
8217
|
|
|
8218
8218
|
"cipher-base@npm:^1.0.0, cipher-base@npm:^1.0.1, cipher-base@npm:^1.0.3":
|
|
8219
|
-
version: 1.0.
|
|
8220
|
-
resolution: "cipher-base@npm:1.0.
|
|
8219
|
+
version: 1.0.6
|
|
8220
|
+
resolution: "cipher-base@npm:1.0.6"
|
|
8221
8221
|
dependencies:
|
|
8222
8222
|
inherits: "npm:^2.0.4"
|
|
8223
8223
|
safe-buffer: "npm:^5.2.1"
|
|
8224
|
-
checksum: 10c0/
|
|
8224
|
+
checksum: 10c0/f73268e0ee6585800875d9748f2a2377ae7c2c3375cba346f75598ac6f6bc3a25dec56e984a168ced1a862529ffffe615363f750c40349039d96bd30fba0fca8
|
|
8225
8225
|
languageName: node
|
|
8226
8226
|
linkType: hard
|
|
8227
8227
|
|
|
@@ -9816,9 +9816,9 @@ __metadata:
|
|
|
9816
9816
|
linkType: hard
|
|
9817
9817
|
|
|
9818
9818
|
"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.41":
|
|
9819
|
-
version: 1.5.
|
|
9820
|
-
resolution: "electron-to-chromium@npm:1.5.
|
|
9821
|
-
checksum: 10c0/
|
|
9819
|
+
version: 1.5.67
|
|
9820
|
+
resolution: "electron-to-chromium@npm:1.5.67"
|
|
9821
|
+
checksum: 10c0/bcd21c3961267fd733973586045a38d41f697e6821e7624cdd39d48fd744d9bd93ec7db59abbafeb464861218b959a920892cfaa719bff4441d1d49f8dcdff94
|
|
9822
9822
|
languageName: node
|
|
9823
9823
|
linkType: hard
|
|
9824
9824
|
|
|
@@ -10025,7 +10025,7 @@ __metadata:
|
|
|
10025
10025
|
languageName: node
|
|
10026
10026
|
linkType: hard
|
|
10027
10027
|
|
|
10028
|
-
"es-abstract@npm:^1.17.5, es-abstract@npm:^1.22.1, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.0, es-abstract@npm:^1.23.
|
|
10028
|
+
"es-abstract@npm:^1.17.5, es-abstract@npm:^1.22.1, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.0, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3, es-abstract@npm:^1.23.5":
|
|
10029
10029
|
version: 1.23.5
|
|
10030
10030
|
resolution: "es-abstract@npm:1.23.5"
|
|
10031
10031
|
dependencies:
|
|
@@ -10172,13 +10172,13 @@ __metadata:
|
|
|
10172
10172
|
linkType: hard
|
|
10173
10173
|
|
|
10174
10174
|
"es-to-primitive@npm:^1.2.1":
|
|
10175
|
-
version: 1.
|
|
10176
|
-
resolution: "es-to-primitive@npm:1.
|
|
10175
|
+
version: 1.3.0
|
|
10176
|
+
resolution: "es-to-primitive@npm:1.3.0"
|
|
10177
10177
|
dependencies:
|
|
10178
|
-
is-callable: "npm:^1.
|
|
10179
|
-
is-date-object: "npm:^1.0.
|
|
10180
|
-
is-symbol: "npm:^1.0.
|
|
10181
|
-
checksum: 10c0/
|
|
10178
|
+
is-callable: "npm:^1.2.7"
|
|
10179
|
+
is-date-object: "npm:^1.0.5"
|
|
10180
|
+
is-symbol: "npm:^1.0.4"
|
|
10181
|
+
checksum: 10c0/c7e87467abb0b438639baa8139f701a06537d2b9bc758f23e8622c3b42fd0fdb5bde0f535686119e446dd9d5e4c0f238af4e14960f4771877cf818d023f6730b
|
|
10182
10182
|
languageName: node
|
|
10183
10183
|
linkType: hard
|
|
10184
10184
|
|
|
@@ -11762,7 +11762,7 @@ __metadata:
|
|
|
11762
11762
|
languageName: node
|
|
11763
11763
|
linkType: hard
|
|
11764
11764
|
|
|
11765
|
-
"globalthis@npm:^1.0.0, globalthis@npm:^1.0.
|
|
11765
|
+
"globalthis@npm:^1.0.0, globalthis@npm:^1.0.4":
|
|
11766
11766
|
version: 1.0.4
|
|
11767
11767
|
resolution: "globalthis@npm:1.0.4"
|
|
11768
11768
|
dependencies:
|
|
@@ -12015,12 +12015,12 @@ __metadata:
|
|
|
12015
12015
|
linkType: hard
|
|
12016
12016
|
|
|
12017
12017
|
"hash-base@npm:~3.0, hash-base@npm:~3.0.4":
|
|
12018
|
-
version: 3.0.
|
|
12019
|
-
resolution: "hash-base@npm:3.0.
|
|
12018
|
+
version: 3.0.5
|
|
12019
|
+
resolution: "hash-base@npm:3.0.5"
|
|
12020
12020
|
dependencies:
|
|
12021
|
-
inherits: "npm:^2.0.
|
|
12022
|
-
safe-buffer: "npm:^5.
|
|
12023
|
-
checksum: 10c0/
|
|
12021
|
+
inherits: "npm:^2.0.4"
|
|
12022
|
+
safe-buffer: "npm:^5.2.1"
|
|
12023
|
+
checksum: 10c0/6dc185b79bad9b6d525cd132a588e4215380fdc36fec6f7a8a58c5db8e3b642557d02ad9c367f5e476c7c3ad3ccffa3607f308b124e1ed80e3b80a1b254db61e
|
|
12024
12024
|
languageName: node
|
|
12025
12025
|
linkType: hard
|
|
12026
12026
|
|
|
@@ -12728,7 +12728,7 @@ __metadata:
|
|
|
12728
12728
|
languageName: node
|
|
12729
12729
|
linkType: hard
|
|
12730
12730
|
|
|
12731
|
-
"is-callable@npm:^1.1.3, is-callable@npm:^1.
|
|
12731
|
+
"is-callable@npm:^1.1.3, is-callable@npm:^1.2.7":
|
|
12732
12732
|
version: 1.2.7
|
|
12733
12733
|
resolution: "is-callable@npm:1.2.7"
|
|
12734
12734
|
checksum: 10c0/ceebaeb9d92e8adee604076971dd6000d38d6afc40bb843ea8e45c5579b57671c3f3b50d7f04869618242c6cee08d1b67806a8cb8edaaaf7c0748b3720d6066f
|
|
@@ -12773,7 +12773,7 @@ __metadata:
|
|
|
12773
12773
|
languageName: node
|
|
12774
12774
|
linkType: hard
|
|
12775
12775
|
|
|
12776
|
-
"is-date-object@npm:^1.0.
|
|
12776
|
+
"is-date-object@npm:^1.0.5":
|
|
12777
12777
|
version: 1.0.5
|
|
12778
12778
|
resolution: "is-date-object@npm:1.0.5"
|
|
12779
12779
|
dependencies:
|
|
@@ -12858,12 +12858,12 @@ __metadata:
|
|
|
12858
12858
|
languageName: node
|
|
12859
12859
|
linkType: hard
|
|
12860
12860
|
|
|
12861
|
-
"is-finalizationregistry@npm:^1.0
|
|
12862
|
-
version: 1.0
|
|
12863
|
-
resolution: "is-finalizationregistry@npm:1.0
|
|
12861
|
+
"is-finalizationregistry@npm:^1.1.0":
|
|
12862
|
+
version: 1.1.0
|
|
12863
|
+
resolution: "is-finalizationregistry@npm:1.1.0"
|
|
12864
12864
|
dependencies:
|
|
12865
|
-
call-bind: "npm:^1.0.
|
|
12866
|
-
checksum: 10c0/
|
|
12865
|
+
call-bind: "npm:^1.0.7"
|
|
12866
|
+
checksum: 10c0/1cd94236bfb6e060fe2b973c8726a2782727f7d495b3e8e1d51d3e619c5a3345413706f555956eb5b12af15eba0414118f64a1b19d793ec36b5e6767a13836ac
|
|
12867
12867
|
languageName: node
|
|
12868
12868
|
linkType: hard
|
|
12869
12869
|
|
|
@@ -13093,7 +13093,7 @@ __metadata:
|
|
|
13093
13093
|
languageName: node
|
|
13094
13094
|
linkType: hard
|
|
13095
13095
|
|
|
13096
|
-
"is-symbol@npm:^1.0.
|
|
13096
|
+
"is-symbol@npm:^1.0.3, is-symbol@npm:^1.0.4":
|
|
13097
13097
|
version: 1.0.4
|
|
13098
13098
|
resolution: "is-symbol@npm:1.0.4"
|
|
13099
13099
|
dependencies:
|
|
@@ -13695,9 +13695,9 @@ __metadata:
|
|
|
13695
13695
|
linkType: hard
|
|
13696
13696
|
|
|
13697
13697
|
"libphonenumber-js@npm:^1.9.11":
|
|
13698
|
-
version: 1.11.
|
|
13699
|
-
resolution: "libphonenumber-js@npm:1.11.
|
|
13700
|
-
checksum: 10c0/
|
|
13698
|
+
version: 1.11.15
|
|
13699
|
+
resolution: "libphonenumber-js@npm:1.11.15"
|
|
13700
|
+
checksum: 10c0/eb1794ee38d2bc3087f7e5596740949493c745fe4734c5bcee3cf51344da16e1ea49c96fcc19c57eac36ebfffda6d328cbdbaff7bc26714a594a4a98f7789153
|
|
13701
13701
|
languageName: node
|
|
13702
13702
|
linkType: hard
|
|
13703
13703
|
|
|
@@ -14025,11 +14025,11 @@ __metadata:
|
|
|
14025
14025
|
linkType: hard
|
|
14026
14026
|
|
|
14027
14027
|
"magic-string@npm:^0.30.11, magic-string@npm:^0.30.5":
|
|
14028
|
-
version: 0.30.
|
|
14029
|
-
resolution: "magic-string@npm:0.30.
|
|
14028
|
+
version: 0.30.14
|
|
14029
|
+
resolution: "magic-string@npm:0.30.14"
|
|
14030
14030
|
dependencies:
|
|
14031
14031
|
"@jridgewell/sourcemap-codec": "npm:^1.5.0"
|
|
14032
|
-
checksum: 10c0/
|
|
14032
|
+
checksum: 10c0/c52c2a6e699dfa8a840e13154da35464a40cd8b07049b695a8b282883b0426c0811af1e36ac26860b4267289340b42772c156a5608e87be97b63d510e617e87a
|
|
14033
14033
|
languageName: node
|
|
14034
14034
|
linkType: hard
|
|
14035
14035
|
|
|
@@ -14165,11 +14165,11 @@ __metadata:
|
|
|
14165
14165
|
linkType: hard
|
|
14166
14166
|
|
|
14167
14167
|
"markdown-to-jsx@npm:^7.1.3":
|
|
14168
|
-
version: 7.
|
|
14169
|
-
resolution: "markdown-to-jsx@npm:7.
|
|
14168
|
+
version: 7.7.0
|
|
14169
|
+
resolution: "markdown-to-jsx@npm:7.7.0"
|
|
14170
14170
|
peerDependencies:
|
|
14171
14171
|
react: ">= 0.14.0"
|
|
14172
|
-
checksum: 10c0/
|
|
14172
|
+
checksum: 10c0/ffaad99232a802f86be350458c969b50dfaf2e13597b89ce61ada2354ddb8c97f77ed82d5779d91ebc27a765ae4fdcf58fb078266260f3db2fe7f5fe797c2a81
|
|
14173
14173
|
languageName: node
|
|
14174
14174
|
linkType: hard
|
|
14175
14175
|
|
|
@@ -14832,11 +14832,11 @@ __metadata:
|
|
|
14832
14832
|
linkType: hard
|
|
14833
14833
|
|
|
14834
14834
|
"nanoid@npm:^3.3.7":
|
|
14835
|
-
version: 3.3.
|
|
14836
|
-
resolution: "nanoid@npm:3.3.
|
|
14835
|
+
version: 3.3.8
|
|
14836
|
+
resolution: "nanoid@npm:3.3.8"
|
|
14837
14837
|
bin:
|
|
14838
14838
|
nanoid: bin/nanoid.cjs
|
|
14839
|
-
checksum: 10c0/
|
|
14839
|
+
checksum: 10c0/4b1bb29f6cfebf3be3bc4ad1f1296fb0a10a3043a79f34fbffe75d1621b4318319211cd420549459018ea3592f0d2f159247a6f874911d6d26eaaadda2478120
|
|
14840
14840
|
languageName: node
|
|
14841
14841
|
linkType: hard
|
|
14842
14842
|
|
|
@@ -16834,11 +16834,11 @@ __metadata:
|
|
|
16834
16834
|
linkType: hard
|
|
16835
16835
|
|
|
16836
16836
|
"prosemirror-model@npm:^1.0.0, prosemirror-model@npm:^1.16.1, prosemirror-model@npm:^1.18.1, prosemirror-model@npm:^1.19.0, prosemirror-model@npm:^1.20.0, prosemirror-model@npm:^1.21.0, prosemirror-model@npm:^1.8.1":
|
|
16837
|
-
version: 1.
|
|
16838
|
-
resolution: "prosemirror-model@npm:1.
|
|
16837
|
+
version: 1.24.0
|
|
16838
|
+
resolution: "prosemirror-model@npm:1.24.0"
|
|
16839
16839
|
dependencies:
|
|
16840
16840
|
orderedmap: "npm:^2.0.0"
|
|
16841
|
-
checksum: 10c0/
|
|
16841
|
+
checksum: 10c0/2751faacd509dc64682152c6938fe05ca6aa0384ece13308eff2b9ff182142f36d73fe967d924fee67a5721107fe6ea1c6a97b39d2ee17d0c7e18949030380b6
|
|
16842
16842
|
languageName: node
|
|
16843
16843
|
linkType: hard
|
|
16844
16844
|
|
|
@@ -16910,13 +16910,13 @@ __metadata:
|
|
|
16910
16910
|
linkType: hard
|
|
16911
16911
|
|
|
16912
16912
|
"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":
|
|
16913
|
-
version: 1.
|
|
16914
|
-
resolution: "prosemirror-view@npm:1.
|
|
16913
|
+
version: 1.37.0
|
|
16914
|
+
resolution: "prosemirror-view@npm:1.37.0"
|
|
16915
16915
|
dependencies:
|
|
16916
16916
|
prosemirror-model: "npm:^1.20.0"
|
|
16917
16917
|
prosemirror-state: "npm:^1.0.0"
|
|
16918
16918
|
prosemirror-transform: "npm:^1.1.0"
|
|
16919
|
-
checksum: 10c0/
|
|
16919
|
+
checksum: 10c0/4c98e2740622c79418ea5eabaf2ef6e69b162de28e4a3cb5b6d3796952e899fffc504ea2cc5fec00268dc65a33ceb67662b0fba8e33b3e9421492277c52f79eb
|
|
16920
16920
|
languageName: node
|
|
16921
16921
|
linkType: hard
|
|
16922
16922
|
|
|
@@ -18200,18 +18200,18 @@ __metadata:
|
|
|
18200
18200
|
languageName: node
|
|
18201
18201
|
linkType: hard
|
|
18202
18202
|
|
|
18203
|
-
"reflect.getprototypeof@npm:^1.0.4":
|
|
18204
|
-
version: 1.0.
|
|
18205
|
-
resolution: "reflect.getprototypeof@npm:1.0.
|
|
18203
|
+
"reflect.getprototypeof@npm:^1.0.4, reflect.getprototypeof@npm:^1.0.6":
|
|
18204
|
+
version: 1.0.7
|
|
18205
|
+
resolution: "reflect.getprototypeof@npm:1.0.7"
|
|
18206
18206
|
dependencies:
|
|
18207
18207
|
call-bind: "npm:^1.0.7"
|
|
18208
18208
|
define-properties: "npm:^1.2.1"
|
|
18209
|
-
es-abstract: "npm:^1.23.
|
|
18209
|
+
es-abstract: "npm:^1.23.5"
|
|
18210
18210
|
es-errors: "npm:^1.3.0"
|
|
18211
18211
|
get-intrinsic: "npm:^1.2.4"
|
|
18212
|
-
|
|
18213
|
-
which-builtin-type: "npm:^1.1.
|
|
18214
|
-
checksum: 10c0/
|
|
18212
|
+
gopd: "npm:^1.0.1"
|
|
18213
|
+
which-builtin-type: "npm:^1.1.4"
|
|
18214
|
+
checksum: 10c0/841814f7631b55ee42e198cb14a5c25c0752431ab8f0ad9794c32d46ab9fb0d5ba4939edac1f99a174a21443a1400a72bccbbb9ccd9277e4b4bf6d14aabb31c8
|
|
18215
18215
|
languageName: node
|
|
18216
18216
|
linkType: hard
|
|
18217
18217
|
|
|
@@ -18295,16 +18295,16 @@ __metadata:
|
|
|
18295
18295
|
linkType: hard
|
|
18296
18296
|
|
|
18297
18297
|
"regexpu-core@npm:^6.1.1":
|
|
18298
|
-
version: 6.
|
|
18299
|
-
resolution: "regexpu-core@npm:6.
|
|
18298
|
+
version: 6.2.0
|
|
18299
|
+
resolution: "regexpu-core@npm:6.2.0"
|
|
18300
18300
|
dependencies:
|
|
18301
18301
|
regenerate: "npm:^1.4.2"
|
|
18302
18302
|
regenerate-unicode-properties: "npm:^10.2.0"
|
|
18303
18303
|
regjsgen: "npm:^0.8.0"
|
|
18304
|
-
regjsparser: "npm:^0.
|
|
18304
|
+
regjsparser: "npm:^0.12.0"
|
|
18305
18305
|
unicode-match-property-ecmascript: "npm:^2.0.0"
|
|
18306
18306
|
unicode-match-property-value-ecmascript: "npm:^2.1.0"
|
|
18307
|
-
checksum: 10c0/
|
|
18307
|
+
checksum: 10c0/bbcb83a854bf96ce4005ee4e4618b71c889cda72674ce6092432f0039b47890c2d0dfeb9057d08d440999d9ea03879ebbb7f26ca005ccf94390e55c348859b98
|
|
18308
18308
|
languageName: node
|
|
18309
18309
|
linkType: hard
|
|
18310
18310
|
|
|
@@ -18315,14 +18315,14 @@ __metadata:
|
|
|
18315
18315
|
languageName: node
|
|
18316
18316
|
linkType: hard
|
|
18317
18317
|
|
|
18318
|
-
"regjsparser@npm:^0.
|
|
18319
|
-
version: 0.
|
|
18320
|
-
resolution: "regjsparser@npm:0.
|
|
18318
|
+
"regjsparser@npm:^0.12.0":
|
|
18319
|
+
version: 0.12.0
|
|
18320
|
+
resolution: "regjsparser@npm:0.12.0"
|
|
18321
18321
|
dependencies:
|
|
18322
18322
|
jsesc: "npm:~3.0.2"
|
|
18323
18323
|
bin:
|
|
18324
18324
|
regjsparser: bin/parser
|
|
18325
|
-
checksum: 10c0/
|
|
18325
|
+
checksum: 10c0/99d3e4e10c8c7732eb7aa843b8da2fd8b647fe144d3711b480e4647dc3bff4b1e96691ccf17f3ace24aa866a50b064236177cb25e6e4fbbb18285d99edaed83b
|
|
18326
18326
|
languageName: node
|
|
18327
18327
|
linkType: hard
|
|
18328
18328
|
|
|
@@ -18730,13 +18730,13 @@ __metadata:
|
|
|
18730
18730
|
linkType: hard
|
|
18731
18731
|
|
|
18732
18732
|
"rollup-preserve-directives@npm:^1.1.1":
|
|
18733
|
-
version: 1.1.
|
|
18734
|
-
resolution: "rollup-preserve-directives@npm:1.1.
|
|
18733
|
+
version: 1.1.3
|
|
18734
|
+
resolution: "rollup-preserve-directives@npm:1.1.3"
|
|
18735
18735
|
dependencies:
|
|
18736
18736
|
magic-string: "npm:^0.30.5"
|
|
18737
18737
|
peerDependencies:
|
|
18738
18738
|
rollup: ^2.0.0 || ^3.0.0 || ^4.0.0
|
|
18739
|
-
checksum: 10c0/
|
|
18739
|
+
checksum: 10c0/a3d1ecb0672f5dd15c8350d6c741345dfbc267e33d9f1c805a22af264d58fc7abb407bd57b8fceee7d522bd57948898c2f55361572e6735085e69d842055b680
|
|
18740
18740
|
languageName: node
|
|
18741
18741
|
linkType: hard
|
|
18742
18742
|
|
|
@@ -18755,27 +18755,27 @@ __metadata:
|
|
|
18755
18755
|
linkType: hard
|
|
18756
18756
|
|
|
18757
18757
|
"rollup@npm:^4.13.0":
|
|
18758
|
-
version: 4.27.
|
|
18759
|
-
resolution: "rollup@npm:4.27.
|
|
18760
|
-
dependencies:
|
|
18761
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.27.
|
|
18762
|
-
"@rollup/rollup-android-arm64": "npm:4.27.
|
|
18763
|
-
"@rollup/rollup-darwin-arm64": "npm:4.27.
|
|
18764
|
-
"@rollup/rollup-darwin-x64": "npm:4.27.
|
|
18765
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.27.
|
|
18766
|
-
"@rollup/rollup-freebsd-x64": "npm:4.27.
|
|
18767
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.27.
|
|
18768
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.27.
|
|
18769
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.27.
|
|
18770
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.27.
|
|
18771
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.27.
|
|
18772
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.27.
|
|
18773
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.27.
|
|
18774
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.27.
|
|
18775
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.27.
|
|
18776
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.27.
|
|
18777
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.27.
|
|
18778
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.27.
|
|
18758
|
+
version: 4.27.4
|
|
18759
|
+
resolution: "rollup@npm:4.27.4"
|
|
18760
|
+
dependencies:
|
|
18761
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.27.4"
|
|
18762
|
+
"@rollup/rollup-android-arm64": "npm:4.27.4"
|
|
18763
|
+
"@rollup/rollup-darwin-arm64": "npm:4.27.4"
|
|
18764
|
+
"@rollup/rollup-darwin-x64": "npm:4.27.4"
|
|
18765
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.27.4"
|
|
18766
|
+
"@rollup/rollup-freebsd-x64": "npm:4.27.4"
|
|
18767
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.27.4"
|
|
18768
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.27.4"
|
|
18769
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.27.4"
|
|
18770
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.27.4"
|
|
18771
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.27.4"
|
|
18772
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.27.4"
|
|
18773
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.27.4"
|
|
18774
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.27.4"
|
|
18775
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.27.4"
|
|
18776
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.27.4"
|
|
18777
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.27.4"
|
|
18778
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.27.4"
|
|
18779
18779
|
"@types/estree": "npm:1.0.6"
|
|
18780
18780
|
fsevents: "npm:~2.3.2"
|
|
18781
18781
|
dependenciesMeta:
|
|
@@ -18819,7 +18819,7 @@ __metadata:
|
|
|
18819
18819
|
optional: true
|
|
18820
18820
|
bin:
|
|
18821
18821
|
rollup: dist/bin/rollup
|
|
18822
|
-
checksum: 10c0/
|
|
18822
|
+
checksum: 10c0/1442650cfea5e4617ce14743784f6f578817e31db56f9c8aaf96a82daa9bc20b6ccd66c0d677dbf302a4da3e70664dc3bef11a1aec85e6aff3cecccb945b1d35
|
|
18823
18823
|
languageName: node
|
|
18824
18824
|
linkType: hard
|
|
18825
18825
|
|
|
@@ -20715,8 +20715,8 @@ __metadata:
|
|
|
20715
20715
|
linkType: hard
|
|
20716
20716
|
|
|
20717
20717
|
"typed-array-byte-offset@npm:^1.0.2":
|
|
20718
|
-
version: 1.0.
|
|
20719
|
-
resolution: "typed-array-byte-offset@npm:1.0.
|
|
20718
|
+
version: 1.0.3
|
|
20719
|
+
resolution: "typed-array-byte-offset@npm:1.0.3"
|
|
20720
20720
|
dependencies:
|
|
20721
20721
|
available-typed-arrays: "npm:^1.0.7"
|
|
20722
20722
|
call-bind: "npm:^1.0.7"
|
|
@@ -20724,21 +20724,22 @@ __metadata:
|
|
|
20724
20724
|
gopd: "npm:^1.0.1"
|
|
20725
20725
|
has-proto: "npm:^1.0.3"
|
|
20726
20726
|
is-typed-array: "npm:^1.1.13"
|
|
20727
|
-
|
|
20727
|
+
reflect.getprototypeof: "npm:^1.0.6"
|
|
20728
|
+
checksum: 10c0/5da29585f96671c0521475226d3227000b3e01d1e99208b66bb05b75c7c8f4d0e9cc2e79920f3bfbc792a00102df1daa2608a2753e3f291b671d5a80245bde5b
|
|
20728
20729
|
languageName: node
|
|
20729
20730
|
linkType: hard
|
|
20730
20731
|
|
|
20731
20732
|
"typed-array-length@npm:^1.0.6":
|
|
20732
|
-
version: 1.0.
|
|
20733
|
-
resolution: "typed-array-length@npm:1.0.
|
|
20733
|
+
version: 1.0.7
|
|
20734
|
+
resolution: "typed-array-length@npm:1.0.7"
|
|
20734
20735
|
dependencies:
|
|
20735
20736
|
call-bind: "npm:^1.0.7"
|
|
20736
20737
|
for-each: "npm:^0.3.3"
|
|
20737
20738
|
gopd: "npm:^1.0.1"
|
|
20738
|
-
has-proto: "npm:^1.0.3"
|
|
20739
20739
|
is-typed-array: "npm:^1.1.13"
|
|
20740
20740
|
possible-typed-array-names: "npm:^1.0.0"
|
|
20741
|
-
|
|
20741
|
+
reflect.getprototypeof: "npm:^1.0.6"
|
|
20742
|
+
checksum: 10c0/e38f2ae3779584c138a2d8adfa8ecf749f494af3cd3cdafe4e688ce51418c7d2c5c88df1bd6be2bbea099c3f7cea58c02ca02ed438119e91f162a9de23f61295
|
|
20742
20743
|
languageName: node
|
|
20743
20744
|
linkType: hard
|
|
20744
20745
|
|
|
@@ -20845,10 +20846,10 @@ __metadata:
|
|
|
20845
20846
|
languageName: node
|
|
20846
20847
|
linkType: hard
|
|
20847
20848
|
|
|
20848
|
-
"undici-types@npm:~6.
|
|
20849
|
-
version: 6.
|
|
20850
|
-
resolution: "undici-types@npm:6.
|
|
20851
|
-
checksum: 10c0/
|
|
20849
|
+
"undici-types@npm:~6.20.0":
|
|
20850
|
+
version: 6.20.0
|
|
20851
|
+
resolution: "undici-types@npm:6.20.0"
|
|
20852
|
+
checksum: 10c0/68e659a98898d6a836a9a59e6adf14a5d799707f5ea629433e025ac90d239f75e408e2e5ff086afc3cace26f8b26ee52155293564593fbb4a2f666af57fc59bf
|
|
20852
20853
|
languageName: node
|
|
20853
20854
|
linkType: hard
|
|
20854
20855
|
|
|
@@ -21722,15 +21723,16 @@ __metadata:
|
|
|
21722
21723
|
languageName: node
|
|
21723
21724
|
linkType: hard
|
|
21724
21725
|
|
|
21725
|
-
"which-builtin-type@npm:^1.1.
|
|
21726
|
-
version: 1.
|
|
21727
|
-
resolution: "which-builtin-type@npm:1.
|
|
21726
|
+
"which-builtin-type@npm:^1.1.4":
|
|
21727
|
+
version: 1.2.0
|
|
21728
|
+
resolution: "which-builtin-type@npm:1.2.0"
|
|
21728
21729
|
dependencies:
|
|
21730
|
+
call-bind: "npm:^1.0.7"
|
|
21729
21731
|
function.prototype.name: "npm:^1.1.6"
|
|
21730
21732
|
has-tostringtag: "npm:^1.0.2"
|
|
21731
21733
|
is-async-function: "npm:^2.0.0"
|
|
21732
21734
|
is-date-object: "npm:^1.0.5"
|
|
21733
|
-
is-finalizationregistry: "npm:^1.0
|
|
21735
|
+
is-finalizationregistry: "npm:^1.1.0"
|
|
21734
21736
|
is-generator-function: "npm:^1.0.10"
|
|
21735
21737
|
is-regex: "npm:^1.1.4"
|
|
21736
21738
|
is-weakref: "npm:^1.0.2"
|
|
@@ -21738,7 +21740,7 @@ __metadata:
|
|
|
21738
21740
|
which-boxed-primitive: "npm:^1.0.2"
|
|
21739
21741
|
which-collection: "npm:^1.0.2"
|
|
21740
21742
|
which-typed-array: "npm:^1.1.15"
|
|
21741
|
-
checksum: 10c0/
|
|
21743
|
+
checksum: 10c0/7cd4a8ccfa6a3cb7c2296c716e7266b9f31a66f3e131fe7b185232c16d3ad21442046ec1798c4ec1e19dce7eb99c7751377192e5e734dc07042d14ec0f09b332
|
|
21742
21744
|
languageName: node
|
|
21743
21745
|
linkType: hard
|
|
21744
21746
|
|
|
@@ -21755,15 +21757,15 @@ __metadata:
|
|
|
21755
21757
|
linkType: hard
|
|
21756
21758
|
|
|
21757
21759
|
"which-typed-array@npm:^1.1.14, which-typed-array@npm:^1.1.15":
|
|
21758
|
-
version: 1.1.
|
|
21759
|
-
resolution: "which-typed-array@npm:1.1.
|
|
21760
|
+
version: 1.1.16
|
|
21761
|
+
resolution: "which-typed-array@npm:1.1.16"
|
|
21760
21762
|
dependencies:
|
|
21761
21763
|
available-typed-arrays: "npm:^1.0.7"
|
|
21762
21764
|
call-bind: "npm:^1.0.7"
|
|
21763
21765
|
for-each: "npm:^0.3.3"
|
|
21764
21766
|
gopd: "npm:^1.0.1"
|
|
21765
21767
|
has-tostringtag: "npm:^1.0.2"
|
|
21766
|
-
checksum: 10c0/
|
|
21768
|
+
checksum: 10c0/a9075293200db4fbce7c24d52731843542c5a19edfc66e31aa2cbefa788b5caa7ef05008f6e60d2c38d8198add6b92d0ddc2937918c5c308be398b1ebd8721af
|
|
21767
21769
|
languageName: node
|
|
21768
21770
|
linkType: hard
|
|
21769
21771
|
|
|
@@ -21938,11 +21940,11 @@ __metadata:
|
|
|
21938
21940
|
linkType: hard
|
|
21939
21941
|
|
|
21940
21942
|
"yaml@npm:^2.3.4":
|
|
21941
|
-
version: 2.6.
|
|
21942
|
-
resolution: "yaml@npm:2.6.
|
|
21943
|
+
version: 2.6.1
|
|
21944
|
+
resolution: "yaml@npm:2.6.1"
|
|
21943
21945
|
bin:
|
|
21944
21946
|
yaml: bin.mjs
|
|
21945
|
-
checksum: 10c0/
|
|
21947
|
+
checksum: 10c0/aebf07f61c72b38c74d2b60c3a3ccf89ee4da45bcd94b2bfb7899ba07a5257625a7c9f717c65a6fc511563d48001e01deb1d9e55f0133f3e2edf86039c8c1be7
|
|
21946
21948
|
languageName: node
|
|
21947
21949
|
linkType: hard
|
|
21948
21950
|
|