Skip to content

Commit 1071f72

Browse files
authored
Merge branch 'main' into feat-power-apps-link-component
2 parents d2ad1f2 + b78cd79 commit 1071f72

File tree

28 files changed

+556
-351
lines changed

28 files changed

+556
-351
lines changed

e2e/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@ This directory provides `docker-compose.yml` to test or regenerate screenshots.
1616
## Test with linux build
1717

1818
- run `docker-compose -f ./e2e/docker-compose.start.yml up`
19+
20+
## FAQ
21+
22+
If you're running into errors on testing or screenshot generation e.g. regarding missing dependencies (`db-ui-mono-e2e-playwright-1 | sh: 1: cross-env: not found`), you're probably based on an old version of the image. That for you would need to rebuild the image by adding the '--build' parameter, like e.g. `docker-compose -f ./e2e/docker-compose.regenerate.yml up --build`

output/vue/vue3/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@
3131
"test:components": "playwright test -c playwright.config.ts"
3232
},
3333
"dependencies": {
34-
"vue": "^3.3.1"
34+
"vue": "^3.3.2"
3535
},
3636
"devDependencies": {
3737
"@axe-core/playwright": "^4.6.1",
3838
"@playwright/experimental-ct-vue": "1.32.3",
39-
"@vitejs/plugin-vue": "^4.2.2",
39+
"@vitejs/plugin-vue": "^4.2.3",
4040
"sass": "^1.62.1",
4141
"typescript": "^4.9.5",
4242
"vite": "^4.3.5",
43-
"vue-tsc": "^1.6.4"
43+
"vue-tsc": "^1.6.5"
4444
},
4545
"publishConfig": {
4646
"registry": "https://registry.npmjs.org/",

package-lock.json

Lines changed: 521 additions & 338 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"fs-extra": "^11.1.1",
7676
"http-server": "14.1.1",
7777
"husky": "8.0.3",
78-
"inquirer": "^9.2.2",
78+
"inquirer": "^9.2.3",
7979
"jscpd": "^3.5.9",
8080
"markdownlint-cli": "^0.34.0",
8181
"npm-run-all": "4.1.5",

packages/components/_templates/mitosis/new/component/tsx.ejs.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import classNames from "classnames";
88
useMetadata({
99
isAttachedToShadowDom: true,
1010
component: {
11+
// MS Power Apps
1112
includeIcon: false,
1213
properties: [],
1314
},

packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"devDependencies": {
4040
"@builder.io/eslint-plugin-mitosis": "^0.0.14",
4141
"@builder.io/mitosis": "^0.0.99",
42-
"@builder.io/mitosis-cli": "^0.0.58",
42+
"@builder.io/mitosis-cli": "^0.0.60",
4343
"@react-docgen/cli": "^1.0.0-alpha.1",
4444
"cpr": "3.0.1",
4545
"eslint": "^8.39.0",

packages/components/src/components/alert/alert.lite.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { DEFAULT_CLOSE_BUTTON } from '../../shared/constants';
1616
useMetadata({
1717
isAttachedToShadowDom: true,
1818
component: {
19+
// MS Power Apps
1920
includeIcon: true,
2021
hasOnClick: true,
2122
properties: [

packages/components/src/components/brand/brand.lite.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import classNames from 'classnames';
55
useMetadata({
66
isAttachedToShadowDom: true,
77
component: {
8+
// MS Power Apps
89
includeIcon: false,
910
properties: []
1011
}

packages/components/src/components/button/button.lite.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import classNames from 'classnames';
66
useMetadata({
77
isAttachedToShadowDom: true,
88
component: {
9+
// MS Power Apps
910
includeIcon: true,
1011
hasDisabledProp: true,
1112
hasOnClick: true,

packages/components/src/components/button/model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
IconState
88
} from '../../shared/model';
99

10-
// TODO: 👇 Find a way to make react-docgen work withouth duplicating the types below
10+
// TODO: 👇 Find a way to make react-docgen work without duplicating the types below
1111
enum buttonVariants {
1212
'outlined' = 'outlined',
1313
'primary' = 'primary',

0 commit comments

Comments
 (0)