@unicef-polymer/etools-form-builder 2.1.0 → 2.1.2
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/LICENSE +674 -674
- package/README.md +1 -1
- package/dist/assets/translations.d.ts +6 -0
- package/dist/assets/translations.js +67 -0
- package/dist/form-attachments-popup/form-attachments-popup.d.ts +86 -85
- package/dist/form-attachments-popup/form-attachments-popup.helper.d.ts +8 -8
- package/dist/form-attachments-popup/form-attachments-popup.helper.js +14 -14
- package/dist/form-attachments-popup/form-attachments-popup.js +255 -248
- package/dist/form-attachments-popup/form-attachments-popup.tpl.d.ts +3 -3
- package/dist/form-attachments-popup/form-attachments-popup.tpl.js +91 -89
- package/dist/form-attachments-popup/index.d.ts +2 -2
- package/dist/form-attachments-popup/index.js +2 -2
- package/dist/form-fields/abstract-field-base.class.d.ts +33 -28
- package/dist/form-fields/abstract-field-base.class.js +194 -176
- package/dist/form-fields/field-renderer-component.d.ts +20 -20
- package/dist/form-fields/field-renderer-component.js +249 -249
- package/dist/form-fields/index.d.ts +12 -12
- package/dist/form-fields/index.js +12 -12
- package/dist/form-fields/repeatable-fields/repeatable-attachment-field.d.ts +17 -17
- package/dist/form-fields/repeatable-fields/repeatable-attachment-field.js +209 -208
- package/dist/form-fields/repeatable-fields/repeatable-base-field.d.ts +20 -20
- package/dist/form-fields/repeatable-fields/repeatable-base-field.js +124 -123
- package/dist/form-fields/repeatable-fields/repeatable-number-field.d.ts +10 -10
- package/dist/form-fields/repeatable-fields/repeatable-number-field.js +67 -66
- package/dist/form-fields/repeatable-fields/repeatable-scale-field.d.ts +15 -15
- package/dist/form-fields/repeatable-fields/repeatable-scale-field.js +108 -108
- package/dist/form-fields/repeatable-fields/repeatable-text-field.d.ts +8 -8
- package/dist/form-fields/repeatable-fields/repeatable-text-field.js +53 -53
- package/dist/form-fields/single-fields/attachment-field.d.ts +16 -16
- package/dist/form-fields/single-fields/attachment-field.js +98 -97
- package/dist/form-fields/single-fields/base-field.d.ts +11 -11
- package/dist/form-fields/single-fields/base-field.js +58 -57
- package/dist/form-fields/single-fields/boolean-field.d.ts +8 -8
- package/dist/form-fields/single-fields/boolean-field.js +49 -49
- package/dist/form-fields/single-fields/number-field.d.ts +10 -10
- package/dist/form-fields/single-fields/number-field.js +67 -66
- package/dist/form-fields/single-fields/scale-field.d.ts +18 -18
- package/dist/form-fields/single-fields/scale-field.js +108 -107
- package/dist/form-fields/single-fields/text-field.d.ts +8 -8
- package/dist/form-fields/single-fields/text-field.js +54 -54
- package/dist/form-groups/form-abstract-group.d.ts +65 -60
- package/dist/form-groups/form-abstract-group.js +375 -353
- package/dist/form-groups/form-card.d.ts +32 -32
- package/dist/form-groups/form-card.js +113 -108
- package/dist/form-groups/form-collapsed-card.d.ts +70 -70
- package/dist/form-groups/form-collapsed-card.js +254 -253
- package/dist/form-groups/index.d.ts +3 -3
- package/dist/form-groups/index.js +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/dist/lib/additional-components/confirmation-dialog.d.ts +18 -16
- package/dist/lib/additional-components/confirmation-dialog.js +72 -65
- package/dist/lib/additional-components/etools-fb-card.d.ts +21 -16
- package/dist/lib/additional-components/etools-fb-card.js +238 -215
- package/dist/lib/styles/attachments.styles.d.ts +2 -2
- package/dist/lib/styles/attachments.styles.js +72 -72
- package/dist/lib/styles/card-styles.d.ts +2 -2
- package/dist/lib/styles/card-styles.js +154 -154
- package/dist/lib/styles/dialog.styles.d.ts +2 -2
- package/dist/lib/styles/dialog.styles.js +85 -85
- package/dist/lib/styles/elevation-styles.d.ts +9 -9
- package/dist/lib/styles/elevation-styles.js +43 -43
- package/dist/lib/styles/flex-layout-classes.d.ts +2 -2
- package/dist/lib/styles/flex-layout-classes.js +319 -319
- package/dist/lib/styles/form-builder-card.styles.d.ts +2 -2
- package/dist/lib/styles/form-builder-card.styles.js +49 -49
- package/dist/lib/styles/input-styles.d.ts +2 -2
- package/dist/lib/styles/input-styles.js +138 -138
- package/dist/lib/styles/page-layout-styles.d.ts +2 -2
- package/dist/lib/styles/page-layout-styles.js +201 -201
- package/dist/lib/styles/shared-styles.d.ts +2 -2
- package/dist/lib/styles/shared-styles.js +70 -70
- package/dist/lib/types/form-builder.interfaces.d.ts +83 -83
- package/dist/lib/types/form-builder.interfaces.js +0 -0
- package/dist/lib/types/form-builder.types.d.ts +59 -59
- package/dist/lib/types/form-builder.types.js +0 -0
- package/dist/lib/types/global.types.d.ts +4 -4
- package/dist/lib/types/global.types.js +0 -0
- package/dist/lib/utils/dialog.d.ts +10 -10
- package/dist/lib/utils/dialog.js +21 -21
- package/dist/lib/utils/fire-custom-event.d.ts +1 -1
- package/dist/lib/utils/fire-custom-event.js +7 -7
- package/dist/lib/utils/translate.d.ts +1 -0
- package/dist/lib/utils/translate.js +9 -0
- package/dist/lib/utils/validations.helper.d.ts +26 -26
- package/dist/lib/utils/validations.helper.js +42 -35
- package/package.json +56 -56
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
import { css } from 'lit-element';
|
|
2
|
-
// language=CSS
|
|
3
|
-
export const FormBuilderCardStyles = css `
|
|
4
|
-
.overall-finding {
|
|
5
|
-
padding: 15px 25px 20px 45px;
|
|
6
|
-
background-color: var(--secondary-background-color);
|
|
7
|
-
}
|
|
8
|
-
field-renderer {
|
|
9
|
-
position: relative;
|
|
10
|
-
display: block;
|
|
11
|
-
border-bottom: 1px solid var(--light-divider-color);
|
|
12
|
-
}
|
|
13
|
-
field-renderer:last-of-type {
|
|
14
|
-
border-bottom: none;
|
|
15
|
-
}
|
|
16
|
-
.attachments-button {
|
|
17
|
-
color: var(--primary-color);
|
|
18
|
-
font-weight: 500;
|
|
19
|
-
}
|
|
20
|
-
.attachments-button:focus {
|
|
21
|
-
outline: 0;
|
|
22
|
-
box-shadow: 0 0 5px 5px rgb(170 165 165 / 20%);
|
|
23
|
-
background-color: rgba(170, 165, 165, 0.2);
|
|
24
|
-
}
|
|
25
|
-
.attachments-button iron-icon {
|
|
26
|
-
margin-right: 8px;
|
|
27
|
-
}
|
|
28
|
-
.question-container {
|
|
29
|
-
padding: 7px 0;
|
|
30
|
-
width: 100%;
|
|
31
|
-
min-height: 57px;
|
|
32
|
-
box-sizing: border-box;
|
|
33
|
-
justify-content: center;
|
|
34
|
-
}
|
|
35
|
-
.question-text {
|
|
36
|
-
font-weight: 500;
|
|
37
|
-
font-size: 13px;
|
|
38
|
-
color: var(--primary-text-color);
|
|
39
|
-
}
|
|
40
|
-
.question-details {
|
|
41
|
-
font-size: 9px;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
@media (max-width: 380px) {
|
|
45
|
-
.overall-finding {
|
|
46
|
-
padding: 5px;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
`;
|
|
1
|
+
import { css } from 'lit-element';
|
|
2
|
+
// language=CSS
|
|
3
|
+
export const FormBuilderCardStyles = css `
|
|
4
|
+
.overall-finding {
|
|
5
|
+
padding: 15px 25px 20px 45px;
|
|
6
|
+
background-color: var(--secondary-background-color);
|
|
7
|
+
}
|
|
8
|
+
field-renderer {
|
|
9
|
+
position: relative;
|
|
10
|
+
display: block;
|
|
11
|
+
border-bottom: 1px solid var(--light-divider-color);
|
|
12
|
+
}
|
|
13
|
+
field-renderer:last-of-type {
|
|
14
|
+
border-bottom: none;
|
|
15
|
+
}
|
|
16
|
+
.attachments-button {
|
|
17
|
+
color: var(--primary-color);
|
|
18
|
+
font-weight: 500;
|
|
19
|
+
}
|
|
20
|
+
.attachments-button:focus {
|
|
21
|
+
outline: 0;
|
|
22
|
+
box-shadow: 0 0 5px 5px rgb(170 165 165 / 20%);
|
|
23
|
+
background-color: rgba(170, 165, 165, 0.2);
|
|
24
|
+
}
|
|
25
|
+
.attachments-button iron-icon {
|
|
26
|
+
margin-right: 8px;
|
|
27
|
+
}
|
|
28
|
+
.question-container {
|
|
29
|
+
padding: 7px 0;
|
|
30
|
+
width: 100%;
|
|
31
|
+
min-height: 57px;
|
|
32
|
+
box-sizing: border-box;
|
|
33
|
+
justify-content: center;
|
|
34
|
+
}
|
|
35
|
+
.question-text {
|
|
36
|
+
font-weight: 500;
|
|
37
|
+
font-size: 13px;
|
|
38
|
+
color: var(--primary-text-color);
|
|
39
|
+
}
|
|
40
|
+
.question-details {
|
|
41
|
+
font-size: 9px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
@media (max-width: 380px) {
|
|
45
|
+
.overall-finding {
|
|
46
|
+
padding: 5px;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
`;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { TemplateResult } from 'lit-element';
|
|
2
|
-
export declare const InputStyles: TemplateResult;
|
|
1
|
+
import { TemplateResult } from 'lit-element';
|
|
2
|
+
export declare const InputStyles: TemplateResult;
|
|
@@ -1,138 +1,138 @@
|
|
|
1
|
-
import { html } from 'lit-element';
|
|
2
|
-
// language=HTML
|
|
3
|
-
export const InputStyles = html `
|
|
4
|
-
<style>
|
|
5
|
-
etools-dropdown,
|
|
6
|
-
etools-dropdown-multi,
|
|
7
|
-
paper-input,
|
|
8
|
-
paper-textarea,
|
|
9
|
-
paper-dropdown-menu,
|
|
10
|
-
etools-currency-amount-input,
|
|
11
|
-
datepicker-lite {
|
|
12
|
-
outline: none !important;
|
|
13
|
-
padding: 0 12px;
|
|
14
|
-
color: var(--gray-dark, rgba(0, 0, 0, 0.87));
|
|
15
|
-
box-sizing: border-box;
|
|
16
|
-
|
|
17
|
-
--paper-input-container-input-color: var(--gray-dark, rgba(0, 0, 0, 0.87));
|
|
18
|
-
--esmm-placeholder-color: var(--gray-dark, rgba(0, 0, 0, 0.87));
|
|
19
|
-
--esmm-multi-placeholder-color: var(--gray-dark, rgba(0, 0, 0, 0.87));
|
|
20
|
-
|
|
21
|
-
--paper-input-container-focus-color: var(--primary-color, #0099ff);
|
|
22
|
-
|
|
23
|
-
--paper-input-container-label: {
|
|
24
|
-
color: var(--gray-50, rgba(0, 0, 0, 0.5));
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
--paper-input-container-invalid-color: var(--module-error, #ea4022);
|
|
28
|
-
|
|
29
|
-
--paper-input-char-counter: {
|
|
30
|
-
color: var(--gray-light, rgba(0, 0, 0, 0.38));
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
--paper-input-container-label-floating: {
|
|
34
|
-
-webkit-transform: none;
|
|
35
|
-
-moz-transform: none;
|
|
36
|
-
-ms-transform: none;
|
|
37
|
-
-o-transform: none;
|
|
38
|
-
transform: none;
|
|
39
|
-
top: -21px;
|
|
40
|
-
width: 100%;
|
|
41
|
-
font-size: 12px;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
--etools-currency-container-label-floating: {
|
|
45
|
-
-webkit-transform: none;
|
|
46
|
-
-moz-transform: none;
|
|
47
|
-
-ms-transform: none;
|
|
48
|
-
-o-transform: none;
|
|
49
|
-
transform: none;
|
|
50
|
-
top: -21px;
|
|
51
|
-
width: 100%;
|
|
52
|
-
font-size: 12px;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
--paper-input-container-shared-input-style: {
|
|
56
|
-
font-size: 16px;
|
|
57
|
-
width: 100%;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
--paper-input-prefix: {
|
|
61
|
-
margin-right: 10px;
|
|
62
|
-
color: var(--gray-mid, rgba(0, 0, 0, 0.54));
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
--paper-input-error: {
|
|
66
|
-
overflow: hidden;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
--iron-autogrow-textarea: {
|
|
70
|
-
padding: 0;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
etools-dropdown-multi[disabled],
|
|
75
|
-
etools-dropdown[disabled],
|
|
76
|
-
paper-textarea[disabled],
|
|
77
|
-
paper-dropdown-menu[disabled],
|
|
78
|
-
paper-input[disabled],
|
|
79
|
-
datepicker-lite[disabled] {
|
|
80
|
-
--paper-input-container: {
|
|
81
|
-
opacity: 1 !important;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
--paper-input-container-underline-focus: {
|
|
85
|
-
display: none;
|
|
86
|
-
}
|
|
87
|
-
--esmm-select-cursor: initial;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
etools-dropdown-multi[readonly],
|
|
91
|
-
etools-dropdown[readonly],
|
|
92
|
-
paper-textarea[readonly],
|
|
93
|
-
paper-dropdown-menu[readonly],
|
|
94
|
-
paper-input[readonly],
|
|
95
|
-
datepicker-lite[readonly] {
|
|
96
|
-
--paper-input-container-underline_-_display: none;
|
|
97
|
-
--paper-input-container-underline-focus_-_display: none;
|
|
98
|
-
--paper-input-container: {
|
|
99
|
-
opacity: 1 !important;
|
|
100
|
-
}
|
|
101
|
-
--paper-input-container-underline: {
|
|
102
|
-
border-bottom: none !important;
|
|
103
|
-
display: none !important;
|
|
104
|
-
}
|
|
105
|
-
--paper-input-container-underline-focus: {
|
|
106
|
-
display: none;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
--esmm-select-cursor: initial;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
etools-dropdown-multi.required:not([disabled]),
|
|
113
|
-
etools-dropdown-multi[required]:not([disabled]),
|
|
114
|
-
etools-dropdown-multi[required].readonly-required,
|
|
115
|
-
etools-dropdown.required:not([disabled]),
|
|
116
|
-
etools-dropdown[required]:not([disabled]),
|
|
117
|
-
etools-dropdown[required].readonly-required,
|
|
118
|
-
paper-dropdown-menu.required:not([disabled]),
|
|
119
|
-
paper-dropdown-menu[required]:not([disabled]),
|
|
120
|
-
paper-dropdown-menu[required].readonly-required,
|
|
121
|
-
paper-textarea.required:not([disabled]),
|
|
122
|
-
paper-textarea[required]:not([disabled]),
|
|
123
|
-
paper-textarea[required].readonly-required,
|
|
124
|
-
paper-input.required:not([disabled]),
|
|
125
|
-
paper-input[required].readonly-required,
|
|
126
|
-
paper-input[required]:not([disabled]) {
|
|
127
|
-
--paper-input-container-label: {
|
|
128
|
-
background: url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221235%22%20height%3D%221175%22%3E%3Cpath%20fill%3D%22%23de0000%22%20d%3D%22M0%2C449h1235l-999%2C726%20382-1175%20382%2C1175z%22%2F%3E%3C%2Fsvg%3E')
|
|
129
|
-
no-repeat 98% 14%/7px;
|
|
130
|
-
width: auto !important;
|
|
131
|
-
max-width: max-content;
|
|
132
|
-
right: auto;
|
|
133
|
-
padding-right: 15px;
|
|
134
|
-
color: var(--gray-50, rgba(0, 0, 0, 0.5));
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
</style>
|
|
138
|
-
`;
|
|
1
|
+
import { html } from 'lit-element';
|
|
2
|
+
// language=HTML
|
|
3
|
+
export const InputStyles = html `
|
|
4
|
+
<style>
|
|
5
|
+
etools-dropdown,
|
|
6
|
+
etools-dropdown-multi,
|
|
7
|
+
paper-input,
|
|
8
|
+
paper-textarea,
|
|
9
|
+
paper-dropdown-menu,
|
|
10
|
+
etools-currency-amount-input,
|
|
11
|
+
datepicker-lite {
|
|
12
|
+
outline: none !important;
|
|
13
|
+
padding: 0 12px;
|
|
14
|
+
color: var(--gray-dark, rgba(0, 0, 0, 0.87));
|
|
15
|
+
box-sizing: border-box;
|
|
16
|
+
|
|
17
|
+
--paper-input-container-input-color: var(--gray-dark, rgba(0, 0, 0, 0.87));
|
|
18
|
+
--esmm-placeholder-color: var(--gray-dark, rgba(0, 0, 0, 0.87));
|
|
19
|
+
--esmm-multi-placeholder-color: var(--gray-dark, rgba(0, 0, 0, 0.87));
|
|
20
|
+
|
|
21
|
+
--paper-input-container-focus-color: var(--primary-color, #0099ff);
|
|
22
|
+
|
|
23
|
+
--paper-input-container-label: {
|
|
24
|
+
color: var(--gray-50, rgba(0, 0, 0, 0.5));
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
--paper-input-container-invalid-color: var(--module-error, #ea4022);
|
|
28
|
+
|
|
29
|
+
--paper-input-char-counter: {
|
|
30
|
+
color: var(--gray-light, rgba(0, 0, 0, 0.38));
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
--paper-input-container-label-floating: {
|
|
34
|
+
-webkit-transform: none;
|
|
35
|
+
-moz-transform: none;
|
|
36
|
+
-ms-transform: none;
|
|
37
|
+
-o-transform: none;
|
|
38
|
+
transform: none;
|
|
39
|
+
top: -21px;
|
|
40
|
+
width: 100%;
|
|
41
|
+
font-size: 12px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
--etools-currency-container-label-floating: {
|
|
45
|
+
-webkit-transform: none;
|
|
46
|
+
-moz-transform: none;
|
|
47
|
+
-ms-transform: none;
|
|
48
|
+
-o-transform: none;
|
|
49
|
+
transform: none;
|
|
50
|
+
top: -21px;
|
|
51
|
+
width: 100%;
|
|
52
|
+
font-size: 12px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
--paper-input-container-shared-input-style: {
|
|
56
|
+
font-size: 16px;
|
|
57
|
+
width: 100%;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
--paper-input-prefix: {
|
|
61
|
+
margin-right: 10px;
|
|
62
|
+
color: var(--gray-mid, rgba(0, 0, 0, 0.54));
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
--paper-input-error: {
|
|
66
|
+
overflow: hidden;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
--iron-autogrow-textarea: {
|
|
70
|
+
padding: 0;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
etools-dropdown-multi[disabled],
|
|
75
|
+
etools-dropdown[disabled],
|
|
76
|
+
paper-textarea[disabled],
|
|
77
|
+
paper-dropdown-menu[disabled],
|
|
78
|
+
paper-input[disabled],
|
|
79
|
+
datepicker-lite[disabled] {
|
|
80
|
+
--paper-input-container: {
|
|
81
|
+
opacity: 1 !important;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
--paper-input-container-underline-focus: {
|
|
85
|
+
display: none;
|
|
86
|
+
}
|
|
87
|
+
--esmm-select-cursor: initial;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
etools-dropdown-multi[readonly],
|
|
91
|
+
etools-dropdown[readonly],
|
|
92
|
+
paper-textarea[readonly],
|
|
93
|
+
paper-dropdown-menu[readonly],
|
|
94
|
+
paper-input[readonly],
|
|
95
|
+
datepicker-lite[readonly] {
|
|
96
|
+
--paper-input-container-underline_-_display: none;
|
|
97
|
+
--paper-input-container-underline-focus_-_display: none;
|
|
98
|
+
--paper-input-container: {
|
|
99
|
+
opacity: 1 !important;
|
|
100
|
+
}
|
|
101
|
+
--paper-input-container-underline: {
|
|
102
|
+
border-bottom: none !important;
|
|
103
|
+
display: none !important;
|
|
104
|
+
}
|
|
105
|
+
--paper-input-container-underline-focus: {
|
|
106
|
+
display: none;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
--esmm-select-cursor: initial;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
etools-dropdown-multi.required:not([disabled]),
|
|
113
|
+
etools-dropdown-multi[required]:not([disabled]),
|
|
114
|
+
etools-dropdown-multi[required].readonly-required,
|
|
115
|
+
etools-dropdown.required:not([disabled]),
|
|
116
|
+
etools-dropdown[required]:not([disabled]),
|
|
117
|
+
etools-dropdown[required].readonly-required,
|
|
118
|
+
paper-dropdown-menu.required:not([disabled]),
|
|
119
|
+
paper-dropdown-menu[required]:not([disabled]),
|
|
120
|
+
paper-dropdown-menu[required].readonly-required,
|
|
121
|
+
paper-textarea.required:not([disabled]),
|
|
122
|
+
paper-textarea[required]:not([disabled]),
|
|
123
|
+
paper-textarea[required].readonly-required,
|
|
124
|
+
paper-input.required:not([disabled]),
|
|
125
|
+
paper-input[required].readonly-required,
|
|
126
|
+
paper-input[required]:not([disabled]) {
|
|
127
|
+
--paper-input-container-label: {
|
|
128
|
+
background: url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221235%22%20height%3D%221175%22%3E%3Cpath%20fill%3D%22%23de0000%22%20d%3D%22M0%2C449h1235l-999%2C726%20382-1175%20382%2C1175z%22%2F%3E%3C%2Fsvg%3E')
|
|
129
|
+
no-repeat 98% 14%/7px;
|
|
130
|
+
width: auto !important;
|
|
131
|
+
max-width: max-content;
|
|
132
|
+
right: auto;
|
|
133
|
+
padding-right: 15px;
|
|
134
|
+
color: var(--gray-50, rgba(0, 0, 0, 0.5));
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
</style>
|
|
138
|
+
`;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { CSSResult } from 'lit-element';
|
|
2
|
-
export declare const pageLayoutStyles: CSSResult;
|
|
1
|
+
import { CSSResult } from 'lit-element';
|
|
2
|
+
export declare const pageLayoutStyles: CSSResult;
|