Skip to content

Commit 88259af

Browse files
committed
Merge remote-tracking branch 'origin/dev'
2 parents fc2f774 + b3050c5 commit 88259af

File tree

217 files changed

+8855
-235
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

217 files changed

+8855
-235
lines changed

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ classes/*.json
66
src/**/*.stories.mdx
77
src/**/*.scss
88
src/**/*.css
9+
package.json
10+
README.md
11+
.storybook

.postcssrc.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ module.exports = {
1111
getJSON: (cssFileName, json) => {
1212
let cssName = path.basename(cssFileName, '.vue');
1313

14-
const pattern = /polaris\-vue\/src\/components\/(.*?)\/components/g;
14+
let projectPath = path.basename(__dirname, './');
15+
16+
const pattern = new RegExp(`${projectPath}/src/components/(.*?)/components`, 'g');
1517
let parentName = cssFileName.match(pattern);
1618
if (parentName) {
1719
parentName = parentName[0].replace(pattern, '$1');

.storybook/stories/GetStarted.stories.mdx

Lines changed: 2 additions & 2 deletions

.storybook/stories/PolarisIcons.stories.mdx

Lines changed: 5 additions & 7 deletions

README.md

Lines changed: 2 additions & 2 deletions

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@qikify/polaris-vue",
3-
"version": "0.3.0",
4-
"polaris_version": "9.0.0",
3+
"version": "0.4.0",
4+
"polaris_version": "9.2.2",
55
"description": "Shopify Polaris UI library for Vue 3",
66
"author": {
77
"name": "Qikify"

src/classes/Action.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/classes/Backdrop.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"Backdrop":"Polaris-Backdrop","fade-in":"Polaris-Backdrop__fade--in","transparent":"Polaris-Backdrop--transparent","belowNavigation":"Polaris-Backdrop--belowNavigation"}

src/classes/Collapsible.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"Collapsible":"Polaris-Collapsible","isFullyClosed":"Polaris-Collapsible--isFullyClosed","expandOnPrint":"Polaris-Collapsible--expandOnPrint"}

src/classes/Combobox.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"Listbox":"Polaris-Combobox__Listbox"}

0 commit comments

Comments
 (0)