@odx/ui 1.0.4 → 2.0.0
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/ag-grid-theme.css +1 -1
- package/core-theme.css +1 -1
- package/package.json +1 -1
- package/scss/3rdparty/ag-grid/theme.scss +1 -1
- package/scss/components/autocomplete.component.scss +16 -0
- package/scss/components/chip-list.component.scss +23 -0
- package/scss/components/dropdown.component.scss +7 -0
- package/scss/components/expandable-list-item.component.scss +13 -1
- package/scss/components/form-field.component.scss +31 -8
- package/scss/components/header.component.scss +1 -1
- package/scss/components/option.component.scss +38 -0
- package/scss/components/select.component.scss +0 -41
- package/scss/components/table.component.scss +94 -0
- package/scss/components/wizard-step.component.scss +256 -0
- package/scss/components/wizard.component.scss +18 -0
- package/scss/core.scss +8 -1
- package/scss/layout/_application.scss +75 -0
- package/scss/layout/_helpers.scss +2 -2
- package/scss/layout/_layout.scss +2 -2
- package/scss/variables/_colors.scss +1 -1
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
@use '../abstract/breakpoints';
|
|
2
|
+
@use '../abstract/dimensions';
|
|
3
|
+
@use '../components/icon.component';
|
|
4
|
+
@use './typography';
|
|
5
|
+
|
|
6
|
+
.odx-app-root,
|
|
7
|
+
.odx-app {
|
|
8
|
+
height: 100dvh;
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.odx-app {
|
|
13
|
+
display: flex;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.odx-app-main,
|
|
18
|
+
.odx-app-page {
|
|
19
|
+
display: flex;
|
|
20
|
+
flex: 1 1 auto;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.odx-app-main {
|
|
24
|
+
flex-direction: row;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.odx-app-page {
|
|
28
|
+
flex-direction: column;
|
|
29
|
+
max-height: 100%;
|
|
30
|
+
|
|
31
|
+
&__content {
|
|
32
|
+
flex: 1 1 0;
|
|
33
|
+
overflow-x: hidden;
|
|
34
|
+
overflow-y: auto;
|
|
35
|
+
scroll-behavior: smooth;
|
|
36
|
+
|
|
37
|
+
@include dimensions.padding(0.5, (bottom, left, right));
|
|
38
|
+
|
|
39
|
+
@include breakpoints.up(phone) {
|
|
40
|
+
@include dimensions.padding(1, (bottom, left, right));
|
|
41
|
+
@include dimensions.padding(0.5, top);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.odx-app-content {
|
|
47
|
+
margin: 0 auto;
|
|
48
|
+
max-width: breakpoints.get-breakpoint-value(desktop);
|
|
49
|
+
width: 100%;
|
|
50
|
+
|
|
51
|
+
&--left-align {
|
|
52
|
+
margin-left: 0;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.odx-error-page {
|
|
57
|
+
align-self: center;
|
|
58
|
+
text-align: center;
|
|
59
|
+
|
|
60
|
+
@include dimensions.padding(2, top);
|
|
61
|
+
|
|
62
|
+
&__icon {
|
|
63
|
+
@extend .odx-icon--xlarge;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&__title {
|
|
67
|
+
@extend .odx-title;
|
|
68
|
+
@extend .odx-title-3;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
&__description {
|
|
72
|
+
@extend .odx-subtitle;
|
|
73
|
+
@extend .odx-subtitle-5;
|
|
74
|
+
}
|
|
75
|
+
}
|
package/scss/layout/_layout.scss
CHANGED
|
@@ -69,9 +69,9 @@ $columns: 12 !default;
|
|
|
69
69
|
order: $columns;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
#{create-selector(
|
|
72
|
+
#{create-selector(separator)} {
|
|
73
73
|
background-clip: content-box;
|
|
74
|
-
border-color: var(--odx-c-
|
|
74
|
+
border-color: var(--odx-c-separator);
|
|
75
75
|
border-style: solid;
|
|
76
76
|
|
|
77
77
|
@each $side in (right, left) {
|