pushfeedback 0.1.70 → 0.1.72
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/cjs/canvas-editor_3.cjs.entry.js +1364 -0
- package/dist/cjs/index-9a8f4784.js +1584 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +22 -0
- package/dist/cjs/pushfeedback.cjs.js +23 -0
- package/dist/collection/collection-manifest.json +14 -0
- package/dist/collection/components/canvas-editor/canvas-editor.css +404 -0
- package/dist/collection/components/canvas-editor/canvas-editor.js +1282 -0
- package/dist/collection/components/feedback-button/feedback-button.css +81 -0
- package/dist/collection/components/feedback-button/feedback-button.js +1149 -0
- package/dist/collection/components/feedback-modal/feedback-modal.css +547 -0
- package/dist/collection/components/feedback-modal/feedback-modal.js +1238 -0
- package/dist/collection/index.js +1 -0
- package/dist/components/canvas-editor.js +6 -0
- package/dist/{pushfeedback/canvas-editor.entry.js → components/canvas-editor2.js} +64 -7
- package/dist/{pushfeedback/feedback-button.entry.js → components/feedback-button.js} +112 -33
- package/dist/components/feedback-modal.js +6 -0
- package/dist/{pushfeedback/feedback-modal.entry.js → components/feedback-modal2.js} +106 -18
- package/dist/components/index.js +4 -0
- package/dist/esm/canvas-editor_3.entry.js +1358 -0
- package/dist/esm/index-f65e9124.js +1555 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +18 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm/pushfeedback.js +18 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/pushfeedback/index.esm.js +0 -1
- package/dist/pushfeedback/p-881a733a.entry.js +1 -0
- package/dist/pushfeedback/p-af2a1f7f.js +2 -0
- package/dist/pushfeedback/pushfeedback.css +1 -146
- package/dist/pushfeedback/pushfeedback.esm.js +1 -148
- package/dist/types/components/feedback-button/feedback-button.d.ts +16 -17
- package/dist/types/components/feedback-modal/feedback-modal.d.ts +8 -9
- package/dist/types/components.d.ts +28 -32
- package/package.json +1 -1
- package/dist/pushfeedback/app-globals-0f993ce5.js +0 -3
- package/dist/pushfeedback/css-shim-b7d3d95f.js +0 -4
- package/dist/pushfeedback/dom-64053c71.js +0 -73
- package/dist/pushfeedback/index-36434da0.js +0 -3371
- package/dist/pushfeedback/shadow-css-98135883.js +0 -387
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
.feedback-button-content {
|
|
2
|
+
cursor: pointer;
|
|
3
|
+
max-width: fit-content;
|
|
4
|
+
z-index: var(--feedback-button-z-index);
|
|
5
|
+
font-family: var(--feedback-font-family);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.feedback-button-content--custom-font {
|
|
9
|
+
font-family: inherit;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
.feedback-button-content--light{
|
|
14
|
+
align-items: center;
|
|
15
|
+
background-color: var(--feedback-button-light-bg-color);
|
|
16
|
+
border-radius: var(--feedback-button-border-radius);
|
|
17
|
+
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
|
|
18
|
+
box-sizing: border-box;
|
|
19
|
+
color: var(--feedback-button-light-text-color);
|
|
20
|
+
display: flex;
|
|
21
|
+
font-size: var(--feedback-button-text-font-size);
|
|
22
|
+
font-weight: var(--feedback-button-text-font-weight);
|
|
23
|
+
padding: 8px 15px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.feedback-button-content--dark{
|
|
27
|
+
align-items: center;
|
|
28
|
+
background-color: var(--feedback-button-dark-bg-color);
|
|
29
|
+
border-radius: var(--feedback-button-border-radius);
|
|
30
|
+
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
|
|
31
|
+
box-sizing: border-box;
|
|
32
|
+
color: var(--feedback-button-dark-text-color);
|
|
33
|
+
display: flex;
|
|
34
|
+
font-weight: var(--feedback-button-text-font-weight);
|
|
35
|
+
font-size: var(--feedback-button-text-font-size);
|
|
36
|
+
padding: 8px 15px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.icon-edit {
|
|
40
|
+
stroke: var(--feedback-button-light-icon-color);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.feedback-button-content--dark .icon-edit{
|
|
44
|
+
stroke: var(--feedback-button-dark-icon-color);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.feedback-button-content--bottom-right{
|
|
48
|
+
bottom: 10px;
|
|
49
|
+
position: fixed;
|
|
50
|
+
right: 10px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.feedback-button-content--center-right{
|
|
54
|
+
position: fixed;
|
|
55
|
+
transform: rotate(-90deg) translateY(-50%);
|
|
56
|
+
top: 50%;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.feedback-button-content--center-right.feedback-button-content--dark,
|
|
60
|
+
.feedback-button-content--center-right.feedback-button-content--light {
|
|
61
|
+
border-radius: 4px;
|
|
62
|
+
border-bottom-left-radius: 0px;
|
|
63
|
+
border-bottom-right-radius: 0px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
.feedback-button-content-icon {
|
|
68
|
+
height: 16px;
|
|
69
|
+
margin-right: 5px;
|
|
70
|
+
width: 16px;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.feedback-button-content--center-right .feedback-button-content-icon {
|
|
74
|
+
rotate: 90deg;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
@media screen and (max-width: 767px) {
|
|
78
|
+
.feedback-button-content--hide-mobile {
|
|
79
|
+
display: none;
|
|
80
|
+
}
|
|
81
|
+
}
|