Skip to content

Commit 16f487b

Browse files
committed
Prepare npm deploy.
1 parent 748c394 commit 16f487b

File tree

22 files changed

+1792
-1458
lines changed

22 files changed

+1792
-1458
lines changed

angular-app/ngx-fittable-docs/package-lock.json

+884-869
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular-app/ngx-fittable-docs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@angular/platform-browser": "^16.0.3",
2323
"@angular/platform-browser-dynamic": "^16.0.3",
2424
"@angular/router": "^16.0.3",
25-
"fittable-angular": "^2.0.0",
25+
"fittable-angular": "^3.0.0",
2626
"npm": "^9.6.6",
2727
"rxjs": "~7.8.0",
2828
"tslib": "^2.3.0",
@@ -44,4 +44,4 @@
4444
"karma-jasmine-html-reporter": "~2.0.0",
4545
"typescript": "~5.0.2"
4646
}
47-
}
47+
}

angular-app/ngx-fittable-docs/src/app/topics/getting-started/installation/installation.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ <h1 class="title">{{title}}</h1>
33
<h2 class="subtitle">Install Fittable</h2>
44
<div class="code">npm install fittable-angular</div>
55
<h2 class="subtitle">Angular component example</h2>
6-
<h3 class="sub-subtitle">tsconfig.json (for non-ECMAScript module dependants)</h3>
6+
<h3 class="sub-subtitle">tsconfig.json</h3>
77
<div class="code-snippet">
88
<img src="../../../../assets/code-snippets//installation-tsconfig.jpg" />
99
</div>
@@ -30,4 +30,4 @@ <h3 class="sub-subtitle">styles.css</h3>
3030
<p>The demo component can be found <a
3131
href="https://github.com/ionutkosteea/fittable/tree/main/angular-app/ngx-fittable-test">here</a>.
3232
<p></p>
33-
</div>
33+
</div>

angular-app/ngx-fittable-test/package-lock.json

+771-507
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular-app/ngx-fittable-test/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@angular/platform-browser": "^16.0.3",
2222
"@angular/platform-browser-dynamic": "^16.0.3",
2323
"@angular/router": "^16.0.3",
24-
"fittable-angular": "^2.0.0",
24+
"fittable-angular": "^3.0.0",
2525
"rxjs": "~7.8.0",
2626
"tslib": "^2.3.0",
2727
"zone.js": "~0.13.0"
@@ -39,4 +39,4 @@
3939
"karma-jasmine-html-reporter": "~2.0.0",
4040
"typescript": "~5.0.2"
4141
}
42-
}
42+
}

angular-lib/package-lock.json

+19-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular-lib/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@angular/platform-browser": "^16.0.3",
2323
"@angular/platform-browser-dynamic": "^16.0.3",
2424
"@angular/router": "^16.0.3",
25-
"fittable-core": "^1.1.0",
25+
"fittable-core": "^2.0.0",
2626
"rxjs": "~7.8.0",
2727
"tslib": "^2.3.0",
2828
"zone.js": "~0.13.0"
@@ -45,8 +45,8 @@
4545
"typescript": "~5.0.2"
4646
},
4747
"peerDependencies": {
48-
"fittable-model": "^1.1.0",
49-
"fittable-model-operations": "^1.1.0",
50-
"fittable-view-model": "^1.1.0"
48+
"fittable-model": "^1.1.1",
49+
"fittable-model-operations": "^1.1.1",
50+
"fittable-view-model": "^1.1.1"
5151
}
52-
}
52+
}

angular-lib/projects/fittable-angular/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [v3.0.0] - 2023-06-12
6+
7+
### Added
8+
9+
- Incorporate view customization capabilities.
10+
- Add toolbar controls tooltips.
11+
- Add padding to table cells.
12+
13+
### Changed
14+
15+
- Improve code readability:
16+
17+
- rename NgxFittableModule to FittableModule;
18+
- rename TableViewComponent to FittableComponent
19+
20+
- Enhance the comprehensibility of the user documentation.
21+
522
## [v2.0.0] - 2023-05-25
623

