Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
FLOW-958 namespace updated from cldcvr to ollion
Browse files Browse the repository at this point in the history
  • Loading branch information
vikas-cldcvr committed Jan 10, 2024
1 parent 07ec1fd commit a89f5cf
Show file tree
Hide file tree
Showing 12 changed files with 2,253 additions and 2,531 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
"@ollion/flow-core-config":"packages/flow-core-config/CHANGELOG.md",
"@ollion/flow-form-builder":"packages/flow-form-builder/CHANGELOG.md",
"@ollion/flow-lineage":"packages/flow-lineage/CHANGELOG.md",
"@cldcvr/flow-dashboard":"packages/flow-dashboard/CHANGELOG.md",
"@ollion/flow-dashboard":"packages/flow-dashboard/CHANGELOG.md",
"@ollion/custom-elements-manifest-to-types":"packages/custom-elements-manifest-to-types/CHANGELOG.md"
}
Expand Down
2 changes: 1 addition & 1 deletion .storybook/preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import "@ollion/flow-table";
import "@ollion/flow-md-editor";
import "@ollion/flow-form-builder";
import "@ollion/flow-lineage";
import "@cldcvr/flow-dashboard";
import "@ollion/flow-dashboard";

import { setCustomElementsManifest, setCustomElements } from "@storybook/web-components";
import { themes } from "@storybook/theming";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"@ollion/flow-product-icon": "latest",
"@ollion/flow-system-icon": "latest",
"@ollion/flow-table": "workspace:*",
"@cldcvr/flow-dashboard": "workspace:*",
"@ollion/flow-dashboard": "workspace:*",
"jspdf": "^2.5.1",
"lit": "^3.1.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/flow-dashboard/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

### First Release

- `@cldcvr/flow-dashboard` released.
- `@ollion/flow-dashboard` released.
14 changes: 7 additions & 7 deletions packages/flow-dashboard/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Flow Table

The Flow table is built on the Flow design framework ([website](https://flow.cldcvr.com/) / [github](https://github.com/cldcvr/flow-core))
The Flow table is built on the Flow design framework ([website](https://flow.ollion.com/) / [github](https://github.com/ollionorg/flow-core))

# Installation

### 1️⃣ Install flow table dependency

```
npm i --save @cldcvr/flow-dashboard
npm i --save @ollion/flow-dashboard
```

**Note:** after installation, re-start your application.
Expand All @@ -19,8 +19,8 @@ npm i --save @cldcvr/flow-dashboard
Paste the below snippet in your project and add your application startup/runtime code to it.

```javascript
import "@cldcvr/flow-core";
import "@cldcvr/flow-dashboard";
import "@ollion/flow-core";
import "@ollion/flow-dashboard";
```

<br>
Expand All @@ -33,7 +33,7 @@ import "@cldcvr/flow-dashboard";
Copy paste below import types in your `main.ts` file.

```Javascript
import "@cldcvr/flow-dashboard/dist/types/vue3";
import "@ollion/flow-dashboard/dist/types/vue3";
```

<details>
Expand All @@ -42,7 +42,7 @@ import "@cldcvr/flow-dashboard/dist/types/vue3";
Copy paste below import types in your `main.ts` file.

```Javascript
import "@cldcvr/flow-dashboard/dist/types/vue2";
import "@ollion/flow-dashboard/dist/types/vue2";
```

</details>
Expand All @@ -53,7 +53,7 @@ import "@cldcvr/flow-dashboard/dist/types/vue2";
**React**: Include react type in `tsconfig.json` file like below.

```json
"include": ["src", "./node_modules/@cldcvr/flow-dashboard/dist/types/react.ts"]
"include": ["src", "./node_modules/@ollion/flow-dashboard/dist/types/react.ts"]
```

</details>
Expand Down
18 changes: 9 additions & 9 deletions packages/flow-dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@cldcvr/flow-dashboard",
"name": "@ollion/flow-dashboard",
"version": "0.0.1",
"description": "Dashboard as code",
"module": "dist/flow-dashboard.es.js",
Expand All @@ -21,16 +21,16 @@
"lit"
],
"dependencies": {
"@cldcvr/flow-core": "workspace:*",
"@cldcvr/flow-core-config": "workspace:*",
"@ollion/flow-core": "workspace:*",
"@ollion/flow-core-config": "workspace:*",
"axios": "^0.27.2",
"d3": "^7.6.1",
"gridstack": "^9.5.0",
"lit": "^3.1.0"
},
"peerDependencies": {
"@cldcvr/flow-core": "^*",
"@cldcvr/flow-core-config": "^*"
"@ollion/flow-core": "^*",
"@ollion/flow-core-config": "^*"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.5.7",
Expand All @@ -49,7 +49,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/cldcvr/flow-core.git",
"url": "https://github.com/ollionorg/flow-core.git",
"directory": "packages/flow-dashboard"
},
"publishConfig": {
Expand All @@ -58,9 +58,9 @@
},
"customElements": "custom-elements.json",
"bugs": {
"url": "https://github.com/cldcvr/flow-core/issues"
"url": "https://github.com/ollionorg/flow-core/issues"
},
"homepage": "https://github.com/cldcvr/flow-core/packages/flow-dashboard#readme",
"author": "@cldcvr",
"homepage": "https://github.com/ollionorg/flow-core/packages/flow-dashboard#readme",
"author": "@ollion",
"license": "MIT"
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { CSSResult, html, PropertyValueMap, unsafeCSS } from "lit";
import { property } from "lit/decorators.js";
import { FRoot, flowElement } from "@cldcvr/flow-core";
import { FRoot, flowElement } from "@ollion/flow-core";
import globalStyle from "./f-dashboard-global.scss?inline";
import { injectCss } from "@cldcvr/flow-core-config";
import { injectCss } from "@ollion/flow-core-config";
import { GridStack } from "gridstack";
import { FDashboardConfig, FDashboardWidget } from "../../types";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { html, PropertyValueMap, unsafeCSS, svg, render } from "lit";
import { property } from "lit/decorators.js";
import { FRoot, flowElement, FDiv } from "@cldcvr/flow-core";
import { FRoot, flowElement, FDiv } from "@ollion/flow-core";
import globalStyle from "./f-timeseries-chart-global.scss?inline";
import { injectCss } from "@cldcvr/flow-core-config";
import { injectCss } from "@ollion/flow-core-config";
import * as d3 from "d3";
import { NumberValue } from "d3";
import { createRef, Ref, ref } from "lit/directives/ref.js";
Expand Down
4 changes: 2 additions & 2 deletions packages/flow-dashboard/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export default defineConfig({
// If we want to publish standalone components we don't externalize lit,
// if you are going to use lit in your own project, you can make it a dep instead.
// external: /^lit/, <-- comment this line
external: ["@cldcvr/flow-core-config", "@cldcvr/flow-core", /^lit/],
external: ["@ollion/flow-core-config", "@ollion/flow-core", /^lit/],
output: {
globals: {
"@cldcvr/flow-core": "@cldcvr/flow-core"
"@ollion/flow-core": "@ollion/flow-core"
}
}
}
Expand Down
Loading

0 comments on commit a89f5cf

Please sign in to comment.