Skip to content

Commit

Permalink
package 14.11.24
Browse files Browse the repository at this point in the history
  • Loading branch information
nlujjawal committed Nov 14, 2024
1 parent af77064 commit fb1f105
Show file tree
Hide file tree
Showing 16 changed files with 11,546 additions and 11,494 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.36.5](https://github.com/ajaxorg/ace/compare/v1.36.4...v1.36.5) (2024-11-14)


### Features

* exposing getter setter for widget manager created using line widgets ([#5673](https://github.com/ajaxorg/ace/issues/5673)) ([f5d0c19](https://github.com/ajaxorg/ace/commit/f5d0c196c69d06a9dda1bdeb379fa20ecbf75590))


### Bug Fixes

* vue-directives regex bug ([#5671](https://github.com/ajaxorg/ace/issues/5671)) ([5e1e524](https://github.com/ajaxorg/ace/commit/5e1e524d7ef04e13291b5a979fb4166e973e61f0))

### [1.36.4](https://github.com/ajaxorg/ace/compare/v1.36.3...v1.36.4) (2024-11-04)


Expand Down
24 changes: 23 additions & 1 deletion ace.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ export namespace Ace {
name?: string;
};
};

widgetManager:WidgetManager;
// TODO: define BackgroundTokenizer

on(name: 'changeFold',
Expand Down Expand Up @@ -1108,6 +1108,28 @@ export namespace Ace {
tryShow(pos: Point, lineHeight: number, anchor: "top" | "bottom" | undefined, forceShow?: boolean): boolean;
goTo(where: AcePopupNavigation): void;
}

export interface LineWidget {
el: HTMLElement;
row: number;
rowCount?: number;
hidden: boolean;
editor: Editor,
session: EditSession,
column?: number;
className?: string,
coverGutter?: boolean,
pixelHeight?: number,
fixedWidth?: boolean,
fullWidth?: boolean,
screenWidth?: number,
}

export class WidgetManager {
constructor(session: EditSession);
addLineWidget(w: LineWidget): LineWidget;
removeLineWidget(w: LineWidget): void;
}
}


Expand Down
2 changes: 2 additions & 0 deletions demo/kitchen-sink/docs/vue.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,5 @@ html, body
each item in items
li= item
</template>

<template v-slot:item.parentkey.subkey.subkey.subkey.subkey.subkey="{ value }"></template>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ace-builds",
"main": "./src-noconflict/ace.js",
"typings": "ace.d.ts",
"version": "1.36.4",
"version": "1.36.5",
"description": "Ace (Ajax.org Cloud9 Editor)",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
2 changes: 1 addition & 1 deletion src-min-noconflict/ace.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/ext-code_lens.js

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

2 changes: 1 addition & 1 deletion src-min-noconflict/mode-vue.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/ace.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min/ext-code_lens.js

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

2 changes: 1 addition & 1 deletion src-min/mode-vue.js

Large diffs are not rendered by default.

Loading

0 comments on commit fb1f105

Please sign in to comment.