Skip to content

Commit

Permalink
Merge branch 'master' into users/prjayapa/add-ssr-hydration
Browse files Browse the repository at this point in the history
  • Loading branch information
prabhujayapal authored Jun 18, 2024
2 parents 6798c2a + f479184 commit 8906270
Show file tree
Hide file tree
Showing 48 changed files with 1,100 additions and 303 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/cd-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Deploy GitHub Pages

on:
workflow_dispatch:

env:
GITHUB_SERVICE_USER: "Microsoft FAST Builds"
GITHUB_SERVICE_EMAIL: "[email protected]"

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16.x]

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}

- name: Set Git User
run: |
git config --global user.name "${{ env.GITHUB_SERVICE_USER }}"
git config --global user.email "${{ env.GITHUB_SERVICE_EMAIL }}"
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo '::set-output name=dir::$(yarn cache dir)'

- name: Set up node_modules cache
uses: actions/cache@v3
id: yarn-cache
with:
path: |
${{ steps.yarn-cache-dir-path.outputs.dir }}
node_modules
*/*/node_modules
key: ${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn_cache-
- name: Install package dependencies
run: yarn install --frozen-lockfile --ignore-scripts --prefer-offline

- name: Prepare workspaces
run: yarn prepare

- name: Build GitHub Pages
run: yarn build:gh-pages

- name: Deploy GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: sites/website/build # The folder the action should deploy.
target-folder: docs # The folder on the branch to deploy to.
1 change: 1 addition & 0 deletions .github/workflows/ci-validate-pr.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Validate PRs

on:
workflow_dispatch:
push:
branches:
- master
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "update picker component roles",
"packageName": "@microsoft/fast-foundation",
"email": "[email protected]",
"dependentChangeType": "prerelease"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "add picker disabled state",
"packageName": "@microsoft/fast-foundation",
"email": "[email protected]",
"dependentChangeType": "prerelease"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "no options missing",
"packageName": "@microsoft/fast-foundation",
"email": "[email protected]",
"dependentChangeType": "prerelease"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Various Combobox fixes with tests.",
"packageName": "@microsoft/fast-foundation",
"email": "[email protected]",
"dependentChangeType": "prerelease"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Remove unmatched closing div",
"packageName": "@microsoft/fast-foundation",
"email": "[email protected]",
"dependentChangeType": "prerelease"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "removing readonly for Slider",
"packageName": "@microsoft/fast-foundation",
"email": "[email protected]",
"dependentChangeType": "prerelease"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "Adds token name to token resolution error when the name exists for a token",
"packageName": "@microsoft/fast-foundation",
"email": "[email protected]",
"dependentChangeType": "prerelease"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "fix(foundation): textfield proxy enterkeyhint",
"packageName": "@microsoft/fast-foundation",
"email": "[email protected]",
"dependentChangeType": "prerelease"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "feat(text-field): reset value on type change",
"packageName": "@microsoft/fast-foundation",
"email": "[email protected]",
"dependentChangeType": "prerelease"
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "patch",
"type": "prerelease",
"comment": "fix: remove link handler in disconnect",
"packageName": "@microsoft/fast-router",
"email": "[email protected]",
"dependentChangeType": "patch"
"dependentChangeType": "prerelease"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"comment": "fix: typos in SSR README",
"packageName": "@microsoft/fast-ssr",
"email": "[email protected]",
"dependentChangeType": "patch"
"dependentChangeType": "prerelease"
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"change": "beachball change",
"checkchange": "beachball check --scope \"!sites/*\" --changehint \"Run 'yarn change' to generate a change file\"",
"check": "beachball check ",
"build:gh-pages": "yarn workspace fast-site build",
"publish": "beachball publish",
"publish-ci": "beachball publish -y --access public",
"prepare": "lerna run prepare",
Expand Down
31 changes: 24 additions & 7 deletions packages/web-components/fast-foundation/docs/api-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { Direction } from '@microsoft/fast-web-utilities';
import type { ElementsFilter } from '@microsoft/fast-element';
import type { ElementStyles } from '@microsoft/fast-element';
import type { ElementViewTemplate } from '@microsoft/fast-element';
import { FASTContext } from '@microsoft/fast-element/context.js';
import { FASTElement } from '@microsoft/fast-element';
import { FASTElementDefinition } from '@microsoft/fast-element';
import type { HostBehavior } from '@microsoft/fast-element';
Expand Down Expand Up @@ -1536,14 +1537,28 @@ export class FASTPicker extends FormAssociatedPicker {
defaultMenuOptionTemplate?: ViewTemplate;
// (undocumented)
protected defaultMenuOptionTemplateChanged(): void;
// @public
disabled: boolean;
// (undocumented)
disabledChanged(previous: boolean, next: boolean): void;
disableQueryFilter: boolean;
// (undocumented)
protected disableQueryFilterChanged(): void;
disableSelectionFilter: boolean;
// (undocumented)
protected disableSelectionFilterChanged(): void;
// (undocumented)
disconnectedCallback(): void;
// @internal
filteredOptionsList: string[];
// (undocumented)
protected filteredOptionsListChanged(): void;
// @deprecated
filterQuery: boolean;
// (undocumented)
protected filterQueryChanged(): void;
// @deprecated
filterSelected: boolean;
// (undocumented)
protected filterSelectedChanged(): void;
// @internal
flyoutOpen: boolean;
// (undocumented)
Expand Down Expand Up @@ -1600,7 +1615,7 @@ export class FASTPicker extends FormAssociatedPicker {
protected queryChanged(): void;
// @internal
region: FASTAnchoredRegion;
// @internal (undocumented)
// @internal
selectedItems: string[];
// @internal
selectedListTag: string;
Expand Down Expand Up @@ -1629,9 +1644,11 @@ export class FASTPickerListItem extends FASTElement {
// @internal (undocumented)
disconnectedCallback(): void;
// (undocumented)
handleClick(e: MouseEvent): boolean;
handleClick(e: MouseEvent): void;
// (undocumented)
handleKeyDown(e: KeyboardEvent): boolean;
// Warning: (ae-forgotten-export) The symbol "PickerContext" needs to be exported by the entry point index.d.ts
pickerContext: PickerContext;
value: string;
}

Expand Down Expand Up @@ -1875,9 +1892,6 @@ export class FASTSlider extends FormAssociatedSlider implements SliderConfigurat
protected orientationChanged(): void;
// @internal (undocumented)
position: string;
readOnly: boolean;
// (undocumented)
protected readOnlyChanged(): void;
step: number | undefined;
// (undocumented)
protected stepChanged(): void;
Expand Down Expand Up @@ -2056,6 +2070,9 @@ export class FASTTextField extends FormAssociatedTextField {
connectedCallback(): void;
// @internal (undocumented)
defaultSlottedNodes: Node[];
enterKeyHint: "enter" | "done" | "go" | "next" | "previous" | "search" | "send";
// (undocumented)
protected enterKeyHintChanged(): void;
// @internal
field: HTMLInputElement;
// @internal
Expand Down
Loading

0 comments on commit 8906270

Please sign in to comment.