bmi-next-brokers 2.4.8 → 2.5.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/assets/index3.css +1 -1
- package/dist/components/progressBar/index.d.ts +3 -1
- package/dist/components/progressBar/index.js +11 -7
- package/dist/icons/Icon.js +1 -1
- package/dist/icons/components/Android.d.ts +3 -0
- package/dist/icons/components/Android.js +39 -0
- package/dist/icons/components/Apple.d.ts +3 -0
- package/dist/icons/components/Apple.js +22 -0
- package/dist/icons/components/index.d.ts +2 -0
- package/dist/icons/components/index.js +294 -290
- package/dist/icons/index.d.ts +2 -0
- package/dist/icons/index.js +372 -368
- package/dist/index-CBQL1aOI.js +402 -0
- package/package.json +1 -1
- package/dist/index-DB9HIsOb.js +0 -398
package/dist/assets/index3.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._progressContainer_159wp_1{width:100%;display:flex;flex-direction:row;height:5px;background:var( --Complementarios-Turquesa-Compl-2-Variantes-Turquesa-V4, #c9f3f7 );overflow:hidden}._progressContainer_159wp_1._rounded_159wp_13{border-radius:30px}._progressFill_159wp_17{height:100%;transition:width .3s ease-in-out}._progressFill_159wp_17._rounded_159wp_13{border-radius:9px}
|
|
@@ -5,6 +5,7 @@ import { default as React } from 'react';
|
|
|
5
5
|
interface ProgressBarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
6
6
|
progressPercent: number;
|
|
7
7
|
rounded?: boolean;
|
|
8
|
+
progressFill?: string;
|
|
8
9
|
}
|
|
9
10
|
/**
|
|
10
11
|
* Componente `ProgressBar`
|
|
@@ -15,6 +16,7 @@ interface ProgressBarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
15
16
|
*
|
|
16
17
|
* @param progressPercent - Porcentaje de progreso (entre 0 y 100).
|
|
17
18
|
* @param rounded - (Opcional) Aplica bordes redondeados al relleno. Por defecto false
|
|
19
|
+
* @param progressFill - (Opcional) Color de fondo del fill
|
|
18
20
|
* @param className - (Opcional) Clase CSS adicional para el contenedor principal.
|
|
19
21
|
*
|
|
20
22
|
* @example
|
|
@@ -33,5 +35,5 @@ interface ProgressBarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
33
35
|
* }
|
|
34
36
|
* ```
|
|
35
37
|
*/
|
|
36
|
-
export declare const ProgressBar: ({ progressPercent, className, rounded, ...props }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;
|
|
38
|
+
export declare const ProgressBar: ({ progressPercent, className, rounded, progressFill, ...props }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;
|
|
37
39
|
export {};
|
|
@@ -1,27 +1,31 @@
|
|
|
1
1
|
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import '../../assets/index3.css';const i = "
|
|
2
|
+
import '../../assets/index3.css';const i = "_progressContainer_159wp_1", l = "_rounded_159wp_13", p = "_progressFill_159wp_17", r = {
|
|
3
3
|
progressContainer: i,
|
|
4
4
|
rounded: l,
|
|
5
|
-
progressFill:
|
|
6
|
-
},
|
|
5
|
+
progressFill: p
|
|
6
|
+
}, g = ({
|
|
7
7
|
progressPercent: n,
|
|
8
8
|
className: s,
|
|
9
9
|
rounded: o = !1,
|
|
10
|
-
|
|
10
|
+
progressFill: t = "#45c2d6",
|
|
11
|
+
...d
|
|
11
12
|
}) => /* @__PURE__ */ e(
|
|
12
13
|
"div",
|
|
13
14
|
{
|
|
14
15
|
className: `${r.progressContainer} ${o && r.rounded} ${s && s}`,
|
|
15
|
-
...
|
|
16
|
+
...d,
|
|
16
17
|
children: /* @__PURE__ */ e(
|
|
17
18
|
"div",
|
|
18
19
|
{
|
|
19
20
|
className: `${r.progressFill} ${o && r.rounded}`,
|
|
20
|
-
style: {
|
|
21
|
+
style: {
|
|
22
|
+
backgroundColor: t,
|
|
23
|
+
width: `${Math.min(n, 100)}%`
|
|
24
|
+
}
|
|
21
25
|
}
|
|
22
26
|
)
|
|
23
27
|
}
|
|
24
28
|
);
|
|
25
29
|
export {
|
|
26
|
-
|
|
30
|
+
g as ProgressBar
|
|
27
31
|
};
|
package/dist/icons/Icon.js
CHANGED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { jsxs as l, jsx as a } from "react/jsx-runtime";
|
|
2
|
+
const s = (e) => /* @__PURE__ */ l(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 20 20",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...e,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ a(
|
|
13
|
+
"mask",
|
|
14
|
+
{
|
|
15
|
+
id: "android_svg__a",
|
|
16
|
+
width: 20,
|
|
17
|
+
height: 20,
|
|
18
|
+
x: 0,
|
|
19
|
+
y: 0,
|
|
20
|
+
maskUnits: "userSpaceOnUse",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: "alpha"
|
|
23
|
+
},
|
|
24
|
+
children: /* @__PURE__ */ a("path", { fill: "currentColor", d: "M0 0h20v20H0z" })
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ a("g", { mask: "url(#android_svg__a)", children: /* @__PURE__ */ a(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
d: "M4.167 9.167v-.834q0-1.5.677-2.74a5.8 5.8 0 0 1 1.823-2.03L5.104 2l.73-.75 1.77 1.77a5.7 5.7 0 0 1 1.157-.385 5.74 5.74 0 0 1 3.635.386l1.771-1.771.73.75-1.563 1.563a5.8 5.8 0 0 1 1.823 2.03q.677 1.24.677 2.74v.834zm8.927-1.907q.24-.24.24-.593a.8.8 0 0 0-.24-.594.8.8 0 0 0-.594-.24.8.8 0 0 0-.593.24.8.8 0 0 0-.24.594q0 .354.24.593.24.24.593.24.354 0 .594-.24m-5 0q.24-.24.24-.593a.8.8 0 0 0-.24-.594.8.8 0 0 0-.594-.24.8.8 0 0 0-.593.24.8.8 0 0 0-.24.594q0 .354.24.593.24.24.593.24.354 0 .594-.24M5.864 17.47q-1.697-1.698-1.697-4.136V10h11.667v3.333q0 2.438-1.698 4.136T10 19.167t-4.135-1.698"
|
|
32
|
+
}
|
|
33
|
+
) })
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
);
|
|
37
|
+
export {
|
|
38
|
+
s as default
|
|
39
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx as c } from "react/jsx-runtime";
|
|
2
|
+
const a = (e) => /* @__PURE__ */ c(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 20 18",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...e,
|
|
11
|
+
children: /* @__PURE__ */ c(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
d: "M12.45 3.893c.315-.327.556-.707.707-1.117.152-.411.212-.844.177-1.276-.968.07-1.865.48-2.5 1.14a3.1 3.1 0 0 0-.678 1.083A2.8 2.8 0 0 0 10 4.957c.472.004.938-.09 1.363-.275a3 3 0 0 0 1.087-.79m2.1 5.58a3.13 3.13 0 0 1 .489-1.64c.315-.5.766-.919 1.311-1.218a3.8 3.8 0 0 0-1.328-1.074 4.2 4.2 0 0 0-1.722-.426c-1.3-.12-2.5.683-3.191.683-.692 0-1.667-.668-2.75-.653a4.44 4.44 0 0 0-2.003.54c-.605.332-1.104.8-1.447 1.358C2.442 9.338 3.534 12.75 5 14.603c.667.907 1.5 1.935 2.6 1.897s1.459-.615 2.734-.615 1.666.615 2.75.592c1.083-.022 1.85-.93 2.55-1.837a8 8 0 0 0 1.15-2.138 3.6 3.6 0 0 1-1.621-1.213 3.08 3.08 0 0 1-.613-1.816"
|
|
16
|
+
}
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
export {
|
|
21
|
+
a as default
|
|
22
|
+
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as Apple } from './Apple';
|
|
1
2
|
export { default as ArrowDown } from './ArrowDown';
|
|
2
3
|
export { default as ArrowUp } from './ArrowUp';
|
|
3
4
|
export { default as Colombia } from './Colombia';
|
|
@@ -15,6 +16,7 @@ export { default as AdminMeds } from './AdminMeds';
|
|
|
15
16
|
export { default as AlertIcon } from './AlertIcon';
|
|
16
17
|
export { default as AmericanExpress } from './AmericanExpress';
|
|
17
18
|
export { default as AmericanExpressRounded } from './AmericanExpressRounded';
|
|
19
|
+
export { default as Android } from './Android';
|
|
18
20
|
export { default as Apagar } from './Apagar';
|
|
19
21
|
export { default as Apnfd } from './Apnfd';
|
|
20
22
|
export { default as Approve } from './Approve';
|