@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.
- package/dist/css/tailwind-brandPage.css +2 -318
- package/dist/css/tailwind-crazyDomains.css +100 -100
- package/dist/css/tailwind-designCom.css +110 -110
- package/dist/css/tailwind-designCrowd.css +78 -78
- package/index.js +0 -1
- package/package.json +1 -1
- package/public/css/tailwind-brandCrowd.css +17 -4
- package/public/css/tailwind-brandPage.css +16 -3
- package/public/css/tailwind-crazyDomains.css +17 -4
- package/public/css/tailwind-designCom.css +17 -4
- package/public/css/tailwind-designCrowd.css +17 -4
- package/src/atoms/components/Icon/Icon.stories.js +1 -0
- package/src/atoms/components/Icon/Icon.vue +2 -0
- package/src/atoms/components/Icon/icons/question-alt.vue +20 -0
- package/src/bundles/bundled-translations.json +2 -1
- package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.vue +6 -0
- package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.json +2 -1
- package/src/experiences/components/PublishBrandPageModal/views/PublishedView.vue +19 -0
- package/src/experiences/components/UploadYourLogoApplication/UploadYourLogoApplication.vue +0 -5
- package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploader.vue +1 -8
- package/src/experiences/components/UploadYourLogoOnBoarding/LogoUploadingLoader.vue +0 -17
- package/src/experiences/components/UploadYourLogoOnBoarding/UploadYourLogoOnBoarding.vue +1 -10
- package/.storybook-static/favicon.svg +0 -1
- package/.storybook-static/index.html +0 -156
- package/.storybook-static/index.json +0 -1
- package/.storybook-static/nunito-sans-bold-italic.woff2 +0 -0
- package/.storybook-static/nunito-sans-bold.woff2 +0 -0
- package/.storybook-static/nunito-sans-italic.woff2 +0 -0
- package/.storybook-static/nunito-sans-regular.woff2 +0 -0
- package/.storybook-static/sb-addons/a11y-1/manager-bundle.js +0 -5
- package/.storybook-static/sb-addons/links-2/manager-bundle.js +0 -3
- package/.storybook-static/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +0 -188
- package/.storybook-static/sb-addons/themes-3/manager-bundle.js +0 -3
- package/.storybook-static/sb-common-assets/favicon.svg +0 -1
- package/.storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
- package/.storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
- package/.storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
- package/.storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
- package/.storybook-static/sb-manager/globals-module-info.js +0 -797
- package/.storybook-static/sb-manager/globals-runtime.js +0 -72062
- package/.storybook-static/sb-manager/globals.js +0 -34
- package/.storybook-static/sb-manager/runtime.js +0 -13002
- 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>
|