prlg-ui 1.8.5 → 1.8.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/index.d.ts +3 -2
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +1212 -1184
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1237,8 +1237,8 @@ declare interface ICalendarProps {
|
|
|
1237
1237
|
}
|
|
1238
1238
|
|
|
1239
1239
|
declare type ICalendarResult = {
|
|
1240
|
-
to: string;
|
|
1241
|
-
from: string;
|
|
1240
|
+
to: string | null;
|
|
1241
|
+
from: string | null;
|
|
1242
1242
|
};
|
|
1243
1243
|
|
|
1244
1244
|
declare type ICalendarResultValue = string | ICalendarResult | null;
|
|
@@ -1646,6 +1646,7 @@ declare type TableSize = 'small' | 'default' | 'large';
|
|
|
1646
1646
|
|
|
1647
1647
|
declare type TableSlots = {
|
|
1648
1648
|
default(): any;
|
|
1649
|
+
empty?(): any;
|
|
1649
1650
|
};
|
|
1650
1651
|
|
|
1651
1652
|
export declare const TabList: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
|