Skip to content

Commit becb6a5

Browse files
committed
1.0.0
1 parent a05f4b1 commit becb6a5

15 files changed

+19
-27
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dashTextareaAutocomplete
22
Title: Dash component wrapper for `react-textarea-autocomplete`
3-
Version: 0.2.0
3+
Version: 1.0.0
44
Description: Dash component wrapper for `react-textarea-autocomplete`
55
Depends: R (>= 3.0.2)
66
Imports:

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "DashTextareaAutocomplete"
33
uuid = "1b08a953-4be3-4667-9a23-5aadec407a69"
44
authors = ["Etienne Tetreault-Pinard <[email protected]>"]
5-
version = "0.2.0"
5+
version = "1.0.0"
66

77
[deps]
88
Dash = "1b08a953-4be3-4667-9a23-3db579824955"

R/internal.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.dashTextareaAutocomplete_js_metadata <- function() {
22
deps_metadata <- list(`dash_textarea_autocomplete` = structure(list(name = "dash_textarea_autocomplete",
3-
version = "0.2.0", src = list(href = NULL,
3+
version = "1.0.0", src = list(href = NULL,
44
file = "deps"), meta = NULL,
55
script = 'dash_textarea_autocomplete.min.js',
66
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashTextareaAutocomplete",
77
all_files = FALSE), class = "html_dependency"),
88
`dash_textarea_autocomplete` = structure(list(name = "dash_textarea_autocomplete",
9-
version = "0.2.0", src = list(href = NULL,
9+
version = "1.0.0", src = list(href = NULL,
1010
file = "deps"), meta = NULL,
1111
script = 'dash_textarea_autocomplete.min.js.map',
1212
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashTextareaAutocomplete",

dash_textarea_autocomplete/DashTextareaAutocomplete.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,7 @@ class DashTextareaAutocomplete(Component):
2525
- listStyle (dict; optional): Style of the list wrapper (from `react-textarea-autocomplete`).
2626
- itemStyle (dict; optional): Styles of the items wrapper.
2727
- loaderStyle (dict; optional): Style of the loader wrapper (from `react-textarea-autocomplete`).
28-
- containerStyle (dict; default {
29-
marginTop: 20,
30-
width: 400,
31-
height: 100,
32-
margin: "20px auto"
33-
}): Styles of the textarea container (from `react-textarea-autocomplete`).
28+
- containerStyle (dict; optional): Styles of the textarea container (from `react-textarea-autocomplete`).
3429
- dropdownStyle (dict; optional): Styles of the dropdown wrapper."""
3530
@_explicitize_args
3631
def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, placeholder=Component.UNDEFINED, wordList=Component.REQUIRED, triggerChar=Component.UNDEFINED, minChar=Component.UNDEFINED, className=Component.UNDEFINED, containerClassName=Component.UNDEFINED, style=Component.UNDEFINED, listStyle=Component.UNDEFINED, itemStyle=Component.UNDEFINED, loaderStyle=Component.UNDEFINED, containerStyle=Component.UNDEFINED, dropdownStyle=Component.UNDEFINED, **kwargs):

dash_textarea_autocomplete/dash_textarea_autocomplete.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_textarea_autocomplete/dash_textarea_autocomplete.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_textarea_autocomplete/metadata.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,7 @@
108108
"name": "object"
109109
},
110110
"required": false,
111-
"description": "Styles of the textarea container (from `react-textarea-autocomplete`).",
112-
"defaultValue": {
113-
"value": "{\n marginTop: 20,\n width: 400,\n height: 100,\n margin: \"20px auto\"\n}",
114-
"computed": false
115-
}
111+
"description": "Styles of the textarea container (from `react-textarea-autocomplete`)."
116112
},
117113
"dropdownStyle": {
118114
"type": {

dash_textarea_autocomplete/package-info.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-textarea-autocomplete",
3-
"version": "0.2.0",
3+
"version": "1.0.0",
44
"description": "Dash component wrapper for `react-textarea-autocomplete`",
55
"bugs": {
66
"url": "https://github.com/etpinard/dash-textarea-autocomplete/issues"
@@ -11,6 +11,7 @@
1111
"start": "webpack-serve --config ./webpack.serve.config.js --open",
1212
"validate-init": "python _validate_init.py",
1313
"prepublishOnly": "npm run validate-init",
14+
"lint:js": "eslint src/lib/",
1415
"build:js": "webpack --mode production",
1516
"build:backends": "dash-generate-components ./src/lib/components dash_textarea_autocomplete -p package-info.json --r-prefix '' --jl-prefix ''",
1617
"build:backends-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:py_and_r)",

deps/dash_textarea_autocomplete.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deps/dash_textarea_autocomplete.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)