prlg-ui 1.8.226 → 1.8.227
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/reka-ui/index.cjs.js +1 -1
- package/dist/reka-ui/index.es.js +166 -162
- package/dist/rekaUI.d.ts +6 -1
- package/package.json +1 -1
package/dist/rekaUI.d.ts
CHANGED
|
@@ -113,6 +113,8 @@ import { PopoverTrigger } from 'reka-ui';
|
|
|
113
113
|
import { PublicProps } from 'vue';
|
|
114
114
|
import { RadioGroupItemProps } from 'reka-ui';
|
|
115
115
|
import { RadioGroupRoot } from 'reka-ui';
|
|
116
|
+
import { RendererElement } from 'vue';
|
|
117
|
+
import { RendererNode } from 'vue';
|
|
116
118
|
import { RouteLocationRaw } from 'vue-router';
|
|
117
119
|
import { RowSelectionState } from '@tanstack/vue-table';
|
|
118
120
|
import { SortingState } from '@tanstack/vue-table';
|
|
@@ -134,6 +136,7 @@ import { TooltipPortal } from 'reka-ui';
|
|
|
134
136
|
import { TooltipProvider } from 'reka-ui';
|
|
135
137
|
import { TooltipRoot } from 'reka-ui';
|
|
136
138
|
import { TooltipTrigger } from 'reka-ui';
|
|
139
|
+
import { VNode } from 'vue';
|
|
137
140
|
|
|
138
141
|
declare const __VLS_component: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
139
142
|
|
|
@@ -1841,7 +1844,9 @@ export { PopoverTrigger }
|
|
|
1841
1844
|
*
|
|
1842
1845
|
* Функция будет возвращаться HTML строку <span>11000.<small>00</small>₽</span>
|
|
1843
1846
|
*/
|
|
1844
|
-
export declare const priceFormat: (price: string | number) => string
|
|
1847
|
+
export declare const priceFormat: (price: string | number, returnHtml?: boolean) => string | VNode<RendererNode, RendererElement, {
|
|
1848
|
+
[key: string]: any;
|
|
1849
|
+
}>;
|
|
1845
1850
|
|
|
1846
1851
|
export declare const RadioGroupItem: DefineComponent<RadioGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<RadioGroupItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1847
1852
|
|