Skip to content

Commit

Permalink
Change ownership to ownego
Browse files Browse the repository at this point in the history
  • Loading branch information
juzser committed May 27, 2022
1 parent 7f0cd41 commit 4dfaade
Show file tree
Hide file tree
Showing 11 changed files with 54 additions and 53 deletions.
2 changes: 1 addition & 1 deletion .storybook/manager-head.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<link rel="shortcut icon" href="https://github.com/qikify/polaris-vue/blob/master/public/images/logo.png?raw=true">
<link rel="shortcut icon" href="https://github.com/ownego/polaris-vue/blob/master/public/images/logo.png?raw=true">

<style>
#storybook-explorer-tree .sidebar-item {
Expand Down
4 changes: 2 additions & 2 deletions .storybook/manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ addons.setConfig({
},
theme: create({
base: 'light',
brandTitle: 'Qikify Polaris Storybook',
brandTitle: 'Ownego Polaris Storybook',
brandUrl: '/',
brandImage: 'https://github.com/qikify/polaris-vue/blob/master/public/images/brand.png?raw=true',
brandImage: 'https://github.com/ownego/polaris-vue/blob/master/public/images/brand.png?raw=true',
appBorderRadius: 0,
colorPrimary: '#008060',
colorSecondary: '#008060',
Expand Down
24 changes: 11 additions & 13 deletions .storybook/stories/GetStarted.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { Meta } from '@storybook/addon-docs';
}}
/>

<img src="https://github.com/qikify/polaris-vue/blob/master/public/images/banner.jpg?raw=true" alt="Shopify Polaris Vue" width="1000" height="376" />
<img src="https://github.com/ownego/polaris-vue/blob/master/public/images/banner.jpg?raw=true" alt="Shopify Polaris Vue" width="1000" height="376" />

<br/>
<br/>
Expand All @@ -22,9 +22,7 @@ import { Meta } from '@storybook/addon-docs';

<br/>

Polaris Vue by Qikify is a component library for [Vue 3](https://vuejs.org/) based on [Shopify Polaris style guide](https://polaris.shopify.com/). We try to keep the package light-weight and easy to use (mostly similar with original Polaris Library).

Polaris Vue by qikify only supports **Vue 3.0+**.
Polaris Vue by Ownego is a component library for [Vue 3](https://vuejs.org/) based on [Shopify Polaris style guide](https://polaris.shopify.com/). We try to keep the package light-weight and easy to use (mostly similar with original Polaris Library).

**Follow Polaris React version:** [9.9.0](https://github.com/Shopify/polaris/releases/tag/v9.9.0) - Migrated date: *May 26th, 2022*.

Expand All @@ -36,13 +34,13 @@ Polaris Vue by qikify only supports **Vue 3.0+**.
Using NPM

```bash
npm install @qikify/polaris-vue
npm install @ownego/polaris-vue
```

Using Yarn

```bash
yarn add @qikify/polaris-vue
yarn add @ownego/polaris-vue
```

<br/>
Expand All @@ -54,8 +52,8 @@ Use as a Vue plugin (globally registers all components):
```js
//main.js
import { createApp } from 'vue'
import PolarisVue from '@qikify/polaris-vue' // (✓)
import '@qikify/polaris-vue/dist/style.css' // (✓) This will be deprecated in the future, right after Vue 3 supports css injections.
import PolarisVue from '@ownego/polaris-vue' // (✓)
import '@ownego/polaris-vue/dist/style.css' // (✓) This will be deprecated in the future, right after Vue 3 supports css injections.
import App from './App.vue'

//...
Expand All @@ -67,7 +65,7 @@ app.use(PolarisVue) // (✓)
OR use individual component (for better bundle size):

```js
import { List, Icon } from '@qikify/polaris-vue';
import { List, Icon } from '@ownego/polaris-vue';
```

<br/>
Expand Down Expand Up @@ -114,15 +112,15 @@ export default defineConfig({

## Issues & Contributions

Polaris Vue by qikify is an open source project and we are very happy to accept community contributions.
Polaris Vue by ownego is an open source project and we are very happy to accept community contributions.

If you notice any bugs, please create issues under [Issues](https://github.com/qikify/polaris-vue/issues).
If you notice any bugs, please create issues under [Issues](https://github.com/ownego/polaris-vue/issues).

<br/>
<br/>

## License

Code released under the [MIT License](https://github.com/qikify/polaris-vue/LICENSE).
Code released under the [MIT License](https://github.com/ownego/polaris-vue/LICENSE).

Copyright (c) 2021 Qikify
Copyright (c) 2021 Ownego
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2021 Qikify
Copyright (c) 2021 Ownego

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Polaris Vue (Support Vue 3.0)

Polaris Vue by qikify only supports **Vue 3.0+**.
Polaris Vue by Ownego only supports **Vue 3.0+**.

Polaris Vue by Qikify based on [Shopify Polaris style guide](https://polaris.shopify.com/), built especially for Vue 3.
Polaris Vue based on [Shopify Polaris style guide](https://polaris.shopify.com/), built especially for Vue 3.
We're trying to make it mostly close with Shopify style guide and get a better performance.

**Follow Polaris React version:** [9.9.0](https://github.com/Shopify/polaris/releases/tag/v9.9.0) - Migrated date: *May 26th, 2022*.
Expand All @@ -11,7 +11,7 @@ We're trying to make it mostly close with Shopify style guide and get a better p

## Documentation

Online documentation: [Click Here](https://qikify.github.io/polaris-vue/)
Online documentation: [Click Here](https://ownego.github.io/polaris-vue/)

<br/>

Expand All @@ -20,13 +20,13 @@ Online documentation: [Click Here](https://qikify.github.io/polaris-vue/)
Via NPM:

```bash
npm install @qikify/polaris-vue
npm install @ownego/polaris-vue
```

Via Yarn:

```bash
yarn add @qikify/polaris-vue
yarn add @ownego/polaris-vue
```

<br/>
Expand All @@ -38,8 +38,8 @@ Use as a Vue 3 plugin (globally registers all components):
```js
//main.js
import { createApp } from 'vue'
import PolarisVue from '@qikify/polaris-vue' // (✓)
import '@qikify/polaris-vue/dist/style.css' // (✓) This will be deprecated in the future, right after Vue 3 supports css injections.
import PolarisVue from '@ownego/polaris-vue' // (✓)
import '@ownego/polaris-vue/dist/style.css' // (✓) This will be deprecated in the future, right after Vue 3 supports css injections.
import App from './App.vue'

//...
Expand All @@ -51,7 +51,7 @@ app.use(PolarisVue) // (✓)
**OR** use individual component:

```js
import { List, Icon } from '@qikify/polaris-vue';
import { List, Icon } from '@ownego/polaris-vue';
```

<br/>
Expand Down Expand Up @@ -100,7 +100,7 @@ export default defineConfig({

```bash
# Clone repo
git clone https://github.com/qikify/polaris-vue.git
git clone https://github.com/ownego/polaris-vue.git

# Install packages
yarn
Expand All @@ -113,14 +113,14 @@ yarn dev

## Contributing

Polaris Vue by qikify is an open source project and we are very happy to accept community contributions.
Polaris Vue by Ownego is an open source project and we are very happy to accept community contributions.

If you notice any bugs, please create issues under [Issues](https://github.com/qikify/polaris-vue/issues).
If you notice any bugs, please create issues under [Issues](https://github.com/ownego/polaris-vue/issues).
We will update the contribution rules later.

## License

Code released under the [MIT License](https://github.com/qikify/polaris-vue/LICENSE).
Copyright (c) 2021 Qikify
Code released under the [MIT License](https://github.com/ownego/polaris-vue/LICENSE).
Copyright (c) 2021 Ownego

**Thank you!** :tada:
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@qikify/polaris-vue",
"name": "@ownego/polaris-vue",
"version": "1.0.1",
"polaris_version": "9.9.0",
"description": "Shopify Polaris UI library for Vue 3",
"author": {
"name": "Qikify"
"name": "Ownego Team"
},
"keywords": [
"polaris",
Expand Down Expand Up @@ -83,11 +83,11 @@
},
"repository": {
"type": "git",
"url": "https://github.com/qikify/polaris-vue.git"
"url": "https://github.com/ownego/polaris-vue.git"
},
"bugs": {
"url": "https://github.com/qikify/polaris-vue/issues"
"url": "https://github.com/ownego/polaris-vue/issues"
},
"homepage": "https://github.com/qikify/polaris-vue#readme",
"homepage": "https://github.com/ownego/polaris-vue#readme",
"license": "MIT"
}
16 changes: 8 additions & 8 deletions src/components/Frame/README.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const Template = (args) => ({
},
navItems2: [
{ label: 'Dashboard', icon: markRaw(HomeMajor), onClick: this.toggleIsLoading },
{ label: 'Qikify Orders', icon: markRaw(OrdersMajor), onClick: this.toggleIsLoading },
{ label: 'Ownego Orders', icon: markRaw(OrdersMajor), onClick: this.toggleIsLoading },
],
};
},
Expand Down Expand Up @@ -126,8 +126,8 @@ export const Template = (args) => ({
setup() {
const logo = {
width: 30,
topBarSource: 'https://github.com/qikify/polaris-vue/raw/dev/public/images/logo.png',
contextualSaveBarSource: 'https://github.com/qikify/polaris-vue/raw/dev/public/images/logo.png',
topBarSource: 'https://github.com/ownego/polaris-vue/raw/dev/public/images/logo.png',
contextualSaveBarSource: 'https://github.com/ownego/polaris-vue/raw/dev/public/images/logo.png',
}
const navItems = [
{ label: 'Back to Shopify', icon: ArrowLeftMinor },
Expand Down Expand Up @@ -163,7 +163,7 @@ export const Template = (args) => ({
<TopBarUserMenu
:actions="userMenuAction"
name="Polaris"
detail="qikify"
detail="ownego"
initials="P"
:message="userMenuMessage"
:open="isUserMenuOpen"
Expand Down Expand Up @@ -260,7 +260,7 @@ The frame component, while not visible in the user interface itself, provides th
<TopBarUserMenu
:actions="userMenuAction"
name="Polaris"
detail="qikify"
detail="ownego"
initials="P"
:message="userMenuMessage"
:open="isUserMenuOpen"
Expand Down Expand Up @@ -340,7 +340,7 @@ The frame component, while not visible in the user interface itself, provides th
},
navItems2: [
{ label: 'Dashboard', icon: markRaw(HomeMajor), onClick: this.toggleIsLoading },
{ label: 'Qikify Orders', icon: markRaw(OrdersMajor), onClick: this.toggleIsLoading },
{ label: 'Ownego Orders', icon: markRaw(OrdersMajor), onClick: this.toggleIsLoading },
],
};
},
Expand Down Expand Up @@ -374,8 +374,8 @@ The frame component, while not visible in the user interface itself, provides th
setup() {
const logo = {
width: 30,
topBarSource: 'https://github.com/qikify/polaris-vue/raw/dev/public/images/logo.png',
contextualSaveBarSource: 'https://github.com/qikify/polaris-vue/raw/dev/public/images/logo.png',
topBarSource: 'https://github.com/ownego/polaris-vue/raw/dev/public/images/logo.png',
contextualSaveBarSource: 'https://github.com/ownego/polaris-vue/raw/dev/public/images/logo.png',
}
const navItems = [
{ label: 'Back to Shopify', icon: ArrowLeftMinor },
Expand Down
4 changes: 2 additions & 2 deletions src/components/Tag/README.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const Template = (args) => ({
<Tag v-bind="args">Wholesale</Tag>&nbsp;
<Tag @remove="removeHandle">Removable</Tag>&nbsp;
<Tag @click="clickHandle">Clickable</Tag>&nbsp;
<Tag url="https://github.com/qikify/polaris-vue">With link</Tag>
<Tag url="https://github.com/ownego/polaris-vue">With link</Tag>
</div>`,
});

Expand All @@ -78,7 +78,7 @@ Tags represent a set of interactive, merchant-supplied keywords that help label,
<Tag>Wholesale</Tag>
<Tag v-on:remove="removeHandle">Removable</Tag>
<Tag v-on:click="clickHandle">Clickable</Tag>
<Tag url="https://github.com/qikify/polaris-vue">With link</Tag>\n
<Tag url="https://github.com/ownego/polaris-vue">With link</Tag>\n
<script setup>
const removeHandle = () => {
alert('Removed');
Expand Down
12 changes: 6 additions & 6 deletions src/components/TopBar/README.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ export const Template = (args) => ({
setup() {
const logo = {
width: 30,
topBarSource: 'https://github.com/qikify/polaris-vue/raw/dev/public/images/logo.png',
contextualSaveBarSource: 'https://github.com/qikify/polaris-vue/raw/dev/public/images/logo.png',
topBarSource: 'https://github.com/ownego/polaris-vue/raw/dev/public/images/logo.png',
contextualSaveBarSource: 'https://github.com/ownego/polaris-vue/raw/dev/public/images/logo.png',
}
const isUserMenuOpen = ref(false);
const isSecondaryMenuOpen = ref(false);
Expand Down Expand Up @@ -144,7 +144,7 @@ export const Template = (args) => ({
<TopBarUserMenu
:actions="userMenuAction"
name="Polaris"
detail="qikify"
detail="ownego"
initials="P"
:message="userMenuMessage"
:open="isUserMenuOpen"
Expand Down Expand Up @@ -210,7 +210,7 @@ The top bar is a header component that allows merchants to search, access menus,
<TopBarUserMenu
:actions="userMenuAction"
name="Polaris"
detail="qikify"
detail="ownego"
initials="P"
:message="userMenuMessage"
:open="isUserMenuOpen"
Expand Down Expand Up @@ -251,8 +251,8 @@ The top bar is a header component that allows merchants to search, access menus,
setup() {
const logo = {
width: 30,
topBarSource: 'https://github.com/qikify/polaris-vue/raw/dev/public/images/logo.png',
contextualSaveBarSource: 'https://github.com/qikify/polaris-vue/raw/dev/public/images/logo.png',
topBarSource: 'https://github.com/ownego/polaris-vue/raw/dev/public/images/logo.png',
contextualSaveBarSource: 'https://github.com/ownego/polaris-vue/raw/dev/public/images/logo.png',
}
const isUserMenuOpen = ref(false);
const isSecondaryMenuOpen = ref(false);
Expand Down
4 changes: 2 additions & 2 deletions src/utilities/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export class MissingAppProviderError extends Error {
super(
`${
message ? `${message} ` : message
}Your application must be wrapped in an <AppProvider> component. See https://qikify.github.io/polaris-vue/?path=/docs/components-structure-app-provider for implementation instructions.`,
}Your application must be wrapped in an <AppProvider> component. See https://ownego.github.io/polaris-vue/?path=/docs/components-structure-app-provider for implementation instructions.`,
);
this.name = 'MissingAppProviderError';
}
Expand All @@ -14,7 +14,7 @@ export class MissingFrameError extends Error {
super(
`${
message ? `${message} ` : message
}Your component must be wrapped in a <Frame> component. See https://qikify.github.io/polaris-vue/?path=/docs/components-structure-frame--page for implementation instructions.`,
}Your component must be wrapped in a <Frame> component. See https://ownego.github.io/polaris-vue/?path=/docs/components-structure-frame--page for implementation instructions.`,
);
this.name = 'MissingFrameError';
}
Expand Down
3 changes: 3 additions & 0 deletions src/utilities/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,3 +134,6 @@ export interface SectionDescriptor {

export type Descriptor = SectionDescriptor | OptionDescriptor;

export interface CheckboxHandles {
focus(): void;
}

0 comments on commit 4dfaade

Please sign in to comment.