@kp-ui/lowcode-pc-v2 0.0.4 → 0.0.5
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/assets/styles/style.css
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
/* 全局css变量 */
|
|
2
|
+
.primary-color {
|
|
3
|
+
color: var(--ant-primary-color);
|
|
4
|
+
}
|
|
5
|
+
.auto-full-width > div {
|
|
6
|
+
width: 100%;
|
|
7
|
+
}
|
|
8
|
+
.background-opacity {
|
|
9
|
+
background: var(--ant-primary-4);
|
|
10
|
+
}
|
|
11
|
+
.form-widget-list .ghost {
|
|
12
|
+
content: '';
|
|
13
|
+
font-size: 0;
|
|
14
|
+
height: 3px;
|
|
15
|
+
box-sizing: border-box;
|
|
16
|
+
background: var(--ant-primary-4);
|
|
17
|
+
border: 2px solid var(--ant-primary-4);
|
|
18
|
+
outline-width: 0;
|
|
19
|
+
padding: 0;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
}
|
|
22
|
+
/* 滚动条样式 end */
|
|
23
|
+
.button-text-highlight.ant-btn {
|
|
24
|
+
font-weight: bold;
|
|
25
|
+
color: var(--ant-primary-color);
|
|
26
|
+
}
|
|
27
|
+
.custom-divider.ant-divider {
|
|
28
|
+
font-size: 14px;
|
|
29
|
+
margin: 5px;
|
|
30
|
+
}
|
|
31
|
+
.field-wrapper .full-width-input {
|
|
32
|
+
width: 100% !important;
|
|
33
|
+
}
|
|
34
|
+
@tailwind components;
|
|
35
|
+
@tailwind utilities;
|
|
1
36
|
/* 调试面板样式 */
|
|
2
37
|
.debug-panel[data-v-db68aa3b] {
|
|
3
38
|
position: absolute;
|
|
@@ -358,14 +393,8 @@
|
|
|
358
393
|
overflow-y: auto;
|
|
359
394
|
}.readonly-mode-time-range[data-v-a6cdcc75] .ant-picker {
|
|
360
395
|
display: none;
|
|
361
|
-
}.readonly-mode-time[data-v-
|
|
396
|
+
}.readonly-mode-time[data-v-7b5d160f] .ant-picker {
|
|
362
397
|
display: none;
|
|
363
|
-
}
|
|
364
|
-
.auto-full-width[data-v-887d6c03] {
|
|
365
|
-
width: 100%;
|
|
366
|
-
}
|
|
367
|
-
.auto-full-width[data-v-887d6c03] .ant-picker {
|
|
368
|
-
width: 100% !important;
|
|
369
398
|
}.vf-box-widget[data-v-d52cfec5] {
|
|
370
399
|
width: 100%;
|
|
371
400
|
}
|
package/install.js
CHANGED
package/package.json
CHANGED
|
@@ -2,6 +2,6 @@ import _plugin_vue_export_helper_default from "../../../../_virtual/_plugin-vue_
|
|
|
2
2
|
import index_vue_vue_type_script_setup_true_lang_default from "./index.vue_vue_type_script_setup_true_lang.js";
|
|
3
3
|
/* empty css */
|
|
4
4
|
//#region src/widgets/base/time/index.vue
|
|
5
|
-
var time_default = /* @__PURE__ */ _plugin_vue_export_helper_default(index_vue_vue_type_script_setup_true_lang_default, [["__scopeId", "data-v-
|
|
5
|
+
var time_default = /* @__PURE__ */ _plugin_vue_export_helper_default(index_vue_vue_type_script_setup_true_lang_default, [["__scopeId", "data-v-7b5d160f"]]);
|
|
6
6
|
//#endregion
|
|
7
7
|
export { time_default as default };
|
|
@@ -19,7 +19,7 @@ var index_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineCo
|
|
|
19
19
|
const timeProps = computed(() => {
|
|
20
20
|
var _props$widget$props, _props$widget$props2;
|
|
21
21
|
return {
|
|
22
|
-
...__props.widget.props
|
|
22
|
+
...__props.widget.props,
|
|
23
23
|
inputReadOnly: (_props$widget$props = __props.widget.props) === null || _props$widget$props === void 0 ? void 0 : _props$widget$props.readonly,
|
|
24
24
|
allowClear: (_props$widget$props2 = __props.widget.props) === null || _props$widget$props2 === void 0 ? void 0 : _props$widget$props2.clearable,
|
|
25
25
|
format: __props.widget.props.format
|