@odoo/o-spreadsheet 18.1.7 → 18.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,9 +1,9 @@
1
1
  <!--
2
2
  This file is generated by o-spreadsheet build tools. Do not edit it.
3
3
  @see https://github.com/odoo/o-spreadsheet
4
- @version 18.1.7
5
- @date 2025-02-10T09:01:09.502Z
6
- @hash 338d8a1
4
+ @version 18.1.9
5
+ @date 2025-02-25T06:00:27.248Z
6
+ @hash 6789c1c
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ActionButton">
@@ -630,17 +630,19 @@
630
630
  </t>
631
631
 
632
632
  <t t-name="o-spreadsheet-TopBarComposer">
633
- <div
634
- class="o-topbar-composer bg-white user-select-text"
635
- t-on-click.stop=""
636
- t-att-style="containerStyle">
637
- <Composer
638
- focus="focus"
639
- inputStyle="composerStyle"
640
- onComposerContentFocused.bind="onFocus"
641
- composerStore="composerStore"
642
- placeholder="composerStore.placeholder"
643
- />
633
+ <div class="o-topbar-composer-container w-100">
634
+ <div
635
+ class="o-topbar-composer position-relative bg-white user-select-text"
636
+ t-on-click.stop=""
637
+ t-att-style="containerStyle">
638
+ <Composer
639
+ focus="focus"
640
+ inputStyle="composerStyle"
641
+ onComposerContentFocused.bind="onFocus"
642
+ composerStore="composerStore"
643
+ placeholder="composerStore.placeholder"
644
+ />
645
+ </div>
644
646
  </div>
645
647
  </t>
646
648
 
@@ -979,6 +981,7 @@
979
981
  max="400"
980
982
  class="o-font-size o-number-input bg-transparent border-0"
981
983
  t-on-keydown="onInputKeydown"
984
+ t-on-wheel.prevent.stop=""
982
985
  t-on-click.stop=""
983
986
  t-on-focus.stop="onInputFocused"
984
987
  t-att-value="props.currentFontSize"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "18.1.7",
3
+ "version": "18.1.9",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o-spreadsheet.cjs.js",
@@ -22,6 +22,7 @@
22
22
  "bundle:xml": "node tools/bundle_xml/main.cjs",
23
23
  "bundle:dev": "npm-run-all build:js bundle:iife \"bundle:xml -- --outDir build\"",
24
24
  "dist": "tsc --module es6 --declaration --declarationDir dist/types && rollup -c && npm run bundle:xml -- --outDir dist",
25
+ "monkey": "SPREADSHEET_MONKEY_COUNT=$npm_config_monkey_count jest 'tests/collaborative/collaborative_monkey_party.test.ts'",
25
26
  "test": "tsc --noEmit --project tsconfig.jest.json && jest",
26
27
  "test:watch": "jest --watch",
27
28
  "prettier": "prettier . --write",
@@ -90,6 +91,7 @@
90
91
  "rollup": "^3.28.0",
91
92
  "rollup-plugin-dts": "^5.3.1",
92
93
  "rollup-plugin-typescript2": "^0.35.0",
94
+ "seedrandom": "^3.0.5",
93
95
  "typescript": "^5.4.3",
94
96
  "xml-formatter": "^2.4.0"
95
97
  },
@@ -137,6 +139,6 @@
137
139
  "*": "prettier --write"
138
140
  },
139
141
  "publishConfig": {
140
- "tag": "latest"
142
+ "tag": "18-1"
141
143
  }
142
144
  }