@provoly/dashboard 0.11.8 → 0.11.9
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/esm2022/admin/components/admin-fields/store/fields.effects.mjs +3 -2
- package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +3 -3
- package/esm2022/presentation/components/presentation.component.mjs +6 -4
- package/esm2022/presentation/style/css.component.mjs +2 -2
- package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +3 -3
- package/esm2022/restitution/components/restitution-list/restitution-list.component.mjs +26 -32
- package/esm2022/restitution/components/restitution-list-item/restitution-list-item.component.mjs +50 -0
- package/esm2022/restitution/i18n/fr.translations.mjs +6 -2
- package/esm2022/restitution/public-api.mjs +2 -1
- package/esm2022/restitution/restitution.module.mjs +16 -5
- package/esm2022/restitution/style/css.component.mjs +2 -2
- package/fesm2022/provoly-dashboard-admin.mjs +2 -1
- package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-presentation.mjs +9 -7
- package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-restitution.mjs +96 -46
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
- package/package.json +1 -1
- package/presentation/style/_o-pry-presentation.scss +51 -0
- package/restitution/components/restitution-list/restitution-list.component.d.ts +12 -8
- package/restitution/components/restitution-list-item/restitution-list-item.component.d.ts +21 -0
- package/restitution/i18n/fr.translations.d.ts +4 -0
- package/restitution/public-api.d.ts +1 -0
- package/restitution/restitution.module.d.ts +10 -9
- package/restitution/style/_o-restitution-list.scss +37 -2
- package/styles-theme/components-theme/_o-restitution-list.theme.scss +15 -0
|
@@ -96,6 +96,10 @@
|
|
|
96
96
|
cursor: pointer;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
+
pry-catalog-item {
|
|
100
|
+
max-height: toRem(210);
|
|
101
|
+
}
|
|
102
|
+
|
|
99
103
|
&__item {
|
|
100
104
|
position: relative;
|
|
101
105
|
display: flex;
|
|
@@ -103,7 +107,7 @@
|
|
|
103
107
|
justify-content: space-between;
|
|
104
108
|
align-items: center;
|
|
105
109
|
max-width: toRem(130);
|
|
106
|
-
|
|
110
|
+
height: 100%;
|
|
107
111
|
text-align: center;
|
|
108
112
|
cursor: move;
|
|
109
113
|
|
|
@@ -141,7 +145,6 @@
|
|
|
141
145
|
|
|
142
146
|
&__action {
|
|
143
147
|
width: 100%;
|
|
144
|
-
margin-top: auto;
|
|
145
148
|
padding: toRem(6) toRem(10);
|
|
146
149
|
text-align: center;
|
|
147
150
|
|
|
@@ -158,4 +161,36 @@
|
|
|
158
161
|
width: fit-content;
|
|
159
162
|
margin-bottom: 1rem;
|
|
160
163
|
}
|
|
164
|
+
|
|
165
|
+
.o-accordion {
|
|
166
|
+
&__title {
|
|
167
|
+
position: relative;
|
|
168
|
+
border-bottom-style: solid;
|
|
169
|
+
border-bottom-width: toRem(1);
|
|
170
|
+
|
|
171
|
+
// Border left colored
|
|
172
|
+
&:before {
|
|
173
|
+
content: '';
|
|
174
|
+
position: absolute;
|
|
175
|
+
left: 0;
|
|
176
|
+
top: 0;
|
|
177
|
+
bottom: 0;
|
|
178
|
+
width: 3px;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
&:first-child {
|
|
182
|
+
border-top-style: solid;
|
|
183
|
+
border-top-width: toRem(1);
|
|
184
|
+
margin-top: toRem(10);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
&__btn {
|
|
188
|
+
width: 100%;
|
|
189
|
+
height: 70%;
|
|
190
|
+
padding: 0;
|
|
191
|
+
text-transform: uppercase;
|
|
192
|
+
text-align: left;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
161
196
|
}
|
|
@@ -24,4 +24,19 @@
|
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
+
|
|
28
|
+
.o-accordion {
|
|
29
|
+
&__title {
|
|
30
|
+
border-top-color: themed($theme-map, 'color', 'primary', 300);
|
|
31
|
+
border-bottom-color: themed($theme-map, 'color', 'primary', 300);
|
|
32
|
+
|
|
33
|
+
&:before {
|
|
34
|
+
background-color: themed($theme-map, 'color', 'accent', 600);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&__btn pry-icon {
|
|
38
|
+
color: themed($theme-map, 'color', 'accent', 600);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
27
42
|
}
|