3h1-ui 3.0.0-next.218 → 3.0.0-next.219
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/es/index.js +34 -32
- package/es/style.css +57 -57
- package/es/ui/src/ColorPickerPopover/src/vue-colorful/css/styles.css.d.ts +2 -2
- package/es/ui/src/Container/src/collapse/CollapseContainer.vue.d.ts +3 -5
- package/es/ui/src/Scrollbar/src/types.d.ts +18 -18
- package/es/ui/types/global.d.ts +102 -102
- package/es/ui/types/index.d.ts +36 -36
- package/lib/index.js +34 -32
- package/lib/style.css +57 -57
- package/lib/ui/src/ColorPickerPopover/src/vue-colorful/css/styles.css.d.ts +2 -2
- package/lib/ui/src/Container/src/collapse/CollapseContainer.vue.d.ts +3 -5
- package/lib/ui/src/Scrollbar/src/types.d.ts +18 -18
- package/lib/ui/types/global.d.ts +102 -102
- package/lib/ui/types/index.d.ts +36 -36
- package/package.json +3 -3
package/es/ui/types/global.d.ts
CHANGED
|
@@ -1,102 +1,102 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
ComponentRenderProxy,
|
|
3
|
-
VNode,
|
|
4
|
-
VNodeChild,
|
|
5
|
-
ComponentPublicInstance,
|
|
6
|
-
FunctionalComponent,
|
|
7
|
-
PropType as VuePropType
|
|
8
|
-
} from 'vue'
|
|
9
|
-
|
|
10
|
-
declare global {
|
|
11
|
-
const __APP_INFO__: {
|
|
12
|
-
pkg: {
|
|
13
|
-
name: string
|
|
14
|
-
version: string
|
|
15
|
-
dependencies: Recordable<string>
|
|
16
|
-
devDependencies: Recordable<string>
|
|
17
|
-
}
|
|
18
|
-
lastBuildTime: string
|
|
19
|
-
}
|
|
20
|
-
// declare interface Window {
|
|
21
|
-
// // Global vue app instance
|
|
22
|
-
// __APP__: App<Element>;
|
|
23
|
-
// }
|
|
24
|
-
|
|
25
|
-
// vue
|
|
26
|
-
declare type PropType<T> = VuePropType<T>
|
|
27
|
-
declare type VueNode = VNodeChild | JSX.Element
|
|
28
|
-
|
|
29
|
-
export type Writable<T> = {
|
|
30
|
-
-readonly [P in keyof T]: T[P]
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
declare type Nullable<T> = T | null
|
|
34
|
-
declare type NonNullable<T> = T extends null | undefined ? never : T
|
|
35
|
-
declare type Recordable<T = any> = Record<string, T>
|
|
36
|
-
declare type ReadonlyRecordable<T = any> = {
|
|
37
|
-
readonly [key: string]: T
|
|
38
|
-
}
|
|
39
|
-
declare type Indexable<T = any> = {
|
|
40
|
-
[key: string]: T
|
|
41
|
-
}
|
|
42
|
-
declare type DeepPartial<T> = {
|
|
43
|
-
[P in keyof T]?: DeepPartial<T[P]>
|
|
44
|
-
}
|
|
45
|
-
declare type TimeoutHandle = ReturnType<typeof setTimeout>
|
|
46
|
-
declare type IntervalHandle = ReturnType<typeof setInterval>
|
|
47
|
-
|
|
48
|
-
declare interface ChangeEvent extends Event {
|
|
49
|
-
target: HTMLInputElement
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
declare interface WheelEvent {
|
|
53
|
-
path?: EventTarget[]
|
|
54
|
-
}
|
|
55
|
-
interface ImportMetaEnv extends ViteEnv {
|
|
56
|
-
__: unknown
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
declare interface ViteEnv {
|
|
60
|
-
VITE_PORT: number
|
|
61
|
-
VITE_USE_MOCK: boolean
|
|
62
|
-
VITE_USE_PWA: boolean
|
|
63
|
-
VITE_PUBLIC_PATH: string
|
|
64
|
-
VITE_PROXY: [string, string][]
|
|
65
|
-
VITE_GLOB_APP_TITLE: string
|
|
66
|
-
VITE_GLOB_APP_SHORT_NAME: string
|
|
67
|
-
VITE_GLOB_COPY_RIGHT: string
|
|
68
|
-
VITE_USE_CDN: boolean
|
|
69
|
-
VITE_DROP_CONSOLE: boolean
|
|
70
|
-
VITE_BUILD_COMPRESS: 'gzip' | 'brotli' | 'none'
|
|
71
|
-
VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE: boolean
|
|
72
|
-
VITE_LEGACY: boolean
|
|
73
|
-
VITE_USE_IMAGEMIN: boolean
|
|
74
|
-
VITE_GENERATE_UI: string
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
declare function parseInt(s: string | number, radix?: number): number
|
|
78
|
-
|
|
79
|
-
declare function parseFloat(string: string | number): number
|
|
80
|
-
|
|
81
|
-
namespace JSX {
|
|
82
|
-
// tslint:disable no-empty-interface
|
|
83
|
-
type Element = VNode
|
|
84
|
-
// tslint:disable no-empty-interface
|
|
85
|
-
type ElementClass = ComponentRenderProxy
|
|
86
|
-
interface ElementAttributesProperty {
|
|
87
|
-
$props: any
|
|
88
|
-
}
|
|
89
|
-
interface IntrinsicElements {
|
|
90
|
-
[elem: string]: any
|
|
91
|
-
}
|
|
92
|
-
interface IntrinsicAttributes {
|
|
93
|
-
[elem: string]: any
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
declare module 'vue' {
|
|
99
|
-
export type JSXComponent<Props = any> =
|
|
100
|
-
| { new (): ComponentPublicInstance<Props> }
|
|
101
|
-
| FunctionalComponent<Props>
|
|
102
|
-
}
|
|
1
|
+
import type {
|
|
2
|
+
ComponentRenderProxy,
|
|
3
|
+
VNode,
|
|
4
|
+
VNodeChild,
|
|
5
|
+
ComponentPublicInstance,
|
|
6
|
+
FunctionalComponent,
|
|
7
|
+
PropType as VuePropType
|
|
8
|
+
} from 'vue'
|
|
9
|
+
|
|
10
|
+
declare global {
|
|
11
|
+
const __APP_INFO__: {
|
|
12
|
+
pkg: {
|
|
13
|
+
name: string
|
|
14
|
+
version: string
|
|
15
|
+
dependencies: Recordable<string>
|
|
16
|
+
devDependencies: Recordable<string>
|
|
17
|
+
}
|
|
18
|
+
lastBuildTime: string
|
|
19
|
+
}
|
|
20
|
+
// declare interface Window {
|
|
21
|
+
// // Global vue app instance
|
|
22
|
+
// __APP__: App<Element>;
|
|
23
|
+
// }
|
|
24
|
+
|
|
25
|
+
// vue
|
|
26
|
+
declare type PropType<T> = VuePropType<T>
|
|
27
|
+
declare type VueNode = VNodeChild | JSX.Element
|
|
28
|
+
|
|
29
|
+
export type Writable<T> = {
|
|
30
|
+
-readonly [P in keyof T]: T[P]
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
declare type Nullable<T> = T | null
|
|
34
|
+
declare type NonNullable<T> = T extends null | undefined ? never : T
|
|
35
|
+
declare type Recordable<T = any> = Record<string, T>
|
|
36
|
+
declare type ReadonlyRecordable<T = any> = {
|
|
37
|
+
readonly [key: string]: T
|
|
38
|
+
}
|
|
39
|
+
declare type Indexable<T = any> = {
|
|
40
|
+
[key: string]: T
|
|
41
|
+
}
|
|
42
|
+
declare type DeepPartial<T> = {
|
|
43
|
+
[P in keyof T]?: DeepPartial<T[P]>
|
|
44
|
+
}
|
|
45
|
+
declare type TimeoutHandle = ReturnType<typeof setTimeout>
|
|
46
|
+
declare type IntervalHandle = ReturnType<typeof setInterval>
|
|
47
|
+
|
|
48
|
+
declare interface ChangeEvent extends Event {
|
|
49
|
+
target: HTMLInputElement
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
declare interface WheelEvent {
|
|
53
|
+
path?: EventTarget[]
|
|
54
|
+
}
|
|
55
|
+
interface ImportMetaEnv extends ViteEnv {
|
|
56
|
+
__: unknown
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
declare interface ViteEnv {
|
|
60
|
+
VITE_PORT: number
|
|
61
|
+
VITE_USE_MOCK: boolean
|
|
62
|
+
VITE_USE_PWA: boolean
|
|
63
|
+
VITE_PUBLIC_PATH: string
|
|
64
|
+
VITE_PROXY: [string, string][]
|
|
65
|
+
VITE_GLOB_APP_TITLE: string
|
|
66
|
+
VITE_GLOB_APP_SHORT_NAME: string
|
|
67
|
+
VITE_GLOB_COPY_RIGHT: string
|
|
68
|
+
VITE_USE_CDN: boolean
|
|
69
|
+
VITE_DROP_CONSOLE: boolean
|
|
70
|
+
VITE_BUILD_COMPRESS: 'gzip' | 'brotli' | 'none'
|
|
71
|
+
VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE: boolean
|
|
72
|
+
VITE_LEGACY: boolean
|
|
73
|
+
VITE_USE_IMAGEMIN: boolean
|
|
74
|
+
VITE_GENERATE_UI: string
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
declare function parseInt(s: string | number, radix?: number): number
|
|
78
|
+
|
|
79
|
+
declare function parseFloat(string: string | number): number
|
|
80
|
+
|
|
81
|
+
namespace JSX {
|
|
82
|
+
// tslint:disable no-empty-interface
|
|
83
|
+
type Element = VNode
|
|
84
|
+
// tslint:disable no-empty-interface
|
|
85
|
+
type ElementClass = ComponentRenderProxy
|
|
86
|
+
interface ElementAttributesProperty {
|
|
87
|
+
$props: any
|
|
88
|
+
}
|
|
89
|
+
interface IntrinsicElements {
|
|
90
|
+
[elem: string]: any
|
|
91
|
+
}
|
|
92
|
+
interface IntrinsicAttributes {
|
|
93
|
+
[elem: string]: any
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
declare module 'vue' {
|
|
99
|
+
export type JSXComponent<Props = any> =
|
|
100
|
+
| { new (): ComponentPublicInstance<Props> }
|
|
101
|
+
| FunctionalComponent<Props>
|
|
102
|
+
}
|
package/es/ui/types/index.d.ts
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
type Nullable<T> = T | null
|
|
2
|
-
|
|
3
|
-
declare interface Fn<T = any, R = T> {
|
|
4
|
-
(...arg: T[]): R
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
declare interface PromiseFn<T = any, R = T> {
|
|
8
|
-
(...arg: T[]): Promise<R>
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
declare type RefType<T> = T | null
|
|
12
|
-
|
|
13
|
-
declare type LabelValueOptions = {
|
|
14
|
-
label: string
|
|
15
|
-
value: any
|
|
16
|
-
[key: string]: string | number | boolean
|
|
17
|
-
}[]
|
|
18
|
-
|
|
19
|
-
declare type EmitType = (event: any, ...args: any[]) => void
|
|
20
|
-
|
|
21
|
-
declare type TargetContext = '_self' | '_blank'
|
|
22
|
-
|
|
23
|
-
declare interface ComponentElRef<T extends HTMLElement = HTMLDivElement> {
|
|
24
|
-
$el: T
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
declare type ComponentRef<T extends HTMLElement = HTMLDivElement> =
|
|
28
|
-
ComponentElRef<T> | null
|
|
29
|
-
|
|
30
|
-
declare type ElRef<T extends HTMLElement = HTMLDivElement> = Nullable<T>
|
|
31
|
-
|
|
32
|
-
declare type Recordable<T = any> = { [key: string]: T }
|
|
33
|
-
|
|
34
|
-
// declare module 'vue-types' {
|
|
35
|
-
// // 这里添加 vue-types 模块的类型声明
|
|
36
|
-
// }
|
|
1
|
+
type Nullable<T> = T | null
|
|
2
|
+
|
|
3
|
+
declare interface Fn<T = any, R = T> {
|
|
4
|
+
(...arg: T[]): R
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
declare interface PromiseFn<T = any, R = T> {
|
|
8
|
+
(...arg: T[]): Promise<R>
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
declare type RefType<T> = T | null
|
|
12
|
+
|
|
13
|
+
declare type LabelValueOptions = {
|
|
14
|
+
label: string
|
|
15
|
+
value: any
|
|
16
|
+
[key: string]: string | number | boolean
|
|
17
|
+
}[]
|
|
18
|
+
|
|
19
|
+
declare type EmitType = (event: any, ...args: any[]) => void
|
|
20
|
+
|
|
21
|
+
declare type TargetContext = '_self' | '_blank'
|
|
22
|
+
|
|
23
|
+
declare interface ComponentElRef<T extends HTMLElement = HTMLDivElement> {
|
|
24
|
+
$el: T
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
declare type ComponentRef<T extends HTMLElement = HTMLDivElement> =
|
|
28
|
+
ComponentElRef<T> | null
|
|
29
|
+
|
|
30
|
+
declare type ElRef<T extends HTMLElement = HTMLDivElement> = Nullable<T>
|
|
31
|
+
|
|
32
|
+
declare type Recordable<T = any> = { [key: string]: T }
|
|
33
|
+
|
|
34
|
+
// declare module 'vue-types' {
|
|
35
|
+
// // 这里添加 vue-types 模块的类型声明
|
|
36
|
+
// }
|
package/lib/index.js
CHANGED
|
@@ -2224,7 +2224,7 @@ const _sfc_main$_ = vue.defineComponent({
|
|
|
2224
2224
|
return { symbolId, prefixCls: prefixCls2, getStyle: getStyle2 };
|
|
2225
2225
|
}
|
|
2226
2226
|
});
|
|
2227
|
-
const
|
|
2227
|
+
const SvgIcon_vue_vue_type_style_index_0_scoped_905fa4a6_lang = "";
|
|
2228
2228
|
const _hoisted_1$o = ["xlink:href"];
|
|
2229
2229
|
function _sfc_render$B(_ctx, _cache, $props, $setup, $data, $options) {
|
|
2230
2230
|
return vue.openBlock(), vue.createElementBlock("svg", {
|
|
@@ -2235,7 +2235,7 @@ function _sfc_render$B(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2235
2235
|
vue.createElementVNode("use", { "xlink:href": _ctx.symbolId }, null, 8, _hoisted_1$o)
|
|
2236
2236
|
], 6);
|
|
2237
2237
|
}
|
|
2238
|
-
const SvgIcon = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["render", _sfc_render$B], ["__scopeId", "data-v-
|
|
2238
|
+
const SvgIcon = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["render", _sfc_render$B], ["__scopeId", "data-v-905fa4a6"]]);
|
|
2239
2239
|
const SVG_END_WITH_FLAG = "|svg";
|
|
2240
2240
|
const _sfc_main$Z = vue.defineComponent({
|
|
2241
2241
|
name: "Icon",
|
|
@@ -4922,8 +4922,8 @@ const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({
|
|
|
4922
4922
|
};
|
|
4923
4923
|
}
|
|
4924
4924
|
});
|
|
4925
|
-
const
|
|
4926
|
-
const BasicArrow = /* @__PURE__ */ _export_sfc(_sfc_main$X, [["__scopeId", "data-v-
|
|
4925
|
+
const BasicArrow_vue_vue_type_style_index_0_scoped_fea26917_lang = "";
|
|
4926
|
+
const BasicArrow = /* @__PURE__ */ _export_sfc(_sfc_main$X, [["__scopeId", "data-v-fea26917"]]);
|
|
4927
4927
|
function bound01$1(n2, max) {
|
|
4928
4928
|
if (isOnePointZero$1(n2)) {
|
|
4929
4929
|
n2 = "100%";
|
|
@@ -7475,8 +7475,8 @@ const _sfc_main$W = /* @__PURE__ */ vue.defineComponent({
|
|
|
7475
7475
|
};
|
|
7476
7476
|
}
|
|
7477
7477
|
});
|
|
7478
|
-
const
|
|
7479
|
-
const Divider = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["__scopeId", "data-v-
|
|
7478
|
+
const BasicTitle_vue_vue_type_style_index_0_scoped_97cf8edc_lang = "";
|
|
7479
|
+
const Divider = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["__scopeId", "data-v-97cf8edc"]]);
|
|
7480
7480
|
const props$a = {
|
|
7481
7481
|
prefixCls: { type: String },
|
|
7482
7482
|
helpMessage: {
|
|
@@ -9019,8 +9019,8 @@ const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
|
9019
9019
|
};
|
|
9020
9020
|
}
|
|
9021
9021
|
});
|
|
9022
|
-
const
|
|
9023
|
-
const BasicTitle = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-
|
|
9022
|
+
const BasicTitle_vue_vue_type_style_index_0_scoped_5cd7267e_lang = "";
|
|
9023
|
+
const BasicTitle = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-5cd7267e"]]);
|
|
9024
9024
|
const _sfc_main$L = vue.defineComponent({
|
|
9025
9025
|
name: "BasicModalHeader",
|
|
9026
9026
|
components: { BasicTitle },
|
|
@@ -10811,7 +10811,7 @@ const _sfc_main$A = vue.defineComponent({
|
|
|
10811
10811
|
};
|
|
10812
10812
|
}
|
|
10813
10813
|
});
|
|
10814
|
-
const
|
|
10814
|
+
const StrengthMeter_vue_vue_type_style_index_0_scoped_678d40fd_lang = "";
|
|
10815
10815
|
const _hoisted_1$i = ["data-score"];
|
|
10816
10816
|
function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
10817
10817
|
const _component_InputPassword = vue.resolveComponent("InputPassword");
|
|
@@ -10843,7 +10843,7 @@ function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10843
10843
|
], 2)
|
|
10844
10844
|
], 2);
|
|
10845
10845
|
}
|
|
10846
|
-
const StrengthMeter = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["render", _sfc_render$g], ["__scopeId", "data-v-
|
|
10846
|
+
const StrengthMeter = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["render", _sfc_render$g], ["__scopeId", "data-v-678d40fd"]]);
|
|
10847
10847
|
function useCountdown(count) {
|
|
10848
10848
|
const currentCount = vue.ref(count);
|
|
10849
10849
|
const isStart = vue.ref(false);
|
|
@@ -11803,7 +11803,7 @@ const FormItem$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
11803
11803
|
}, [`${current.month() + 1}月`]);
|
|
11804
11804
|
};
|
|
11805
11805
|
}
|
|
11806
|
-
if (schema2.component === "Input") {
|
|
11806
|
+
if (schema2.component === "Input" || schema2.component === "InputTextArea") {
|
|
11807
11807
|
const maxlength = (componentProps == null ? void 0 : componentProps.maxlength) === void 0 ? 100 : componentProps.maxlength;
|
|
11808
11808
|
componentProps = Object.assign({}, componentProps, {
|
|
11809
11809
|
maxlength
|
|
@@ -12010,9 +12010,11 @@ const FormItem$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
12010
12010
|
if (!renderComponentContent) {
|
|
12011
12011
|
return vue.createVNode(Comp, vue.mergeProps({
|
|
12012
12012
|
"ref": (_b = vue.unref(componentsPropsRef)) == null ? void 0 : _b.useRef
|
|
12013
|
-
}, compAttr, {
|
|
12013
|
+
}, omit$1(compAttr, "slots"), {
|
|
12014
12014
|
"onInput": handleInput
|
|
12015
|
-
}),
|
|
12015
|
+
}), {
|
|
12016
|
+
...pick$1(compAttr, "slots") ?? {}
|
|
12017
|
+
});
|
|
12016
12018
|
}
|
|
12017
12019
|
const compSlot = utils$1.isFunction(renderComponentContent) ? {
|
|
12018
12020
|
...renderComponentContent(vue.unref(getValues))
|
|
@@ -27436,8 +27438,8 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
27436
27438
|
};
|
|
27437
27439
|
}
|
|
27438
27440
|
});
|
|
27439
|
-
const
|
|
27440
|
-
const Modal = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-
|
|
27441
|
+
const Modal_vue_vue_type_style_index_0_scoped_0ca4fd85_lang = "";
|
|
27442
|
+
const Modal = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-0ca4fd85"]]);
|
|
27441
27443
|
const _hoisted_1$f = { class: "api-modal-select" };
|
|
27442
27444
|
const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
27443
27445
|
__name: "ApiModalSelect",
|
|
@@ -27585,8 +27587,8 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
27585
27587
|
};
|
|
27586
27588
|
}
|
|
27587
27589
|
});
|
|
27588
|
-
const
|
|
27589
|
-
const ApiModalSelect = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-
|
|
27590
|
+
const ApiModalSelect_vue_vue_type_style_index_0_scoped_45845a8d_lang = "";
|
|
27591
|
+
const ApiModalSelect = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-45845a8d"]]);
|
|
27590
27592
|
const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
27591
27593
|
__name: "FormWrapper",
|
|
27592
27594
|
props: {
|
|
@@ -33956,7 +33958,7 @@ const styles = `.vue-colorful {
|
|
|
33956
33958
|
border-color: transparent;
|
|
33957
33959
|
border-bottom: 12px solid #000;
|
|
33958
33960
|
border-radius: 8px 8px 0 0;
|
|
33959
|
-
background-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0))
|
|
33961
|
+
background-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0)),
|
|
33960
33962
|
linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
|
|
33961
33963
|
}
|
|
33962
33964
|
.vue-colorful__pointer-fill, .vue-colorful__alpha-gradient {
|
|
@@ -33977,15 +33979,15 @@ const styles = `.vue-colorful {
|
|
|
33977
33979
|
height: 24px;
|
|
33978
33980
|
}
|
|
33979
33981
|
.vue-colorful__hue {
|
|
33980
|
-
background: linear-gradient(
|
|
33981
|
-
to right
|
|
33982
|
-
#f00 0
|
|
33983
|
-
#ff0 17
|
|
33984
|
-
#0f0 33
|
|
33985
|
-
#0ff 50
|
|
33986
|
-
#00f 67
|
|
33987
|
-
#f0f 83
|
|
33988
|
-
#f00 100
|
|
33982
|
+
background: linear-gradient(
|
|
33983
|
+
to right,
|
|
33984
|
+
#f00 0%,
|
|
33985
|
+
#ff0 17%,
|
|
33986
|
+
#0f0 33%,
|
|
33987
|
+
#0ff 50%,
|
|
33988
|
+
#00f 67%,
|
|
33989
|
+
#f0f 83%,
|
|
33990
|
+
#f00 100%
|
|
33989
33991
|
);
|
|
33990
33992
|
}
|
|
33991
33993
|
.vue-colorful__last-control {
|
|
@@ -40332,7 +40334,7 @@ const _sfc_main$8 = vue.defineComponent({
|
|
|
40332
40334
|
}
|
|
40333
40335
|
}
|
|
40334
40336
|
});
|
|
40335
|
-
const
|
|
40337
|
+
const Loading_vue_vue_type_style_index_0_scoped_ee545744_lang = "";
|
|
40336
40338
|
function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
40337
40339
|
const _component_Spin = vue.resolveComponent("Spin");
|
|
40338
40340
|
return vue.withDirectives((vue.openBlock(), vue.createElementBlock("section", {
|
|
@@ -40348,7 +40350,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
40348
40350
|
[vue.vShow, _ctx.loading]
|
|
40349
40351
|
]);
|
|
40350
40352
|
}
|
|
40351
|
-
const Loading = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$3], ["__scopeId", "data-v-
|
|
40353
|
+
const Loading = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$3], ["__scopeId", "data-v-ee545744"]]);
|
|
40352
40354
|
function createLoading(props2, target, wait = false) {
|
|
40353
40355
|
let vm = null;
|
|
40354
40356
|
const data = vue.reactive({
|
|
@@ -42079,7 +42081,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
42079
42081
|
},
|
|
42080
42082
|
setup(__props, { expose: __expose }) {
|
|
42081
42083
|
vue.useCssVars((_ctx) => ({
|
|
42082
|
-
"
|
|
42084
|
+
"989efb00": props2.labelWidth
|
|
42083
42085
|
}));
|
|
42084
42086
|
const props2 = __props;
|
|
42085
42087
|
const form = vue.ref({});
|
|
@@ -42251,8 +42253,8 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
42251
42253
|
};
|
|
42252
42254
|
}
|
|
42253
42255
|
});
|
|
42254
|
-
const
|
|
42255
|
-
const descriptionsForm = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
42256
|
+
const DescriptionsForm_vue_vue_type_style_index_0_scoped_2d2eda80_lang = "";
|
|
42257
|
+
const descriptionsForm = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-2d2eda80"]]);
|
|
42256
42258
|
const DescriptionsForm = utils$1.withInstall(descriptionsForm);
|
|
42257
42259
|
const basicResizeWrapperProps = vue.reactive({
|
|
42258
42260
|
designWidth: {
|