cleek 2.3.60 → 2.3.61
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/cleek.es.js +1407 -1386
- package/dist/cleek.umd.js +6 -6
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/components/ck-button.vue.d.ts +0 -49
- package/dist/components/ck-checkbox.vue.d.ts +0 -26
- package/dist/components/ck-chip.vue.d.ts +0 -27
- package/dist/components/ck-div.vue.d.ts +0 -19
- package/dist/components/ck-dropdown/ck-dropdown.vue.d.ts +0 -17
- package/dist/components/ck-icon.vue.d.ts +0 -39
- package/dist/components/ck-img.vue.d.ts +0 -39
- package/dist/components/ck-input.vue.d.ts +0 -72
- package/dist/components/ck-label.vue.d.ts +0 -19
- package/dist/components/ck-navbar/ck-navbar.vue.d.ts +0 -17
- package/dist/components/ck-notify/ck-notify.vue.d.ts +0 -12
- package/dist/components/ck-popup.vue.d.ts +0 -41
- package/dist/components/ck-radio.vue.d.ts +0 -34
- package/dist/components/ck-select.vue.d.ts +0 -69
- package/dist/components/ck-sidebar.vue.d.ts +0 -25
- package/dist/components/ck-switch-options.vue.d.ts +0 -42
- package/dist/components/ck-switch.vue.d.ts +0 -31
- package/dist/components/ck-table/ck-table.vue.d.ts +0 -56
- package/dist/components/ck-table/ck-td.vue.d.ts +0 -43
- package/dist/components/ck-table/ck-th.vue.d.ts +0 -17
- package/dist/components/ck-table/ck-tr.vue.d.ts +0 -2
- package/dist/components/ck-table/inner-components/ck-table__columns-manager.vue.d.ts +0 -24
- package/dist/components/ck-table/inner-components/ck-table__header-items.vue.d.ts +0 -39
- package/dist/components/ck-table/inner-components/ck-table__pagination.vue.d.ts +0 -28
- package/dist/components/ck-table/inner-components/ck-table__title.vue.d.ts +0 -16
- package/dist/components/ck-textarea.vue.d.ts +0 -23
- package/dist/components/index.d.ts +0 -22
- package/dist/hooks/windowWidth.d.ts +0 -3
- package/dist/types/cleek-options.d.ts +0 -12
- package/dist/types/table.d.ts +0 -6
- package/dist/utils/functions.d.ts +0 -14
- package/dist/utils/globalVariables.d.ts +0 -6
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
export { default as CkDropdown } from './ck-dropdown/ck-dropdown.vue';
|
|
2
|
-
export { default as CkNavbar } from './ck-navbar/ck-navbar.vue';
|
|
3
|
-
export { default as CkNotify } from './ck-notify/ck-notify.vue';
|
|
4
|
-
export { default as CkTable } from './ck-table/ck-table.vue';
|
|
5
|
-
export { default as CkTd } from './ck-table/ck-td.vue';
|
|
6
|
-
export { default as CkTh } from './ck-table/ck-th.vue';
|
|
7
|
-
export { default as CkTr } from './ck-table/ck-tr.vue';
|
|
8
|
-
export { default as CkButton } from './ck-button.vue';
|
|
9
|
-
export { default as CkCheckbox } from './ck-checkbox.vue';
|
|
10
|
-
export { default as CkChip } from './ck-chip.vue';
|
|
11
|
-
export { default as CkDiv } from './ck-div.vue';
|
|
12
|
-
export { default as CkIcon } from './ck-icon.vue';
|
|
13
|
-
export { default as CkImg } from './ck-img.vue';
|
|
14
|
-
export { default as CkInput } from './ck-input.vue';
|
|
15
|
-
export { default as CkLabel } from './ck-label.vue';
|
|
16
|
-
export { default as CkPopup } from './ck-popup.vue';
|
|
17
|
-
export { default as CkRadio } from './ck-radio.vue';
|
|
18
|
-
export { default as CkSelect } from './ck-select.vue';
|
|
19
|
-
export { default as CkSidebar } from './ck-sidebar.vue';
|
|
20
|
-
export { default as CkSwitch } from './ck-switch.vue';
|
|
21
|
-
export { default as CkSwitchOptions } from './ck-switch-options.vue';
|
|
22
|
-
export { default as CkTextarea } from './ck-textarea.vue';
|
package/dist/types/table.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { ColumnItem } from '../types/table';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
getCleekOptions(getCurrentInstance: ComponentInternalInstance): any;
|
|
4
|
-
getGroupClass({ group, groupVertical, widthBreaks, }: {
|
|
5
|
-
group?: "center" | "left" | "right" | undefined;
|
|
6
|
-
groupVertical?: "center" | "top" | "bottom" | undefined;
|
|
7
|
-
widthBreaks?: [number, string][] | undefined;
|
|
8
|
-
} | undefined, windowWidth: number): string[];
|
|
9
|
-
getWidthByWidthBreaks(widthBreaks?: [number, string][] | undefined, windowWidth?: number | undefined): string | undefined;
|
|
10
|
-
isColorTemplateVariable(color: string): boolean;
|
|
11
|
-
isColumnDisplayed(column: ColumnItem): boolean;
|
|
12
|
-
preventUnusedError(functions: any[]): void;
|
|
13
|
-
};
|
|
14
|
-
export default _default;
|