@licklist/design 0.74.1-dev.1 → 0.74.1-dev.2
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.
|
@@ -11,6 +11,7 @@ export interface EventCardProps extends HasPermissionProp {
|
|
|
11
11
|
onEdit: () => void;
|
|
12
12
|
onCopy: () => void;
|
|
13
13
|
onRemove: () => void;
|
|
14
|
+
onOpenQrCode: () => void;
|
|
14
15
|
eventStatistic?: EventStatistic | null;
|
|
15
16
|
onStatistic: () => void;
|
|
16
17
|
titleId?: string;
|
|
@@ -18,5 +19,5 @@ export interface EventCardProps extends HasPermissionProp {
|
|
|
18
19
|
productSetName?: string;
|
|
19
20
|
eventID?: string;
|
|
20
21
|
}
|
|
21
|
-
export declare function EventCard({ name, description, date, imageUrl, sales, onPreview, onEdit, onCopy, onRemove, hasPermission, productSetName, onStatistic, eventStatistic, titleId, descriptionId, eventID, }: EventCardProps): import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export declare function EventCard({ name, description, date, imageUrl, sales, onPreview, onEdit, onCopy, onRemove, onOpenQrCode, hasPermission, productSetName, onStatistic, eventStatistic, titleId, descriptionId, eventID, }: EventCardProps): import("react/jsx-runtime").JSX.Element;
|
|
22
23
|
//# sourceMappingURL=EventCard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EventCard.d.ts","sourceRoot":"","sources":["../../../src/events/event-card/EventCard.tsx"],"names":[],"mappings":"AAYA,OAAO,EAAE,iBAAiB,EAAE,MAAM,oDAAoD,CAAA;AACtF,OAAO,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAA;
|
|
1
|
+
{"version":3,"file":"EventCard.d.ts","sourceRoot":"","sources":["../../../src/events/event-card/EventCard.tsx"],"names":[],"mappings":"AAYA,OAAO,EAAE,iBAAiB,EAAE,MAAM,oDAAoD,CAAA;AACtF,OAAO,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAA;AASjG,OAAO,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAA;AAS3C,MAAM,WAAW,cAAe,SAAQ,iBAAiB;IACvD,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,EAAE,MAAM,CAAA;IACnB,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACxB,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;IACd,SAAS,EAAE,MAAM,IAAI,CAAA;IACrB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,QAAQ,EAAE,MAAM,IAAI,CAAA;IACpB,YAAY,EAAE,MAAM,IAAI,CAAA;IACxB,cAAc,CAAC,EAAE,cAAc,GAAG,IAAI,CAAA;IACtC,WAAW,EAAE,MAAM,IAAI,CAAA;IACvB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB;AAED,wBAAgB,SAAS,CAAC,EACxB,IAAI,EACJ,WAAW,EACX,IAAI,EACJ,QAAQ,EACR,KAAK,EACL,SAAS,EACT,MAAM,EACN,MAAM,EACN,QAAQ,EACR,YAAY,EACZ,aAAoB,EACpB,cAAc,EACd,WAAW,EACX,cAAc,EACd,OAAO,EACP,aAAa,EACb,OAAO,GACR,EAAE,cAAc,2CAiKhB"}
|
|
@@ -5,7 +5,7 @@ import { useIntl } from 'react-intl';
|
|
|
5
5
|
import clsx from 'clsx';
|
|
6
6
|
import { useTranslation } from 'react-i18next';
|
|
7
7
|
import * as Config from '@licklist/core/dist/Config';
|
|
8
|
-
import { FaEye, FaExternalLinkAlt, FaEdit, FaCopy, FaTrashAlt } from 'react-icons/fa';
|
|
8
|
+
import { FaEye, FaQrcode, FaExternalLinkAlt, FaEdit, FaCopy, FaTrashAlt } from 'react-icons/fa';
|
|
9
9
|
import { TipTapEditor } from '../../tiptap-editor/TipTapEditor.js';
|
|
10
10
|
import { getStatisticInfo, formatContent, EVENT_DESCRIPTION_SIZE } from './utils.js';
|
|
11
11
|
import { ReactComponent as SvgChartBar } from '../../assets/dashboard/chartBar.svg.js';
|
|
@@ -38,7 +38,7 @@ function _object_without_properties_loose(source, excluded) {
|
|
|
38
38
|
return target;
|
|
39
39
|
}
|
|
40
40
|
function EventCard(param) {
|
|
41
|
-
var name = param.name, description = param.description, date = param.date, imageUrl = param.imageUrl, sales = param.sales, onPreview = param.onPreview, onEdit = param.onEdit, onCopy = param.onCopy, onRemove = param.onRemove, _param_hasPermission = param.hasPermission, hasPermission = _param_hasPermission === void 0 ? true : _param_hasPermission, productSetName = param.productSetName, onStatistic = param.onStatistic, eventStatistic = param.eventStatistic, titleId = param.titleId, descriptionId = param.descriptionId, eventID = param.eventID;
|
|
41
|
+
var name = param.name, description = param.description, date = param.date, imageUrl = param.imageUrl, sales = param.sales, onPreview = param.onPreview, onEdit = param.onEdit, onCopy = param.onCopy, onRemove = param.onRemove, onOpenQrCode = param.onOpenQrCode, _param_hasPermission = param.hasPermission, hasPermission = _param_hasPermission === void 0 ? true : _param_hasPermission, productSetName = param.productSetName, onStatistic = param.onStatistic, eventStatistic = param.eventStatistic, titleId = param.titleId, descriptionId = param.descriptionId, eventID = param.eventID;
|
|
42
42
|
var t = useTranslation('Design').t;
|
|
43
43
|
var _useIntl = useIntl(), formatNumber = _useIntl.formatNumber, formatDate = _useIntl.formatDate;
|
|
44
44
|
var _getStatisticInfo = getStatisticInfo(eventStatistic, date), totalViews = _getStatisticInfo.totalViews, statistics = _object_without_properties(_getStatisticInfo, [
|
|
@@ -204,6 +204,12 @@ function EventCard(param) {
|
|
|
204
204
|
}),
|
|
205
205
|
/*#__PURE__*/ jsxs("div", {
|
|
206
206
|
children: [
|
|
207
|
+
/*#__PURE__*/ jsx("button", {
|
|
208
|
+
type: "button",
|
|
209
|
+
className: "event-card-link-button",
|
|
210
|
+
onClick: onOpenQrCode,
|
|
211
|
+
children: /*#__PURE__*/ jsx(FaQrcode, {})
|
|
212
|
+
}),
|
|
207
213
|
/*#__PURE__*/ jsx("button", {
|
|
208
214
|
type: "button",
|
|
209
215
|
className: "event-card-link-button",
|
package/package.json
CHANGED
|
@@ -18,6 +18,7 @@ import {
|
|
|
18
18
|
FaEdit,
|
|
19
19
|
FaCopy,
|
|
20
20
|
FaTrashAlt,
|
|
21
|
+
FaQrcode,
|
|
21
22
|
} from 'react-icons/fa'
|
|
22
23
|
import { Sale } from '../../types/bookings'
|
|
23
24
|
import { TipTapEditor } from '../../tiptap-editor/TipTapEditor'
|
|
@@ -38,6 +39,7 @@ export interface EventCardProps extends HasPermissionProp {
|
|
|
38
39
|
onEdit: () => void
|
|
39
40
|
onCopy: () => void
|
|
40
41
|
onRemove: () => void
|
|
42
|
+
onOpenQrCode: () => void
|
|
41
43
|
eventStatistic?: EventStatistic | null
|
|
42
44
|
onStatistic: () => void
|
|
43
45
|
titleId?: string
|
|
@@ -56,6 +58,7 @@ export function EventCard({
|
|
|
56
58
|
onEdit,
|
|
57
59
|
onCopy,
|
|
58
60
|
onRemove,
|
|
61
|
+
onOpenQrCode,
|
|
59
62
|
hasPermission = true,
|
|
60
63
|
productSetName,
|
|
61
64
|
onStatistic,
|
|
@@ -97,9 +100,9 @@ export function EventCard({
|
|
|
97
100
|
<Card.Body>
|
|
98
101
|
<Card.Title id={titleId}>
|
|
99
102
|
{eventID ? (
|
|
100
|
-
<div className=
|
|
103
|
+
<div className='d-flex'>
|
|
101
104
|
{name}
|
|
102
|
-
<p className=
|
|
105
|
+
<p className='text-secondary ml-2'>{`(ID:${eventID})`}</p>
|
|
103
106
|
</div>
|
|
104
107
|
) : (
|
|
105
108
|
name
|
|
@@ -120,9 +123,9 @@ export function EventCard({
|
|
|
120
123
|
{t(key)}:{' '}
|
|
121
124
|
{key === 'totalAmount'
|
|
122
125
|
? formatNumber(statistics[key], {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
+
style: 'currency',
|
|
127
|
+
currency: Config.Currency.GBP,
|
|
128
|
+
})
|
|
126
129
|
: statistics[key]}
|
|
127
130
|
</span>
|
|
128
131
|
</div>
|
|
@@ -180,6 +183,13 @@ export function EventCard({
|
|
|
180
183
|
</div>
|
|
181
184
|
</div>
|
|
182
185
|
<div>
|
|
186
|
+
<button
|
|
187
|
+
type='button'
|
|
188
|
+
className='event-card-link-button'
|
|
189
|
+
onClick={onOpenQrCode}
|
|
190
|
+
>
|
|
191
|
+
<FaQrcode />
|
|
192
|
+
</button>
|
|
183
193
|
<button
|
|
184
194
|
type='button'
|
|
185
195
|
className='event-card-link-button'
|
package/yarn.lock
CHANGED
|
@@ -51,10 +51,10 @@ __metadata:
|
|
|
51
51
|
languageName: node
|
|
52
52
|
linkType: hard
|
|
53
53
|
|
|
54
|
-
"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.27.
|
|
55
|
-
version: 7.27.
|
|
56
|
-
resolution: "@babel/compat-data@npm:7.27.
|
|
57
|
-
checksum: 10c0/
|
|
54
|
+
"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.27.2":
|
|
55
|
+
version: 7.27.2
|
|
56
|
+
resolution: "@babel/compat-data@npm:7.27.2"
|
|
57
|
+
checksum: 10c0/077c9e01af3b90decee384a6a44dcf353898e980cee22ec7941f9074655dbbe97ec317345536cdc7ef7391521e1497930c522a3816af473076dd524be7fccd32
|
|
58
58
|
languageName: node
|
|
59
59
|
linkType: hard
|
|
60
60
|
|
|
@@ -127,16 +127,16 @@ __metadata:
|
|
|
127
127
|
languageName: node
|
|
128
128
|
linkType: hard
|
|
129
129
|
|
|
130
|
-
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.27.1":
|
|
131
|
-
version: 7.27.
|
|
132
|
-
resolution: "@babel/helper-compilation-targets@npm:7.27.
|
|
130
|
+
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.27.1, @babel/helper-compilation-targets@npm:^7.27.2":
|
|
131
|
+
version: 7.27.2
|
|
132
|
+
resolution: "@babel/helper-compilation-targets@npm:7.27.2"
|
|
133
133
|
dependencies:
|
|
134
|
-
"@babel/compat-data": "npm:^7.27.
|
|
134
|
+
"@babel/compat-data": "npm:^7.27.2"
|
|
135
135
|
"@babel/helper-validator-option": "npm:^7.27.1"
|
|
136
136
|
browserslist: "npm:^4.24.0"
|
|
137
137
|
lru-cache: "npm:^5.1.1"
|
|
138
138
|
semver: "npm:^6.3.1"
|
|
139
|
-
checksum: 10c0/
|
|
139
|
+
checksum: 10c0/f338fa00dcfea931804a7c55d1a1c81b6f0a09787e528ec580d5c21b3ecb3913f6cb0f361368973ce953b824d910d3ac3e8a8ee15192710d3563826447193ad1
|
|
140
140
|
languageName: node
|
|
141
141
|
linkType: hard
|
|
142
142
|
|
|
@@ -349,14 +349,14 @@ __metadata:
|
|
|
349
349
|
languageName: node
|
|
350
350
|
linkType: hard
|
|
351
351
|
|
|
352
|
-
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.11, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.27.1":
|
|
353
|
-
version: 7.27.
|
|
354
|
-
resolution: "@babel/parser@npm:7.27.
|
|
352
|
+
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.11, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.27.1, @babel/parser@npm:^7.27.2":
|
|
353
|
+
version: 7.27.2
|
|
354
|
+
resolution: "@babel/parser@npm:7.27.2"
|
|
355
355
|
dependencies:
|
|
356
356
|
"@babel/types": "npm:^7.27.1"
|
|
357
357
|
bin:
|
|
358
358
|
parser: ./bin/babel-parser.js
|
|
359
|
-
checksum: 10c0/
|
|
359
|
+
checksum: 10c0/3c06692768885c2f58207fc8c2cbdb4a44df46b7d93135a083f6eaa49310f7ced490ce76043a2a7606cdcc13f27e3d835e141b692f2f6337a2e7f43c1dbb04b4
|
|
360
360
|
languageName: node
|
|
361
361
|
linkType: hard
|
|
362
362
|
|
|
@@ -1028,16 +1028,17 @@ __metadata:
|
|
|
1028
1028
|
languageName: node
|
|
1029
1029
|
linkType: hard
|
|
1030
1030
|
|
|
1031
|
-
"@babel/plugin-transform-object-rest-spread@npm:^7.27.
|
|
1032
|
-
version: 7.27.
|
|
1033
|
-
resolution: "@babel/plugin-transform-object-rest-spread@npm:7.27.
|
|
1031
|
+
"@babel/plugin-transform-object-rest-spread@npm:^7.27.2":
|
|
1032
|
+
version: 7.27.2
|
|
1033
|
+
resolution: "@babel/plugin-transform-object-rest-spread@npm:7.27.2"
|
|
1034
1034
|
dependencies:
|
|
1035
|
-
"@babel/helper-compilation-targets": "npm:^7.27.
|
|
1035
|
+
"@babel/helper-compilation-targets": "npm:^7.27.2"
|
|
1036
1036
|
"@babel/helper-plugin-utils": "npm:^7.27.1"
|
|
1037
|
+
"@babel/plugin-transform-destructuring": "npm:^7.27.1"
|
|
1037
1038
|
"@babel/plugin-transform-parameters": "npm:^7.27.1"
|
|
1038
1039
|
peerDependencies:
|
|
1039
1040
|
"@babel/core": ^7.0.0-0
|
|
1040
|
-
checksum: 10c0/
|
|
1041
|
+
checksum: 10c0/5e255b262dd65c8700078d9f6ed87bd45f951a905dda6b3414be28d7b2781b18e6b812e9d71421e61360c9cf51e1e619c1d48348593bb7399496f61f5f221446
|
|
1041
1042
|
languageName: node
|
|
1042
1043
|
linkType: hard
|
|
1043
1044
|
|
|
@@ -1358,11 +1359,11 @@ __metadata:
|
|
|
1358
1359
|
linkType: hard
|
|
1359
1360
|
|
|
1360
1361
|
"@babel/preset-env@npm:^7.12.11, @babel/preset-env@npm:^7.20.2":
|
|
1361
|
-
version: 7.27.
|
|
1362
|
-
resolution: "@babel/preset-env@npm:7.27.
|
|
1362
|
+
version: 7.27.2
|
|
1363
|
+
resolution: "@babel/preset-env@npm:7.27.2"
|
|
1363
1364
|
dependencies:
|
|
1364
|
-
"@babel/compat-data": "npm:^7.27.
|
|
1365
|
-
"@babel/helper-compilation-targets": "npm:^7.27.
|
|
1365
|
+
"@babel/compat-data": "npm:^7.27.2"
|
|
1366
|
+
"@babel/helper-compilation-targets": "npm:^7.27.2"
|
|
1366
1367
|
"@babel/helper-plugin-utils": "npm:^7.27.1"
|
|
1367
1368
|
"@babel/helper-validator-option": "npm:^7.27.1"
|
|
1368
1369
|
"@babel/plugin-bugfix-firefox-class-in-computed-class-key": "npm:^7.27.1"
|
|
@@ -1404,7 +1405,7 @@ __metadata:
|
|
|
1404
1405
|
"@babel/plugin-transform-new-target": "npm:^7.27.1"
|
|
1405
1406
|
"@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.27.1"
|
|
1406
1407
|
"@babel/plugin-transform-numeric-separator": "npm:^7.27.1"
|
|
1407
|
-
"@babel/plugin-transform-object-rest-spread": "npm:^7.27.
|
|
1408
|
+
"@babel/plugin-transform-object-rest-spread": "npm:^7.27.2"
|
|
1408
1409
|
"@babel/plugin-transform-object-super": "npm:^7.27.1"
|
|
1409
1410
|
"@babel/plugin-transform-optional-catch-binding": "npm:^7.27.1"
|
|
1410
1411
|
"@babel/plugin-transform-optional-chaining": "npm:^7.27.1"
|
|
@@ -1432,7 +1433,7 @@ __metadata:
|
|
|
1432
1433
|
semver: "npm:^6.3.1"
|
|
1433
1434
|
peerDependencies:
|
|
1434
1435
|
"@babel/core": ^7.0.0-0
|
|
1435
|
-
checksum: 10c0/
|
|
1436
|
+
checksum: 10c0/fd7ec310832a9ff26ed8d56bc0832cdbdb3a188e022050b74790796650649fb8373568af05b320b58b3ff922507979bad50ff95a4d504ab0081134480103504e
|
|
1436
1437
|
languageName: node
|
|
1437
1438
|
linkType: hard
|
|
1438
1439
|
|
|
@@ -1525,13 +1526,13 @@ __metadata:
|
|
|
1525
1526
|
linkType: hard
|
|
1526
1527
|
|
|
1527
1528
|
"@babel/template@npm:^7.12.7, @babel/template@npm:^7.27.1":
|
|
1528
|
-
version: 7.27.
|
|
1529
|
-
resolution: "@babel/template@npm:7.27.
|
|
1529
|
+
version: 7.27.2
|
|
1530
|
+
resolution: "@babel/template@npm:7.27.2"
|
|
1530
1531
|
dependencies:
|
|
1531
1532
|
"@babel/code-frame": "npm:^7.27.1"
|
|
1532
|
-
"@babel/parser": "npm:^7.27.
|
|
1533
|
+
"@babel/parser": "npm:^7.27.2"
|
|
1533
1534
|
"@babel/types": "npm:^7.27.1"
|
|
1534
|
-
checksum: 10c0/
|
|
1535
|
+
checksum: 10c0/ed9e9022651e463cc5f2cc21942f0e74544f1754d231add6348ff1b472985a3b3502041c0be62dc99ed2d12cfae0c51394bf827452b98a2f8769c03b87aadc81
|
|
1535
1536
|
languageName: node
|
|
1536
1537
|
linkType: hard
|
|
1537
1538
|
|
|
@@ -5695,11 +5696,11 @@ __metadata:
|
|
|
5695
5696
|
linkType: hard
|
|
5696
5697
|
|
|
5697
5698
|
"@types/node@npm:*":
|
|
5698
|
-
version: 22.15.
|
|
5699
|
-
resolution: "@types/node@npm:22.15.
|
|
5699
|
+
version: 22.15.14
|
|
5700
|
+
resolution: "@types/node@npm:22.15.14"
|
|
5700
5701
|
dependencies:
|
|
5701
5702
|
undici-types: "npm:~6.21.0"
|
|
5702
|
-
checksum: 10c0/
|
|
5703
|
+
checksum: 10c0/a977c1518d53e3b85e8c56fe619d6eca4bc79224d24e7068f55589b3b4a60b8390c859290068b9a00d8a07bee809535afaa952fc31544dff8f8de8975d94c531
|
|
5703
5704
|
languageName: node
|
|
5704
5705
|
linkType: hard
|
|
5705
5706
|
|
|
@@ -7805,7 +7806,7 @@ __metadata:
|
|
|
7805
7806
|
languageName: node
|
|
7806
7807
|
linkType: hard
|
|
7807
7808
|
|
|
7808
|
-
"browserslist@npm:^4.0.0, browserslist@npm:^4.12.0, browserslist@npm:^4.23.3, browserslist@npm:^4.24.0, browserslist@npm:^4.24.4":
|
|
7809
|
+
"browserslist@npm:^4.0.0, browserslist@npm:^4.12.0, browserslist@npm:^4.23.3, browserslist@npm:^4.24.0, browserslist@npm:^4.24.4, browserslist@npm:^4.24.5":
|
|
7809
7810
|
version: 4.24.5
|
|
7810
7811
|
resolution: "browserslist@npm:4.24.5"
|
|
7811
7812
|
dependencies:
|
|
@@ -9092,51 +9093,51 @@ __metadata:
|
|
|
9092
9093
|
linkType: hard
|
|
9093
9094
|
|
|
9094
9095
|
"cssnano-preset-default@npm:^7.0.6":
|
|
9095
|
-
version: 7.0.
|
|
9096
|
-
resolution: "cssnano-preset-default@npm:7.0.
|
|
9096
|
+
version: 7.0.7
|
|
9097
|
+
resolution: "cssnano-preset-default@npm:7.0.7"
|
|
9097
9098
|
dependencies:
|
|
9098
|
-
browserslist: "npm:^4.
|
|
9099
|
+
browserslist: "npm:^4.24.5"
|
|
9099
9100
|
css-declaration-sorter: "npm:^7.2.0"
|
|
9100
|
-
cssnano-utils: "npm:^5.0.
|
|
9101
|
-
postcss-calc: "npm:^10.
|
|
9102
|
-
postcss-colormin: "npm:^7.0.
|
|
9103
|
-
postcss-convert-values: "npm:^7.0.
|
|
9104
|
-
postcss-discard-comments: "npm:^7.0.
|
|
9105
|
-
postcss-discard-duplicates: "npm:^7.0.
|
|
9106
|
-
postcss-discard-empty: "npm:^7.0.
|
|
9107
|
-
postcss-discard-overridden: "npm:^7.0.
|
|
9108
|
-
postcss-merge-longhand: "npm:^7.0.
|
|
9109
|
-
postcss-merge-rules: "npm:^7.0.
|
|
9110
|
-
postcss-minify-font-values: "npm:^7.0.
|
|
9111
|
-
postcss-minify-gradients: "npm:^7.0.
|
|
9112
|
-
postcss-minify-params: "npm:^7.0.
|
|
9113
|
-
postcss-minify-selectors: "npm:^7.0.
|
|
9114
|
-
postcss-normalize-charset: "npm:^7.0.
|
|
9115
|
-
postcss-normalize-display-values: "npm:^7.0.
|
|
9116
|
-
postcss-normalize-positions: "npm:^7.0.
|
|
9117
|
-
postcss-normalize-repeat-style: "npm:^7.0.
|
|
9118
|
-
postcss-normalize-string: "npm:^7.0.
|
|
9119
|
-
postcss-normalize-timing-functions: "npm:^7.0.
|
|
9120
|
-
postcss-normalize-unicode: "npm:^7.0.
|
|
9121
|
-
postcss-normalize-url: "npm:^7.0.
|
|
9122
|
-
postcss-normalize-whitespace: "npm:^7.0.
|
|
9123
|
-
postcss-ordered-values: "npm:^7.0.
|
|
9124
|
-
postcss-reduce-initial: "npm:^7.0.
|
|
9125
|
-
postcss-reduce-transforms: "npm:^7.0.
|
|
9126
|
-
postcss-svgo: "npm:^7.0.
|
|
9127
|
-
postcss-unique-selectors: "npm:^7.0.
|
|
9128
|
-
peerDependencies:
|
|
9129
|
-
postcss: ^8.4.
|
|
9130
|
-
checksum: 10c0/
|
|
9131
|
-
languageName: node
|
|
9132
|
-
linkType: hard
|
|
9133
|
-
|
|
9134
|
-
"cssnano-utils@npm:^5.0.
|
|
9135
|
-
version: 5.0.
|
|
9136
|
-
resolution: "cssnano-utils@npm:5.0.
|
|
9101
|
+
cssnano-utils: "npm:^5.0.1"
|
|
9102
|
+
postcss-calc: "npm:^10.1.1"
|
|
9103
|
+
postcss-colormin: "npm:^7.0.3"
|
|
9104
|
+
postcss-convert-values: "npm:^7.0.5"
|
|
9105
|
+
postcss-discard-comments: "npm:^7.0.4"
|
|
9106
|
+
postcss-discard-duplicates: "npm:^7.0.2"
|
|
9107
|
+
postcss-discard-empty: "npm:^7.0.1"
|
|
9108
|
+
postcss-discard-overridden: "npm:^7.0.1"
|
|
9109
|
+
postcss-merge-longhand: "npm:^7.0.5"
|
|
9110
|
+
postcss-merge-rules: "npm:^7.0.5"
|
|
9111
|
+
postcss-minify-font-values: "npm:^7.0.1"
|
|
9112
|
+
postcss-minify-gradients: "npm:^7.0.1"
|
|
9113
|
+
postcss-minify-params: "npm:^7.0.3"
|
|
9114
|
+
postcss-minify-selectors: "npm:^7.0.5"
|
|
9115
|
+
postcss-normalize-charset: "npm:^7.0.1"
|
|
9116
|
+
postcss-normalize-display-values: "npm:^7.0.1"
|
|
9117
|
+
postcss-normalize-positions: "npm:^7.0.1"
|
|
9118
|
+
postcss-normalize-repeat-style: "npm:^7.0.1"
|
|
9119
|
+
postcss-normalize-string: "npm:^7.0.1"
|
|
9120
|
+
postcss-normalize-timing-functions: "npm:^7.0.1"
|
|
9121
|
+
postcss-normalize-unicode: "npm:^7.0.3"
|
|
9122
|
+
postcss-normalize-url: "npm:^7.0.1"
|
|
9123
|
+
postcss-normalize-whitespace: "npm:^7.0.1"
|
|
9124
|
+
postcss-ordered-values: "npm:^7.0.2"
|
|
9125
|
+
postcss-reduce-initial: "npm:^7.0.3"
|
|
9126
|
+
postcss-reduce-transforms: "npm:^7.0.1"
|
|
9127
|
+
postcss-svgo: "npm:^7.0.2"
|
|
9128
|
+
postcss-unique-selectors: "npm:^7.0.4"
|
|
9129
|
+
peerDependencies:
|
|
9130
|
+
postcss: ^8.4.32
|
|
9131
|
+
checksum: 10c0/4c200f1a3a876242be6f6c9d93da1384d61f16ef0f5b36d474600a3dfa323aab7aa04877a96973947b80cfc0781bd6d949216cee6b790a1d71c5cc8fc2ad98a7
|
|
9132
|
+
languageName: node
|
|
9133
|
+
linkType: hard
|
|
9134
|
+
|
|
9135
|
+
"cssnano-utils@npm:^5.0.1":
|
|
9136
|
+
version: 5.0.1
|
|
9137
|
+
resolution: "cssnano-utils@npm:5.0.1"
|
|
9137
9138
|
peerDependencies:
|
|
9138
|
-
postcss: ^8.4.
|
|
9139
|
-
checksum: 10c0/
|
|
9139
|
+
postcss: ^8.4.32
|
|
9140
|
+
checksum: 10c0/e416e58587ccec4d904093a2834c66c44651578a58960019884add376d4f151c5b809674108088140dd57b0787cb7132a083d40ae33a72bf986d03c4b7b7c5f4
|
|
9140
9141
|
languageName: node
|
|
9141
9142
|
linkType: hard
|
|
9142
9143
|
|
|
@@ -16065,7 +16066,7 @@ __metadata:
|
|
|
16065
16066
|
languageName: node
|
|
16066
16067
|
linkType: hard
|
|
16067
16068
|
|
|
16068
|
-
"postcss-calc@npm:^10.
|
|
16069
|
+
"postcss-calc@npm:^10.1.1":
|
|
16069
16070
|
version: 10.1.1
|
|
16070
16071
|
resolution: "postcss-calc@npm:10.1.1"
|
|
16071
16072
|
dependencies:
|
|
@@ -16077,67 +16078,67 @@ __metadata:
|
|
|
16077
16078
|
languageName: node
|
|
16078
16079
|
linkType: hard
|
|
16079
16080
|
|
|
16080
|
-
"postcss-colormin@npm:^7.0.
|
|
16081
|
-
version: 7.0.
|
|
16082
|
-
resolution: "postcss-colormin@npm:7.0.
|
|
16081
|
+
"postcss-colormin@npm:^7.0.3":
|
|
16082
|
+
version: 7.0.3
|
|
16083
|
+
resolution: "postcss-colormin@npm:7.0.3"
|
|
16083
16084
|
dependencies:
|
|
16084
|
-
browserslist: "npm:^4.
|
|
16085
|
+
browserslist: "npm:^4.24.5"
|
|
16085
16086
|
caniuse-api: "npm:^3.0.0"
|
|
16086
16087
|
colord: "npm:^2.9.3"
|
|
16087
16088
|
postcss-value-parser: "npm:^4.2.0"
|
|
16088
16089
|
peerDependencies:
|
|
16089
|
-
postcss: ^8.4.
|
|
16090
|
-
checksum: 10c0/
|
|
16090
|
+
postcss: ^8.4.32
|
|
16091
|
+
checksum: 10c0/49d0a7d523f74b455b4e2680cb2e31974871354d9037d6e8dfac00e9ebdced6585533208f43d006946a705ca4e683ba007bcd23fb37df6005c5db37ead0c66a9
|
|
16091
16092
|
languageName: node
|
|
16092
16093
|
linkType: hard
|
|
16093
16094
|
|
|
16094
|
-
"postcss-convert-values@npm:^7.0.
|
|
16095
|
-
version: 7.0.
|
|
16096
|
-
resolution: "postcss-convert-values@npm:7.0.
|
|
16095
|
+
"postcss-convert-values@npm:^7.0.5":
|
|
16096
|
+
version: 7.0.5
|
|
16097
|
+
resolution: "postcss-convert-values@npm:7.0.5"
|
|
16097
16098
|
dependencies:
|
|
16098
|
-
browserslist: "npm:^4.
|
|
16099
|
+
browserslist: "npm:^4.24.5"
|
|
16099
16100
|
postcss-value-parser: "npm:^4.2.0"
|
|
16100
16101
|
peerDependencies:
|
|
16101
|
-
postcss: ^8.4.
|
|
16102
|
-
checksum: 10c0/
|
|
16102
|
+
postcss: ^8.4.32
|
|
16103
|
+
checksum: 10c0/c9ba3ce8a1d3cae775187c57c9234c03135b4abb6d2eb7f094ca59d9ae7dbcb52ed3f8771d35040b60d522bff40caa72d329914bead63577b66e8d4be589a6a7
|
|
16103
16104
|
languageName: node
|
|
16104
16105
|
linkType: hard
|
|
16105
16106
|
|
|
16106
|
-
"postcss-discard-comments@npm:^7.0.
|
|
16107
|
-
version: 7.0.
|
|
16108
|
-
resolution: "postcss-discard-comments@npm:7.0.
|
|
16107
|
+
"postcss-discard-comments@npm:^7.0.4":
|
|
16108
|
+
version: 7.0.4
|
|
16109
|
+
resolution: "postcss-discard-comments@npm:7.0.4"
|
|
16109
16110
|
dependencies:
|
|
16110
|
-
postcss-selector-parser: "npm:^
|
|
16111
|
+
postcss-selector-parser: "npm:^7.1.0"
|
|
16111
16112
|
peerDependencies:
|
|
16112
|
-
postcss: ^8.4.
|
|
16113
|
-
checksum: 10c0/
|
|
16113
|
+
postcss: ^8.4.32
|
|
16114
|
+
checksum: 10c0/30081465fec33baa8507782d25cd96559cb3487c023d331a517cf94027d065c26227962a40b1806885400d76d3d27d27f9e7b14807866c7d9bb63c3030b5312a
|
|
16114
16115
|
languageName: node
|
|
16115
16116
|
linkType: hard
|
|
16116
16117
|
|
|
16117
|
-
"postcss-discard-duplicates@npm:^7.0.
|
|
16118
|
-
version: 7.0.
|
|
16119
|
-
resolution: "postcss-discard-duplicates@npm:7.0.
|
|
16118
|
+
"postcss-discard-duplicates@npm:^7.0.2":
|
|
16119
|
+
version: 7.0.2
|
|
16120
|
+
resolution: "postcss-discard-duplicates@npm:7.0.2"
|
|
16120
16121
|
peerDependencies:
|
|
16121
|
-
postcss: ^8.4.
|
|
16122
|
-
checksum: 10c0/
|
|
16122
|
+
postcss: ^8.4.32
|
|
16123
|
+
checksum: 10c0/83035b1158ee0f0c8c6441c9f0fcd3c83027b19c4b1d19802d140ba02535623520edb4d52db40d06881ad2b31a9d859445cf56aeaf0de5183c3edd22eaf7e023
|
|
16123
16124
|
languageName: node
|
|
16124
16125
|
linkType: hard
|
|
16125
16126
|
|
|
16126
|
-
"postcss-discard-empty@npm:^7.0.
|
|
16127
|
-
version: 7.0.
|
|
16128
|
-
resolution: "postcss-discard-empty@npm:7.0.
|
|
16127
|
+
"postcss-discard-empty@npm:^7.0.1":
|
|
16128
|
+
version: 7.0.1
|
|
16129
|
+
resolution: "postcss-discard-empty@npm:7.0.1"
|
|
16129
16130
|
peerDependencies:
|
|
16130
|
-
postcss: ^8.4.
|
|
16131
|
-
checksum: 10c0/
|
|
16131
|
+
postcss: ^8.4.32
|
|
16132
|
+
checksum: 10c0/c11c5571f573a147db911d2d82b4102eff2930fa1d5cc63c25c2cbd9f496a91a7364075f322b61e0eb9c217fc86f06680deb0fb858a32e29148abd7cb2617f8f
|
|
16132
16133
|
languageName: node
|
|
16133
16134
|
linkType: hard
|
|
16134
16135
|
|
|
16135
|
-
"postcss-discard-overridden@npm:^7.0.
|
|
16136
|
-
version: 7.0.
|
|
16137
|
-
resolution: "postcss-discard-overridden@npm:7.0.
|
|
16136
|
+
"postcss-discard-overridden@npm:^7.0.1":
|
|
16137
|
+
version: 7.0.1
|
|
16138
|
+
resolution: "postcss-discard-overridden@npm:7.0.1"
|
|
16138
16139
|
peerDependencies:
|
|
16139
|
-
postcss: ^8.4.
|
|
16140
|
-
checksum: 10c0/
|
|
16140
|
+
postcss: ^8.4.32
|
|
16141
|
+
checksum: 10c0/413c68411f1f3b9ee2a862eca4599f54e6b35a5556af12518032b4f6b3f47c57a6db1cc4565692fb8633b7a1fd26e096f5cd86e50aaf702375d621efbd819d05
|
|
16141
16142
|
languageName: node
|
|
16142
16143
|
linkType: hard
|
|
16143
16144
|
|
|
@@ -16208,78 +16209,78 @@ __metadata:
|
|
|
16208
16209
|
languageName: node
|
|
16209
16210
|
linkType: hard
|
|
16210
16211
|
|
|
16211
|
-
"postcss-merge-longhand@npm:^7.0.
|
|
16212
|
-
version: 7.0.
|
|
16213
|
-
resolution: "postcss-merge-longhand@npm:7.0.
|
|
16212
|
+
"postcss-merge-longhand@npm:^7.0.5":
|
|
16213
|
+
version: 7.0.5
|
|
16214
|
+
resolution: "postcss-merge-longhand@npm:7.0.5"
|
|
16214
16215
|
dependencies:
|
|
16215
16216
|
postcss-value-parser: "npm:^4.2.0"
|
|
16216
|
-
stylehacks: "npm:^7.0.
|
|
16217
|
+
stylehacks: "npm:^7.0.5"
|
|
16217
16218
|
peerDependencies:
|
|
16218
|
-
postcss: ^8.4.
|
|
16219
|
-
checksum: 10c0/
|
|
16219
|
+
postcss: ^8.4.32
|
|
16220
|
+
checksum: 10c0/148fe5fc33f967f6e579a184a4bb82c8e6ffb1d5f720a2c7aa85849a56ee8d23ce3f026d6f6b45a38f63f761fcfafe3b82ac54da7bf080fd58eb743be4c4ce46
|
|
16220
16221
|
languageName: node
|
|
16221
16222
|
linkType: hard
|
|
16222
16223
|
|
|
16223
|
-
"postcss-merge-rules@npm:^7.0.
|
|
16224
|
-
version: 7.0.
|
|
16225
|
-
resolution: "postcss-merge-rules@npm:7.0.
|
|
16224
|
+
"postcss-merge-rules@npm:^7.0.5":
|
|
16225
|
+
version: 7.0.5
|
|
16226
|
+
resolution: "postcss-merge-rules@npm:7.0.5"
|
|
16226
16227
|
dependencies:
|
|
16227
|
-
browserslist: "npm:^4.
|
|
16228
|
+
browserslist: "npm:^4.24.5"
|
|
16228
16229
|
caniuse-api: "npm:^3.0.0"
|
|
16229
|
-
cssnano-utils: "npm:^5.0.
|
|
16230
|
-
postcss-selector-parser: "npm:^
|
|
16230
|
+
cssnano-utils: "npm:^5.0.1"
|
|
16231
|
+
postcss-selector-parser: "npm:^7.1.0"
|
|
16231
16232
|
peerDependencies:
|
|
16232
|
-
postcss: ^8.4.
|
|
16233
|
-
checksum: 10c0/
|
|
16233
|
+
postcss: ^8.4.32
|
|
16234
|
+
checksum: 10c0/e7225a4606b7dcdabd895c4cafa5fdb97a6588c7a59d8b189725443ad2d3c45603eac8a66929c5470b0b99a56b4daca3e79f7e19d15f9cccfde2a69ba2b66137
|
|
16234
16235
|
languageName: node
|
|
16235
16236
|
linkType: hard
|
|
16236
16237
|
|
|
16237
|
-
"postcss-minify-font-values@npm:^7.0.
|
|
16238
|
-
version: 7.0.
|
|
16239
|
-
resolution: "postcss-minify-font-values@npm:7.0.
|
|
16238
|
+
"postcss-minify-font-values@npm:^7.0.1":
|
|
16239
|
+
version: 7.0.1
|
|
16240
|
+
resolution: "postcss-minify-font-values@npm:7.0.1"
|
|
16240
16241
|
dependencies:
|
|
16241
16242
|
postcss-value-parser: "npm:^4.2.0"
|
|
16242
16243
|
peerDependencies:
|
|
16243
|
-
postcss: ^8.4.
|
|
16244
|
-
checksum: 10c0/
|
|
16244
|
+
postcss: ^8.4.32
|
|
16245
|
+
checksum: 10c0/2327863b0f4c025855ba9bb88951ce92985ce1c64bab24002b5d75f024268c396735af311db7342e8ca5ebc80c18c282d7cb63292c36a457348eda041c5fe197
|
|
16245
16246
|
languageName: node
|
|
16246
16247
|
linkType: hard
|
|
16247
16248
|
|
|
16248
|
-
"postcss-minify-gradients@npm:^7.0.
|
|
16249
|
-
version: 7.0.
|
|
16250
|
-
resolution: "postcss-minify-gradients@npm:7.0.
|
|
16249
|
+
"postcss-minify-gradients@npm:^7.0.1":
|
|
16250
|
+
version: 7.0.1
|
|
16251
|
+
resolution: "postcss-minify-gradients@npm:7.0.1"
|
|
16251
16252
|
dependencies:
|
|
16252
16253
|
colord: "npm:^2.9.3"
|
|
16253
|
-
cssnano-utils: "npm:^5.0.
|
|
16254
|
+
cssnano-utils: "npm:^5.0.1"
|
|
16254
16255
|
postcss-value-parser: "npm:^4.2.0"
|
|
16255
16256
|
peerDependencies:
|
|
16256
|
-
postcss: ^8.4.
|
|
16257
|
-
checksum: 10c0/
|
|
16257
|
+
postcss: ^8.4.32
|
|
16258
|
+
checksum: 10c0/19df86ff3d8767f86300ebeac06dba951e26e069590bfb52bc24b0e73fca27c411395870053ffda4272d738b344b478a43a0c92bd23b466e274dd95379c8dc97
|
|
16258
16259
|
languageName: node
|
|
16259
16260
|
linkType: hard
|
|
16260
16261
|
|
|
16261
|
-
"postcss-minify-params@npm:^7.0.
|
|
16262
|
-
version: 7.0.
|
|
16263
|
-
resolution: "postcss-minify-params@npm:7.0.
|
|
16262
|
+
"postcss-minify-params@npm:^7.0.3":
|
|
16263
|
+
version: 7.0.3
|
|
16264
|
+
resolution: "postcss-minify-params@npm:7.0.3"
|
|
16264
16265
|
dependencies:
|
|
16265
|
-
browserslist: "npm:^4.
|
|
16266
|
-
cssnano-utils: "npm:^5.0.
|
|
16266
|
+
browserslist: "npm:^4.24.5"
|
|
16267
|
+
cssnano-utils: "npm:^5.0.1"
|
|
16267
16268
|
postcss-value-parser: "npm:^4.2.0"
|
|
16268
16269
|
peerDependencies:
|
|
16269
|
-
postcss: ^8.4.
|
|
16270
|
-
checksum: 10c0/
|
|
16270
|
+
postcss: ^8.4.32
|
|
16271
|
+
checksum: 10c0/e7e7b5faeb85e0fc0d0ebbc388ef3ad402e9d85b5d77da6b38e4b16d32c496e79072a6fc13318e4bcafe761616babec1075d9afbf0e9966451a71945ae058de9
|
|
16271
16272
|
languageName: node
|
|
16272
16273
|
linkType: hard
|
|
16273
16274
|
|
|
16274
|
-
"postcss-minify-selectors@npm:^7.0.
|
|
16275
|
-
version: 7.0.
|
|
16276
|
-
resolution: "postcss-minify-selectors@npm:7.0.
|
|
16275
|
+
"postcss-minify-selectors@npm:^7.0.5":
|
|
16276
|
+
version: 7.0.5
|
|
16277
|
+
resolution: "postcss-minify-selectors@npm:7.0.5"
|
|
16277
16278
|
dependencies:
|
|
16278
16279
|
cssesc: "npm:^3.0.0"
|
|
16279
|
-
postcss-selector-parser: "npm:^
|
|
16280
|
+
postcss-selector-parser: "npm:^7.1.0"
|
|
16280
16281
|
peerDependencies:
|
|
16281
|
-
postcss: ^8.4.
|
|
16282
|
-
checksum: 10c0/
|
|
16282
|
+
postcss: ^8.4.32
|
|
16283
|
+
checksum: 10c0/ebc1b5bee2e7d5d57926d7b47c54845531929badd8f445505ab4add4614ce24453977a1cc9ca5667ddcfacfd3f735bf90a3fe6558de7aa4b85bc2e690915abd8
|
|
16283
16284
|
languageName: node
|
|
16284
16285
|
linkType: hard
|
|
16285
16286
|
|
|
@@ -16393,113 +16394,113 @@ __metadata:
|
|
|
16393
16394
|
languageName: node
|
|
16394
16395
|
linkType: hard
|
|
16395
16396
|
|
|
16396
|
-
"postcss-normalize-charset@npm:^7.0.
|
|
16397
|
-
version: 7.0.
|
|
16398
|
-
resolution: "postcss-normalize-charset@npm:7.0.
|
|
16397
|
+
"postcss-normalize-charset@npm:^7.0.1":
|
|
16398
|
+
version: 7.0.1
|
|
16399
|
+
resolution: "postcss-normalize-charset@npm:7.0.1"
|
|
16399
16400
|
peerDependencies:
|
|
16400
|
-
postcss: ^8.4.
|
|
16401
|
-
checksum: 10c0/
|
|
16401
|
+
postcss: ^8.4.32
|
|
16402
|
+
checksum: 10c0/e879ecbd8a2f40b427ac8800c34ad6670fa820838ad27950c34b628e9248ce763433045bb4254f65c02d74825f41377a9cf278f8cdcf7284acbd6a3b33af83fe
|
|
16402
16403
|
languageName: node
|
|
16403
16404
|
linkType: hard
|
|
16404
16405
|
|
|
16405
|
-
"postcss-normalize-display-values@npm:^7.0.
|
|
16406
|
-
version: 7.0.
|
|
16407
|
-
resolution: "postcss-normalize-display-values@npm:7.0.
|
|
16406
|
+
"postcss-normalize-display-values@npm:^7.0.1":
|
|
16407
|
+
version: 7.0.1
|
|
16408
|
+
resolution: "postcss-normalize-display-values@npm:7.0.1"
|
|
16408
16409
|
dependencies:
|
|
16409
16410
|
postcss-value-parser: "npm:^4.2.0"
|
|
16410
16411
|
peerDependencies:
|
|
16411
|
-
postcss: ^8.4.
|
|
16412
|
-
checksum: 10c0/
|
|
16412
|
+
postcss: ^8.4.32
|
|
16413
|
+
checksum: 10c0/00d77846972e5261aebb38594f8999cfb84fe745ec9d3c2a4d8a91a1b6e703f02b0ccc9342e8fd4fa1f3e5e1f85d4aac2446dae898690ef41bc06de95008b975
|
|
16413
16414
|
languageName: node
|
|
16414
16415
|
linkType: hard
|
|
16415
16416
|
|
|
16416
|
-
"postcss-normalize-positions@npm:^7.0.
|
|
16417
|
-
version: 7.0.
|
|
16418
|
-
resolution: "postcss-normalize-positions@npm:7.0.
|
|
16417
|
+
"postcss-normalize-positions@npm:^7.0.1":
|
|
16418
|
+
version: 7.0.1
|
|
16419
|
+
resolution: "postcss-normalize-positions@npm:7.0.1"
|
|
16419
16420
|
dependencies:
|
|
16420
16421
|
postcss-value-parser: "npm:^4.2.0"
|
|
16421
16422
|
peerDependencies:
|
|
16422
|
-
postcss: ^8.4.
|
|
16423
|
-
checksum: 10c0/
|
|
16423
|
+
postcss: ^8.4.32
|
|
16424
|
+
checksum: 10c0/00f43f9635905ae11ba04cec9272cfa783b7793058ea8e576cb3cf8ea59df6f7bbdc34fdcba82724aaf789ee1f0697266e7ce98818aeca640889d67906f87f9e
|
|
16424
16425
|
languageName: node
|
|
16425
16426
|
linkType: hard
|
|
16426
16427
|
|
|
16427
|
-
"postcss-normalize-repeat-style@npm:^7.0.
|
|
16428
|
-
version: 7.0.
|
|
16429
|
-
resolution: "postcss-normalize-repeat-style@npm:7.0.
|
|
16428
|
+
"postcss-normalize-repeat-style@npm:^7.0.1":
|
|
16429
|
+
version: 7.0.1
|
|
16430
|
+
resolution: "postcss-normalize-repeat-style@npm:7.0.1"
|
|
16430
16431
|
dependencies:
|
|
16431
16432
|
postcss-value-parser: "npm:^4.2.0"
|
|
16432
16433
|
peerDependencies:
|
|
16433
|
-
postcss: ^8.4.
|
|
16434
|
-
checksum: 10c0/
|
|
16434
|
+
postcss: ^8.4.32
|
|
16435
|
+
checksum: 10c0/de4f1350ae979e34e29f7f9e1ade23dcdfdccb4c290889ab45d15935c3af8218858e9fe06fc4af3fe5dc0478d719c7ce7d0d995dd9f786c93d5d3eaa7187d6ed
|
|
16435
16436
|
languageName: node
|
|
16436
16437
|
linkType: hard
|
|
16437
16438
|
|
|
16438
|
-
"postcss-normalize-string@npm:^7.0.
|
|
16439
|
-
version: 7.0.
|
|
16440
|
-
resolution: "postcss-normalize-string@npm:7.0.
|
|
16439
|
+
"postcss-normalize-string@npm:^7.0.1":
|
|
16440
|
+
version: 7.0.1
|
|
16441
|
+
resolution: "postcss-normalize-string@npm:7.0.1"
|
|
16441
16442
|
dependencies:
|
|
16442
16443
|
postcss-value-parser: "npm:^4.2.0"
|
|
16443
16444
|
peerDependencies:
|
|
16444
|
-
postcss: ^8.4.
|
|
16445
|
-
checksum: 10c0/
|
|
16445
|
+
postcss: ^8.4.32
|
|
16446
|
+
checksum: 10c0/da3bc2458529544abad32860cd835d27b010a7fb16b121f0b64f44775a332795de0cd1a0280a380f868e4958997bd13a0275aca8e404c835ce120cf8ab69f4db
|
|
16446
16447
|
languageName: node
|
|
16447
16448
|
linkType: hard
|
|
16448
16449
|
|
|
16449
|
-
"postcss-normalize-timing-functions@npm:^7.0.
|
|
16450
|
-
version: 7.0.
|
|
16451
|
-
resolution: "postcss-normalize-timing-functions@npm:7.0.
|
|
16450
|
+
"postcss-normalize-timing-functions@npm:^7.0.1":
|
|
16451
|
+
version: 7.0.1
|
|
16452
|
+
resolution: "postcss-normalize-timing-functions@npm:7.0.1"
|
|
16452
16453
|
dependencies:
|
|
16453
16454
|
postcss-value-parser: "npm:^4.2.0"
|
|
16454
16455
|
peerDependencies:
|
|
16455
|
-
postcss: ^8.4.
|
|
16456
|
-
checksum: 10c0/
|
|
16456
|
+
postcss: ^8.4.32
|
|
16457
|
+
checksum: 10c0/9389555176925bb31428220285b89b8cec2c2669f3ebb8f033463e7356cf1f54d0baaf71ddc097beb7adc418b9d2ea3cc628886fbf8e782c74ddaab4c2290749
|
|
16457
16458
|
languageName: node
|
|
16458
16459
|
linkType: hard
|
|
16459
16460
|
|
|
16460
|
-
"postcss-normalize-unicode@npm:^7.0.
|
|
16461
|
-
version: 7.0.
|
|
16462
|
-
resolution: "postcss-normalize-unicode@npm:7.0.
|
|
16461
|
+
"postcss-normalize-unicode@npm:^7.0.3":
|
|
16462
|
+
version: 7.0.3
|
|
16463
|
+
resolution: "postcss-normalize-unicode@npm:7.0.3"
|
|
16463
16464
|
dependencies:
|
|
16464
|
-
browserslist: "npm:^4.
|
|
16465
|
+
browserslist: "npm:^4.24.5"
|
|
16465
16466
|
postcss-value-parser: "npm:^4.2.0"
|
|
16466
16467
|
peerDependencies:
|
|
16467
|
-
postcss: ^8.4.
|
|
16468
|
-
checksum: 10c0/
|
|
16468
|
+
postcss: ^8.4.32
|
|
16469
|
+
checksum: 10c0/6057b098b777ebe83060bde4278b258b50893d20761621931cbc93a50e3674ab634633e2539ef87c7a70348fc936bb2eeec87c470a296db15218b6bd16b33397
|
|
16469
16470
|
languageName: node
|
|
16470
16471
|
linkType: hard
|
|
16471
16472
|
|
|
16472
|
-
"postcss-normalize-url@npm:^7.0.
|
|
16473
|
-
version: 7.0.
|
|
16474
|
-
resolution: "postcss-normalize-url@npm:7.0.
|
|
16473
|
+
"postcss-normalize-url@npm:^7.0.1":
|
|
16474
|
+
version: 7.0.1
|
|
16475
|
+
resolution: "postcss-normalize-url@npm:7.0.1"
|
|
16475
16476
|
dependencies:
|
|
16476
16477
|
postcss-value-parser: "npm:^4.2.0"
|
|
16477
16478
|
peerDependencies:
|
|
16478
|
-
postcss: ^8.4.
|
|
16479
|
-
checksum: 10c0/
|
|
16479
|
+
postcss: ^8.4.32
|
|
16480
|
+
checksum: 10c0/d04ff170efcc77aef221f20f2a1a783c95564898321521a5940c17cf6cbdfd4f44b005efab77feebfae17873b17a30248c14c6f6166b4dfe382e524d6a3a935b
|
|
16480
16481
|
languageName: node
|
|
16481
16482
|
linkType: hard
|
|
16482
16483
|
|
|
16483
|
-
"postcss-normalize-whitespace@npm:^7.0.
|
|
16484
|
-
version: 7.0.
|
|
16485
|
-
resolution: "postcss-normalize-whitespace@npm:7.0.
|
|
16484
|
+
"postcss-normalize-whitespace@npm:^7.0.1":
|
|
16485
|
+
version: 7.0.1
|
|
16486
|
+
resolution: "postcss-normalize-whitespace@npm:7.0.1"
|
|
16486
16487
|
dependencies:
|
|
16487
16488
|
postcss-value-parser: "npm:^4.2.0"
|
|
16488
16489
|
peerDependencies:
|
|
16489
|
-
postcss: ^8.4.
|
|
16490
|
-
checksum: 10c0/
|
|
16490
|
+
postcss: ^8.4.32
|
|
16491
|
+
checksum: 10c0/efbdbe1d0bc1dfed08168f417968f112996c6985efe0ba48137a4811052a65b46ac702b74afbb3110a51515aff67ffe1e139ce9a723e8d8543977e4cc6269911
|
|
16491
16492
|
languageName: node
|
|
16492
16493
|
linkType: hard
|
|
16493
16494
|
|
|
16494
|
-
"postcss-ordered-values@npm:^7.0.
|
|
16495
|
-
version: 7.0.
|
|
16496
|
-
resolution: "postcss-ordered-values@npm:7.0.
|
|
16495
|
+
"postcss-ordered-values@npm:^7.0.2":
|
|
16496
|
+
version: 7.0.2
|
|
16497
|
+
resolution: "postcss-ordered-values@npm:7.0.2"
|
|
16497
16498
|
dependencies:
|
|
16498
|
-
cssnano-utils: "npm:^5.0.
|
|
16499
|
+
cssnano-utils: "npm:^5.0.1"
|
|
16499
16500
|
postcss-value-parser: "npm:^4.2.0"
|
|
16500
16501
|
peerDependencies:
|
|
16501
|
-
postcss: ^8.4.
|
|
16502
|
-
checksum: 10c0/
|
|
16502
|
+
postcss: ^8.4.32
|
|
16503
|
+
checksum: 10c0/77e4daa70e120864aac5a0f5c71cc8b66408829eabe45203d4d86c93229425c26e030cf75d6f328432935c28a50c5294108aa2439fa8da256aa1852cc71c84f3
|
|
16503
16504
|
languageName: node
|
|
16504
16505
|
linkType: hard
|
|
16505
16506
|
|
|
@@ -16515,30 +16516,30 @@ __metadata:
|
|
|
16515
16516
|
languageName: node
|
|
16516
16517
|
linkType: hard
|
|
16517
16518
|
|
|
16518
|
-
"postcss-reduce-initial@npm:^7.0.
|
|
16519
|
-
version: 7.0.
|
|
16520
|
-
resolution: "postcss-reduce-initial@npm:7.0.
|
|
16519
|
+
"postcss-reduce-initial@npm:^7.0.3":
|
|
16520
|
+
version: 7.0.3
|
|
16521
|
+
resolution: "postcss-reduce-initial@npm:7.0.3"
|
|
16521
16522
|
dependencies:
|
|
16522
|
-
browserslist: "npm:^4.
|
|
16523
|
+
browserslist: "npm:^4.24.5"
|
|
16523
16524
|
caniuse-api: "npm:^3.0.0"
|
|
16524
16525
|
peerDependencies:
|
|
16525
|
-
postcss: ^8.4.
|
|
16526
|
-
checksum: 10c0/
|
|
16526
|
+
postcss: ^8.4.32
|
|
16527
|
+
checksum: 10c0/a8321fe8187ae00e1ee15385a927772149ed7a4d3130b2ee1c55a31055e2e9de550164b5fb615fda9c9c03d3e01e4630c1457f1732ef21704cb3b25a9ade6291
|
|
16527
16528
|
languageName: node
|
|
16528
16529
|
linkType: hard
|
|
16529
16530
|
|
|
16530
|
-
"postcss-reduce-transforms@npm:^7.0.
|
|
16531
|
-
version: 7.0.
|
|
16532
|
-
resolution: "postcss-reduce-transforms@npm:7.0.
|
|
16531
|
+
"postcss-reduce-transforms@npm:^7.0.1":
|
|
16532
|
+
version: 7.0.1
|
|
16533
|
+
resolution: "postcss-reduce-transforms@npm:7.0.1"
|
|
16533
16534
|
dependencies:
|
|
16534
16535
|
postcss-value-parser: "npm:^4.2.0"
|
|
16535
16536
|
peerDependencies:
|
|
16536
|
-
postcss: ^8.4.
|
|
16537
|
-
checksum: 10c0/
|
|
16537
|
+
postcss: ^8.4.32
|
|
16538
|
+
checksum: 10c0/b379ea1d87ea27f331b472c8a21b4c6bb3c114ea573b66743f6fb4a52cab758c1930cd194df873d347901e347c47035e1353be6cf4250e469ec512f599385957
|
|
16538
16539
|
languageName: node
|
|
16539
16540
|
linkType: hard
|
|
16540
16541
|
|
|
16541
|
-
"postcss-selector-parser@npm:^6.0.0, postcss-selector-parser@npm:^6.0.11, postcss-selector-parser@npm:^6.0.2, postcss-selector-parser@npm:^6.1.1
|
|
16542
|
+
"postcss-selector-parser@npm:^6.0.0, postcss-selector-parser@npm:^6.0.11, postcss-selector-parser@npm:^6.0.2, postcss-selector-parser@npm:^6.1.1":
|
|
16542
16543
|
version: 6.1.2
|
|
16543
16544
|
resolution: "postcss-selector-parser@npm:6.1.2"
|
|
16544
16545
|
dependencies:
|
|
@@ -16548,7 +16549,7 @@ __metadata:
|
|
|
16548
16549
|
languageName: node
|
|
16549
16550
|
linkType: hard
|
|
16550
16551
|
|
|
16551
|
-
"postcss-selector-parser@npm:^7.0.0":
|
|
16552
|
+
"postcss-selector-parser@npm:^7.0.0, postcss-selector-parser@npm:^7.1.0":
|
|
16552
16553
|
version: 7.1.0
|
|
16553
16554
|
resolution: "postcss-selector-parser@npm:7.1.0"
|
|
16554
16555
|
dependencies:
|
|
@@ -16567,26 +16568,26 @@ __metadata:
|
|
|
16567
16568
|
languageName: node
|
|
16568
16569
|
linkType: hard
|
|
16569
16570
|
|
|
16570
|
-
"postcss-svgo@npm:^7.0.
|
|
16571
|
-
version: 7.0.
|
|
16572
|
-
resolution: "postcss-svgo@npm:7.0.
|
|
16571
|
+
"postcss-svgo@npm:^7.0.2":
|
|
16572
|
+
version: 7.0.2
|
|
16573
|
+
resolution: "postcss-svgo@npm:7.0.2"
|
|
16573
16574
|
dependencies:
|
|
16574
16575
|
postcss-value-parser: "npm:^4.2.0"
|
|
16575
16576
|
svgo: "npm:^3.3.2"
|
|
16576
16577
|
peerDependencies:
|
|
16577
|
-
postcss: ^8.4.
|
|
16578
|
-
checksum: 10c0/
|
|
16578
|
+
postcss: ^8.4.32
|
|
16579
|
+
checksum: 10c0/03b97c6d572180fbacbae5d75f6ecab00a4185ea450bc2cb7ed4cbe1e6ffe87d49bf2502c5ddd3052deff3de80729b57df8a46e4ed8b78aa6a557d4b7f305a4a
|
|
16579
16580
|
languageName: node
|
|
16580
16581
|
linkType: hard
|
|
16581
16582
|
|
|
16582
|
-
"postcss-unique-selectors@npm:^7.0.
|
|
16583
|
-
version: 7.0.
|
|
16584
|
-
resolution: "postcss-unique-selectors@npm:7.0.
|
|
16583
|
+
"postcss-unique-selectors@npm:^7.0.4":
|
|
16584
|
+
version: 7.0.4
|
|
16585
|
+
resolution: "postcss-unique-selectors@npm:7.0.4"
|
|
16585
16586
|
dependencies:
|
|
16586
|
-
postcss-selector-parser: "npm:^
|
|
16587
|
+
postcss-selector-parser: "npm:^7.1.0"
|
|
16587
16588
|
peerDependencies:
|
|
16588
|
-
postcss: ^8.4.
|
|
16589
|
-
checksum: 10c0/
|
|
16589
|
+
postcss: ^8.4.32
|
|
16590
|
+
checksum: 10c0/ae47c2abc2dab647e026674a1239c2531236177e39078ef7fb091df9cdeb60f8e453c65909e5dd91efe2f3bb76c67f31035f137a9c71cbc8732d631329c79261
|
|
16590
16591
|
languageName: node
|
|
16591
16592
|
linkType: hard
|
|
16592
16593
|
|
|
@@ -20241,15 +20242,15 @@ __metadata:
|
|
|
20241
20242
|
languageName: node
|
|
20242
20243
|
linkType: hard
|
|
20243
20244
|
|
|
20244
|
-
"stylehacks@npm:^7.0.
|
|
20245
|
-
version: 7.0.
|
|
20246
|
-
resolution: "stylehacks@npm:7.0.
|
|
20245
|
+
"stylehacks@npm:^7.0.5":
|
|
20246
|
+
version: 7.0.5
|
|
20247
|
+
resolution: "stylehacks@npm:7.0.5"
|
|
20247
20248
|
dependencies:
|
|
20248
|
-
browserslist: "npm:^4.
|
|
20249
|
-
postcss-selector-parser: "npm:^
|
|
20249
|
+
browserslist: "npm:^4.24.5"
|
|
20250
|
+
postcss-selector-parser: "npm:^7.1.0"
|
|
20250
20251
|
peerDependencies:
|
|
20251
|
-
postcss: ^8.4.
|
|
20252
|
-
checksum: 10c0/
|
|
20252
|
+
postcss: ^8.4.32
|
|
20253
|
+
checksum: 10c0/66a15cbbac00b15ee68d01bdaf8b044c8e4e9e13fc27a6971d4ec39f09553769bf1e11245abe21393b8fead66255cf2e03d84265e3ee265bd6183eb499f8774a
|
|
20253
20254
|
languageName: node
|
|
20254
20255
|
linkType: hard
|
|
20255
20256
|
|