framepexls-ui-lib 1.16.0 → 2.1.0
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/DataTable.d.mts +3 -1
- package/dist/DataTable.d.ts +3 -1
- package/dist/DataTable.js +6 -3
- package/dist/DataTable.mjs +6 -3
- package/dist/Numeric.d.mts +24 -0
- package/dist/Numeric.d.ts +24 -0
- package/dist/Numeric.js +102 -0
- package/dist/Numeric.mjs +76 -0
- package/dist/PageScaffold.d.mts +2 -1
- package/dist/PageScaffold.d.ts +2 -1
- package/dist/PageScaffold.js +26 -16
- package/dist/PageScaffold.mjs +26 -16
- package/dist/StatCard.d.mts +37 -2
- package/dist/StatCard.d.ts +37 -2
- package/dist/StatCard.js +94 -6
- package/dist/StatCard.mjs +95 -7
- package/dist/Table.js +92 -6
- package/dist/Table.mjs +92 -6
- package/dist/charts.d.mts +7 -0
- package/dist/charts.d.ts +7 -0
- package/dist/charts.js +54 -0
- package/dist/charts.mjs +14 -0
- package/dist/index.d.mts +1 -5
- package/dist/index.d.ts +1 -5
- package/dist/index.js +9 -19
- package/dist/index.mjs +143 -150
- package/package.json +11 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { CtrHorizontalBar, DestinoDonut, TopImpresionesBar } from './AnalyticsCharts.mjs';
|
|
2
|
+
export { BarSeries, default as RechartsBarCard, RechartsBarCardProps } from './RechartsBarCard.mjs';
|
|
3
|
+
export { LineSeries, default as RechartsTimeSeriesCard, RechartsTimeSeriesCardProps } from './RechartsTimeSeriesCard.mjs';
|
|
4
|
+
export { default as RechartsDonutCard, RechartsDonutCardProps } from './RechartsDonutCard.mjs';
|
|
5
|
+
export { default as StatCard, StatCardComparison, StatCardComparisonPeriod, StatCardComparisonTrend, StatCardMenu, StatCardMenuItem, StatCardProps } from './StatCard.mjs';
|
|
6
|
+
import 'react/jsx-runtime';
|
|
7
|
+
import 'react';
|
package/dist/charts.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { CtrHorizontalBar, DestinoDonut, TopImpresionesBar } from './AnalyticsCharts.js';
|
|
2
|
+
export { BarSeries, default as RechartsBarCard, RechartsBarCardProps } from './RechartsBarCard.js';
|
|
3
|
+
export { LineSeries, default as RechartsTimeSeriesCard, RechartsTimeSeriesCardProps } from './RechartsTimeSeriesCard.js';
|
|
4
|
+
export { default as RechartsDonutCard, RechartsDonutCardProps } from './RechartsDonutCard.js';
|
|
5
|
+
export { default as StatCard, StatCardComparison, StatCardComparisonPeriod, StatCardComparisonTrend, StatCardMenu, StatCardMenuItem, StatCardProps } from './StatCard.js';
|
|
6
|
+
import 'react/jsx-runtime';
|
|
7
|
+
import 'react';
|
package/dist/charts.js
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var charts_exports = {};
|
|
30
|
+
__export(charts_exports, {
|
|
31
|
+
CtrHorizontalBar: () => import_AnalyticsCharts.CtrHorizontalBar,
|
|
32
|
+
DestinoDonut: () => import_AnalyticsCharts.DestinoDonut,
|
|
33
|
+
RechartsBarCard: () => import_RechartsBarCard.default,
|
|
34
|
+
RechartsDonutCard: () => import_RechartsDonutCard.default,
|
|
35
|
+
RechartsTimeSeriesCard: () => import_RechartsTimeSeriesCard.default,
|
|
36
|
+
StatCard: () => import_StatCard.default,
|
|
37
|
+
TopImpresionesBar: () => import_AnalyticsCharts.TopImpresionesBar
|
|
38
|
+
});
|
|
39
|
+
module.exports = __toCommonJS(charts_exports);
|
|
40
|
+
var import_AnalyticsCharts = require("./AnalyticsCharts");
|
|
41
|
+
var import_RechartsBarCard = __toESM(require("./RechartsBarCard"));
|
|
42
|
+
var import_RechartsTimeSeriesCard = __toESM(require("./RechartsTimeSeriesCard"));
|
|
43
|
+
var import_RechartsDonutCard = __toESM(require("./RechartsDonutCard"));
|
|
44
|
+
var import_StatCard = __toESM(require("./StatCard"));
|
|
45
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
46
|
+
0 && (module.exports = {
|
|
47
|
+
CtrHorizontalBar,
|
|
48
|
+
DestinoDonut,
|
|
49
|
+
RechartsBarCard,
|
|
50
|
+
RechartsDonutCard,
|
|
51
|
+
RechartsTimeSeriesCard,
|
|
52
|
+
StatCard,
|
|
53
|
+
TopImpresionesBar
|
|
54
|
+
});
|
package/dist/charts.mjs
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { TopImpresionesBar, CtrHorizontalBar, DestinoDonut } from "./AnalyticsCharts.mjs";
|
|
2
|
+
import { default as default2 } from "./RechartsBarCard.mjs";
|
|
3
|
+
import { default as default3 } from "./RechartsTimeSeriesCard.mjs";
|
|
4
|
+
import { default as default4 } from "./RechartsDonutCard.mjs";
|
|
5
|
+
import { default as default5 } from "./StatCard.mjs";
|
|
6
|
+
export {
|
|
7
|
+
CtrHorizontalBar,
|
|
8
|
+
DestinoDonut,
|
|
9
|
+
default2 as RechartsBarCard,
|
|
10
|
+
default4 as RechartsDonutCard,
|
|
11
|
+
default3 as RechartsTimeSeriesCard,
|
|
12
|
+
default5 as StatCard,
|
|
13
|
+
TopImpresionesBar
|
|
14
|
+
};
|
package/dist/index.d.mts
CHANGED
|
@@ -22,21 +22,17 @@ export { default as TableRecordButton } from './TableRecordButton.mjs';
|
|
|
22
22
|
export { default as Pagination, PaginationProps } from './Pagination.mjs';
|
|
23
23
|
export { default as InfoGrid, InfoItem } from './InfoGrid.mjs';
|
|
24
24
|
export { default as ChartCard } from './ChartCard.mjs';
|
|
25
|
-
export { CtrHorizontalBar, DestinoDonut, TopImpresionesBar } from './AnalyticsCharts.mjs';
|
|
26
|
-
export { BarSeries, default as RechartsBarCard, RechartsBarCardProps } from './RechartsBarCard.mjs';
|
|
27
|
-
export { LineSeries, default as RechartsTimeSeriesCard, RechartsTimeSeriesCardProps } from './RechartsTimeSeriesCard.mjs';
|
|
28
|
-
export { default as RechartsDonutCard, RechartsDonutCardProps } from './RechartsDonutCard.mjs';
|
|
29
25
|
export { default as UploadCard, UploadCardProps, UploadItem } from './UploadCard.mjs';
|
|
30
26
|
export { default as MediaCard, MediaCardProps } from './MediaCard.mjs';
|
|
31
27
|
export { default as MediaTile, MediaTileProps } from './MediaTile.mjs';
|
|
32
28
|
export { default as MediaSelector, MediaSelectorItem, MediosAdapter } from './MediaSelector.mjs';
|
|
33
|
-
export { default as StatCard, StatCardProps } from './StatCard.mjs';
|
|
34
29
|
export { default as KpiCard, KpiCardProps } from './KpiCard.mjs';
|
|
35
30
|
export { default as Badge, Tone as BadgeTone } from './Badge.mjs';
|
|
36
31
|
export { default as BadgeCluster } from './BadgeCluster.mjs';
|
|
37
32
|
export { default as Breadcrumb, BreadcrumbItem, BreadcrumbProps } from './Breadcrumb.mjs';
|
|
38
33
|
export { default as EmptyState, EmptyStateProps } from './EmptyState.mjs';
|
|
39
34
|
export { default as Money } from './Money.mjs';
|
|
35
|
+
export { default as Numeric, NumericFormatOptions, NumericProps, NumericVariant, formatCurrencyValue, formatNumericValue, formatPercentValue } from './Numeric.mjs';
|
|
40
36
|
export { default as TimeAgo } from './TimeAgo.mjs';
|
|
41
37
|
export { default as AvatarSquare } from './AvatarSquare.mjs';
|
|
42
38
|
export { default as AvatarGroup } from './AvatarGroup.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -22,21 +22,17 @@ export { default as TableRecordButton } from './TableRecordButton.js';
|
|
|
22
22
|
export { default as Pagination, PaginationProps } from './Pagination.js';
|
|
23
23
|
export { default as InfoGrid, InfoItem } from './InfoGrid.js';
|
|
24
24
|
export { default as ChartCard } from './ChartCard.js';
|
|
25
|
-
export { CtrHorizontalBar, DestinoDonut, TopImpresionesBar } from './AnalyticsCharts.js';
|
|
26
|
-
export { BarSeries, default as RechartsBarCard, RechartsBarCardProps } from './RechartsBarCard.js';
|
|
27
|
-
export { LineSeries, default as RechartsTimeSeriesCard, RechartsTimeSeriesCardProps } from './RechartsTimeSeriesCard.js';
|
|
28
|
-
export { default as RechartsDonutCard, RechartsDonutCardProps } from './RechartsDonutCard.js';
|
|
29
25
|
export { default as UploadCard, UploadCardProps, UploadItem } from './UploadCard.js';
|
|
30
26
|
export { default as MediaCard, MediaCardProps } from './MediaCard.js';
|
|
31
27
|
export { default as MediaTile, MediaTileProps } from './MediaTile.js';
|
|
32
28
|
export { default as MediaSelector, MediaSelectorItem, MediosAdapter } from './MediaSelector.js';
|
|
33
|
-
export { default as StatCard, StatCardProps } from './StatCard.js';
|
|
34
29
|
export { default as KpiCard, KpiCardProps } from './KpiCard.js';
|
|
35
30
|
export { default as Badge, Tone as BadgeTone } from './Badge.js';
|
|
36
31
|
export { default as BadgeCluster } from './BadgeCluster.js';
|
|
37
32
|
export { default as Breadcrumb, BreadcrumbItem, BreadcrumbProps } from './Breadcrumb.js';
|
|
38
33
|
export { default as EmptyState, EmptyStateProps } from './EmptyState.js';
|
|
39
34
|
export { default as Money } from './Money.js';
|
|
35
|
+
export { default as Numeric, NumericFormatOptions, NumericProps, NumericVariant, formatCurrencyValue, formatNumericValue, formatPercentValue } from './Numeric.js';
|
|
40
36
|
export { default as TimeAgo } from './TimeAgo.js';
|
|
41
37
|
export { default as AvatarSquare } from './AvatarSquare.js';
|
|
42
38
|
export { default as AvatarGroup } from './AvatarGroup.js';
|
package/dist/index.js
CHANGED
|
@@ -54,12 +54,10 @@ __export(index_exports, {
|
|
|
54
54
|
ColorPicker: () => import_ColorPicker.default,
|
|
55
55
|
ColumnSelector: () => import_ColumnSelector.default,
|
|
56
56
|
ComboSelect: () => import_ComboSelect.default,
|
|
57
|
-
CtrHorizontalBar: () => import_AnalyticsCharts.CtrHorizontalBar,
|
|
58
57
|
DataTable: () => import_DataTable.default,
|
|
59
58
|
DataTableCard: () => import_DataTableCard.default,
|
|
60
59
|
DataTableCardFooter: () => import_DataTableCardFooter.default,
|
|
61
60
|
DateTimeField: () => import_DateTimeField.default,
|
|
62
|
-
DestinoDonut: () => import_AnalyticsCharts.DestinoDonut,
|
|
63
61
|
Dialog: () => import_Dialog.default,
|
|
64
62
|
DocumentEditor: () => import_DocumentEditor.default,
|
|
65
63
|
DocumentPreview: () => import_DocumentEditor.DocumentPreview,
|
|
@@ -101,6 +99,7 @@ __export(index_exports, {
|
|
|
101
99
|
MotionProvider: () => import_MotionProvider.default,
|
|
102
100
|
MultiComboSelect: () => import_MultiComboSelect.default,
|
|
103
101
|
NotificationsCenter: () => import_NotificationsCenter.default,
|
|
102
|
+
Numeric: () => import_Numeric.default,
|
|
104
103
|
OmniSearch: () => import_OmniSearch.default,
|
|
105
104
|
OmniSearchRegistryProvider: () => import_OmniSearch2.OmniSearchRegistryProvider,
|
|
106
105
|
OrderButton: () => import_OrderButton.default,
|
|
@@ -112,9 +111,6 @@ __export(index_exports, {
|
|
|
112
111
|
PromotionsCatalog: () => import_PromotionsCatalog.default,
|
|
113
112
|
QrCode: () => import_QrCode.default,
|
|
114
113
|
QuoteEditor: () => import_QuoteEditor.default,
|
|
115
|
-
RechartsBarCard: () => import_RechartsBarCard.default,
|
|
116
|
-
RechartsDonutCard: () => import_RechartsDonutCard.default,
|
|
117
|
-
RechartsTimeSeriesCard: () => import_RechartsTimeSeriesCard.default,
|
|
118
114
|
ReviewHistory: () => import_ReviewHistory.default,
|
|
119
115
|
ReviewHistoryDialog: () => import_ReviewHistory2.ReviewHistoryDialog,
|
|
120
116
|
Reviews: () => import_Reviews.default,
|
|
@@ -124,7 +120,6 @@ __export(index_exports, {
|
|
|
124
120
|
ShareAccess: () => import_ShareAccess.default,
|
|
125
121
|
Sidebar: () => import_Sidebar.default,
|
|
126
122
|
SortTh: () => import_Table.SortTh,
|
|
127
|
-
StatCard: () => import_StatCard.default,
|
|
128
123
|
Steps: () => import_Steps.default,
|
|
129
124
|
StepsNav: () => import_Steps2.StepsNav,
|
|
130
125
|
StorageUsage: () => import_StorageUsage.default,
|
|
@@ -144,7 +139,6 @@ __export(index_exports, {
|
|
|
144
139
|
TimeRangeField: () => import_TimeRangeField.default,
|
|
145
140
|
ToastProvider: () => import_Toast.ToastProvider,
|
|
146
141
|
Tooltip: () => import_Tooltip.default,
|
|
147
|
-
TopImpresionesBar: () => import_AnalyticsCharts.TopImpresionesBar,
|
|
148
142
|
Tour: () => import_Tour.default,
|
|
149
143
|
UploadCard: () => import_UploadCard.default,
|
|
150
144
|
WeekPopover: () => import_TimePopover2.WeekPopover,
|
|
@@ -152,6 +146,9 @@ __export(index_exports, {
|
|
|
152
146
|
WordPreview: () => import_WordEditor.WordPreview,
|
|
153
147
|
WorkflowDiagram: () => import_WorkflowDiagram.default,
|
|
154
148
|
WrenchIcon: () => import_iconos.WrenchIcon,
|
|
149
|
+
formatCurrencyValue: () => import_Numeric.formatCurrencyValue,
|
|
150
|
+
formatNumericValue: () => import_Numeric.formatNumericValue,
|
|
151
|
+
formatPercentValue: () => import_Numeric.formatPercentValue,
|
|
155
152
|
generatePassword: () => import_PasswordField2.generatePassword,
|
|
156
153
|
useCarousel: () => import_Carousel.useCarousel,
|
|
157
154
|
useI18n: () => import_i18n.useI18n,
|
|
@@ -189,21 +186,17 @@ var import_TableRecordButton = __toESM(require("./TableRecordButton"));
|
|
|
189
186
|
var import_Pagination = __toESM(require("./Pagination"));
|
|
190
187
|
var import_InfoGrid = __toESM(require("./InfoGrid"));
|
|
191
188
|
var import_ChartCard = __toESM(require("./ChartCard"));
|
|
192
|
-
var import_AnalyticsCharts = require("./AnalyticsCharts");
|
|
193
|
-
var import_RechartsBarCard = __toESM(require("./RechartsBarCard"));
|
|
194
|
-
var import_RechartsTimeSeriesCard = __toESM(require("./RechartsTimeSeriesCard"));
|
|
195
|
-
var import_RechartsDonutCard = __toESM(require("./RechartsDonutCard"));
|
|
196
189
|
var import_UploadCard = __toESM(require("./UploadCard"));
|
|
197
190
|
var import_MediaCard = __toESM(require("./MediaCard"));
|
|
198
191
|
var import_MediaTile = __toESM(require("./MediaTile"));
|
|
199
192
|
var import_MediaSelector = __toESM(require("./MediaSelector"));
|
|
200
|
-
var import_StatCard = __toESM(require("./StatCard"));
|
|
201
193
|
var import_KpiCard = __toESM(require("./KpiCard"));
|
|
202
194
|
var import_Badge = __toESM(require("./Badge"));
|
|
203
195
|
var import_BadgeCluster = __toESM(require("./BadgeCluster"));
|
|
204
196
|
var import_Breadcrumb = __toESM(require("./Breadcrumb"));
|
|
205
197
|
var import_EmptyState = __toESM(require("./EmptyState"));
|
|
206
198
|
var import_Money = __toESM(require("./Money"));
|
|
199
|
+
var import_Numeric = __toESM(require("./Numeric"));
|
|
207
200
|
var import_TimeAgo = __toESM(require("./TimeAgo"));
|
|
208
201
|
var import_AvatarSquare = __toESM(require("./AvatarSquare"));
|
|
209
202
|
var import_AvatarGroup = __toESM(require("./AvatarGroup"));
|
|
@@ -301,12 +294,10 @@ var import_LoginGallery = __toESM(require("./LoginGallery"));
|
|
|
301
294
|
ColorPicker,
|
|
302
295
|
ColumnSelector,
|
|
303
296
|
ComboSelect,
|
|
304
|
-
CtrHorizontalBar,
|
|
305
297
|
DataTable,
|
|
306
298
|
DataTableCard,
|
|
307
299
|
DataTableCardFooter,
|
|
308
300
|
DateTimeField,
|
|
309
|
-
DestinoDonut,
|
|
310
301
|
Dialog,
|
|
311
302
|
DocumentEditor,
|
|
312
303
|
DocumentPreview,
|
|
@@ -348,6 +339,7 @@ var import_LoginGallery = __toESM(require("./LoginGallery"));
|
|
|
348
339
|
MotionProvider,
|
|
349
340
|
MultiComboSelect,
|
|
350
341
|
NotificationsCenter,
|
|
342
|
+
Numeric,
|
|
351
343
|
OmniSearch,
|
|
352
344
|
OmniSearchRegistryProvider,
|
|
353
345
|
OrderButton,
|
|
@@ -359,9 +351,6 @@ var import_LoginGallery = __toESM(require("./LoginGallery"));
|
|
|
359
351
|
PromotionsCatalog,
|
|
360
352
|
QrCode,
|
|
361
353
|
QuoteEditor,
|
|
362
|
-
RechartsBarCard,
|
|
363
|
-
RechartsDonutCard,
|
|
364
|
-
RechartsTimeSeriesCard,
|
|
365
354
|
ReviewHistory,
|
|
366
355
|
ReviewHistoryDialog,
|
|
367
356
|
Reviews,
|
|
@@ -371,7 +360,6 @@ var import_LoginGallery = __toESM(require("./LoginGallery"));
|
|
|
371
360
|
ShareAccess,
|
|
372
361
|
Sidebar,
|
|
373
362
|
SortTh,
|
|
374
|
-
StatCard,
|
|
375
363
|
Steps,
|
|
376
364
|
StepsNav,
|
|
377
365
|
StorageUsage,
|
|
@@ -391,7 +379,6 @@ var import_LoginGallery = __toESM(require("./LoginGallery"));
|
|
|
391
379
|
TimeRangeField,
|
|
392
380
|
ToastProvider,
|
|
393
381
|
Tooltip,
|
|
394
|
-
TopImpresionesBar,
|
|
395
382
|
Tour,
|
|
396
383
|
UploadCard,
|
|
397
384
|
WeekPopover,
|
|
@@ -399,6 +386,9 @@ var import_LoginGallery = __toESM(require("./LoginGallery"));
|
|
|
399
386
|
WordPreview,
|
|
400
387
|
WorkflowDiagram,
|
|
401
388
|
WrenchIcon,
|
|
389
|
+
formatCurrencyValue,
|
|
390
|
+
formatNumericValue,
|
|
391
|
+
formatPercentValue,
|
|
402
392
|
generatePassword,
|
|
403
393
|
useCarousel,
|
|
404
394
|
useI18n,
|
package/dist/index.mjs
CHANGED
|
@@ -25,72 +25,68 @@ import { default as default21 } from "./TableRecordButton.mjs";
|
|
|
25
25
|
import { default as default22 } from "./Pagination.mjs";
|
|
26
26
|
import { default as default23 } from "./InfoGrid.mjs";
|
|
27
27
|
import { default as default24 } from "./ChartCard.mjs";
|
|
28
|
-
import {
|
|
29
|
-
import { default as
|
|
30
|
-
import { default as
|
|
31
|
-
import { default as
|
|
32
|
-
import { default as
|
|
33
|
-
import { default as
|
|
34
|
-
import { default as
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as default43 } from "./AuthTopbar.mjs";
|
|
48
|
-
import { default as default44 } from "./OrderButton.mjs";
|
|
49
|
-
import { default as default45 } from "./SearchInput.mjs";
|
|
50
|
-
import { default as default46 } from "./PasswordField.mjs";
|
|
28
|
+
import { default as default25 } from "./UploadCard.mjs";
|
|
29
|
+
import { default as default26 } from "./MediaCard.mjs";
|
|
30
|
+
import { default as default27 } from "./MediaTile.mjs";
|
|
31
|
+
import { default as default28 } from "./MediaSelector.mjs";
|
|
32
|
+
import { default as default29 } from "./KpiCard.mjs";
|
|
33
|
+
import { default as default30 } from "./Badge.mjs";
|
|
34
|
+
import { default as default31 } from "./BadgeCluster.mjs";
|
|
35
|
+
import { default as default32 } from "./Breadcrumb.mjs";
|
|
36
|
+
import { default as default33 } from "./EmptyState.mjs";
|
|
37
|
+
import { default as default34 } from "./Money.mjs";
|
|
38
|
+
import { default as default35, formatCurrencyValue, formatNumericValue, formatPercentValue } from "./Numeric.mjs";
|
|
39
|
+
import { default as default36 } from "./TimeAgo.mjs";
|
|
40
|
+
import { default as default37 } from "./AvatarSquare.mjs";
|
|
41
|
+
import { default as default38 } from "./AvatarGroup.mjs";
|
|
42
|
+
import { default as default39 } from "./AppTopbar.mjs";
|
|
43
|
+
import { default as default40 } from "./AuthTopbar.mjs";
|
|
44
|
+
import { default as default41 } from "./OrderButton.mjs";
|
|
45
|
+
import { default as default42 } from "./SearchInput.mjs";
|
|
46
|
+
import { default as default43 } from "./PasswordField.mjs";
|
|
51
47
|
import { validatePassword, generatePassword } from "./PasswordField.mjs";
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
48
|
+
import { default as default44 } from "./WorkflowDiagram.mjs";
|
|
49
|
+
import { default as default45 } from "./LicenseStatus.mjs";
|
|
50
|
+
import { default as default46 } from "./ReviewHistory.mjs";
|
|
55
51
|
import { ReviewHistoryDialog } from "./ReviewHistory.mjs";
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
52
|
+
import { default as default47 } from "./ChangeHistory.mjs";
|
|
53
|
+
import { default as default48 } from "./Reviews.mjs";
|
|
54
|
+
import { default as default49 } from "./ProductCatalog.mjs";
|
|
55
|
+
import { default as default50 } from "./PromotionsCatalog.mjs";
|
|
56
|
+
import { default as default51 } from "./MultiComboSelect.mjs";
|
|
57
|
+
import { default as default52 } from "./Sidebar.mjs";
|
|
58
|
+
import { default as default53 } from "./Card.mjs";
|
|
59
|
+
import { default as default54 } from "./Drawer.mjs";
|
|
60
|
+
import { default as default55 } from "./Tooltip.mjs";
|
|
61
|
+
import { default as default56 } from "./NotificationsCenter.mjs";
|
|
62
|
+
import { default as default57 } from "./ChatCenter.mjs";
|
|
63
|
+
import { default as default58 } from "./ChatbotCenter.mjs";
|
|
64
|
+
import { default as default59 } from "./Link.mjs";
|
|
69
65
|
import { ToastProvider, useToast } from "./Toast.mjs";
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
66
|
+
import { default as default60 } from "./StorageUsage.mjs";
|
|
67
|
+
import { default as default61 } from "./FileButton.mjs";
|
|
68
|
+
import { default as default62 } from "./SegmentedTabs.mjs";
|
|
69
|
+
import { default as default63 } from "./OmniSearch.mjs";
|
|
74
70
|
import { OmniSearchRegistryProvider, useOmniSearchRegistry, useRegisterOmniSearchItems } from "./OmniSearch.mjs";
|
|
75
|
-
import { default as
|
|
71
|
+
import { default as default64 } from "./LiveCursors.mjs";
|
|
76
72
|
import * as Animations from "./animations.mjs";
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
73
|
+
import { default as default65 } from "./MotionProvider.mjs";
|
|
74
|
+
import { default as default66 } from "./LanguageSwitcher.mjs";
|
|
75
|
+
import { default as default67 } from "./ImpersonationSwitcher.mjs";
|
|
76
|
+
import { default as default68 } from "./ImpersonationDialog.mjs";
|
|
77
|
+
import { default as default69 } from "./Tour.mjs";
|
|
78
|
+
import { default as default70 } from "./QrCode.mjs";
|
|
79
|
+
import { default as default71 } from "./ShareAccess.mjs";
|
|
80
|
+
import { default as default72 } from "./KnowledgeBase.mjs";
|
|
81
|
+
import { default as default73 } from "./CalendarPanel.mjs";
|
|
82
|
+
import { default as default74 } from "./TimePopover.mjs";
|
|
87
83
|
import { WeekPopover, MonthPopover } from "./TimePopover.mjs";
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { default as
|
|
84
|
+
import { default as default75 } from "./TimePanel.mjs";
|
|
85
|
+
import { default as default76 } from "./TimeRangeField.mjs";
|
|
86
|
+
import { default as default77 } from "./Steps.mjs";
|
|
91
87
|
import { StepsNav } from "./Steps.mjs";
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
88
|
+
import { default as default78 } from "./PageTransition.mjs";
|
|
89
|
+
import { default as default79 } from "./HeliipLoader.mjs";
|
|
94
90
|
import {
|
|
95
91
|
BookOpenIcon,
|
|
96
92
|
CoinsIcon,
|
|
@@ -104,147 +100,144 @@ import {
|
|
|
104
100
|
WrenchIcon
|
|
105
101
|
} from "./iconos/index.mjs";
|
|
106
102
|
export * from "./iconos/index.mjs";
|
|
107
|
-
import { default as
|
|
108
|
-
import { default as
|
|
109
|
-
import { default as
|
|
110
|
-
import { default as
|
|
111
|
-
import { default as
|
|
112
|
-
import { default as
|
|
103
|
+
import { default as default80 } from "./ColorPicker.mjs";
|
|
104
|
+
import { default as default81, useTheme } from "./theme/ThemeProvider.mjs";
|
|
105
|
+
import { default as default82 } from "./theme/ThemeScript.mjs";
|
|
106
|
+
import { default as default83 } from "./theme/ThemeToggle.mjs";
|
|
107
|
+
import { default as default84 } from "./MarkdownEditor.mjs";
|
|
108
|
+
import { default as default85 } from "./QuoteEditor.mjs";
|
|
113
109
|
export * from "./quote.mjs";
|
|
114
|
-
import { default as
|
|
110
|
+
import { default as default86, DocumentPreview } from "./DocumentEditor.mjs";
|
|
115
111
|
export * from "./document.mjs";
|
|
116
|
-
import { default as
|
|
117
|
-
import { default as
|
|
118
|
-
import { default as
|
|
119
|
-
import { default as
|
|
120
|
-
import { default as
|
|
121
|
-
import { default as
|
|
122
|
-
import { default as
|
|
123
|
-
import { default as
|
|
112
|
+
import { default as default87, WordPreview } from "./WordEditor.mjs";
|
|
113
|
+
import { default as default88 } from "./theme/ThemeController.mjs";
|
|
114
|
+
import { default as default89 } from "./theme/FontSizeController.mjs";
|
|
115
|
+
import { default as default90 } from "./Login.mjs";
|
|
116
|
+
import { default as default91 } from "./LoginTools.mjs";
|
|
117
|
+
import { default as default92, useCarousel } from "./Carousel.mjs";
|
|
118
|
+
import { default as default93 } from "./LoginCarousel.mjs";
|
|
119
|
+
import { default as default94 } from "./LoginGallery.mjs";
|
|
124
120
|
export {
|
|
125
121
|
default3 as ActionIconButton,
|
|
126
122
|
AnimatedBody,
|
|
127
123
|
Animations,
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
124
|
+
default39 as AppTopbar,
|
|
125
|
+
default40 as AuthTopbar,
|
|
126
|
+
default38 as AvatarGroup,
|
|
127
|
+
default37 as AvatarSquare,
|
|
128
|
+
default30 as Badge,
|
|
129
|
+
default31 as BadgeCluster,
|
|
134
130
|
BookOpenIcon,
|
|
135
|
-
|
|
131
|
+
default32 as Breadcrumb,
|
|
136
132
|
default2 as Button,
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
133
|
+
default73 as CalendarPanel,
|
|
134
|
+
default53 as Card,
|
|
135
|
+
default92 as Carousel,
|
|
136
|
+
default47 as ChangeHistory,
|
|
141
137
|
default24 as ChartCard,
|
|
142
|
-
|
|
143
|
-
|
|
138
|
+
default57 as ChatCenter,
|
|
139
|
+
default58 as ChatbotCenter,
|
|
144
140
|
default7 as Checkbox,
|
|
145
141
|
default8 as CheckboxPillsGroup,
|
|
146
142
|
CoinsIcon,
|
|
147
|
-
|
|
143
|
+
default80 as ColorPicker,
|
|
148
144
|
default13 as ColumnSelector,
|
|
149
145
|
default12 as ComboSelect,
|
|
150
|
-
CtrHorizontalBar,
|
|
151
146
|
default18 as DataTable,
|
|
152
147
|
default19 as DataTableCard,
|
|
153
148
|
default20 as DataTableCardFooter,
|
|
154
149
|
default14 as DateTimeField,
|
|
155
|
-
DestinoDonut,
|
|
156
150
|
default15 as Dialog,
|
|
157
|
-
|
|
151
|
+
default86 as DocumentEditor,
|
|
158
152
|
DocumentPreview,
|
|
159
|
-
|
|
153
|
+
default54 as Drawer,
|
|
160
154
|
default16 as Dropdown,
|
|
161
|
-
|
|
155
|
+
default33 as EmptyState,
|
|
162
156
|
EnvelopeSimpleIcon,
|
|
163
|
-
|
|
157
|
+
default61 as FileButton,
|
|
164
158
|
FileTextIcon,
|
|
165
159
|
default9 as FiltersMultiSelect,
|
|
166
|
-
|
|
160
|
+
default89 as FontSizeController,
|
|
167
161
|
FunnelSimpleIcon,
|
|
168
162
|
GraduationCapIcon,
|
|
169
|
-
|
|
163
|
+
default79 as HeliipLoader,
|
|
170
164
|
I18nProvider,
|
|
171
|
-
|
|
172
|
-
|
|
165
|
+
default68 as ImpersonationDialog,
|
|
166
|
+
default67 as ImpersonationSwitcher,
|
|
173
167
|
default23 as InfoGrid,
|
|
174
168
|
default5 as Input,
|
|
175
169
|
KanbanIcon,
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
170
|
+
default72 as KnowledgeBase,
|
|
171
|
+
default29 as KpiCard,
|
|
172
|
+
default66 as LanguageSwitcher,
|
|
173
|
+
default45 as LicenseStatus,
|
|
174
|
+
default59 as Link,
|
|
175
|
+
default64 as LiveCursors,
|
|
176
|
+
default90 as Login,
|
|
177
|
+
default93 as LoginCarousel,
|
|
178
|
+
default94 as LoginGallery,
|
|
179
|
+
default91 as LoginTools,
|
|
186
180
|
default4 as Map,
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
181
|
+
default84 as MarkdownEditor,
|
|
182
|
+
default26 as MediaCard,
|
|
183
|
+
default28 as MediaSelector,
|
|
184
|
+
default27 as MediaTile,
|
|
185
|
+
default34 as Money,
|
|
192
186
|
MonitorIcon,
|
|
193
187
|
MonthPopover,
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
188
|
+
default65 as MotionProvider,
|
|
189
|
+
default51 as MultiComboSelect,
|
|
190
|
+
default56 as NotificationsCenter,
|
|
191
|
+
default35 as Numeric,
|
|
192
|
+
default63 as OmniSearch,
|
|
198
193
|
OmniSearchRegistryProvider,
|
|
199
|
-
|
|
194
|
+
default41 as OrderButton,
|
|
200
195
|
default10 as PageScaffold,
|
|
201
|
-
|
|
196
|
+
default78 as PageTransition,
|
|
202
197
|
default22 as Pagination,
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
default27 as RechartsDonutCard,
|
|
210
|
-
default26 as RechartsTimeSeriesCard,
|
|
211
|
-
default49 as ReviewHistory,
|
|
198
|
+
default43 as PasswordField,
|
|
199
|
+
default49 as ProductCatalog,
|
|
200
|
+
default50 as PromotionsCatalog,
|
|
201
|
+
default70 as QrCode,
|
|
202
|
+
default85 as QuoteEditor,
|
|
203
|
+
default46 as ReviewHistory,
|
|
212
204
|
ReviewHistoryDialog,
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
205
|
+
default48 as Reviews,
|
|
206
|
+
default42 as SearchInput,
|
|
207
|
+
default62 as SegmentedTabs,
|
|
216
208
|
default11 as Select,
|
|
217
|
-
|
|
218
|
-
|
|
209
|
+
default71 as ShareAccess,
|
|
210
|
+
default52 as Sidebar,
|
|
219
211
|
SortTh,
|
|
220
|
-
|
|
221
|
-
default80 as Steps,
|
|
212
|
+
default77 as Steps,
|
|
222
213
|
StepsNav,
|
|
223
|
-
|
|
214
|
+
default60 as StorageUsage,
|
|
224
215
|
SuitcaseIcon,
|
|
225
216
|
default17 as Table,
|
|
226
217
|
default21 as TableRecordButton,
|
|
227
218
|
Td,
|
|
228
219
|
default6 as Textarea,
|
|
229
220
|
Th,
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
221
|
+
default88 as ThemeController,
|
|
222
|
+
default81 as ThemeProvider,
|
|
223
|
+
default82 as ThemeScript,
|
|
224
|
+
default83 as ThemeToggle,
|
|
225
|
+
default36 as TimeAgo,
|
|
226
|
+
default75 as TimePanel,
|
|
227
|
+
default74 as TimePopover,
|
|
228
|
+
default76 as TimeRangeField,
|
|
238
229
|
ToastProvider,
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
default28 as UploadCard,
|
|
230
|
+
default55 as Tooltip,
|
|
231
|
+
default69 as Tour,
|
|
232
|
+
default25 as UploadCard,
|
|
243
233
|
WeekPopover,
|
|
244
|
-
|
|
234
|
+
default87 as WordEditor,
|
|
245
235
|
WordPreview,
|
|
246
|
-
|
|
236
|
+
default44 as WorkflowDiagram,
|
|
247
237
|
WrenchIcon,
|
|
238
|
+
formatCurrencyValue,
|
|
239
|
+
formatNumericValue,
|
|
240
|
+
formatPercentValue,
|
|
248
241
|
generatePassword,
|
|
249
242
|
useCarousel,
|
|
250
243
|
useI18n,
|