@brandup/ui-textbox 1.0.14 → 1.0.18
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/package.json
CHANGED
|
@@ -21,18 +21,19 @@
|
|
|
21
21
|
"email": "it@brandup.online"
|
|
22
22
|
},
|
|
23
23
|
"license": "Apache-2.0",
|
|
24
|
-
"version": "1.0.
|
|
24
|
+
"version": "1.0.18",
|
|
25
25
|
"main": "source/index.ts",
|
|
26
26
|
"types": "source/index.ts",
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@brandup/ui": "^1.0.32",
|
|
29
29
|
"@brandup/ui-dom": "^1.0.32",
|
|
30
30
|
"@brandup/ui-helpers": "^1.0.32",
|
|
31
|
-
"@brandup/ui-input": "^1.0.
|
|
32
|
-
"@brandup/ui-kit": "^1.0.
|
|
31
|
+
"@brandup/ui-input": "^1.0.18",
|
|
32
|
+
"@brandup/ui-kit": "^1.0.18"
|
|
33
33
|
},
|
|
34
34
|
"files": [
|
|
35
35
|
"source",
|
|
36
|
+
"svg",
|
|
36
37
|
"README.md"
|
|
37
38
|
]
|
|
38
39
|
}
|
package/source/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { default } from './textbox'
|
package/source/textbox.ts
CHANGED
|
@@ -4,8 +4,8 @@ import { InputControl } from "@brandup/ui-input";
|
|
|
4
4
|
import { IS_TOUCH_DEVICE } from "@brandup/ui-kit";
|
|
5
5
|
import { DOM } from "@brandup/ui-dom";
|
|
6
6
|
import { FuncHelper } from "@brandup/ui-helpers";
|
|
7
|
-
import copyIcon from "
|
|
8
|
-
import doneIcon from "
|
|
7
|
+
import copyIcon from "../svg/copy.svg";
|
|
8
|
+
import doneIcon from "../svg/tick.svg";
|
|
9
9
|
|
|
10
10
|
export const ROOT_CLASS = "ui-textbox";
|
|
11
11
|
export const INPUT_CLASS = "textbox-input";
|
|
File without changes
|
|
File without changes
|