@designcrowd/fe-shared-lib 1.5.9 → 1.5.10-kp-1

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.
Files changed (54) hide show
  1. package/.storybook-static/css/tailwind-brandCrowd.css +2472 -0
  2. package/.storybook-static/css/tailwind-brandPage.css +2156 -0
  3. package/.storybook-static/css/tailwind-crazyDomains.css +2472 -0
  4. package/.storybook-static/css/tailwind-designCom.css +2472 -0
  5. package/.storybook-static/css/tailwind-designCrowd.css +2472 -0
  6. package/.storybook-static/favicon.svg +1 -0
  7. package/.storybook-static/index.html +156 -0
  8. package/.storybook-static/index.json +1 -0
  9. package/.storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  10. package/.storybook-static/nunito-sans-bold.woff2 +0 -0
  11. package/.storybook-static/nunito-sans-italic.woff2 +0 -0
  12. package/.storybook-static/nunito-sans-regular.woff2 +0 -0
  13. package/.storybook-static/project.json +1 -0
  14. package/.storybook-static/sb-addons/a11y-1/manager-bundle.js +5 -0
  15. package/.storybook-static/sb-addons/links-2/manager-bundle.js +3 -0
  16. package/.storybook-static/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +188 -0
  17. package/.storybook-static/sb-addons/themes-3/manager-bundle.js +3 -0
  18. package/.storybook-static/sb-common-assets/favicon.svg +1 -0
  19. package/.storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  20. package/.storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  21. package/.storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  22. package/.storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  23. package/.storybook-static/sb-manager/globals-module-info.js +797 -0
  24. package/.storybook-static/sb-manager/globals-runtime.js +72062 -0
  25. package/.storybook-static/sb-manager/globals.js +34 -0
  26. package/.storybook-static/sb-manager/runtime.js +13002 -0
  27. package/dist/css/tailwind-brandCrowd.css +27 -0
  28. package/dist/css/tailwind-brandPage.css +27 -0
  29. package/dist/css/tailwind-crazyDomains.css +27 -0
  30. package/dist/css/tailwind-designCom.css +27 -0
  31. package/dist/css/tailwind-designCrowd.css +27 -0
  32. package/package.json +1 -1
  33. package/public/css/tailwind-brandCrowd.css +2494 -0
  34. package/public/css/tailwind-brandPage.css +2178 -0
  35. package/public/css/tailwind-crazyDomains.css +2494 -0
  36. package/public/css/tailwind-designCom.css +2494 -0
  37. package/public/css/tailwind-designCrowd.css +2494 -0
  38. package/src/bundles/bundled-translations.de-DE.json +3 -1
  39. package/src/bundles/bundled-translations.es-ES.json +3 -1
  40. package/src/bundles/bundled-translations.fr-CA.json +3 -1
  41. package/src/bundles/bundled-translations.fr-FR.json +3 -1
  42. package/src/bundles/bundled-translations.json +3 -1
  43. package/src/bundles/bundled-translations.pt-BR.json +3 -1
  44. package/src/bundles/bundled-translations.pt-PT.json +3 -1
  45. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.vue +5 -0
  46. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.de-DE.json +23 -21
  47. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.es-ES.json +23 -21
  48. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-CA.json +23 -21
  49. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-FR.json +23 -21
  50. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.json +3 -1
  51. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-BR.json +23 -21
  52. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-PT.json +23 -21
  53. package/src/experiences/components/PublishBrandPageModal/views/PublishWhenNoDomainsView.vue +14 -1
  54. package/src/experiences/components/WebsitesContextualUpgradeModal/WebsiteContextualUpgradeModal.vue +133 -0
