@djcali570/component-lib 0.1.6 → 0.1.8
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/index.d.ts +4 -3
- package/dist/index.js +2 -1
- package/dist/types.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5,8 +5,9 @@ import TimePicker5 from "./TimePicker5.svelte";
|
|
|
5
5
|
import Accordion5 from "./Accordion5.svelte";
|
|
6
6
|
import Chart5 from "./Chart5.svelte";
|
|
7
7
|
import AdminPanel5 from "./AdminPanel5.svelte";
|
|
8
|
-
import
|
|
8
|
+
import Checkbox5 from "./Checkbox5.svelte";
|
|
9
|
+
import type { Input5ColorScheme, DatePicker5ColorScheme, TimePicker5ColorScheme, DropDownItem, DropDown5ColorScheme, Accordion5ColorScheme, Chart5ColorScheme, AdminPanel5ColorScheme, BottomSheet5ColorScheme, Dialog5ColorScheme, Checkbox5ColorScheme } from "./types.js";
|
|
9
10
|
import BottomSheet5 from "./BottomSheet5.svelte";
|
|
10
11
|
import Dialog5 from "./Dialog5.svelte";
|
|
11
|
-
export { DatePicker5, Input5, DropDown5, TimePicker5, Accordion5, Chart5, AdminPanel5, BottomSheet5, Dialog5 };
|
|
12
|
-
export type { Input5ColorScheme, DatePicker5ColorScheme, TimePicker5ColorScheme, Accordion5ColorScheme, DropDown5ColorScheme, DropDownItem, Chart5ColorScheme, AdminPanel5ColorScheme, BottomSheet5ColorScheme, Dialog5ColorScheme };
|
|
12
|
+
export { DatePicker5, Input5, DropDown5, TimePicker5, Accordion5, Chart5, AdminPanel5, BottomSheet5, Dialog5, Checkbox5 };
|
|
13
|
+
export type { Input5ColorScheme, DatePicker5ColorScheme, TimePicker5ColorScheme, Accordion5ColorScheme, DropDown5ColorScheme, DropDownItem, Chart5ColorScheme, AdminPanel5ColorScheme, BottomSheet5ColorScheme, Dialog5ColorScheme, Checkbox5ColorScheme };
|
package/dist/index.js
CHANGED
|
@@ -8,4 +8,5 @@ import Chart5 from "./Chart5.svelte";
|
|
|
8
8
|
import AdminPanel5 from "./AdminPanel5.svelte";
|
|
9
9
|
import BottomSheet5 from "./BottomSheet5.svelte";
|
|
10
10
|
import Dialog5 from "./Dialog5.svelte";
|
|
11
|
-
|
|
11
|
+
import CheckBox5 from "./Checkbox5.svelte";
|
|
12
|
+
export { DatePicker5, Input5, DropDown5, TimePicker5, Accordion5, Chart5, AdminPanel5, BottomSheet5, Dialog5, CheckBox5 };
|
package/dist/types.d.ts
CHANGED
|
@@ -89,3 +89,11 @@ export interface Dialog5ColorScheme {
|
|
|
89
89
|
okButtonBgColor?: string;
|
|
90
90
|
confirmButtonBgColor?: string;
|
|
91
91
|
}
|
|
92
|
+
|
|
93
|
+
export interface Checkbox5ColorScheme {
|
|
94
|
+
mainTextColor?: string;
|
|
95
|
+
mainBgColor?: string;
|
|
96
|
+
borderColor?: string;
|
|
97
|
+
focusedColor?: string;
|
|
98
|
+
checkmarkColor?: string;
|
|
99
|
+
}
|