diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d5ad2fe5b..fe2dbeac2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ -name: Build +name: Build and Deploy on: - push: + pull_request: branches: - main @@ -10,16 +10,9 @@ defaults: shell: bash working-directory: . -env: - DISTRIBUTION_ID: E2ZI9E4QTG3PZ9 - BUCKET_NAME: flow.ollion.com - AWS_REGION: us-east-1 - ROLE_NAME: flow.ollion.com-role - ACCOUNT_ID: 679519065279 - jobs: build: - name: Build and upload to amazon s3 + name: Build and Deploy to GitHub Pages runs-on: ubuntu-latest permissions: id-token: write @@ -28,10 +21,10 @@ jobs: - name: Checkout Repository uses: actions/checkout@v2 - - name: Setup Node.js 18.x + - name: Setup Node.js 20.x uses: actions/setup-node@v2 with: - node-version: 18.x + node-version: 20.x - name: Install pnpm run: corepack enable && corepack prepare pnpm@8.9.0 --activate @@ -39,20 +32,12 @@ jobs: - name: Install Dependencies and Build run: make build - - name: Configure AWS credentials from Test account - uses: aws-actions/configure-aws-credentials@v1 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 with: - role-to-assume: arn:aws:iam::${{env.ACCOUNT_ID}}:role/${{env.ROLE_NAME}} - aws-region: ${{env.AWS_REGION}} - - - name: Check Access - run: | - aws sts get-caller-identity - - - name: Copy files to the website with the AWS CLI - run: | - aws s3 sync storybook-static/ s3://${{env.BUCKET_NAME}}/v2/ - - - name: Invalidate CloudFront - run: | - aws cloudfront create-invalidation --distribution-id ${{env.DISTRIBUTION_ID}} --paths "/*" + path: "storybook-static/" + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9b19ffb3d..b85ff7a7a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,7 +1,7 @@ name: Test and Release on: - push: + pull_request: branches: - main @@ -44,17 +44,17 @@ jobs: released-package-versions: ${{ steps.changesets.outputs.publishedPackages }} changelog-files-config: | { - "@ollion/flow-log":"packages/flow-log/CHANGELOG.md", - "@ollion/flow-code-editor":"packages/flow-code-editor/CHANGELOG.md", - "@ollion/flow-md-editor":"packages/flow-md-editor/CHANGELOG.md", - "@ollion/flow-text-editor":"packages/flow-text-editor/CHANGELOG.md", - "@ollion/flow-core":"packages/flow-core/CHANGELOG.md", - "@ollion/flow-table":"packages/flow-table/CHANGELOG.md", - "@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", - "@ollion/flow-dashboard":"packages/flow-dashboard/CHANGELOG.md", - "@ollion/custom-elements-manifest-to-types":"packages/custom-elements-manifest-to-types/CHANGELOG.md" + "@nonfx/flow-log":"packages/flow-log/CHANGELOG.md", + "@nonfx/flow-code-editor":"packages/flow-code-editor/CHANGELOG.md", + "@nonfx/flow-md-editor":"packages/flow-md-editor/CHANGELOG.md", + "@nonfx/flow-text-editor":"packages/flow-text-editor/CHANGELOG.md", + "@nonfx/flow-core":"packages/flow-core/CHANGELOG.md", + "@nonfx/flow-table":"packages/flow-table/CHANGELOG.md", + "@nonfx/flow-core-config":"packages/flow-core-config/CHANGELOG.md", + "@nonfx/flow-form-builder":"packages/flow-form-builder/CHANGELOG.md", + "@nonfx/flow-lineage":"packages/flow-lineage/CHANGELOG.md", + "@nonfx/flow-dashboard":"packages/flow-dashboard/CHANGELOG.md", + "@nonfx/custom-elements-manifest-to-types":"packages/custom-elements-manifest-to-types/CHANGELOG.md" } - name: Send Slack Notification diff --git a/.storybook/code-sandbox.js b/.storybook/code-sandbox.js index 1553d2e38..ff7ebba58 100644 --- a/.storybook/code-sandbox.js +++ b/.storybook/code-sandbox.js @@ -4,7 +4,7 @@ export function getCodeSandBoxUrl(story) { const params = getParameters({ files: { "index.js": { - content: `import "@ollion/flow-core"; + content: `import "@nonfx/flow-core"; import "@ollion/flow-system-icon"; document.getElementById("app").innerHTML =\`${story}\` `, @@ -33,7 +33,7 @@ export function getCodeSandBoxUrl(story) { content: { dependencies: { "@ollion/flow-system-icon": "latest", - "@ollion/flow-core": "latest" + "@nonfx/flow-core": "latest" } } } diff --git a/.storybook/main.ts b/.storybook/main.ts index cc56872bd..86d39fbe5 100644 --- a/.storybook/main.ts +++ b/.storybook/main.ts @@ -13,7 +13,7 @@ const alias = [ "flow-table", "flow-dashboard" ].map(pkg => ({ - find: `@ollion/${pkg}`, + find: `@nonfx/${pkg}`, replacement: path.resolve(__dirname, "../packages", pkg, "src") })); diff --git a/.storybook/preview.ts b/.storybook/preview.ts index bac1f03c5..6bb825900 100644 --- a/.storybook/preview.ts +++ b/.storybook/preview.ts @@ -4,17 +4,17 @@ import ProductIconPack from "@ollion/flow-product-icon/dist/types/icon-pack"; import GcpIconPack from "@ollion/flow-gcp-icon/dist/types/icon-pack"; import AwsIconPack from "@ollion/flow-aws-icon/dist/types/icon-pack"; -import { ConfigUtil } from "@ollion/flow-core-config"; +import { ConfigUtil } from "@nonfx/flow-core-config"; import { changeRoute } from "./utils"; -import "@ollion/flow-core"; -import "@ollion/flow-log"; -import "@ollion/flow-code-editor"; -import "@ollion/flow-table"; -import "@ollion/flow-md-editor"; -import "@ollion/flow-text-editor"; -import "@ollion/flow-form-builder"; -import "@ollion/flow-lineage"; -import "@ollion/flow-dashboard"; +import "@nonfx/flow-core"; +import "@nonfx/flow-log"; +import "@nonfx/flow-code-editor"; +import "@nonfx/flow-table"; +import "@nonfx/flow-md-editor"; +import "@nonfx/flow-text-editor"; +import "@nonfx/flow-form-builder"; +import "@nonfx/flow-lineage"; +import "@nonfx/flow-dashboard"; import { setCustomElementsManifest, setCustomElements } from "@storybook/web-components"; import { themes } from "@storybook/theming"; @@ -54,7 +54,7 @@ export const parameters = { order: [ "About", "foundation", - "@ollion", + "@nonfx", [ "flow-core", ["About", "Release Notes"], diff --git a/ABOUT.md b/ABOUT.md index d86ec9121..3891e1459 100644 --- a/ABOUT.md +++ b/ABOUT.md @@ -33,7 +33,7 @@ When it comes to property values, Flow works with a list of default property val Everything for front-end implementation that is available in Flow is required to exist as a Figma document as well. The Figma component properties will be the same properties for the front-end developer. This allows for better design handover + developer experience. -If you are a developer thas a new contribution to Flow and do not have Figma experience/skills, you can write to flow@ollion.com and someone from CloudCover’s design team will get in touch with you. Keep in mind that the designers are actively engaged in other products and a response/implementation might take a little time. +If you are a developer thas a new contribution to Flow and do not have Figma experience/skills, you can write to flow@nonfx.com and someone from CloudCover’s design team will get in touch with you. Keep in mind that the designers are actively engaged in other products and a response/implementation might take a little time. ## Everything as dependencies diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 513c13c4b..018210291 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,7 +4,7 @@ Thank you for your interest in contributing! 🎉👍 Flow is a framework that is made up of multiple dependencies / templates. Visit the [about.md](https://github.com/ollionorg/flow-core/blob/main/ABOUT.md) on the [flow-core repo](https://github.com/ollionorg/flow-core/) to learn more. -When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the [owners](https://github.com/ollionorg/flow-core/blob/main/CODEOWNERS) of this repository before making a change. You can expect a response from a maintainer within a week. If you haven’t heard anything by then, write to flow@ollion.com. +When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the [owners](https://github.com/ollionorg/flow-core/blob/main/CODEOWNERS) of this repository before making a change. You can expect a response from a maintainer within a week. If you haven’t heard anything by then, write to flow@nonfx.com. Please note we have a code of conduct, please follow it in all your interactions with the project. @@ -39,7 +39,7 @@ All issues as tracked here. Once you have resolved an issue, - Flow color tokens have been consumed and no custom tokens have been created. - Create a pull request in this repository by uploading your dependency package. - In the PR description link to the respective figma page/file -- Include screenshots, animated GIFs or videos of the feature, you can also send it to flow@ollion.com with a reference to the PR. +- Include screenshots, animated GIFs or videos of the feature, you can also send it to flow@nonfx.com with a reference to the PR. ### Design and define new components @@ -49,7 +49,7 @@ All issues as tracked here. Once you have resolved an issue, ### Flow Documentation - Guidlines coming soon -- If you would like to contribute to this document and guidlines, write into flow@ollion.com +- If you would like to contribute to this document and guidlines, write into flow@nonfx.com ## Pull Request Process @@ -115,7 +115,7 @@ further defined and clarified by project maintainers. ### Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at [gcf-team](mailto:gcf-team@ollion.com). All +reported by contacting the project team at [gcf-team](mailto:gcf-team@nonfx.com). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. diff --git a/README.md b/README.md index 72512854b..003c3c359 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ For a new project, Flow has put together starter kits with basic dependencies to - [Aungular](https://github.com/ollionorg/flow-starterkit-angular) - [React](https://github.com/ollionorg/flow-starterkit-react) -If you would like to contribute to an existing starter kit or write a new one for a different framework, write to or ping on our slack channel. +If you would like to contribute to an existing starter kit or write a new one for a different framework, write to or ping on our slack channel. **VScode Plugin**: [Install Flow's Plugin](https://marketplace.visualstudio.com/items?itemName=dev-vikas.flow-intellisense-vscode) to access components, icons, values, etc, and documentation inside of VScode. @@ -45,7 +45,7 @@ If you would like to contribute to an existing starter kit or write a new one fo #### 1️⃣ Install flow core -`npm i --save @ollion/flow-core` +`npm i --save @nonfx/flow-core` _Note:_ after installation re-start your application. @@ -56,7 +56,7 @@ _Note:_ after installation re-start your application. Copy and import the below snippet into your startup file. In **VueJS:** (src/main.ts or main.js), **Angular:** (src/main.ts), **React:** (src/index.tsx or index.jsx) ```JavaScript -import "@ollion/flow-core"; +import "@nonfx/flow-core"; ```
@@ -67,20 +67,20 @@ import "@ollion/flow-core"; Copy paste below line in your `main.ts` file. ```JavaScript -import "@ollion/flow-core/dist/types/vue2"; +import "@nonfx/flow-core/dist/types/vue2"; ``` or ```JavaScript -import "@ollion/flow-core/dist/types/vue3"; +import "@nonfx/flow-core/dist/types/vue3"; ``` **React** Include react type in `tsconfig.json` like below ```JSON -"include": ["src", "./node_modules/@ollion/flow-core/dist/types/react.ts"] +"include": ["src", "./node_modules/@nonfx/flow-core/dist/types/react.ts"] ``` **Note:** after adding the snippets, re-start your application. @@ -98,7 +98,7 @@ npm i --save @ollion/flow-system-icon ### 2️⃣ Import the icon pack ```javascript -import "@ollion/flow-core"; +import "@nonfx/flow-core"; import "@ollion/flow-system-icon"; ``` @@ -136,4 +136,4 @@ Visit the [Flow templates Storybook](https://flow.ollion.com/templates/index.htm ## Get in touch -If you would like to get in touch or contribute, please write to . +If you would like to get in touch or contribute, please write to . diff --git a/SUPPORT.md b/SUPPORT.md index 4b09b1210..82682a1bc 100644 --- a/SUPPORT.md +++ b/SUPPORT.md @@ -8,7 +8,7 @@ There are several avenues available to you for obtaining support for Flow Lineag **Documentation:** Flow Lineage comes with comprehensive documentation that includes installation instructions, usage guidelines, and troubleshooting information, know issues file, etc. Please refer to the documentation first as it may have the answers to your questions. -**Email:** If you prefer to contact us directly, you can send an email to flow@ollion.com . Please provide a detailed description of your issue or question, along with any relevant information, and we will get back to you as soon as possible. +**Email:** If you prefer to contact us directly, you can send an email to flow@nonfx.com . Please provide a detailed description of your issue or question, along with any relevant information, and we will get back to you as soon as possible. ## How to Request Support diff --git a/docs/how-to-apply-ollion-theme.md b/docs/how-to-apply-ollion-theme.md index bcd7f3f5e..0069d5444 100644 --- a/docs/how-to-apply-ollion-theme.md +++ b/docs/how-to-apply-ollion-theme.md @@ -5,7 +5,7 @@ Run the following magic spell to transform your existing theme into the enchanting `f-ollion-dark`. ```Javascript -import { ConfigUtil } from "@ollion/flow-core"; +import { ConfigUtil } from "@nonfx/flow-core"; ConfigUtil.setConfig({ theme: "f-ollion-dark" }); ``` diff --git a/docs/nuxt3-integration.md b/docs/nuxt3-integration.md index bd18f9752..eff91cdbf 100644 --- a/docs/nuxt3-integration.md +++ b/docs/nuxt3-integration.md @@ -11,7 +11,7 @@ Before we dive into the integration process, make sure you have a basic understa To get started, install the Flow Web Component library in your Nuxt project using your preferred package manager: ```bash -npm i --save @ollion/flow-core +npm i --save @nonfx/flow-core ``` ### Step 2: Register Flow components through a Nuxt plugin @@ -26,8 +26,8 @@ export default defineNuxtPlugin({ enforce: "pre", async setup(_nuxtApp) { await Promise.all([ - import("@ollion/flow-core"), - import("@ollion/flow-form-builder"), + import("@nonfx/flow-core"), + import("@nonfx/flow-form-builder"), import("@ollion/flow-system-icon") ]).then(() => { console.log("Flow components loaded"); diff --git a/generate-types.cjs b/generate-types.cjs index 6929bcafd..ca10df5ff 100644 --- a/generate-types.cjs +++ b/generate-types.cjs @@ -2,7 +2,7 @@ const fs = require("fs-extra"); const path = require("path"); -const { transformSchema } = require("@ollion/custom-elements-manifest-to-types"); +const { transformSchema } = require("@nonfx/custom-elements-manifest-to-types"); const { execSync } = require("child_process"); const dirPaths = execSync('find ./packages -name "custom-elements.json"', { diff --git a/package.json b/package.json index 1f821fae6..d263ea3ac 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "postinstall": "tsc -b" }, "engines": { - "node": "^18.12.0", + "node": "^20.16.0", "pnpm": ">=8.9.0" }, "keywords": [ @@ -37,7 +37,7 @@ "devDependencies": { "@changesets/cli": "^2.25.0", "@faker-js/faker": "^8.3.1", - "@ollion/custom-elements-manifest-to-types": "workspace:*", + "@nonfx/custom-elements-manifest-to-types": "workspace:*", "@ollion/prettier-config": "^2.1.0", "@storybook/addon-a11y": "^7.6.12", "@storybook/addon-actions": "^7.5.3", @@ -72,18 +72,18 @@ }, "dependencies": { "@ollion/flow-aws-icon": "latest", - "@ollion/flow-code-editor": "workspace:*", - "@ollion/flow-core": "workspace:*", - "@ollion/flow-dashboard": "workspace:*", - "@ollion/flow-form-builder": "workspace:*", + "@nonfx/flow-code-editor": "workspace:*", + "@nonfx/flow-core": "workspace:*", + "@nonfx/flow-dashboard": "workspace:*", + "@nonfx/flow-form-builder": "workspace:*", "@ollion/flow-gcp-icon": "latest", - "@ollion/flow-lineage": "workspace:*", - "@ollion/flow-log": "workspace:*", - "@ollion/flow-md-editor": "workspace:*", - "@ollion/flow-text-editor": "workspace:*", + "@nonfx/flow-lineage": "workspace:*", + "@nonfx/flow-log": "workspace:*", + "@nonfx/flow-md-editor": "workspace:*", + "@nonfx/flow-text-editor": "workspace:*", "@ollion/flow-product-icon": "1.14.0", "@ollion/flow-system-icon": "latest", - "@ollion/flow-table": "workspace:*", + "@nonfx/flow-table": "workspace:*", "d3": "^7.6.1", "jspdf": "^2.5.1", "lit": "^3.1.0" @@ -98,5 +98,6 @@ "mobile": false } } - } + }, + "packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e" } diff --git a/packages/custom-elements-manifest-to-types/CHANGELOG.md b/packages/custom-elements-manifest-to-types/CHANGELOG.md index f905cd146..02e052c72 100644 --- a/packages/custom-elements-manifest-to-types/CHANGELOG.md +++ b/packages/custom-elements-manifest-to-types/CHANGELOG.md @@ -1,4 +1,4 @@ -# @ollion/custom-elements-manifest-to-types +# @nonfx/custom-elements-manifest-to-types ## [2.0.5] - 2024-07-08 diff --git a/packages/custom-elements-manifest-to-types/package.json b/packages/custom-elements-manifest-to-types/package.json index a5fadb645..cc7e9475c 100644 --- a/packages/custom-elements-manifest-to-types/package.json +++ b/packages/custom-elements-manifest-to-types/package.json @@ -1,5 +1,5 @@ { - "name": "@ollion/custom-elements-manifest-to-types", + "name": "@nonfx/custom-elements-manifest-to-types", "version": "2.0.5", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/flow-code-editor/CHANGELOG.md b/packages/flow-code-editor/CHANGELOG.md index 8d6059b89..0d6e7ff06 100644 --- a/packages/flow-code-editor/CHANGELOG.md +++ b/packages/flow-code-editor/CHANGELOG.md @@ -20,8 +20,8 @@ - Remove sideEffects because the components require registration via import - Updated dependencies -- `@ollion/flow-core-config@1.1.3` -- `@ollion/flow-core@2.0.3` +- `@nonfx/flow-core-config@1.1.3` +- `@nonfx/flow-core@2.0.3` ## [1.0.2] - 2023-10-10 @@ -29,8 +29,8 @@ - a2de106: Fix platform types - Updated dependencies [a2de106] -- `@ollion/flow-core-config@1.1.1` -- `@ollion/flow-core@2.0.1` +- `@nonfx/flow-core-config@1.1.1` +- `@nonfx/flow-core@2.0.1` ## [1.0.1-beta.0] - 2023-10-10 @@ -38,8 +38,8 @@ - Fix platform types - Updated dependencies -- `@ollion/flow-core-config@1.1.1-beta.0` -- `@ollion/flow-core@2.0.1-beta.0` +- `@nonfx/flow-core-config@1.1.1-beta.0` +- `@nonfx/flow-core@2.0.1-beta.0` ## [1.0.0] - 2023-10-10 @@ -50,7 +50,7 @@ ### Patch Changes - Updated dependencies -- `@ollion/flow-core@2.0.0` +- `@nonfx/flow-core@2.0.0`
## [0.2.0] - 2023-08-03 diff --git a/packages/flow-code-editor/README.md b/packages/flow-code-editor/README.md index 3c5e7361e..b982506f3 100644 --- a/packages/flow-code-editor/README.md +++ b/packages/flow-code-editor/README.md @@ -7,7 +7,7 @@ The Flow code editor is built on the Flow design framework ([website](https://fl ### 1️⃣ Install flow code editor dependency ``` -npm i --save @ollion/flow-code-editor +npm i --save @nonfx/flow-code-editor ``` **Note:** after installation, re-start your application. @@ -19,8 +19,8 @@ npm i --save @ollion/flow-code-editor Paste the below snippet in your project and add your application startup/runtime code to it. ```javascript -import "@ollion/flow-core"; -import "@ollion/flow-code-editor"; +import "@nonfx/flow-core"; +import "@nonfx/flow-code-editor"; ```
@@ -33,7 +33,7 @@ import "@ollion/flow-code-editor"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-code-editor/dist/types/vue3"; +import "@nonfx/flow-code-editor/dist/types/vue3"; ```
@@ -42,7 +42,7 @@ import "@ollion/flow-code-editor/dist/types/vue3"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-code-editor/dist/types/vue2"; +import "@nonfx/flow-code-editor/dist/types/vue2"; ```
@@ -53,7 +53,7 @@ import "@ollion/flow-code-editor/dist/types/vue2"; **React**: Include react type in `tsconfig.json` file like below. ```json -"include": ["src", "./node_modules/@ollion/flow-code-editor/dist/types/react.ts"] +"include": ["src", "./node_modules/@nonfx/flow-code-editor/dist/types/react.ts"] ``` @@ -103,7 +103,7 @@ const copyDir = (src, dest, callback?: (er: Error) => void) => { }); }; -copyDir("node_modules/@ollion/flow-code-editor/dist/assets", "assets"); +copyDir("node_modules/@nonfx/flow-code-editor/dist/assets", "assets"); ``` ### add specify `assets` folder in `assetsInclude` property. diff --git a/packages/flow-code-editor/package.json b/packages/flow-code-editor/package.json index 3599524f7..2e4d7b221 100644 --- a/packages/flow-code-editor/package.json +++ b/packages/flow-code-editor/package.json @@ -1,5 +1,5 @@ { - "name": "@ollion/flow-code-editor", + "name": "@nonfx/flow-code-editor", "version": "1.1.1", "description": "Code editor component for flow library", "module": "dist/flow-code-editor.es.js", @@ -18,8 +18,8 @@ "lit" ], "dependencies": { - "@ollion/flow-core": "workspace:*", - "@ollion/flow-core-config": "workspace:*", + "@nonfx/flow-core": "workspace:*", + "@nonfx/flow-core-config": "workspace:*", "lit": "^3.1.0", "monaco-editor": "^0.38.0" }, @@ -38,8 +38,8 @@ "web-component-analyzer": "^2.0.0-next.4" }, "peerDependencies": { - "@ollion/flow-core": "^2.0.3", - "@ollion/flow-core-config": "^1.1.3" + "@nonfx/flow-core": "^2.0.3", + "@nonfx/flow-core-config": "^1.1.3" }, "repository": { "type": "git", @@ -55,6 +55,6 @@ "url": "https://github.com/ollionorg/flow-core/issues" }, "homepage": "https://github.com/ollionorg/flow-table#readme", - "author": "@ollion", + "author": "@nonfx", "license": "MIT" } diff --git a/packages/flow-code-editor/src/components/f-code-editor/f-code-editor.ts b/packages/flow-code-editor/src/components/f-code-editor/f-code-editor.ts index f38483c30..2005f7443 100644 --- a/packages/flow-code-editor/src/components/f-code-editor/f-code-editor.ts +++ b/packages/flow-code-editor/src/components/f-code-editor/f-code-editor.ts @@ -1,11 +1,11 @@ import { html, PropertyValueMap, unsafeCSS } from "lit"; -import { FRoot, flowElement, FButton } from "@ollion/flow-core"; +import { FRoot, flowElement, FButton } from "@nonfx/flow-core"; import globalStyle from "./f-code-editor-global.scss?inline"; import * as monaco from "monaco-editor"; import { property, query } from "lit/decorators.js"; import { languageCommentsMap } from "../../utils/lang-comments-map"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-code-editor", globalStyle); diff --git a/packages/flow-code-editor/vite.config.ts b/packages/flow-code-editor/vite.config.ts index 5bdb9d3f5..ae8faa024 100644 --- a/packages/flow-code-editor/vite.config.ts +++ b/packages/flow-code-editor/vite.config.ts @@ -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: ["@ollion/flow-core-config", "@ollion/flow-core", /^lit/, "monaco-editor"], + external: ["@nonfx/flow-core-config", "@nonfx/flow-core", /^lit/, "monaco-editor"], output: { globals: { - "@ollion/flow-core": "@ollion/flow-core" + "@nonfx/flow-core": "@nonfx/flow-core" } } } diff --git a/packages/flow-core-config/package.json b/packages/flow-core-config/package.json index bb7a84c34..96ac1f6ce 100644 --- a/packages/flow-core-config/package.json +++ b/packages/flow-core-config/package.json @@ -1,5 +1,5 @@ { - "name": "@ollion/flow-core-config", + "name": "@nonfx/flow-core-config", "version": "1.1.3", "description": "Shared configuration for the Flow UI library", "module": "dist/index.es.js", @@ -29,6 +29,6 @@ "url": "https://github.com/ollionorg/flow-core/issues" }, "homepage": "https://github.com/ollionorg/flow-core#readme", - "author": "@ollion", + "author": "@nonfx", "license": "MIT" } diff --git a/packages/flow-core/CHANGELOG.md b/packages/flow-core/CHANGELOG.md index c61b9bfae..4b23f7b19 100644 --- a/packages/flow-core/CHANGELOG.md +++ b/packages/flow-core/CHANGELOG.md @@ -265,7 +265,7 @@ ### Improvements - The 1Password manager does not currently support Shadow DOM for autofill, and a timeline for its implementation has not been provided. Consequently, we are introducing `f-input-light` as a light DOM alternative to `f-input`. -- Login form story added [here](https://flow.ollion.com/v2/index.html?path=/story/ollion-flow-form-builder-examples--login-form). It uses `f-input-light` and validation module from `@ollion/flow-form-builder`. +- Login form story added [here](https://flow.ollion.com/v2/index.html?path=/story/ollion-flow-form-builder-examples--login-form). It uses `f-input-light` and validation module from `@nonfx/flow-form-builder`. - `f-form-field` wrapper elements added to support `lable`, `subtitle`,`help` slots. - **Note : `f-input-light` won't support `lable`, `subtitle`,`help` slots**. @@ -396,7 +396,7 @@ - Remove sideEffects because the components require registration via import - Updated dependencies -- `@ollion/flow-core-config@1.1.3` +- `@nonfx/flow-core-config@1.1.3` ## [2.0.2] - 2023-10-10 @@ -404,7 +404,7 @@ - a2de106: Fix platform types - Updated dependencies [a2de106] -- `@ollion/flow-core-config@1.1.1` +- `@nonfx/flow-core-config@1.1.1` ## [2.0.1-beta.0] - 2023-10-10 @@ -412,7 +412,7 @@ - Fix platform types - Updated dependencies -- `@ollion/flow-core-config@1.1.1-beta.0` +- `@nonfx/flow-core-config@1.1.1-beta.0` ## [2.0.0] - 2023-10-10 @@ -423,7 +423,7 @@ ### Patch Changes - Updated dependencies -- `@ollion/flow-core-config@1.1.0` +- `@nonfx/flow-core-config@1.1.0`

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

@@ -759,7 +759,7 @@ ### Improvements -- Extract shared configuration into `@ollion/flow-core-config` package. +- Extract shared configuration into `@nonfx/flow-core-config` package. - Allow loading of icon bundles asynchronously ### Bug Fixes @@ -1203,7 +1203,7 @@ ### Bug fixes -- `size`, `variant`, `category` removed from `f-form` since it is anti pattern to set it on inner input elements. (This usecase will be covered in `@ollion/flow-form-builder`) +- `size`, `variant`, `category` removed from `f-form` since it is anti pattern to set it on inner input elements. (This usecase will be covered in `@nonfx/flow-form-builder`) ## [1.3.6] - 2023-02-21 diff --git a/packages/flow-core/README.md b/packages/flow-core/README.md index 72512854b..003c3c359 100644 --- a/packages/flow-core/README.md +++ b/packages/flow-core/README.md @@ -31,7 +31,7 @@ For a new project, Flow has put together starter kits with basic dependencies to - [Aungular](https://github.com/ollionorg/flow-starterkit-angular) - [React](https://github.com/ollionorg/flow-starterkit-react) -If you would like to contribute to an existing starter kit or write a new one for a different framework, write to or ping on our slack channel. +If you would like to contribute to an existing starter kit or write a new one for a different framework, write to or ping on our slack channel. **VScode Plugin**: [Install Flow's Plugin](https://marketplace.visualstudio.com/items?itemName=dev-vikas.flow-intellisense-vscode) to access components, icons, values, etc, and documentation inside of VScode. @@ -45,7 +45,7 @@ If you would like to contribute to an existing starter kit or write a new one fo #### 1️⃣ Install flow core -`npm i --save @ollion/flow-core` +`npm i --save @nonfx/flow-core` _Note:_ after installation re-start your application. @@ -56,7 +56,7 @@ _Note:_ after installation re-start your application. Copy and import the below snippet into your startup file. In **VueJS:** (src/main.ts or main.js), **Angular:** (src/main.ts), **React:** (src/index.tsx or index.jsx) ```JavaScript -import "@ollion/flow-core"; +import "@nonfx/flow-core"; ```
@@ -67,20 +67,20 @@ import "@ollion/flow-core"; Copy paste below line in your `main.ts` file. ```JavaScript -import "@ollion/flow-core/dist/types/vue2"; +import "@nonfx/flow-core/dist/types/vue2"; ``` or ```JavaScript -import "@ollion/flow-core/dist/types/vue3"; +import "@nonfx/flow-core/dist/types/vue3"; ``` **React** Include react type in `tsconfig.json` like below ```JSON -"include": ["src", "./node_modules/@ollion/flow-core/dist/types/react.ts"] +"include": ["src", "./node_modules/@nonfx/flow-core/dist/types/react.ts"] ``` **Note:** after adding the snippets, re-start your application. @@ -98,7 +98,7 @@ npm i --save @ollion/flow-system-icon ### 2️⃣ Import the icon pack ```javascript -import "@ollion/flow-core"; +import "@nonfx/flow-core"; import "@ollion/flow-system-icon"; ``` @@ -136,4 +136,4 @@ Visit the [Flow templates Storybook](https://flow.ollion.com/templates/index.htm ## Get in touch -If you would like to get in touch or contribute, please write to . +If you would like to get in touch or contribute, please write to . diff --git a/packages/flow-core/package.json b/packages/flow-core/package.json index ef9e2c93c..cc447f1dd 100644 --- a/packages/flow-core/package.json +++ b/packages/flow-core/package.json @@ -1,5 +1,5 @@ { - "name": "@ollion/flow-core", + "name": "@nonfx/flow-core", "version": "2.10.0", "description": "Core package of flow design system", "module": "dist/flow-core.es.js", @@ -26,7 +26,7 @@ "@emoji-mart/data": "^1.1.2", "@floating-ui/dom": "^1.0.2", "@lit-labs/virtualizer": "^2.0.12", - "@ollion/flow-core-config": "workspace:*", + "@nonfx/flow-core-config": "workspace:*", "axios": "^0.27.2", "emoji-mart": "^5.5.2", "flatpickr": "^4.6.13", @@ -58,7 +58,7 @@ "web-component-analyzer": "^2.0.0-next.4" }, "peerDependencies": { - "@ollion/flow-core-config": "*" + "@nonfx/flow-core-config": "*" }, "repository": { "type": "git", @@ -74,6 +74,6 @@ "url": "https://github.com/ollionorg/flow-core/issues" }, "homepage": "https://github.com/ollionorg/flow-core#readme", - "author": "@ollion", + "author": "@nonfx", "license": "MIT" } diff --git a/packages/flow-core/src/components/f-accordion/f-accordion.test.ts b/packages/flow-core/src/components/f-accordion/f-accordion.test.ts index beca995e1..7278b27d0 100644 --- a/packages/flow-core/src/components/f-accordion/f-accordion.test.ts +++ b/packages/flow-core/src/components/f-accordion/f-accordion.test.ts @@ -1,10 +1,10 @@ import { html, fixture, expect } from "@open-wc/testing"; // importing flow-core components -import "@ollion/flow-core"; +import "@nonfx/flow-core"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // setting icon pack for testing icon related test cases -import { FAccordion, FIconButton, ConfigUtil } from "@ollion/flow-core"; +import { FAccordion, FIconButton, ConfigUtil } from "@nonfx/flow-core"; ConfigUtil.setConfig({ iconPack: IconPack }); describe("f-accordion", () => { diff --git a/packages/flow-core/src/components/f-accordion/f-accordion.ts b/packages/flow-core/src/components/f-accordion/f-accordion.ts index 125d1698f..2d79efa97 100644 --- a/packages/flow-core/src/components/f-accordion/f-accordion.ts +++ b/packages/flow-core/src/components/f-accordion/f-accordion.ts @@ -5,7 +5,7 @@ import globalStyle from "./f-accordion-global.scss?inline"; import { FRoot } from "../../mixins/components/f-root/f-root"; import { FDiv, FDivPaddingProp } from "../f-div/f-div"; import { flowElement, generateId } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-accordion", globalStyle); diff --git a/packages/flow-core/src/components/f-breadcrumb/f-breadcrumb.test.ts b/packages/flow-core/src/components/f-breadcrumb/f-breadcrumb.test.ts index da33f95b5..b66668a60 100644 --- a/packages/flow-core/src/components/f-breadcrumb/f-breadcrumb.test.ts +++ b/packages/flow-core/src/components/f-breadcrumb/f-breadcrumb.test.ts @@ -2,9 +2,9 @@ import { html, fixture, expect } from "@open-wc/testing"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // importing flow-core components -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FBreadcrumb, ConfigUtil } from "@ollion/flow-core"; +import { FBreadcrumb, ConfigUtil } from "@nonfx/flow-core"; // setting icon pack for testing icon related test cases ConfigUtil.setConfig({ iconPack: IconPack }); diff --git a/packages/flow-core/src/components/f-breadcrumb/f-breadcrumb.ts b/packages/flow-core/src/components/f-breadcrumb/f-breadcrumb.ts index 227868ed1..c99d45253 100644 --- a/packages/flow-core/src/components/f-breadcrumb/f-breadcrumb.ts +++ b/packages/flow-core/src/components/f-breadcrumb/f-breadcrumb.ts @@ -8,7 +8,7 @@ import { flowElement } from "../../utils"; import { FText } from "../f-text/f-text"; import { FPopover } from "../f-popover/f-popover"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-breadcrumb", globalStyle); diff --git a/packages/flow-core/src/components/f-button/f-button.test.ts b/packages/flow-core/src/components/f-button/f-button.test.ts index 7c12a50a2..6eab0cd0b 100644 --- a/packages/flow-core/src/components/f-button/f-button.test.ts +++ b/packages/flow-core/src/components/f-button/f-button.test.ts @@ -2,9 +2,9 @@ import { html, fixture, expect } from "@open-wc/testing"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FButton, FIcon, ConfigUtil, FCounter } from "@ollion/flow-core"; +import { FButton, FIcon, ConfigUtil, FCounter } from "@nonfx/flow-core"; // importing `loadingSVG` to cross check import loadingSVG from "./../../mixins/svg/loader"; diff --git a/packages/flow-core/src/components/f-button/f-button.ts b/packages/flow-core/src/components/f-button/f-button.ts index 994f6f331..debe543d5 100644 --- a/packages/flow-core/src/components/f-button/f-button.ts +++ b/packages/flow-core/src/components/f-button/f-button.ts @@ -21,7 +21,7 @@ import getTextContrast from "../../utils/get-text-contrast"; import { FIcon } from "../f-icon/f-icon"; import { FCounter } from "../f-counter/f-counter"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { ifDefined } from "lit/directives/if-defined.js"; import { FPopover } from "../f-popover/f-popover"; import { FDiv } from "../f-div/f-div"; diff --git a/packages/flow-core/src/components/f-carousel-content/f-carousel-content.ts b/packages/flow-core/src/components/f-carousel-content/f-carousel-content.ts index c3cb470e0..eca7495d8 100644 --- a/packages/flow-core/src/components/f-carousel-content/f-carousel-content.ts +++ b/packages/flow-core/src/components/f-carousel-content/f-carousel-content.ts @@ -5,7 +5,7 @@ import globalStyle from "./f-carousel-content-global.scss?inline"; import { FDiv } from "../f-div/f-div"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-carousel-content", globalStyle); @flowElement("f-carousel-content") diff --git a/packages/flow-core/src/components/f-carousel/f-carousel.test.ts b/packages/flow-core/src/components/f-carousel/f-carousel.test.ts index 85931904e..d43616ea0 100644 --- a/packages/flow-core/src/components/f-carousel/f-carousel.test.ts +++ b/packages/flow-core/src/components/f-carousel/f-carousel.test.ts @@ -3,9 +3,9 @@ import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; import FCarouselExample from "./i-fcarousel-example"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { ConfigUtil, FCarousel } from "@ollion/flow-core"; +import { ConfigUtil, FCarousel } from "@nonfx/flow-core"; import { html } from "lit"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; diff --git a/packages/flow-core/src/components/f-carousel/f-carousel.ts b/packages/flow-core/src/components/f-carousel/f-carousel.ts index 76947089c..3af2da59c 100644 --- a/packages/flow-core/src/components/f-carousel/f-carousel.ts +++ b/packages/flow-core/src/components/f-carousel/f-carousel.ts @@ -8,7 +8,7 @@ import { FCarouselContent } from "../f-carousel-content/f-carousel-content"; import { FIcon } from "../f-icon/f-icon"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-carousel", globalStyle); diff --git a/packages/flow-core/src/components/f-checkbox/f-checkbox.test.ts b/packages/flow-core/src/components/f-checkbox/f-checkbox.test.ts index fc42cee64..ed2426950 100644 --- a/packages/flow-core/src/components/f-checkbox/f-checkbox.test.ts +++ b/packages/flow-core/src/components/f-checkbox/f-checkbox.test.ts @@ -1,9 +1,9 @@ import { html, fixture, expect } from "@open-wc/testing"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FCheckbox } from "@ollion/flow-core"; +import { FCheckbox } from "@nonfx/flow-core"; describe("f-checkbox", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-checkbox/f-checkbox.ts b/packages/flow-core/src/components/f-checkbox/f-checkbox.ts index ea7362fdc..215b527e7 100644 --- a/packages/flow-core/src/components/f-checkbox/f-checkbox.ts +++ b/packages/flow-core/src/components/f-checkbox/f-checkbox.ts @@ -9,7 +9,7 @@ import indeterminateMark from "../../mixins/svg/indeterminate-mark"; import { FDiv } from "../f-div/f-div"; import { flowElement, generateId } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-checkbox", globalStyle); diff --git a/packages/flow-core/src/components/f-color-picker/f-color-picker.test.ts b/packages/flow-core/src/components/f-color-picker/f-color-picker.test.ts index e99536d7a..24712e2d4 100644 --- a/packages/flow-core/src/components/f-color-picker/f-color-picker.test.ts +++ b/packages/flow-core/src/components/f-color-picker/f-color-picker.test.ts @@ -1,9 +1,9 @@ import { html, fixture, expect } from "@open-wc/testing"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FColorPicker, FInput } from "@ollion/flow-core"; +import { FColorPicker, FInput } from "@nonfx/flow-core"; describe("f-color-picker", () => { // check if component is defined diff --git a/packages/flow-core/src/components/f-color-picker/f-color-picker.ts b/packages/flow-core/src/components/f-color-picker/f-color-picker.ts index 8b505e5e7..c4569880b 100644 --- a/packages/flow-core/src/components/f-color-picker/f-color-picker.ts +++ b/packages/flow-core/src/components/f-color-picker/f-color-picker.ts @@ -4,7 +4,7 @@ import globalStyle from "./f-color-picker-global.scss?inline"; import eleStyle from "./f-color-picker.scss?inline"; import { FRoot } from "../../mixins/components/f-root/f-root"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import "vanilla-colorful"; import { FPopover } from "../f-popover/f-popover"; diff --git a/packages/flow-core/src/components/f-countdown/f-countdown.test.ts b/packages/flow-core/src/components/f-countdown/f-countdown.test.ts index c7b1530d5..a3986ef8f 100644 --- a/packages/flow-core/src/components/f-countdown/f-countdown.test.ts +++ b/packages/flow-core/src/components/f-countdown/f-countdown.test.ts @@ -3,7 +3,7 @@ import { html, fixture, expect } from "@open-wc/testing"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // setting icon pack for testing icon related test cases -import { FCountdown, ConfigUtil, FDiv } from "@ollion/flow-core"; +import { FCountdown, ConfigUtil, FDiv } from "@nonfx/flow-core"; ConfigUtil.setConfig({ iconPack: IconPack }); diff --git a/packages/flow-core/src/components/f-counter/f-counter.test.ts b/packages/flow-core/src/components/f-counter/f-counter.test.ts index 670fedd24..a026fa836 100644 --- a/packages/flow-core/src/components/f-counter/f-counter.test.ts +++ b/packages/flow-core/src/components/f-counter/f-counter.test.ts @@ -2,9 +2,9 @@ import { html, fixture, expect } from "@open-wc/testing"; // importing `loadingSVG` to cross check import loadingSVG from "./../../mixins/svg/loader"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FCounter } from "@ollion/flow-core"; +import { FCounter } from "@nonfx/flow-core"; describe("f-counter", () => { // check if component is defined diff --git a/packages/flow-core/src/components/f-counter/f-counter.ts b/packages/flow-core/src/components/f-counter/f-counter.ts index 20c0cb26a..d1a039446 100644 --- a/packages/flow-core/src/components/f-counter/f-counter.ts +++ b/packages/flow-core/src/components/f-counter/f-counter.ts @@ -11,7 +11,7 @@ import getCustomFillColor from "../../utils/get-custom-fill-color"; import { validateHTMLColor } from "validate-color"; import { validateHTMLColorName } from "validate-color"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { ifDefined } from "lit/directives/if-defined.js"; injectCss("f-counter", globalStyle); diff --git a/packages/flow-core/src/components/f-date-time-picker/f-date-time-picker.test.ts b/packages/flow-core/src/components/f-date-time-picker/f-date-time-picker.test.ts index d41c48a1f..f69d63ab2 100644 --- a/packages/flow-core/src/components/f-date-time-picker/f-date-time-picker.test.ts +++ b/packages/flow-core/src/components/f-date-time-picker/f-date-time-picker.test.ts @@ -2,9 +2,9 @@ import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; import { expect, fixture, html, oneEvent } from "@open-wc/testing"; // importing flow-core components -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { ConfigUtil, FDateTimePicker } from "@ollion/flow-core"; +import { ConfigUtil, FDateTimePicker } from "@nonfx/flow-core"; // setting icon pack for testing icon related test cases ConfigUtil.setConfig({ iconPack: IconPack }); diff --git a/packages/flow-core/src/components/f-date-time-picker/f-date-time-picker.ts b/packages/flow-core/src/components/f-date-time-picker/f-date-time-picker.ts index e5c42dd4c..5209a27cf 100644 --- a/packages/flow-core/src/components/f-date-time-picker/f-date-time-picker.ts +++ b/packages/flow-core/src/components/f-date-time-picker/f-date-time-picker.ts @@ -11,7 +11,7 @@ import { FDiv } from "../f-div/f-div"; import { FText } from "../f-text/f-text"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { ifDefined } from "lit-html/directives/if-defined.js"; injectCss("f-date-time-picker", globalStyle); diff --git a/packages/flow-core/src/components/f-div/f-div.test.ts b/packages/flow-core/src/components/f-div/f-div.test.ts index 62dcb6003..3dbe47e62 100644 --- a/packages/flow-core/src/components/f-div/f-div.test.ts +++ b/packages/flow-core/src/components/f-div/f-div.test.ts @@ -1,7 +1,7 @@ import { html, fixture, expect } from "@open-wc/testing"; -import "@ollion/flow-core"; -import { FDiv } from "@ollion/flow-core"; +import "@nonfx/flow-core"; +import { FDiv } from "@nonfx/flow-core"; describe("f-div", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-div/f-div.ts b/packages/flow-core/src/components/f-div/f-div.ts index f70e10a60..8803aa3c3 100644 --- a/packages/flow-core/src/components/f-div/f-div.ts +++ b/packages/flow-core/src/components/f-div/f-div.ts @@ -7,7 +7,7 @@ import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import loader from "../../mixins/svg/loader"; import getCustomFillColor from "../../utils/get-custom-fill-color"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; export type FDivBorderWidth = "small" | "medium" | "large"; export type FDivBorderStyle = "solid" | "dashed" | "dotted"; diff --git a/packages/flow-core/src/components/f-divider/f-divider.test.ts b/packages/flow-core/src/components/f-divider/f-divider.test.ts index cadfe0e50..3ca66c629 100644 --- a/packages/flow-core/src/components/f-divider/f-divider.test.ts +++ b/packages/flow-core/src/components/f-divider/f-divider.test.ts @@ -1,8 +1,8 @@ import { html, fixture, expect } from "@open-wc/testing"; // importing flow-core components -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FDivider } from "@ollion/flow-core"; +import { FDivider } from "@nonfx/flow-core"; describe("f-divider", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-divider/f-divider.ts b/packages/flow-core/src/components/f-divider/f-divider.ts index e264605ff..3860fb03f 100644 --- a/packages/flow-core/src/components/f-divider/f-divider.ts +++ b/packages/flow-core/src/components/f-divider/f-divider.ts @@ -6,7 +6,7 @@ import getCustomFillColor from "../../utils/get-custom-fill-color"; import { validateHTMLColor } from "validate-color"; import { validateHTMLColorName } from "validate-color"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-divider", globalStyle); export type FDividerState = "default" | "secondary" | "subtle" | `custom, ${string}`; diff --git a/packages/flow-core/src/components/f-document-viewer/f-document-viewer.test.ts b/packages/flow-core/src/components/f-document-viewer/f-document-viewer.test.ts index e3785940e..dbc3d3f63 100644 --- a/packages/flow-core/src/components/f-document-viewer/f-document-viewer.test.ts +++ b/packages/flow-core/src/components/f-document-viewer/f-document-viewer.test.ts @@ -8,7 +8,7 @@ import { FDiv, FText, FSearch -} from "@ollion/flow-core"; +} from "@nonfx/flow-core"; import { faker } from "@faker-js/faker"; export default function getFakeDocumentContent(items = 2, levels = 2): FDocViewerContent { diff --git a/packages/flow-core/src/components/f-document-viewer/f-document-viewer.ts b/packages/flow-core/src/components/f-document-viewer/f-document-viewer.ts index 1b6111ec0..261e1d3ac 100644 --- a/packages/flow-core/src/components/f-document-viewer/f-document-viewer.ts +++ b/packages/flow-core/src/components/f-document-viewer/f-document-viewer.ts @@ -5,7 +5,7 @@ import globalStyle from "./f-document-viewer-global.scss?inline"; import { FRoot } from "../../mixins/components/f-root/f-root"; import { FDiv } from "../f-div/f-div"; import { flowElement } from "../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { FText } from "../f-text/f-text"; import { FAccordion } from "../f-accordion/f-accordion"; import { FSearch } from "../f-search/f-search"; diff --git a/packages/flow-core/src/components/f-emoji-picker/f-emoji-picker.test.ts b/packages/flow-core/src/components/f-emoji-picker/f-emoji-picker.test.ts index 5167a0061..e5d9f1024 100644 --- a/packages/flow-core/src/components/f-emoji-picker/f-emoji-picker.test.ts +++ b/packages/flow-core/src/components/f-emoji-picker/f-emoji-picker.test.ts @@ -2,9 +2,9 @@ import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; import { expect, fixture, html } from "@open-wc/testing"; // importing flow-core components -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { ConfigUtil, FEmojiPicker, FIcon } from "@ollion/flow-core"; +import { ConfigUtil, FEmojiPicker, FIcon } from "@nonfx/flow-core"; // setting icon pack for testing icon related test cases ConfigUtil.setConfig({ iconPack: IconPack }); diff --git a/packages/flow-core/src/components/f-emoji-picker/f-emoji-picker.ts b/packages/flow-core/src/components/f-emoji-picker/f-emoji-picker.ts index e7303d146..12e93ba3a 100644 --- a/packages/flow-core/src/components/f-emoji-picker/f-emoji-picker.ts +++ b/packages/flow-core/src/components/f-emoji-picker/f-emoji-picker.ts @@ -10,7 +10,7 @@ import { FText } from "../f-text/f-text"; import { FIcon } from "../f-icon/f-icon"; import { FPopover } from "../f-popover/f-popover"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-emoji-picker", globalStyle); export type FEmojiPickerState = "primary" | "default" | "success" | "warning" | "danger"; diff --git a/packages/flow-core/src/components/f-field/f-field.ts b/packages/flow-core/src/components/f-field/f-field.ts index 5140982c6..33b98ac09 100644 --- a/packages/flow-core/src/components/f-field/f-field.ts +++ b/packages/flow-core/src/components/f-field/f-field.ts @@ -6,7 +6,7 @@ import { FText } from "../f-text/f-text"; import eleStyle from "./f-field.scss?inline"; import globalStyle from "./f-field-global.scss?inline"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-field", globalStyle); export type FFieldStateProp = "default" | "primary" | "success" | "danger" | "warning"; diff --git a/packages/flow-core/src/components/f-file-upload/f-file-upload.test.ts b/packages/flow-core/src/components/f-file-upload/f-file-upload.test.ts index 0b662b71b..1e6cbd462 100644 --- a/packages/flow-core/src/components/f-file-upload/f-file-upload.test.ts +++ b/packages/flow-core/src/components/f-file-upload/f-file-upload.test.ts @@ -2,9 +2,9 @@ import { html, fixture, expect } from "@open-wc/testing"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { ConfigUtil, FText, FFileUpload, FDiv } from "@ollion/flow-core"; +import { ConfigUtil, FText, FFileUpload, FDiv } from "@nonfx/flow-core"; // importing `loadingSVG` to cross check import loadingSVG from "../../mixins/svg/loader"; diff --git a/packages/flow-core/src/components/f-file-upload/f-file-upload.ts b/packages/flow-core/src/components/f-file-upload/f-file-upload.ts index ab25424ac..61b3c9b92 100644 --- a/packages/flow-core/src/components/f-file-upload/f-file-upload.ts +++ b/packages/flow-core/src/components/f-file-upload/f-file-upload.ts @@ -11,7 +11,7 @@ import { getExtensionsFromMimeType, getFormattedBytes } from "../../utils/index" import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import loader from "../../mixins/svg/loader"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { ifDefined } from "lit/directives/if-defined.js"; injectCss("f-file-upload", globalStyle); diff --git a/packages/flow-core/src/components/f-form-group/f-form-group.test.ts b/packages/flow-core/src/components/f-form-group/f-form-group.test.ts index aada854c0..c2955d3cf 100644 --- a/packages/flow-core/src/components/f-form-group/f-form-group.test.ts +++ b/packages/flow-core/src/components/f-form-group/f-form-group.test.ts @@ -1,7 +1,7 @@ import { html, fixture, expect } from "@open-wc/testing"; -import "@ollion/flow-core"; -import { FFormGroup } from "@ollion/flow-core"; +import "@nonfx/flow-core"; +import { FFormGroup } from "@nonfx/flow-core"; describe("f-form-group", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-form-group/f-form-group.ts b/packages/flow-core/src/components/f-form-group/f-form-group.ts index fe7b1dd1b..8d8768343 100644 --- a/packages/flow-core/src/components/f-form-group/f-form-group.ts +++ b/packages/flow-core/src/components/f-form-group/f-form-group.ts @@ -7,7 +7,7 @@ import eleStyle from "./f-form-group.scss?inline"; import globalStyle from "./f-form-group-global.scss?inline"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { ifDefined } from "lit-html/directives/if-defined.js"; injectCss("f-form-group", globalStyle); diff --git a/packages/flow-core/src/components/f-form/f-form.test.ts b/packages/flow-core/src/components/f-form/f-form.test.ts index 42bb824b3..d05df3c5b 100644 --- a/packages/flow-core/src/components/f-form/f-form.test.ts +++ b/packages/flow-core/src/components/f-form/f-form.test.ts @@ -1,7 +1,7 @@ import { html, fixture, expect } from "@open-wc/testing"; -import "@ollion/flow-core"; -import { FForm } from "@ollion/flow-core"; +import "@nonfx/flow-core"; +import { FForm } from "@nonfx/flow-core"; describe("f-form", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-form/f-form.ts b/packages/flow-core/src/components/f-form/f-form.ts index 4c3679c7a..d9384e645 100644 --- a/packages/flow-core/src/components/f-form/f-form.ts +++ b/packages/flow-core/src/components/f-form/f-form.ts @@ -6,7 +6,7 @@ import eleStyle from "./f-form.scss?inline"; import globalStyle from "./f-form-global.scss?inline"; import { FDiv } from "../f-div/f-div"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-form", globalStyle); // import { ref, createRef } from "lit/directives/ref.js"; diff --git a/packages/flow-core/src/components/f-grid/f-grid.test.ts b/packages/flow-core/src/components/f-grid/f-grid.test.ts index 90582054f..54274112b 100644 --- a/packages/flow-core/src/components/f-grid/f-grid.test.ts +++ b/packages/flow-core/src/components/f-grid/f-grid.test.ts @@ -1,8 +1,8 @@ import { html, fixture, expect } from "@open-wc/testing"; // importing flow-core components -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FGrid } from "@ollion/flow-core"; +import { FGrid } from "@nonfx/flow-core"; describe("f-grid", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-grid/f-grid.ts b/packages/flow-core/src/components/f-grid/f-grid.ts index 3138e0a06..a1ded3233 100644 --- a/packages/flow-core/src/components/f-grid/f-grid.ts +++ b/packages/flow-core/src/components/f-grid/f-grid.ts @@ -4,7 +4,7 @@ import globalStyle from "./f-grid-global.scss?inline"; import { FRoot } from "../../mixins/components/f-root/f-root"; import { FDiv } from "../f-div/f-div"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-grid", globalStyle); export type FGridBodyHeightProp = `${number}px` | `${number}%` | `${number}vh`; diff --git a/packages/flow-core/src/components/f-icon-button/f-icon-button.test.ts b/packages/flow-core/src/components/f-icon-button/f-icon-button.test.ts index b342b63a5..afec38154 100644 --- a/packages/flow-core/src/components/f-icon-button/f-icon-button.test.ts +++ b/packages/flow-core/src/components/f-icon-button/f-icon-button.test.ts @@ -3,8 +3,8 @@ import { html, fixture, expect } from "@open-wc/testing"; // IconPack to test import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // import flow-core elements -import "@ollion/flow-core"; -import { FIconButton, ConfigUtil } from "@ollion/flow-core"; +import "@nonfx/flow-core"; +import { FIconButton, ConfigUtil } from "@nonfx/flow-core"; ConfigUtil.setConfig({ iconPack: IconPack }); diff --git a/packages/flow-core/src/components/f-icon-button/f-icon-button.ts b/packages/flow-core/src/components/f-icon-button/f-icon-button.ts index cf2e2d32a..2e23bbf5b 100644 --- a/packages/flow-core/src/components/f-icon-button/f-icon-button.ts +++ b/packages/flow-core/src/components/f-icon-button/f-icon-button.ts @@ -14,7 +14,7 @@ import getTextContrast from "../../utils/get-text-contrast"; import getCustomFillColor from "../../utils/get-custom-fill-color"; import LightenDarkenColor from "../../utils/get-lighten-darken-color"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { ifDefined } from "lit/directives/if-defined.js"; injectCss("f-icon-button", globalStyle); diff --git a/packages/flow-core/src/components/f-icon/f-icon.test.ts b/packages/flow-core/src/components/f-icon/f-icon.test.ts index 325a4c2bc..19177cabf 100644 --- a/packages/flow-core/src/components/f-icon/f-icon.test.ts +++ b/packages/flow-core/src/components/f-icon/f-icon.test.ts @@ -1,12 +1,12 @@ import { html, fixture, expect, elementUpdated } from "@open-wc/testing"; import loadingSVG from "./../../mixins/svg/loader"; import notFound from "../../mixins/svg/not-found"; -import { ConfigUtil } from "@ollion/flow-core-config"; +import { ConfigUtil } from "@nonfx/flow-core-config"; // import all flow -core components -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FIcon } from "@ollion/flow-core"; +import { FIcon } from "@nonfx/flow-core"; describe("f-icon", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-icon/f-icon.ts b/packages/flow-core/src/components/f-icon/f-icon.ts index ebac55951..d31b64406 100644 --- a/packages/flow-core/src/components/f-icon/f-icon.ts +++ b/packages/flow-core/src/components/f-icon/f-icon.ts @@ -5,7 +5,7 @@ import globalStyle from "./f-icon-global.scss?inline"; import { FRoot } from "../../mixins/components/f-root/f-root"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; // themeSubject will used to listen theme update -import { configSubject, themeSubject, injectCss } from "@ollion/flow-core-config"; +import { configSubject, themeSubject, injectCss } from "@nonfx/flow-core-config"; import { classMap } from "lit-html/directives/class-map.js"; import loader from "../../mixins/svg/loader"; import notFound from "../../mixins/svg/not-found"; diff --git a/packages/flow-core/src/components/f-input/f-input-light.ts b/packages/flow-core/src/components/f-input/f-input-light.ts index e612e1bf8..a1f1578cc 100644 --- a/packages/flow-core/src/components/f-input/f-input-light.ts +++ b/packages/flow-core/src/components/f-input/f-input-light.ts @@ -8,7 +8,7 @@ import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import loader from "../../mixins/svg/loader"; import { ifDefined } from "lit-html/directives/if-defined.js"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { FInputBase } from "./f-input-base"; injectCss("f-input-light", globalStyle); diff --git a/packages/flow-core/src/components/f-input/f-input.test.ts b/packages/flow-core/src/components/f-input/f-input.test.ts index 7370d7cfd..32c1b430d 100644 --- a/packages/flow-core/src/components/f-input/f-input.test.ts +++ b/packages/flow-core/src/components/f-input/f-input.test.ts @@ -2,9 +2,9 @@ import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; import { expect, fixture, html } from "@open-wc/testing"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { ConfigUtil, FIcon, FInput, FText } from "@ollion/flow-core"; +import { ConfigUtil, FIcon, FInput, FText } from "@nonfx/flow-core"; // importing `loadingSVG` to cross check import loadingSVG from "../../mixins/svg/loader"; diff --git a/packages/flow-core/src/components/f-input/f-input.ts b/packages/flow-core/src/components/f-input/f-input.ts index b0bbdcc44..cdb038461 100644 --- a/packages/flow-core/src/components/f-input/f-input.ts +++ b/packages/flow-core/src/components/f-input/f-input.ts @@ -6,7 +6,7 @@ import { FDiv } from "../f-div/f-div"; import { FIcon } from "../f-icon/f-icon"; import { ifDefined } from "lit-html/directives/if-defined.js"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { FInputBase, FInputCustomEvent } from "./f-input-base"; import { FInputLight } from "./f-input-light"; injectCss("f-input", globalStyle); diff --git a/packages/flow-core/src/components/f-pictogram/f-pictogram.test.ts b/packages/flow-core/src/components/f-pictogram/f-pictogram.test.ts index 5d2a6c47f..095d025d4 100644 --- a/packages/flow-core/src/components/f-pictogram/f-pictogram.test.ts +++ b/packages/flow-core/src/components/f-pictogram/f-pictogram.test.ts @@ -1,7 +1,7 @@ import { html, fixture, expect } from "@open-wc/testing"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; -import "@ollion/flow-core"; -import { FPictogram, ConfigUtil } from "@ollion/flow-core"; +import "@nonfx/flow-core"; +import { FPictogram, ConfigUtil } from "@nonfx/flow-core"; ConfigUtil.setConfig({ iconPack: IconPack }); diff --git a/packages/flow-core/src/components/f-pictogram/f-pictogram.ts b/packages/flow-core/src/components/f-pictogram/f-pictogram.ts index 87e6f886f..fc42d5314 100644 --- a/packages/flow-core/src/components/f-pictogram/f-pictogram.ts +++ b/packages/flow-core/src/components/f-pictogram/f-pictogram.ts @@ -3,7 +3,7 @@ import { property } from "lit/decorators.js"; import eleStyle from "./f-pictogram.scss?inline"; import globalStyle from "./f-pictogram-global.scss?inline"; import { FRoot } from "../../mixins/components/f-root/f-root"; -import { ConfigUtil, injectCss } from "@ollion/flow-core-config"; +import { ConfigUtil, injectCss } from "@nonfx/flow-core-config"; import { getTextContrast, isValidHttpUrl } from "./../../utils"; import { classMap } from "lit-html/directives/class-map.js"; import { FIcon } from "../f-icon/f-icon"; diff --git a/packages/flow-core/src/components/f-popover/f-popover.test.ts b/packages/flow-core/src/components/f-popover/f-popover.test.ts index d51c09472..8f759da42 100644 --- a/packages/flow-core/src/components/f-popover/f-popover.test.ts +++ b/packages/flow-core/src/components/f-popover/f-popover.test.ts @@ -1,7 +1,7 @@ import { expect, fixture, html } from "@open-wc/testing"; -import "@ollion/flow-core"; -import { FPopover } from "@ollion/flow-core"; +import "@nonfx/flow-core"; +import { FPopover } from "@nonfx/flow-core"; describe("f-popover", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-popover/f-popover.ts b/packages/flow-core/src/components/f-popover/f-popover.ts index 791a7311d..4a29901f6 100644 --- a/packages/flow-core/src/components/f-popover/f-popover.ts +++ b/packages/flow-core/src/components/f-popover/f-popover.ts @@ -12,7 +12,7 @@ import { Placement } from "@floating-ui/dom"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-popover", globalStyle); export type FPopoverState = diff --git a/packages/flow-core/src/components/f-progress-bar/f-progress-bar.test.ts b/packages/flow-core/src/components/f-progress-bar/f-progress-bar.test.ts index 30610d503..342661c70 100644 --- a/packages/flow-core/src/components/f-progress-bar/f-progress-bar.test.ts +++ b/packages/flow-core/src/components/f-progress-bar/f-progress-bar.test.ts @@ -1,8 +1,8 @@ import { html, fixture, expect } from "@open-wc/testing"; // import flow-core elements -import "@ollion/flow-core"; -import { FProgressBar } from "@ollion/flow-core"; +import "@nonfx/flow-core"; +import { FProgressBar } from "@nonfx/flow-core"; describe("f-progress-bar", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-progress-bar/f-progress-bar.ts b/packages/flow-core/src/components/f-progress-bar/f-progress-bar.ts index 43aeca1b8..f1ce9e36d 100644 --- a/packages/flow-core/src/components/f-progress-bar/f-progress-bar.ts +++ b/packages/flow-core/src/components/f-progress-bar/f-progress-bar.ts @@ -8,7 +8,7 @@ import getCustomFillColor from "../../utils/get-custom-fill-color"; import { validateHTMLColor } from "validate-color"; import { validateHTMLColorName } from "validate-color"; import { flowElement } from "../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { classMap } from "lit-html/directives/class-map.js"; import { keyed } from "lit/directives/keyed.js"; diff --git a/packages/flow-core/src/components/f-radio/f-radio.test.ts b/packages/flow-core/src/components/f-radio/f-radio.test.ts index 50707d205..7ab192dde 100644 --- a/packages/flow-core/src/components/f-radio/f-radio.test.ts +++ b/packages/flow-core/src/components/f-radio/f-radio.test.ts @@ -1,9 +1,9 @@ import { html, fixture, expect } from "@open-wc/testing"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FRadio } from "@ollion/flow-core"; +import { FRadio } from "@nonfx/flow-core"; describe("f-radio", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-radio/f-radio.ts b/packages/flow-core/src/components/f-radio/f-radio.ts index 461c3733a..cb957039c 100644 --- a/packages/flow-core/src/components/f-radio/f-radio.ts +++ b/packages/flow-core/src/components/f-radio/f-radio.ts @@ -5,7 +5,7 @@ import globalStyle from "./f-radio-global.scss?inline"; import { FRoot } from "../../mixins/components/f-root/f-root"; import { FDiv } from "../f-div/f-div"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-radio", globalStyle); export type FRadioState = "primary" | "default" | "success" | "warning" | "danger"; diff --git a/packages/flow-core/src/components/f-search/f-search.test.ts b/packages/flow-core/src/components/f-search/f-search.test.ts index 8d19aacdc..99346630c 100644 --- a/packages/flow-core/src/components/f-search/f-search.test.ts +++ b/packages/flow-core/src/components/f-search/f-search.test.ts @@ -2,9 +2,9 @@ import { expect, fixture, oneEvent } from "@open-wc/testing"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { ConfigUtil, FDiv, FSearch, FSuggest } from "@ollion/flow-core"; +import { ConfigUtil, FDiv, FSearch, FSuggest } from "@nonfx/flow-core"; import { html } from "lit"; // setting icon pack for testing icon related test cases diff --git a/packages/flow-core/src/components/f-search/f-search.ts b/packages/flow-core/src/components/f-search/f-search.ts index 62654cdc9..9b19b6b71 100644 --- a/packages/flow-core/src/components/f-search/f-search.ts +++ b/packages/flow-core/src/components/f-search/f-search.ts @@ -9,7 +9,7 @@ import { FSelect } from "../f-select/f-select"; import { FSuggest } from "../f-suggest/f-suggest"; import { FIconButton } from "../f-icon-button/f-icon-button"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { ifDefined } from "lit-html/directives/if-defined.js"; injectCss("f-search", globalStyle); diff --git a/packages/flow-core/src/components/f-select/f-select.test.ts b/packages/flow-core/src/components/f-select/f-select.test.ts index d155088c9..0ba4c6722 100644 --- a/packages/flow-core/src/components/f-select/f-select.test.ts +++ b/packages/flow-core/src/components/f-select/f-select.test.ts @@ -2,9 +2,9 @@ import { html, fixture, expect } from "@open-wc/testing"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FIcon, ConfigUtil, FSelect, FText, FTag, FCheckbox } from "@ollion/flow-core"; +import { FIcon, ConfigUtil, FSelect, FText, FTag, FCheckbox } from "@nonfx/flow-core"; // setting icon pack for testing icon related test cases ConfigUtil.setConfig({ iconPack: IconPack }); diff --git a/packages/flow-core/src/components/f-select/f-select.ts b/packages/flow-core/src/components/f-select/f-select.ts index beabd5a68..1f504b686 100644 --- a/packages/flow-core/src/components/f-select/f-select.ts +++ b/packages/flow-core/src/components/f-select/f-select.ts @@ -30,7 +30,7 @@ import { } from "./handlers"; import { FIconButton } from "../f-icon-button/f-icon-button"; import { flowElement, generateId } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-select", globalStyle); export type FSelectState = "primary" | "default" | "success" | "warning" | "danger"; diff --git a/packages/flow-core/src/components/f-spacer/f-spacer.test.ts b/packages/flow-core/src/components/f-spacer/f-spacer.test.ts index b1cf1f217..69a3f7191 100644 --- a/packages/flow-core/src/components/f-spacer/f-spacer.test.ts +++ b/packages/flow-core/src/components/f-spacer/f-spacer.test.ts @@ -1,7 +1,7 @@ import { html, fixture, expect } from "@open-wc/testing"; -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FSpacer } from "@ollion/flow-core"; +import { FSpacer } from "@nonfx/flow-core"; describe("f-spacer", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-spacer/f-spacer.ts b/packages/flow-core/src/components/f-spacer/f-spacer.ts index a1af4ee94..d8c4ea5e4 100644 --- a/packages/flow-core/src/components/f-spacer/f-spacer.ts +++ b/packages/flow-core/src/components/f-spacer/f-spacer.ts @@ -3,7 +3,7 @@ import { property } from "lit/decorators.js"; import globalStyle from "./f-spacer-global.scss?inline"; import { FRoot } from "../../mixins/components/f-root/f-root"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-spacer", globalStyle); export type FSpacerSizeProp = diff --git a/packages/flow-core/src/components/f-suggest/f-suggest.test.ts b/packages/flow-core/src/components/f-suggest/f-suggest.test.ts index 61801683c..d04b774ed 100644 --- a/packages/flow-core/src/components/f-suggest/f-suggest.test.ts +++ b/packages/flow-core/src/components/f-suggest/f-suggest.test.ts @@ -2,9 +2,9 @@ import { expect, fixture, oneEvent } from "@open-wc/testing"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { ConfigUtil, FDiv, FSuggest } from "@ollion/flow-core"; +import { ConfigUtil, FDiv, FSuggest } from "@nonfx/flow-core"; import { html } from "lit"; // setting icon pack for testing icon related test cases diff --git a/packages/flow-core/src/components/f-suggest/f-suggest.ts b/packages/flow-core/src/components/f-suggest/f-suggest.ts index 6204f31c5..a46fea4fa 100644 --- a/packages/flow-core/src/components/f-suggest/f-suggest.ts +++ b/packages/flow-core/src/components/f-suggest/f-suggest.ts @@ -12,7 +12,7 @@ import { classMap } from "lit-html/directives/class-map.js"; import { cloneDeep } from "lodash-es"; import { flowElement } from "./../../utils"; import { displayCustomTemplate, displayOptions, displayCategories } from "./display-options"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-suggest", globalStyle); export type FSuggestState = "primary" | "default" | "success" | "warning" | "danger"; diff --git a/packages/flow-core/src/components/f-switch/f-switch.test.ts b/packages/flow-core/src/components/f-switch/f-switch.test.ts index 9b9d646fe..9a24354a1 100644 --- a/packages/flow-core/src/components/f-switch/f-switch.test.ts +++ b/packages/flow-core/src/components/f-switch/f-switch.test.ts @@ -1,9 +1,9 @@ import { html, fixture, expect } from "@open-wc/testing"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FSwitch } from "@ollion/flow-core"; +import { FSwitch } from "@nonfx/flow-core"; describe("f-switch", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-switch/f-switch.ts b/packages/flow-core/src/components/f-switch/f-switch.ts index 32241052f..1598c9067 100644 --- a/packages/flow-core/src/components/f-switch/f-switch.ts +++ b/packages/flow-core/src/components/f-switch/f-switch.ts @@ -5,7 +5,7 @@ import globalStyle from "./f-switch-global.scss?inline"; import { FRoot } from "../../mixins/components/f-root/f-root"; import { FDiv } from "../f-div/f-div"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-switch", globalStyle); export type FSwitchState = "primary" | "default" | "success" | "warning" | "danger"; diff --git a/packages/flow-core/src/components/f-tab-content/f-tab-content.test.ts b/packages/flow-core/src/components/f-tab-content/f-tab-content.test.ts index c8cb6fd22..2007a11b9 100644 --- a/packages/flow-core/src/components/f-tab-content/f-tab-content.test.ts +++ b/packages/flow-core/src/components/f-tab-content/f-tab-content.test.ts @@ -1,7 +1,7 @@ import { expect } from "@open-wc/testing"; -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FTabContent } from "@ollion/flow-core"; +import { FTabContent } from "@nonfx/flow-core"; describe("f-tab-content", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-tab-content/f-tab-content.ts b/packages/flow-core/src/components/f-tab-content/f-tab-content.ts index aa7a8ca34..53db83815 100644 --- a/packages/flow-core/src/components/f-tab-content/f-tab-content.ts +++ b/packages/flow-core/src/components/f-tab-content/f-tab-content.ts @@ -3,7 +3,7 @@ import { property } from "lit/decorators.js"; import globalStyle from "./f-tab-content-global.scss?inline"; import { FRoot } from "../../mixins/components/f-root/f-root"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-tab-content", globalStyle); @flowElement("f-tab-content") diff --git a/packages/flow-core/src/components/f-tab-node/f-tab-node.test.ts b/packages/flow-core/src/components/f-tab-node/f-tab-node.test.ts index 75f6ffa25..588655060 100644 --- a/packages/flow-core/src/components/f-tab-node/f-tab-node.test.ts +++ b/packages/flow-core/src/components/f-tab-node/f-tab-node.test.ts @@ -1,7 +1,7 @@ import { expect } from "@open-wc/testing"; -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FTabNode } from "@ollion/flow-core"; +import { FTabNode } from "@nonfx/flow-core"; describe("f-tab-node", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-tab-node/f-tab-node.ts b/packages/flow-core/src/components/f-tab-node/f-tab-node.ts index b0990c006..450c07a74 100644 --- a/packages/flow-core/src/components/f-tab-node/f-tab-node.ts +++ b/packages/flow-core/src/components/f-tab-node/f-tab-node.ts @@ -5,7 +5,7 @@ import { FRoot } from "../../mixins/components/f-root/f-root"; import { FDiv } from "../f-div/f-div"; import { FTabNodeWidthProp } from "../f-tab/f-tab"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-tab-node", globalStyle); @flowElement("f-tab-node") diff --git a/packages/flow-core/src/components/f-tab/f-tab.test.ts b/packages/flow-core/src/components/f-tab/f-tab.test.ts index f8faa321b..332f11024 100644 --- a/packages/flow-core/src/components/f-tab/f-tab.test.ts +++ b/packages/flow-core/src/components/f-tab/f-tab.test.ts @@ -1,7 +1,7 @@ import { html, fixture, expect } from "@open-wc/testing"; -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FTab } from "@ollion/flow-core"; +import { FTab } from "@nonfx/flow-core"; describe("f-tab", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-tab/f-tab.ts b/packages/flow-core/src/components/f-tab/f-tab.ts index c303870e3..f159b1b72 100644 --- a/packages/flow-core/src/components/f-tab/f-tab.ts +++ b/packages/flow-core/src/components/f-tab/f-tab.ts @@ -7,7 +7,7 @@ import { FDiv } from "../f-div/f-div"; import { FTabNode } from "../f-tab-node/f-tab-node"; import { FIconButton } from "../f-icon-button/f-icon-button"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-tab", globalStyle); export type FTabNodeWidthProp = "fill" | "hug-content" | `${number}`; diff --git a/packages/flow-core/src/components/f-tag/f-tag.test.ts b/packages/flow-core/src/components/f-tag/f-tag.test.ts index 8dc8a7423..5103f434e 100644 --- a/packages/flow-core/src/components/f-tag/f-tag.test.ts +++ b/packages/flow-core/src/components/f-tag/f-tag.test.ts @@ -2,9 +2,9 @@ import { html, fixture, expect } from "@open-wc/testing"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FTag, FIcon, ConfigUtil, FCounter } from "@ollion/flow-core"; +import { FTag, FIcon, ConfigUtil, FCounter } from "@nonfx/flow-core"; // importing `loadingSVG` to cross check import loadingSVG from "../../mixins/svg/loader"; diff --git a/packages/flow-core/src/components/f-tag/f-tag.ts b/packages/flow-core/src/components/f-tag/f-tag.ts index 5a2c8cbff..e86bdcc1f 100644 --- a/packages/flow-core/src/components/f-tag/f-tag.ts +++ b/packages/flow-core/src/components/f-tag/f-tag.ts @@ -15,7 +15,7 @@ import { FCounter } from "../f-counter/f-counter"; import { flowElement } from "./../../utils"; import { createRef, ref, Ref } from "lit/directives/ref.js"; import type { FDiv } from "../f-div/f-div"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { ifDefined } from "lit/directives/if-defined.js"; import { keyed } from "lit/directives/keyed.js"; diff --git a/packages/flow-core/src/components/f-template/f-template.test.ts b/packages/flow-core/src/components/f-template/f-template.test.ts index cc4a02818..e4bf5a1b2 100644 --- a/packages/flow-core/src/components/f-template/f-template.test.ts +++ b/packages/flow-core/src/components/f-template/f-template.test.ts @@ -1,7 +1,7 @@ import { expect } from "@open-wc/testing"; -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FTemplate } from "@ollion/flow-core"; +import { FTemplate } from "@nonfx/flow-core"; describe("f-template", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-template/f-template.ts b/packages/flow-core/src/components/f-template/f-template.ts index 9a6f94b87..b70ee0b35 100644 --- a/packages/flow-core/src/components/f-template/f-template.ts +++ b/packages/flow-core/src/components/f-template/f-template.ts @@ -2,7 +2,7 @@ import { html, unsafeCSS } from "lit"; import globalStyle from "./f-template-global.scss?inline"; import { FRoot } from "../../mixins/components/f-root/f-root"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-template", globalStyle); @flowElement("f-template") diff --git a/packages/flow-core/src/components/f-text-area/f-text-area.test.ts b/packages/flow-core/src/components/f-text-area/f-text-area.test.ts index 0cf9e4e0d..25f20f9eb 100644 --- a/packages/flow-core/src/components/f-text-area/f-text-area.test.ts +++ b/packages/flow-core/src/components/f-text-area/f-text-area.test.ts @@ -2,9 +2,9 @@ import { html, fixture, expect } from "@open-wc/testing"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FIcon, ConfigUtil, FTextArea } from "@ollion/flow-core"; +import { FIcon, ConfigUtil, FTextArea } from "@nonfx/flow-core"; // setting icon pack for testing icon related test cases ConfigUtil.setConfig({ iconPack: IconPack }); diff --git a/packages/flow-core/src/components/f-text-area/f-text-area.ts b/packages/flow-core/src/components/f-text-area/f-text-area.ts index 642c11a22..99ce8a339 100644 --- a/packages/flow-core/src/components/f-text-area/f-text-area.ts +++ b/packages/flow-core/src/components/f-text-area/f-text-area.ts @@ -6,7 +6,7 @@ import { FRoot } from "../../mixins/components/f-root/f-root"; import { FText } from "../f-text/f-text"; import { FDiv } from "../f-div/f-div"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-text-area", globalStyle); export type FTextAreaState = "primary" | "default" | "success" | "warning" | "danger"; diff --git a/packages/flow-core/src/components/f-text/f-text.test.ts b/packages/flow-core/src/components/f-text/f-text.test.ts index c4af9469c..0dc1c36c6 100644 --- a/packages/flow-core/src/components/f-text/f-text.test.ts +++ b/packages/flow-core/src/components/f-text/f-text.test.ts @@ -1,7 +1,7 @@ import { html, fixture, expect } from "@open-wc/testing"; -import "@ollion/flow-core"; -import { FText } from "@ollion/flow-core"; +import "@nonfx/flow-core"; +import { FText } from "@nonfx/flow-core"; describe("f-text", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-text/f-text.ts b/packages/flow-core/src/components/f-text/f-text.ts index 3a28627c3..73289d6d9 100644 --- a/packages/flow-core/src/components/f-text/f-text.ts +++ b/packages/flow-core/src/components/f-text/f-text.ts @@ -8,7 +8,7 @@ import { validateHTMLColor } from "validate-color"; import { validateHTMLColorName } from "validate-color"; import { flowElement } from "./../../utils"; import { FIcon } from "../f-icon/f-icon"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import Mark from "mark.js/dist/mark.es6.min"; injectCss("f-text", globalStyle); diff --git a/packages/flow-core/src/components/f-toast/f-toast.test.ts b/packages/flow-core/src/components/f-toast/f-toast.test.ts index 2780726d4..77d28dedf 100644 --- a/packages/flow-core/src/components/f-toast/f-toast.test.ts +++ b/packages/flow-core/src/components/f-toast/f-toast.test.ts @@ -2,9 +2,9 @@ import { html, fixture, expect } from "@open-wc/testing"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { FIcon, ConfigUtil, FToast } from "@ollion/flow-core"; +import { FIcon, ConfigUtil, FToast } from "@nonfx/flow-core"; // setting icon pack for testing icon related test cases ConfigUtil.setConfig({ iconPack: IconPack }); diff --git a/packages/flow-core/src/components/f-toast/f-toast.ts b/packages/flow-core/src/components/f-toast/f-toast.ts index b7dd2e8b0..3e3d6e8b6 100644 --- a/packages/flow-core/src/components/f-toast/f-toast.ts +++ b/packages/flow-core/src/components/f-toast/f-toast.ts @@ -8,7 +8,7 @@ import toastQueue from "./f-toast-queue"; import { FDiv } from "../f-div/f-div"; import { FIcon } from "../f-icon/f-icon"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-toast", globalStyle); export type FToastState = "default" | "primary" | "success" | "warning" | "danger"; diff --git a/packages/flow-core/src/components/f-tooltip/f-tooltip.test.ts b/packages/flow-core/src/components/f-tooltip/f-tooltip.test.ts index a44ab3163..391d3ea27 100644 --- a/packages/flow-core/src/components/f-tooltip/f-tooltip.test.ts +++ b/packages/flow-core/src/components/f-tooltip/f-tooltip.test.ts @@ -1,7 +1,7 @@ import { html, fixture, expect } from "@open-wc/testing"; -import "@ollion/flow-core"; -import { FTooltip } from "@ollion/flow-core"; +import "@nonfx/flow-core"; +import { FTooltip } from "@nonfx/flow-core"; describe("f-tooltip", () => { it("is defined", () => { diff --git a/packages/flow-core/src/components/f-tooltip/f-tooltip.ts b/packages/flow-core/src/components/f-tooltip/f-tooltip.ts index 8bb9f6040..778582905 100644 --- a/packages/flow-core/src/components/f-tooltip/f-tooltip.ts +++ b/packages/flow-core/src/components/f-tooltip/f-tooltip.ts @@ -5,7 +5,7 @@ import { FDiv } from "../f-div/f-div"; import { FText } from "../f-text/f-text"; import { FPopover } from "../f-popover/f-popover"; import { flowElement } from "./../../utils"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-tooltip", globalStyle); export type FTooltipPlacement = diff --git a/packages/flow-core/src/index.ts b/packages/flow-core/src/index.ts index 5f60adc03..144306f0d 100644 --- a/packages/flow-core/src/index.ts +++ b/packages/flow-core/src/index.ts @@ -1,11 +1,11 @@ /// -import { ConfigUtil } from "@ollion/flow-core-config"; +import { ConfigUtil } from "@nonfx/flow-core-config"; import { version } from "../package.json"; export { flowElement } from "./utils"; -export * from "@ollion/flow-core-config"; +export * from "@nonfx/flow-core-config"; export * from "./components/f-button/f-button"; export * from "./components/f-icon/f-icon"; export * from "./components/f-divider/f-divider"; @@ -74,7 +74,7 @@ document.addEventListener("keyup", (event: KeyboardEvent) => { }); console.log( - `%c@ollion/flow-core%cv${version}`, + `%c@nonfx/flow-core%cv${version}`, "background:#161616;color:white;padding:4px 6px 4px 6px;border-radius:4px 0px 0px 4px", "background:#695bf4;color:white;padding:4px 6px 4px 6px;border-radius:0px 4px 4px 0px;" ); diff --git a/packages/flow-core/src/mixins/components/f-root/f-root.ts b/packages/flow-core/src/mixins/components/f-root/f-root.ts index 96ee744ab..3384731ec 100644 --- a/packages/flow-core/src/mixins/components/f-root/f-root.ts +++ b/packages/flow-core/src/mixins/components/f-root/f-root.ts @@ -2,7 +2,7 @@ import { LitElement, PropertyValueMap, PropertyValues, unsafeCSS } from "lit"; import { property, query } from "lit/decorators.js"; import globalStyle from "./f-root-global.scss?inline"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { FTooltipPlacement } from "../../../components/f-tooltip/f-tooltip"; import type { FText } from "../../../components/f-text/f-text"; diff --git a/packages/flow-core/theme.doc.md b/packages/flow-core/theme.doc.md index 2ddd11ac1..24782edff 100644 --- a/packages/flow-core/theme.doc.md +++ b/packages/flow-core/theme.doc.md @@ -17,7 +17,7 @@ $color-primary-default: #cc8899; 6. Once you have successfully added the theme file to your project, use the following API to apply the theme to your startup file.In **VueJS:** (src/main.ts or main.js), **Angular:** (src/main.ts), **React:** (src/index.tsx or index.jsx) ```javascript -import { ConfigUtil } from "@ollion/flow-core"; +import { ConfigUtil } from "@nonfx/flow-core"; ConfigUtil.setConfig({ theme: "" }); ``` diff --git a/packages/flow-core/vite.config.ts b/packages/flow-core/vite.config.ts index de6010547..c6687db65 100644 --- a/packages/flow-core/vite.config.ts +++ b/packages/flow-core/vite.config.ts @@ -22,7 +22,7 @@ export default defineConfig({ "lodash-es", /^lit/, "rxjs", - "@ollion/flow-core-config", + "@nonfx/flow-core-config", "vanilla-colorful", "mark.js" ] diff --git a/packages/flow-dashboard/CHANGELOG.md b/packages/flow-dashboard/CHANGELOG.md index 6ba2ee549..a678fc277 100644 --- a/packages/flow-dashboard/CHANGELOG.md +++ b/packages/flow-dashboard/CHANGELOG.md @@ -6,7 +6,7 @@ ### First Release -- `@ollion/flow-dashboard` released. +- `@nonfx/flow-dashboard` released. ### Note diff --git a/packages/flow-dashboard/README.md b/packages/flow-dashboard/README.md index 0ce9ffb72..e524ee2a2 100644 --- a/packages/flow-dashboard/README.md +++ b/packages/flow-dashboard/README.md @@ -7,7 +7,7 @@ The Flow dashboard is built on the Flow design framework ([website](https://flow ### 1️⃣ Install flow dashboard dependency ``` -npm i --save @ollion/flow-dashboard +npm i --save @nonfx/flow-dashboard ``` **Note:** after installation, re-start your application. @@ -19,8 +19,8 @@ npm i --save @ollion/flow-dashboard Paste the below snippet in your project and add your application startup/runtime code to it. ```javascript -import "@ollion/flow-core"; -import "@ollion/flow-dashboard"; +import "@nonfx/flow-core"; +import "@nonfx/flow-dashboard"; ```
@@ -33,7 +33,7 @@ import "@ollion/flow-dashboard"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-dashboard/dist/types/vue3"; +import "@nonfx/flow-dashboard/dist/types/vue3"; ```
@@ -42,7 +42,7 @@ import "@ollion/flow-dashboard/dist/types/vue3"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-dashboard/dist/types/vue2"; +import "@nonfx/flow-dashboard/dist/types/vue2"; ```
@@ -53,7 +53,7 @@ import "@ollion/flow-dashboard/dist/types/vue2"; **React**: Include react type in `tsconfig.json` file like below. ```json -"include": ["src", "./node_modules/@ollion/flow-dashboard/dist/types/react.ts"] +"include": ["src", "./node_modules/@nonfx/flow-dashboard/dist/types/react.ts"] ``` diff --git a/packages/flow-dashboard/package.json b/packages/flow-dashboard/package.json index 32dd419cb..0cd1f32ce 100644 --- a/packages/flow-dashboard/package.json +++ b/packages/flow-dashboard/package.json @@ -1,5 +1,5 @@ { - "name": "@ollion/flow-dashboard", + "name": "@nonfx/flow-dashboard", "version": "0.0.1", "description": "Dashboard as code", "module": "dist/flow-dashboard.es.js", @@ -21,8 +21,8 @@ "lit" ], "dependencies": { - "@ollion/flow-core": "workspace:*", - "@ollion/flow-core-config": "workspace:*", + "@nonfx/flow-core": "workspace:*", + "@nonfx/flow-core-config": "workspace:*", "axios": "^0.27.2", "d3": "^7.6.1", "gridstack": "^9.5.0", @@ -30,8 +30,8 @@ "rxjs": "^7.8.1" }, "peerDependencies": { - "@ollion/flow-core": "^*", - "@ollion/flow-core-config": "^*" + "@nonfx/flow-core": "^*", + "@nonfx/flow-core-config": "^*" }, "devDependencies": { "@custom-elements-manifest/analyzer": "^0.5.7", @@ -62,6 +62,6 @@ "url": "https://github.com/ollionorg/flow-core/issues" }, "homepage": "https://github.com/ollionorg/flow-core/packages/flow-dashboard#readme", - "author": "@ollion", + "author": "@nonfx", "license": "MIT" } diff --git a/packages/flow-dashboard/src/components/f-dashboard/f-dashboard.ts b/packages/flow-dashboard/src/components/f-dashboard/f-dashboard.ts index dbe44bcfe..24a321943 100644 --- a/packages/flow-dashboard/src/components/f-dashboard/f-dashboard.ts +++ b/packages/flow-dashboard/src/components/f-dashboard/f-dashboard.ts @@ -1,8 +1,8 @@ import { CSSResult, html, PropertyValueMap, unsafeCSS } from "lit"; import { property } from "lit/decorators.js"; -import { FRoot, flowElement } from "@ollion/flow-core"; +import { FRoot, flowElement } from "@nonfx/flow-core"; import globalStyle from "./f-dashboard-global.scss?inline"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { GridStack } from "gridstack"; import { FDashboardConfig } from "../../types"; import { getWidgetHeader, renderWidget, getWidgetFooter } from "./f-dashboard-utils"; diff --git a/packages/flow-dashboard/src/components/f-timeseries-chart/f-timeseries-chart.test.ts b/packages/flow-dashboard/src/components/f-timeseries-chart/f-timeseries-chart.test.ts index b53aca4c4..f7b0c584d 100644 --- a/packages/flow-dashboard/src/components/f-timeseries-chart/f-timeseries-chart.test.ts +++ b/packages/flow-dashboard/src/components/f-timeseries-chart/f-timeseries-chart.test.ts @@ -3,10 +3,10 @@ import { expect } from "@open-wc/testing"; // IconPack to test import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // import flow-core elements -import "@ollion/flow-core"; -import "@ollion/flow-dashboard"; -import { ConfigUtil } from "@ollion/flow-core"; -import { FTimeseriesChart } from "@ollion/flow-dashboard"; +import "@nonfx/flow-core"; +import "@nonfx/flow-dashboard"; +import { ConfigUtil } from "@nonfx/flow-core"; +import { FTimeseriesChart } from "@nonfx/flow-dashboard"; ConfigUtil.setConfig({ iconPack: IconPack }); diff --git a/packages/flow-dashboard/src/components/f-timeseries-chart/f-timeseries-chart.ts b/packages/flow-dashboard/src/components/f-timeseries-chart/f-timeseries-chart.ts index 2e80bd1fe..b1b3626a7 100644 --- a/packages/flow-dashboard/src/components/f-timeseries-chart/f-timeseries-chart.ts +++ b/packages/flow-dashboard/src/components/f-timeseries-chart/f-timeseries-chart.ts @@ -1,8 +1,8 @@ import { html, PropertyValueMap, unsafeCSS, svg, render, nothing } from "lit"; import { property } from "lit/decorators.js"; -import { FRoot, flowElement, FDiv } from "@ollion/flow-core"; +import { FRoot, flowElement, FDiv } from "@nonfx/flow-core"; import globalStyle from "./f-timeseries-chart-global.scss?inline"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import * as d3 from "d3"; import { NumberValue } from "d3"; import { createRef, Ref, ref } from "lit/directives/ref.js"; diff --git a/packages/flow-dashboard/vite.config.ts b/packages/flow-dashboard/vite.config.ts index 0b591de02..1493edb7d 100644 --- a/packages/flow-dashboard/vite.config.ts +++ b/packages/flow-dashboard/vite.config.ts @@ -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: ["@ollion/flow-core-config", "@ollion/flow-core", /^lit/], + external: ["@nonfx/flow-core-config", "@nonfx/flow-core", /^lit/], output: { globals: { - "@ollion/flow-core": "@ollion/flow-core" + "@nonfx/flow-core": "@nonfx/flow-core" } } } diff --git a/packages/flow-form-builder/CHANGELOG.md b/packages/flow-form-builder/CHANGELOG.md index f5ef345b5..b7a42f905 100644 --- a/packages/flow-form-builder/CHANGELOG.md +++ b/packages/flow-form-builder/CHANGELOG.md @@ -124,8 +124,8 @@ - Remove sideEffects because the components require registration via import - Updated dependencies -- `@ollion/flow-core-config@1.1.3` -- `@ollion/flow-core@2.0.3` +- `@nonfx/flow-core-config@1.1.3` +- `@nonfx/flow-core@2.0.3` ## [2.0.2] - 2023-10-10 @@ -133,8 +133,8 @@ - `a2de106`: Fix platform types - Updated dependencies [a2de106] -- `@ollion/flow-core-config@1.1.1` -- `@ollion/flow-core@2.0.1` +- `@nonfx/flow-core-config@1.1.1` +- `@nonfx/flow-core@2.0.1` ## [2.0.1-beta.0] -2023-10-10 @@ -142,8 +142,8 @@ - Fix platform types - Updated dependencies -- `@ollion/flow-core-config@1.1.1-beta.0` -- `@ollion/flow-core@2.0.1-beta.0` +- `@nonfx/flow-core-config@1.1.1-beta.0` +- `@nonfx/flow-core@2.0.1-beta.0` ## [2.0.0] - 2023-10-10 @@ -154,7 +154,7 @@ ### Patch Changes - Updated dependencies -- `@ollion/flow-core@2.0.0` +- `@nonfx/flow-core@2.0.0`

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

