@hotelinking/ui 14.48.3 → 14.48.5
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/ui.cjs +1 -1
- package/dist/ui.d.ts +5 -3
- package/dist/ui.es.js +2003 -1918
- package/package.json +1 -1
package/dist/ui.d.ts
CHANGED
|
@@ -226,6 +226,8 @@ declare const Sizes: readonly ["small", "medium", "big"];
|
|
|
226
226
|
declare type Sizes_2 = (typeof Sizes)[number];
|
|
227
227
|
|
|
228
228
|
export declare type TableItemType = {
|
|
229
|
+
/** item checkbox is disabled */
|
|
230
|
+
disabled?: boolean;
|
|
229
231
|
/** co unique id */
|
|
230
232
|
id: string | number;
|
|
231
233
|
/** when a row is emitted, if additional info is needed, can be put here */
|
|
@@ -417,10 +419,10 @@ onMaximizeChart?: ((T: string) => any) | undefined;
|
|
|
417
419
|
loading: boolean;
|
|
418
420
|
type: "area" | "line" | "bar" | "scatter";
|
|
419
421
|
id: string;
|
|
422
|
+
height: number;
|
|
420
423
|
empty: boolean;
|
|
421
424
|
horizontal: boolean;
|
|
422
425
|
stacked: boolean;
|
|
423
|
-
height: number;
|
|
424
426
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
425
427
|
|
|
426
428
|
export declare interface UiChartEventsInterface {
|
|
@@ -563,10 +565,10 @@ onMaximizeChart?: ((T: string) => any) | undefined;
|
|
|
563
565
|
}>, {
|
|
564
566
|
loading: boolean;
|
|
565
567
|
id: string;
|
|
568
|
+
height: number;
|
|
566
569
|
empty: boolean;
|
|
567
570
|
horizontal: boolean;
|
|
568
571
|
stacked: boolean;
|
|
569
|
-
height: number;
|
|
570
572
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
571
573
|
|
|
572
574
|
export declare const uiComparator: DefineComponent<UiComparatorInterface, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -827,10 +829,10 @@ loading: boolean;
|
|
|
827
829
|
type: "area" | "line" | "bar" | "scatter";
|
|
828
830
|
id: string;
|
|
829
831
|
range: "24h" | "7d" | "1m" | "3m" | "all";
|
|
832
|
+
height: number;
|
|
830
833
|
empty: boolean;
|
|
831
834
|
horizontal: boolean;
|
|
832
835
|
stacked: boolean;
|
|
833
|
-
height: number;
|
|
834
836
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
835
837
|
|
|
836
838
|
export declare const uiGallery: DefineComponent<UiGalleryInterface, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|