Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into benelan/9684-slider-fl…
Browse files Browse the repository at this point in the history
…oating-point-issue

* origin/dev:
  build(deps): update nrwl monorepo to v19.6.2 (#10151)
  docs: update component READMEs (#10103)
  feat(dialog): add resizable and dragEnabled properties (#9804)
  refactor(themed): tidy up types (#10166)
  chore(segmented-control): remove empty and irrelevant `describe` block (#10157)
  • Loading branch information
benelan committed Aug 27, 2024
2 parents aa2ee31 + eb0cecb commit a5f8c85
Showing 21 changed files with 840 additions and 239 deletions.
34 changes: 24 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -135,8 +135,8 @@
"patch-package": "8.0.0"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "19.5.7",
"@nx/nx-darwin-arm64": "19.6.2",
"@nx/nx-linux-x64-gnu": "18.3.5",
"@nx/nx-win32-x64-msvc": "19.5.7"
"@nx/nx-win32-x64-msvc": "19.6.2"
}
}
1 change: 1 addition & 0 deletions packages/calcite-components/package.json
Original file line number Diff line number Diff line change
@@ -69,6 +69,7 @@
"composed-offset-position": "0.0.6",
"dayjs": "1.11.12",
"focus-trap": "7.5.4",
"interactjs": "1.10.27",
"lodash-es": "4.17.21",
"sortablejs": "1.15.1",
"timezone-groups": "0.9.1",
116 changes: 16 additions & 100 deletions packages/calcite-components/src/components.d.ts

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions packages/calcite-components/src/components/alert/readme.md
Original file line number Diff line number Diff line change
@@ -18,6 +18,7 @@ For comprehensive guidance on using and implementing `calcite-alert`, refer to t
| `numberingSystem` | `numbering-system` | Specifies the Unicode numeral system used by the component for localization. | `"arab" \| "arabext" \| "latn"` | `undefined` |
| `open` | `open` | When `true`, displays and positions the component. | `boolean` | `false` |
| `placement` | `placement` | Specifies the placement of the component. | `"bottom" \| "bottom-end" \| "bottom-start" \| "top" \| "top-end" \| "top-start"` | `"bottom"` |
| `queue` | `queue` | Specifies the ordering priority of the component when opened. | `"immediate" \| "last" \| "next"` | `"last"` |
| `scale` | `scale` | Specifies the size of the component. | `"l" \| "m" \| "s"` | `"m"` |

## Events
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"close": "Close"
"close": "Close",
"resizeEnabled": "Resize enabled. Use the shift and arrow keys to resize the dialog.",
"dragEnabled": "Drag enabled. Use the arrow keys to move the dialog."
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"close": "Close"
"close": "Close",
"resizeEnabled": "Resize enabled. Use the shift and arrow keys to resize the dialog.",
"dragEnabled": "Drag enabled. Use the arrow keys to move the dialog."
}
Loading

0 comments on commit a5f8c85

Please sign in to comment.