@elliemae/ds-basic 3.32.2-next.1 → 3.33.0-next.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.
@@ -23,7 +23,7 @@
23
23
 
24
24
  @import '../../../atom/ds-progress-indicator/src/DSProgressIndicator';
25
25
  @import '../../../legacy/ds-page-header-v1/src/DSPageHeader';
26
- @import '../../../legacy/ds-truncated-tooltip-text/src/DSTruncatedTooltipText';
26
+ @import '../../../layout/ds-truncated-tooltip-text/src/DSTruncatedTooltipText';
27
27
  @import '../../../legacy/ds-toolbar-v1/src/DSToolbar';
28
28
  @import '../../../legacy/ds-time-picker/src/DSTimePicker';
29
29
  @import '../../../legacy/ds-spinner/src/DSSpinner';
@@ -31,13 +31,13 @@
31
31
  @import '../../../atom/ds-tooltip/src/v1/DSTooltip';
32
32
  @import '../../../legacy/ds-popover/src/DSPopover';
33
33
  @import '../../../legacy/ds-overlay/src/DSOverlay';
34
- @import '../../../legacy/ds-portal/src/DSPortal';
34
+ @import '../../../util/ds-portal/src/DSPortal';
35
35
  @import '../../../legacy/ds-button-v1/src/DSButton';
36
36
  @import '../../../atom/ds-separator/src/DSSeparator';
37
37
  @import '../../../legacy/ds-label-value/src/DSLabelValue';
38
38
  @import '../../../legacy/ds-group-box/src/DSGroupBox';
39
39
  @import '../../../legacy/ds-text-wrapper/src/DSTextWrapper';
40
- @import '../../../legacy/ds-card/src/DSCard';
40
+ @import '../../../layout/ds-card/src/DSCard';
41
41
  @import '../../../legacy/ds-button-group/src//DSButtonGroup';
42
42
  @import '../../../legacy/ds-dropdownmenu/src/DSDropdownMenu';
43
43
  @import '../../../legacy/ds-menu/src/Menu';
@@ -21,8 +21,8 @@
21
21
  @import '../../../../legacy/ds-date-time-picker/src/DSDateTimePicker.scss';
22
22
  @import '../../../../legacy/ds-date-range-picker/src/DSDateRangePicker.scss';
23
23
  @import '../../../../legacy/ds-date-range-selector/src/DSDateRangeSelector.scss';
24
- @import '../../../../legacy/ds-codeeditor/src/DSCodeEditor.scss';
25
- @import '../../../../legacy/ds-wysiwygeditor/src/DSWYSIWYGEditor.scss';
26
- @import '../../../../legacy/ds-imagelibrarymodal/src/DSImageLibraryModal.scss';
24
+ @import '../../../../util/ds-codeeditor/src/DSCodeEditor.scss';
25
+ @import '../../../../layout/ds-wysiwygeditor/src/DSWYSIWYGEditor.scss';
26
+ @import '../../../../util/ds-imagelibrarymodal/src/DSImageLibraryModal.scss';
27
27
  @import '../../../../layout/ds-ribbon/src/DSRibbon.scss';
28
28
  @import '../../../../legacy/ds-card-array/src/DSCardArray.scss';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-basic",
3
- "version": "3.32.2-next.1",
3
+ "version": "3.33.0-next.1",
4
4
  "license": "MIT",
5
5
  "description": "EllieMae UI Design System Library",
