Skip to content

Commit 51a6a36

Browse files
Beta (#375)
* Creatorkit feb release (#374) * feb release plan
1 parent ae05aa4 commit 51a6a36

File tree

119 files changed

+429
-325
lines changed

Some content is hidden

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

119 files changed

+429
-325
lines changed

MaskedTextField/MaskedTextField/components/Component.types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ export interface ICanvasMaskedTextFieldProps extends IMaskedTextFieldProps {
1010
onChange: (event?: React.FormEvent<HTMLInputElement | HTMLTextAreaElement>, newValue?: string) => void;
1111
themeJSON?: string;
1212
setFocus?: string;
13+
ref?: React.Ref<HTMLInputElement>;
1314
}

SubwayNav/SubwayNav/__mocks__/mock-context.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export class MockContext<T> implements ComponentFramework.Context<T> {
1818
getClient: jest.fn(),
1919
getFormFactor: jest.fn(),
2020
isOffline: jest.fn(),
21+
isNetworkAvailable: jest.fn(),
2122
};
2223

2324
// Canvas apps currently assigns a positive tab-index

SubwayNav/SubwayNav/utilities/FocusZone/FocusZone.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
/* eslint-disable */
23
/* istanbul ignore file */
34
import * as React from 'react';

SubwayNav/SubwayNav/utilities/MainUtilities/src/hooks/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
export { useControlledUncontrolled } from './use-controlled-uncontrolled';
23
export type { IUseInjectOnce } from './use-inject-singleton';
34
export { makeInjectSingleton, useInjectSingleton } from './use-inject-singleton';

SubwayNav/SubwayNav/utilities/MainUtilities/src/hooks/use-controlled-uncontrolled.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
import type { Dispatch } from 'react';
23
import * as React from 'react';
34

SubwayNav/SubwayNav/utilities/MainUtilities/src/hooks/use-inject-singleton.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
import { getId } from '@fluentui/react';
23
import type { ReactNode } from 'react';
34
import { useEffect, useMemo } from 'react';

SubwayNav/SubwayNav/utilities/MainUtilities/src/hooks/use-intersection-observer.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
import type { Dispatch, MutableRefObject, SetStateAction } from 'react';
23
import * as React from 'react';
34

SubwayNav/SubwayNav/utilities/MainUtilities/src/hooks/use-obscured-elements.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
import type { Dispatch, MutableRefObject, SetStateAction } from 'react';
23
import * as React from 'react';
34

SubwayNav/SubwayNav/utilities/MainUtilities/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
export type { IUseInjectOnce } from './hooks/index';
23
export {
34
makeInjectSingleton,

SubwayNav/SubwayNav/utilities/MainUtilities/src/type-helpers/flexible-header.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
/**
23
* A flexible header type that let's the consumer chose what level of heading to assign.
34
* Most consumers

0 commit comments

Comments
 (0)