@@ -617,7 +617,7 @@ ### Improvements -- package renamed from `@ollion/flow-formbuilder` to `@ollion/flow-form-builder` +- package renamed from `@nonfx/flow-formbuilder` to `@nonfx/flow-form-builder` ## [0.0.6] - 2023-01-04 diff --git a/packages/flow-form-builder/README.md b/packages/flow-form-builder/README.md index 8e41aed3a..2f29e450f 100644 --- a/packages/flow-form-builder/README.md +++ b/packages/flow-form-builder/README.md @@ -1,6 +1,6 @@ # Flow Form builder -![npm](https://badgen.net/npm/v/@ollion/flow-form-builder) ![license](https://badgen.net/npm/license/@ollion/flow-form-builder) ![types](https://badgen.net/npm/types/@ollion/flow-form-builder) ![downloads](https://badgen.net//npm/dw/@ollion/flow-form-builder) +![npm](https://badgen.net/npm/v/@nonfx/flow-form-builder) ![license](https://badgen.net/npm/license/@nonfx/flow-form-builder) ![types](https://badgen.net/npm/types/@nonfx/flow-form-builder) ![downloads](https://badgen.net//npm/dw/@nonfx/flow-form-builder) The Flow form builder is built on the Flow design framework ([website](https://flow.ollion.com/) / [github](https://github.com/ollionorg/flow-core)) @@ -65,7 +65,7 @@ Flow form builder is built on [Flow](https://flow.ollion.com/), an open source d ### 1️⃣ Install flow form builder dependency ``` -npm i --save @ollion/flow-form-builder +npm i --save @nonfx/flow-form-builder ``` **Note:** after installation, re-start your application. @@ -77,8 +77,8 @@ npm i --save @ollion/flow-form-builder Paste the below snippet in your project and add your application startup/runtime code to it. ```javascript -import "@ollion/flow-core"; -import "@ollion/flow-form-builder"; +import "@nonfx/flow-core"; +import "@nonfx/flow-form-builder"; ```
@@ -91,7 +91,7 @@ import "@ollion/flow-form-builder"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-form-builder/dist/types/vue3"; +import "@nonfx/flow-form-builder/dist/types/vue3"; ```
@@ -100,7 +100,7 @@ import "@ollion/flow-form-builder/dist/types/vue3"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-form-builder/dist/types/vue2"; +import "@nonfx/flow-form-builder/dist/types/vue2"; ```
@@ -111,7 +111,7 @@ import "@ollion/flow-form-builder/dist/types/vue2"; **React**: Include react type in `tsconfig.json` file like below. ```json -"include": ["src", "./node_modules/@ollion/flow-form-builder/dist/types/react.ts"] +"include": ["src", "./node_modules/@nonfx/flow-form-builder/dist/types/react.ts"] ``` @@ -150,7 +150,7 @@ import { FormBuilderField, FormBuilderState, FormBuilderValues, -} from "@ollion/flow-form-builder"; +} from "@nonfx/flow-form-builder"; import { defineComponent } from "vue"; export default defineComponent({ diff --git a/packages/flow-form-builder/package.json b/packages/flow-form-builder/package.json index 44745c703..17db0641b 100644 --- a/packages/flow-form-builder/package.json +++ b/packages/flow-form-builder/package.json @@ -1,5 +1,5 @@ { - "name": "@ollion/flow-form-builder", + "name": "@nonfx/flow-form-builder", "version": "2.4.4", "description": "Form builder for the flow design system", "module": "dist/flow-form-builder.es.js", @@ -20,8 +20,8 @@ "lit" ], "dependencies": { - "@ollion/flow-core": "workspace:*", - "@ollion/flow-core-config": "workspace:*", + "@nonfx/flow-core": "workspace:*", + "@nonfx/flow-core-config": "workspace:*", "lit": "^3.1.0", "lodash-es": "^4.17.21", "rxjs": "^7.8.0" @@ -42,8 +42,8 @@ "web-component-analyzer": "^2.0.0-next.4" }, "peerDependencies": { - "@ollion/flow-core": "^2.1.3", - "@ollion/flow-core-config": "^1.1.3" + "@nonfx/flow-core": "^2.1.3", + "@nonfx/flow-core-config": "^1.1.3" }, "repository": { "type": "git", @@ -59,6 +59,6 @@ "url": "https://github.com/ollionorg/flow-core/issues" }, "homepage": "https://github.com/ollionorg/flow-core#readme", - "author": "@ollion", + "author": "@nonfx", "license": "MIT" } diff --git a/packages/flow-form-builder/src/components/f-checkbox-group/f-checkbox-group.ts b/packages/flow-form-builder/src/components/f-checkbox-group/f-checkbox-group.ts index 79651dbca..c2ce23817 100644 --- a/packages/flow-form-builder/src/components/f-checkbox-group/f-checkbox-group.ts +++ b/packages/flow-form-builder/src/components/f-checkbox-group/f-checkbox-group.ts @@ -3,11 +3,11 @@ import { customElement, property } from "lit/decorators.js"; import { CheckboxOption, CheckboxOptions } from "../../types"; import eleStyle from "./f-checkbox-group.scss?inline"; import globalStyle from "./f-checkbox-group-global.scss?inline"; -import { FRoot, FDiv, FText, FCheckbox } from "@ollion/flow-core"; +import { FRoot, FDiv, FText, FCheckbox } from "@nonfx/flow-core"; import { isEqual } from "lodash-es"; export type FCheckboxGroupValue = string[]; export const checkboxGroupStyles = eleStyle; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-checkbox-group", globalStyle); @customElement("f-checkbox-group") diff --git a/packages/flow-form-builder/src/components/f-field-separator/f-field-separator.ts b/packages/flow-form-builder/src/components/f-field-separator/f-field-separator.ts index 6a93bd519..86fddb961 100644 --- a/packages/flow-form-builder/src/components/f-field-separator/f-field-separator.ts +++ b/packages/flow-form-builder/src/components/f-field-separator/f-field-separator.ts @@ -1,9 +1,9 @@ import { html, nothing, unsafeCSS } from "lit"; import { customElement, property } from "lit/decorators.js"; -import { FRoot, FDivider, FDividerState, FText, FDiv } from "@ollion/flow-core"; +import { FRoot, FDivider, FDividerState, FText, FDiv } from "@nonfx/flow-core"; import eleStyle from "./f-field-separator.scss?inline"; import globalStyle from "./f-field-separator-global.scss?inline"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-field-separator", globalStyle); diff --git a/packages/flow-form-builder/src/components/f-form-array/f-form-array.ts b/packages/flow-form-builder/src/components/f-form-array/f-form-array.ts index cc6f0c1ae..847141f1a 100644 --- a/packages/flow-form-builder/src/components/f-form-array/f-form-array.ts +++ b/packages/flow-form-builder/src/components/f-form-array/f-form-array.ts @@ -1,7 +1,7 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ import { html, nothing, PropertyValueMap, unsafeCSS } from "lit"; import { customElement, property, queryAll } from "lit/decorators.js"; -import { FDiv, FRoot, injectCss } from "@ollion/flow-core"; +import { FDiv, FRoot, injectCss } from "@nonfx/flow-core"; import eleStyle from "./f-form-array.scss?inline"; import { CanValidateFields, @@ -18,7 +18,7 @@ import { validateField } from "../../modules/validation/validator"; import { Subject } from "rxjs"; import { getEssentialFlowCoreStyles, propogateProperties } from "../../modules/helpers"; import { FFormObject } from "../f-form-object/f-form-object"; -import { FIconButton } from "@ollion/flow-core"; +import { FIconButton } from "@nonfx/flow-core"; import { ifDefined } from "lit/directives/if-defined.js"; import globalStyle from "./f-form-array-global.scss?inline"; diff --git a/packages/flow-form-builder/src/components/f-form-builder/f-form-builder.test.ts b/packages/flow-form-builder/src/components/f-form-builder/f-form-builder.test.ts index bf6d52ca9..462e3e9f1 100644 --- a/packages/flow-form-builder/src/components/f-form-builder/f-form-builder.test.ts +++ b/packages/flow-form-builder/src/components/f-form-builder/f-form-builder.test.ts @@ -1,11 +1,11 @@ import { html, fixture, expect, oneEvent } from "@open-wc/testing"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; import "@ollion/flow-system-icon"; import { FFormArray, FFormBuilder, FFormObject } from "../../../"; -import { FForm, FFormGroup, FIconButton, FInput } from "@ollion/flow-core"; +import { FForm, FFormGroup, FIconButton, FInput } from "@nonfx/flow-core"; import { FormBuilderField } from "../../types"; function getSampleFormBuilder() { diff --git a/packages/flow-form-builder/src/components/f-form-builder/f-form-builder.ts b/packages/flow-form-builder/src/components/f-form-builder/f-form-builder.ts index 23f39e6d4..def4da39a 100644 --- a/packages/flow-form-builder/src/components/f-form-builder/f-form-builder.ts +++ b/packages/flow-form-builder/src/components/f-form-builder/f-form-builder.ts @@ -18,7 +18,7 @@ import { import eleStyle from "./f-form-builder.scss?inline"; import globalStyle from "./f-form-builder-global.scss?inline"; -import { FDiv, FRoot } from "@ollion/flow-core"; +import { FDiv, FRoot } from "@nonfx/flow-core"; import { Ref, createRef } from "lit/directives/ref.js"; import fieldRenderer from "./fields"; import { extractValidationState, validateField } from "../../modules/validation/validator"; @@ -26,7 +26,7 @@ import { debounce } from "lodash-es"; import { Subject } from "rxjs"; import { getEssentialFlowCoreStyles, propogateProperties } from "../../modules/helpers"; import { cloneDeep, isEqual } from "lodash-es"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { ifDefined } from "lit/directives/if-defined.js"; import formArrayGlobalStyles from "./../f-form-array/f-form-array-global.scss?inline"; diff --git a/packages/flow-form-builder/src/components/f-form-object/f-form-object.ts b/packages/flow-form-builder/src/components/f-form-object/f-form-object.ts index e85d697b9..516c70eb8 100644 --- a/packages/flow-form-builder/src/components/f-form-object/f-form-object.ts +++ b/packages/flow-form-builder/src/components/f-form-object/f-form-object.ts @@ -1,6 +1,6 @@ import { html, nothing, PropertyValueMap, TemplateResult, unsafeCSS } from "lit"; import { customElement, property, query } from "lit/decorators.js"; -import { FDiv, FRoot } from "@ollion/flow-core"; +import { FDiv, FRoot } from "@nonfx/flow-core"; import eleStyle from "./f-form-object.scss?inline"; import globalStyle from "./f-form-object-global.scss?inline"; @@ -17,7 +17,7 @@ import { import { validateField } from "../../modules/validation/validator"; import { Subject } from "rxjs"; import { getEssentialFlowCoreStyles, propogateProperties } from "../../modules/helpers"; -import { FFormGroup } from "@ollion/flow-core"; +import { FFormGroup } from "@nonfx/flow-core"; import { FFieldSeparator } from "../f-field-separator/f-field-separator"; import { radioGroupStyles } from "../f-radio-group/f-radio-group"; import { checkboxGroupStyles } from "../f-checkbox-group/f-checkbox-group"; diff --git a/packages/flow-form-builder/src/components/f-radio-group/f-radio-group.ts b/packages/flow-form-builder/src/components/f-radio-group/f-radio-group.ts index 6b935dda1..0252e0fa7 100644 --- a/packages/flow-form-builder/src/components/f-radio-group/f-radio-group.ts +++ b/packages/flow-form-builder/src/components/f-radio-group/f-radio-group.ts @@ -1,12 +1,12 @@ -// import { FRoot } from "@ollion/flow-core"; +// import { FRoot } from "@nonfx/flow-core"; import { html, PropertyValueMap, unsafeCSS } from "lit"; import { customElement, property } from "lit/decorators.js"; import { RadioOption, RadioOptions } from "../../types"; import eleStyle from "./f-radio-group.scss?inline"; import globalStyle from "./f-radio-group-global.scss?inline"; -import { FDiv, FRadio, FRoot, FText } from "@ollion/flow-core"; +import { FDiv, FRadio, FRoot, FText } from "@nonfx/flow-core"; import { isEqual } from "lodash-es"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-checkbox-group", globalStyle); diff --git a/packages/flow-form-builder/src/modules/helpers.ts b/packages/flow-form-builder/src/modules/helpers.ts index f883d2833..19f02c8c0 100644 --- a/packages/flow-form-builder/src/modules/helpers.ts +++ b/packages/flow-form-builder/src/modules/helpers.ts @@ -28,7 +28,7 @@ import { FSwitch, FTextArea, FColorPicker -} from "@ollion/flow-core"; +} from "@nonfx/flow-core"; import checkboxGroupGlobalStyles from "./../components/f-checkbox-group/f-checkbox-group-global.scss?inline"; import radioGroupGlobalStyles from "./../components/f-radio-group/f-radio-group-global.scss?inline"; diff --git a/packages/flow-form-builder/src/modules/validation/validator.ts b/packages/flow-form-builder/src/modules/validation/validator.ts index 852e742a7..314f368e1 100644 --- a/packages/flow-form-builder/src/modules/validation/validator.ts +++ b/packages/flow-form-builder/src/modules/validation/validator.ts @@ -23,7 +23,7 @@ import { FInputLight, FSelect, FSuggest -} from "@ollion/flow-core"; +} from "@nonfx/flow-core"; import defaultValidations from "./default-validations"; import { render } from "lit-html"; type FormBuilderValidationRuleWithPrivateFields = { diff --git a/packages/flow-form-builder/src/types.ts b/packages/flow-form-builder/src/types.ts index 40c4f3b63..bf5139f24 100644 --- a/packages/flow-form-builder/src/types.ts +++ b/packages/flow-form-builder/src/types.ts @@ -23,7 +23,7 @@ import { FColorPickerState, FSelectMaxOptionsWidth, FSuggestWhen -} from "@ollion/flow-core"; +} from "@nonfx/flow-core"; import { BetweenParams } from "./modules/validation/rules/between"; import { Subject } from "rxjs"; import { MaxParams } from "./modules/validation/rules/max"; diff --git a/packages/flow-form-builder/vite.config.ts b/packages/flow-form-builder/vite.config.ts index 2fdd74c08..d2adbd7d6 100644 --- a/packages/flow-form-builder/vite.config.ts +++ b/packages/flow-form-builder/vite.config.ts @@ -13,10 +13,10 @@ export default defineConfig({ formats: ["es", "cjs"] }, rollupOptions: { - external: ["@ollion/flow-core-config", "@ollion/flow-core", /^lit/, "rxjs", "lodash-es"], + external: ["@nonfx/flow-core-config", "@nonfx/flow-core", /^lit/, "rxjs", "lodash-es"], output: { globals: { - "@ollion/flow-core": "@ollion/flow-core" + "@nonfx/flow-core": "@nonfx/flow-core" } } } diff --git a/packages/flow-form-builder/vite.umd.config.ts b/packages/flow-form-builder/vite.umd.config.ts index d12bce219..f3f1b21d6 100644 --- a/packages/flow-form-builder/vite.umd.config.ts +++ b/packages/flow-form-builder/vite.umd.config.ts @@ -10,10 +10,10 @@ export default defineConfig({ }, outDir: "umd", rollupOptions: { - external: ["@ollion/flow-core-config", "@ollion/flow-core"], + external: ["@nonfx/flow-core-config", "@nonfx/flow-core"], output: { globals: { - "@ollion/flow-core": "flowCore" + "@nonfx/flow-core": "flowCore" } } } diff --git a/packages/flow-lineage/CHANGELOG.md b/packages/flow-lineage/CHANGELOG.md index a2090c404..6a7225095 100644 --- a/packages/flow-lineage/CHANGELOG.md +++ b/packages/flow-lineage/CHANGELOG.md @@ -41,8 +41,8 @@ - Remove sideEffects because the components require registration via import - Updated dependencies -- `@ollion/flow-core-config@1.1.3` -- `@ollion/flow-core@2.0.3` +- `@nonfx/flow-core-config@1.1.3` +- `@nonfx/flow-core@2.0.3` ## [3.0.2] - 2023-10-10 @@ -50,8 +50,8 @@ - a2de106: Fix platform types - Updated dependencies [a2de106] -- `@ollion/flow-core-config@1.1.1` -- `@ollion/flow-core@2.0.1` +- `@nonfx/flow-core-config@1.1.1` +- `@nonfx/flow-core@2.0.1` ## [3.0.1-beta.0] - 2023-10-10 @@ -59,8 +59,8 @@ - Fix platform types - Updated dependencies -- `@ollion/flow-core-config@1.1.1-beta.0` -- `@ollion/flow-core@2.0.1-beta.0` +- `@nonfx/flow-core-config@1.1.1-beta.0` +- `@nonfx/flow-core@2.0.1-beta.0` ## [3.0.0] - 2023-10-10 @@ -71,7 +71,7 @@ ### Patch Changes - Updated dependencies -- `@ollion/flow-core@2.0.0` +- `@nonfx/flow-core@2.0.0`

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

diff --git a/packages/flow-lineage/KNOWN_SOLUTIONS.md b/packages/flow-lineage/KNOWN_SOLUTIONS.md index f83bdc087..529e7a484 100644 --- a/packages/flow-lineage/KNOWN_SOLUTIONS.md +++ b/packages/flow-lineage/KNOWN_SOLUTIONS.md @@ -1,6 +1,6 @@ # Known Solutions -## Typescript error when you import Flow lineage in an existing project `@ollion/flow-lineage` +## Typescript error when you import Flow lineage in an existing project `@nonfx/flow-lineage` ![Screenshot 2023-01-09 at 9 25 04 PM](https://user-images.githubusercontent.com/67629551/211354086-3c10adb4-cd67-4cf5-8c69-cd79ac5fa095.png) @@ -30,16 +30,16 @@ Solution : You might be using old version of a flow package, you need to cross c ## Issue with `.npmrc` (For CloudCover developers only) -1. If you are using `@ollion/flow` package with Azure registry then please update your `.npmrc` with following content. +1. If you are using `@nonfx/flow` package with Azure registry then please update your `.npmrc` with following content. ``` -@ollion:registry=https://npm.pkg.github.com/ +@nonfx:registry=https://npm.pkg.github.com/ //npm.pkg.github.com/:_authToken= ``` Generate your PAT (Personal access token) by using this [document](https://npm.pkg.github.com/) -2. If you are consuming any `@ollion/` scoped private package from any different registry then publish that to [Github Registry](https://npm.pkg.github.com/), So that all `@ollion/` scoped packages consumed from single registry. +2. If you are consuming any `@nonfx/` scoped private package from any different registry then publish that to [Github Registry](https://npm.pkg.github.com/), So that all `@nonfx/` scoped packages consumed from single registry.
diff --git a/packages/flow-lineage/README.md b/packages/flow-lineage/README.md index a56b419b8..a95f6d066 100644 --- a/packages/flow-lineage/README.md +++ b/packages/flow-lineage/README.md @@ -1,6 +1,6 @@ # Flow Lineage -![npm](https://badgen.net/npm/v/@ollion/flow-lineage) ![license](https://badgen.net/npm/license/@ollion/flow-lineage) ![types](https://badgen.net/npm/types/@ollion/flow-lineage) ![downloads](https://badgen.net//npm/dw/@ollion/flow-lineage) +![npm](https://badgen.net/npm/v/@nonfx/flow-lineage) ![license](https://badgen.net/npm/license/@nonfx/flow-lineage) ![types](https://badgen.net/npm/types/@nonfx/flow-lineage) ![downloads](https://badgen.net//npm/dw/@nonfx/flow-lineage) A lineage chart is a graphical representation of a node's ancestors, showing the relationships among nodes. It is often used in analytics to show the relations and to trace their ancestry. Lineage charts can be in the form of a hierarchy data, showing the relationships between parents and children, or they can be more complex and show the relationships between more distant nodes. @@ -33,7 +33,7 @@ While installation if you run into any issues, head over to our [known issues + ### 1️⃣ Install flow lineage dependency ``` -npm i --save @ollion/flow-lineage +npm i --save @nonfx/flow-lineage ``` **Note:** after installation, re-start your application. @@ -45,19 +45,19 @@ npm i --save @ollion/flow-lineage Paste the below snippet in your project and add your application startup/runtime code to it. ```javascript -import "@ollion/flow-core"; -import "@ollion/flow-lineage"; +import "@nonfx/flow-core"; +import "@nonfx/flow-lineage"; ```
Example -**VueJS:** In the following example, I imported `@ollion/flow-core` and then imported the rest of the flow packages including `@ollion/flow-lineage` and after that startup code was added for VueJs `createApp(App).use(router).mount(“#app”);`. +**VueJS:** In the following example, I imported `@nonfx/flow-core` and then imported the rest of the flow packages including `@nonfx/flow-lineage` and after that startup code was added for VueJs `createApp(App).use(router).mount(“#app”);`. ```javascript -import "@ollion/flow-core"; +import "@nonfx/flow-core"; import "@ollion/flow-system-icon"; import "@ollion/flow-product-icon"; -import "@ollion/flow-lineage"; +import "@nonfx/flow-lineage"; createApp(App).use(router).mount("#app"); //runtime ``` @@ -74,7 +74,7 @@ createApp(App).use(router).mount("#app"); //runtime Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-lineage/dist/types/vue3"; +import "@nonfx/flow-lineage/dist/types/vue3"; ```
@@ -83,7 +83,7 @@ import "@ollion/flow-lineage/dist/types/vue3"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-lineage/dist/types/vue2"; +import "@nonfx/flow-lineage/dist/types/vue2"; ```
@@ -94,7 +94,7 @@ import "@ollion/flow-lineage/dist/types/vue2"; **React**: Include react type in `tsconfig.json` file like below. ```json -"include": ["src", "./node_modules/@ollion/flow-lineage/dist/types/react.ts"] +"include": ["src", "./node_modules/@nonfx/flow-lineage/dist/types/react.ts"] ```
diff --git a/packages/flow-lineage/package.json b/packages/flow-lineage/package.json index 82bd97566..a8d7b25f6 100644 --- a/packages/flow-lineage/package.json +++ b/packages/flow-lineage/package.json @@ -1,5 +1,5 @@ { - "name": "@ollion/flow-lineage", + "name": "@nonfx/flow-lineage", "version": "3.2.2", "description": "Lineage dependency for flow design system", "module": "dist/flow-lineage.es.js", @@ -20,8 +20,8 @@ "lit" ], "dependencies": { - "@ollion/flow-core": "workspace:*", - "@ollion/flow-core-config": "workspace:*", + "@nonfx/flow-core": "workspace:*", + "@nonfx/flow-core-config": "workspace:*", "d3": "^7.6.1", "lit": "^3.1.0" }, @@ -42,8 +42,8 @@ "web-component-analyzer": "^2.0.0-next.4" }, "peerDependencies": { - "@ollion/flow-core": "^2.0.3", - "@ollion/flow-core-config": "^1.1.3" + "@nonfx/flow-core": "^2.0.3", + "@nonfx/flow-core-config": "^1.1.3" }, "repository": { "type": "git", @@ -59,6 +59,6 @@ "url": "https://github.com/ollionorg/flow-core/issues" }, "homepage": "https://github.com/ollionorg/flow-core#readme", - "author": "@ollion", + "author": "@nonfx", "license": "MIT" } diff --git a/packages/flow-lineage/src/components/f-lineage/draw/draw-links.ts b/packages/flow-lineage/src/components/f-lineage/draw/draw-links.ts index 8dc1a6d7f..862f5d0e0 100644 --- a/packages/flow-lineage/src/components/f-lineage/draw/draw-links.ts +++ b/packages/flow-lineage/src/components/f-lineage/draw/draw-links.ts @@ -1,4 +1,4 @@ -import { FText, FTooltip } from "@ollion/flow-core"; +import { FText, FTooltip } from "@nonfx/flow-core"; import { DrawLineageParams, LevelLinkGap, LineageLinkElement } from "../lineage-types"; import drawElbow, { diff --git a/packages/flow-lineage/src/components/f-lineage/f-lineage.ts b/packages/flow-lineage/src/components/f-lineage/f-lineage.ts index f6e757cac..0a1b0898b 100644 --- a/packages/flow-lineage/src/components/f-lineage/f-lineage.ts +++ b/packages/flow-lineage/src/components/f-lineage/f-lineage.ts @@ -18,12 +18,12 @@ import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import drawLineage from "./draw/draw-lineage"; import lowlightPath from "./highlight/lowlight-path"; import createHierarchy from "./create/create-hierarchy"; -import { FButton, FDiv, FIcon, FIconButton, FPopover, FText } from "@ollion/flow-core"; -import { FRoot } from "@ollion/flow-core"; +import { FButton, FDiv, FIcon, FIconButton, FPopover, FText } from "@nonfx/flow-core"; +import { FRoot } from "@nonfx/flow-core"; import { debounce } from "../../utils"; import getProxies from "./draw/hot-reload-proxies"; import { ref, createRef, Ref } from "lit/directives/ref.js"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-lineage", globalStyle); // Renders attribute names of parent element to textContent diff --git a/packages/flow-lineage/src/components/f-lineage/lineage-types.ts b/packages/flow-lineage/src/components/f-lineage/lineage-types.ts index 3ceae6863..596d76634 100644 --- a/packages/flow-lineage/src/components/f-lineage/lineage-types.ts +++ b/packages/flow-lineage/src/components/f-lineage/lineage-types.ts @@ -1,6 +1,6 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ -import { FPopover } from "@ollion/flow-core"; +import { FPopover } from "@nonfx/flow-core"; import { FLineage } from "./f-lineage"; import { Ref } from "lit-html/directives/ref.js"; import { HTMLTemplateResult } from "lit"; diff --git a/packages/flow-lineage/src/index.ts b/packages/flow-lineage/src/index.ts index a1c5d1af3..390cf8cbb 100644 --- a/packages/flow-lineage/src/index.ts +++ b/packages/flow-lineage/src/index.ts @@ -3,7 +3,7 @@ export * from "./components/f-lineage/lineage-types"; import { version } from "./../package.json"; console.log( - `%c@ollion/flow-lineage%cv${version}`, + `%c@nonfx/flow-lineage%cv${version}`, "background:#161616;color:white;padding:4px 6px 4px 6px;border-radius:4px 0px 0px 4px", "background:#FC6600;color:white;padding:4px 6px 4px 6px;border-radius:0px 4px 4px 0px;" ); diff --git a/packages/flow-lineage/vite.config.ts b/packages/flow-lineage/vite.config.ts index 78d3dc16f..26ef5b471 100644 --- a/packages/flow-lineage/vite.config.ts +++ b/packages/flow-lineage/vite.config.ts @@ -13,10 +13,10 @@ export default defineConfig({ formats: ["es", "cjs"] }, rollupOptions: { - external: ["@ollion/flow-core-config", "@ollion/flow-core", /^lit/], + external: ["@nonfx/flow-core-config", "@nonfx/flow-core", /^lit/], output: { globals: { - "@ollion/flow-core": "@ollion/flow-core" + "@nonfx/flow-core": "@nonfx/flow-core" } } } diff --git a/packages/flow-log/CHANGELOG.md b/packages/flow-log/CHANGELOG.md index a72b62a99..bc5b0467b 100644 --- a/packages/flow-log/CHANGELOG.md +++ b/packages/flow-log/CHANGELOG.md @@ -81,8 +81,8 @@ - Remove sideEffects because the components require registration via import - Updated dependencies -- `@ollion/flow-core-config@1.1.3` -- `@ollion/flow-core@2.0.3` +- `@nonfx/flow-core-config@1.1.3` +- `@nonfx/flow-core@2.0.3` ## [1.0.2] - 2023-10-10 @@ -90,8 +90,8 @@ - a2de106: Fix platform types - Updated dependencies [a2de106] -- `@ollion/flow-core-config@1.1.1` -- `@ollion/flow-core@2.0.1` +- `@nonfx/flow-core-config@1.1.1` +- `@nonfx/flow-core@2.0.1` ## [1.0.1-beta.0] - 2023-10-10 @@ -99,8 +99,8 @@ - Fix platform types - Updated dependencies -- `@ollion/flow-core-config@1.1.1-beta.0` -- `@ollion/flow-core@2.0.1-beta.0` +- `@nonfx/flow-core-config@1.1.1-beta.0` +- `@nonfx/flow-core@2.0.1-beta.0` ## [1.0.0] - 2023-10-10 @@ -111,7 +111,7 @@ ### Patch Changes - Updated dependencies -- `@ollion/flow-core@2.0.0` +- `@nonfx/flow-core@2.0.0`
## [0.0.1] - 2023-05-29 diff --git a/packages/flow-log/README.md b/packages/flow-log/README.md index df556c852..081230633 100644 --- a/packages/flow-log/README.md +++ b/packages/flow-log/README.md @@ -7,7 +7,7 @@ The Flow Log is built on the Flow design framework ([website](https://flow.ollio ### 1️⃣ Install flow code editor dependency ``` -npm i --save @ollion/flow-log +npm i --save @nonfx/flow-log ``` **Note:** after installation, re-start your application. @@ -19,8 +19,8 @@ npm i --save @ollion/flow-log Paste the below snippet in your project and add your application startup/runtime code to it. ```javascript -import "@ollion/flow-core"; -import "@ollion/flow-log"; +import "@nonfx/flow-core"; +import "@nonfx/flow-log"; ```
@@ -33,7 +33,7 @@ import "@ollion/flow-log"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-log/dist/types/vue3"; +import "@nonfx/flow-log/dist/types/vue3"; ```
@@ -42,7 +42,7 @@ import "@ollion/flow-log/dist/types/vue3"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-log/dist/types/vue2"; +import "@nonfx/flow-log/dist/types/vue2"; ```
@@ -53,7 +53,7 @@ import "@ollion/flow-log/dist/types/vue2"; **React**: Include react type in `tsconfig.json` file like below. ```json -"include": ["src", "./node_modules/@ollion/flow-log/dist/types/react.ts"] +"include": ["src", "./node_modules/@nonfx/flow-log/dist/types/react.ts"] ``` diff --git a/packages/flow-log/package.json b/packages/flow-log/package.json index 3ff7e0c59..807a1a178 100644 --- a/packages/flow-log/package.json +++ b/packages/flow-log/package.json @@ -1,5 +1,5 @@ { - "name": "@ollion/flow-log", + "name": "@nonfx/flow-log", "version": "2.1.1", "description": "Code editor component for flow library", "module": "dist/flow-log.es.js", @@ -21,8 +21,8 @@ "lit" ], "dependencies": { - "@ollion/flow-core": "workspace:*", - "@ollion/flow-core-config": "workspace:*", + "@nonfx/flow-core": "workspace:*", + "@nonfx/flow-core-config": "workspace:*", "anser": "^2.1.1", "lit": "^3.1.0", "mark.js": "^8.11.1" @@ -43,8 +43,8 @@ "web-component-analyzer": "^2.0.0-next.4" }, "peerDependencies": { - "@ollion/flow-core": "^2.6.2", - "@ollion/flow-core-config": "^1.1.3" + "@nonfx/flow-core": "^2.6.2", + "@nonfx/flow-core-config": "^1.1.3" }, "repository": { "type": "git", @@ -60,6 +60,6 @@ "url": "https://github.com/ollionorg/flow-core/issues" }, "homepage": "https://github.com/ollionorg/flow-table#readme", - "author": "@ollion", + "author": "@nonfx", "license": "MIT" } diff --git a/packages/flow-log/src/components/f-log/f-log.test.ts b/packages/flow-log/src/components/f-log/f-log.test.ts index cee5adf61..b2f3dacf3 100644 --- a/packages/flow-log/src/components/f-log/f-log.test.ts +++ b/packages/flow-log/src/components/f-log/f-log.test.ts @@ -3,9 +3,9 @@ import { html, fixture, expect } from "@open-wc/testing"; import samplelogs from "./sample-logs"; // import flow-core elements -import "@ollion/flow-core"; -import { FLog } from "@ollion/flow-log"; -import { FDiv } from "@ollion/flow-core"; +import "@nonfx/flow-core"; +import { FLog } from "@nonfx/flow-log"; +import { FDiv } from "@nonfx/flow-core"; describe("f-log", () => { it("is defined", () => { diff --git a/packages/flow-log/src/components/f-log/f-log.ts b/packages/flow-log/src/components/f-log/f-log.ts index c5256a633..6b250d17b 100644 --- a/packages/flow-log/src/components/f-log/f-log.ts +++ b/packages/flow-log/src/components/f-log/f-log.ts @@ -14,9 +14,9 @@ import { FSearch, FSelect, FInput -} from "@ollion/flow-core"; +} from "@nonfx/flow-core"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { createRef, ref, Ref } from "lit/directives/ref.js"; import { classMap } from "lit/directives/class-map.js"; // Anser is used to highlight bash color codes diff --git a/packages/flow-log/vite.config.ts b/packages/flow-log/vite.config.ts index 14b3d4c02..f6e27caf4 100644 --- a/packages/flow-log/vite.config.ts +++ b/packages/flow-log/vite.config.ts @@ -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: ["@ollion/flow-core-config", "@ollion/flow-core", /^lit/, "mark.js"], + external: ["@nonfx/flow-core-config", "@nonfx/flow-core", /^lit/, "mark.js"], output: { globals: { - "@ollion/flow-core": "@ollion/flow-core" + "@nonfx/flow-core": "@nonfx/flow-core" } } } diff --git a/packages/flow-md-editor/CHANGELOG.md b/packages/flow-md-editor/CHANGELOG.md index 820e84ff3..b4e63841f 100644 --- a/packages/flow-md-editor/CHANGELOG.md +++ b/packages/flow-md-editor/CHANGELOG.md @@ -28,8 +28,8 @@ - Remove sideEffects because the components require registration via import - Updated dependencies -- `@ollion/flow-core-config@1.1.3` -- `@ollion/flow-core@2.0.3` +- `@nonfx/flow-core-config@1.1.3` +- `@nonfx/flow-core@2.0.3` ## [2.0.2] - 2023-10-10 @@ -37,8 +37,8 @@ - a2de106: Fix platform types - Updated dependencies [a2de106] -- `@ollion/flow-core-config@1.1.1` -- `@ollion/flow-core@2.0.1` +- `@nonfx/flow-core-config@1.1.1` +- `@nonfx/flow-core@2.0.1` ## [2.0.1-beta.0] - 2023-10-10 @@ -46,8 +46,8 @@ - Fix platform types - Updated dependencies -- `@ollion/flow-core-config@1.1.1-beta.0` -- `@ollion/flow-core@2.0.1-beta.0` +- `@nonfx/flow-core-config@1.1.1-beta.0` +- `@nonfx/flow-core@2.0.1-beta.0` ## [2.0.0] - 2023-10-10 @@ -58,7 +58,7 @@ ### Patch Changes - Updated dependencies -- `@ollion/flow-core@2.0.0` +- `@nonfx/flow-core@2.0.0`
## [1.0.0] - 2023-07-20 diff --git a/packages/flow-md-editor/README.md b/packages/flow-md-editor/README.md index b68f4a1b5..d037ba418 100644 --- a/packages/flow-md-editor/README.md +++ b/packages/flow-md-editor/README.md @@ -7,7 +7,7 @@ The Flow md editor is built on the Flow design framework ([website](https://flow ### 1️⃣ Install flow code editor dependency ``` -npm i --save @ollion/flow-md-editor +npm i --save @nonfx/flow-md-editor ``` **Note:** after installation, re-start your application. @@ -19,8 +19,8 @@ npm i --save @ollion/flow-md-editor Paste the below snippet in your project and add your application startup/runtime code to it. ```javascript -import "@ollion/flow-core"; -import "@ollion/flow-md-editor"; +import "@nonfx/flow-core"; +import "@nonfx/flow-md-editor"; ```
@@ -33,7 +33,7 @@ import "@ollion/flow-md-editor"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-md-editor/dist/types/vue3"; +import "@nonfx/flow-md-editor/dist/types/vue3"; ```
@@ -42,7 +42,7 @@ import "@ollion/flow-md-editor/dist/types/vue3"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-md-editor/dist/types/vue2"; +import "@nonfx/flow-md-editor/dist/types/vue2"; ```
@@ -53,7 +53,7 @@ import "@ollion/flow-md-editor/dist/types/vue2"; **React**: Include react type in `tsconfig.json` file like below. ```json -"include": ["src", "./node_modules/@ollion/flow-md-editor/dist/types/react.ts"] +"include": ["src", "./node_modules/@nonfx/flow-md-editor/dist/types/react.ts"] ``` diff --git a/packages/flow-md-editor/package.json b/packages/flow-md-editor/package.json index 5c0607525..d9200fcaa 100644 --- a/packages/flow-md-editor/package.json +++ b/packages/flow-md-editor/package.json @@ -1,5 +1,5 @@ { - "name": "@ollion/flow-md-editor", + "name": "@nonfx/flow-md-editor", "version": "2.1.2", "description": "Code editor component for flow library", "module": "dist/flow-md-editor.es.js", @@ -19,8 +19,8 @@ "lit" ], "dependencies": { - "@ollion/flow-core": "workspace:*", - "@ollion/flow-core-config": "workspace:*", + "@nonfx/flow-core": "workspace:*", + "@nonfx/flow-core-config": "workspace:*", "lit": "^3.1.0", "showdown": "^2.1.0" }, @@ -40,8 +40,8 @@ "web-component-analyzer": "^2.0.0-next.4" }, "peerDependencies": { - "@ollion/flow-core": "^2.0.3", - "@ollion/flow-core-config": "^1.1.3" + "@nonfx/flow-core": "^2.0.3", + "@nonfx/flow-core-config": "^1.1.3" }, "repository": { "type": "git", @@ -57,6 +57,6 @@ "url": "https://github.com/ollionorg/flow-core/issues" }, "homepage": "https://github.com/ollionorg/flow-core", - "author": "@ollion", + "author": "@nonfx", "license": "MIT" } diff --git a/packages/flow-md-editor/src/components/f-md-editor/f-md-editor.test.ts b/packages/flow-md-editor/src/components/f-md-editor/f-md-editor.test.ts index f2f8ea740..500f74703 100644 --- a/packages/flow-md-editor/src/components/f-md-editor/f-md-editor.test.ts +++ b/packages/flow-md-editor/src/components/f-md-editor/f-md-editor.test.ts @@ -3,10 +3,10 @@ import { expect, fixture, html } from "@open-wc/testing"; import sampleMd from "./sample-md"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { ConfigUtil } from "@ollion/flow-core"; -import { FMDEditor } from "@ollion/flow-md-editor"; +import { ConfigUtil } from "@nonfx/flow-core"; +import { FMDEditor } from "@nonfx/flow-md-editor"; ConfigUtil.setConfig({ iconPack: IconPack }); describe("f-md-editor", () => { diff --git a/packages/flow-md-editor/src/components/f-md-editor/f-md-editor.ts b/packages/flow-md-editor/src/components/f-md-editor/f-md-editor.ts index 24dcb5ce7..a7dd259c1 100644 --- a/packages/flow-md-editor/src/components/f-md-editor/f-md-editor.ts +++ b/packages/flow-md-editor/src/components/f-md-editor/f-md-editor.ts @@ -1,11 +1,11 @@ import { unsafeCSS, html } from "lit"; -import { FRoot, flowElement } from "@ollion/flow-core"; +import { FRoot, flowElement } from "@nonfx/flow-core"; import globalStyle from "./f-md-editor-global.scss?inline"; -import { FTextArea } from "@ollion/flow-core"; +import { FTextArea } from "@nonfx/flow-core"; import * as showdown from "showdown"; import { property, query } from "lit/decorators.js"; import { unsafeHTML } from "lit/directives/unsafe-html.js"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-md-editor", globalStyle); @flowElement("f-md-editor") diff --git a/packages/flow-md-editor/vite.config.ts b/packages/flow-md-editor/vite.config.ts index 5129cee7f..929767f94 100644 --- a/packages/flow-md-editor/vite.config.ts +++ b/packages/flow-md-editor/vite.config.ts @@ -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: ["@ollion/flow-core-config", "@ollion/flow-core", /^lit/, "monaco-editor"], + external: ["@nonfx/flow-core-config", "@nonfx/flow-core", /^lit/, "monaco-editor"], output: { globals: { - "@ollion/flow-core": "@ollion/flow-core" + "@nonfx/flow-core": "@nonfx/flow-core" } } } diff --git a/packages/flow-table/CHANGELOG.md b/packages/flow-table/CHANGELOG.md index 071c68eaf..10a03e746 100644 --- a/packages/flow-table/CHANGELOG.md +++ b/packages/flow-table/CHANGELOG.md @@ -141,8 +141,8 @@ - Remove sideEffects because the components require registration via import - Updated dependencies -- `@ollion/flow-core-config@1.1.3` -- `@ollion/flow-core@2.0.3` +- `@nonfx/flow-core-config@1.1.3` +- `@nonfx/flow-core@2.0.3` ## [2.0.2] - 2023-10-10 @@ -150,8 +150,8 @@ - a2de106: Fix platform types - Updated dependencies [a2de106] -- `@ollion/flow-core-config@1.1.1` -- `@ollion/flow-core@2.0.1` +- `@nonfx/flow-core-config@1.1.1` +- `@nonfx/flow-core@2.0.1` ## [2.0.1-beta.0] - 2023-10-10 @@ -159,8 +159,8 @@ - Fix platform types - Updated dependencies -- `@ollion/flow-core-config@1.1.1-beta.0` -- `@ollion/flow-core@2.0.1-beta.0` +- `@nonfx/flow-core-config@1.1.1-beta.0` +- `@nonfx/flow-core@2.0.1-beta.0` ## [2.0.0] - 2023-10-10 @@ -171,7 +171,7 @@ ### Patch Changes - Updated dependencies -- `@ollion/flow-core@2.0.0` +- `@nonfx/flow-core@2.0.0`
## [1.3.4] - 2023-10-05 diff --git a/packages/flow-table/README.md b/packages/flow-table/README.md index f6a2916d6..e114554a5 100644 --- a/packages/flow-table/README.md +++ b/packages/flow-table/README.md @@ -7,7 +7,7 @@ The Flow table is built on the Flow design framework ([website](https://flow.oll ### 1️⃣ Install flow table dependency ``` -npm i --save @ollion/flow-table +npm i --save @nonfx/flow-table ``` **Note:** after installation, re-start your application. @@ -19,8 +19,8 @@ npm i --save @ollion/flow-table Paste the below snippet in your project and add your application startup/runtime code to it. ```javascript -import "@ollion/flow-core"; -import "@ollion/flow-table"; +import "@nonfx/flow-core"; +import "@nonfx/flow-table"; ```
@@ -33,7 +33,7 @@ import "@ollion/flow-table"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-table/dist/types/vue3"; +import "@nonfx/flow-table/dist/types/vue3"; ```
@@ -42,7 +42,7 @@ import "@ollion/flow-table/dist/types/vue3"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-table/dist/types/vue2"; +import "@nonfx/flow-table/dist/types/vue2"; ```
@@ -53,7 +53,7 @@ import "@ollion/flow-table/dist/types/vue2"; **React**: Include react type in `tsconfig.json` file like below. ```json -"include": ["src", "./node_modules/@ollion/flow-table/dist/types/react.ts"] +"include": ["src", "./node_modules/@nonfx/flow-table/dist/types/react.ts"] ``` diff --git a/packages/flow-table/package.json b/packages/flow-table/package.json index a392727dd..af0857c09 100644 --- a/packages/flow-table/package.json +++ b/packages/flow-table/package.json @@ -1,5 +1,5 @@ { - "name": "@ollion/flow-table", + "name": "@nonfx/flow-table", "version": "2.4.8", "description": "Table component for flow library", "module": "dist/flow-table.es.js", @@ -21,13 +21,13 @@ "lit" ], "dependencies": { - "@ollion/flow-core": "workspace:*", - "@ollion/flow-core-config": "workspace:*", + "@nonfx/flow-core": "workspace:*", + "@nonfx/flow-core-config": "workspace:*", "lit": "^3.1.0" }, "peerDependencies": { - "@ollion/flow-core": "^2.0.3", - "@ollion/flow-core-config": "^1.1.3" + "@nonfx/flow-core": "^2.0.3", + "@nonfx/flow-core-config": "^1.1.3" }, "devDependencies": { "@custom-elements-manifest/analyzer": "^0.5.7", @@ -57,6 +57,6 @@ "url": "https://github.com/ollionorg/flow-core/issues" }, "homepage": "https://github.com/ollionorg/flow-table#readme", - "author": "@ollion", + "author": "@nonfx", "license": "MIT" } diff --git a/packages/flow-table/src/components/f-table-schema/__snapshots__/f-table-schema.test.snap.js b/packages/flow-table/src/components/f-table-schema/__snapshots__/f-table-schema.test.snap.js index a8f7a2c6b..769b50995 100644 --- a/packages/flow-table/src/components/f-table-schema/__snapshots__/f-table-schema.test.snap.js +++ b/packages/flow-table/src/components/f-table-schema/__snapshots__/f-table-schema.test.snap.js @@ -1,8 +1,8 @@ /* @web/test-runner snapshot v1 */ export const snapshots = {}; -snapshots["f-table-schema should display rows and column based on data"] = -`
+snapshots["f-table-schema should display rows and column based on data"] = + `
- vikas0@ollion.com + vikas0@nonfx.com @@ -639,7 +639,7 @@ snapshots["f-table-schema should display rows and column based on data"] = variant="para" weight="regular" > - vikas1@ollion.com + vikas1@nonfx.com diff --git a/packages/flow-table/src/components/f-table-schema/f-table-schema.test.ts b/packages/flow-table/src/components/f-table-schema/f-table-schema.test.ts index 73d1a8a7e..35d3b5c5a 100644 --- a/packages/flow-table/src/components/f-table-schema/f-table-schema.test.ts +++ b/packages/flow-table/src/components/f-table-schema/f-table-schema.test.ts @@ -1,15 +1,15 @@ import { html, fixture, expect } from "@open-wc/testing"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { ConfigUtil, FDiv } from "@ollion/flow-core"; +import { ConfigUtil, FDiv } from "@nonfx/flow-core"; import { FTableSchema, FTableSchemaData, FTableSchemaDataRow, FTableSchemaCell -} from "@ollion/flow-table"; +} from "@nonfx/flow-table"; ConfigUtil.setConfig({ iconPack: IconPack }); @@ -22,7 +22,7 @@ export default function getFakeUsers(count = 100): FTableSchemaData { const firstName = { value: `Vikas ${i}` }; const lastName = { value: `Last name ${i}` }; const email: FTableSchemaCell & { value: string } = { - value: `vikas${i}@ollion.com`, + value: `vikas${i}@nonfx.com`, template: function () { return html` { diff --git a/packages/flow-table/src/components/f-tcell/f-tcell.ts b/packages/flow-table/src/components/f-tcell/f-tcell.ts index 3099746d3..261d42acb 100644 --- a/packages/flow-table/src/components/f-tcell/f-tcell.ts +++ b/packages/flow-table/src/components/f-tcell/f-tcell.ts @@ -1,12 +1,12 @@ import { html, nothing, PropertyValueMap, unsafeCSS } from "lit"; import { property, query, state } from "lit/decorators.js"; -import { FCheckbox, FDiv, FIconButton, FIcon, FRadio, FRoot, flowElement } from "@ollion/flow-core"; +import { FCheckbox, FDiv, FIconButton, FIcon, FRadio, FRoot, flowElement } from "@nonfx/flow-core"; import { FTableSelectable } from "../f-table/f-table"; import eleStyle from "./f-tcell.scss?inline"; import globalStyle from "./f-tcell-global.scss?inline"; import { FTrowChevronPosition } from "../f-trow/f-trow"; import { createRef, ref } from "lit/directives/ref.js"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-tcell", globalStyle); diff --git a/packages/flow-table/src/components/f-trow/f-trow.test.ts b/packages/flow-table/src/components/f-trow/f-trow.test.ts index b07a433f8..87cc9e76b 100644 --- a/packages/flow-table/src/components/f-trow/f-trow.test.ts +++ b/packages/flow-table/src/components/f-trow/f-trow.test.ts @@ -2,10 +2,10 @@ import { html, fixture, expect } from "@open-wc/testing"; import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { ConfigUtil } from "@ollion/flow-core"; -import { FTrow, FTable } from "@ollion/flow-table"; +import { ConfigUtil } from "@nonfx/flow-core"; +import { FTrow, FTable } from "@nonfx/flow-table"; ConfigUtil.setConfig({ iconPack: IconPack }); describe("f-trow", () => { diff --git a/packages/flow-table/src/components/f-trow/f-trow.ts b/packages/flow-table/src/components/f-trow/f-trow.ts index bb5f2ba79..dc8c5e40c 100644 --- a/packages/flow-table/src/components/f-trow/f-trow.ts +++ b/packages/flow-table/src/components/f-trow/f-trow.ts @@ -1,11 +1,11 @@ import { html, PropertyValueMap, unsafeCSS } from "lit"; import { property, query } from "lit/decorators.js"; -import { FDiv, FIcon, FRoot, flowElement, FIconButton } from "@ollion/flow-core"; +import { FDiv, FIcon, FRoot, flowElement, FIconButton } from "@nonfx/flow-core"; import { FTcell } from "../f-tcell/f-tcell"; import eleStyle from "./f-trow.scss?inline"; import globalStyle from "./f-trow-global.scss?inline"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; injectCss("f-trow", globalStyle); diff --git a/packages/flow-table/vite.config.ts b/packages/flow-table/vite.config.ts index dda208f44..4d8dd0a2b 100644 --- a/packages/flow-table/vite.config.ts +++ b/packages/flow-table/vite.config.ts @@ -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: ["@ollion/flow-core-config", "@ollion/flow-core", /^lit/], + external: ["@nonfx/flow-core-config", "@nonfx/flow-core", /^lit/], output: { globals: { - "@ollion/flow-core": "@ollion/flow-core" + "@nonfx/flow-core": "@nonfx/flow-core" } } } diff --git a/packages/flow-text-editor/README.md b/packages/flow-text-editor/README.md index 30f008a2e..443abdfb2 100644 --- a/packages/flow-text-editor/README.md +++ b/packages/flow-text-editor/README.md @@ -7,7 +7,7 @@ The Flow text editor is built on the Flow design framework ([website](https://fl ### 1️⃣ Install flow code editor dependency ``` -npm i --save @ollion/flow-text-editor +npm i --save @nonfx/flow-text-editor ``` **Note:** after installation, re-start your application. @@ -19,8 +19,8 @@ npm i --save @ollion/flow-text-editor Paste the below snippet in your project and add your application startup/runtime code to it. ```javascript -import "@ollion/flow-core"; -import "@ollion/flow-text-editor"; +import "@nonfx/flow-core"; +import "@nonfx/flow-text-editor"; ```
@@ -33,7 +33,7 @@ import "@ollion/flow-text-editor"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-text-editor/dist/types/vue3"; +import "@nonfx/flow-text-editor/dist/types/vue3"; ```
@@ -42,7 +42,7 @@ import "@ollion/flow-text-editor/dist/types/vue3"; Copy paste below import types in your `main.ts` file. ```Javascript -import "@ollion/flow-text-editor/dist/types/vue2"; +import "@nonfx/flow-text-editor/dist/types/vue2"; ```
@@ -53,7 +53,7 @@ import "@ollion/flow-text-editor/dist/types/vue2"; **React**: Include react type in `tsconfig.json` file like below. ```json -"include": ["src", "./node_modules/@ollion/flow-text-editor/dist/types/react.ts"] +"include": ["src", "./node_modules/@nonfx/flow-text-editor/dist/types/react.ts"] ``` diff --git a/packages/flow-text-editor/package.json b/packages/flow-text-editor/package.json index eea1f4816..338fc4298 100644 --- a/packages/flow-text-editor/package.json +++ b/packages/flow-text-editor/package.json @@ -1,5 +1,5 @@ { - "name": "@ollion/flow-text-editor", + "name": "@nonfx/flow-text-editor", "version": "0.0.1", "description": "Code editor component for flow library", "module": "dist/flow-text-editor.es.js", @@ -19,8 +19,8 @@ "lit" ], "dependencies": { - "@ollion/flow-core": "workspace:*", - "@ollion/flow-core-config": "workspace:*", + "@nonfx/flow-core": "workspace:*", + "@nonfx/flow-core-config": "workspace:*", "lit": "^3.1.0", "quill": "^2.0.2" }, @@ -39,8 +39,8 @@ "web-component-analyzer": "^2.0.0-next.4" }, "peerDependencies": { - "@ollion/flow-core": "^2.0.3", - "@ollion/flow-core-config": "^1.1.3" + "@nonfx/flow-core": "^2.0.3", + "@nonfx/flow-core-config": "^1.1.3" }, "repository": { "type": "git", @@ -56,6 +56,6 @@ "url": "https://github.com/ollionorg/flow-core/issues" }, "homepage": "https://github.com/ollionorg/flow-core", - "author": "@ollion", + "author": "@nonfx", "license": "MIT" } diff --git a/packages/flow-text-editor/src/components/f-text-editor/f-text-editor.test.ts b/packages/flow-text-editor/src/components/f-text-editor/f-text-editor.test.ts index f9b95bbce..729830c42 100644 --- a/packages/flow-text-editor/src/components/f-text-editor/f-text-editor.test.ts +++ b/packages/flow-text-editor/src/components/f-text-editor/f-text-editor.test.ts @@ -2,10 +2,10 @@ import IconPack from "@ollion/flow-system-icon/dist/types/icon-pack"; import { expect } from "@open-wc/testing"; // import flow-core elements -import "@ollion/flow-core"; +import "@nonfx/flow-core"; -import { ConfigUtil } from "@ollion/flow-core"; -import { FTextEditor } from "@ollion/flow-text-editor"; +import { ConfigUtil } from "@nonfx/flow-core"; +import { FTextEditor } from "@nonfx/flow-text-editor"; ConfigUtil.setConfig({ iconPack: IconPack }); /** diff --git a/packages/flow-text-editor/src/components/f-text-editor/f-text-editor.ts b/packages/flow-text-editor/src/components/f-text-editor/f-text-editor.ts index 9098f86a9..3993b4d96 100644 --- a/packages/flow-text-editor/src/components/f-text-editor/f-text-editor.ts +++ b/packages/flow-text-editor/src/components/f-text-editor/f-text-editor.ts @@ -1,9 +1,9 @@ import { unsafeCSS, html, PropertyValues, PropertyValueMap } from "lit"; -import { FRoot, flowElement } from "@ollion/flow-core"; +import { FRoot, flowElement } from "@nonfx/flow-core"; import globalStyle from "./f-text-editor-global.scss?inline"; -import { FTextArea } from "@ollion/flow-core"; +import { FTextArea } from "@nonfx/flow-core"; import { property } from "lit/decorators.js"; -import { injectCss } from "@ollion/flow-core-config"; +import { injectCss } from "@nonfx/flow-core-config"; import { createRef, ref } from "lit-html/directives/ref.js"; import Quill from "quill"; import { keyed } from "lit-html/directives/keyed.js"; diff --git a/packages/flow-text-editor/vite.config.ts b/packages/flow-text-editor/vite.config.ts index 7ed62465f..6486d5a9a 100644 --- a/packages/flow-text-editor/vite.config.ts +++ b/packages/flow-text-editor/vite.config.ts @@ -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: ["@ollion/flow-core-config", "@ollion/flow-core", /^lit/], + external: ["@nonfx/flow-core-config", "@nonfx/flow-core", /^lit/], output: { globals: { - "@ollion/flow-core": "@ollion/flow-core" + "@nonfx/flow-core": "@nonfx/flow-core" } } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 88cfc3e0a..19145ff17 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,45 +8,45 @@ importers: .: dependencies: - '@ollion/flow-aws-icon': - specifier: latest - version: 1.9.1(@ollion/flow-core-config@1.1.3) - '@ollion/flow-code-editor': + '@nonfx/flow-code-editor': specifier: workspace:* version: link:packages/flow-code-editor - '@ollion/flow-core': + '@nonfx/flow-core': specifier: workspace:* version: link:packages/flow-core - '@ollion/flow-dashboard': + '@nonfx/flow-dashboard': specifier: workspace:* version: link:packages/flow-dashboard - '@ollion/flow-form-builder': + '@nonfx/flow-form-builder': specifier: workspace:* version: link:packages/flow-form-builder - '@ollion/flow-gcp-icon': - specifier: latest - version: 1.8.1(@ollion/flow-core-config@1.1.3) - '@ollion/flow-lineage': + '@nonfx/flow-lineage': specifier: workspace:* version: link:packages/flow-lineage - '@ollion/flow-log': + '@nonfx/flow-log': specifier: workspace:* version: link:packages/flow-log - '@ollion/flow-md-editor': + '@nonfx/flow-md-editor': specifier: workspace:* version: link:packages/flow-md-editor + '@nonfx/flow-table': + specifier: workspace:* + version: link:packages/flow-table + '@nonfx/flow-text-editor': + specifier: workspace:* + version: link:packages/flow-text-editor + '@ollion/flow-aws-icon': + specifier: latest + version: 1.9.1(@ollion/flow-core-config@1.1.3) + '@ollion/flow-gcp-icon': + specifier: latest + version: 1.8.1(@ollion/flow-core-config@1.1.3) '@ollion/flow-product-icon': specifier: 1.14.0 version: 1.14.0(@ollion/flow-core-config@1.1.3) '@ollion/flow-system-icon': specifier: latest version: 1.16.1(@ollion/flow-core-config@1.1.3) - '@ollion/flow-table': - specifier: workspace:* - version: link:packages/flow-table - '@ollion/flow-text-editor': - specifier: workspace:* - version: link:packages/flow-text-editor d3: specifier: ^7.6.1 version: 7.8.5 @@ -63,7 +63,7 @@ importers: '@faker-js/faker': specifier: ^8.3.1 version: 8.3.1 - '@ollion/custom-elements-manifest-to-types': + '@nonfx/custom-elements-manifest-to-types': specifier: workspace:* version: link:packages/custom-elements-manifest-to-types '@ollion/prettier-config': @@ -196,10 +196,10 @@ importers: packages/flow-code-editor: dependencies: - '@ollion/flow-core': + '@nonfx/flow-core': specifier: workspace:* version: link:../flow-core - '@ollion/flow-core-config': + '@nonfx/flow-core-config': specifier: workspace:* version: link:../flow-core-config lit: @@ -257,7 +257,7 @@ importers: '@lit-labs/virtualizer': specifier: ^2.0.12 version: 2.0.12 - '@ollion/flow-core-config': + '@nonfx/flow-core-config': specifier: workspace:* version: link:../flow-core-config axios: @@ -358,10 +358,10 @@ importers: packages/flow-dashboard: dependencies: - '@ollion/flow-core': + '@nonfx/flow-core': specifier: workspace:* version: link:../flow-core - '@ollion/flow-core-config': + '@nonfx/flow-core-config': specifier: workspace:* version: link:../flow-core-config axios: @@ -422,10 +422,10 @@ importers: packages/flow-form-builder: dependencies: - '@ollion/flow-core': + '@nonfx/flow-core': specifier: workspace:* version: link:../flow-core - '@ollion/flow-core-config': + '@nonfx/flow-core-config': specifier: workspace:* version: link:../flow-core-config lit: @@ -480,10 +480,10 @@ importers: packages/flow-lineage: dependencies: - '@ollion/flow-core': + '@nonfx/flow-core': specifier: workspace:* version: link:../flow-core - '@ollion/flow-core-config': + '@nonfx/flow-core-config': specifier: workspace:* version: link:../flow-core-config d3: @@ -538,10 +538,10 @@ importers: packages/flow-log: dependencies: - '@ollion/flow-core': + '@nonfx/flow-core': specifier: workspace:* version: link:../flow-core - '@ollion/flow-core-config': + '@nonfx/flow-core-config': specifier: workspace:* version: link:../flow-core-config anser: @@ -596,10 +596,10 @@ importers: packages/flow-md-editor: dependencies: - '@ollion/flow-core': + '@nonfx/flow-core': specifier: workspace:* version: link:../flow-core - '@ollion/flow-core-config': + '@nonfx/flow-core-config': specifier: workspace:* version: link:../flow-core-config lit: @@ -651,10 +651,10 @@ importers: packages/flow-table: dependencies: - '@ollion/flow-core': + '@nonfx/flow-core': specifier: workspace:* version: link:../flow-core - '@ollion/flow-core-config': + '@nonfx/flow-core-config': specifier: workspace:* version: link:../flow-core-config lit: @@ -700,10 +700,10 @@ importers: packages/flow-text-editor: dependencies: - '@ollion/flow-core': + '@nonfx/flow-core': specifier: workspace:* version: link:../flow-core - '@ollion/flow-core-config': + '@nonfx/flow-core-config': specifier: workspace:* version: link:../flow-core-config lit: diff --git a/stories/about-flow.mdx b/stories/about-flow.mdx index b208e8bc9..c3c71b764 100644 --- a/stories/about-flow.mdx +++ b/stories/about-flow.mdx @@ -39,7 +39,7 @@ Everything we build and design needs to be simple, intuitive, and obvious to any
If you are a developer with a new contribution to Flow and do not have Figma experience/skills, you can write into - flow@ollion.com + flow@nonfx.com and someone from the CloudCover’s design team will get in touch with you. Keep in mind that the designers are actively engaged into other products and a response/implementation might take a little time. diff --git a/stories/flow-code-editor/About.mdx b/stories/flow-code-editor/About.mdx index a2e9a138f..bbe1ef80d 100644 --- a/stories/flow-code-editor/About.mdx +++ b/stories/flow-code-editor/About.mdx @@ -1,6 +1,6 @@ import { Meta } from "@storybook/addon-docs/blocks"; import README from "./../../packages/flow-code-editor/README.md?raw"; - + diff --git a/stories/flow-code-editor/f-code-editor.stories.js b/stories/flow-code-editor/f-code-editor.stories.js index dff05155a..77d7bad80 100644 --- a/stories/flow-code-editor/f-code-editor.stories.js +++ b/stories/flow-code-editor/f-code-editor.stories.js @@ -2,7 +2,7 @@ import { html } from "lit-html"; import { useArgs, useState } from "@storybook/client-api"; export default { - title: "@ollion/flow-code-editor/f-code-editor", + title: "@nonfx/flow-code-editor/f-code-editor", parameters: { controls: { diff --git a/stories/flow-code-editor/release-notes.mdx b/stories/flow-code-editor/release-notes.mdx index 38554f1cb..721516d41 100644 --- a/stories/flow-code-editor/release-notes.mdx +++ b/stories/flow-code-editor/release-notes.mdx @@ -1,5 +1,5 @@ import { Meta, Markdown } from "@storybook/addon-docs/blocks"; import Changelog from "../../packages/flow-code-editor/CHANGELOG.md?raw"; - + {Changelog} diff --git a/stories/flow-core/About.mdx b/stories/flow-core/About.mdx index 1ac42bc9a..e604d72ff 100644 --- a/stories/flow-core/About.mdx +++ b/stories/flow-core/About.mdx @@ -1,6 +1,6 @@ import { Meta } from "@storybook/addon-docs/blocks"; import README from "./../../README.md?raw"; - + diff --git a/stories/flow-core/f-accordion.stories.js b/stories/flow-core/f-accordion.stories.js index 9cfbb990f..dcc19abfa 100644 --- a/stories/flow-core/f-accordion.stories.js +++ b/stories/flow-core/f-accordion.stories.js @@ -4,7 +4,7 @@ import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import { useArgs, useState } from "@storybook/client-api"; export default { - title: "@ollion/flow-core/f-accordion", + title: "@nonfx/flow-core/f-accordion", parameters: { controls: { @@ -40,7 +40,7 @@ export const Playground = { ["ORG ID"]: { type: "text", - value: "brendon.compliance@ollion.com" + value: "brendon.compliance@nonfx.com" }, ["CONNECT ON"]: { diff --git a/stories/flow-core/f-breadcrumb.stories.ts b/stories/flow-core/f-breadcrumb.stories.ts index 81c156504..2321603e0 100644 --- a/stories/flow-core/f-breadcrumb.stories.ts +++ b/stories/flow-core/f-breadcrumb.stories.ts @@ -2,10 +2,10 @@ import { html } from "lit-html"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import { useArgs } from "@storybook/manager-api"; import { useState } from "@storybook/preview-api"; -import { FBreadcrumbs, FBreadCrumbSize, FBreadCrumbVariant } from "@ollion/flow-core"; +import { FBreadcrumbs, FBreadCrumbSize, FBreadCrumbVariant } from "@nonfx/flow-core"; export default { - title: "@ollion/flow-core/f-breadcrumb", + title: "@nonfx/flow-core/f-breadcrumb", parameters: { controls: { diff --git a/stories/flow-core/f-button.stories.ts b/stories/flow-core/f-button.stories.ts index 1f8cb1f3b..dd9bc7059 100644 --- a/stories/flow-core/f-button.stories.ts +++ b/stories/flow-core/f-button.stories.ts @@ -2,10 +2,10 @@ import { html } from "lit-html"; import fButtonAnatomy from "../svg/i-fbutton-anatomy.js"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import { createRef, ref } from "lit/directives/ref.js"; -import type { FButton } from "@ollion/flow-core"; +import type { FButton } from "@nonfx/flow-core"; export default { - title: "@ollion/flow-core/f-button", + title: "@nonfx/flow-core/f-button", parameters: { controls: { diff --git a/stories/flow-core/f-carousel.stories.js b/stories/flow-core/f-carousel.stories.js index 7a54523af..e5892fbb3 100644 --- a/stories/flow-core/f-carousel.stories.js +++ b/stories/flow-core/f-carousel.stories.js @@ -3,7 +3,7 @@ import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import FCarouselAnatomy from "../svg/i-fcarousel-anatomy.js"; export default { - title: "@ollion/flow-core/f-carousel", + title: "@nonfx/flow-core/f-carousel", parameters: { controls: { diff --git a/stories/flow-core/f-checkbox.stories.js b/stories/flow-core/f-checkbox.stories.js index b65fad25d..0dc12d465 100644 --- a/stories/flow-core/f-checkbox.stories.js +++ b/stories/flow-core/f-checkbox.stories.js @@ -4,7 +4,7 @@ import { useArgs, useEffect, useState } from "@storybook/client-api"; import fCheckboxAnatomy from "../svg/i-fcheckbox-anatomy.js"; export default { - title: "@ollion/flow-core/f-checkbox", + title: "@nonfx/flow-core/f-checkbox", parameters: { controls: { diff --git a/stories/flow-core/f-color-picker.stories.ts b/stories/flow-core/f-color-picker.stories.ts index fe57333a5..745c9121a 100644 --- a/stories/flow-core/f-color-picker.stories.ts +++ b/stories/flow-core/f-color-picker.stories.ts @@ -1,7 +1,7 @@ import { html } from "lit-html"; export default { - title: "@ollion/flow-core/f-color-picker", + title: "@nonfx/flow-core/f-color-picker", parameters: { controls: { diff --git a/stories/flow-core/f-countdown.stories.ts b/stories/flow-core/f-countdown.stories.ts index 2a8f8d905..11fef8104 100644 --- a/stories/flow-core/f-countdown.stories.ts +++ b/stories/flow-core/f-countdown.stories.ts @@ -1,7 +1,7 @@ import { html } from "lit-html"; export default { - title: "@ollion/flow-core/f-countdown", + title: "@nonfx/flow-core/f-countdown", parameters: { controls: { diff --git a/stories/flow-core/f-counter.stories.js b/stories/flow-core/f-counter.stories.js index a4c0289ff..72f8f332c 100644 --- a/stories/flow-core/f-counter.stories.js +++ b/stories/flow-core/f-counter.stories.js @@ -3,7 +3,7 @@ import fCounterAnatomy from "../svg/i-fcounter-anatomy.js"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; export default { - title: "@ollion/flow-core/f-counter", + title: "@nonfx/flow-core/f-counter", parameters: { controls: { diff --git a/stories/flow-core/f-date-time-picker.stories.js b/stories/flow-core/f-date-time-picker.stories.js index ca5a1798d..63b316890 100644 --- a/stories/flow-core/f-date-time-picker.stories.js +++ b/stories/flow-core/f-date-time-picker.stories.js @@ -4,7 +4,7 @@ import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import { useArgs, useEffect, useState } from "@storybook/client-api"; export default { - title: "@ollion/flow-core/f-date-time-picker", + title: "@nonfx/flow-core/f-date-time-picker", parameters: { controls: { diff --git a/stories/flow-core/f-div.stories.ts b/stories/flow-core/f-div.stories.ts index 5ed4e3aa3..642be6134 100644 --- a/stories/flow-core/f-div.stories.ts +++ b/stories/flow-core/f-div.stories.ts @@ -2,10 +2,10 @@ import { html } from "lit-html"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import FDivAnatomy from "../svg/i-fdiv-anatomy.js"; import { createRef, ref } from "lit/directives/ref.js"; -import { FDiv } from "@ollion/flow-core"; +import { FDiv } from "@nonfx/flow-core"; export default { - title: "@ollion/flow-core/f-div", + title: "@nonfx/flow-core/f-div", parameters: { controls: { diff --git a/stories/flow-core/f-divider.stories.js b/stories/flow-core/f-divider.stories.js index e895273a7..6fc3a7e92 100644 --- a/stories/flow-core/f-divider.stories.js +++ b/stories/flow-core/f-divider.stories.js @@ -3,7 +3,7 @@ import fDividerAnatomy from "../svg/i-fdivider-anatomy.js"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; export default { - title: "@ollion/flow-core/f-divider", + title: "@nonfx/flow-core/f-divider", parameters: { controls: { diff --git a/stories/flow-core/f-document-viewer.stories.ts b/stories/flow-core/f-document-viewer.stories.ts index 709a83d6e..5531a4d5c 100644 --- a/stories/flow-core/f-document-viewer.stories.ts +++ b/stories/flow-core/f-document-viewer.stories.ts @@ -1,10 +1,10 @@ import { html } from "lit-html"; import { useState } from "@storybook/preview-api"; -import { FDocViewerContent } from "@ollion/flow-core"; +import { FDocViewerContent } from "@nonfx/flow-core"; import getFakeDocContent from "../utils/mock-doc-content"; export default { - title: "@ollion/flow-core/f-document-viewer", + title: "@nonfx/flow-core/f-document-viewer", parameters: { controls: { diff --git a/stories/flow-core/f-emoji-picker.stories.js b/stories/flow-core/f-emoji-picker.stories.js index 272965207..e9cd58082 100644 --- a/stories/flow-core/f-emoji-picker.stories.js +++ b/stories/flow-core/f-emoji-picker.stories.js @@ -2,7 +2,7 @@ import { html } from "lit-html"; import { useArgs, useEffect, useState } from "@storybook/client-api"; export default { - title: "@ollion/flow-core/f-emoji-picker", + title: "@nonfx/flow-core/f-emoji-picker", parameters: { controls: { diff --git a/stories/flow-core/f-file-upload.stories.js b/stories/flow-core/f-file-upload.stories.js index 82e304914..d1b2b5213 100644 --- a/stories/flow-core/f-file-upload.stories.js +++ b/stories/flow-core/f-file-upload.stories.js @@ -3,7 +3,7 @@ import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import { useArgs, useEffect, useState } from "@storybook/client-api"; import fFileUploadAnatomy from "../svg/i-ffile-upload-anatomy.js"; export default { - title: "@ollion/flow-core/f-file-upload", + title: "@nonfx/flow-core/f-file-upload", parameters: { controls: { diff --git a/stories/flow-core/f-form-group.stories.js b/stories/flow-core/f-form-group.stories.js index 4eb740081..9a3504672 100644 --- a/stories/flow-core/f-form-group.stories.js +++ b/stories/flow-core/f-form-group.stories.js @@ -3,7 +3,7 @@ import FDivAnatomy from "../svg/i-fdiv-anatomy.js"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; export default { - title: "@ollion/flow-core/f-form-group", + title: "@nonfx/flow-core/f-form-group", parameters: { controls: { diff --git a/stories/flow-core/f-form.stories.js b/stories/flow-core/f-form.stories.js index 9a63cd462..f6a3d4e4c 100644 --- a/stories/flow-core/f-form.stories.js +++ b/stories/flow-core/f-form.stories.js @@ -4,7 +4,7 @@ import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import { useState } from "@storybook/client-api"; export default { - title: "@ollion/flow-core/f-form", + title: "@nonfx/flow-core/f-form", parameters: { controls: { diff --git a/stories/flow-core/f-grid.stories.js b/stories/flow-core/f-grid.stories.js index 591450f9f..fb6d53907 100644 --- a/stories/flow-core/f-grid.stories.js +++ b/stories/flow-core/f-grid.stories.js @@ -4,7 +4,7 @@ import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import { useArgs, useState } from "@storybook/client-api"; export default { - title: "@ollion/flow-core/f-grid", + title: "@nonfx/flow-core/f-grid", parameters: { controls: { diff --git a/stories/flow-core/f-icon-button.stories.ts b/stories/flow-core/f-icon-button.stories.ts index fc63f8440..49e81dcd3 100644 --- a/stories/flow-core/f-icon-button.stories.ts +++ b/stories/flow-core/f-icon-button.stories.ts @@ -3,7 +3,7 @@ import fIconButtonAnatomy from "../svg/i-ficon-button-anatomy.js"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; export default { - title: "@ollion/flow-core/f-icon-button", + title: "@nonfx/flow-core/f-icon-button", parameters: { controls: { diff --git a/stories/flow-core/f-icon.stories.js b/stories/flow-core/f-icon.stories.js index 207351a03..a8cb052fa 100644 --- a/stories/flow-core/f-icon.stories.js +++ b/stories/flow-core/f-icon.stories.js @@ -3,7 +3,7 @@ import fIconAnatomy from "../svg/i-ficon-anatomy.js"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; export default { - title: "@ollion/flow-core/f-icon", + title: "@nonfx/flow-core/f-icon", parameters: { controls: { diff --git a/stories/flow-core/f-input.stories.ts b/stories/flow-core/f-input.stories.ts index 54537dbf5..fc396f2dd 100644 --- a/stories/flow-core/f-input.stories.ts +++ b/stories/flow-core/f-input.stories.ts @@ -4,7 +4,7 @@ import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import { useState } from "@storybook/preview-api"; export default { - title: "@ollion/flow-core/f-input", + title: "@nonfx/flow-core/f-input", parameters: { controls: { diff --git a/stories/flow-core/f-pictogram.stories.ts b/stories/flow-core/f-pictogram.stories.ts index 339b80365..5a941dcd1 100644 --- a/stories/flow-core/f-pictogram.stories.ts +++ b/stories/flow-core/f-pictogram.stories.ts @@ -6,10 +6,10 @@ import { FPictogramCategory, FPictogramSize, FPictogramState -} from "@ollion/flow-core"; +} from "@nonfx/flow-core"; export default { - title: "@ollion/flow-core/f-pictogram", + title: "@nonfx/flow-core/f-pictogram", parameters: { controls: { diff --git a/stories/flow-core/f-popover.mdx b/stories/flow-core/f-popover.mdx index a67ce6518..0f28fb3ec 100644 --- a/stories/flow-core/f-popover.mdx +++ b/stories/flow-core/f-popover.mdx @@ -3,7 +3,7 @@ import { html } from "lit-html"; import fPopoverAnatomy from "../svg/i-fpopover-anatomy.js"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import { useArgs, useState } from "@storybook/client-api"; -import { ConfigUtil } from "@ollion/flow-core-config"; +import { ConfigUtil } from "@nonfx/flow-core-config"; import { createRef, ref } from "lit/directives/ref.js"; import * as FPopoverStories from "./f-popover.stories"; diff --git a/stories/flow-core/f-popover.stories.ts b/stories/flow-core/f-popover.stories.ts index 241bfb2fd..be9589c9a 100644 --- a/stories/flow-core/f-popover.stories.ts +++ b/stories/flow-core/f-popover.stories.ts @@ -3,10 +3,10 @@ import fPopoverAnatomy from "../svg/i-fpopover-anatomy.js"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import { useState } from "@storybook/preview-api"; import { createRef, ref } from "lit/directives/ref.js"; -import { FPopover, FPopoverPlacement, FPopoverSize, FPopoverState } from "@ollion/flow-core"; +import { FPopover, FPopoverPlacement, FPopoverSize, FPopoverState } from "@nonfx/flow-core"; export default { - title: "@ollion/flow-core/f-popover", + title: "@nonfx/flow-core/f-popover", parameters: { controls: { diff --git a/stories/flow-core/f-progress-bar.stories.ts b/stories/flow-core/f-progress-bar.stories.ts index 29024f2fc..4cb5ee1e0 100644 --- a/stories/flow-core/f-progress-bar.stories.ts +++ b/stories/flow-core/f-progress-bar.stories.ts @@ -2,10 +2,10 @@ import { html } from "lit-html"; import fProgressBarAnatomy from "../svg/i-fprogress-bar-anatomy.js"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import { createRef, ref } from "lit/directives/ref.js"; -import { FProgressBar } from "@ollion/flow-core"; +import { FProgressBar } from "@nonfx/flow-core"; export default { - title: "@ollion/flow-core/f-progress-bar", + title: "@nonfx/flow-core/f-progress-bar", parameters: { controls: { diff --git a/stories/flow-core/f-radio.stories.js b/stories/flow-core/f-radio.stories.js index 997733c0f..d2e1c7e57 100644 --- a/stories/flow-core/f-radio.stories.js +++ b/stories/flow-core/f-radio.stories.js @@ -4,7 +4,7 @@ import { useArgs, useEffect, useState } from "@storybook/client-api"; import fRadioAnatomy from "../svg/i-fradio-anatomy.js"; export default { - title: "@ollion/flow-core/f-radio", + title: "@nonfx/flow-core/f-radio", parameters: { controls: { diff --git a/stories/flow-core/f-search.stories.ts b/stories/flow-core/f-search.stories.ts index 6b035c0bf..2cbe1c442 100644 --- a/stories/flow-core/f-search.stories.ts +++ b/stories/flow-core/f-search.stories.ts @@ -1,8 +1,8 @@ import { html } from "lit-html"; -import { FSearchResultWhen } from "@ollion/flow-core"; +import { FSearchResultWhen } from "@nonfx/flow-core"; export default { - title: "@ollion/flow-core/f-search", + title: "@nonfx/flow-core/f-search", parameters: { controls: { diff --git a/stories/flow-core/f-select.stories.ts b/stories/flow-core/f-select.stories.ts index 5e0ebfe55..0c67c4e35 100644 --- a/stories/flow-core/f-select.stories.ts +++ b/stories/flow-core/f-select.stories.ts @@ -1,11 +1,11 @@ import { faker } from "@faker-js/faker"; -import { FSelectOptionObject } from "@ollion/flow-core"; +import { FSelectOptionObject } from "@nonfx/flow-core"; import { html } from "lit-html"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import fSelectAnatomy from "../svg/i-fselect-anatomy.js"; export default { - title: "@ollion/flow-core/f-select", + title: "@nonfx/flow-core/f-select", parameters: { controls: { diff --git a/stories/flow-core/f-spacer.stories.js b/stories/flow-core/f-spacer.stories.js index 62f17716e..ef162daaa 100644 --- a/stories/flow-core/f-spacer.stories.js +++ b/stories/flow-core/f-spacer.stories.js @@ -3,7 +3,7 @@ import fSpacerAnatomy from "../svg/i-fspacer-anatomy.js"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; export default { - title: "@ollion/flow-core/f-spacer", + title: "@nonfx/flow-core/f-spacer", parameters: { controls: { diff --git a/stories/flow-core/f-suggest.stories.ts b/stories/flow-core/f-suggest.stories.ts index 7e2cbc738..80145b04e 100644 --- a/stories/flow-core/f-suggest.stories.ts +++ b/stories/flow-core/f-suggest.stories.ts @@ -3,7 +3,7 @@ import fInputAnatomy from "../svg/i-finput-anatomy.js"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; export default { - title: "@ollion/flow-core/f-suggest", + title: "@nonfx/flow-core/f-suggest", parameters: { controls: { diff --git a/stories/flow-core/f-switch.stories.js b/stories/flow-core/f-switch.stories.js index 7f41e9d56..0d997adb3 100644 --- a/stories/flow-core/f-switch.stories.js +++ b/stories/flow-core/f-switch.stories.js @@ -4,7 +4,7 @@ import { useArgs, useEffect, useState } from "@storybook/client-api"; import fSwitchAnatomy from "../svg/i-fswitch-anatomy.js"; export default { - title: "@ollion/flow-core/f-switch", + title: "@nonfx/flow-core/f-switch", parameters: { controls: { diff --git a/stories/flow-core/f-tab-content.stories.js b/stories/flow-core/f-tab-content.stories.js index 7c621de12..1d7c241d6 100644 --- a/stories/flow-core/f-tab-content.stories.js +++ b/stories/flow-core/f-tab-content.stories.js @@ -4,7 +4,7 @@ import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import { useArgs, useState, useEffect } from "@storybook/client-api"; export default { - title: "@ollion/flow-core/f-tab-content", + title: "@nonfx/flow-core/f-tab-content", parameters: { controls: { diff --git a/stories/flow-core/f-tab-node.stories.ts b/stories/flow-core/f-tab-node.stories.ts index 0d446a6ba..4af7e66e1 100644 --- a/stories/flow-core/f-tab-node.stories.ts +++ b/stories/flow-core/f-tab-node.stories.ts @@ -1,9 +1,9 @@ -import { FTabNode } from "@ollion/flow-core"; +import { FTabNode } from "@nonfx/flow-core"; import { html } from "lit-html"; import { createRef, ref } from "lit/directives/ref.js"; export default { - title: "@ollion/flow-core/f-tab-node", + title: "@nonfx/flow-core/f-tab-node", parameters: { controls: { diff --git a/stories/flow-core/f-tab.stories.js b/stories/flow-core/f-tab.stories.js index a1cbdacb6..954d2d54c 100644 --- a/stories/flow-core/f-tab.stories.js +++ b/stories/flow-core/f-tab.stories.js @@ -4,7 +4,7 @@ import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; import { useArgs, useState } from "@storybook/client-api"; export default { - title: "@ollion/flow-core/f-tab", + title: "@nonfx/flow-core/f-tab", parameters: { controls: { diff --git a/stories/flow-core/f-tag.stories.ts b/stories/flow-core/f-tag.stories.ts index b9f5038f8..f1ca8e058 100644 --- a/stories/flow-core/f-tag.stories.ts +++ b/stories/flow-core/f-tag.stories.ts @@ -3,7 +3,7 @@ import fTagAnatomy from "../svg/i-ftag-anatomy.js"; import { unsafeSVG } from "lit-html/directives/unsafe-svg.js"; export default { - title: "@ollion/flow-core/f-tag", + title: "@nonfx/flow-core/f-tag", parameters: { controls: { diff --git a/stories/flow-core/f-text-area.stories.js b/stories/flow-core/f-text-area.stories.js index 01776bdfa..270ba67aa 100644 --- a/stories/flow-core/f-text-area.stories.js +++ b/stories/flow-core/f-text-area.stories.js @@ -4,7 +4,7 @@ import { useArgs, useEffect, useState } from "@storybook/client-api"; import fTextAreaAnatomy from "../svg/i-ftextarea-anatomy.js"; export default { - title: "@ollion/flow-core/f-text-area", + title: "@nonfx/flow-core/f-text-area", parameters: { controls: { diff --git a/stories/flow-core/f-text.stories.ts b/stories/flow-core/f-text.stories.ts index 9623ef394..de6b784b0 100644 --- a/stories/flow-core/f-text.stories.ts +++ b/stories/flow-core/f-text.stories.ts @@ -1,7 +1,7 @@ import { html } from "lit-html"; export default { - title: "@ollion/flow-core/f-text", + title: "@nonfx/flow-core/f-text", parameters: { controls: { diff --git a/stories/flow-core/f-toast.stories.js b/stories/flow-core/f-toast.stories.js index 18bbb8af1..60b668482 100644 --- a/stories/flow-core/f-toast.stories.js +++ b/stories/flow-core/f-toast.stories.js @@ -4,7 +4,7 @@ import { useArgs, useEffect, useState } from "@storybook/client-api"; import fToastAnatomy from "../svg/i-ftoast-anatomy.js"; export default { - title: "@ollion/flow-core/f-toast", + title: "@nonfx/flow-core/f-toast", parameters: { controls: { diff --git a/stories/flow-core/f-tooltip.stories.ts b/stories/flow-core/f-tooltip.stories.ts index fec7e5a13..44d547f04 100644 --- a/stories/flow-core/f-tooltip.stories.ts +++ b/stories/flow-core/f-tooltip.stories.ts @@ -1,9 +1,9 @@ import { html } from "lit-html"; import { useState } from "@storybook/preview-api"; -import { FTooltipObject, FTooltipPlacement } from "@ollion/flow-core"; +import { FTooltipObject, FTooltipPlacement } from "@nonfx/flow-core"; export default { - title: "@ollion/flow-core/f-tooltip", + title: "@nonfx/flow-core/f-tooltip", parameters: { controls: { diff --git a/stories/flow-core/release-notes.mdx b/stories/flow-core/release-notes.mdx index e94177246..3fef2b4e4 100644 --- a/stories/flow-core/release-notes.mdx +++ b/stories/flow-core/release-notes.mdx @@ -1,5 +1,5 @@ import { Meta, Markdown } from "@storybook/addon-docs/blocks"; import Changelog from "../../packages/flow-core/CHANGELOG.md?raw"; - + {Changelog} diff --git a/stories/flow-dashboard/f-dashboard.stories.ts b/stories/flow-dashboard/f-dashboard.stories.ts index 657ae5dbf..19d5fd9e3 100644 --- a/stories/flow-dashboard/f-dashboard.stories.ts +++ b/stories/flow-dashboard/f-dashboard.stories.ts @@ -5,13 +5,13 @@ import { FDashboardConfig, FDashboardWidget, FTimeseriesChartConfig -} from "@ollion/flow-dashboard"; +} from "@nonfx/flow-dashboard"; import { generateTimeseriesChartData } from "./mock-data-utils"; import { faker } from "@faker-js/faker"; import { createRef, ref } from "lit/directives/ref.js"; export default { - title: "@ollion/flow-dashboard/f-dashboard", + title: "@nonfx/flow-dashboard/f-dashboard", argTypes: { field: { control: false diff --git a/stories/flow-dashboard/f-timeseries-chart.stories.ts b/stories/flow-dashboard/f-timeseries-chart.stories.ts index 034c63fc7..bb3d281b6 100644 --- a/stories/flow-dashboard/f-timeseries-chart.stories.ts +++ b/stories/flow-dashboard/f-timeseries-chart.stories.ts @@ -6,13 +6,13 @@ import { XAxisLine, TooltipPoints, TimeseriesData -} from "@ollion/flow-dashboard"; +} from "@nonfx/flow-dashboard"; import { html } from "lit-html"; import { createRef, ref } from "lit/directives/ref.js"; import { generateTimeseriesChartData } from "./mock-data-utils"; export default { - title: "@ollion/flow-dashboard/f-timeseries-chart", + title: "@nonfx/flow-dashboard/f-timeseries-chart", parameters: { controls: { diff --git a/stories/flow-dashboard/mock-data-utils.ts b/stories/flow-dashboard/mock-data-utils.ts index a0463b197..3f6b113a7 100644 --- a/stories/flow-dashboard/mock-data-utils.ts +++ b/stories/flow-dashboard/mock-data-utils.ts @@ -1,4 +1,4 @@ -import { TimeseriesData, TimeseriesPoint } from "@ollion/flow-dashboard"; +import { TimeseriesData, TimeseriesPoint } from "@nonfx/flow-dashboard"; import { faker } from "@faker-js/faker"; export function getColor() { diff --git a/stories/flow-form-builder/about.mdx b/stories/flow-form-builder/about.mdx index 2f99647d8..92a413ba7 100644 --- a/stories/flow-form-builder/about.mdx +++ b/stories/flow-form-builder/about.mdx @@ -1,6 +1,6 @@ import { Meta, Markdown } from "@storybook/addon-docs/blocks"; - + The Flow form builder is built on the Flow design framework ([website](https://flow.ollion.com/) / [github](https://github.com/ollionorg/flow-core)) @@ -61,7 +61,7 @@ Flow form builder is built on [Flow](https://flow.ollion.com/), an open source d ### 1️⃣ Install flow form builder dependency ``` -pnpm i --save @ollion/flow-form-builder +pnpm i --save @nonfx/flow-form-builder ``` **Note:** after installation, re-start your application. @@ -75,7 +75,7 @@ Paste the below snippet after the closing `