freemium-survey-components 2.0.410 → 2.0.412
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,3 +57,4 @@ 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
|
@@ -380,6 +380,8 @@ div.surveyserv-widget-container.compact-container-style .fsc-checkbox-group butt
|
|
|
380
380
|
border: 1px solid var(--button-focus-color, var(--default-button-focus-color));
|
|
381
381
|
border-radius: 4px;
|
|
382
382
|
transition: all 0.2s ease-in-out;
|
|
383
|
+
word-break: break-word;
|
|
384
|
+
overflow-wrap: break-word;
|
|
383
385
|
}
|
|
384
386
|
.fsc-dropdown-base .fsc-dropdown-trigger .fsc-dropdown-select-icon {
|
|
385
387
|
display: grid;
|
|
@@ -412,6 +414,8 @@ div.surveyserv-widget-container.compact-container-style .fsc-checkbox-group butt
|
|
|
412
414
|
}
|
|
413
415
|
|
|
414
416
|
.fsc-dropdown-content {
|
|
417
|
+
word-break: break-word;
|
|
418
|
+
overflow-wrap: break-word;
|
|
415
419
|
gap: 8px;
|
|
416
420
|
padding: 8px;
|
|
417
421
|
overflow: auto;
|