@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.
Files changed (29) hide show
  1. package/dist/css/dimsum.css +24 -23
  2. package/dist/css/dimsum.min.css +1 -1
  3. package/dist/css/dimsum.min.css.map +1 -1
  4. package/dist/styles/components/packages/ds-basic/index.scss +47 -47
  5. package/dist/styles/components/packages/ds-basic/styles/components/index.scss +19 -19
  6. package/dist/styles/components/packages/ds-button-v1/DSButton.scss +23 -15
  7. package/dist/styles/components/packages/{ds-page-header/v1 → ds-page-header-v1}/DSPageHeader.scss +4 -4
  8. package/dist/styles/components/packages/{ds-toolbar → ds-toolbar-v1}/DSToolbar.scss +4 -6
  9. package/package.json +4 -4
  10. package/dist/styles/components/packages/ds-circular-progress-indicator/DSCircularProgressIndicator.scss +0 -81
  11. package/dist/styles/components/packages/ds-dropdownmenu/DSDropdownMenu.scss +0 -128
  12. package/dist/styles/components/packages/ds-indeterminate-progress-indicator/DSIndeterminateProgressIndicator.scss +0 -167
  13. package/dist/styles/components/packages/ds-modal-slide/DSModalSlide.scss +0 -170
  14. package/dist/styles/components/packages/ds-page-header/DSPageHeader.scss +0 -1
  15. package/dist/styles/components/packages/ds-progress-indicator/DSProgressIndicator.scss +0 -90
  16. package/dist/styles/components/packages/ds-query-builder/DSQueryBuilder.scss +0 -20
  17. package/dist/styles/components/packages/ds-query-builder/components/AndOrController/AndOrController.scss +0 -179
  18. package/dist/styles/components/packages/ds-query-builder/components/ConditionController/ConditionController.scss +0 -60
  19. package/dist/styles/components/packages/ds-query-builder/components/DisplayOutput/DisplayOutput.scss +0 -27
  20. package/dist/styles/components/packages/ds-query-builder/components/DragContainerController/DragContainerController.scss +0 -25
  21. package/dist/styles/components/packages/ds-query-builder/components/DragControllerRow/DragControllerRow.scss +0 -15
  22. package/dist/styles/components/packages/ds-query-builder/components/FieldControllerRow/FieldControllerRow.scss +0 -92
  23. package/dist/styles/components/packages/ds-query-builder/components/Nestable/Nestable.scss +0 -140
  24. package/dist/styles/components/packages/ds-query-builder/components/QueryBuilderItem/QueryBuilderItem.scss +0 -108
  25. package/dist/styles/components/packages/ds-query-builder/components/QueryBuilderRow/QueryBuilderRow.scss +0 -92
  26. package/dist/styles/components/packages/ds-ribbon/DSRibbon.scss +0 -5
  27. package/dist/styles/components/packages/ds-separator/DSSeparator.scss +0 -133
  28. package/dist/styles/components/packages/ds-tooltip/v1/DSTooltip.scss +0 -92
  29. package/dist/styles/components/packages/ds-treeview/Tree.scss +0 -262
