cc-core-cli 1.0.103 → 1.0.105

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-core-cli",
3
- "version": "1.0.103",
3
+ "version": "1.0.105",
4
4
  "description": "Command Line Interface tool for generating project templates for the (Your Platform's Name) platform.",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {
@@ -5,6 +5,6 @@ COOKIE_HTTP_ONLY=false
5
5
  COOKIE_SAME_SITE=
6
6
  SYSTEM_APP_KEY=0939f325-e24f-4de3-8796-4d5e7243849c
7
7
  SYSTEM_SECRET_KEY=ogi6xld0kftb5yvm6t17x2a6bmyipnfja6s7v5v2
8
- API_GATEWAY=http://localhost:3000/api/v1
9
- API_GATEWAY_MEDIA=http://localhost:3000
8
+ API_GATEWAY=http://127.0.0.1:3000/api/v1
9
+ API_GATEWAY_MEDIA=http://127.0.0.1:3000
10
10
  GOOGLE_MAP_KEY=
@@ -15,7 +15,7 @@
15
15
  "author": "",
16
16
  "license": "ISC",
17
17
  "dependencies": {
18
- "@shopstack/cc-admin-lib": "^2.5.42"
18
+ "@shopstack/cc-admin-lib": "^2.5.153"
19
19
  },
20
20
  "devDependencies": {
21
21
  "identity-obj-proxy": "^3.0.0",
@@ -0,0 +1,23 @@
1
+ .editable-form-field {
2
+ .clss-auto-complete {
3
+ width: 100%;
4
+ }
5
+ }
6
+
7
+ .editable-from-cell-value-wrap {
8
+ border: 1px solid #d9d9d9;
9
+ border-radius: 4px;
10
+ padding: 4px 11px;
11
+ min-height: 32px;
12
+ cursor: pointer;
13
+ }
14
+
15
+ .ant-form-item-has-error .editable-from-cell-value-wrap {
16
+ border: 1px solid #e70e0e;
17
+ }
18
+
19
+ .editable-form-cell-read-only {
20
+ cursor: not-allowed;
21
+ background-color: #f5f5f5;
22
+ color: @text-color-disabled;
23
+ }
@@ -29,6 +29,7 @@
29
29
  @import "pipeline.less";
30
30
  @import "tree_theme_minimal.less";
31
31
  @import "matrix.less";
32
+ @import "editTable.less";
32
33
 
33
34
  //----- Custom table ------//
34
35
  .ant-table-column-sorters {
@@ -83,6 +84,7 @@
83
84
  margin-left: 8px;
84
85
  }
85
86
  }
87
+
86
88
  .btn-config {
87
89
  .ant-btn {
88
90
  margin-left: 8px;
@@ -119,7 +121,7 @@
119
121
  }
120
122
  }
121
123
 
122
- .ant-table-container table > thead > tr:first-child th:last-child {
124
+ .ant-table-container table>thead>tr:first-child th:last-child {
123
125
  border-radius: 0px;
124
126
  }
125
127
 
@@ -132,7 +134,7 @@
132
134
  }
133
135
 
134
136
  .relate-table {
135
- .ant-table-thead > tr > th {
137
+ .ant-table-thead>tr>th {
136
138
  padding: 8px 16px;
137
139
  font-weight: 500;
138
140
  font-size: 13px;
@@ -147,7 +149,7 @@
147
149
  .ant-table-content {
148
150
  overflow: auto !important;
149
151
 
150
- .ant-table-thead > tr > th {
152
+ .ant-table-thead>tr>th {
151
153
  padding: 8px 16px;
152
154
  font-weight: 500;
153
155
  font-size: 13px;
@@ -232,6 +234,7 @@
232
234
  }
233
235
 
234
236
  &.select-list {
237
+
235
238
  .ant-table-thead th,
236
239
  .ant-table-tbody td {
237
240
  vertical-align: middle;
@@ -324,6 +327,7 @@ h4.ant-typography {
324
327
  @media (max-width: 991px) {
325
328
  width: 100% !important;
326
329
  }
330
+
327
331
  @media (min-width: 992px) {
328
332
  width: 60% !important;
329
333
  }
@@ -411,8 +415,8 @@ h4.ant-typography {
411
415
 
412
416
  .ant-select .ant-select-arrow,
413
417
  .ant-select .ant-select-clear,
414
- :not(.ant-input-group-addon) > .ant-select .ant-select-arrow,
415
- :not(.ant-input-group-addon) > .ant-select .ant-select-clear {
418
+ :not(.ant-input-group-addon)>.ant-select .ant-select-arrow,
419
+ :not(.ant-input-group-addon)>.ant-select .ant-select-clear {
416
420
  right: 11px;
417
421
  }
418
422
  }
@@ -517,15 +521,15 @@ h4.ant-typography {
517
521
 
518
522
  //----- Custom Ant Tree------//
519
523
  .ant-tree {
520
- .ant-tree-treenode.drag-over > [draggable] {
524
+ .ant-tree-treenode.drag-over>[draggable] {
521
525
  background-color: #d4eaff;
522
526
  }
523
527
 
524
- .ant-tree-treenode.drag-over-gap-top > [draggable] {
528
+ .ant-tree-treenode.drag-over-gap-top>[draggable] {
525
529
  border-top-color: #d4eaff;
526
530
  }
527
531
 
528
- .ant-tree-treenode.drag-over-gap-bottom > [draggable] {
532
+ .ant-tree-treenode.drag-over-gap-bottom>[draggable] {
529
533
  border-bottom-color: #d4eaff;
530
534
  }
531
535
 
@@ -745,7 +749,7 @@ h4.ant-typography {
745
749
  width: 100%;
746
750
  height: 100%;
747
751
  left: 0;
748
- // background-color: rgba(0, 0, 0, 0.5);แ
752
+ // background-color: rgba(0, 0, 0, 0.5);แ
749
753
  opacity: 0.9;
750
754
  transition: all 0.3s;
751
755
  content: " ";
@@ -1441,6 +1445,7 @@ h4.ant-typography {
1441
1445
 
1442
1446
  // AutoComplete Field
1443
1447
  .autocomplete.ant-form-item-has-feedback.ant-form-item-has-error {
1448
+
1444
1449
  &.field,
1445
1450
  &.func {
1446
1451
  .ant-form-item-children-icon {
@@ -1662,6 +1667,7 @@ h4.ant-typography {
1662
1667
  .dropdown-content {
1663
1668
  display: none;
1664
1669
  }
1670
+
1665
1671
  .dropdown:hover .dropdown-content {
1666
1672
  display: flex;
1667
1673
  position: fixed;
@@ -1677,7 +1683,8 @@ h4.ant-typography {
1677
1683
  .ant-menu-submenu-open .ant-menu-submenu-arrow {
1678
1684
  color: @primary-color !important;
1679
1685
  }
1680
- .ant-menu-submenu-open .ant-menu-submenu-title > span {
1686
+
1687
+ .ant-menu-submenu-open .ant-menu-submenu-title>span {
1681
1688
  color: @primary-color !important;
1682
1689
  }
1683
1690
  }
@@ -1768,9 +1775,11 @@ h4.ant-typography {
1768
1775
  top: 0px;
1769
1776
  left: 5px;
1770
1777
  }
1778
+
1771
1779
  .custom-selectList {
1772
1780
  .draggable-row {
1773
1781
  border: none !important;
1782
+
1774
1783
  .move {
1775
1784
  background-color: #fff !important;
1776
1785
  }
@@ -1816,6 +1825,7 @@ h4.ant-typography {
1816
1825
  background-color: #fff;
1817
1826
  z-index: 100;
1818
1827
  }
1828
+
1819
1829
  .customNode-flow {
1820
1830
  padding: 4px 8px;
1821
1831
  border: 1px solid @primary-color;
@@ -1891,6 +1901,7 @@ h4.ant-typography {
1891
1901
  position: relative;
1892
1902
  margin-left: -1px;
1893
1903
  }
1904
+
1894
1905
  .custom-node-distribution-btn {
1895
1906
  padding: 4px 8px;
1896
1907
  border: 1px solid @text-color-disabled;
@@ -1929,4 +1940,4 @@ h4.ant-typography {
1929
1940
  .buttonvariable:hover {
1930
1941
  background-color: var(--background-color-hover-var) !important;
1931
1942
  color: var(--text-color-hover-var) !important;
1932
- }
1943
+ }
@@ -13,23 +13,29 @@
13
13
  @import '../public/static/styles/restful.less';
14
14
  @import '../public/static/styles/setting.less';
15
15
  @import '../public/static/styles/system.less';
16
- @import '../public/static/styles/matrix.less';
17
16
  @import '../public/static/styles/rabbitmq.less';
17
+ @import '../public/static/styles/datepicker.less';
18
+ @import '../public/static/styles/matrix.less';
19
+ @import '../public/static/styles/tree_theme_minimal.less';
20
+ @import '../public/static/styles/editTable.less';
18
21
 
19
- @primary-color : @primary-color;
20
- @hover-color : @item-hover-bg;
21
- @action-color : @info-color;
22
- @border-radius-base : @border-radius-base;
23
- @breadcrumb-link-color-hover : @breadcrumb-link-color-hover;
24
- @layout-footer-background : @layout-footer-background;
25
- @menu-item-active-bg : @menu-item-active-bg;
26
- @table-header-bg : @table-header-bg;
27
- @table-header-color : @table-header-color;
28
- @table-header-sort-bg : @table-header-sort-bg;
29
- @table-body-sort-bg : @table-body-sort-bg;
30
- @table-row-hover-bg : @table-row-hover-bg;
31
- @menu-dark-bg : @menu-dark-bg;
32
- @menu-dark-submenu-bg : @menu-dark-submenu-bg;
33
- @menu-item-color : @menu-item-color;
34
- @menu-highlight-color : @menu-highlight-color;
35
- @menu-item-group-title-color : @menu-item-group-title-color;
22
+ @primary-color: @primary-color;
23
+ @hover-color: @item-hover-bg;
24
+ @action-color: @info-color;
25
+ @border-radius-base: @border-radius-base;
26
+ @breadcrumb-link-color-hover: @breadcrumb-link-color-hover;
27
+ @layout-footer-background: @layout-footer-background;
28
+ @menu-item-active-bg: @menu-item-active-bg;
29
+ @table-header-bg: @table-header-bg;
30
+ @table-header-color: @table-header-color;
31
+ @table-header-sort-bg: @table-header-sort-bg;
32
+ @table-body-sort-bg: @table-body-sort-bg;
33
+ @table-row-hover-bg: @table-row-hover-bg;
34
+ @menu-dark-bg: @menu-dark-bg;
35
+ @menu-dark-submenu-bg: @menu-dark-submenu-bg;
36
+ @menu-item-color: @menu-item-color;
37
+ @menu-highlight-color: @menu-highlight-color;
38
+ @menu-item-group-title-color: @menu-item-group-title-color;
39
+ @table-selected-row-bg: @table-selected-row-bg;
40
+ @menu-popup-bg: @menu-popup-bg;
41
+ @text-color: @text-color;
@@ -17,7 +17,7 @@
17
17
  "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
18
18
  },
19
19
  "dependencies": {
20
- "@shopstack/cc-core-lib": "^2.5.101"
20
+ "@shopstack/cc-core-lib": "^2.5.155"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/bull": "^3.14.4",