sales-frontend-components 0.0.70 → 0.0.71
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.
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
@use 'sales-frontend-design-system/design-system-context' as *;
|
|
2
|
+
|
|
3
|
+
.container {
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.section {
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: column;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.section-title {
|
|
14
|
+
@include apply-typography(title5);
|
|
15
|
+
|
|
16
|
+
margin-bottom: padding(medium);
|
|
17
|
+
margin-left: margin(modal);
|
|
18
|
+
color: colors(text-body);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.list-container {
|
|
22
|
+
display: flex;
|
|
23
|
+
flex-direction: column;
|
|
24
|
+
gap: padding(xxxsmall);
|
|
25
|
+
padding: margin(modal);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.row {
|
|
29
|
+
display: flex;
|
|
30
|
+
justify-content: space-between;
|
|
31
|
+
padding: padding(small) 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.item {
|
|
35
|
+
display: flex;
|
|
36
|
+
flex: 1;
|
|
37
|
+
flex-direction: column;
|
|
38
|
+
gap: padding(xsmall);
|
|
39
|
+
align-items: center;
|
|
40
|
+
justify-content: flex-start;
|
|
41
|
+
// min-width: 0;
|
|
42
|
+
max-width: 80px;
|
|
43
|
+
text-align: center;
|
|
44
|
+
cursor: pointer;
|
|
45
|
+
|
|
46
|
+
.icon-wrapper {
|
|
47
|
+
display: flex;
|
|
48
|
+
align-items: center;
|
|
49
|
+
justify-content: center;
|
|
50
|
+
width: 48px;
|
|
51
|
+
height: 48px;
|
|
52
|
+
// background-color: colors(surface-neutral_5);
|
|
53
|
+
// border-radius: 50%;
|
|
54
|
+
|
|
55
|
+
svg {
|
|
56
|
+
width: 40px;
|
|
57
|
+
height: 40px;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
span {
|
|
62
|
+
@include apply-typography(body2);
|
|
63
|
+
|
|
64
|
+
color: colors(text-body);
|
|
65
|
+
}
|
|
66
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sales-frontend-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.71",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
@@ -42,23 +42,23 @@
|
|
|
42
42
|
"typescript": "5.8.2",
|
|
43
43
|
"zod": "^3.25.67",
|
|
44
44
|
"eslint-config-sales-frontend-eslint-config-v8": "^0.0.6",
|
|
45
|
-
"sales-frontend-
|
|
45
|
+
"sales-frontend-hooks": "0.0.41",
|
|
46
46
|
"sales-frontend-stores": "0.0.3",
|
|
47
|
-
"sales-frontend-
|
|
48
|
-
"sales-frontend-
|
|
49
|
-
"sales-frontend-
|
|
47
|
+
"sales-frontend-api": "0.0.38",
|
|
48
|
+
"sales-frontend-design-system": "0.0.58",
|
|
49
|
+
"sales-frontend-typescript-config": "0.0.2"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"@tanstack/react-query": ">=5.0.0",
|
|
53
53
|
"react": ">=18.0.0",
|
|
54
54
|
"react-dom": ">=18.0.0",
|
|
55
55
|
"react-hook-form": "^7.58.1",
|
|
56
|
+
"sales-frontend-hooks": "0.0.41",
|
|
56
57
|
"sales-frontend-design-system": "0.0.58",
|
|
57
|
-
"sales-frontend-api": "0.0.
|
|
58
|
+
"sales-frontend-api": "0.0.38",
|
|
58
59
|
"sales-frontend-utils": "0.0.10",
|
|
59
|
-
"sales-frontend-hooks": "0.0.40",
|
|
60
|
-
"sales-frontend-assets": "0.0.13",
|
|
61
60
|
"sales-frontend-stores": "0.0.3",
|
|
61
|
+
"sales-frontend-assets": "0.0.13",
|
|
62
62
|
"sales-frontend-debug": "0.0.3"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|