@designcrowd/fe-shared-lib 1.5.31 → 1.5.32-ast-dbc

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 (43) hide show
  1. package/dist/css/tailwind-brandPage.css +2 -318
  2. package/dist/css/tailwind-crazyDomains.css +100 -100
  3. package/dist/css/tailwind-designCom.css +110 -110
  4. package/dist/css/tailwind-designCrowd.css +78 -78
  5. package/index.js +0 -1
  6. package/package.json +1 -1
  7. package/public/css/tailwind-brandCrowd.css +17 -4
  8. package/public/css/tailwind-brandPage.css +16 -3
  9. package/public/css/tailwind-crazyDomains.css +17 -4
  10. package/public/css/tailwind-designCom.css +17 -4
  11. package/public/css/tailwind-designCrowd.css +17 -4
  12. package/src/atoms/components/Icon/Icon.stories.js +1 -0
  13. package/src/atoms/components/Icon/Icon.vue +2 -0
  14. package/src/atoms/components/Icon/icons/question-alt.vue +20 -0
  15. package/src/bundles/bundled-translations.json +2 -1
  16. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.vue +6 -0
  17. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.json +2 -1
  18. package/src/experiences/components/PublishBrandPageModal/views/PublishedView.vue +19 -0
  19. package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.vue +0 -5
  20. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploader.vue +1 -8
  21. package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadingLoader.vue +0 -17
  22. package/src/experiences/components/UploadYourLogoOnBoarding/UploadYourLogoOnBoarding.vue +1 -10
  23. package/.storybook-static/favicon.svg +0 -1
  24. package/.storybook-static/index.html +0 -156
  25. package/.storybook-static/index.json +0 -1
  26. package/.storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  27. package/.storybook-static/nunito-sans-bold.woff2 +0 -0
  28. package/.storybook-static/nunito-sans-italic.woff2 +0 -0
  29. package/.storybook-static/nunito-sans-regular.woff2 +0 -0
  30. package/.storybook-static/sb-addons/a11y-1/manager-bundle.js +0 -5
  31. package/.storybook-static/sb-addons/links-2/manager-bundle.js +0 -3
  32. package/.storybook-static/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +0 -188
  33. package/.storybook-static/sb-addons/themes-3/manager-bundle.js +0 -3
  34. package/.storybook-static/sb-common-assets/favicon.svg +0 -1
  35. package/.storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  36. package/.storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  37. package/.storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  38. package/.storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  39. package/.storybook-static/sb-manager/globals-module-info.js +0 -797
  40. package/.storybook-static/sb-manager/globals-runtime.js +0 -72062
  41. package/.storybook-static/sb-manager/globals.js +0 -34
  42. package/.storybook-static/sb-manager/runtime.js +0 -13002
  43. package/src/atoms/components/AiPoweredLoader/AiPoweredLoader.vue +0 -146
