freemium-survey-components 2.0.425 → 2.0.427
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/lib/bundle.css +46 -0
- package/lib/index.cjs.js +6 -6
- package/lib/index.esm.js +2 -2
- package/lib/types/components/link-preview/index.d.ts +5 -0
- package/lib/types/survey/meta-channel-preview/index.d.ts +5 -2
- package/lib/types/survey/meta-channel-preview/preview-channel.d.ts +3 -2
- package/lib/types/types.d.ts +15 -0
- package/package.json +1 -1
package/lib/bundle.css
CHANGED
|
@@ -3950,6 +3950,52 @@ div.surveyserv-widget-container.compact-container-style .fsc-radio-group button.
|
|
|
3950
3950
|
align-items: center;
|
|
3951
3951
|
gap: 6px;
|
|
3952
3952
|
}
|
|
3953
|
+
.fsc-link-preview {
|
|
3954
|
+
font-size: var(--fsc-font-size);
|
|
3955
|
+
font-family: var(--fsc-default-font-family);
|
|
3956
|
+
padding: 8px 8px 16px 8px;
|
|
3957
|
+
border-radius: 16px;
|
|
3958
|
+
max-width: 225px;
|
|
3959
|
+
background-color: #f1f1f1;
|
|
3960
|
+
display: flex;
|
|
3961
|
+
flex-direction: column;
|
|
3962
|
+
gap: 8px;
|
|
3963
|
+
}
|
|
3964
|
+
.fsc-link-preview__meta {
|
|
3965
|
+
display: flex;
|
|
3966
|
+
flex-direction: column;
|
|
3967
|
+
gap: 6px;
|
|
3968
|
+
padding-bottom: 6px;
|
|
3969
|
+
background-color: #fff;
|
|
3970
|
+
}
|
|
3971
|
+
.fsc-link-preview__meta__logo img {
|
|
3972
|
+
min-height: 119px;
|
|
3973
|
+
border-radius: 4px;
|
|
3974
|
+
width: 100%;
|
|
3975
|
+
height: 100%;
|
|
3976
|
+
objectfit: cover;
|
|
3977
|
+
}
|
|
3978
|
+
.fsc-link-preview__meta__title {
|
|
3979
|
+
font-weight: 600;
|
|
3980
|
+
}
|
|
3981
|
+
.fsc-link-preview__meta__domain {
|
|
3982
|
+
font-size: 12px;
|
|
3983
|
+
}
|
|
3984
|
+
.fsc-link-preview__meta__domain, .fsc-link-preview__meta__description, .fsc-link-preview__meta__title {
|
|
3985
|
+
padding: 0 4px;
|
|
3986
|
+
}
|
|
3987
|
+
.fsc-link-preview__meta--no-logo {
|
|
3988
|
+
padding-top: 6px;
|
|
3989
|
+
}
|
|
3990
|
+
.fsc-link-preview__url {
|
|
3991
|
+
word-break: break-all;
|
|
3992
|
+
}
|
|
3993
|
+
.fsc-link-preview--whatsapp {
|
|
3994
|
+
background-color: #fff;
|
|
3995
|
+
}
|
|
3996
|
+
.fsc-link-preview--whatsapp .fsc-link-preview__meta {
|
|
3997
|
+
background-color: #f1f1f1;
|
|
3998
|
+
}
|
|
3953
3999
|
.whatsapp-container {
|
|
3954
4000
|
--wa-message-margin: 40px;
|
|
3955
4001
|
--wa-message-border: 6px;
|