@g1cloud/bluesea 5.0.0-alpha.1 → 5.0.0-alpha.3

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 (39) hide show
  1. package/css/bluesea-base.scss +0 -1
  2. package/css/component.scss +8 -1
  3. package/css/reset.scss +6 -0
  4. package/css/variable.scss +21 -6
  5. package/dist/bluesea.js +1051 -290
  6. package/dist/bluesea.umd.cjs +1050 -289
  7. package/dist/component/input/BSCheckbox.vue.d.ts +5 -0
  8. package/dist/component/input/BSCheckboxGroup.vue.d.ts +3 -0
  9. package/dist/component/input/BSDateInput.vue.d.ts +5 -0
  10. package/dist/component/input/BSMultiSelect.vue.d.ts +3 -0
  11. package/dist/component/input/BSNumberInput.vue.d.ts +5 -0
  12. package/dist/component/input/BSRadioButton.vue.d.ts +3 -0
  13. package/dist/component/input/BSRadioButtonGroup.vue.d.ts +3 -0
  14. package/dist/component/input/BSSelect.vue.d.ts +3 -0
  15. package/dist/component/input/BSTextArea.vue.d.ts +5 -0
  16. package/dist/component/input/BSTextInput.vue.d.ts +10 -2
  17. package/dist/component/input/BSTreeSelect.vue.d.ts +3 -0
  18. package/dist/component/input/InternalDateInput.vue.d.ts +19 -3
  19. package/dist/component/layout/BSListLayout.vue.d.ts +52 -0
  20. package/dist/component/layout/BSListLayoutItem.vue.d.ts +49 -0
  21. package/dist/component/multilang/BSMultiLangTextArea.vue.d.ts +68 -0
  22. package/dist/component/multilang/BSMultiLangTextInput.vue.d.ts +68 -0
  23. package/dist/component/tree/BSTree.vue.d.ts +4 -0
  24. package/dist/config/config.d.ts +14 -0
  25. package/dist/contextmenu/BSContextMenu.vue.d.ts +20 -0
  26. package/dist/contextmenu/BSContextMenuContainer.vue.d.ts +2 -0
  27. package/dist/contextmenu/contextMenuPlugin.d.ts +25 -0
  28. package/dist/directive/vT.d.ts +5 -0
  29. package/dist/index.d.ts +15 -0
  30. package/dist/modal/BSModalContainer.vue.d.ts +2 -0
  31. package/dist/modal/BSModalFrame.vue.d.ts +27 -0
  32. package/dist/modal/BSModalWrapper.vue.d.ts +16 -0
  33. package/dist/modal/modalPlugin.d.ts +50 -0
  34. package/dist/model/CommonTypes.d.ts +6 -0
  35. package/dist/style.css +472 -30
  36. package/dist/text/texts.d.ts +17 -0
  37. package/dist/util/componentUtil.d.ts +1 -0
  38. package/dist/validator/FieldValidator.d.ts +22 -0
  39. package/package.json +2 -1
@@ -3,4 +3,3 @@
3
3
  @import "./utility";
4
4
  @import "./layout";
5
5
  @import "./frame/default";
6
- @import "../dist/style";
@@ -37,6 +37,7 @@
37
37
  flex-grow: 1;
38
38
  padding: 0 8px;
39
39
  background-color: transparent;
40
+ width: 100%;
40
41
  }
41
42
 
42
43
  textarea {
@@ -122,6 +123,12 @@
122
123
  }
123
124
  }
124
125
 
126
+ // field error
127
+ .bs-field-error {
128
+ color: $color-error;
129
+ margin-top: 4px;
130
+ }
131
+
125
132
  // button style
126
133
  .bs-clickable {
127
134
  user-select: none;
@@ -142,7 +149,7 @@
142
149
 
143
150
  // utility
144
151
  .component-shadow-base {
145
- box-shadow: 2px 2px 8px #eee;
152
+ box-shadow: 2px 2px 8px #aaa;
146
153
  }
147
154
 
148
155
  .font-icon {
package/css/reset.scss CHANGED
@@ -55,4 +55,10 @@ table {
55
55
 
56
56
  * {
57
57
  box-sizing: border-box;
58
+ }
59
+
60
+ // additional
61
+
62
+ strong {
63
+ font-weight: bold;
58
64
  }
package/css/variable.scss CHANGED
@@ -19,16 +19,31 @@ textarea {
19
19
  $color-text: #555;
20
20
  $color-text-light: #B0B1BA;
21
21
 
22
- $color-icon-light: #D5D5D5;
23
- $color-border-light: #DBE0EF;
24
- $color-hover: #E8EEFC;
25
-
26
22
  $color-gray: #8993A4;
23
+ $color-gray-border: #BCC6D3;
24
+
27
25
  $color-blue: #2A52BE;
26
+ $color-blue-border: #C1CBE4;
27
+ $color-blue-bg: #E8EEFC;
28
+
28
29
  $color-darkblue: #00234D;
29
30
 
31
+ $color-red: #E72F34;
32
+ $color-red-border: #FA9A9E;
33
+ $color-red-bg: #FFE8E8;
34
+
35
+ $color-green: #4FA348;
36
+ $color-green-border: #7ECE78;
37
+ $color-green-bg: #E9FEE7;
38
+
39
+ $color-icon-light: #D5D5D5;
40
+ $color-border-light: #DBE0EF;
41
+ $color-hover: #E8EEFC;
42
+
30
43
  $border-input: 0.8px solid $color-border-light;
31
44
 
32
- $color-focus: #2A52BE;
45
+ $color-focus: $color-blue;
46
+
47
+ $color-error: $color-red;
33
48
 
34
- $icon-font-family: "Material Symbols Outlined", monospace;
49
+ $icon-font-family: "Material Symbols Outlined", monospace;