@djcali570/component-lib 0.0.11 → 0.0.12
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/README.md +3 -0
- package/dist/DatePicker5.svelte +2 -2
- package/dist/DropDown5.svelte +2 -2
- package/dist/Input5.svelte +2 -2
- package/dist/TimePicker5.svelte +1 -1
- package/dist/types.d.ts +40 -40
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/DatePicker5.svelte
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
inputTextColor: '#D6D6D6',
|
|
41
41
|
inputBgColor: '#121212',
|
|
42
42
|
inputBorderColor: '#262626',
|
|
43
|
-
inputFocusedBorderColor: '#
|
|
43
|
+
inputFocusedBorderColor: '#5ac1dd',
|
|
44
44
|
inputClearColor: '#989A9A',
|
|
45
45
|
inputClearHoverColor: '#1F2023',
|
|
46
46
|
placeholderColor: '#46464A',
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
pickerTextColor: '#D6D6D6',
|
|
50
50
|
pickerInactiveDayColor: '#46464A',
|
|
51
51
|
pickerTodayColor: '#BF3131',
|
|
52
|
-
pickerSelectedDayBgColor: '#
|
|
52
|
+
pickerSelectedDayBgColor: '#5ac1dd',
|
|
53
53
|
pickerSelectedDayTextColor: '#121212',
|
|
54
54
|
pickerChevronHoverColor: '#1F2023',
|
|
55
55
|
pickerMaxHeight: '340px'
|
package/dist/DropDown5.svelte
CHANGED
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
borderColor: '#262626',
|
|
33
33
|
titleColor: '#989A9A',
|
|
34
34
|
dropdownBgColor: '#141414',
|
|
35
|
-
focusedColor: '#
|
|
35
|
+
focusedColor: '#5ac1dd',
|
|
36
36
|
itemTextColor: '#D6D6D6',
|
|
37
|
-
itemHoverBgColor: '#
|
|
37
|
+
itemHoverBgColor: '#5ac1dd',
|
|
38
38
|
itemHoverTextColor: '#121212'
|
|
39
39
|
};
|
|
40
40
|
|
package/dist/Input5.svelte
CHANGED
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
mainBgColor: '#121212',
|
|
50
50
|
titleColor: '#989A9A',
|
|
51
51
|
borderColor: '#262626',
|
|
52
|
-
focusedColor: '#
|
|
52
|
+
focusedColor: '#5ac1dd',
|
|
53
53
|
clearColor: '#989A9A',
|
|
54
54
|
clearHoverColor: '#1F2023',
|
|
55
|
-
counterTextColor: '#
|
|
55
|
+
counterTextColor: '#5ac1dd',
|
|
56
56
|
counterBgColor: '#1F2023'
|
|
57
57
|
};
|
|
58
58
|
|
package/dist/TimePicker5.svelte
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
import type { Component } from "svelte";
|
|
2
2
|
export interface Input5ColorScheme {
|
|
3
|
-
mainTextColor
|
|
4
|
-
mainBgColor
|
|
5
|
-
titleColor
|
|
6
|
-
borderColor
|
|
7
|
-
focusedColor
|
|
8
|
-
clearColor
|
|
9
|
-
clearHoverColor
|
|
10
|
-
counterTextColor
|
|
11
|
-
counterBgColor
|
|
3
|
+
mainTextColor?: string;
|
|
4
|
+
mainBgColor?: string;
|
|
5
|
+
titleColor?: string;
|
|
6
|
+
borderColor?: string;
|
|
7
|
+
focusedColor?: string;
|
|
8
|
+
clearColor?: string;
|
|
9
|
+
clearHoverColor?: string;
|
|
10
|
+
counterTextColor?: string;
|
|
11
|
+
counterBgColor?: string;
|
|
12
12
|
}
|
|
13
13
|
export interface DatePicker5ColorScheme {
|
|
14
|
-
labelTextColor
|
|
15
|
-
inputTextColor
|
|
16
|
-
inputBgColor
|
|
17
|
-
inputBorderColor
|
|
18
|
-
inputFocusedBorderColor
|
|
19
|
-
inputClearColor
|
|
20
|
-
inputClearHoverColor
|
|
21
|
-
placeholderColor
|
|
22
|
-
pickerBgColor
|
|
23
|
-
pickerMonthBgColor
|
|
24
|
-
pickerTextColor
|
|
25
|
-
pickerInactiveDayColor
|
|
26
|
-
pickerTodayColor
|
|
27
|
-
pickerSelectedDayBgColor
|
|
28
|
-
pickerSelectedDayTextColor
|
|
29
|
-
pickerChevronHoverColor
|
|
30
|
-
pickerMaxHeight
|
|
14
|
+
labelTextColor?: string;
|
|
15
|
+
inputTextColor?: string;
|
|
16
|
+
inputBgColor?: string;
|
|
17
|
+
inputBorderColor?: string;
|
|
18
|
+
inputFocusedBorderColor?: string;
|
|
19
|
+
inputClearColor?: string;
|
|
20
|
+
inputClearHoverColor?: string;
|
|
21
|
+
placeholderColor?: string;
|
|
22
|
+
pickerBgColor?: string;
|
|
23
|
+
pickerMonthBgColor?: string;
|
|
24
|
+
pickerTextColor?: string;
|
|
25
|
+
pickerInactiveDayColor?: string;
|
|
26
|
+
pickerTodayColor?: string;
|
|
27
|
+
pickerSelectedDayBgColor?: string;
|
|
28
|
+
pickerSelectedDayTextColor?: string;
|
|
29
|
+
pickerChevronHoverColor?: string;
|
|
30
|
+
pickerMaxHeight?: string;
|
|
31
31
|
}
|
|
32
32
|
export interface TimePicker5ColorScheme {
|
|
33
|
-
textColor
|
|
34
|
-
bgColor
|
|
35
|
-
borderColor
|
|
36
|
-
focusedColor
|
|
37
|
-
titleColor
|
|
38
|
-
clearColor
|
|
39
|
-
clearHoverColor
|
|
40
|
-
dropdownBgColor
|
|
33
|
+
textColor?: string;
|
|
34
|
+
bgColor?: string;
|
|
35
|
+
borderColor?: string;
|
|
36
|
+
focusedColor?: string;
|
|
37
|
+
titleColor?: string;
|
|
38
|
+
clearColor?: string;
|
|
39
|
+
clearHoverColor?: string;
|
|
40
|
+
dropdownBgColor?: string;
|
|
41
41
|
}
|
|
42
42
|
export interface Accordion5ColorScheme {
|
|
43
43
|
bgColor?: string;
|
|
@@ -49,12 +49,12 @@ export interface DropDown5ColorScheme {
|
|
|
49
49
|
bgColor?: string;
|
|
50
50
|
textColor?: string;
|
|
51
51
|
borderColor?: string;
|
|
52
|
-
titleColor
|
|
53
|
-
dropdownBgColor
|
|
54
|
-
focusedColor
|
|
55
|
-
itemTextColor
|
|
56
|
-
itemHoverBgColor
|
|
57
|
-
itemHoverTextColor
|
|
52
|
+
titleColor?: string;
|
|
53
|
+
dropdownBgColor?: string;
|
|
54
|
+
focusedColor?: string;
|
|
55
|
+
itemTextColor?: string;
|
|
56
|
+
itemHoverBgColor?: string;
|
|
57
|
+
itemHoverTextColor?: string;
|
|
58
58
|
}
|
|
59
59
|
export interface DropDownItem<TProps extends Record<string, any> = {}> {
|
|
60
60
|
id?: string;
|