jclib-ui 1.0.45 → 1.0.47
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/alerta/JCAlert.consts.d.ts +3 -3
- package/dist/buttonTop/ButtonTop.d.ts +2 -2
- package/dist/index.d.ts +6 -0
- package/dist/inputColor/inputColor.d.ts +1 -0
- package/dist/inputs/Formats.d.ts +7 -7
- package/dist/jclib-ui.css +1 -1
- package/dist/jclib-ui.es.js +239 -238
- package/dist/jclib-ui.es.js.map +1 -1
- package/dist/jclib-ui.umd.js +9 -9
- package/dist/jclib-ui.umd.js.map +1 -1
- package/dist/navbar/NavbarColors.d.ts +51 -51
- package/package.json +4 -2
|
@@ -4,8 +4,8 @@ declare function ButtonTop({ smooth, center }: {
|
|
|
4
4
|
}): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
declare namespace ButtonTop {
|
|
6
6
|
namespace defaultProps {
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
let smooth: boolean;
|
|
8
|
+
let center: boolean;
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
11
|
export default ButtonTop;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
import 'bootstrap/dist/js/bootstrap.min.js';
|
|
2
|
+
import './styles/styles.colors.scss';
|
|
3
|
+
import './styles/styles.global.scss';
|
|
4
|
+
import './styles/styles.scrollbars.scss';
|
|
5
|
+
import './styles/styles.bootstrap.css';
|
|
6
|
+
import './styles/styles.animations.css';
|
|
1
7
|
export { default as Alerta, Aviso, Confirma } from './alerta/Alerta';
|
|
2
8
|
export { LibProvider, useLibContext } from './context/libContext';
|
|
3
9
|
export { createApiConfig } from './hooks/createApiConfig';
|
package/dist/inputs/Formats.d.ts
CHANGED
|
@@ -6,9 +6,9 @@ export function FormatValor({ value, money, decimalScale, ...rest }: {
|
|
|
6
6
|
}): import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export namespace FormatValor {
|
|
8
8
|
namespace defaultProps {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
let value: number;
|
|
10
|
+
let money: boolean;
|
|
11
|
+
let decimalScale: number;
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
export function FormatQuant({ value, decimalScale, ...rest }: {
|
|
@@ -18,9 +18,9 @@ export function FormatQuant({ value, decimalScale, ...rest }: {
|
|
|
18
18
|
}): import("react/jsx-runtime").JSX.Element;
|
|
19
19
|
export namespace FormatQuant {
|
|
20
20
|
export namespace defaultProps_1 {
|
|
21
|
-
|
|
21
|
+
let value_1: number;
|
|
22
22
|
export { value_1 as value };
|
|
23
|
-
|
|
23
|
+
let decimalScale_1: number;
|
|
24
24
|
export { decimalScale_1 as decimalScale };
|
|
25
25
|
}
|
|
26
26
|
export { defaultProps_1 as defaultProps };
|
|
@@ -32,9 +32,9 @@ export function FormatPercent({ value, decimalScale, ...rest }: {
|
|
|
32
32
|
}): import("react/jsx-runtime").JSX.Element;
|
|
33
33
|
export namespace FormatPercent {
|
|
34
34
|
export namespace defaultProps_2 {
|
|
35
|
-
|
|
35
|
+
let value_2: number;
|
|
36
36
|
export { value_2 as value };
|
|
37
|
-
|
|
37
|
+
let decimalScale_2: number;
|
|
38
38
|
export { decimalScale_2 as decimalScale };
|
|
39
39
|
}
|
|
40
40
|
export { defaultProps_2 as defaultProps };
|