siam-ui-utils 3.0.9 → 3.0.11
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/copy-link/index.js +1 -1
- package/dist/custom-input/CustomInputCheckbox.js +1 -1
- package/dist/custom-input/CustomInputFile.js +1 -1
- package/dist/custom-input/CustomInputRadio.js +1 -1
- package/dist/custom-input/index.js +1 -0
- package/dist/custom-input/index.js.map +1 -1
- package/dist/custom-input/multi-select/index.js +1 -1
- package/dist/dropzone-uploader/index.js +3 -3
- package/dist/timer/index.js +1 -1
- package/dist/view-layout/button-editor.js +1 -1
- package/dist/view-layout/editor-layer.js +1 -1
- package/dist/view-layout/index.js +1 -1
- package/package.json +5 -1
package/dist/copy-link/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsxs, jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { useState } from "react";
|
|
3
3
|
import { Button } from "reactstrap";
|
|
4
4
|
import copiarIcon from "../assets/img/copiar.png.js";
|
|
5
|
-
|
|
5
|
+
import "./styles.css";
|
|
6
6
|
const copyToClipboard = async (text) => {
|
|
7
7
|
try {
|
|
8
8
|
if (!text) return false;
|
|
@@ -2,7 +2,7 @@ import { jsxs, jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { useState } from "react";
|
|
3
3
|
import { FormGroup, Label, Input } from "reactstrap";
|
|
4
4
|
import { MENSAJE } from "./constant.js";
|
|
5
|
-
|
|
5
|
+
import "./index.css";
|
|
6
6
|
const CustomInputFile = ({
|
|
7
7
|
accept,
|
|
8
8
|
className = "",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|
|
@@ -4,7 +4,7 @@ import { MultiSelect as je } from "../../node_modules/react-multi-select-compone
|
|
|
4
4
|
import { Row, Col } from "reactstrap";
|
|
5
5
|
import BadgeLabelMultiSelect from "./badge-label-multi-select.js";
|
|
6
6
|
import { BadgeWrapper, ClickableBadge } from "./styled-component.js";
|
|
7
|
-
|
|
7
|
+
import "./index.css";
|
|
8
8
|
const CustomMultiSelect = ({
|
|
9
9
|
lista = [],
|
|
10
10
|
onListaUpdate = () => {
|
|
@@ -2,10 +2,10 @@ import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
|
2
2
|
import { getDroppedOrSelectedFiles } from "html5-file-selector";
|
|
3
3
|
import { useState, useEffect } from "react";
|
|
4
4
|
import Dropzone from "../dropzone/Dropzone.js";
|
|
5
|
-
|
|
6
|
-
import
|
|
5
|
+
import "./dropzone-uploader.css";
|
|
6
|
+
import "./dropzone-uploader.css";
|
|
7
7
|
import { IconButtonSvg as _t } from "../iconos/icon-button-svg.js";
|
|
8
|
-
|
|
8
|
+
import { pdfImage } from "../iconos/constants-svg.js";
|
|
9
9
|
const maxSize = 7;
|
|
10
10
|
const DropzoneUploader = ({
|
|
11
11
|
onChangeFiles,
|
package/dist/timer/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import SlotWrapper from "./slot-wrapper.js";
|
|
|
4
4
|
import EditorLayer from "./editor-layer.js";
|
|
5
5
|
import { GRID_SIZES, LOCALHOST } from "./constants.js";
|
|
6
6
|
import ButtonEditor from "./button-editor.js";
|
|
7
|
-
|
|
7
|
+
import "./styles.css";
|
|
8
8
|
const ViewLayout = ({
|
|
9
9
|
slots = [],
|
|
10
10
|
size = "md",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "siam-ui-utils",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.11",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"ampf-react",
|
|
6
6
|
"ampf-utils",
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
"description": "Conjunto de librerias de componentes utiles para AMPF",
|
|
12
12
|
"type": "module",
|
|
13
13
|
"types": "./index.d.ts",
|
|
14
|
+
"sideEffects": [
|
|
15
|
+
"**/*.css",
|
|
16
|
+
"**/*.scss"
|
|
17
|
+
],
|
|
14
18
|
"exports": {
|
|
15
19
|
".": {
|
|
16
20
|
"import": "./dist/index.js",
|