Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] refactor content to focus on React usage #2574

Merged
merged 68 commits into from
Jun 18, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
68 commits
Select commit Hold shift + click to select a range
84b24ed
Button: collapse css examples
Jun 3, 2018
88d7eef
Callout + intent docs
Jun 3, 2018
7c84f9b
Progress bar
Jun 3, 2018
a97ed98
Skeleton, Spinner , Table
Jun 3, 2018
ade11f7
add new buttons example
Jun 3, 2018
81ae9ad
breadcrumbs docs
Jun 6, 2018
e32f5a3
button groups docs
Jun 6, 2018
56bdc97
card docs
Jun 6, 2018
c7eae76
collapse docs
Jun 6, 2018
c10b97d
collapsible list docs
Jun 6, 2018
8895038
editable text docs
Jun 6, 2018
9d3c39a
more collapsible list
Jun 6, 2018
ae43f5e
more card
Jun 6, 2018
7e378a7
remove button group code block
Jun 6, 2018
efb12d7
comments
Jun 6, 2018
42f4698
navbar docs
Jun 6, 2018
485f01d
hotkeys docs
Jun 6, 2018
f0fcefb
icon docs
Jun 6, 2018
3a45a6b
menu docs
Jun 6, 2018
54b08e9
alert docs
Jun 7, 2018
250e96f
fix collapsible separators
Jun 7, 2018
62a1a74
context menu docs
Jun 7, 2018
b81708a
dialog docs
Jun 7, 2018
6b543e4
editable text fixes
Jun 7, 2018
ad47dc0
label docs
Jun 7, 2018
5c9a9b2
navbar docs
Jun 7, 2018
291fc00
non ideal state docs
Jun 7, 2018
d343b19
add props heading to overflow list
Jun 7, 2018
3d9bde3
overlay docs
Jun 7, 2018
a783fff
popover docs
Jun 7, 2018
de75a53
portal docs
Jun 7, 2018
5110042
tabs docs
Jun 7, 2018
24048ec
tag docs
Jun 7, 2018
7cbe942
text docs
Jun 7, 2018
cfd897a
toast docs
Jun 7, 2018
4674b0f
tooltip docs
Jun 7, 2018
150ff2a
tree docs
Jun 7, 2018
a7149f7
context menu usage
Jun 7, 2018
d2864dc
wrong tick
Jun 7, 2018
010deea
CSS -> Style
Jun 7, 2018
9eee697
move portal props down
Jun 8, 2018
d7a2ea9
tabs props
Jun 8, 2018
8fc3962
text update
Jun 8, 2018
700573a
merge minimal tag CSS docs
Jun 8, 2018
4e2cf4a
Merge branch 'develop' into gg/docs-rewrite
giladgray Jun 8, 2018
e53a8c1
Merge branch 'develop' of github.com:palantir/blueprint into gg/docs-…
Jun 13, 2018
bf7ab8b
card polish
Jun 13, 2018
2e30276
CollapsibleList polish
Jun 13, 2018
350495b
EditableText polish
Jun 13, 2018
433bd8a
Icon polish
Jun 13, 2018
19323a1
Menu polish
Jun 13, 2018
7a441ca
Spinner polish
Jun 13, 2018
5f97289
Navbar polish
Jun 13, 2018
f638e8c
NIS polish
Jun 13, 2018
e973f94
Progress Bar, Table HTML, Tag, Tree polish
Jun 13, 2018
7445031
Spinner polish (remove CSS)
Jun 13, 2018
31577f2
Tabs polish
Jun 13, 2018
e604814
all Overlays polish
Jun 13, 2018
e346900
singular component page titles
Jun 13, 2018
c930adb
[docs] improve button-group docs (#2594)
giladgray Jun 13, 2018
ff3686e
[docs] refactor datetime docs to focus on React usage (#2596)
giladgray Jun 18, 2018
9a72afd
[docs] refactor forms docs (#2600)
giladgray Jun 18, 2018
49efb7e
Merge branch 'develop' of github.com:palantir/blueprint into gg/docs-…
Jun 18, 2018
52e4f3c
edits
Jun 18, 2018
4b89911
tag-input add note about newlines, wrap lines
Jun 18, 2018
156b9b8
FileInput docs
Jun 18, 2018
2912c95
checkbox etc docs
Jun 18, 2018
094af73
resolve forms nav: Form controls & Form inputs sections
Jun 18, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
edits
  • Loading branch information
Gilad Gray committed Jun 18, 2018
commit 52e4f3c33f324a0173e9a4714d57ce65af0d331d
4 changes: 2 additions & 2 deletions packages/core/src/components/context-menu/context-menu.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@# Context menu

Context menus present the user with a list of actions upon right-click.
Context menus present the user with a list of actions upon a right-click.

You can create context menus in either of the following ways:

Expand Down Expand Up @@ -71,7 +71,7 @@ for programmatically triggered menus or for non-React apps.
Show the given element at the given offset from the top-left corner of the
viewport. Showing a menu closes the previously shown one automatically. The
menu appears below-right of this point, but will flip to below-left instead if
there is not enough room onscreen. The optional callback is invoked when this
there is not enough room on-screen. The optional callback is invoked when this
menu closes.

- `ContextMenu.hide(): void`
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/components/editable-text/editable-text.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ and adjusts _vertically_ based on length of text. Use the `minLines` and
<EditableText multiline={true} minLines={3} maxLines={12} {...props} />
```

Users confirm text in multiline mode by pressing `ctrl` `enter` or `cmd` `enter`
Users confirm text in multiline mode by pressing `ctrl`+`enter` or `cmd`+`enter`
rather than simply `enter`. (Pressing the `enter` key by itself moves the cursor
to the next line.) This behavior can be inverted with the `confirmOnEnterKey`
prop.
Expand All @@ -49,7 +49,7 @@ respectively. Use `onChange` to listen to ongoing updates and use `onConfirm`
and `onCancel` to listen only to completed or canceled edits.

The `onConfirm` and `onCancel` callbacks are invoked based on user interaction.
The user presses `enter` (or `cmd` `enter` when multiline) or blurs the input to
The user presses `enter` (or `cmd`+`enter` when multiline) or blurs the input to
confirm the current value, or presses `esc` to cancel. Canceling resets the
field to the last confirmed value. Neither callback is invoked if the value is
unchanged.
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/popover/popover.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ The following example demonstrates the various interaction kinds (note: these Po
@### Closing on click

To enable click-to-close behavior on an element inside a popover, simply add the
class `Classes.POPOVER_DISMISS` to that element. For example, the "Dismiss"
class `Classes.POPOVER_DISMISS` to that element. For example, the **Dismiss**
button in the top-level [Popover example](#core/components/popover) has this
class. To enable this behavior on the entire popover, pass the
`popoverClassName={Classes.POPOVER_DISMISS}` prop.
Expand Down