@atlaskit/editor-plugin-table 15.3.14 → 15.3.16
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/CHANGELOG.md +17 -0
- package/dist/cjs/nodeviews/TableRowNativeStickyWithFallback.js +785 -0
- package/dist/cjs/nodeviews/table-node-views.js +7 -1
- package/dist/cjs/types/index.js +2 -1
- package/dist/cjs/ui/common-styles.js +2 -2
- package/dist/cjs/ui/toolbar.js +47 -15
- package/dist/es2019/nodeviews/TableRowNativeStickyWithFallback.js +721 -0
- package/dist/es2019/nodeviews/table-node-views.js +7 -1
- package/dist/es2019/types/index.js +2 -1
- package/dist/es2019/ui/common-styles.js +11 -1
- package/dist/es2019/ui/toolbar.js +47 -18
- package/dist/esm/nodeviews/TableRowNativeStickyWithFallback.js +779 -0
- package/dist/esm/nodeviews/table-node-views.js +7 -1
- package/dist/esm/types/index.js +2 -1
- package/dist/esm/ui/common-styles.js +2 -2
- package/dist/esm/ui/toolbar.js +47 -15
- package/dist/types/nodeviews/TableRowNativeStickyWithFallback.d.ts +72 -0
- package/dist/types/nodeviews/table-node-views.d.ts +2 -1
- package/dist/types/types/index.d.ts +2 -0
- package/dist/types/ui/toolbar.d.ts +1 -1
- package/dist/types-ts4.5/nodeviews/TableRowNativeStickyWithFallback.d.ts +72 -0
- package/dist/types-ts4.5/nodeviews/table-node-views.d.ts +2 -1
- package/dist/types-ts4.5/types/index.d.ts +2 -0
- package/dist/types-ts4.5/ui/toolbar.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-table
|
|
2
2
|
|
|
3
|
+
## 15.3.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`855e2a1085226`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/855e2a1085226) -
|
|
8
|
+
[ux] Scaffolding for native sticky headers
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 15.3.15
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`fd0c8ec823f49`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fd0c8ec823f49) -
|
|
16
|
+
NOISSUE - Add limited mode check for expensive getTableScalingPercent calls for the table floating
|
|
17
|
+
toolbar alignment button.
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 15.3.14
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|