Daniel Flaum

Results 14 issues of Daniel Flaum

**Is your feature request related to a problem? Please describe.** Text shapes can only use integer values of pixels for text sizes. This makes fine-tuning text sizes impossible. ![image](https://user-images.githubusercontent.com/11306526/159095355-201e4a49-d80d-407c-920e-39131746fbe5.png) **Describe...

feature

Here's what the dialog looks like in v20.4.2 build 691: ![image](https://user-images.githubusercontent.com/11306526/78836512-d8b5f180-79b7-11ea-9db1-3aec17a5b36a.png) You can see that there are two notes named "content". The names are context-dependent, and the context is provided...

Type: Feature
Importance: Medium
Effort: High

TypeDoc currently includes the content of `README.md` in the generated `index.html`. It would be useful if `README.md`s in subdirectories also caused corresponding pages to be generated. Doing so would add...

enhancement

I'm trying to get started with Golden Layout while using TypeScript, but the tutorials and documentation don't talk about it at all. My best attempt at just getting started by...

I'm new to tree-sitter, and I've written a grammar that generates, parses, and highlights just fine. But when I try to use my grammar from another project... ```javascript // program.js...

In this example, rules are defined in a nested tree structure. ```javascript module.exports = grammar({ name: 'igrph', rules: { graphic: $ => repeat1($._command), _command: { _self: $ => choice( //...

The [`AbstractResourceEntityRepresentation` class](https://github.com/omeka/omeka-s/blob/09b9a68c11bc764bba40608c73a353ee95058134/application/src/Api/Representation/AbstractResourceEntityRepresentation.php) offers the [`linkPretty()` method](https://github.com/omeka/omeka-s/blob/09b9a68c11bc764bba40608c73a353ee95058134/application/src/Api/Representation/AbstractResourceEntityRepresentation.php#L621) which prints a thumbnail representation of a resource together with link text. Currently, this method always adds a CSS class of `resource-link` to...

feature

The [`PageTitle` helper](https://github.com/omeka/omeka-s/blob/e9203959333fdff1fcf6dd9bfa38298ab717a246/application/src/View/Helper/PageTitle.php) currently takes four arguments: 1. The text of the page title 2. The header level to be used in the output 3. Optional text for a subhead...

feature

This PR adds arguments to the [`PageTitle helper`](https://github.com/omeka/omeka-s/blob/e9203959333fdff1fcf6dd9bfa38298ab717a246/application/src/View/Helper/PageTitle.php) as proposed at #1827. PHP isn't my forte, so I apologize in advance if I have failed to adhere to any guidelines....

We have the `resize` event for tab nodes that is called _before_ the tab is rendered with the new size. But what about after? What I need is for my...