Skip to content

Commit

Permalink
Merge pull request #671 from revolist/next-v
Browse files Browse the repository at this point in the history
feat: stencil core up
  • Loading branch information
revolist authored Jan 5, 2025
2 parents 95ee04c + f4dc779 commit ca9ebe4
Show file tree
Hide file tree
Showing 12 changed files with 143 additions and 141 deletions.
2 changes: 1 addition & 1 deletion docs
Submodule docs updated 226 files
245 changes: 124 additions & 121 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@revolist/revogrid",
"version": "4.11.8",
"version": "4.11.10",
"type": "module",
"description": "Virtual reactive data grid spreadsheet component - RevoGrid.",
"license": "MIT",
Expand Down Expand Up @@ -107,14 +107,14 @@
"@revolist/stencil-vue2-output-target": "^0.0.6",
"@revolist/svelte-output-target": "0.0.5",
"@stencil/angular-output-target": "0.8.4",
"@stencil/core": "4.20.0",
"@stencil/core": "4.23.0",
"@stencil/react-output-target": "0.5.3",
"@stencil/sass": "^3.0.12",
"@stencil/store": "^2.0.16",
"@stencil/vue-output-target": "^0.8.9",
"@types/events": "^3.0.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
"@types/lodash": "^4.17.14",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
Expand All @@ -133,12 +133,12 @@
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rxjs": "^7.8.1",
"svelte": "^5.2.10",
"svelte": "^5.16.1",
"typedoc": "^0.26.5",
"typedoc-plugin-markdown": "^4.2.3",
"typescript": "^5.5.4",
"url": "^0.11.3",
"vue": "^3.4.34"
"vue": "^3.5.13"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/angular
2 changes: 1 addition & 1 deletion packages/react
Submodule react updated 2 files
+1 −1 demo/package.json
+2 −2 package.json
2 changes: 1 addition & 1 deletion packages/svelte
2 changes: 1 addition & 1 deletion packages/vue2
2 changes: 1 addition & 1 deletion packages/vue3
5 changes: 4 additions & 1 deletion src/components/revoGrid/revo-grid-style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
@import './styles/revo-grid.compact.scss';

revo-grid {
display: block;
/*
* Grid required to have a flex property to be able to stretch
*/
display: flex !important;
height: 100%;
/**
* In some cases the min-height is not enough for safari
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/filter/filter.plugin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export class FilterPlugin extends BasePlugin {

/**
* which filters has to be included/excluded
* convinient way to exclude system filters
* convenient way to exclude system filters
*/
const cfgInlcude = config.include;
if (cfgInlcude) {
Expand Down
9 changes: 2 additions & 7 deletions src/services/dimension.provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ export default class DimensionProvider {
}
this.stores[type].setDimensionSize(newSizes);
this.setViewPortCoordinate({
coordinate: this.viewports.stores[type].lastCoordinate,
type,
force: true,
});
Expand All @@ -110,7 +109,6 @@ export default class DimensionProvider {
const dimStoreType = this.stores[type];
dimStoreType.setStore({ trimmed: allTrimmed });
this.setViewPortCoordinate({
coordinate: this.viewports.stores[type].lastCoordinate,
type,
force: true,
});
Expand All @@ -133,7 +131,6 @@ export default class DimensionProvider {
});
}
this.setViewPortCoordinate({
coordinate: this.viewports.stores[type].lastCoordinate,
type,
});
}
Expand Down Expand Up @@ -182,7 +179,6 @@ export default class DimensionProvider {
// Update the viewport
this.viewports.stores[type].setViewport(vpUpdate);
this.setViewPortCoordinate({
coordinate: this.viewports.stores[type].lastCoordinate,
type,
});
}
Expand All @@ -206,11 +202,11 @@ export default class DimensionProvider {
}

setViewPortCoordinate({
coordinate,
type,
coordinate = this.viewports.stores[type].lastCoordinate,
force = false,
}: {
coordinate: number;
coordinate?: number;
type: MultiDimensionType;
force?: boolean;
}) {
Expand Down Expand Up @@ -258,7 +254,6 @@ export default class DimensionProvider {
prevItemsOrder,
);
this.setViewPortCoordinate({
coordinate: this.viewports.stores[type].lastCoordinate,
type,
force: true,
});
Expand Down
1 change: 1 addition & 0 deletions stencil.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export const config: Config = {
hashFileNames: false,
autoprefixCss: false,
minifyCss: true,
minifyJs: true,
preamble: 'Built by Revolist OU ❤️',
hashedFileNameLength: 8,
invisiblePrehydration: false,
Expand Down

0 comments on commit ca9ebe4

Please sign in to comment.