@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.
- package/css/bluesea-base.scss +0 -1
- package/css/component.scss +8 -1
- package/css/reset.scss +6 -0
- package/css/variable.scss +21 -6
- package/dist/bluesea.js +1051 -290
- package/dist/bluesea.umd.cjs +1050 -289
- package/dist/component/input/BSCheckbox.vue.d.ts +5 -0
- package/dist/component/input/BSCheckboxGroup.vue.d.ts +3 -0
- package/dist/component/input/BSDateInput.vue.d.ts +5 -0
- package/dist/component/input/BSMultiSelect.vue.d.ts +3 -0
- package/dist/component/input/BSNumberInput.vue.d.ts +5 -0
- package/dist/component/input/BSRadioButton.vue.d.ts +3 -0
- package/dist/component/input/BSRadioButtonGroup.vue.d.ts +3 -0
- package/dist/component/input/BSSelect.vue.d.ts +3 -0
- package/dist/component/input/BSTextArea.vue.d.ts +5 -0
- package/dist/component/input/BSTextInput.vue.d.ts +10 -2
- package/dist/component/input/BSTreeSelect.vue.d.ts +3 -0
- package/dist/component/input/InternalDateInput.vue.d.ts +19 -3
- package/dist/component/layout/BSListLayout.vue.d.ts +52 -0
- package/dist/component/layout/BSListLayoutItem.vue.d.ts +49 -0
- package/dist/component/multilang/BSMultiLangTextArea.vue.d.ts +68 -0
- package/dist/component/multilang/BSMultiLangTextInput.vue.d.ts +68 -0
- package/dist/component/tree/BSTree.vue.d.ts +4 -0
- package/dist/config/config.d.ts +14 -0
- package/dist/contextmenu/BSContextMenu.vue.d.ts +20 -0
- package/dist/contextmenu/BSContextMenuContainer.vue.d.ts +2 -0
- package/dist/contextmenu/contextMenuPlugin.d.ts +25 -0
- package/dist/directive/vT.d.ts +5 -0
- package/dist/index.d.ts +15 -0
- package/dist/modal/BSModalContainer.vue.d.ts +2 -0
- package/dist/modal/BSModalFrame.vue.d.ts +27 -0
- package/dist/modal/BSModalWrapper.vue.d.ts +16 -0
- package/dist/modal/modalPlugin.d.ts +50 -0
- package/dist/model/CommonTypes.d.ts +6 -0
- package/dist/style.css +472 -30
- package/dist/text/texts.d.ts +17 -0
- package/dist/util/componentUtil.d.ts +1 -0
- package/dist/validator/FieldValidator.d.ts +22 -0
- package/package.json +2 -1
package/css/bluesea-base.scss
CHANGED
package/css/component.scss
CHANGED
|
@@ -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 #
|
|
152
|
+
box-shadow: 2px 2px 8px #aaa;
|
|
146
153
|
}
|
|
147
154
|
|
|
148
155
|
.font-icon {
|
package/css/reset.scss
CHANGED
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:
|
|
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;
|