@@ -1,146 +0,0 @@
1
- <template>
2
- <div class="tw-relative tw-flex tw-items-center tw-justify-center tw-w-24 tw-h-24">
3
- <!-- Central AI core -->
4
- <div class="tw-absolute tw-w-12 tw-h-12 tw-rounded-full tw-bg-gradient-to-r tw-from-blue-500 tw-to-purple-600 tw-animate-pulse"></div>
5
-
6
- <!-- Orbiting sparkles -->
7
- <div
8
- v-for="(frame, index) in frames"
9
- :key="`sparkle-${index}`"
10
- :class="[
11
- 'tw-absolute tw-w-2 tw-h-2 tw-rounded-full tw-transition-all tw-duration-300',
12
- currentFrame === index ? 'tw-opacity-100 tw-scale-125' : 'tw-opacity-40 tw-scale-75',
13
- getSparkleColor(index),
14
- getSparklePosition(index)
15
- ]"
16
- :style="getSparkleStyle(index)"
17
- ></div>
18
-
19
- <!-- Pulsing rings -->
20
- <div class="tw-absolute tw-w-16 tw-h-16 tw-rounded-full tw-border tw-border-blue-200 tw-animate-ping tw-opacity-30"></div>
21
- <div class="tw-absolute tw-w-20 tw-h-20 tw-rounded-full tw-border tw-border-purple-200 tw-animate-ping tw-animation-delay-75 tw-opacity-20"></div>
22
-
23
- <!-- Screen reader text -->
24
- <span class="tw-sr-only">{{ alt }}</span>
25
- </div>
26
- </template>
27
-
28
- <script>
29
- export default {
30
- name: 'AiPoweredLoader',
31
- props: {
32
- interval: {
33
- type: Number,
34
- default: 150,
35
- },
36
- alt: {
37
- type: String,
38
- default: 'loading',
39
- },
40
- },
41
- data() {
42
- return {
43
- currentFrame: 0,
44
- frames: 8, // Number of sparkles
45
- animationInterval: null,
46
- };
47
- },
48
- mounted() {
49
- this.startAnimation();
50
- },
51
- beforeUnmount() {
52
- this.stopAnimation();
53
- },
54
- methods: {
55
- startAnimation() {
56
- this.animationInterval = setInterval(() => {
57
- this.currentFrame = (this.currentFrame + 1) % this.frames;
58
- }, this.interval);
59
- },
60
- stopAnimation() {
61
- if (this.animationInterval) {
62
- clearInterval(this.animationInterval);
63
- this.animationInterval = null;
64
- }
65
- },
66
- getSparkleColor(index) {
67
- const colors = [
68
- 'tw-bg-blue-400',
69
- 'tw-bg-purple-400',
70
- 'tw-bg-indigo-400',
71
- 'tw-bg-cyan-400',
72
- 'tw-bg-blue-300',
73
- 'tw-bg-purple-300',
74
- 'tw-bg-indigo-300',
75
- 'tw-bg-cyan-300',
76
- ];
77
- return colors[index % colors.length];
78
- },
79
- getSparklePosition(index) {
80
- // Position sparkles in a circle around the center
81
- const angle = (index / this.frames) * 2 * Math.PI;
82
- const radius = 35; // Distance from center
83
- const x = Math.cos(angle) * radius;
84
- const y = Math.sin(angle) * radius;
85
-
86
- return {
87
- transform: `translate(${x}px, ${y}px)`,
88
- };
89
- },
90
- getSparkleStyle(index) {
91
- const angle = (index / this.frames) * 2 * Math.PI;
92
- const radius = 35;
93
- const x = Math.cos(angle) * radius;
94
- const y = Math.sin(angle) * radius;
95
-
96
- return {
97
- transform: `translate(${x}px, ${y}px)`,
98
- animationDelay: `${index * (this.interval / this.frames)}ms`,
99
- };
100
- },
101
- },
102
- };
103
- </script>
104
-
105
- <style scoped>
106
- @keyframes sparkle-glow {
107
- 0%, 100% {
108
- transform: scale(0.8);
109
- opacity: 0.6;
110
- }
111
- 50% {
112
- transform: scale(1.2);
113
- opacity: 1;
114
- }
115
- }
116
-
117
- .tw-animate-sparkle {
118
- animation: sparkle-glow 1s ease-in-out infinite;
119
- }
120
-
121
- @keyframes gentle-rotation {
122
- from {
123
- transform: rotate(0deg);
124
- }
125
- to {
126
- transform: rotate(360deg);
127
- }
128
- }
129
-
130
- .ai-loader-container {
131
- animation: gentle-rotation 4s linear infinite;
132
- }
133
-
134
- /* Custom animation delays for staggered effect */
135
- .tw-animation-delay-75 {
136
- animation-delay: 75ms;
137
- }
138
-
139
- .tw-animation-delay-150 {
140
- animation-delay: 150ms;
141
- }
142
-
143
- .tw-animation-delay-225 {
144
- animation-delay: 225ms;
145
- }
146
- </style>