724
### Changed

angular-lib/projects/fittable-angular/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fittable-angular",
3-
"version": "2.0.0",
3+
"version": "3.0.0",
44
"description": "Fittable is an Angular/TypeScript component optimized for handling large table structures with spreadsheet-like capabilities.",
55
"homepage": "https://fittable-499b2.web.app",
66
"author": {
@@ -19,14 +19,14 @@
1919
"peerDependencies": {
2020
"@angular/common": "^16.0.3",
2121
"@angular/core": "^16.0.3",
22-
"fittable-model": "^1.1.0",
23-
"fittable-model-operations": "^1.1.0",
24-
"fittable-view-model": "^1.1.0"
22+
"fittable-model": "^1.1.1",
23+
"fittable-model-operations": "^1.1.1",
24+
"fittable-view-model": "^1.1.1"
2525
},
2626
"dependencies": {
2727
"tslib": "^2.3.0",
2828
"rxjs": "~7.8.0",
29-
"fittable-core": "^1.1.0"
29+
"fittable-core": "^2.0.0"
3030
},
3131
"sideEffects": false,
3232
"keywords": [

typescript-lib/fittable-core/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [v2.0.0] - 2023-06-12
6+
7+
### Added
8+
9+
- Incorporate view customization capabilities.
10+
11+
### Changed
12+
13+
- Improve code readability:
14+
15+
- rename OptionsWindow to PopupWindow;
16+
- rename createOptionsWindow to createPopupWindow.
17+
18+
- Enhance the comprehensibility of the user documentation.
19+
520
## [v1.1.0] - 2023-05-11
621

722
### Changed

typescript-lib/fittable-core/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typescript-lib/fittable-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fittable-core",
3-
"version": "1.1.0",
3+
"version": "2.0.0",
44
"description": "Fittable core",
55
"homepage": "https://fittable-499b2.web.app",
66
"author": {

typescript-lib/fittable-core/src/view-model/model/view-model.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import { Statusbar } from './statusbar.js';
1515
import { MobileLayout } from './mobile-layout.js';
1616

1717
export interface ViewModel {
18-
table: Table;
19-
operationExecutor?: OperationExecutor;
18+
readonly table: Table;
19+
readonly operationExecutor?: OperationExecutor;
2020
dictionary: LanguageDictionary;
2121
imageRegistry: ImageRegistry;
2222
tableViewer: TableViewer;

typescript-lib/fittable-model-operations/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [v1.1.1] - 2023-06-12
6+
7+
### Changed
8+
9+
- Enhance the comprehensibility of the user documentation.
10+
511
## [v1.1.0] - 2023-05-11
612

713
### Changed

typescript-lib/fittable-model-operations/package-lock.json

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typescript-lib/fittable-model-operations/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fittable-model-operations",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Fittable model operations",
55
"homepage": "https://fittable-499b2.web.app",
66
"type": "module",
@@ -38,7 +38,7 @@
3838
"@typescript-eslint/parser": "^5.57.0",
3939
"c8": "^7.13.0",
4040
"eslint": "^8.37.0",
41-
"fittable-model": "^1.1.0",
41+
"fittable-model": "^1.1.1",
4242
"jasmine": "^4.6.0",
4343
"rxjs": "^7.8.0",
4444
"source-map-support": "^0.5.21",
@@ -47,7 +47,7 @@
4747
"typescript": "^5.0.2"
4848
},
4949
"dependencies": {
50-
"fittable-core": "^1.1.0"
50+
"fittable-core": "^2.0.0"
5151
},
5252
"files": [
5353
"dist",

typescript-lib/fittable-model/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [v1.1.1] - 2023-06-12
6+
7+
### Changed
8+
9+
- Enhance the comprehensibility of the user documentation.
10+
511
## [v1.1.0] - 2023-05-11
612

713
### Changed

typescript-lib/fittable-model/package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)