@creatorsn/vfluent3 0.3.49 → 0.3.52

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@creatorsn/vfluent3",
3
3
  "private": false,
4
- "version": "0.3.49",
4
+ "version": "0.3.52",
5
5
  "files": [
6
6
  "dist"
7
7
  ],
@@ -1,107 +0,0 @@
1
- import { ExtractPropTypes } from 'vue';
2
- import { EmitFn } from '@/types/components';
3
- import { Color } from '@/utils/common';
4
- export declare const colorPickerProps: {
5
- modelValue: {
6
- type: StringConstructor[];
7
- };
8
- foreground: {
9
- type: StringConstructor[];
10
- default: string;
11
- };
12
- type: {
13
- type: StringConstructor[];
14
- default: string;
15
- };
16
- theme: {
17
- type: StringConstructor;
18
- default: string;
19
- };
20
- disabled: {
21
- type: BooleanConstructor;
22
- default: boolean;
23
- };
24
- lang: {
25
- type: StringConstructor;
26
- default: string;
27
- };
28
- };
29
- export type ColorPickerProps = ExtractPropTypes<typeof colorPickerProps>;
30
- export declare const colorPickerEmits: {
31
- 'update:modelValue'(val: string): boolean;
32
- };
33
- export type ColorPickerEmits = typeof colorPickerEmits;
34
- export declare const useColorPicker: (props: ColorPickerProps, emits: EmitFn<ColorPickerEmits>) => {
35
- colorArea: import("vue").Ref<HTMLElement | undefined>;
36
- colorValue: import("vue").Ref<HTMLElement | undefined>;
37
- colorAlpha: import("vue").Ref<HTMLElement | undefined>;
38
- colorLeft: import("vue").Ref<number>;
39
- colorTop: import("vue").Ref<number>;
40
- colorValueLeft: import("vue").Ref<number>;
41
- colorAlphaLeft: import("vue").Ref<number>;
42
- colorObj: import("vue").Ref<{
43
- channels: {
44
- rgb: [number, number, number];
45
- hsv: [number, number, number];
46
- };
47
- valpha: number;
48
- clone: () => Color;
49
- parse: (color: string) => Color;
50
- updateRGB2HSV: () => Color;
51
- updateHSV2RGB: () => Color;
52
- red: {
53
- (red: number): Color;
54
- (): number;
55
- };
56
- green: {
57
- (green: number): Color;
58
- (): number;
59
- };
60
- blue: {
61
- (blue: number): Color;
62
- (): number;
63
- };
64
- hue: {
65
- (hue: number): Color;
66
- (): number;
67
- };
68
- saturation: {
69
- (saturation: number): Color;
70
- (): number;
71
- };
72
- value: {
73
- (value: number): Color;
74
- (): number;
75
- };
76
- alpha: {
77
- (alpha: number): Color;
78
- (): number;
79
- };
80
- hex: () => string;
81
- hexa: () => string;
82
- cssrgb: () => string;
83
- cssrgba: () => string;
84
- isDark: () => boolean;
85
- isLight: () => boolean;
86
- }>;
87
- computedR: import("vue").WritableComputedRef<string>;
88
- computedG: import("vue").WritableComputedRef<string>;
89
- computedB: import("vue").WritableComputedRef<string>;
90
- computedH: import("vue").WritableComputedRef<string>;
91
- computedS: import("vue").WritableComputedRef<string>;
92
- computedV: import("vue").WritableComputedRef<string>;
93
- computedAlpha: import("vue").WritableComputedRef<string>;
94
- computedText: import("vue").WritableComputedRef<string>;
95
- colorModeOptions: {
96
- key: string;
97
- text: string;
98
- }[];
99
- colorMode: import("vue").Ref<{
100
- key: string;
101
- text: string;
102
- }>;
103
- onMousedown: (mouse: MouseEvent | TouchEvent) => void;
104
- onValueMouseDown: (mouse: MouseEvent | TouchEvent) => void;
105
- onAlphaMouseDown: (mouse: MouseEvent | TouchEvent) => void;
106
- colorListStr: import("vue").Ref<string>;
107
- };
@@ -1,3 +0,0 @@
1
- import "./style";
2
- export declare const FvRadioGroup: any;
3
- export default FvRadioGroup;
@@ -1,20 +0,0 @@
1
- import { ExtractPropTypes } from 'vue';
2
- import { EmitFn } from '@/types/components';
3
- export declare const radioGroupProps: {
4
- theme: {
5
- type: StringConstructor;
6
- default: string;
7
- };
8
- disabled: {
9
- type: BooleanConstructor;
10
- default: boolean;
11
- };
12
- lang: {
13
- type: StringConstructor;
14
- default: string;
15
- };
16
- };
17
- export type RadioGroupProps = ExtractPropTypes<typeof radioGroupProps>;
18
- export declare const radioGroupEmits: {};
19
- export type RadioGroupEmits = typeof radioGroupEmits;
20
- export declare const useRadioGroup: (props: RadioGroupProps, emits: EmitFn<RadioGroupEmits>) => {};
@@ -1,2 +0,0 @@
1
- declare const _default: any;
2
- export default _default;
@@ -1,3 +0,0 @@
1
- import "@/styles/theme/base/radio-group/index.scss";
2
- import "@/styles/theme/light/radio-group/index.scss";
3
- import "@/styles/theme/dark/radio-group/index.scss";