framepexls-ui-lib 2.0.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/Checkbox.d.mts +1 -1
- package/dist/Checkbox.d.ts +1 -1
- 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/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +9 -0
- package/dist/index.mjs +123 -118
- package/package.json +1 -1
package/dist/Checkbox.d.mts
CHANGED
|
@@ -11,7 +11,7 @@ type CheckboxProps = Omit<React__default.InputHTMLAttributes<HTMLInputElement>,
|
|
|
11
11
|
className?: string;
|
|
12
12
|
inputClassName?: string;
|
|
13
13
|
};
|
|
14
|
-
declare const Checkbox: React__default.ForwardRefExoticComponent<Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "
|
|
14
|
+
declare const Checkbox: React__default.ForwardRefExoticComponent<Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "size" | "type"> & {
|
|
15
15
|
label?: React__default.ReactNode;
|
|
16
16
|
description?: React__default.ReactNode;
|
|
17
17
|
error?: boolean;
|
package/dist/Checkbox.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ type CheckboxProps = Omit<React__default.InputHTMLAttributes<HTMLInputElement>,
|
|
|
11
11
|
className?: string;
|
|
12
12
|
inputClassName?: string;
|
|
13
13
|
};
|
|
14
|
-
declare const Checkbox: React__default.ForwardRefExoticComponent<Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "
|
|
14
|
+
declare const Checkbox: React__default.ForwardRefExoticComponent<Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "size" | "type"> & {
|
|
15
15
|
label?: React__default.ReactNode;
|
|
16
16
|
description?: React__default.ReactNode;
|
|
17
17
|
error?: boolean;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
type NumericVariant = "number" | "currency" | "percent";
|
|
4
|
+
type NumericFormatOptions = {
|
|
5
|
+
variant?: NumericVariant;
|
|
6
|
+
currency?: string;
|
|
7
|
+
locale?: string;
|
|
8
|
+
minimumFractionDigits?: number;
|
|
9
|
+
maximumFractionDigits?: number;
|
|
10
|
+
useGrouping?: boolean;
|
|
11
|
+
fallback?: string;
|
|
12
|
+
prefix?: string;
|
|
13
|
+
suffix?: string;
|
|
14
|
+
};
|
|
15
|
+
type NumericProps = NumericFormatOptions & {
|
|
16
|
+
value: number | null | undefined;
|
|
17
|
+
className?: string;
|
|
18
|
+
};
|
|
19
|
+
declare function formatNumericValue(value: number | null | undefined, { variant, currency, locale, minimumFractionDigits, maximumFractionDigits, useGrouping, fallback, prefix, suffix, }?: NumericFormatOptions): string;
|
|
20
|
+
declare function formatCurrencyValue(value: number | null | undefined, options?: Omit<NumericFormatOptions, "variant">): string;
|
|
21
|
+
declare function formatPercentValue(value: number | null | undefined, options?: Omit<NumericFormatOptions, "variant" | "suffix">): string;
|
|
22
|
+
declare function Numeric({ value, className, fallback, ...options }: NumericProps): react_jsx_runtime.JSX.Element;
|
|
23
|
+
|
|
24
|
+
export { type NumericFormatOptions, type NumericProps, type NumericVariant, Numeric as default, formatCurrencyValue, formatNumericValue, formatPercentValue };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
type NumericVariant = "number" | "currency" | "percent";
|
|
4
|
+
type NumericFormatOptions = {
|
|
5
|
+
variant?: NumericVariant;
|
|
6
|
+
currency?: string;
|
|
7
|
+
locale?: string;
|
|
8
|
+
minimumFractionDigits?: number;
|
|
9
|
+
maximumFractionDigits?: number;
|
|
10
|
+
useGrouping?: boolean;
|
|
11
|
+
fallback?: string;
|
|
12
|
+
prefix?: string;
|
|
13
|
+
suffix?: string;
|
|
14
|
+
};
|
|
15
|
+
type NumericProps = NumericFormatOptions & {
|
|
16
|
+
value: number | null | undefined;
|
|
17
|
+
className?: string;
|
|
18
|
+
};
|
|
19
|
+
declare function formatNumericValue(value: number | null | undefined, { variant, currency, locale, minimumFractionDigits, maximumFractionDigits, useGrouping, fallback, prefix, suffix, }?: NumericFormatOptions): string;
|
|
20
|
+
declare function formatCurrencyValue(value: number | null | undefined, options?: Omit<NumericFormatOptions, "variant">): string;
|
|
21
|
+
declare function formatPercentValue(value: number | null | undefined, options?: Omit<NumericFormatOptions, "variant" | "suffix">): string;
|
|
22
|
+
declare function Numeric({ value, className, fallback, ...options }: NumericProps): react_jsx_runtime.JSX.Element;
|
|
23
|
+
|
|
24
|
+
export { type NumericFormatOptions, type NumericProps, type NumericVariant, Numeric as default, formatCurrencyValue, formatNumericValue, formatPercentValue };
|
package/dist/Numeric.js
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
"use client";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
var Numeric_exports = {};
|
|
21
|
+
__export(Numeric_exports, {
|
|
22
|
+
default: () => Numeric,
|
|
23
|
+
formatCurrencyValue: () => formatCurrencyValue,
|
|
24
|
+
formatNumericValue: () => formatNumericValue,
|
|
25
|
+
formatPercentValue: () => formatPercentValue
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(Numeric_exports);
|
|
28
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
29
|
+
function isFiniteNumber(value) {
|
|
30
|
+
return typeof value === "number" && Number.isFinite(value);
|
|
31
|
+
}
|
|
32
|
+
function joinClassNames(...values) {
|
|
33
|
+
return values.filter(Boolean).join(" ");
|
|
34
|
+
}
|
|
35
|
+
function buildNumericFormatter({
|
|
36
|
+
variant = "number",
|
|
37
|
+
currency = "MXN",
|
|
38
|
+
locale = "es-MX",
|
|
39
|
+
minimumFractionDigits = 3,
|
|
40
|
+
maximumFractionDigits = 3,
|
|
41
|
+
useGrouping = true
|
|
42
|
+
}) {
|
|
43
|
+
if (variant === "currency") {
|
|
44
|
+
return new Intl.NumberFormat(locale, {
|
|
45
|
+
style: "currency",
|
|
46
|
+
currency,
|
|
47
|
+
currencyDisplay: "narrowSymbol",
|
|
48
|
+
minimumFractionDigits,
|
|
49
|
+
maximumFractionDigits,
|
|
50
|
+
useGrouping
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
return new Intl.NumberFormat(locale, {
|
|
54
|
+
minimumFractionDigits,
|
|
55
|
+
maximumFractionDigits,
|
|
56
|
+
useGrouping
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
function formatNumericValue(value, {
|
|
60
|
+
variant = "number",
|
|
61
|
+
currency = "MXN",
|
|
62
|
+
locale = "es-MX",
|
|
63
|
+
minimumFractionDigits = 3,
|
|
64
|
+
maximumFractionDigits = 3,
|
|
65
|
+
useGrouping = true,
|
|
66
|
+
fallback = "\u2014",
|
|
67
|
+
prefix = "",
|
|
68
|
+
suffix = ""
|
|
69
|
+
} = {}) {
|
|
70
|
+
if (!isFiniteNumber(value)) return fallback;
|
|
71
|
+
const formatter = buildNumericFormatter({
|
|
72
|
+
variant,
|
|
73
|
+
currency,
|
|
74
|
+
locale,
|
|
75
|
+
minimumFractionDigits,
|
|
76
|
+
maximumFractionDigits,
|
|
77
|
+
useGrouping
|
|
78
|
+
});
|
|
79
|
+
const formatted = formatter.format(value);
|
|
80
|
+
const percentSuffix = variant === "percent" ? "%" : "";
|
|
81
|
+
return `${prefix}${formatted}${percentSuffix}${suffix}`;
|
|
82
|
+
}
|
|
83
|
+
function formatCurrencyValue(value, options = {}) {
|
|
84
|
+
return formatNumericValue(value, { ...options, variant: "currency" });
|
|
85
|
+
}
|
|
86
|
+
function formatPercentValue(value, options = {}) {
|
|
87
|
+
return formatNumericValue(value, { ...options, variant: "percent" });
|
|
88
|
+
}
|
|
89
|
+
function Numeric({
|
|
90
|
+
value,
|
|
91
|
+
className,
|
|
92
|
+
fallback = "\u2014",
|
|
93
|
+
...options
|
|
94
|
+
}) {
|
|
95
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: joinClassNames("tabular-nums", className), children: formatNumericValue(value, { fallback, ...options }) });
|
|
96
|
+
}
|
|
97
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
98
|
+
0 && (module.exports = {
|
|
99
|
+
formatCurrencyValue,
|
|
100
|
+
formatNumericValue,
|
|
101
|
+
formatPercentValue
|
|
102
|
+
});
|
package/dist/Numeric.mjs
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
function isFiniteNumber(value) {
|
|
4
|
+
return typeof value === "number" && Number.isFinite(value);
|
|
5
|
+
}
|
|
6
|
+
function joinClassNames(...values) {
|
|
7
|
+
return values.filter(Boolean).join(" ");
|
|
8
|
+
}
|
|
9
|
+
function buildNumericFormatter({
|
|
10
|
+
variant = "number",
|
|
11
|
+
currency = "MXN",
|
|
12
|
+
locale = "es-MX",
|
|
13
|
+
minimumFractionDigits = 3,
|
|
14
|
+
maximumFractionDigits = 3,
|
|
15
|
+
useGrouping = true
|
|
16
|
+
}) {
|
|
17
|
+
if (variant === "currency") {
|
|
18
|
+
return new Intl.NumberFormat(locale, {
|
|
19
|
+
style: "currency",
|
|
20
|
+
currency,
|
|
21
|
+
currencyDisplay: "narrowSymbol",
|
|
22
|
+
minimumFractionDigits,
|
|
23
|
+
maximumFractionDigits,
|
|
24
|
+
useGrouping
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
return new Intl.NumberFormat(locale, {
|
|
28
|
+
minimumFractionDigits,
|
|
29
|
+
maximumFractionDigits,
|
|
30
|
+
useGrouping
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
function formatNumericValue(value, {
|
|
34
|
+
variant = "number",
|
|
35
|
+
currency = "MXN",
|
|
36
|
+
locale = "es-MX",
|
|
37
|
+
minimumFractionDigits = 3,
|
|
38
|
+
maximumFractionDigits = 3,
|
|
39
|
+
useGrouping = true,
|
|
40
|
+
fallback = "\u2014",
|
|
41
|
+
prefix = "",
|
|
42
|
+
suffix = ""
|
|
43
|
+
} = {}) {
|
|
44
|
+
if (!isFiniteNumber(value)) return fallback;
|
|
45
|
+
const formatter = buildNumericFormatter({
|
|
46
|
+
variant,
|
|
47
|
+
currency,
|
|
48
|
+
locale,
|
|
49
|
+
minimumFractionDigits,
|
|
50
|
+
maximumFractionDigits,
|
|
51
|
+
useGrouping
|
|
52
|
+
});
|
|
53
|
+
const formatted = formatter.format(value);
|
|
54
|
+
const percentSuffix = variant === "percent" ? "%" : "";
|
|
55
|
+
return `${prefix}${formatted}${percentSuffix}${suffix}`;
|
|
56
|
+
}
|
|
57
|
+
function formatCurrencyValue(value, options = {}) {
|
|
58
|
+
return formatNumericValue(value, { ...options, variant: "currency" });
|
|
59
|
+
}
|
|
60
|
+
function formatPercentValue(value, options = {}) {
|
|
61
|
+
return formatNumericValue(value, { ...options, variant: "percent" });
|
|
62
|
+
}
|
|
63
|
+
function Numeric({
|
|
64
|
+
value,
|
|
65
|
+
className,
|
|
66
|
+
fallback = "\u2014",
|
|
67
|
+
...options
|
|
68
|
+
}) {
|
|
69
|
+
return /* @__PURE__ */ jsx("span", { className: joinClassNames("tabular-nums", className), children: formatNumericValue(value, { fallback, ...options }) });
|
|
70
|
+
}
|
|
71
|
+
export {
|
|
72
|
+
Numeric as default,
|
|
73
|
+
formatCurrencyValue,
|
|
74
|
+
formatNumericValue,
|
|
75
|
+
formatPercentValue
|
|
76
|
+
};
|
package/dist/index.d.mts
CHANGED
|
@@ -32,6 +32,7 @@ export { default as BadgeCluster } from './BadgeCluster.mjs';
|
|
|
32
32
|
export { default as Breadcrumb, BreadcrumbItem, BreadcrumbProps } from './Breadcrumb.mjs';
|
|
33
33
|
export { default as EmptyState, EmptyStateProps } from './EmptyState.mjs';
|
|
34
34
|
export { default as Money } from './Money.mjs';
|
|
35
|
+
export { default as Numeric, NumericFormatOptions, NumericProps, NumericVariant, formatCurrencyValue, formatNumericValue, formatPercentValue } from './Numeric.mjs';
|
|
35
36
|
export { default as TimeAgo } from './TimeAgo.mjs';
|
|
36
37
|
export { default as AvatarSquare } from './AvatarSquare.mjs';
|
|
37
38
|
export { default as AvatarGroup } from './AvatarGroup.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export { default as BadgeCluster } from './BadgeCluster.js';
|
|
|
32
32
|
export { default as Breadcrumb, BreadcrumbItem, BreadcrumbProps } from './Breadcrumb.js';
|
|
33
33
|
export { default as EmptyState, EmptyStateProps } from './EmptyState.js';
|
|
34
34
|
export { default as Money } from './Money.js';
|
|
35
|
+
export { default as Numeric, NumericFormatOptions, NumericProps, NumericVariant, formatCurrencyValue, formatNumericValue, formatPercentValue } from './Numeric.js';
|
|
35
36
|
export { default as TimeAgo } from './TimeAgo.js';
|
|
36
37
|
export { default as AvatarSquare } from './AvatarSquare.js';
|
|
37
38
|
export { default as AvatarGroup } from './AvatarGroup.js';
|
package/dist/index.js
CHANGED
|
@@ -99,6 +99,7 @@ __export(index_exports, {
|
|
|
99
99
|
MotionProvider: () => import_MotionProvider.default,
|
|
100
100
|
MultiComboSelect: () => import_MultiComboSelect.default,
|
|
101
101
|
NotificationsCenter: () => import_NotificationsCenter.default,
|
|
102
|
+
Numeric: () => import_Numeric.default,
|
|
102
103
|
OmniSearch: () => import_OmniSearch.default,
|
|
103
104
|
OmniSearchRegistryProvider: () => import_OmniSearch2.OmniSearchRegistryProvider,
|
|
104
105
|
OrderButton: () => import_OrderButton.default,
|
|
@@ -145,6 +146,9 @@ __export(index_exports, {
|
|
|
145
146
|
WordPreview: () => import_WordEditor.WordPreview,
|
|
146
147
|
WorkflowDiagram: () => import_WorkflowDiagram.default,
|
|
147
148
|
WrenchIcon: () => import_iconos.WrenchIcon,
|
|
149
|
+
formatCurrencyValue: () => import_Numeric.formatCurrencyValue,
|
|
150
|
+
formatNumericValue: () => import_Numeric.formatNumericValue,
|
|
151
|
+
formatPercentValue: () => import_Numeric.formatPercentValue,
|
|
148
152
|
generatePassword: () => import_PasswordField2.generatePassword,
|
|
149
153
|
useCarousel: () => import_Carousel.useCarousel,
|
|
150
154
|
useI18n: () => import_i18n.useI18n,
|
|
@@ -192,6 +196,7 @@ var import_BadgeCluster = __toESM(require("./BadgeCluster"));
|
|
|
192
196
|
var import_Breadcrumb = __toESM(require("./Breadcrumb"));
|
|
193
197
|
var import_EmptyState = __toESM(require("./EmptyState"));
|
|
194
198
|
var import_Money = __toESM(require("./Money"));
|
|
199
|
+
var import_Numeric = __toESM(require("./Numeric"));
|
|
195
200
|
var import_TimeAgo = __toESM(require("./TimeAgo"));
|
|
196
201
|
var import_AvatarSquare = __toESM(require("./AvatarSquare"));
|
|
197
202
|
var import_AvatarGroup = __toESM(require("./AvatarGroup"));
|
|
@@ -334,6 +339,7 @@ var import_LoginGallery = __toESM(require("./LoginGallery"));
|
|
|
334
339
|
MotionProvider,
|
|
335
340
|
MultiComboSelect,
|
|
336
341
|
NotificationsCenter,
|
|
342
|
+
Numeric,
|
|
337
343
|
OmniSearch,
|
|
338
344
|
OmniSearchRegistryProvider,
|
|
339
345
|
OrderButton,
|
|
@@ -380,6 +386,9 @@ var import_LoginGallery = __toESM(require("./LoginGallery"));
|
|
|
380
386
|
WordPreview,
|
|
381
387
|
WorkflowDiagram,
|
|
382
388
|
WrenchIcon,
|
|
389
|
+
formatCurrencyValue,
|
|
390
|
+
formatNumericValue,
|
|
391
|
+
formatPercentValue,
|
|
383
392
|
generatePassword,
|
|
384
393
|
useCarousel,
|
|
385
394
|
useI18n,
|
package/dist/index.mjs
CHANGED
|
@@ -35,57 +35,58 @@ import { default as default31 } from "./BadgeCluster.mjs";
|
|
|
35
35
|
import { default as default32 } from "./Breadcrumb.mjs";
|
|
36
36
|
import { default as default33 } from "./EmptyState.mjs";
|
|
37
37
|
import { default as default34 } from "./Money.mjs";
|
|
38
|
-
import { default as default35 } from "./
|
|
39
|
-
import { default as default36 } from "./
|
|
40
|
-
import { default as default37 } from "./
|
|
41
|
-
import { default as default38 } from "./
|
|
42
|
-
import { default as default39 } from "./
|
|
43
|
-
import { default as default40 } from "./
|
|
44
|
-
import { default as default41 } from "./
|
|
45
|
-
import { default as default42 } from "./
|
|
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";
|
|
46
47
|
import { validatePassword, generatePassword } from "./PasswordField.mjs";
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
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";
|
|
50
51
|
import { ReviewHistoryDialog } from "./ReviewHistory.mjs";
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import { default as
|
|
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
|
|
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";
|
|
64
65
|
import { ToastProvider, useToast } from "./Toast.mjs";
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
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";
|
|
69
70
|
import { OmniSearchRegistryProvider, useOmniSearchRegistry, useRegisterOmniSearchItems } from "./OmniSearch.mjs";
|
|
70
|
-
import { default as
|
|
71
|
+
import { default as default64 } from "./LiveCursors.mjs";
|
|
71
72
|
import * as Animations from "./animations.mjs";
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
81
|
-
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";
|
|
82
83
|
import { WeekPopover, MonthPopover } from "./TimePopover.mjs";
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
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";
|
|
86
87
|
import { StepsNav } from "./Steps.mjs";
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
88
|
+
import { default as default78 } from "./PageTransition.mjs";
|
|
89
|
+
import { default as default79 } from "./HeliipLoader.mjs";
|
|
89
90
|
import {
|
|
90
91
|
BookOpenIcon,
|
|
91
92
|
CoinsIcon,
|
|
@@ -99,47 +100,47 @@ import {
|
|
|
99
100
|
WrenchIcon
|
|
100
101
|
} from "./iconos/index.mjs";
|
|
101
102
|
export * from "./iconos/index.mjs";
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import { default as
|
|
105
|
-
import { default as
|
|
106
|
-
import { default as
|
|
107
|
-
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";
|
|
108
109
|
export * from "./quote.mjs";
|
|
109
|
-
import { default as
|
|
110
|
+
import { default as default86, DocumentPreview } from "./DocumentEditor.mjs";
|
|
110
111
|
export * from "./document.mjs";
|
|
111
|
-
import { default as
|
|
112
|
-
import { default as
|
|
113
|
-
import { default as
|
|
114
|
-
import { default as
|
|
115
|
-
import { default as
|
|
116
|
-
import { default as
|
|
117
|
-
import { default as
|
|
118
|
-
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";
|
|
119
120
|
export {
|
|
120
121
|
default3 as ActionIconButton,
|
|
121
122
|
AnimatedBody,
|
|
122
123
|
Animations,
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
124
|
+
default39 as AppTopbar,
|
|
125
|
+
default40 as AuthTopbar,
|
|
126
|
+
default38 as AvatarGroup,
|
|
127
|
+
default37 as AvatarSquare,
|
|
127
128
|
default30 as Badge,
|
|
128
129
|
default31 as BadgeCluster,
|
|
129
130
|
BookOpenIcon,
|
|
130
131
|
default32 as Breadcrumb,
|
|
131
132
|
default2 as Button,
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
133
|
+
default73 as CalendarPanel,
|
|
134
|
+
default53 as Card,
|
|
135
|
+
default92 as Carousel,
|
|
136
|
+
default47 as ChangeHistory,
|
|
136
137
|
default24 as ChartCard,
|
|
137
|
-
|
|
138
|
-
|
|
138
|
+
default57 as ChatCenter,
|
|
139
|
+
default58 as ChatbotCenter,
|
|
139
140
|
default7 as Checkbox,
|
|
140
141
|
default8 as CheckboxPillsGroup,
|
|
141
142
|
CoinsIcon,
|
|
142
|
-
|
|
143
|
+
default80 as ColorPicker,
|
|
143
144
|
default13 as ColumnSelector,
|
|
144
145
|
default12 as ComboSelect,
|
|
145
146
|
default18 as DataTable,
|
|
@@ -147,92 +148,96 @@ export {
|
|
|
147
148
|
default20 as DataTableCardFooter,
|
|
148
149
|
default14 as DateTimeField,
|
|
149
150
|
default15 as Dialog,
|
|
150
|
-
|
|
151
|
+
default86 as DocumentEditor,
|
|
151
152
|
DocumentPreview,
|
|
152
|
-
|
|
153
|
+
default54 as Drawer,
|
|
153
154
|
default16 as Dropdown,
|
|
154
155
|
default33 as EmptyState,
|
|
155
156
|
EnvelopeSimpleIcon,
|
|
156
|
-
|
|
157
|
+
default61 as FileButton,
|
|
157
158
|
FileTextIcon,
|
|
158
159
|
default9 as FiltersMultiSelect,
|
|
159
|
-
|
|
160
|
+
default89 as FontSizeController,
|
|
160
161
|
FunnelSimpleIcon,
|
|
161
162
|
GraduationCapIcon,
|
|
162
|
-
|
|
163
|
+
default79 as HeliipLoader,
|
|
163
164
|
I18nProvider,
|
|
164
|
-
|
|
165
|
-
|
|
165
|
+
default68 as ImpersonationDialog,
|
|
166
|
+
default67 as ImpersonationSwitcher,
|
|
166
167
|
default23 as InfoGrid,
|
|
167
168
|
default5 as Input,
|
|
168
169
|
KanbanIcon,
|
|
169
|
-
|
|
170
|
+
default72 as KnowledgeBase,
|
|
170
171
|
default29 as KpiCard,
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
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,
|
|
179
180
|
default4 as Map,
|
|
180
|
-
|
|
181
|
+
default84 as MarkdownEditor,
|
|
181
182
|
default26 as MediaCard,
|
|
182
183
|
default28 as MediaSelector,
|
|
183
184
|
default27 as MediaTile,
|
|
184
185
|
default34 as Money,
|
|
185
186
|
MonitorIcon,
|
|
186
187
|
MonthPopover,
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
188
|
+
default65 as MotionProvider,
|
|
189
|
+
default51 as MultiComboSelect,
|
|
190
|
+
default56 as NotificationsCenter,
|
|
191
|
+
default35 as Numeric,
|
|
192
|
+
default63 as OmniSearch,
|
|
191
193
|
OmniSearchRegistryProvider,
|
|
192
|
-
|
|
194
|
+
default41 as OrderButton,
|
|
193
195
|
default10 as PageScaffold,
|
|
194
|
-
|
|
196
|
+
default78 as PageTransition,
|
|
195
197
|
default22 as Pagination,
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
198
|
+
default43 as PasswordField,
|
|
199
|
+
default49 as ProductCatalog,
|
|
200
|
+
default50 as PromotionsCatalog,
|
|
201
|
+
default70 as QrCode,
|
|
202
|
+
default85 as QuoteEditor,
|
|
203
|
+
default46 as ReviewHistory,
|
|
202
204
|
ReviewHistoryDialog,
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
205
|
+
default48 as Reviews,
|
|
206
|
+
default42 as SearchInput,
|
|
207
|
+
default62 as SegmentedTabs,
|
|
206
208
|
default11 as Select,
|
|
207
|
-
|
|
208
|
-
|
|
209
|
+
default71 as ShareAccess,
|
|
210
|
+
default52 as Sidebar,
|
|
209
211
|
SortTh,
|
|
210
|
-
|
|
212
|
+
default77 as Steps,
|
|
211
213
|
StepsNav,
|
|
212
|
-
|
|
214
|
+
default60 as StorageUsage,
|
|
213
215
|
SuitcaseIcon,
|
|
214
216
|
default17 as Table,
|
|
215
217
|
default21 as TableRecordButton,
|
|
216
218
|
Td,
|
|
217
219
|
default6 as Textarea,
|
|
218
220
|
Th,
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
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,
|
|
227
229
|
ToastProvider,
|
|
228
|
-
|
|
229
|
-
|
|
230
|
+
default55 as Tooltip,
|
|
231
|
+
default69 as Tour,
|
|
230
232
|
default25 as UploadCard,
|
|
231
233
|
WeekPopover,
|
|
232
|
-
|
|
234
|
+
default87 as WordEditor,
|
|
233
235
|
WordPreview,
|
|
234
|
-
|
|
236
|
+
default44 as WorkflowDiagram,
|
|
235
237
|
WrenchIcon,
|
|
238
|
+
formatCurrencyValue,
|
|
239
|
+
formatNumericValue,
|
|
240
|
+
formatPercentValue,
|
|
236
241
|
generatePassword,
|
|
237
242
|
useCarousel,
|
|
238
243
|
useI18n,
|