@licklist/design 0.69.3 → 0.69.5
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-event-modal/component/EditEventForm/EditEventForm.d.ts +2 -1
- package/dist/events/edit-event-modal/component/EditEventForm/EditEventForm.d.ts.map +1 -1
- package/dist/events/edit-event-modal/component/EditEventForm/EditEventForm.js +3 -2
- package/dist/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.d.ts +2 -1
- package/dist/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.d.ts.map +1 -1
- package/dist/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.js +31 -28
- package/dist/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.d.ts +2 -1
- package/dist/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.d.ts.map +1 -1
- package/dist/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.js +14 -3
- package/dist/events/edit-event-modal/utils/getDefaultProductSet.d.ts.map +1 -1
- package/dist/events/edit-event-modal/utils/getDefaultProductSet.js +3 -1
- package/dist/iframe/activity-card/ActivityCard.d.ts +5 -4
- package/dist/iframe/activity-card/ActivityCard.d.ts.map +1 -1
- package/dist/iframe/activity-card/ActivityCard.js +52 -40
- package/dist/index.js +1 -0
- package/dist/modals/confirmation/ConfirmModal.d.ts +3 -1
- package/dist/modals/confirmation/ConfirmModal.d.ts.map +1 -1
- package/dist/modals/confirmation/ConfirmModal.js +172 -8
- package/dist/product-set/card/ProductSetCard.d.ts +6 -2
- package/dist/product-set/card/ProductSetCard.d.ts.map +1 -1
- package/dist/product-set/card/ProductSetCard.js +30 -11
- package/dist/product-set/control/ProductSetControl.d.ts +4 -0
- package/dist/product-set/control/ProductSetControl.d.ts.map +1 -1
- package/dist/product-set/control/ProductSetControl.js +30 -3
- package/dist/product-set/control/ProductSetImageControl.d.ts +2 -0
- package/dist/product-set/control/ProductSetImageControl.d.ts.map +1 -0
- package/dist/product-set/control/ProductSetImageControl.js +279 -0
- package/dist/product-set/form/MobileFooter.d.ts.map +1 -1
- package/dist/product-set/form/ProductSetForm.d.ts.map +1 -1
- package/dist/product-set/form/ProductSetForm.js +8 -0
- package/dist/product-set/form/ProductSetNameControl.d.ts +6 -0
- package/dist/product-set/form/ProductSetNameControl.d.ts.map +1 -0
- package/dist/product-set/form/ProductSetNameControl.js +35 -0
- package/dist/product-set/form/index.d.ts +1 -0
- package/dist/product-set/form/index.d.ts.map +1 -1
- package/dist/product-set/utils/index.d.ts +7 -0
- package/dist/product-set/utils/index.d.ts.map +1 -1
- package/dist/product-set/utils/index.js +10 -1
- package/dist/styles/activity-card/{GridActivitiesCard.scss → ActivitiesCard.scss} +19 -5
- package/dist/styles/activity-card/ListActivitiesCard.scss +12 -42
- package/dist/styles/activity-card/_index.scss +1 -1
- package/dist/typeahead/Typeahead.d.ts +5 -1
- package/dist/typeahead/Typeahead.d.ts.map +1 -1
- package/dist/typeahead/Typeahead.js +9 -2
- package/package.json +5 -5
- package/src/events/edit-event-modal/component/EditEventForm/EditEventForm.tsx +3 -0
- package/src/events/edit-event-modal/component/SelectEventProductSet/SelectEventProductSet.tsx +86 -85
- package/src/events/edit-event-modal/component/SelectEventProductSet/component/EditEventProductSet.tsx +11 -1
- package/src/events/edit-event-modal/utils/getDefaultProductSet.ts +2 -0
- package/src/iframe/activity-card/ActivityCard.tsx +35 -24
- package/src/modals/confirmation/ConfirmModal.tsx +19 -3
- package/src/product-set/card/ProductSetCard.tsx +47 -8
- package/src/product-set/control/ProductSetControl.tsx +52 -52
- package/src/product-set/control/ProductSetImageControl.tsx +97 -0
- package/src/product-set/form/MobileFooter.tsx +1 -3
- package/src/product-set/form/ProductSetForm.tsx +10 -0
- package/src/product-set/form/ProductSetNameControl.tsx +27 -0
- package/src/product-set/form/index.ts +1 -0
- package/src/product-set/utils/index.ts +11 -0
- package/src/styles/activity-card/{GridActivitiesCard.scss → ActivitiesCard.scss} +19 -5
- package/src/styles/activity-card/ListActivitiesCard.scss +12 -42
- package/src/styles/activity-card/_index.scss +1 -1
- package/src/typeahead/Typeahead.tsx +15 -1
- package/yarn.lock +63 -45
package/yarn.lock
CHANGED
|
@@ -2479,6 +2479,32 @@ __metadata:
|
|
|
2479
2479
|
languageName: node
|
|
2480
2480
|
linkType: hard
|
|
2481
2481
|
|
|
2482
|
+
"@licklist/core@npm:0.30.3":
|
|
2483
|
+
version: 0.30.3
|
|
2484
|
+
resolution: "@licklist/core@npm:0.30.3"
|
|
2485
|
+
dependencies:
|
|
2486
|
+
"@sentry/browser": "npm:6.2.0"
|
|
2487
|
+
axios: "npm:0.26.0"
|
|
2488
|
+
i18next: "npm:19.4.5"
|
|
2489
|
+
luxon: "npm:3.5.0"
|
|
2490
|
+
react: "npm:17.0.2"
|
|
2491
|
+
react-dom: "npm:17.0.2"
|
|
2492
|
+
react-i18next: "npm:11.8.8"
|
|
2493
|
+
react-intl: "npm:6.6.8"
|
|
2494
|
+
uuid: "npm:9.0.0"
|
|
2495
|
+
wait-for-expect: "npm:3.0.2"
|
|
2496
|
+
peerDependencies:
|
|
2497
|
+
"@licklist/eslint-config": 0.5.6
|
|
2498
|
+
axios: 0.26.0
|
|
2499
|
+
luxon: 3.5.0
|
|
2500
|
+
react: 17.0.2
|
|
2501
|
+
react-dom: 17.0.2
|
|
2502
|
+
react-i18next: 11.8.8
|
|
2503
|
+
react-intl: 6.6.8
|
|
2504
|
+
checksum: 10c0/0c07f146b3be699955f19880cef83c7e5132727aace74ea36da2b1d33ea3b6c3b63d1de2439ed996723ed3c046b5611952bcdd76e0db74a629ce46a1b836f3fa
|
|
2505
|
+
languageName: node
|
|
2506
|
+
linkType: hard
|
|
2507
|
+
|
|
2482
2508
|
"@licklist/design@workspace:.":
|
|
2483
2509
|
version: 0.0.0-use.local
|
|
2484
2510
|
resolution: "@licklist/design@workspace:."
|
|
@@ -2490,9 +2516,9 @@ __metadata:
|
|
|
2490
2516
|
"@dnd-kit/utilities": "npm:2.0.0"
|
|
2491
2517
|
"@fortawesome/fontawesome-svg-core": "npm:1.2.34"
|
|
2492
2518
|
"@fortawesome/free-solid-svg-icons": "npm:5.15.2"
|
|
2493
|
-
"@licklist/core": "npm:0.30.
|
|
2519
|
+
"@licklist/core": "npm:0.30.3"
|
|
2494
2520
|
"@licklist/eslint-config": "npm:0.5.6"
|
|
2495
|
-
"@licklist/plugins": "npm:0.33.
|
|
2521
|
+
"@licklist/plugins": "npm:0.33.4"
|
|
2496
2522
|
"@mantine/core": "npm:6.0.22"
|
|
2497
2523
|
"@mantine/hooks": "npm:6.0.22"
|
|
2498
2524
|
"@mdx-js/react": "npm:1.6.22"
|
|
@@ -2623,7 +2649,7 @@ __metadata:
|
|
|
2623
2649
|
peerDependencies:
|
|
2624
2650
|
"@licklist/core": 0.30.3
|
|
2625
2651
|
"@licklist/eslint-config": 0.5.6
|
|
2626
|
-
"@licklist/plugins": 0.33.
|
|
2652
|
+
"@licklist/plugins": 0.33.4
|
|
2627
2653
|
lodash: 4.17.21
|
|
2628
2654
|
luxon: 3.5.0
|
|
2629
2655
|
react: 17.0.2
|
|
@@ -2653,12 +2679,11 @@ __metadata:
|
|
|
2653
2679
|
languageName: node
|
|
2654
2680
|
linkType: hard
|
|
2655
2681
|
|
|
2656
|
-
"@licklist/plugins@npm:0.33.
|
|
2657
|
-
version: 0.33.
|
|
2658
|
-
resolution: "@licklist/plugins@npm:0.33.
|
|
2682
|
+
"@licklist/plugins@npm:0.33.4":
|
|
2683
|
+
version: 0.33.4
|
|
2684
|
+
resolution: "@licklist/plugins@npm:0.33.4"
|
|
2659
2685
|
dependencies:
|
|
2660
2686
|
"@licklist/core": "npm:0.30.1"
|
|
2661
|
-
"@ungap/url-search-params": "npm:0.2.2"
|
|
2662
2687
|
axios: "npm:0.26.0"
|
|
2663
2688
|
history: "npm:4.10.1"
|
|
2664
2689
|
laravel-echo: "npm:1.15.1"
|
|
@@ -2690,7 +2715,7 @@ __metadata:
|
|
|
2690
2715
|
react-loader: 2.4.7
|
|
2691
2716
|
react-query: 3.34.12
|
|
2692
2717
|
react-router-dom: 5.2.0
|
|
2693
|
-
checksum: 10c0/
|
|
2718
|
+
checksum: 10c0/d5be4b905709545cd7e936f19e84ad0b28b4b7ffcec3950366715dc4a4ca1a6fe023368cb6a348017626c1081b408d60261050141cee56666578afa1a35cb213
|
|
2694
2719
|
languageName: node
|
|
2695
2720
|
linkType: hard
|
|
2696
2721
|
|
|
@@ -5642,11 +5667,11 @@ __metadata:
|
|
|
5642
5667
|
linkType: hard
|
|
5643
5668
|
|
|
5644
5669
|
"@types/node@npm:*":
|
|
5645
|
-
version: 22.7.
|
|
5646
|
-
resolution: "@types/node@npm:22.7.
|
|
5670
|
+
version: 22.7.6
|
|
5671
|
+
resolution: "@types/node@npm:22.7.6"
|
|
5647
5672
|
dependencies:
|
|
5648
5673
|
undici-types: "npm:~6.19.2"
|
|
5649
|
-
checksum: 10c0/
|
|
5674
|
+
checksum: 10c0/d4406a63afce981c363fb1d1954aaf1759ad2d487c0833ebf667565ea4e45ff217d6fab4b5343badbdeccdf9d2e4a0841d633e0c929ceabcb33c288663dd0c73
|
|
5650
5675
|
languageName: node
|
|
5651
5676
|
linkType: hard
|
|
5652
5677
|
|
|
@@ -6153,13 +6178,6 @@ __metadata:
|
|
|
6153
6178
|
languageName: node
|
|
6154
6179
|
linkType: hard
|
|
6155
6180
|
|
|
6156
|
-
"@ungap/url-search-params@npm:0.2.2":
|
|
6157
|
-
version: 0.2.2
|
|
6158
|
-
resolution: "@ungap/url-search-params@npm:0.2.2"
|
|
6159
|
-
checksum: 10c0/0ee84b8eff65b8f2af187d8487226c6358da2bd4f9036dea317fb5859c03dfbe1799864ade13127ba3d0b7069187c56a37596481983812e62929d8103e071690
|
|
6160
|
-
languageName: node
|
|
6161
|
-
linkType: hard
|
|
6162
|
-
|
|
6163
6181
|
"@vitejs/plugin-react@npm:4.3.1":
|
|
6164
6182
|
version: 4.3.1
|
|
6165
6183
|
resolution: "@vitejs/plugin-react@npm:4.3.1"
|
|
@@ -6552,11 +6570,11 @@ __metadata:
|
|
|
6552
6570
|
linkType: hard
|
|
6553
6571
|
|
|
6554
6572
|
"acorn@npm:^8.12.1, acorn@npm:^8.5.0, acorn@npm:^8.8.2":
|
|
6555
|
-
version: 8.
|
|
6556
|
-
resolution: "acorn@npm:8.
|
|
6573
|
+
version: 8.13.0
|
|
6574
|
+
resolution: "acorn@npm:8.13.0"
|
|
6557
6575
|
bin:
|
|
6558
6576
|
acorn: bin/acorn
|
|
6559
|
-
checksum: 10c0/
|
|
6577
|
+
checksum: 10c0/f35dd53d68177c90699f4c37d0bb205b8abe036d955d0eb011ddb7f14a81e6fd0f18893731c457c1b5bd96754683f4c3d80d9a5585ddecaa53cdf84e0b3d68f7
|
|
6560
6578
|
languageName: node
|
|
6561
6579
|
linkType: hard
|
|
6562
6580
|
|
|
@@ -7221,9 +7239,9 @@ __metadata:
|
|
|
7221
7239
|
linkType: hard
|
|
7222
7240
|
|
|
7223
7241
|
"axe-core@npm:^4.2.0, axe-core@npm:^4.3.5":
|
|
7224
|
-
version: 4.10.
|
|
7225
|
-
resolution: "axe-core@npm:4.10.
|
|
7226
|
-
checksum: 10c0/
|
|
7242
|
+
version: 4.10.1
|
|
7243
|
+
resolution: "axe-core@npm:4.10.1"
|
|
7244
|
+
checksum: 10c0/53d865efb7284fd69bc95ced1a1709fd603ea07f06e272da06942e7cfeca1c823e09bde28f57178e3a1a4c9a089fe4b5d274c871e3e6522a3b1bffec8eaa7dd8
|
|
7227
7245
|
languageName: node
|
|
7228
7246
|
linkType: hard
|
|
7229
7247
|
|
|
@@ -8031,9 +8049,9 @@ __metadata:
|
|
|
8031
8049
|
linkType: hard
|
|
8032
8050
|
|
|
8033
8051
|
"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.30001663":
|
|
8034
|
-
version: 1.0.
|
|
8035
|
-
resolution: "caniuse-lite@npm:1.0.
|
|
8036
|
-
checksum: 10c0/
|
|
8052
|
+
version: 1.0.30001669
|
|
8053
|
+
resolution: "caniuse-lite@npm:1.0.30001669"
|
|
8054
|
+
checksum: 10c0/f125f23440d3dbb6c25ffb8d55f4ce48af36a84d0932b152b3b74f143a4170cbe92e02b0a9676209c86609bf7bf34119ff10cc2bc7c1b7ea40e936cc16598408
|
|
8037
8055
|
languageName: node
|
|
8038
8056
|
linkType: hard
|
|
8039
8057
|
|
|
@@ -9790,9 +9808,9 @@ __metadata:
|
|
|
9790
9808
|
linkType: hard
|
|
9791
9809
|
|
|
9792
9810
|
"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.28":
|
|
9793
|
-
version: 1.5.
|
|
9794
|
-
resolution: "electron-to-chromium@npm:1.5.
|
|
9795
|
-
checksum: 10c0/
|
|
9811
|
+
version: 1.5.40
|
|
9812
|
+
resolution: "electron-to-chromium@npm:1.5.40"
|
|
9813
|
+
checksum: 10c0/3f97360627cf179b344a7d45b3d12fd3f18f1287529d9835a8e802c7a3b99f09e326b4ed3097be1b135e45a33e8497e758b0c101e38e5bb405eaa6aa887eca82
|
|
9796
9814
|
languageName: node
|
|
9797
9815
|
linkType: hard
|
|
9798
9816
|
|
|
@@ -10884,9 +10902,9 @@ __metadata:
|
|
|
10884
10902
|
linkType: hard
|
|
10885
10903
|
|
|
10886
10904
|
"fast-uri@npm:^3.0.1":
|
|
10887
|
-
version: 3.0.
|
|
10888
|
-
resolution: "fast-uri@npm:3.0.
|
|
10889
|
-
checksum: 10c0/
|
|
10905
|
+
version: 3.0.3
|
|
10906
|
+
resolution: "fast-uri@npm:3.0.3"
|
|
10907
|
+
checksum: 10c0/4b2c5ce681a062425eae4f15cdc8fc151fd310b2f69b1f96680677820a8b49c3cd6e80661a406e19d50f0c40a3f8bffdd458791baf66f4a879d80be28e10a320
|
|
10890
10908
|
languageName: node
|
|
10891
10909
|
linkType: hard
|
|
10892
10910
|
|
|
@@ -13660,9 +13678,9 @@ __metadata:
|
|
|
13660
13678
|
linkType: hard
|
|
13661
13679
|
|
|
13662
13680
|
"libphonenumber-js@npm:^1.9.11":
|
|
13663
|
-
version: 1.11.
|
|
13664
|
-
resolution: "libphonenumber-js@npm:1.11.
|
|
13665
|
-
checksum: 10c0/
|
|
13681
|
+
version: 1.11.12
|
|
13682
|
+
resolution: "libphonenumber-js@npm:1.11.12"
|
|
13683
|
+
checksum: 10c0/56fdf7ce107bd9d0329c47392d21649ee61b5ef210fa5926cb839506195d8482760982c9f75c207e97cf070be8ef2edc5a81db7cc3623f46990222945f4e0f65
|
|
13666
13684
|
languageName: node
|
|
13667
13685
|
linkType: hard
|
|
13668
13686
|
|
|
@@ -15736,9 +15754,9 @@ __metadata:
|
|
|
15736
15754
|
linkType: hard
|
|
15737
15755
|
|
|
15738
15756
|
"picocolors@npm:^1.0.0, picocolors@npm:^1.0.1, picocolors@npm:^1.1.0":
|
|
15739
|
-
version: 1.1.
|
|
15740
|
-
resolution: "picocolors@npm:1.1.
|
|
15741
|
-
checksum: 10c0/
|
|
15757
|
+
version: 1.1.1
|
|
15758
|
+
resolution: "picocolors@npm:1.1.1"
|
|
15759
|
+
checksum: 10c0/e2e3e8170ab9d7c7421969adaa7e1b31434f789afb9b3f115f6b96d91945041ac3ceb02e9ec6fe6510ff036bcc0bf91e69a1772edc0b707e12b19c0f2d6bcf58
|
|
15742
15760
|
languageName: node
|
|
15743
15761
|
linkType: hard
|
|
15744
15762
|
|
|
@@ -20233,8 +20251,8 @@ __metadata:
|
|
|
20233
20251
|
linkType: hard
|
|
20234
20252
|
|
|
20235
20253
|
"terser@npm:^5.3.4":
|
|
20236
|
-
version: 5.
|
|
20237
|
-
resolution: "terser@npm:5.
|
|
20254
|
+
version: 5.36.0
|
|
20255
|
+
resolution: "terser@npm:5.36.0"
|
|
20238
20256
|
dependencies:
|
|
20239
20257
|
"@jridgewell/source-map": "npm:^0.3.3"
|
|
20240
20258
|
acorn: "npm:^8.8.2"
|
|
@@ -20242,7 +20260,7 @@ __metadata:
|
|
|
20242
20260
|
source-map-support: "npm:~0.5.20"
|
|
20243
20261
|
bin:
|
|
20244
20262
|
terser: bin/terser
|
|
20245
|
-
checksum: 10c0/
|
|
20263
|
+
checksum: 10c0/f4ed2bead19f64789ddcfb85b7cef78f3942f967b8890c54f57d1e35bc7d547d551c6a4c32210bce6ba45b1c738314bbfac6acbc6c762a45cd171777d0c120d9
|
|
20246
20264
|
languageName: node
|
|
20247
20265
|
linkType: hard
|
|
20248
20266
|
|
|
@@ -20520,9 +20538,9 @@ __metadata:
|
|
|
20520
20538
|
linkType: hard
|
|
20521
20539
|
|
|
20522
20540
|
"tslib@npm:^2, tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.1.0, tslib@npm:^2.3.0, tslib@npm:^2.4.0":
|
|
20523
|
-
version: 2.
|
|
20524
|
-
resolution: "tslib@npm:2.
|
|
20525
|
-
checksum: 10c0/
|
|
20541
|
+
version: 2.8.0
|
|
20542
|
+
resolution: "tslib@npm:2.8.0"
|
|
20543
|
+
checksum: 10c0/31e4d14dc1355e9b89e4d3c893a18abb7f90b6886b089c2da91224d0a7752c79f3ddc41bc1aa0a588ac895bd97bb99c5bc2bfdb2f86de849f31caeb3ba79bbe5
|
|
20526
20544
|
languageName: node
|
|
20527
20545
|
linkType: hard
|
|
20528
20546
|
|