Skip to content

Commit a040c11

Browse files
committed
Improved ScrollView actions.
1 parent 50140a4 commit a040c11

File tree

32 files changed

+179
-115
lines changed

32 files changed

+179
-115
lines changed

dev-scripts.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ npm install node-sass --save-dev
66
-effects-
77
package.json >
88
"scripts": {
9-
"compile:sass": "node-sass src/lib/scss/stylesheet/main.scss src/lib/dist/react-windows-ui.css",
9+
"compile:sass": "node-sass src/lib/scss/main.scss src/lib/dist/react-windows-ui.min.css --output-style compressed",
1010
},
1111

1212
--compile--

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"compile:sass": "node-sass src/lib/scss/main.scss src/lib/dist/react-windows-ui.min.css --output-style compressed",
4444
"compile:sass-rtl": "node-sass src/lib/scss/stylesheet-rtl/main.scss src/lib/dist/react-windows-ui-rtl.min.css --output-style compressed",
4545
"predeploy": "npm run build",
46-
"deploy": "gh-pages -d build",
46+
"deploy": "gh-pages -d build -r https://github.com/virtualvivek/react-windows-ui",
4747
"eject": "react-scripts eject"
4848
},
4949
"eslintConfig": {

src/demo/v4.2.4/docs/Alert_docs/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ class AlertDocs extends React.Component {
5959
</div> */}
6060

6161
<Alert
62+
backdropBlur
6263
isVisible={this.state.showAlert}
6364
onBackdropPress={this.toggleAlert}
6465
title="Alert"

src/demo/v4.2.4/docs/Alert_docs/props-view.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@ const PropsView = () => {
6161
<td>default</td>
6262
<td>Set's alert close using ref.</td>
6363
</tr>
64+
<tr>
65+
<td><p className="ui-code">backdropBlur</p></td>
66+
<td>boolean</td>
67+
<td>false</td>
68+
<td>Set's alert backdrop blur.</td>
69+
</tr>
6470
<tr>
6571
<td><p className="ui-code">onBackdropPress</p></td>
6672
<td>function</td>

src/demo/v4.2.4/docs/Dialog_docs/props-view.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ const PropsView = () => {
5555
<td>default</td>
5656
<td>Set's dialog close using ref.</td>
5757
</tr>
58+
<tr>
59+
<td><p className="ui-code">backdropBlur</p></td>
60+
<td>boolean</td>
61+
<td>false</td>
62+
<td>Set's dialog backdrop blur.</td>
63+
</tr>
5864
<tr>
5965
<td><p className="ui-code">onBackdropPress</p></td>
6066
<td>function</td>

src/demo/v4.2.4/docs/InputGroup_docs/codes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const ExampleUsageCode =
7878
7979
const _onChange = (value) => {
8080
setInputVal(value);
81-
inputRef.current.value; // You can also fetch value this way.
81+
// inputRef.current.value; // You can also fetch value this way.
8282
}
8383
8484
return (

src/demo/v4.2.4/docs/InputGroup_docs/index.js

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,14 @@ const InputGroupDocs = () => {
3737
/>
3838
<span>&nbsp;&nbsp; Edit Text.</span>
3939
<br/><br/>
40-
<details>
41-
<summary>Example Usage</summary>
42-
<SyntaxHighlighter
43-
language="javascript"
44-
style={vscDarkPlus}
45-
className="code code-container">
46-
{ExampleUsageCode}
47-
</SyntaxHighlighter>
48-
</details>
40+
41+
<SyntaxHighlighter
42+
language="javascript"
43+
style={vscDarkPlus}
44+
className="code code-container">
45+
{ExampleUsageCode}
46+
</SyntaxHighlighter>
47+
4948

5049
<h1>InputText</h1>
5150
<h2>Import</h2>

src/demo/v4.2.4/docs/InputGroup_docs/props-textarea.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ const TextAreaProps = () => {
6464
<tr>
6565
<td><p className="ui-code">onChange</p></td>
6666
<td>function</td>
67-
<td>[ ]</td>
67+
<td>default</td>
6868
<td>Set's TextArea on Change listener.</td>
6969
</tr>
7070
<tr>
7171
<td><p className="ui-code">onResize</p></td>
7272
<td>function</td>
73-
<td>[ ]</td>
73+
<td>default</td>
7474
<td>Set's TextArea on Resize listener.</td>
7575
</tr>
7676
<tr>

src/demo/v4.2.4/docs/InputGroup_docs/props-view.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const PropsView = () => {
8888
<tr>
8989
<td><p className="ui-code">onFocus</p></td>
9090
<td>function</td>
91-
<td>[ ]</td>
91+
<td>default</td>
9292
<td>Set's Input onFocus event listener.</td>
9393
</tr>
9494
<tr>
@@ -100,31 +100,31 @@ const PropsView = () => {
100100
<tr>
101101
<td><p className="ui-code">onChange</p></td>
102102
<td>function</td>
103-
<td>[ ]</td>
103+
<td>default</td>
104104
<td>Set's Input on Change listener.</td>
105105
</tr>
106106
<tr>
107107
<td><p className="ui-code">onClick</p></td>
108108
<td>function</td>
109-
<td>[ ]</td>
109+
<td>default</td>
110110
<td>Set's Input on Click listener.</td>
111111
</tr>
112112
<tr>
113113
<td><p className="ui-code">onKeyUp</p></td>
114114
<td>function</td>
115-
<td>[ ]</td>
115+
<td>default</td>
116116
<td>Set's Input on KeyUp listener.</td>
117117
</tr>
118118
<tr>
119119
<td><p className="ui-code">onKeyDown</p></td>
120120
<td>function</td>
121-
<td>[ ]</td>
121+
<td>default</td>
122122
<td>Set's Input on KeyDown listener.</td>
123123
</tr>
124124
<tr>
125125
<td><p className="ui-code">onClearButtonClick</p></td>
126126
<td>function</td>
127-
<td>[ ]</td>
127+
<td>default</td>
128128
<td>Set's Input onClearButtonClick listener.</td>
129129
</tr>
130130
</tbody>

src/demo/v4.2.4/docs/InputSearch_docs/props-view.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,31 +52,31 @@ const PropsView = () => {
5252
<tr>
5353
<td><p className="ui-code">onClick</p></td>
5454
<td>function</td>
55-
<td>[ ]</td>
55+
<td>default</td>
5656
<td>onClick listener</td>
5757
</tr>
5858
<tr>
5959
<td><p className="ui-code">onChange</p></td>
6060
<td>function</td>
61-
<td>[ ]</td>
61+
<td>default</td>
6262
<td>onChange listener</td>
6363
</tr>
6464
<tr>
6565
<td><p className="ui-code">onKeyUp</p></td>
6666
<td>function</td>
67-
<td>[ ]</td>
67+
<td>default</td>
6868
<td>onKeyUp listener</td>
6969
</tr>
7070
<tr>
7171
<td><p className="ui-code">onKeyDown</p></td>
7272
<td>function</td>
73-
<td>[ ]</td>
73+
<td>default</td>
7474
<td>onKeyDown listener</td>
7575
</tr>
7676
<tr>
7777
<td><p className="ui-code">onSubmit</p></td>
7878
<td>function</td>
79-
<td>[ ]</td>
79+
<td>default</td>
8080
<td>onSubmit listener | For InputSearchBar</td>
8181
</tr>
8282
<tr>
@@ -111,7 +111,7 @@ const PropsView = () => {
111111
<tr>
112112
<td><p className="ui-code">data ▶ onClick</p></td>
113113
<td>function</td>
114-
<td>null</td>
114+
<td>default</td>
115115
<td>Set's Search data item onClick</td>
116116
</tr>
117117
</tbody>

0 commit comments

Comments
 (0)