jky-component-lib 0.0.127 → 0.0.129
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/dist/es/amap/AMapPicker/AMapPicker.vue.d.ts +43 -0
- package/dist/es/amap/AMapPicker/AMapPicker.vue.js +142 -0
- package/dist/es/amap/AMapPicker/AMapPicker.vue2.js +4 -0
- package/dist/es/amap/index.d.ts +3 -1
- package/dist/es/amap/index.js +10 -6
- package/dist/es/amap/style.css +5 -12
- package/dist/es/amap/style3.css +12 -5
- package/dist/es/components.js +7 -3
- package/dist/es/form/AMapPickerItem.vue.d.ts +19 -0
- package/dist/es/form/AMapPickerItem.vue.js +104 -0
- package/dist/es/form/AMapPickerItem.vue3.js +5 -0
- package/dist/es/form/Form.vue.d.ts +2 -2
- package/dist/es/form/FormItem.vue.js +31 -13
- package/dist/es/form/index.d.ts +3 -1
- package/dist/es/form/index.js +4 -0
- package/dist/es/index.js +10 -6
- package/dist/es/modal/Modal.vue.d.ts +3 -3
- package/dist/es/package.json.js +1 -1
- package/dist/es/page-table/PageTable.vue.d.ts +10 -10
- package/dist/es/page-table/PageTableColumn.vue.d.ts +1 -1
- package/dist/es/page-table-v2/PageTableV2.vue.d.ts +5 -5
- package/dist/es/style.css +14 -0
- package/dist/lib/amap/AMapPicker/AMapPicker.vue.d.ts +43 -0
- package/dist/lib/amap/AMapPicker/AMapPicker.vue.js +142 -0
- package/dist/lib/amap/AMapPicker/AMapPicker.vue2.js +4 -0
- package/dist/lib/amap/index.d.ts +3 -1
- package/dist/lib/amap/index.js +4 -0
- package/dist/lib/amap/style.css +5 -12
- package/dist/lib/amap/style3.css +12 -5
- package/dist/lib/components.js +27 -23
- package/dist/lib/form/AMapPickerItem.vue.d.ts +19 -0
- package/dist/lib/form/AMapPickerItem.vue.js +104 -0
- package/dist/lib/form/AMapPickerItem.vue3.js +5 -0
- package/dist/lib/form/Form.vue.d.ts +2 -2
- package/dist/lib/form/FormItem.vue.js +26 -8
- package/dist/lib/form/index.d.ts +3 -1
- package/dist/lib/form/index.js +4 -0
- package/dist/lib/index.js +19 -15
- package/dist/lib/modal/Modal.vue.d.ts +3 -3
- package/dist/lib/package.json.js +1 -1
- package/dist/lib/page-table/PageTable.vue.d.ts +10 -10
- package/dist/lib/page-table/PageTableColumn.vue.d.ts +1 -1
- package/dist/lib/page-table-v2/PageTableV2.vue.d.ts +5 -5
- package/dist/lib/style.css +14 -0
- package/package.json +1 -1
|
@@ -57,6 +57,8 @@ const ElementPlus = require("element-plus");
|
|
|
57
57
|
const index = require("../add-input/index.js");
|
|
58
58
|
const index$2 = require("../code-mirror-editor/index.js");
|
|
59
59
|
const index$1 = require("../rich-editor/index.js");
|
|
60
|
+
const AMapPickerItem_vue_vue_type_script_setup_true_lang = require("./AMapPickerItem.vue.js");
|
|
61
|
+
;/* empty css */
|
|
60
62
|
const LinkedSelect_vue_vue_type_script_setup_true_lang = require("./LinkedSelect.vue.js");
|
|
61
63
|
const SelectTable_vue_vue_type_script_setup_true_lang = require("./SelectTable.vue.js");
|
|
62
64
|
;/* empty css */
|
|
@@ -162,22 +164,28 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent(__spreadProps(__spreadValu
|
|
|
162
164
|
rules.value = configRules;
|
|
163
165
|
});
|
|
164
166
|
}
|
|
167
|
+
function setupWatchFields() {
|
|
168
|
+
const watchFields = props.config.watchFields;
|
|
169
|
+
if (!watchFields || watchFields.length === 0) {
|
|
170
|
+
return;
|
|
171
|
+
}
|
|
172
|
+
vue.watch(
|
|
173
|
+
() => watchFields.map((field) => props.model[field]),
|
|
174
|
+
() => {
|
|
175
|
+
loadComponentProps();
|
|
176
|
+
loadRules();
|
|
177
|
+
}
|
|
178
|
+
);
|
|
179
|
+
}
|
|
165
180
|
loadComponentProps();
|
|
166
181
|
loadRules();
|
|
182
|
+
setupWatchFields();
|
|
167
183
|
const modelValue = vue.computed({
|
|
168
184
|
get: () => props.model[props.field],
|
|
169
185
|
set: (val) => {
|
|
170
186
|
props.model[props.field] = val;
|
|
171
187
|
}
|
|
172
188
|
});
|
|
173
|
-
vue.watch(
|
|
174
|
-
() => props.model,
|
|
175
|
-
() => {
|
|
176
|
-
loadComponentProps();
|
|
177
|
-
loadRules();
|
|
178
|
-
},
|
|
179
|
-
{ deep: true }
|
|
180
|
-
);
|
|
181
189
|
const isHidden = vue.computed(() => {
|
|
182
190
|
if (typeof props.config.hidden === "function") {
|
|
183
191
|
return props.config.hidden({
|
|
@@ -504,6 +512,16 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent(__spreadProps(__spreadValu
|
|
|
504
512
|
props.model[props.field] = val;
|
|
505
513
|
}
|
|
506
514
|
}, _componentSlotsObj);
|
|
515
|
+
// 高德地图坐标拾取器
|
|
516
|
+
case "amap-picker":
|
|
517
|
+
return vue.h(AMapPickerItem_vue_vue_type_script_setup_true_lang.default, __spreadProps(__spreadValues({
|
|
518
|
+
"modelValue": modelValue.value,
|
|
519
|
+
"disabled": props.disabled
|
|
520
|
+
}, props.config.componentProps), {
|
|
521
|
+
"onUpdate:modelValue": (val) => {
|
|
522
|
+
props.model[props.field] = val;
|
|
523
|
+
}
|
|
524
|
+
}), _componentSlotsObj);
|
|
507
525
|
case "custom":
|
|
508
526
|
return (_b = (_a = props.config).render) == null ? void 0 : _b.call(_a, commonProps);
|
|
509
527
|
default:
|
package/dist/lib/form/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { InstallWithSFC } from '../utils';
|
|
2
|
+
import { default as AMapPickerItem } from './AMapPickerItem.vue';
|
|
2
3
|
import { default as Form } from './Form.vue';
|
|
3
4
|
import { default as LinkedSelect } from './LinkedSelect.vue';
|
|
4
|
-
export type { ComponentPropsMap, ComponentPropsType, DynamicComponentProps, FormComponentType, FormItemChildConfig, FormItemConfig, FormItemOption, FormItemProps, FormItemPropsContext, FormProps, FormValidateResult, GridConfig, HelpConfig, HelpType, LinkedSelectConfig, ResponsiveBreakpoint, ResponsiveConfig, SelectTableComponentProps, SelectTableProps, StaticComponentProps, } from './types';
|
|
5
|
+
export type { AMapPickerItemProps, ComponentPropsMap, ComponentPropsType, DynamicComponentProps, FormComponentType, FormItemChildConfig, FormItemConfig, FormItemOption, FormItemProps, FormItemPropsContext, FormProps, FormValidateResult, GridConfig, HelpConfig, HelpType, LinkedSelectConfig, ResponsiveBreakpoint, ResponsiveConfig, SelectTableComponentProps, SelectTableProps, StaticComponentProps, } from './types';
|
|
5
6
|
export declare const JkyForm: InstallWithSFC<typeof Form>;
|
|
6
7
|
export declare const JkyLinkedSelect: InstallWithSFC<typeof LinkedSelect>;
|
|
8
|
+
export declare const JkyAMapPickerItem: InstallWithSFC<typeof AMapPickerItem>;
|
|
7
9
|
export default JkyForm;
|
package/dist/lib/form/index.js
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
const AMapPickerItem_vue_vue_type_script_setup_true_lang = require("./AMapPickerItem.vue.js");
|
|
4
|
+
;/* empty css */
|
|
3
5
|
const Form_vue_vue_type_script_setup_true_lang = require("./Form.vue.js");
|
|
4
6
|
;/* empty css */
|
|
5
7
|
const LinkedSelect_vue_vue_type_script_setup_true_lang = require("./LinkedSelect.vue.js");
|
|
6
8
|
const withInstall = require("../utils/with-install.js");
|
|
7
9
|
const JkyForm = withInstall.installWithSFC(Form_vue_vue_type_script_setup_true_lang.default);
|
|
8
10
|
const JkyLinkedSelect = withInstall.installWithSFC(LinkedSelect_vue_vue_type_script_setup_true_lang.default);
|
|
11
|
+
const JkyAMapPickerItem = withInstall.installWithSFC(AMapPickerItem_vue_vue_type_script_setup_true_lang.default);
|
|
12
|
+
exports.JkyAMapPickerItem = JkyAMapPickerItem;
|
|
9
13
|
exports.JkyForm = JkyForm;
|
|
10
14
|
exports.JkyLinkedSelect = JkyLinkedSelect;
|
|
11
15
|
exports.default = JkyForm;
|
package/dist/lib/index.js
CHANGED
|
@@ -4,17 +4,18 @@ const components = require("./components.js");
|
|
|
4
4
|
const installer$1 = require("./utils/installer.js");
|
|
5
5
|
;/* empty css */
|
|
6
6
|
const resolver = require("./resolver.js");
|
|
7
|
+
const AMapPicker_vue_vue_type_script_setup_true_lang = require("./amap/AMapPicker/AMapPicker.vue.js");
|
|
7
8
|
const AMarker_vue_vue_type_script_setup_true_lang = require("./amap/AMarker.vue.js");
|
|
8
9
|
;/* empty css */
|
|
9
10
|
const ATrackPlayback_vue_vue_type_script_setup_true_lang = require("./amap/ATrackPlayback.vue.js");
|
|
10
11
|
;/* empty css */
|
|
11
12
|
const index = require("./amap/index.js");
|
|
12
|
-
const index$1 = require("./
|
|
13
|
-
const index$2 = require("./
|
|
14
|
-
const index$3 = require("./
|
|
15
|
-
const index$4 = require("./button
|
|
16
|
-
const index$5 = require("./
|
|
17
|
-
const index$6 = require("./
|
|
13
|
+
const index$1 = require("./form/index.js");
|
|
14
|
+
const index$2 = require("./page-table/index.js");
|
|
15
|
+
const index$3 = require("./add-input/index.js");
|
|
16
|
+
const index$4 = require("./button/index.js");
|
|
17
|
+
const index$5 = require("./button-nav/index.js");
|
|
18
|
+
const index$6 = require("./code-mirror-editor/index.js");
|
|
18
19
|
const index$7 = require("./menu/index.js");
|
|
19
20
|
const index$8 = require("./modal/index.js");
|
|
20
21
|
const index$9 = require("./page-header/index.js");
|
|
@@ -30,20 +31,23 @@ const install = installer.install;
|
|
|
30
31
|
const version = installer.version;
|
|
31
32
|
exports.components = components.components;
|
|
32
33
|
exports.JkyComponentLibResolver = resolver.JkyComponentLibResolver;
|
|
34
|
+
exports.AMapPicker = AMapPicker_vue_vue_type_script_setup_true_lang.default;
|
|
33
35
|
exports.AMarker = AMarker_vue_vue_type_script_setup_true_lang.default;
|
|
34
36
|
exports.ATrackPlayback = ATrackPlayback_vue_vue_type_script_setup_true_lang.default;
|
|
35
37
|
exports.JkyAMap = index.JkyAMap;
|
|
38
|
+
exports.JkyAMapPicker = index.JkyAMapPicker;
|
|
36
39
|
exports.JkyAMarker = index.JkyAMarker;
|
|
37
40
|
exports.JkyATrackPlayback = index.JkyATrackPlayback;
|
|
38
|
-
exports.
|
|
39
|
-
exports.
|
|
40
|
-
exports.
|
|
41
|
-
exports.
|
|
42
|
-
exports.
|
|
43
|
-
exports.
|
|
44
|
-
exports.
|
|
45
|
-
exports.
|
|
46
|
-
exports.
|
|
41
|
+
exports.JkyAMapPickerItem = index$1.JkyAMapPickerItem;
|
|
42
|
+
exports.JkyForm = index$1.JkyForm;
|
|
43
|
+
exports.JkyLinkedSelect = index$1.JkyLinkedSelect;
|
|
44
|
+
exports.JkyActionColumn = index$2.JkyActionColumn;
|
|
45
|
+
exports.JkyPageTable = index$2.JkyPageTable;
|
|
46
|
+
exports.JkyPageTableColumn = index$2.JkyPageTableColumn;
|
|
47
|
+
exports.JkyAddInput = index$3.JkyAddInput;
|
|
48
|
+
exports.JkyButton = index$4.JkyButton;
|
|
49
|
+
exports.JkyButtonNav = index$5.JkyButtonNav;
|
|
50
|
+
exports.JkyCodeMirrorEditor = index$6.JkyCodeMirrorEditor;
|
|
47
51
|
exports.JkyMenu = index$7.JkyMenu;
|
|
48
52
|
exports.JkyModal = index$8.JkyModal;
|
|
49
53
|
exports.JkyPageHeader = index$9.JkyPageHeader;
|
|
@@ -44,8 +44,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
44
44
|
"update:modelValue": (value: boolean) => any;
|
|
45
45
|
cancel: () => any;
|
|
46
46
|
close: () => any;
|
|
47
|
-
open: () => any;
|
|
48
47
|
confirm: () => any;
|
|
48
|
+
open: () => any;
|
|
49
49
|
opened: () => any;
|
|
50
50
|
closed: () => any;
|
|
51
51
|
typeChange: (type: import('./types').ModalType) => any;
|
|
@@ -53,8 +53,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
53
53
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
54
54
|
onCancel?: (() => any) | undefined;
|
|
55
55
|
onClose?: (() => any) | undefined;
|
|
56
|
-
onOpen?: (() => any) | undefined;
|
|
57
56
|
onConfirm?: (() => any) | undefined;
|
|
57
|
+
onOpen?: (() => any) | undefined;
|
|
58
58
|
onOpened?: (() => any) | undefined;
|
|
59
59
|
onClosed?: (() => any) | undefined;
|
|
60
60
|
"onUpdate:mode"?: ((value: "dialog" | "drawer") => any) | undefined;
|
|
@@ -63,8 +63,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
63
63
|
onTypeChange?: ((type: import('./types').ModalType) => any) | undefined;
|
|
64
64
|
}>, {
|
|
65
65
|
title: string;
|
|
66
|
-
cancelText: string;
|
|
67
66
|
confirmText: string;
|
|
67
|
+
cancelText: string;
|
|
68
68
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
69
69
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
70
70
|
export default _default;
|
package/dist/lib/package.json.js
CHANGED
|
@@ -381,11 +381,11 @@ declare function __VLS_template(): {
|
|
|
381
381
|
fields?: any;
|
|
382
382
|
}) => any;
|
|
383
383
|
}, string, {
|
|
384
|
+
cancelText: string;
|
|
385
|
+
footerClass: string;
|
|
384
386
|
watchDeep: boolean;
|
|
385
387
|
showFooter: boolean;
|
|
386
|
-
footerClass: string;
|
|
387
388
|
submitText: string;
|
|
388
|
-
cancelText: string;
|
|
389
389
|
submitDisabled: boolean;
|
|
390
390
|
cancelDisabled: boolean;
|
|
391
391
|
showCount: number;
|
|
@@ -410,11 +410,11 @@ declare function __VLS_template(): {
|
|
|
410
410
|
$nextTick: typeof nextTick;
|
|
411
411
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
412
412
|
} & Readonly<{
|
|
413
|
+
cancelText: string;
|
|
414
|
+
footerClass: string;
|
|
413
415
|
watchDeep: boolean;
|
|
414
416
|
showFooter: boolean;
|
|
415
|
-
footerClass: string;
|
|
416
417
|
submitText: string;
|
|
417
|
-
cancelText: string;
|
|
418
418
|
submitDisabled: boolean;
|
|
419
419
|
cancelDisabled: boolean;
|
|
420
420
|
showCount: number;
|
|
@@ -429,7 +429,7 @@ declare function __VLS_template(): {
|
|
|
429
429
|
valid: boolean;
|
|
430
430
|
fields?: any;
|
|
431
431
|
}) => any) | undefined;
|
|
432
|
-
}>, "form" | "validate" | "clearValidate" | ("
|
|
432
|
+
}>, "form" | "validate" | "clearValidate" | ("cancelText" | "footerClass" | "watchDeep" | "showFooter" | "submitText" | "submitDisabled" | "cancelDisabled" | "showCount") | "getFormInstance"> & {
|
|
433
433
|
validate: (callback?: (isValid: boolean, invalidFields?: any) => void) => Promise<boolean>;
|
|
434
434
|
clearValidate: (props?: any) => void;
|
|
435
435
|
getFormInstance: () => ({
|
|
@@ -3199,11 +3199,11 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3199
3199
|
fields?: any;
|
|
3200
3200
|
}) => any;
|
|
3201
3201
|
}, string, {
|
|
3202
|
+
cancelText: string;
|
|
3203
|
+
footerClass: string;
|
|
3202
3204
|
watchDeep: boolean;
|
|
3203
3205
|
showFooter: boolean;
|
|
3204
|
-
footerClass: string;
|
|
3205
3206
|
submitText: string;
|
|
3206
|
-
cancelText: string;
|
|
3207
3207
|
submitDisabled: boolean;
|
|
3208
3208
|
cancelDisabled: boolean;
|
|
3209
3209
|
showCount: number;
|
|
@@ -3228,11 +3228,11 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3228
3228
|
$nextTick: typeof nextTick;
|
|
3229
3229
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
3230
3230
|
} & Readonly<{
|
|
3231
|
+
cancelText: string;
|
|
3232
|
+
footerClass: string;
|
|
3231
3233
|
watchDeep: boolean;
|
|
3232
3234
|
showFooter: boolean;
|
|
3233
|
-
footerClass: string;
|
|
3234
3235
|
submitText: string;
|
|
3235
|
-
cancelText: string;
|
|
3236
3236
|
submitDisabled: boolean;
|
|
3237
3237
|
cancelDisabled: boolean;
|
|
3238
3238
|
showCount: number;
|
|
@@ -3247,7 +3247,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3247
3247
|
valid: boolean;
|
|
3248
3248
|
fields?: any;
|
|
3249
3249
|
}) => any) | undefined;
|
|
3250
|
-
}>, "form" | "validate" | "clearValidate" | ("
|
|
3250
|
+
}>, "form" | "validate" | "clearValidate" | ("cancelText" | "footerClass" | "watchDeep" | "showFooter" | "submitText" | "submitDisabled" | "cancelDisabled" | "showCount") | "getFormInstance"> & {
|
|
3251
3251
|
validate: (callback?: (isValid: boolean, invalidFields?: any) => void) => Promise<boolean>;
|
|
3252
3252
|
clearValidate: (props?: any) => void;
|
|
3253
3253
|
getFormInstance: () => ({
|
|
@@ -21,10 +21,10 @@ declare const __VLS_component: import('vue').DefineComponent<PageTableColumnProp
|
|
|
21
21
|
column: import('element-plus').TableColumnCtx<any>;
|
|
22
22
|
index: number;
|
|
23
23
|
}) => any;
|
|
24
|
+
align: string;
|
|
24
25
|
prop: string;
|
|
25
26
|
minWidth: string | number;
|
|
26
27
|
sortable: boolean | string;
|
|
27
|
-
align: string;
|
|
28
28
|
headerAlign: string;
|
|
29
29
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
30
30
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -416,11 +416,11 @@ declare const _default: import('vue').DefineComponent<PageTableV2Props, {
|
|
|
416
416
|
fields?: any;
|
|
417
417
|
}) => any;
|
|
418
418
|
}, string, {
|
|
419
|
+
cancelText: string;
|
|
420
|
+
footerClass: string;
|
|
419
421
|
watchDeep: boolean;
|
|
420
422
|
showFooter: boolean;
|
|
421
|
-
footerClass: string;
|
|
422
423
|
submitText: string;
|
|
423
|
-
cancelText: string;
|
|
424
424
|
submitDisabled: boolean;
|
|
425
425
|
cancelDisabled: boolean;
|
|
426
426
|
showCount: number;
|
|
@@ -445,11 +445,11 @@ declare const _default: import('vue').DefineComponent<PageTableV2Props, {
|
|
|
445
445
|
$nextTick: typeof import('vue').nextTick;
|
|
446
446
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
447
447
|
} & Readonly<{
|
|
448
|
+
cancelText: string;
|
|
449
|
+
footerClass: string;
|
|
448
450
|
watchDeep: boolean;
|
|
449
451
|
showFooter: boolean;
|
|
450
|
-
footerClass: string;
|
|
451
452
|
submitText: string;
|
|
452
|
-
cancelText: string;
|
|
453
453
|
submitDisabled: boolean;
|
|
454
454
|
cancelDisabled: boolean;
|
|
455
455
|
showCount: number;
|
|
@@ -464,7 +464,7 @@ declare const _default: import('vue').DefineComponent<PageTableV2Props, {
|
|
|
464
464
|
valid: boolean;
|
|
465
465
|
fields?: any;
|
|
466
466
|
}) => any) | undefined;
|
|
467
|
-
}>, "form" | "validate" | "clearValidate" | ("
|
|
467
|
+
}>, "form" | "validate" | "clearValidate" | ("cancelText" | "footerClass" | "watchDeep" | "showFooter" | "submitText" | "submitDisabled" | "cancelDisabled" | "showCount") | "getFormInstance"> & {
|
|
468
468
|
validate: (callback?: (isValid: boolean, invalidFields?: any) => void) => Promise<boolean>;
|
|
469
469
|
clearValidate: (props?: any) => void;
|
|
470
470
|
getFormInstance: () => ({
|
package/dist/lib/style.css
CHANGED
|
@@ -496,6 +496,10 @@
|
|
|
496
496
|
left: calc(var(--spacing) * 0);
|
|
497
497
|
}
|
|
498
498
|
|
|
499
|
+
.left-4 {
|
|
500
|
+
left: calc(var(--spacing) * 4);
|
|
501
|
+
}
|
|
502
|
+
|
|
499
503
|
.z-30 {
|
|
500
504
|
z-index: 30;
|
|
501
505
|
}
|
|
@@ -2326,6 +2330,16 @@
|
|
|
2326
2330
|
}
|
|
2327
2331
|
}
|
|
2328
2332
|
|
|
2333
|
+
.bg-white\/90 {
|
|
2334
|
+
background-color: #ffffffe6;
|
|
2335
|
+
}
|
|
2336
|
+
|
|
2337
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2338
|
+
.bg-white\/90 {
|
|
2339
|
+
background-color: color-mix(in oklab, var(--color-white) 90%, transparent);
|
|
2340
|
+
}
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2329
2343
|
.bg-yellow-50 {
|
|
2330
2344
|
background-color: var(--color-yellow-50);
|
|
2331
2345
|
}
|