@vtex/faststore-plugin-buyer-portal 1.3.26 → 1.3.27
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/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.3.27] - 2025-11-25
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Style improvements and consistency updates to the `basic-buying-policy-drawer.scss` file.
|
|
16
|
+
|
|
10
17
|
## [1.3.26] - 2025-11-25
|
|
11
18
|
|
|
12
19
|
### Added
|
|
@@ -262,7 +269,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
262
269
|
- Add CHANGELOG file
|
|
263
270
|
- Add README file
|
|
264
271
|
|
|
265
|
-
[unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.
|
|
272
|
+
[unreleased]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.27...HEAD
|
|
266
273
|
[1.2.3]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.2.2...1.2.3
|
|
267
274
|
[1.2.3]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.2.3
|
|
268
275
|
[1.2.4]: https://github.com/vtex/faststore-plugin-buyer-portal/releases/tag/1.2.4
|
|
@@ -277,6 +284,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
277
284
|
|
|
278
285
|
# <<<<<<< HEAD
|
|
279
286
|
|
|
287
|
+
[1.3.27]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.26...v1.3.27
|
|
280
288
|
[1.3.26]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.25...v1.3.26
|
|
281
289
|
[1.3.25]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.24...v1.3.25
|
|
282
290
|
[1.3.24]: https://github.com/vtex/faststore-plugin-buyer-portal/compare/v1.3.23...v1.3.24
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
@import
|
|
2
|
-
@import
|
|
3
|
-
@import
|
|
4
|
-
@import
|
|
1
|
+
@import '../../../shared/components/BasicDrawer/basic-drawer.scss';
|
|
2
|
+
@import '../../../shared/components/OrgUnitInputSearch/org-unit-input-search.scss';
|
|
3
|
+
@import '../../../shared/components/CustomDropdown/custom-dropdown.scss';
|
|
4
|
+
@import '../BudgetCriteriaSelector/budget-criteria-selector.scss';
|
|
5
5
|
|
|
6
6
|
[data-fs-bp-basic-buying-policy-drawer] {
|
|
7
|
-
@import
|
|
8
|
-
@import
|
|
9
|
-
@import
|
|
10
|
-
@import
|
|
11
|
-
@import
|
|
7
|
+
@import '../../../shared/components/InputText/input-text.scss';
|
|
8
|
+
@import '../../../shared/components/ErrorMessage/error-message.scss';
|
|
9
|
+
@import '../../../shared/components/LevelDivider/level-divider.scss';
|
|
10
|
+
@import '@faststore/ui/src/components/molecules/Tooltip/styles.scss';
|
|
11
|
+
@import '@faststore/ui/src/components/molecules/Dropdown/styles.scss';
|
|
12
12
|
|
|
13
13
|
[data-fs-bp-autocomplete-dropdown] {
|
|
14
14
|
[data-fs-bp-input-text-input] {
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
gap: var(--fs-spacing-2);
|
|
66
66
|
margin-top: calc(var(--fs-spacing-0) + var(--fs-spacing-3));
|
|
67
67
|
|
|
68
|
-
@include media(
|
|
68
|
+
@include media('<=tablet') {
|
|
69
69
|
justify-content: center;
|
|
70
70
|
}
|
|
71
71
|
}
|
|
@@ -94,15 +94,16 @@
|
|
|
94
94
|
height: 100%;
|
|
95
95
|
margin: 0;
|
|
96
96
|
background-color: #f5f5f5;
|
|
97
|
-
font-family:
|
|
97
|
+
font-family: 'Roboto', monospace;
|
|
98
98
|
font-size: var(--fs-text-size-1);
|
|
99
99
|
border: var(--fs-border-width) solid #d6d6d6;
|
|
100
|
-
padding: calc(var(--fs-spacing-3) + var(--fs-spacing-0))
|
|
101
|
-
var(--fs-spacing-3);
|
|
100
|
+
padding: calc(var(--fs-spacing-3) + var(--fs-spacing-0)) var(--fs-spacing-3);
|
|
102
101
|
border-radius: calc(var(--fs-border-radius) * 2);
|
|
103
102
|
text-wrap: nowrap;
|
|
104
103
|
text-overflow: ellipsis;
|
|
105
104
|
white-space: nowrap;
|
|
105
|
+
overflow: hidden;
|
|
106
|
+
max-width: 840px;
|
|
106
107
|
cursor: pointer;
|
|
107
108
|
|
|
108
109
|
[data-fs-bp-label] {
|
|
@@ -119,18 +120,17 @@
|
|
|
119
120
|
}
|
|
120
121
|
}
|
|
121
122
|
|
|
122
|
-
|
|
123
123
|
[data-fs-bp-input-text-criteria] {
|
|
124
124
|
color: #5c5c5c;
|
|
125
125
|
|
|
126
126
|
label {
|
|
127
|
-
font-family:
|
|
127
|
+
font-family: 'Roboto', monospace;
|
|
128
128
|
font-size: var(--fs-text-size-1);
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
&[data-fs-bp-input-text-code] {
|
|
132
132
|
background-color: #f5f5f5;
|
|
133
|
-
font-family:
|
|
133
|
+
font-family: 'Roboto', monospace;
|
|
134
134
|
font-size: var(--fs-text-size-1);
|
|
135
135
|
}
|
|
136
136
|
|
|
@@ -142,8 +142,7 @@
|
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
[data-fs-bp-buying-policy-add-level-button] {
|
|
145
|
-
padding: var(--fs-spacing-2)
|
|
146
|
-
calc(var(--fs-spacing-0) + var(--fs-spacing-3));
|
|
145
|
+
padding: var(--fs-spacing-2) calc(var(--fs-spacing-0) + var(--fs-spacing-3));
|
|
147
146
|
margin: calc(var(--fs-spacing-0) + var(--fs-spacing-3)) 0;
|
|
148
147
|
border-radius: var(--fs-border-radius-pill);
|
|
149
148
|
border: var(--fs-border-width) solid #d6d6d6;
|
|
@@ -160,4 +159,12 @@
|
|
|
160
159
|
[data-fs-bp-basic-buying-policy-drawer-skeleton] {
|
|
161
160
|
margin-bottom: var(--fs-spacing-3);
|
|
162
161
|
}
|
|
162
|
+
|
|
163
|
+
@include media('<=tablet') {
|
|
164
|
+
[data-fs-bp-basic-drawer-body],
|
|
165
|
+
[data-fs-bp-basic-drawer-heading],
|
|
166
|
+
[data-fs-bp-basic-drawer-footer] {
|
|
167
|
+
max-width: 430px;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
163
170
|
}
|