@@ -1,262 +0,0 @@
1
- // ********************************************
2
- // container definition
3
- $tree-list: #{$prefix}-tree-list;
4
- $tree-item: #{$prefix}-tree-item;
5
- $rz-normal: #{$prefix}-tv-row-size-normal;
6
- $rz-compact: #{$prefix}-tv-row-size-compact;
7
- $normal: 36px;
8
- $compact: 28px;
9
-
10
- $dsicon: #{$prefix}-icon;
11
-
12
- // selects the duplicated item when dragging
13
- // this works because duplicate item always appends to body by default
14
- body > .#{$tree-item} {
15
- box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
16
- }
17
-
18
- .#{$tree-item} {
19
- color: color(neutral, 800);
20
- display: flex;
21
- align-items: center;
22
- position: relative;
23
- background-color: color(neutral, 000);
24
- padding: 0 space(xxs);
25
- min-height: $normal;
26
-
27
- &--fixed-height {
28
- height: 36px;
29
- &-compact {
30
- height: 28px;
31
- }
32
- }
33
-
34
- &__value--wrap-all {
35
- max-width: 100%;
36
- // hyphens seems to not be working well with break-all
37
- // -webkit-hyphens: auto;
38
- // -moz-hyphens: auto;
39
- // -ms-hyphens: auto;
40
- // hyphens: auto;
41
- word-break: break-all;
42
- }
43
- &__value--truncate {
44
- white-space: nowrap;
45
- }
46
-
47
- &-children-count-displayer {
48
- color: color(neutral, 500);
49
- }
50
- &--valid-drop-in:after {
51
- content: '';
52
- display: block;
53
- position: absolute;
54
- top: 0;
55
- left: 0;
56
- right: 0;
57
- bottom: 0;
58
- border: 2px solid color(brand-primary, 600);
59
- }
60
-
61
- &--invalid-drop-in:after {
62
- content: '';
63
- display: block;
64
- position: absolute;
65
- top: 0;
66
- left: 0;
67
- right: 0;
68
- bottom: 0;
69
- border: 2px solid color(danger, 900);
70
- }
71
-
72
- .#{$tree-item}__value {
73
- min-width: 0;
74
- width: 100%;
75
- margin: space(xs) 0;
76
- margin-top: space(xs) * 1.5;
77
- .tree-item-value {
78
- margin-right: 2px;
79
- }
80
- &--truncate {
81
- height: 16px;
82
- }
83
- }
84
-
85
- &__addons {
86
- display: flex;
87
- align-items: center;
88
- align-self: flex-start;
89
- height: $normal;
90
- margin-right: space(xxs) * 0.5;
91
- .#{$dsicon} {
92
- @include icon-color(color(brand-primary, 800));
93
- }
94
- }
95
-
96
- &.selected {
97
- &:before {
98
- content: '';
99
- position: absolute;
100
- top: 0;
101
- left: 0;
102
- width: 100%;
103
- height: 100%;
104
- border: 1px solid color(brand-primary, 500);
105
- pointer-events: none;
106
- }
107
- background-color: color(brand-primary, 200);
108
- }
109
-
110
- &.drag-overlay {
111
- box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
112
- border-radius: 2px;
113
- padding-right: space(xs);
114
- }
115
-
116
- &--dragging {
117
- background-color: color(neutral, 080);
118
- color: color(neutral, 500);
119
- .#{$dsicon} {
120
- @include icon-color(color(neutral, 500));
121
- }
122
- }
123
-
124
- .drag-handle {
125
- position: relative;
126
- transition: duration(fast) easing(base);
127
- align-items: center;
128
- display: flex;
129
- height: 24px;
130
- visibility: visible;
131
- opacity: 1;
132
- margin-left: 8px;
133
- outline: none;
134
- cursor: grab;
135
- &[data-isactive='true'],
136
- &[data-isdragoverlay='true'] {
137
- cursor: grabbing;
138
- }
139
- &.focuseable:focus:after {
140
- content: '';
141
- position: absolute;
142
- top: 0;
143
- left: 0;
144
- width: 100%;
145
- height: 100%;
146
- border: 2px solid color(brand-primary, 700);
147
- pointer-events: none;
148
- }
149
- }
150
- .expandable-arrow {
151
- margin-left: 8px;
152
- width: 16px;
153
- height: 16px;
154
- min-width: unset;
155
- border: none;
156
- }
157
- &-checkbox {
158
- width: 16px;
159
- height: 16px;
160
- }
161
- &-checkbox,
162
- &-radio {
163
- margin-left: 8px;
164
- }
165
- &-radio {
166
- padding-bottom: 0;
167
- }
168
-
169
- &.can-group-over {
170
- .#{$tree-item}__value {
171
- font-weight: bold;
172
- }
173
- }
174
-
175
- .#{$tree-item}-content {
176
- display: flex;
177
- flex: 1;
178
- min-width: 0;
179
- }
180
-
181
- .tree-item-icon {
182
- margin-right: space(xxs);
183
- width: 16px;
184
- height: 16px;
185
- color: color(brand-primary, 800);
186
- }
187
-
188
- .tree-item-radio {
189
- padding-bottom: 0;
190
- }
191
-
192
- &.hover {
193
- //Update from mixins when the correct states story comes
194
- background-color: color(brand-primary, 200);
195
-
196
- &.selected {
197
- background-color: color(brand-primary, 200);
198
- }
199
- }
200
-
201
- &:focus {
202
- outline: none;
203
- box-shadow: unset;
204
- border-radius: 0px;
205
- z-index: 1;
206
- &:before {
207
- content: '';
208
- position: absolute;
209
- top: 0;
210
- left: 0;
211
- width: 100%;
212
- height: 100%;
213
- border: 2px solid color(brand-primary, 700);
214
- pointer-events: none;
215
- }
216
- &.selected {
217
- outline: unset;
218
- }
219
- }
220
-
221
- .toolbar-trigger {
222
- margin-top: space(xxs);
223
- }
224
- }
225
-
226
- .#{$tree-list} {
227
- // overrides default browser ul
228
- list-style-type: none;
229
- margin: 0;
230
- padding: 0;
231
-
232
- min-width: 240px;
233
-
234
- &.#{$rz-compact} {
235
- .#{$tree-item} {
236
- min-height: $compact;
237
- &__addons {
238
- height: $compact;
239
- }
240
- &__value {
241
- margin: 0;
242
- margin-top: 4px;
243
- }
244
- }
245
- .toolbar-trigger {
246
- margin-top: 0;
247
- }
248
- }
249
- }
250
-
251
- .#{$tree-list}-no-items {
252
- display: flex;
253
- justify-content: center;
254
- padding-top: space(m);
255
- height: 100%;
256
- width: 100%;
257
- }
258
-
259
- .tree-text-highlight {
260
- font-weight: bold;
261
- background-color: color(warning, 600);
262
- }