coles-solid-library 0.2.2 → 0.2.7
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/components/Button/Button.d.ts +2 -3
- package/dist/components/Icon/icon.d.ts +35 -24
- package/dist/components/Menu/menuDropdown.d.ts +7 -0
- package/dist/components/TableV2/droprow.d.ts +8 -0
- package/dist/components/TableV2/row.d.ts +2 -0
- package/dist/components/TableV2/tableProvider.d.ts +8 -3
- package/dist/index.d.ts +6 -6
- package/dist/index.esm.js +602 -108131
- package/package.json +5 -3
- package/readme.md +10 -2
- package/dist/components/Header/header.d.ts +0 -7
- package/dist/components/Table/innerTable.d.ts +0 -30
- package/dist/components/Table/rowProvider.d.ts +0 -15
- package/dist/components/Table/table.d.ts +0 -16
- package/dist/components/Table/tableProvider.d.ts +0 -25
- package/dist/components/Table2/table.d.ts +0 -13
- package/dist/components/Tabs/tabs.d.ts +0 -22
- package/dist/styles.css +0 -1036
- package/dist/tools.d.ts +0 -17
package/dist/tools.d.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Accessor } from "solid-js";
|
|
2
|
-
/**
|
|
3
|
-
* Sets the theme attribute on the document body.
|
|
4
|
-
* - 'dark' or 'light'
|
|
5
|
-
* @param theme - The theme to set. Defaults to 'dark'.
|
|
6
|
-
*/
|
|
7
|
-
export declare function addTheme(theme?: string): void;
|
|
8
|
-
export type AllHTMLElements = HTMLElement | HTMLDivElement | HTMLButtonElement | HTMLAnchorElement | HTMLInputElement | HTMLFormElement | HTMLImageElement | HTMLLabelElement | HTMLSelectElement | HTMLTextAreaElement | HTMLUListElement | HTMLLIElement | HTMLSpanElement | HTMLTableElement | HTMLTableRowElement | HTMLTableCellElement | HTMLTableSectionElement | HTMLTableColElement | HTMLTableCaptionElement | HTMLTableColElement;
|
|
9
|
-
export declare function useClickOutside(ref: Accessor<AllHTMLElements | undefined | null>, handler: (e: MouseEvent) => void): () => void;
|
|
10
|
-
export declare function getMouse(): () => {
|
|
11
|
-
x: number;
|
|
12
|
-
y: number;
|
|
13
|
-
};
|
|
14
|
-
export declare function isNullish<T>(params: T): boolean;
|
|
15
|
-
export declare function Clone<T>(value: T[], maintainFunctions?: boolean): T[];
|
|
16
|
-
export declare function Clone<T>(value: T, maintainFunctions?: boolean): T;
|
|
17
|
-
export declare function isMobile(): boolean;
|