@atlaskit/adf-schema 35.9.0 → 35.9.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/adf-schema
2
2
 
3
+ ## 35.9.1
4
+
5
+ ### Patch Changes
6
+
7
+ - ba72fd3: ED-22925: Added alignment to table layout attrs
8
+
3
9
  ## 35.9.0
4
10
 
5
11
  ### Minor Changes
@@ -2209,6 +2209,9 @@
2209
2209
  "enum": [
2210
2210
  "wide",
2211
2211
  "full-width",
2212
+ "center",
2213
+ "align-end",
2214
+ "align-start",
2212
2215
  "default"
2213
2216
  ]
2214
2217
  },
@@ -2215,6 +2215,9 @@
2215
2215
  "enum": [
2216
2216
  "wide",
2217
2217
  "full-width",
2218
+ "center",
2219
+ "align-end",
2220
+ "align-start",
2218
2221
  "default"
2219
2222
  ]
2220
2223
  },
@@ -51,8 +51,8 @@ export declare const getCellDomAttrs: (node: PmNode) => CellDomAttrs;
51
51
  export declare const tableBackgroundColorPalette: Map<string, string>;
52
52
  export declare const tableBackgroundBorderColor: string;
53
53
  export declare const tableBackgroundColorNames: Map<string, string>;
54
- export type Layout = 'default' | 'full-width' | 'wide';
55
54
  export type DisplayMode = 'default' | 'fixed';
55
+ export type Layout = 'default' | 'full-width' | 'wide' | 'center' | 'align-start' | 'align-end';
56
56
  export interface TableAttributes {
57
57
  isNumberColumnEnabled?: boolean;
58
58
  layout?: Layout;
@@ -2209,6 +2209,9 @@
2209
2209
  "enum": [
2210
2210
  "wide",
2211
2211
  "full-width",
2212
+ "center",
2213
+ "align-end",
2214
+ "align-start",
2212
2215
  "default"
2213
2216
  ]
2214
2217
  },
@@ -2215,6 +2215,9 @@
2215
2215
  "enum": [
2216
2216
  "wide",
2217
2217
  "full-width",
2218
+ "center",
2219
+ "align-end",
2220
+ "align-start",
2218
2221
  "default"
2219
2222
  ]
2220
2223
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/adf-schema",
3
- "version": "35.9.0",
3
+ "version": "35.9.1",
4
4
  "description": "Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"