@public-ui/hydrate 2.1.9 → 2.2.0-alpha.0
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/index.js +26 -27
- package/dist/index.mjs +26 -27
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -5655,7 +5655,6 @@ class AssociatedInputController {
|
|
|
5655
5655
|
this.formAssociated = document.createElement('input');
|
|
5656
5656
|
this.formAssociated.setAttribute('type', 'hidden');
|
|
5657
5657
|
}
|
|
5658
|
-
this.formAssociated.setAttribute('aria-hidden', 'true');
|
|
5659
5658
|
this.formAssociated.setAttribute('data-form-associated', '');
|
|
5660
5659
|
this.formAssociated.setAttribute('hidden', '');
|
|
5661
5660
|
(_c = this.host) === null || _c === void 0 ? void 0 : _c.appendChild(this.formAssociated);
|
|
@@ -12845,9 +12844,10 @@ async function convertValueToCoords(state, options) {
|
|
|
12845
12844
|
crossAxis: 0,
|
|
12846
12845
|
alignmentAxis: null
|
|
12847
12846
|
} : {
|
|
12848
|
-
mainAxis:
|
|
12849
|
-
crossAxis:
|
|
12850
|
-
alignmentAxis:
|
|
12847
|
+
mainAxis: 0,
|
|
12848
|
+
crossAxis: 0,
|
|
12849
|
+
alignmentAxis: null,
|
|
12850
|
+
...rawValue
|
|
12851
12851
|
};
|
|
12852
12852
|
if (alignment && typeof alignmentAxis === 'number') {
|
|
12853
12853
|
crossAxis = alignment === 'end' ? alignmentAxis * -1 : alignmentAxis;
|
|
@@ -12969,11 +12969,7 @@ const shift$1 = function (options) {
|
|
|
12969
12969
|
...limitedCoords,
|
|
12970
12970
|
data: {
|
|
12971
12971
|
x: limitedCoords.x - x,
|
|
12972
|
-
y: limitedCoords.y - y
|
|
12973
|
-
enabled: {
|
|
12974
|
-
[mainAxis]: checkMainAxis,
|
|
12975
|
-
[crossAxis]: checkCrossAxis
|
|
12976
|
-
}
|
|
12972
|
+
y: limitedCoords.y - y
|
|
12977
12973
|
}
|
|
12978
12974
|
};
|
|
12979
12975
|
}
|
|
@@ -13062,7 +13058,6 @@ const size = function (options) {
|
|
|
13062
13058
|
name: 'size',
|
|
13063
13059
|
options,
|
|
13064
13060
|
async fn(state) {
|
|
13065
|
-
var _state$middlewareData, _state$middlewareData2;
|
|
13066
13061
|
const {
|
|
13067
13062
|
placement,
|
|
13068
13063
|
rects,
|
|
@@ -13097,11 +13092,10 @@ const size = function (options) {
|
|
|
13097
13092
|
const noShift = !state.middlewareData.shift;
|
|
13098
13093
|
let availableHeight = overflowAvailableHeight;
|
|
13099
13094
|
let availableWidth = overflowAvailableWidth;
|
|
13100
|
-
if (
|
|
13101
|
-
availableWidth = maximumClippingWidth;
|
|
13102
|
-
}
|
|
13103
|
-
|
|
13104
|
-
availableHeight = maximumClippingHeight;
|
|
13095
|
+
if (isYAxis) {
|
|
13096
|
+
availableWidth = alignment || noShift ? min(overflowAvailableWidth, maximumClippingWidth) : maximumClippingWidth;
|
|
13097
|
+
} else {
|
|
13098
|
+
availableHeight = alignment || noShift ? min(overflowAvailableHeight, maximumClippingHeight) : maximumClippingHeight;
|
|
13105
13099
|
}
|
|
13106
13100
|
if (noShift && !alignment) {
|
|
13107
13101
|
const xMin = max(overflow.left, 0);
|
|
@@ -24339,22 +24333,22 @@ class KolTableStateless {
|
|
|
24339
24333
|
this.cellsToRenderTimeouts = new Map();
|
|
24340
24334
|
this.dataToKeyMap = new Map();
|
|
24341
24335
|
this.checkboxRefs = [];
|
|
24342
|
-
this.renderTableRow = (row, rowIndex) => {
|
|
24336
|
+
this.renderTableRow = (row, rowIndex, isVertical) => {
|
|
24343
24337
|
var _a, _b;
|
|
24344
24338
|
let key = String(rowIndex);
|
|
24345
24339
|
if (this.horizontal && ((_a = row[0]) === null || _a === void 0 ? void 0 : _a.data)) {
|
|
24346
24340
|
key = (_b = this.getDataKey(row[0].data)) !== null && _b !== void 0 ? _b : key;
|
|
24347
24341
|
}
|
|
24348
|
-
return (hAsync("tr", { key: `row-${key}` }, this.renderSelectionCell(row, rowIndex), row.map((cell, colIndex) => this.renderTableCell(cell, rowIndex, colIndex))));
|
|
24342
|
+
return (hAsync("tr", { key: `row-${key}` }, this.renderSelectionCell(row, rowIndex), row.map((cell, colIndex) => this.renderTableCell(cell, rowIndex, colIndex, isVertical))));
|
|
24349
24343
|
};
|
|
24350
|
-
this.renderTableCell = (cell, rowIndex, colIndex) => {
|
|
24344
|
+
this.renderTableCell = (cell, rowIndex, colIndex, isVertical) => {
|
|
24351
24345
|
let key = `${rowIndex}-${colIndex}-${cell.label}`;
|
|
24352
24346
|
if (cell.data) {
|
|
24353
24347
|
const dataKey = this.getDataKey(cell.data);
|
|
24354
24348
|
key = dataKey ? `${dataKey}-${this.horizontal ? colIndex : rowIndex}` : key;
|
|
24355
24349
|
}
|
|
24356
24350
|
if (cell.asTd === false) {
|
|
24357
|
-
return this.renderHeadingCell(cell, rowIndex, colIndex);
|
|
24351
|
+
return this.renderHeadingCell(cell, rowIndex, colIndex, isVertical);
|
|
24358
24352
|
}
|
|
24359
24353
|
else {
|
|
24360
24354
|
return (hAsync("td", { key: `cell-${key}`, class: {
|
|
@@ -24701,7 +24695,7 @@ class KolTableStateless {
|
|
|
24701
24695
|
}
|
|
24702
24696
|
} })), hAsync(KolTooltipWcTag, { "aria-hidden": "true", class: "input-tooltip", _align: "right", _id: `${translationKey}-label`, _label: label }))));
|
|
24703
24697
|
}
|
|
24704
|
-
renderHeadingCell(cell, rowIndex, colIndex) {
|
|
24698
|
+
renderHeadingCell(cell, rowIndex, colIndex, isVertical) {
|
|
24705
24699
|
let ariaSort = undefined;
|
|
24706
24700
|
let sortButtonIcon = 'codicon codicon-fold';
|
|
24707
24701
|
if (cell.sortDirection) {
|
|
@@ -24716,7 +24710,8 @@ class KolTableStateless {
|
|
|
24716
24710
|
break;
|
|
24717
24711
|
}
|
|
24718
24712
|
}
|
|
24719
|
-
|
|
24713
|
+
const scope = isVertical ? 'row' : typeof cell.colSpan === 'number' && cell.colSpan > 1 ? 'colgroup' : 'col';
|
|
24714
|
+
return (hAsync("th", { key: `${rowIndex}-${colIndex}-${cell.label}`, class: cell.textAlign ? `align-${cell.textAlign}` : undefined, scope: scope, colSpan: cell.colSpan, rowSpan: cell.rowSpan, style: {
|
|
24720
24715
|
width: cell.width,
|
|
24721
24716
|
}, "aria-sort": ariaSort, "data-sort": `sort-${cell.sortDirection}` }, cell.sortDirection ? (hAsync(KolButtonWcTag, { class: "table-sort-button", exportparts: "icon", _icons: { right: sortButtonIcon }, _label: cell.label, _on: {
|
|
24722
24717
|
onClick: (event) => {
|
|
@@ -24731,7 +24726,8 @@ class KolTableStateless {
|
|
|
24731
24726
|
} })) : (cell.label)));
|
|
24732
24727
|
}
|
|
24733
24728
|
renderSpacer(variant, cellDefs) {
|
|
24734
|
-
|
|
24729
|
+
var _a;
|
|
24730
|
+
const colspan = (_a = cellDefs === null || cellDefs === void 0 ? void 0 : cellDefs[0]) === null || _a === void 0 ? void 0 : _a.reduce((acc, row) => acc + (row.colSpan || 1), 0);
|
|
24735
24731
|
return (hAsync("tr", { class: `${variant}-spacer`, "aria-hidden": "true" }, hAsync("td", { colSpan: colspan })));
|
|
24736
24732
|
}
|
|
24737
24733
|
renderFoot() {
|
|
@@ -24739,14 +24735,17 @@ class KolTableStateless {
|
|
|
24739
24735
|
return null;
|
|
24740
24736
|
}
|
|
24741
24737
|
const rows = this.createDataField(this.state._dataFoot, this.state._headerCells, true);
|
|
24742
|
-
return hAsync("tfoot", null, [
|
|
24738
|
+
return (hAsync("tfoot", null, [
|
|
24739
|
+
this.renderSpacer('foot', rows),
|
|
24740
|
+
rows.map((row, rowIndex) => this.renderTableRow(row, rowIndex, true)),
|
|
24741
|
+
]));
|
|
24743
24742
|
}
|
|
24744
24743
|
render() {
|
|
24745
24744
|
const dataField = this.createDataField(this.state._data, this.state._headerCells);
|
|
24746
24745
|
this.checkboxRefs = [];
|
|
24747
|
-
return (hAsync(Host, { key: '
|
|
24746
|
+
return (hAsync(Host, { key: '215026e1368f66194ebd3269337f796c061fc374', class: "kol-table-stateless-wc" }, hAsync("div", { key: '1a63ff928babc2d906287f2e8fbaca897c0a043a', ref: (element) => (this.tableDivElement = element), class: "table", tabindex: this.tableDivElementHasScrollbar ? '-1' : undefined }, hAsync("table", { key: '6e5e32b75489ef481ba3ea47c548bf2ca7533423', style: {
|
|
24748
24747
|
minWidth: this.state._minWidth,
|
|
24749
|
-
} }, hAsync("div", { key: '
|
|
24748
|
+
} }, hAsync("div", { key: '578f5e88ece3b1e966c4de611203d5498df3b88a', class: "focus-element", tabindex: this.tableDivElementHasScrollbar ? '0' : undefined, "aria-describedby": "caption" }, "\u00A0"), hAsync("caption", { key: '6ee0f0ad7781a77cf9a82ebe8375c088c100888a', id: "caption" }, this.state._label), Array.isArray(this.state._headerCells.horizontal) && (hAsync("thead", { key: '4dc023f72802e7fa3c1662fbf7b8a2e31879c4dd' }, [
|
|
24750
24749
|
this.state._headerCells.horizontal.map((cols, rowIndex) => (hAsync("tr", { key: `thead-${rowIndex}` }, this.state._selection && this.renderHeadingSelectionCell(), cols.map((cell, colIndex) => {
|
|
24751
24750
|
if (cell.asTd === true) {
|
|
24752
24751
|
return (hAsync("td", { key: `thead-${rowIndex}-${colIndex}-${cell.label}`, class: {
|
|
@@ -24761,11 +24760,11 @@ class KolTableStateless {
|
|
|
24761
24760
|
: undefined }, typeof cell.render !== 'function' ? cell.label : ''));
|
|
24762
24761
|
}
|
|
24763
24762
|
else {
|
|
24764
|
-
return this.renderHeadingCell(cell, rowIndex, colIndex);
|
|
24763
|
+
return this.renderHeadingCell(cell, rowIndex, colIndex, false);
|
|
24765
24764
|
}
|
|
24766
24765
|
})))),
|
|
24767
24766
|
this.renderSpacer('head', this.state._headerCells.horizontal),
|
|
24768
|
-
])), hAsync("tbody", { key: '
|
|
24767
|
+
])), hAsync("tbody", { key: 'eda54c00f2e690d59a3883f6d470b225d8bdd99a' }, dataField.map((row, rowIndex) => this.renderTableRow(row, rowIndex, true))), this.renderFoot()))));
|
|
24769
24768
|
}
|
|
24770
24769
|
get host() { return getElement(this); }
|
|
24771
24770
|
static get watchers() { return {
|
package/dist/index.mjs
CHANGED
|
@@ -5651,7 +5651,6 @@ class AssociatedInputController {
|
|
|
5651
5651
|
this.formAssociated = document.createElement('input');
|
|
5652
5652
|
this.formAssociated.setAttribute('type', 'hidden');
|
|
5653
5653
|
}
|
|
5654
|
-
this.formAssociated.setAttribute('aria-hidden', 'true');
|
|
5655
5654
|
this.formAssociated.setAttribute('data-form-associated', '');
|
|
5656
5655
|
this.formAssociated.setAttribute('hidden', '');
|
|
5657
5656
|
(_c = this.host) === null || _c === void 0 ? void 0 : _c.appendChild(this.formAssociated);
|
|
@@ -12841,9 +12840,10 @@ async function convertValueToCoords(state, options) {
|
|
|
12841
12840
|
crossAxis: 0,
|
|
12842
12841
|
alignmentAxis: null
|
|
12843
12842
|
} : {
|
|
12844
|
-
mainAxis:
|
|
12845
|
-
crossAxis:
|
|
12846
|
-
alignmentAxis:
|
|
12843
|
+
mainAxis: 0,
|
|
12844
|
+
crossAxis: 0,
|
|
12845
|
+
alignmentAxis: null,
|
|
12846
|
+
...rawValue
|
|
12847
12847
|
};
|
|
12848
12848
|
if (alignment && typeof alignmentAxis === 'number') {
|
|
12849
12849
|
crossAxis = alignment === 'end' ? alignmentAxis * -1 : alignmentAxis;
|
|
@@ -12965,11 +12965,7 @@ const shift$1 = function (options) {
|
|
|
12965
12965
|
...limitedCoords,
|
|
12966
12966
|
data: {
|
|
12967
12967
|
x: limitedCoords.x - x,
|
|
12968
|
-
y: limitedCoords.y - y
|
|
12969
|
-
enabled: {
|
|
12970
|
-
[mainAxis]: checkMainAxis,
|
|
12971
|
-
[crossAxis]: checkCrossAxis
|
|
12972
|
-
}
|
|
12968
|
+
y: limitedCoords.y - y
|
|
12973
12969
|
}
|
|
12974
12970
|
};
|
|
12975
12971
|
}
|
|
@@ -13058,7 +13054,6 @@ const size = function (options) {
|
|
|
13058
13054
|
name: 'size',
|
|
13059
13055
|
options,
|
|
13060
13056
|
async fn(state) {
|
|
13061
|
-
var _state$middlewareData, _state$middlewareData2;
|
|
13062
13057
|
const {
|
|
13063
13058
|
placement,
|
|
13064
13059
|
rects,
|
|
@@ -13093,11 +13088,10 @@ const size = function (options) {
|
|
|
13093
13088
|
const noShift = !state.middlewareData.shift;
|
|
13094
13089
|
let availableHeight = overflowAvailableHeight;
|
|
13095
13090
|
let availableWidth = overflowAvailableWidth;
|
|
13096
|
-
if (
|
|
13097
|
-
availableWidth = maximumClippingWidth;
|
|
13098
|
-
}
|
|
13099
|
-
|
|
13100
|
-
availableHeight = maximumClippingHeight;
|
|
13091
|
+
if (isYAxis) {
|
|
13092
|
+
availableWidth = alignment || noShift ? min(overflowAvailableWidth, maximumClippingWidth) : maximumClippingWidth;
|
|
13093
|
+
} else {
|
|
13094
|
+
availableHeight = alignment || noShift ? min(overflowAvailableHeight, maximumClippingHeight) : maximumClippingHeight;
|
|
13101
13095
|
}
|
|
13102
13096
|
if (noShift && !alignment) {
|
|
13103
13097
|
const xMin = max(overflow.left, 0);
|
|
@@ -24335,22 +24329,22 @@ class KolTableStateless {
|
|
|
24335
24329
|
this.cellsToRenderTimeouts = new Map();
|
|
24336
24330
|
this.dataToKeyMap = new Map();
|
|
24337
24331
|
this.checkboxRefs = [];
|
|
24338
|
-
this.renderTableRow = (row, rowIndex) => {
|
|
24332
|
+
this.renderTableRow = (row, rowIndex, isVertical) => {
|
|
24339
24333
|
var _a, _b;
|
|
24340
24334
|
let key = String(rowIndex);
|
|
24341
24335
|
if (this.horizontal && ((_a = row[0]) === null || _a === void 0 ? void 0 : _a.data)) {
|
|
24342
24336
|
key = (_b = this.getDataKey(row[0].data)) !== null && _b !== void 0 ? _b : key;
|
|
24343
24337
|
}
|
|
24344
|
-
return (hAsync("tr", { key: `row-${key}` }, this.renderSelectionCell(row, rowIndex), row.map((cell, colIndex) => this.renderTableCell(cell, rowIndex, colIndex))));
|
|
24338
|
+
return (hAsync("tr", { key: `row-${key}` }, this.renderSelectionCell(row, rowIndex), row.map((cell, colIndex) => this.renderTableCell(cell, rowIndex, colIndex, isVertical))));
|
|
24345
24339
|
};
|
|
24346
|
-
this.renderTableCell = (cell, rowIndex, colIndex) => {
|
|
24340
|
+
this.renderTableCell = (cell, rowIndex, colIndex, isVertical) => {
|
|
24347
24341
|
let key = `${rowIndex}-${colIndex}-${cell.label}`;
|
|
24348
24342
|
if (cell.data) {
|
|
24349
24343
|
const dataKey = this.getDataKey(cell.data);
|
|
24350
24344
|
key = dataKey ? `${dataKey}-${this.horizontal ? colIndex : rowIndex}` : key;
|
|
24351
24345
|
}
|
|
24352
24346
|
if (cell.asTd === false) {
|
|
24353
|
-
return this.renderHeadingCell(cell, rowIndex, colIndex);
|
|
24347
|
+
return this.renderHeadingCell(cell, rowIndex, colIndex, isVertical);
|
|
24354
24348
|
}
|
|
24355
24349
|
else {
|
|
24356
24350
|
return (hAsync("td", { key: `cell-${key}`, class: {
|
|
@@ -24697,7 +24691,7 @@ class KolTableStateless {
|
|
|
24697
24691
|
}
|
|
24698
24692
|
} })), hAsync(KolTooltipWcTag, { "aria-hidden": "true", class: "input-tooltip", _align: "right", _id: `${translationKey}-label`, _label: label }))));
|
|
24699
24693
|
}
|
|
24700
|
-
renderHeadingCell(cell, rowIndex, colIndex) {
|
|
24694
|
+
renderHeadingCell(cell, rowIndex, colIndex, isVertical) {
|
|
24701
24695
|
let ariaSort = undefined;
|
|
24702
24696
|
let sortButtonIcon = 'codicon codicon-fold';
|
|
24703
24697
|
if (cell.sortDirection) {
|
|
@@ -24712,7 +24706,8 @@ class KolTableStateless {
|
|
|
24712
24706
|
break;
|
|
24713
24707
|
}
|
|
24714
24708
|
}
|
|
24715
|
-
|
|
24709
|
+
const scope = isVertical ? 'row' : typeof cell.colSpan === 'number' && cell.colSpan > 1 ? 'colgroup' : 'col';
|
|
24710
|
+
return (hAsync("th", { key: `${rowIndex}-${colIndex}-${cell.label}`, class: cell.textAlign ? `align-${cell.textAlign}` : undefined, scope: scope, colSpan: cell.colSpan, rowSpan: cell.rowSpan, style: {
|
|
24716
24711
|
width: cell.width,
|
|
24717
24712
|
}, "aria-sort": ariaSort, "data-sort": `sort-${cell.sortDirection}` }, cell.sortDirection ? (hAsync(KolButtonWcTag, { class: "table-sort-button", exportparts: "icon", _icons: { right: sortButtonIcon }, _label: cell.label, _on: {
|
|
24718
24713
|
onClick: (event) => {
|
|
@@ -24727,7 +24722,8 @@ class KolTableStateless {
|
|
|
24727
24722
|
} })) : (cell.label)));
|
|
24728
24723
|
}
|
|
24729
24724
|
renderSpacer(variant, cellDefs) {
|
|
24730
|
-
|
|
24725
|
+
var _a;
|
|
24726
|
+
const colspan = (_a = cellDefs === null || cellDefs === void 0 ? void 0 : cellDefs[0]) === null || _a === void 0 ? void 0 : _a.reduce((acc, row) => acc + (row.colSpan || 1), 0);
|
|
24731
24727
|
return (hAsync("tr", { class: `${variant}-spacer`, "aria-hidden": "true" }, hAsync("td", { colSpan: colspan })));
|
|
24732
24728
|
}
|
|
24733
24729
|
renderFoot() {
|
|
@@ -24735,14 +24731,17 @@ class KolTableStateless {
|
|
|
24735
24731
|
return null;
|
|
24736
24732
|
}
|
|
24737
24733
|
const rows = this.createDataField(this.state._dataFoot, this.state._headerCells, true);
|
|
24738
|
-
return hAsync("tfoot", null, [
|
|
24734
|
+
return (hAsync("tfoot", null, [
|
|
24735
|
+
this.renderSpacer('foot', rows),
|
|
24736
|
+
rows.map((row, rowIndex) => this.renderTableRow(row, rowIndex, true)),
|
|
24737
|
+
]));
|
|
24739
24738
|
}
|
|
24740
24739
|
render() {
|
|
24741
24740
|
const dataField = this.createDataField(this.state._data, this.state._headerCells);
|
|
24742
24741
|
this.checkboxRefs = [];
|
|
24743
|
-
return (hAsync(Host, { key: '
|
|
24742
|
+
return (hAsync(Host, { key: '215026e1368f66194ebd3269337f796c061fc374', class: "kol-table-stateless-wc" }, hAsync("div", { key: '1a63ff928babc2d906287f2e8fbaca897c0a043a', ref: (element) => (this.tableDivElement = element), class: "table", tabindex: this.tableDivElementHasScrollbar ? '-1' : undefined }, hAsync("table", { key: '6e5e32b75489ef481ba3ea47c548bf2ca7533423', style: {
|
|
24744
24743
|
minWidth: this.state._minWidth,
|
|
24745
|
-
} }, hAsync("div", { key: '
|
|
24744
|
+
} }, hAsync("div", { key: '578f5e88ece3b1e966c4de611203d5498df3b88a', class: "focus-element", tabindex: this.tableDivElementHasScrollbar ? '0' : undefined, "aria-describedby": "caption" }, "\u00A0"), hAsync("caption", { key: '6ee0f0ad7781a77cf9a82ebe8375c088c100888a', id: "caption" }, this.state._label), Array.isArray(this.state._headerCells.horizontal) && (hAsync("thead", { key: '4dc023f72802e7fa3c1662fbf7b8a2e31879c4dd' }, [
|
|
24746
24745
|
this.state._headerCells.horizontal.map((cols, rowIndex) => (hAsync("tr", { key: `thead-${rowIndex}` }, this.state._selection && this.renderHeadingSelectionCell(), cols.map((cell, colIndex) => {
|
|
24747
24746
|
if (cell.asTd === true) {
|
|
24748
24747
|
return (hAsync("td", { key: `thead-${rowIndex}-${colIndex}-${cell.label}`, class: {
|
|
@@ -24757,11 +24756,11 @@ class KolTableStateless {
|
|
|
24757
24756
|
: undefined }, typeof cell.render !== 'function' ? cell.label : ''));
|
|
24758
24757
|
}
|
|
24759
24758
|
else {
|
|
24760
|
-
return this.renderHeadingCell(cell, rowIndex, colIndex);
|
|
24759
|
+
return this.renderHeadingCell(cell, rowIndex, colIndex, false);
|
|
24761
24760
|
}
|
|
24762
24761
|
})))),
|
|
24763
24762
|
this.renderSpacer('head', this.state._headerCells.horizontal),
|
|
24764
|
-
])), hAsync("tbody", { key: '
|
|
24763
|
+
])), hAsync("tbody", { key: 'eda54c00f2e690d59a3883f6d470b225d8bdd99a' }, dataField.map((row, rowIndex) => this.renderTableRow(row, rowIndex, true))), this.renderFoot()))));
|
|
24765
24764
|
}
|
|
24766
24765
|
get host() { return getElement(this); }
|
|
24767
24766
|
static get watchers() { return {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/hydrate",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0-alpha.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
],
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"rimraf": "6.0.1",
|
|
49
|
-
"@public-ui/components": "2.
|
|
49
|
+
"@public-ui/components": "2.2.0-alpha.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"@public-ui/components": "2.
|
|
52
|
+
"@public-ui/components": "2.2.0-alpha.0"
|
|
53
53
|
},
|
|
54
54
|
"sideEffects": false,
|
|
55
55
|
"type": "commonjs",
|