@progress/kendo-angular-spreadsheet 14.3.0-develop.6 → 14.3.0-develop.8
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/esm2020/package-metadata.mjs +2 -2
- package/esm2020/sheets-bar/action-dialog.component.mjs +1 -1
- package/esm2020/sheets-bar/sheets-bar.component.mjs +8 -7
- package/esm2020/tools/insert/insert-link-dialog.component.mjs +1 -1
- package/fesm2015/progress-kendo-angular-spreadsheet.mjs +13 -11
- package/fesm2020/progress-kendo-angular-spreadsheet.mjs +12 -11
- package/package.json +13 -13
- package/schematics/ngAdd/index.js +1 -1
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
9
9
|
name: '@progress/kendo-angular-spreadsheet',
|
10
10
|
productName: 'Kendo UI for Angular',
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
12
|
-
publishDate:
|
13
|
-
version: '14.3.0-develop.
|
12
|
+
publishDate: 1701849424,
|
13
|
+
version: '14.3.0-develop.8',
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
|
15
15
|
};
|
@@ -42,7 +42,7 @@ ActionDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
42
42
|
</div>
|
43
43
|
</div>
|
44
44
|
</form>
|
45
|
-
`, isInline: true, components: [{ type: i2.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i3.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
45
|
+
`, isInline: true, components: [{ type: i2.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i3.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
46
46
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ActionDialogComponent, decorators: [{
|
47
47
|
type: Component,
|
48
48
|
args: [{
|
@@ -77,23 +77,24 @@ export class SheetsBarComponent {
|
|
77
77
|
const isMoveRight = itemKey === 'sheetMoveRight';
|
78
78
|
let oldIndex = -1;
|
79
79
|
let newIndex = -1;
|
80
|
+
const sheets = this.spreadsheetService.spreadsheet.sheets();
|
80
81
|
if (isMoveRight) {
|
81
|
-
for (let i = 0; i <
|
82
|
-
if (
|
82
|
+
for (let i = 0; i < sheets.length; i++) {
|
83
|
+
if (sheets[i].name() === sheetInfo.text) {
|
83
84
|
oldIndex = i;
|
84
85
|
}
|
85
|
-
if (oldIndex > -1 && i > oldIndex &&
|
86
|
+
if (oldIndex > -1 && i > oldIndex && sheets[i]._state() === 'visible') {
|
86
87
|
newIndex = i;
|
87
88
|
break;
|
88
89
|
}
|
89
90
|
}
|
90
91
|
}
|
91
92
|
else {
|
92
|
-
for (let i =
|
93
|
-
if (
|
93
|
+
for (let i = sheets.length - 1; i >= 0; i--) {
|
94
|
+
if (sheets[i].name() === sheetInfo.text) {
|
94
95
|
oldIndex = i;
|
95
96
|
}
|
96
|
-
if (oldIndex > -1 && i < oldIndex &&
|
97
|
+
if (oldIndex > -1 && (i < oldIndex) && sheets[i]._state() === 'visible') {
|
97
98
|
newIndex = i;
|
98
99
|
break;
|
99
100
|
}
|
@@ -101,6 +102,7 @@ export class SheetsBarComponent {
|
|
101
102
|
}
|
102
103
|
const sheetsBar = this.spreadsheetService.spreadsheet.view.sheetsbar;
|
103
104
|
sheetsBar.onSheetReorderEnd({ oldIndex, newIndex });
|
105
|
+
this.selectSheet(sheetInfo.text);
|
104
106
|
this.notifySheetsChange();
|
105
107
|
},
|
106
108
|
hide: (sheet) => {
|
@@ -257,7 +259,6 @@ export class SheetsBarComponent {
|
|
257
259
|
this.sheets = sheetDesc
|
258
260
|
.flatMap((item, index, items) => item.state === 'visible' ? [{
|
259
261
|
...item,
|
260
|
-
state: item.state || 'visible',
|
261
262
|
inEdit: false,
|
262
263
|
first: index === 0,
|
263
264
|
last: index === items.length - 1,
|
@@ -31,7 +31,7 @@ InsertLinkDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
31
31
|
</kendo-textbox>
|
32
32
|
</div>
|
33
33
|
</form>
|
34
|
-
`, isInline: true, components: [{ type: i2.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i3.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }] });
|
34
|
+
`, isInline: true, components: [{ type: i2.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i3.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }] });
|
35
35
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: InsertLinkDialogComponent, decorators: [{
|
36
36
|
type: Component,
|
37
37
|
args: [{
|
@@ -47,8 +47,8 @@ const packageMetadata = {
|
|
47
47
|
name: '@progress/kendo-angular-spreadsheet',
|
48
48
|
productName: 'Kendo UI for Angular',
|
49
49
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
50
|
-
publishDate:
|
51
|
-
version: '14.3.0-develop.
|
50
|
+
publishDate: 1701849424,
|
51
|
+
version: '14.3.0-develop.8',
|
52
52
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
|
53
53
|
};
|
54
54
|
|
@@ -671,7 +671,7 @@ InsertLinkDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
671
671
|
</kendo-textbox>
|
672
672
|
</div>
|
673
673
|
</form>
|
674
|
-
`, isInline: true, components: [{ type: i2$1.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }] });
|
674
|
+
`, isInline: true, components: [{ type: i2$1.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }] });
|
675
675
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: InsertLinkDialogComponent, decorators: [{
|
676
676
|
type: Component,
|
677
677
|
args: [{
|
@@ -1793,7 +1793,7 @@ ActionDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
1793
1793
|
</div>
|
1794
1794
|
</div>
|
1795
1795
|
</form>
|
1796
|
-
`, isInline: true, components: [{ type: i2$1.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
1796
|
+
`, isInline: true, components: [{ type: i2$1.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
1797
1797
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ActionDialogComponent, decorators: [{
|
1798
1798
|
type: Component,
|
1799
1799
|
args: [{
|
@@ -1873,23 +1873,24 @@ class SheetsBarComponent {
|
|
1873
1873
|
const isMoveRight = itemKey === 'sheetMoveRight';
|
1874
1874
|
let oldIndex = -1;
|
1875
1875
|
let newIndex = -1;
|
1876
|
+
const sheets = this.spreadsheetService.spreadsheet.sheets();
|
1876
1877
|
if (isMoveRight) {
|
1877
|
-
for (let i = 0; i <
|
1878
|
-
if (
|
1878
|
+
for (let i = 0; i < sheets.length; i++) {
|
1879
|
+
if (sheets[i].name() === sheetInfo.text) {
|
1879
1880
|
oldIndex = i;
|
1880
1881
|
}
|
1881
|
-
if (oldIndex > -1 && i > oldIndex &&
|
1882
|
+
if (oldIndex > -1 && i > oldIndex && sheets[i]._state() === 'visible') {
|
1882
1883
|
newIndex = i;
|
1883
1884
|
break;
|
1884
1885
|
}
|
1885
1886
|
}
|
1886
1887
|
}
|
1887
1888
|
else {
|
1888
|
-
for (let i =
|
1889
|
-
if (
|
1889
|
+
for (let i = sheets.length - 1; i >= 0; i--) {
|
1890
|
+
if (sheets[i].name() === sheetInfo.text) {
|
1890
1891
|
oldIndex = i;
|
1891
1892
|
}
|
1892
|
-
if (oldIndex > -1 && i < oldIndex &&
|
1893
|
+
if (oldIndex > -1 && (i < oldIndex) && sheets[i]._state() === 'visible') {
|
1893
1894
|
newIndex = i;
|
1894
1895
|
break;
|
1895
1896
|
}
|
@@ -1897,6 +1898,7 @@ class SheetsBarComponent {
|
|
1897
1898
|
}
|
1898
1899
|
const sheetsBar = this.spreadsheetService.spreadsheet.view.sheetsbar;
|
1899
1900
|
sheetsBar.onSheetReorderEnd({ oldIndex, newIndex });
|
1901
|
+
this.selectSheet(sheetInfo.text);
|
1900
1902
|
this.notifySheetsChange();
|
1901
1903
|
},
|
1902
1904
|
hide: (sheet) => {
|
@@ -2051,7 +2053,7 @@ class SheetsBarComponent {
|
|
2051
2053
|
const newSheets = this.spreadsheetService.spreadsheet.sheets();
|
2052
2054
|
const sheetDesc = mapToSheetDescriptor(newSheets);
|
2053
2055
|
this.sheets = sheetDesc
|
2054
|
-
.flatMap((item, index, items) => item.state === 'visible' ? [Object.assign(Object.assign({}, item), {
|
2056
|
+
.flatMap((item, index, items) => item.state === 'visible' ? [Object.assign(Object.assign({}, item), { inEdit: false, first: index === 0, last: index === items.length - 1, text: item.name, active: (item.name === this.activeSheet) || items.length === 1, index, sheetActions: getSheetActions(items, item)
|
2055
2057
|
.map(item => (Object.assign(Object.assign({}, item), { text: this.messageFor(item.messageKey) }))) })] : []);
|
2056
2058
|
this.sheetsMenuList = (_a = this.sheets) === null || _a === void 0 ? void 0 : _a.map(sheet => ({
|
2057
2059
|
text: sheet.text,
|
@@ -47,8 +47,8 @@ const packageMetadata = {
|
|
47
47
|
name: '@progress/kendo-angular-spreadsheet',
|
48
48
|
productName: 'Kendo UI for Angular',
|
49
49
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
50
|
-
publishDate:
|
51
|
-
version: '14.3.0-develop.
|
50
|
+
publishDate: 1701849424,
|
51
|
+
version: '14.3.0-develop.8',
|
52
52
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
|
53
53
|
};
|
54
54
|
|
@@ -662,7 +662,7 @@ InsertLinkDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
662
662
|
</kendo-textbox>
|
663
663
|
</div>
|
664
664
|
</form>
|
665
|
-
`, isInline: true, components: [{ type: i2$1.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }] });
|
665
|
+
`, isInline: true, components: [{ type: i2$1.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }] });
|
666
666
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: InsertLinkDialogComponent, decorators: [{
|
667
667
|
type: Component,
|
668
668
|
args: [{
|
@@ -1772,7 +1772,7 @@ ActionDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
1772
1772
|
</div>
|
1773
1773
|
</div>
|
1774
1774
|
</form>
|
1775
|
-
`, isInline: true, components: [{ type: i2$1.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
1775
|
+
`, isInline: true, components: [{ type: i2$1.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i5.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
1776
1776
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ActionDialogComponent, decorators: [{
|
1777
1777
|
type: Component,
|
1778
1778
|
args: [{
|
@@ -1852,23 +1852,24 @@ class SheetsBarComponent {
|
|
1852
1852
|
const isMoveRight = itemKey === 'sheetMoveRight';
|
1853
1853
|
let oldIndex = -1;
|
1854
1854
|
let newIndex = -1;
|
1855
|
+
const sheets = this.spreadsheetService.spreadsheet.sheets();
|
1855
1856
|
if (isMoveRight) {
|
1856
|
-
for (let i = 0; i <
|
1857
|
-
if (
|
1857
|
+
for (let i = 0; i < sheets.length; i++) {
|
1858
|
+
if (sheets[i].name() === sheetInfo.text) {
|
1858
1859
|
oldIndex = i;
|
1859
1860
|
}
|
1860
|
-
if (oldIndex > -1 && i > oldIndex &&
|
1861
|
+
if (oldIndex > -1 && i > oldIndex && sheets[i]._state() === 'visible') {
|
1861
1862
|
newIndex = i;
|
1862
1863
|
break;
|
1863
1864
|
}
|
1864
1865
|
}
|
1865
1866
|
}
|
1866
1867
|
else {
|
1867
|
-
for (let i =
|
1868
|
-
if (
|
1868
|
+
for (let i = sheets.length - 1; i >= 0; i--) {
|
1869
|
+
if (sheets[i].name() === sheetInfo.text) {
|
1869
1870
|
oldIndex = i;
|
1870
1871
|
}
|
1871
|
-
if (oldIndex > -1 && i < oldIndex &&
|
1872
|
+
if (oldIndex > -1 && (i < oldIndex) && sheets[i]._state() === 'visible') {
|
1872
1873
|
newIndex = i;
|
1873
1874
|
break;
|
1874
1875
|
}
|
@@ -1876,6 +1877,7 @@ class SheetsBarComponent {
|
|
1876
1877
|
}
|
1877
1878
|
const sheetsBar = this.spreadsheetService.spreadsheet.view.sheetsbar;
|
1878
1879
|
sheetsBar.onSheetReorderEnd({ oldIndex, newIndex });
|
1880
|
+
this.selectSheet(sheetInfo.text);
|
1879
1881
|
this.notifySheetsChange();
|
1880
1882
|
},
|
1881
1883
|
hide: (sheet) => {
|
@@ -2032,7 +2034,6 @@ class SheetsBarComponent {
|
|
2032
2034
|
this.sheets = sheetDesc
|
2033
2035
|
.flatMap((item, index, items) => item.state === 'visible' ? [{
|
2034
2036
|
...item,
|
2035
|
-
state: item.state || 'visible',
|
2036
2037
|
inEdit: false,
|
2037
2038
|
first: index === 0,
|
2038
2039
|
last: index === items.length - 1,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-spreadsheet",
|
3
|
-
"version": "14.3.0-develop.
|
3
|
+
"version": "14.3.0-develop.8",
|
4
4
|
"description": "A Spreadsheet Component for Angular",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -23,22 +23,22 @@
|
|
23
23
|
"@angular/core": "13 - 17",
|
24
24
|
"@angular/platform-browser": "13 - 17",
|
25
25
|
"@progress/kendo-licensing": "^1.0.2",
|
26
|
-
"@progress/kendo-angular-buttons": "14.3.0-develop.
|
27
|
-
"@progress/kendo-angular-common": "14.3.0-develop.
|
28
|
-
"@progress/kendo-angular-dialog": "14.3.0-develop.
|
29
|
-
"@progress/kendo-angular-dropdowns": "14.3.0-develop.
|
30
|
-
"@progress/kendo-angular-icons": "14.3.0-develop.
|
31
|
-
"@progress/kendo-angular-l10n": "14.3.0-develop.
|
32
|
-
"@progress/kendo-angular-layout": "14.3.0-develop.
|
33
|
-
"@progress/kendo-angular-menu": "14.3.0-develop.
|
34
|
-
"@progress/kendo-angular-popup": "14.3.0-develop.
|
35
|
-
"@progress/kendo-angular-toolbar": "14.3.0-develop.
|
36
|
-
"@progress/kendo-angular-intl": "14.3.0-develop.
|
26
|
+
"@progress/kendo-angular-buttons": "14.3.0-develop.8",
|
27
|
+
"@progress/kendo-angular-common": "14.3.0-develop.8",
|
28
|
+
"@progress/kendo-angular-dialog": "14.3.0-develop.8",
|
29
|
+
"@progress/kendo-angular-dropdowns": "14.3.0-develop.8",
|
30
|
+
"@progress/kendo-angular-icons": "14.3.0-develop.8",
|
31
|
+
"@progress/kendo-angular-l10n": "14.3.0-develop.8",
|
32
|
+
"@progress/kendo-angular-layout": "14.3.0-develop.8",
|
33
|
+
"@progress/kendo-angular-menu": "14.3.0-develop.8",
|
34
|
+
"@progress/kendo-angular-popup": "14.3.0-develop.8",
|
35
|
+
"@progress/kendo-angular-toolbar": "14.3.0-develop.8",
|
36
|
+
"@progress/kendo-angular-intl": "14.3.0-develop.8",
|
37
37
|
"rxjs": "^6.5.3 || ^7.0.0"
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
40
|
"tslib": "^2.3.1",
|
41
|
-
"@progress/kendo-angular-schematics": "14.3.0-develop.
|
41
|
+
"@progress/kendo-angular-schematics": "14.3.0-develop.8",
|
42
42
|
"@progress/jszip-esm": "^1.0.3",
|
43
43
|
"@progress/kendo-common": "^0.2.2",
|
44
44
|
"@progress/kendo-date-math": "^1.5.10",
|
@@ -6,7 +6,7 @@ function default_1(options) {
|
|
6
6
|
// Peer dependency of icons
|
7
7
|
'@progress/kendo-svg-icons': '^2.0.0',
|
8
8
|
// peer dep of the dropdowns
|
9
|
-
'@progress/kendo-angular-treeview': '14.3.0-develop.
|
9
|
+
'@progress/kendo-angular-treeview': '14.3.0-develop.8'
|
10
10
|
} });
|
11
11
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
12
12
|
}
|