@odoo/o-spreadsheet 18.2.0-alpha.8 → 18.2.1
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.
- package/dist/o-spreadsheet.cjs.js +265 -135
- package/dist/o-spreadsheet.d.ts +35 -26
- package/dist/o-spreadsheet.esm.js +265 -135
- package/dist/o-spreadsheet.iife.js +265 -135
- package/dist/o-spreadsheet.iife.min.js +291 -287
- package/dist/o_spreadsheet.xml +17 -14
- package/package.json +4 -2
package/dist/o_spreadsheet.xml
CHANGED
|
@@ -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.2.
|
|
5
|
-
@date 2025-02-
|
|
6
|
-
@hash
|
|
4
|
+
@version 18.2.1
|
|
5
|
+
@date 2025-02-25T06:03:53.291Z
|
|
6
|
+
@hash 3b4b5c9
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ValidationMessages">
|
|
@@ -5210,6 +5210,7 @@
|
|
|
5210
5210
|
max="400"
|
|
5211
5211
|
class="o-font-size o-number-input bg-transparent border-0"
|
|
5212
5212
|
t-on-keydown="onInputKeydown"
|
|
5213
|
+
t-on-wheel.prevent.stop=""
|
|
5213
5214
|
t-on-click.stop=""
|
|
5214
5215
|
t-on-focus.stop="onInputFocused"
|
|
5215
5216
|
t-att-value="props.currentFontSize"
|
|
@@ -5571,17 +5572,19 @@
|
|
|
5571
5572
|
</t>
|
|
5572
5573
|
|
|
5573
5574
|
<t t-name="o-spreadsheet-TopBarComposer">
|
|
5574
|
-
<div
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
|
|
5583
|
-
|
|
5584
|
-
|
|
5575
|
+
<div class="o-topbar-composer-container w-100">
|
|
5576
|
+
<div
|
|
5577
|
+
class="o-topbar-composer position-relative bg-white user-select-text"
|
|
5578
|
+
t-on-click.stop=""
|
|
5579
|
+
t-att-style="containerStyle">
|
|
5580
|
+
<Composer
|
|
5581
|
+
focus="focus"
|
|
5582
|
+
inputStyle="composerStyle"
|
|
5583
|
+
onComposerContentFocused.bind="onFocus"
|
|
5584
|
+
composerStore="composerStore"
|
|
5585
|
+
placeholder="composerStore.placeholder"
|
|
5586
|
+
/>
|
|
5587
|
+
</div>
|
|
5585
5588
|
</div>
|
|
5586
5589
|
</t>
|
|
5587
5590
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odoo/o-spreadsheet",
|
|
3
|
-
"version": "18.2.
|
|
3
|
+
"version": "18.2.1",
|
|
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\" && node tools/bundle_scss/main.cjs --out build",
|
|
24
24
|
"dist": "tsc --module es6 --declaration --declarationDir dist/types && rollup -c && npm run bundle:xml -- --outDir dist && node tools/bundle_scss/main.cjs --out 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",
|
|
@@ -93,6 +94,7 @@
|
|
|
93
94
|
"rollup-plugin-dts": "^5.3.1",
|
|
94
95
|
"rollup-plugin-typescript2": "^0.35.0",
|
|
95
96
|
"sass": "^1.62.1",
|
|
97
|
+
"seedrandom": "^3.0.5",
|
|
96
98
|
"typescript": "^5.4.3",
|
|
97
99
|
"xml-formatter": "^2.4.0"
|
|
98
100
|
},
|
|
@@ -140,6 +142,6 @@
|
|
|
140
142
|
"*": "prettier --write"
|
|
141
143
|
},
|
|
142
144
|
"publishConfig": {
|
|
143
|
-
"tag": "
|
|
145
|
+
"tag": "latest"
|
|
144
146
|
}
|
|
145
147
|
}
|