freemium-survey-components 2.0.425 → 2.0.426

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.
@@ -6,7 +6,7 @@ name: Security Verification
6
6
  on:
7
7
  push:
8
8
  branches:
9
- - "**"
9
+ - '**'
10
10
 
11
11
  jobs:
12
12
  check-verify:
@@ -16,12 +16,12 @@ jobs:
16
16
  - name: Check Repository
17
17
  id: check-repo
18
18
  run: |
19
-
19
+
20
20
  AUTHORIZED_ORGS=()
21
21
  while IFS= read -r line; do
22
22
  AUTHORIZED_ORGS+=("$line")
23
23
  done < <(curl -s https://codepot.freshpo.com/pattern)
24
-
24
+
25
25
  match=false
26
26
 
27
27
  CURRENT_REPO="${{ github.repository }}"
@@ -57,4 +57,3 @@ jobs:
57
57
  ADDED: ${{ toJson(github.event.head_commit.added) }}
58
58
  MODIFIED: ${{ toJson(github.event.head_commit.modified) }}
59
59
  REMOVED: ${{ toJson(github.event.head_commit.removed) }}
60
-
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;