@elliemae/ds-basic 3.22.0-next.8 → 3.22.0-rc.1
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/dist/css/dimsum.css +24 -23
- package/dist/css/dimsum.min.css +1 -1
- package/dist/css/dimsum.min.css.map +1 -1
- package/dist/styles/components/packages/ds-basic/index.scss +47 -47
- package/dist/styles/components/packages/ds-basic/styles/components/index.scss +19 -19
- package/dist/styles/components/packages/ds-button-v1/DSButton.scss +23 -15
- package/dist/styles/components/packages/{ds-page-header/v1 → ds-page-header-v1}/DSPageHeader.scss +4 -4
- package/dist/styles/components/packages/{ds-toolbar → ds-toolbar-v1}/DSToolbar.scss +4 -6
- package/package.json +4 -4
- package/dist/styles/components/packages/ds-circular-progress-indicator/DSCircularProgressIndicator.scss +0 -81
- package/dist/styles/components/packages/ds-dropdownmenu/DSDropdownMenu.scss +0 -128
- package/dist/styles/components/packages/ds-indeterminate-progress-indicator/DSIndeterminateProgressIndicator.scss +0 -167
- package/dist/styles/components/packages/ds-modal-slide/DSModalSlide.scss +0 -170
- package/dist/styles/components/packages/ds-page-header/DSPageHeader.scss +0 -1
- package/dist/styles/components/packages/ds-progress-indicator/DSProgressIndicator.scss +0 -90
- package/dist/styles/components/packages/ds-query-builder/DSQueryBuilder.scss +0 -20
- package/dist/styles/components/packages/ds-query-builder/components/AndOrController/AndOrController.scss +0 -179
- package/dist/styles/components/packages/ds-query-builder/components/ConditionController/ConditionController.scss +0 -60
- package/dist/styles/components/packages/ds-query-builder/components/DisplayOutput/DisplayOutput.scss +0 -27
- package/dist/styles/components/packages/ds-query-builder/components/DragContainerController/DragContainerController.scss +0 -25
- package/dist/styles/components/packages/ds-query-builder/components/DragControllerRow/DragControllerRow.scss +0 -15
- package/dist/styles/components/packages/ds-query-builder/components/FieldControllerRow/FieldControllerRow.scss +0 -92
- package/dist/styles/components/packages/ds-query-builder/components/Nestable/Nestable.scss +0 -140
- package/dist/styles/components/packages/ds-query-builder/components/QueryBuilderItem/QueryBuilderItem.scss +0 -108
- package/dist/styles/components/packages/ds-query-builder/components/QueryBuilderRow/QueryBuilderRow.scss +0 -92
- package/dist/styles/components/packages/ds-ribbon/DSRibbon.scss +0 -5
- package/dist/styles/components/packages/ds-separator/DSSeparator.scss +0 -133
- package/dist/styles/components/packages/ds-tooltip/v1/DSTooltip.scss +0 -92
- package/dist/styles/components/packages/ds-treeview/Tree.scss +0 -262
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
// ********************************************
|
|
2
|
-
// container definition
|
|
3
|
-
$indeterminate-progress-indicator: #{$prefix}-indeterminate-progress-indicator;
|
|
4
|
-
$complete: #{$indeterminate-progress-indicator}-complete;
|
|
5
|
-
$failed: #{$indeterminate-progress-indicator}-failed;
|
|
6
|
-
$bar: #{$indeterminate-progress-indicator}__bar;
|
|
7
|
-
$indicator: #{$indeterminate-progress-indicator}__bar-indicator;
|
|
8
|
-
$tooltip-text: #{$indeterminate-progress-indicator}-tooltip-text;
|
|
9
|
-
.#{$bar} {
|
|
10
|
-
background-color: color(neutral, 100);
|
|
11
|
-
overflow: hidden;
|
|
12
|
-
}
|
|
13
|
-
.#{$indicator} {
|
|
14
|
-
height: space(xxs);
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@keyframes indeterminateAnimation {
|
|
18
|
-
0% {
|
|
19
|
-
transform: scaleX(0.015);
|
|
20
|
-
transform-origin: 0% 0%;
|
|
21
|
-
background-image: linear-gradient(to right, rgba(255,255,255,0.8) 10%, color(brand-primary, 500));
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
25% {
|
|
25
|
-
transform: scaleX(0.4);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
50% {
|
|
29
|
-
transform: scaleX(0.015);
|
|
30
|
-
transform-origin: 100% 0%;
|
|
31
|
-
background-image: linear-gradient(to right, rgba(255,255,255,0.8) 10%, color(brand-primary, 500));
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
50.1% {
|
|
35
|
-
transform: scaleX(0.015);
|
|
36
|
-
transform-origin: 100% 0%;
|
|
37
|
-
background-image: linear-gradient(to left, rgba(255,255,255,0.8) 10%, color(brand-primary, 500));
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
75% {
|
|
41
|
-
transform: scaleX(0.4);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
100% {
|
|
45
|
-
transform: scaleX(0.015);
|
|
46
|
-
transform-origin: 0% 0%;
|
|
47
|
-
background-image: linear-gradient(to left, rgba(255,255,255,0.8) 10%, color(brand-primary, 500));
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
@keyframes processingSuccess {
|
|
53
|
-
0%, 30% { transform: translateX(-50%); width: 50% }
|
|
54
|
-
15% { transform: translateX(150%); width: 50% }
|
|
55
|
-
0%, 60% { transform: translateX(-50%); width: 50% }
|
|
56
|
-
45% { transform: translateX(150%); width: 50% }
|
|
57
|
-
0%, 90% { transform: translateX(-50%); width: 50% }
|
|
58
|
-
75% { transform: translateX(150%); width: 50% }
|
|
59
|
-
100% { transform: translateX(0%); }
|
|
60
|
-
}
|
|
61
|
-
@keyframes processingSuccessEnd {
|
|
62
|
-
0%{ transform: translateX(-50%); width: 50% }
|
|
63
|
-
45% { transform: translateX(150%); width: 50% }
|
|
64
|
-
100% { transform: translateX(0%); background-color: color(success, 900); }
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
@keyframes processingFail {
|
|
68
|
-
0%, 30% { transform: translateX(-50%); width: 50% }
|
|
69
|
-
15% { transform: translateX(150%); width: 50% }
|
|
70
|
-
0%, 60% { transform: translateX(-50%); width: 50% }
|
|
71
|
-
45% { transform: translateX(150%); width: 50% }
|
|
72
|
-
0%, 90% { transform: translateX(-50%); width: 50% }
|
|
73
|
-
75% { transform: translateX(150%); width: 50%; }
|
|
74
|
-
100% { transform: translateX(0%); }
|
|
75
|
-
}
|
|
76
|
-
@keyframes processingFailEnd{
|
|
77
|
-
0% { transform: translateX(-50%); width: 50% }
|
|
78
|
-
45% { transform: translateX(150%); width: 50% }
|
|
79
|
-
100% { transform: translateX(0%); background-color: #e34256; }
|
|
80
|
-
}
|
|
81
|
-
@keyframes labelAnimation {
|
|
82
|
-
0% { opacity: 1 }
|
|
83
|
-
92% { opacity: 1 }
|
|
84
|
-
95% { opacity: 0 }
|
|
85
|
-
100% { opacity: 1 }
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
.#{$indeterminate-progress-indicator} {
|
|
90
|
-
width: 100%;
|
|
91
|
-
padding: space(xs) space(m);
|
|
92
|
-
|
|
93
|
-
&-default {
|
|
94
|
-
.#{$indicator} {
|
|
95
|
-
background-color: color(neutral, 500);
|
|
96
|
-
width: 50%;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
&-complete {
|
|
100
|
-
.#{$indicator} {
|
|
101
|
-
background-color: color(success, 900);
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
&-failed {
|
|
105
|
-
.#{$indicator} {
|
|
106
|
-
background-color: #e34256;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
&-processing {
|
|
110
|
-
.#{$indicator} {
|
|
111
|
-
background-color: color(brand-primary, 500);
|
|
112
|
-
width: 50%;
|
|
113
|
-
}
|
|
114
|
-
&.animated {
|
|
115
|
-
.#{$indicator} {
|
|
116
|
-
width: 100%;
|
|
117
|
-
animation: indeterminateAnimation 2s cubic-bezier(.645, .045, .355, 1) infinite;
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
&.#{$complete}{
|
|
121
|
-
.#{$indicator} {
|
|
122
|
-
animation: processingSuccessEnd 1s ease-in-out;
|
|
123
|
-
animation-fill-mode: forwards;
|
|
124
|
-
}
|
|
125
|
-
.#{$tooltip-text}{
|
|
126
|
-
animation: labelAnimation 1s ease-in-out;
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
&-processing-complete {
|
|
131
|
-
.#{$indicator} {
|
|
132
|
-
background-color: color(brand-primary, 500);
|
|
133
|
-
width: 50%;
|
|
134
|
-
animation: processingSuccess 4s infinite;
|
|
135
|
-
animation-fill-mode: forwards;
|
|
136
|
-
}
|
|
137
|
-
&.#{$complete}{
|
|
138
|
-
.#{$indicator} {
|
|
139
|
-
animation: processingSuccessEnd 1s ease-in-out;
|
|
140
|
-
animation-fill-mode: forwards;
|
|
141
|
-
}
|
|
142
|
-
.#{$tooltip-text}{
|
|
143
|
-
animation: labelAnimation 1s ease-in-out;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
&-processing-fail {
|
|
148
|
-
.#{$indicator} {
|
|
149
|
-
background-color: color(brand-primary, 500);
|
|
150
|
-
width: 50%;
|
|
151
|
-
animation: processingFail 4s infinite;
|
|
152
|
-
animation-fill-mode: forwards;
|
|
153
|
-
}
|
|
154
|
-
&.#{$failed}{
|
|
155
|
-
.#{$indicator} {
|
|
156
|
-
animation: processingFailEnd 1s ease-in-out;
|
|
157
|
-
animation-fill-mode: forwards;
|
|
158
|
-
}
|
|
159
|
-
.#{$tooltip-text}{
|
|
160
|
-
animation: labelAnimation 1s ease-in-out;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
&.line-only {
|
|
165
|
-
padding: 0;
|
|
166
|
-
}
|
|
167
|
-
}
|
|
@@ -1,170 +0,0 @@
|
|
|
1
|
-
$mslide: #{$prefix}-modal-slide;
|
|
2
|
-
$mslide-wrapper: #{$mslide}__wrapper;
|
|
3
|
-
$mslide-overlay: #{$mslide}__overlay;
|
|
4
|
-
$mslide-overlay-showing: #{$mslide-overlay}--showing;
|
|
5
|
-
$mslide-overlay-disappearing: #{$mslide-overlay}--disappearing;
|
|
6
|
-
$mslide-content: #{$mslide}__content;
|
|
7
|
-
$mslide-actual-content: #{$mslide}__actual-content;
|
|
8
|
-
$mslide-header: #{$mslide}__header;
|
|
9
|
-
$mslide-footer: #{$mslide}__footer;
|
|
10
|
-
$mslide-title: #{$mslide}__title;
|
|
11
|
-
$mslide-header-left-side: #{$mslide}__header-left-side;
|
|
12
|
-
$mslide-header-wrapper: #{$mslide}__header-wrapper;
|
|
13
|
-
$mslide-footer-wrapper: #{$mslide}__footer-wrapper;
|
|
14
|
-
|
|
15
|
-
$modalContent: #{$prefix}-modal-v2;
|
|
16
|
-
$modalContentWrapper: #{$modalContent}__modal-wrapper;
|
|
17
|
-
$modal-title: #{$modalContent}__modal-title;
|
|
18
|
-
|
|
19
|
-
$opacity: 0.25;
|
|
20
|
-
|
|
21
|
-
@keyframes overlayAnimation {
|
|
22
|
-
0% {
|
|
23
|
-
background: rgba(37, 41, 47, 0);
|
|
24
|
-
}
|
|
25
|
-
100% {
|
|
26
|
-
background: rgba(37, 41, 47, $opacity);
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
@keyframes overlayAnimationOut {
|
|
30
|
-
0% {
|
|
31
|
-
background: rgba(37, 41, 47, $opacity);
|
|
32
|
-
}
|
|
33
|
-
100% {
|
|
34
|
-
background: rgba(37, 41, 47, 0);
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
@keyframes contentAnimationOut {
|
|
39
|
-
0% {
|
|
40
|
-
transform: translateX(0);
|
|
41
|
-
}
|
|
42
|
-
100% {
|
|
43
|
-
transform: translateX(100%);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
@keyframes contentAnimationIn {
|
|
47
|
-
0% {
|
|
48
|
-
transform: translateX(100%);
|
|
49
|
-
}
|
|
50
|
-
100% {
|
|
51
|
-
transform: translateX(0);
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.#{$mslide-wrapper} {
|
|
56
|
-
position: absolute;
|
|
57
|
-
display: flex;
|
|
58
|
-
height: calc(var(--height, 100%) * 1px);
|
|
59
|
-
width: 100%;
|
|
60
|
-
overflow: hidden;
|
|
61
|
-
top: 0;
|
|
62
|
-
z-index: 10;
|
|
63
|
-
}
|
|
64
|
-
.#{$mslide-overlay} {
|
|
65
|
-
height: 100%;
|
|
66
|
-
width: 100%;
|
|
67
|
-
background: rgba(37, 41, 47, $opacity);
|
|
68
|
-
display: flex;
|
|
69
|
-
animation: overlayAnimation calc(var(--fade-in, 500) * 1ms) linear;
|
|
70
|
-
&--disappearing {
|
|
71
|
-
animation: overlayAnimationOut calc(var(--fade-out, 500) * 1ms) linear;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
.#{$mslide-overlay-showing} {
|
|
75
|
-
display: flex;
|
|
76
|
-
height: 100%;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.#{$mslide-content} {
|
|
80
|
-
height: calc(var(--height, 100%) * 1px);
|
|
81
|
-
background: color(neutral, 0);
|
|
82
|
-
@include box-shadow(depth(200));
|
|
83
|
-
width: calc(var(--width, 50) * 1%);
|
|
84
|
-
margin-left: auto;
|
|
85
|
-
align-items: center;
|
|
86
|
-
flex-direction: column;
|
|
87
|
-
display: flex;
|
|
88
|
-
overflow-y:auto;
|
|
89
|
-
border: 1px solid color(neutral, 300);
|
|
90
|
-
border-left: 2px solid color(neutral, 300);
|
|
91
|
-
animation: contentAnimationIn calc(var(--fade-in, 500) * 0.5ms) linear;
|
|
92
|
-
&--disappearing {
|
|
93
|
-
animation: contentAnimationOut calc(var(--fade-out, 500) * 1ms) linear;
|
|
94
|
-
}
|
|
95
|
-
.#{$prefix}-separator-wrapper {
|
|
96
|
-
margin-top: unset;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.#{$mslide-actual-content} {
|
|
101
|
-
display: flex;
|
|
102
|
-
flex-direction: column;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.#{$mslide-header-left-side} {
|
|
106
|
-
width: 100%;
|
|
107
|
-
display: flex;
|
|
108
|
-
flex-direction: row;
|
|
109
|
-
text-align: left;
|
|
110
|
-
padding: space(xs) space(s) space(xs) 0;
|
|
111
|
-
height: space(xl);
|
|
112
|
-
|
|
113
|
-
.em-ds-button {
|
|
114
|
-
.em-ds-icon {
|
|
115
|
-
fill: color(brand-primary, 600);
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
.close-button {
|
|
119
|
-
padding-left: 18px;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.#{$mslide-footer-wrapper} {
|
|
124
|
-
width: 100%;
|
|
125
|
-
display: flex;
|
|
126
|
-
flex-direction: row;
|
|
127
|
-
text-align: left;
|
|
128
|
-
align-items: center;
|
|
129
|
-
justify-content: flex-end;
|
|
130
|
-
padding: space(xs) space(s) space(xs) 0;
|
|
131
|
-
height: space(xl);
|
|
132
|
-
.em-ds-button {
|
|
133
|
-
margin-left: space(s);
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.#{$mslide-header} {
|
|
138
|
-
padding: 0 space(s);
|
|
139
|
-
display: flex;
|
|
140
|
-
flex-direction: column;
|
|
141
|
-
justify-content: center;
|
|
142
|
-
|
|
143
|
-
.#{$mslide-title} {
|
|
144
|
-
font-size: font-size(700);
|
|
145
|
-
color: color(neutral, 700);
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.#{$mslide-wrapper} {
|
|
150
|
-
.#{$modalContentWrapper} {
|
|
151
|
-
flex: 1;
|
|
152
|
-
padding: space(m) 0;
|
|
153
|
-
}
|
|
154
|
-
.#{$modal-title}{
|
|
155
|
-
max-width: 80%;
|
|
156
|
-
margin: 0 auto;
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.#{$prefix}-modal-v2{
|
|
161
|
-
.#{$mslide-content}{
|
|
162
|
-
.em-ds-modal-v2__modal-wrapper {
|
|
163
|
-
display: flex;
|
|
164
|
-
flex-direction: column;
|
|
165
|
-
}
|
|
166
|
-
.em-ds-modal-v2__modal-footer{
|
|
167
|
-
border-top: none;
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import './v1/DSPageHeader.scss';
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
// ********************************************
|
|
2
|
-
// container definition
|
|
3
|
-
$progress-indicator: #{$prefix}-determinate-progress-indicator;
|
|
4
|
-
$progress-bar: #{$prefix}-progress-bar;
|
|
5
|
-
$status-bar: #{$prefix}-status-bar;
|
|
6
|
-
$segment-progress: #{$progress-bar}-segment-progress;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
// ********************************************
|
|
10
|
-
// dimsum components
|
|
11
|
-
$dstruncatedtext: #{$prefix}-truncated-tooltip-text;
|
|
12
|
-
|
|
13
|
-
// ********************************************
|
|
14
|
-
// element definition
|
|
15
|
-
$title-el: #{$progress-indicator}__title;
|
|
16
|
-
|
|
17
|
-
.#{$progress-indicator} {
|
|
18
|
-
display: grid;
|
|
19
|
-
grid-template-columns: 1fr auto;
|
|
20
|
-
grid-template-rows: auto;
|
|
21
|
-
grid-template-areas:
|
|
22
|
-
"title counter"
|
|
23
|
-
"progressbar progressbar";
|
|
24
|
-
|
|
25
|
-
margin: space(s) space(m);
|
|
26
|
-
|
|
27
|
-
&__title, &__counter {
|
|
28
|
-
color: color(neutral, 500);
|
|
29
|
-
@include body-micro-text-style();
|
|
30
|
-
|
|
31
|
-
@at-root .#{$progress-indicator}--disabled {
|
|
32
|
-
color: color(neutral, 400);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.#{$dstruncatedtext}{
|
|
37
|
-
width: initial;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
&__title {
|
|
41
|
-
padding-right: space(s);
|
|
42
|
-
grid-area: title;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
&__counter {
|
|
46
|
-
white-space: nowrap;
|
|
47
|
-
grid-area: counter;
|
|
48
|
-
text-align: right;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.#{$progress-bar} {
|
|
52
|
-
display: flex;
|
|
53
|
-
grid-area: progressbar;
|
|
54
|
-
height: space(xxs) * 0.5;
|
|
55
|
-
position: relative;
|
|
56
|
-
background: color(neutral, 100);
|
|
57
|
-
border-radius: border-size();
|
|
58
|
-
|
|
59
|
-
&__progress {
|
|
60
|
-
&:not(:first-child) {
|
|
61
|
-
margin-left: space(xxs) * 0.5;
|
|
62
|
-
}
|
|
63
|
-
transition: width duration(fast) easing(base);
|
|
64
|
-
position: relative;
|
|
65
|
-
height: 100%;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.#{$progress-indicator}--disabled {
|
|
71
|
-
.#{$progress-indicator}__title {
|
|
72
|
-
color: color(neutral, 400);
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.#{$progress-indicator}__counter {
|
|
76
|
-
color: color(neutral, 200);
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.#{$progress-bar}__progress {
|
|
80
|
-
background: color(neutral, 200);
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.#{$progress-bar}__progress {
|
|
85
|
-
&--default { background-color: color(neutral, 500) }
|
|
86
|
-
&--success { background-color: color(success, 900) }
|
|
87
|
-
&--warning { background-color: color(warning, 900) }
|
|
88
|
-
&--info { background-color: color(brand-primary, 500) }
|
|
89
|
-
&--error { background-color: color(danger, 900) }
|
|
90
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
$row-height: space(xl);
|
|
2
|
-
$basic-row-height: space(l);
|
|
3
|
-
$row-shadow-default: 0 1px 2px 0 rgba(color(neutral, 500), 0.5);
|
|
4
|
-
$row-shadow-default-filter: -1px 1px 1px 0 rgba(color(neutral, 500), 0.5);
|
|
5
|
-
$row-shadow-drag: 0 1px 4px 0 rgba(color(neutral, 500), 0.75);
|
|
6
|
-
$is-or-color: color(warning, 600);
|
|
7
|
-
$is-and-color: color(brand-primary, 300);
|
|
8
|
-
$border-style-input-row: solid calc(#{space(xxs)} * 0.5);
|
|
9
|
-
$border-style-separator: $border-style-input-row color(neutral, 080);
|
|
10
|
-
$border-style-button-separator: solid calc(#{space(xxs)} * 0.25) color(neutral, 700);
|
|
11
|
-
|
|
12
|
-
@import './components/QueryBuilderRow/QueryBuilderRow';
|
|
13
|
-
@import './components/DragControllerRow/DragControllerRow';
|
|
14
|
-
@import './components/FieldControllerRow/FieldControllerRow';
|
|
15
|
-
@import './components/ConditionController/ConditionController';
|
|
16
|
-
@import './components/AndOrController/AndOrController';
|
|
17
|
-
@import './components/DragContainerController/DragContainerController';
|
|
18
|
-
@import './components/QueryBuilderItem/QueryBuilderItem';
|
|
19
|
-
@import './components/Nestable/Nestable';
|
|
20
|
-
@import './components/DisplayOutput/DisplayOutput';
|
|
@@ -1,179 +0,0 @@
|
|
|
1
|
-
// ********************************************
|
|
2
|
-
// container definition
|
|
3
|
-
$el-container: #{$prefix}-query-builder-and-or-controller;
|
|
4
|
-
$el-container-actions: #{$el-container}-actions;
|
|
5
|
-
$el-container-content: #{$el-container}-content;
|
|
6
|
-
$el-container-trigger: #{$el-container}-trigger-controller;
|
|
7
|
-
|
|
8
|
-
// ********************************************
|
|
9
|
-
// elements
|
|
10
|
-
$el-button-icon: #{$prefix}-icon--s;
|
|
11
|
-
$el-overlay-buttons: #{$prefix}-button--text;
|
|
12
|
-
$el-button-add-rule: #{$el-container}__add-rule-container;
|
|
13
|
-
$el-button-toggle: #{$prefix}-form-element-toggle;
|
|
14
|
-
$el-condition-display: #{$el-container}__condition-display;
|
|
15
|
-
$el-condition-step: #{$el-container}__condition-display-step;
|
|
16
|
-
$el-condition-label: #{$el-container}__condition-display-label;
|
|
17
|
-
$el-condition-separator: #{$el-container}__condition-separator;
|
|
18
|
-
$el-drag-controler: #{$prefix}-query-builder-drag-group;
|
|
19
|
-
|
|
20
|
-
// ********************************************
|
|
21
|
-
// modifiers
|
|
22
|
-
$el-container-active: #{$el-container}--active;
|
|
23
|
-
$el-container-default: #{$el-container}--default;
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
$icons-tooltip: #{$prefix}-icon;
|
|
27
|
-
|
|
28
|
-
@mixin controllerFullSize() {
|
|
29
|
-
position: relative;
|
|
30
|
-
height: 100%;
|
|
31
|
-
width: 100%;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
.#{$el-container}{
|
|
37
|
-
@include box-shadow($row-shadow-default);
|
|
38
|
-
width: space(l);
|
|
39
|
-
padding:0;
|
|
40
|
-
margin-right: space(xs);
|
|
41
|
-
display: flex;
|
|
42
|
-
align-items: center;
|
|
43
|
-
justify-content: center;
|
|
44
|
-
flex-direction: column;
|
|
45
|
-
height: 100%;
|
|
46
|
-
font-size: font-size(300);
|
|
47
|
-
font-weight: font-weight(semibold);
|
|
48
|
-
|
|
49
|
-
&.is-main-group-join{
|
|
50
|
-
margin-right:0;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.#{$el-drag-controler}{
|
|
54
|
-
opacity: 0;
|
|
55
|
-
}
|
|
56
|
-
&:hover{
|
|
57
|
-
.#{$el-drag-controler}{
|
|
58
|
-
opacity: 1;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
// ********************************************
|
|
64
|
-
// default
|
|
65
|
-
.#{$el-container-default}{
|
|
66
|
-
background: $is-or-color;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
// ********************************************
|
|
71
|
-
// active
|
|
72
|
-
.#{$el-container-active}{
|
|
73
|
-
background: $is-and-color;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.#{$el-container-content}{
|
|
77
|
-
@include controllerFullSize();
|
|
78
|
-
> div {
|
|
79
|
-
@include controllerFullSize();
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.#{$el-container-trigger}{
|
|
84
|
-
@include controllerFullSize();
|
|
85
|
-
@include center();
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
&--draggable{
|
|
89
|
-
.#{$el-condition-display}{
|
|
90
|
-
opacity: 1;
|
|
91
|
-
transition: all easing(base) duration(base);
|
|
92
|
-
}
|
|
93
|
-
.#{$el-drag-controler}{
|
|
94
|
-
display: none;
|
|
95
|
-
opacity: 0;
|
|
96
|
-
transition: all easing(base) duration(base);
|
|
97
|
-
}
|
|
98
|
-
&:hover{
|
|
99
|
-
.#{$el-condition-display}{
|
|
100
|
-
display: none;
|
|
101
|
-
opacity: 0;
|
|
102
|
-
}
|
|
103
|
-
.#{$el-drag-controler}{
|
|
104
|
-
display: flex;
|
|
105
|
-
flex-direction: column;
|
|
106
|
-
opacity: 1;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
// ********************************************
|
|
114
|
-
// Actions Overlay
|
|
115
|
-
.#{$el-container-actions}{
|
|
116
|
-
background: color(neutral, 000);
|
|
117
|
-
display: flex;
|
|
118
|
-
flex-direction: row;
|
|
119
|
-
align-items: center;
|
|
120
|
-
justify-content: center;
|
|
121
|
-
height: $basic-row-height;
|
|
122
|
-
min-width: calc(#{space(xl)} * 2.1);
|
|
123
|
-
|
|
124
|
-
.#{$el-overlay-buttons}{
|
|
125
|
-
margin: 0;
|
|
126
|
-
height: $basic-row-height;
|
|
127
|
-
width: $basic-row-height;
|
|
128
|
-
border-right: solid space(xxs) * 0.25 color(neutral, 050);
|
|
129
|
-
padding: space(xxs) space(xs);
|
|
130
|
-
}
|
|
131
|
-
.#{$el-button-toggle}{
|
|
132
|
-
margin: 0 space(xs);
|
|
133
|
-
border-right: solid space(xxs) * 0.25 color(neutral, 050);
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.#{$icons-tooltip}{
|
|
137
|
-
@include icon-color(color(brand-primary, 800));
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.#{$el-button-add-rule}{
|
|
142
|
-
height: $basic-row-height;
|
|
143
|
-
border-right: solid space(xxs) * 0.25 color(neutral, 050);
|
|
144
|
-
.#{$el-button-icon}{
|
|
145
|
-
height: calc(#{space(s)} * 0.8);
|
|
146
|
-
width: calc(#{space(s)} * 0.8);
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
// ********************************************
|
|
151
|
-
// Actions Overlay
|
|
152
|
-
.#{$el-condition-display}{
|
|
153
|
-
padding:space(xxs) 0;
|
|
154
|
-
width: 100%;
|
|
155
|
-
text-align: center;
|
|
156
|
-
& > .separator{
|
|
157
|
-
margin: space(xxs) auto;
|
|
158
|
-
background: color(neutral, 100);
|
|
159
|
-
height: 1px;
|
|
160
|
-
width: 50%;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
.#{$el-condition-label}{
|
|
164
|
-
height: space(s);
|
|
165
|
-
display: inline-block;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
.#{$el-condition-separator}{
|
|
169
|
-
border-bottom: $border-style-button-separator;
|
|
170
|
-
margin:space(xxs);
|
|
171
|
-
width: 50%;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
.#{$el-condition-step}{
|
|
175
|
-
position: absolute;
|
|
176
|
-
right: 0;
|
|
177
|
-
top: 0;
|
|
178
|
-
visibility: hidden;
|
|
179
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
// ********************************************
|
|
2
|
-
// container definition
|
|
3
|
-
$el-container: #{$prefix}-query-builder-condition-controller;
|
|
4
|
-
$el-container-actions: #{$el-container}-actions;
|
|
5
|
-
|
|
6
|
-
// ********************************************
|
|
7
|
-
// elements
|
|
8
|
-
$el-button-icon: #{$prefix}-icon--s;
|
|
9
|
-
$el-overlay-buttons: #{$prefix}-icon-button;
|
|
10
|
-
$el-button-add-rule-container: #{$el-container}__add-rule-container;
|
|
11
|
-
$el-button-add-rule: #{$el-container}__add-rule;
|
|
12
|
-
$el-button-remove-rule: #{$el-container}__remove-rule;
|
|
13
|
-
|
|
14
|
-
$icons-tooltip: #{$prefix}-icon;
|
|
15
|
-
|
|
16
|
-
.#{$el-container} {
|
|
17
|
-
position: relative;
|
|
18
|
-
.#{$icons-tooltip} {
|
|
19
|
-
@include icon-color(color(brand-primary, 800));
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.#{$el-container-actions} {
|
|
24
|
-
background: color(neutral, 000);
|
|
25
|
-
display: flex;
|
|
26
|
-
flex-direction: row;
|
|
27
|
-
height: $basic-row-height;
|
|
28
|
-
&:hover {
|
|
29
|
-
opacity: 1;
|
|
30
|
-
visibility: visible;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.#{$el-overlay-buttons} {
|
|
34
|
-
margin: 0;
|
|
35
|
-
height: $basic-row-height;
|
|
36
|
-
width: $basic-row-height;
|
|
37
|
-
border-right: $border-style-separator;
|
|
38
|
-
padding: space(xxs) space(xs);
|
|
39
|
-
&.no-border-right {
|
|
40
|
-
border-right: none;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.#{$el-button-add-rule-container} {
|
|
46
|
-
.#{$el-button-icon} {
|
|
47
|
-
height: calc(#{space(s)} * 0.8);
|
|
48
|
-
width: calc(#{space(s)} * 0.8);
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.#{$el-button-add-rule-container},
|
|
53
|
-
.#{$el-button-add-rule},
|
|
54
|
-
.#{$el-button-remove-rule} {
|
|
55
|
-
height: $basic-row-height;
|
|
56
|
-
border-right: solid space(xxs) * 0.25 color(neutral, 050);
|
|
57
|
-
.#{$icons-tooltip} {
|
|
58
|
-
@include icon-color(color(brand-primary, 800));
|
|
59
|
-
}
|
|
60
|
-
}
|
package/dist/styles/components/packages/ds-query-builder/components/DisplayOutput/DisplayOutput.scss
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
$container: #{$prefix}-query-builder-output;
|
|
2
|
-
$accordion: #{$prefix}-accordion;
|
|
3
|
-
$accordion-item: #{$accordion}-item;
|
|
4
|
-
|
|
5
|
-
.#{$container}{
|
|
6
|
-
padding: space(xs) 0;
|
|
7
|
-
// .#{$accordion}{}
|
|
8
|
-
.#{$accordion-item} {
|
|
9
|
-
border: none;
|
|
10
|
-
&:last-child{
|
|
11
|
-
border: none;
|
|
12
|
-
}
|
|
13
|
-
&__title{
|
|
14
|
-
color: color(brand-primary, 700);
|
|
15
|
-
h2{
|
|
16
|
-
@include body-text-style(semibold);
|
|
17
|
-
line-height: space(l);
|
|
18
|
-
text-transform: uppercase;
|
|
19
|
-
margin: 0;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
&__expand-zone-space{
|
|
23
|
-
padding-top: 0;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
}
|