6
6
  "files": [
@@ -36,7 +36,7 @@
36
36
  "@elliemae/pui-cli": "~9.0.0-next.31",
37
37
  "gulp": "~4.0.2",
38
38
  "gulp-rename": "~2.0.0",
39
- "@elliemae/ds-monorepo-devops": "3.32.2-next.1"
39
+ "@elliemae/ds-monorepo-devops": "3.33.0-next.1"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "lodash": "^4.17.21",
@@ -1,35 +0,0 @@
1
- @function separator-border($color: 200, $size: 1px) {
2
- @return $size solid color(neutral, $color);
3
- }
4
-
5
- // ********************************************
6
- // container definition
7
- $el-container: #{$prefix}-card;
8
- $el-card-body: #{$prefix}-card-body;
9
- $el-header: #{$prefix}-card-header;
10
- $el-heading: #{$el-header}__heading;
11
- $el-pull-right: #{$el-header}__pull-right;
12
-
13
- .#{$el-container} {
14
- border: 1px solid color(neutral, 050);
15
- @include border-radius(0);
16
- @include box-shadow(1px 1px 3px 1px rgba(0, 0, 0, 0.3));
17
-
18
- .#{$el-header} {
19
- color: color(neutral, 600);
20
- padding: 6px 15px;
21
- border-bottom: 1px solid transparent;
22
- @include border-radius(0);
23
- .#{$el-heading} {
24
- color: color(neutral, 600);
25
- font-family: inherit;
26
- font-size: 18pt;
27
- }
28
- .#{$el-pull-right} {
29
- float: right;
30
- }
31
- }
32
- .#{$el-card-body} {
33
- padding: 1rem;
34
- }
35
- }
@@ -1 +0,0 @@
1
- @import './components/DSCodeEditorImpl';
@@ -1,69 +0,0 @@
1
- $el-container: #{$prefix}-code-editor;
2
- $el-file-name: #{$el-container}-file-name;
3
- $el-find-replace-btn: #{$el-container}-find-replace-btn;
4
- $el-next-back-btn: #{$el-container}-next-back-btn;
5
- $el-find: #{$el-container}-find;
6
- $el-replace: #{$el-container}-replace;
7
- $el-replace-btns: #{$el-container}-replace-btns;
8
- $options-group: #{$el-container}-options-group;
9
-
10
- // dimsum components
11
- $ds-checkbox: #{$prefix}-form-element-checkbox;
12
-
13
- .#{$el-file-name} {
14
- padding-bottom: space(s);
15
- border-bottom: 1px solid color(neutral, 050);
16
- }
17
-
18
- .#{$el-find-replace-btn} {
19
- display: flex;
20
- margin-top: space(s);
21
- margin-bottom: space(s);
22
-
23
- .em-ds-button:first-child {
24
- margin-right: space(s);
25
- }
26
- }
27
-
28
- .#{$el-next-back-btn},
29
- .#{$el-replace-btns} {
30
- display: flex;
31
- }
32
-
33
- .#{$el-replace},
34
- .#{$el-replace-btns} {
35
- margin-top: space(s);
36
- }
37
-
38
- .#{$el-replace-btns} {
39
- margin-bottom: space(s);
40
- .em-ds-button:first-child {
41
- margin-right: space(s);
42
- }
43
- }
44
-
45
- .#{$el-find} {
46
- align-items: baseline;
47
- .em-ds-input {
48
- margin-right: space(xs);
49
- }
50
- .em-ds-form-element-checkbox {
51
- flex: 0.5;
52
-
53
- .em-ds-form-element-checkbox__input-button {
54
- margin-right: space(xs);
55
- }
56
- }
57
- }
58
-
59
- .#{$options-group} {
60
- padding: 0 space(xs);
61
- display: flex;
62
- .#{$ds-checkbox}:not(:last-child) {
63
- margin-right: space(s);
64
- }
65
- }
66
-
67
- .ace_editor {
68
- width: 100% !important;
69
- }
@@ -1,86 +0,0 @@
1
- // TODO: Create global variables to be imported/reused
2
-
3
- // ********************************************
4
- // container definition
5
- $el-container: #{$prefix}-modal;
6
-
7
- // ********************************************
8
- // elements
9
- $el-body: #{$el-container}__body;
10
- $el-body-wrapper: #{$el-container}__body-wrapper;
11
-
12
- .#{$el-container}-image-library {
13
- .#{$el-body} {
14
- padding: 0px;
15
- overflow-y: hidden;
16
- }
17
- .#{$el-body-wrapper} {
18
- padding: 0px;
19
- }
20
- .wrapper {
21
- display: flex;
22
- .col-1 {
23
- flex: 3;
24
- margin: space(s) 0;
25
- overflow-y: auto;
26
- height: 60vh;
27
- .title {
28
- font-size: font-size(600);
29
- font-weight: font-weight(semibold);
30
- position: sticky;
31
- padding: 0 space(s) space(s);
32
- top: 0;
33
- background-color: white;
34
- }
35
- .imglibmodal-element {
36
- padding: space(xs) 0;
37
- outline-style: none;
38
- .content {
39
- padding: 0 space(s);
40
- }
41
- &:hover {
42
- background-color: color(neutral, 100);
43
- cursor: pointer;
44
- }
45
- &:focus {
46
- background-color: color(brand-primary, 200);
47
- }
48
- }
49
- }
50
- .col-2 {
51
- flex: 5;
52
- border-left: 1px solid #ebedf0;
53
- padding: space(s);
54
- height: 65vh;
55
- .title {
56
- text-align: center;
57
- font-size: font-size(600);
58
- }
59
- img, .#{$el-icon}, .#{$spinner-container} {
60
- margin: auto;
61
- width: 100%;
62
- height: 85%;
63
- padding: space(s);
64
- max-height: 85%;
65
- object-fit: contain;
66
- display: flex;
67
- justify-content: center;
68
- }
69
- .info {
70
- display: flex;
71
- flex-direction: column;
72
- height: 5vh;
73
- justify-content: space-between;
74
- .label {
75
- color: color(neutral, 500);
76
- padding-left: space(s);
77
- padding-right: space(xs);
78
- font-weight: font-weight(regular);
79
- }
80
- .value {
81
- font-weight: font-weight(semibold);
82
- }
83
- }
84
- }
85
- }
86
- }
@@ -1,10 +0,0 @@
1
- // ********************************************
2
- // container definition
3
- $el-container: #{$prefix}-portal;
4
-
5
- .#{$el-container} {
6
- position: absolute;
7
- top: 0;
8
- left: 0;
9
- right: 0;
10
- }
@@ -1,15 +0,0 @@
1
- // ********************************************
2
- // container definition
3
- $el-container: #{$prefix}-truncated-tooltip-text;
4
-
5
- .#{$el-container} {
6
- display: flex;
7
- min-width: 0;
8
-
9
- &__text {
10
- white-space: nowrap;
11
- overflow: hidden;
12
- display: inline-block;
13
- max-width: 100%;
14
- }
15
- }
@@ -1,2 +0,0 @@
1
- @import './components/DSWYSIWYGEditorImpl';
2
- @import './components/InsertFieldModal';