@@ -956,6 +956,9 @@ video {
956
956
  .tw-max-w-2xl {
957
957
  max-width: 42rem;
958
958
  }
959
+ .tw-max-w-3xl {
960
+ max-width: 48rem;
961
+ }
959
962
  .tw-max-w-full {
960
963
  max-width: 100%;
961
964
  }
@@ -1814,6 +1817,10 @@ video {
1814
1817
  font-size: 1.5rem;
1815
1818
  line-height: 2rem;
1816
1819
  }
1820
+ .tw-text-3xl {
1821
+ font-size: 1.875rem;
1822
+ line-height: 2.25rem;
1823
+ }
1817
1824
  .tw-text-4xl {
1818
1825
  font-size: 2.25rem;
1819
1826
  line-height: 2.5rem;
@@ -2298,6 +2305,10 @@ video {
2298
2305
  right: 1.5rem;
2299
2306
  }
2300
2307
 
2308
+ .md\:tw-order-first {
2309
+ order: -9999;
2310
+ }
2311
+
2301
2312
  .md\:tw-mb-0 {
2302
2313
  margin-bottom: 0px;
2303
2314
  }
@@ -2362,6 +2373,10 @@ video {
2362
2373
  width: 6rem;
2363
2374
  }
2364
2375
 
2376
+ .md\:tw-w-3\/4 {
2377
+ width: 75%;
2378
+ }
2379
+
2365
2380
  .md\:tw-w-auto {
2366
2381
  width: auto;
2367
2382
  }
@@ -2370,10 +2385,18 @@ video {
2370
2385
  width: 100%;
2371
2386
  }
2372
2387
 
2388
+ .md\:tw-max-w-40 {
2389
+ max-width: 10rem;
2390
+ }
2391
+
2373
2392
  .md\:tw-max-w-full {
2374
2393
  max-width: 100%;
2375
2394
  }
2376
2395
 
2396
+ .md\:tw-flex-1 {
2397
+ flex: 1 1 0%;
2398
+ }
2399
+
2377
2400
  .md\:tw-grow {
2378
2401
  flex-grow: 1;
2379
2402
  }
@@ -2469,6 +2492,10 @@ video {
2469
2492
  padding-bottom: 0.5rem;
2470
2493
  }
2471
2494
 
2495
+ .md\:tw-pb-0 {
2496
+ padding-bottom: 0px;
2497
+ }
2498
+
2472
2499
  .md\:tw-pl-4 {
2473
2500
  padding-left: 1rem;
2474
2501
  }
@@ -956,6 +956,9 @@ video {
956
956
  .tw-max-w-2xl {
957
957
  max-width: 42rem;
958
958
  }
959
+ .tw-max-w-3xl {
960
+ max-width: 48rem;
961
+ }
959
962
  .tw-max-w-full {
960
963
  max-width: 100%;
961
964
  }
@@ -1662,6 +1665,10 @@ video {
1662
1665
  font-size: 1.5rem;
1663
1666
  line-height: 2rem;
1664
1667
  }
1668
+ .tw-text-3xl {
1669
+ font-size: 1.875rem;
1670
+ line-height: 2.25rem;
1671
+ }
1665
1672
  .tw-text-4xl {
1666
1673
  font-size: 2.25rem;
1667
1674
  line-height: 2.5rem;
@@ -1982,6 +1989,10 @@ video {
1982
1989
  right: 1.5rem;
1983
1990
  }
1984
1991
 
1992
+ .md\:tw-order-first {
1993
+ order: -9999;
1994
+ }
1995
+
1985
1996
  .md\:tw-mb-0 {
1986
1997
  margin-bottom: 0px;
1987
1998
  }
@@ -2046,6 +2057,10 @@ video {
2046
2057
  width: 6rem;
2047
2058
  }
2048
2059
 
2060
+ .md\:tw-w-3\/4 {
2061
+ width: 75%;
2062
+ }
2063
+
2049
2064
  .md\:tw-w-auto {
2050
2065
  width: auto;
2051
2066
  }
@@ -2054,10 +2069,18 @@ video {
2054
2069
  width: 100%;
2055
2070
  }
2056
2071
 
2072
+ .md\:tw-max-w-40 {
2073
+ max-width: 10rem;
2074
+ }
2075
+
2057
2076
  .md\:tw-max-w-full {
2058
2077
  max-width: 100%;
2059
2078
  }
2060
2079
 
2080
+ .md\:tw-flex-1 {
2081
+ flex: 1 1 0%;
2082
+ }
2083
+
2061
2084
  .md\:tw-grow {
2062
2085
  flex-grow: 1;
2063
2086
  }
@@ -2153,6 +2176,10 @@ video {
2153
2176
  padding-bottom: 0.5rem;
2154
2177
  }
2155
2178
 
2179
+ .md\:tw-pb-0 {
2180
+ padding-bottom: 0px;
2181
+ }
2182
+
2156
2183
  .md\:tw-pl-4 {
2157
2184
  padding-left: 1rem;
2158
2185
  }
@@ -956,6 +956,9 @@ video {
956
956
  .tw-max-w-2xl {
957
957
  max-width: 42rem;
958
958
  }
959
+ .tw-max-w-3xl {
960
+ max-width: 48rem;
961
+ }
959
962
  .tw-max-w-full {
960
963
  max-width: 100%;
961
964
  }
@@ -1814,6 +1817,10 @@ video {
1814
1817
  font-size: 1.5rem;
1815
1818
  line-height: 2rem;
1816
1819
  }
1820
+ .tw-text-3xl {
1821
+ font-size: 1.875rem;
1822
+ line-height: 2.25rem;
1823
+ }
1817
1824
  .tw-text-4xl {
1818
1825
  font-size: 2.25rem;
1819
1826
  line-height: 2.5rem;
@@ -2298,6 +2305,10 @@ video {
2298
2305
  right: 1.5rem;
2299
2306
  }
2300
2307
 
2308
+ .md\:tw-order-first {
2309
+ order: -9999;
2310
+ }
2311
+
2301
2312
  .md\:tw-mb-0 {
2302
2313
  margin-bottom: 0px;
2303
2314
  }
@@ -2362,6 +2373,10 @@ video {
2362
2373
  width: 6rem;
2363
2374
  }
2364
2375
 
2376
+ .md\:tw-w-3\/4 {
2377
+ width: 75%;
2378
+ }
2379
+
2365
2380
  .md\:tw-w-auto {
2366
2381
  width: auto;
2367
2382
  }
@@ -2370,10 +2385,18 @@ video {
2370
2385
  width: 100%;
2371
2386
  }
2372
2387
 
2388
+ .md\:tw-max-w-40 {
2389
+ max-width: 10rem;
2390
+ }
2391
+
2373
2392
  .md\:tw-max-w-full {
2374
2393
  max-width: 100%;
2375
2394
  }
2376
2395
 
2396
+ .md\:tw-flex-1 {
2397
+ flex: 1 1 0%;
2398
+ }
2399
+
2377
2400
  .md\:tw-grow {
2378
2401
  flex-grow: 1;
2379
2402
  }
@@ -2469,6 +2492,10 @@ video {
2469
2492
  padding-bottom: 0.5rem;
2470
2493
  }
2471
2494
 
2495
+ .md\:tw-pb-0 {
2496
+ padding-bottom: 0px;
2497
+ }
2498
+
2472
2499
  .md\:tw-pl-4 {
2473
2500
  padding-left: 1rem;
2474
2501
  }
@@ -956,6 +956,9 @@ video {
956
956
  .tw-max-w-2xl {
957
957
  max-width: 42rem;
958
958
  }
959
+ .tw-max-w-3xl {
960
+ max-width: 48rem;
961
+ }
959
962
  .tw-max-w-full {
960
963
  max-width: 100%;
961
964
  }
@@ -1814,6 +1817,10 @@ video {
1814
1817
  font-size: 1.5rem;
1815
1818
  line-height: 2rem;
1816
1819
  }
1820
+ .tw-text-3xl {
1821
+ font-size: 1.875rem;
1822
+ line-height: 2.25rem;
1823
+ }
1817
1824
  .tw-text-4xl {
1818
1825
  font-size: 2.25rem;
1819
1826
  line-height: 2.5rem;
@@ -2298,6 +2305,10 @@ video {
2298
2305
  right: 1.5rem;
2299
2306
  }
2300
2307
 
2308
+ .md\:tw-order-first {
2309
+ order: -9999;
2310
+ }
2311
+
2301
2312
  .md\:tw-mb-0 {
2302
2313
  margin-bottom: 0px;
2303
2314
  }
@@ -2362,6 +2373,10 @@ video {
2362
2373
  width: 6rem;
2363
2374
  }
2364
2375
 
2376
+ .md\:tw-w-3\/4 {
2377
+ width: 75%;
2378
+ }
2379
+
2365
2380
  .md\:tw-w-auto {
2366
2381
  width: auto;
2367
2382
  }
@@ -2370,10 +2385,18 @@ video {
2370
2385
  width: 100%;
2371
2386
  }
2372
2387
 
2388
+ .md\:tw-max-w-40 {
2389
+ max-width: 10rem;
2390
+ }
2391
+
2373
2392
  .md\:tw-max-w-full {
2374
2393
  max-width: 100%;
2375
2394
  }
2376
2395
 
2396
+ .md\:tw-flex-1 {
2397
+ flex: 1 1 0%;
2398
+ }
2399
+
2377
2400
  .md\:tw-grow {
2378
2401
  flex-grow: 1;
2379
2402
  }
@@ -2469,6 +2492,10 @@ video {
2469
2492
  padding-bottom: 0.5rem;
2470
2493
  }
2471
2494
 
2495
+ .md\:tw-pb-0 {
2496
+ padding-bottom: 0px;
2497
+ }
2498
+
2472
2499
  .md\:tw-pl-4 {
2473
2500
  padding-left: 1rem;
2474
2501
  }
@@ -956,6 +956,9 @@ video {
956
956
  .tw-max-w-2xl {
957
957
  max-width: 42rem;
958
958
  }
959
+ .tw-max-w-3xl {
960
+ max-width: 48rem;
961
+ }
959
962
  .tw-max-w-full {
960
963
  max-width: 100%;
961
964
  }
@@ -1814,6 +1817,10 @@ video {
1814
1817
  font-size: 1.5rem;
1815
1818
  line-height: 2rem;
1816
1819
  }
1820
+ .tw-text-3xl {
1821
+ font-size: 1.875rem;
1822
+ line-height: 2.25rem;
1823
+ }
1817
1824
  .tw-text-4xl {
1818
1825
  font-size: 2.25rem;
1819
1826
  line-height: 2.5rem;
@@ -2298,6 +2305,10 @@ video {
2298
2305
  right: 1.5rem;
2299
2306
  }
2300
2307
 
2308
+ .md\:tw-order-first {
2309
+ order: -9999;
2310
+ }
2311
+
2301
2312
  .md\:tw-mb-0 {
2302
2313
  margin-bottom: 0px;
2303
2314
  }
@@ -2362,6 +2373,10 @@ video {
2362
2373
  width: 6rem;
2363
2374
  }
2364
2375
 
2376
+ .md\:tw-w-3\/4 {
2377
+ width: 75%;
2378
+ }
2379
+
2365
2380
  .md\:tw-w-auto {
2366
2381
  width: auto;
2367
2382
  }
@@ -2370,10 +2385,18 @@ video {
2370
2385
  width: 100%;
2371
2386
  }
2372
2387
 
2388
+ .md\:tw-max-w-40 {
2389
+ max-width: 10rem;
2390
+ }
2391
+
2373
2392
  .md\:tw-max-w-full {
2374
2393
  max-width: 100%;
2375
2394
  }
2376
2395
 
2396
+ .md\:tw-flex-1 {
2397
+ flex: 1 1 0%;
2398
+ }
2399
+
2377
2400
  .md\:tw-grow {
2378
2401
  flex-grow: 1;
2379
2402
  }
@@ -2469,6 +2492,10 @@ video {
2469
2492
  padding-bottom: 0.5rem;
2470
2493
  }
2471
2494
 
2495
+ .md\:tw-pb-0 {
2496
+ padding-bottom: 0px;
2497
+ }
2498
+
2472
2499
  .md\:tw-pl-4 {
2473
2500
  padding-left: 1rem;
2474
2501
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@designcrowd/fe-shared-lib",
3
- "version": "1.5.9",
3
+ "version": "1.5.10-kp-1",
4
4
  "scripts": {
5
5
  "start": "run-p storybook watch:translation",
6
6
  "build": "npm run build:css --production",