@workday/canvas-kit-labs-react 6.0.0-beta.0-next.15 → 6.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/combobox/lib/AutocompleteList.tsx +5 -2
- package/combobox/lib/Combobox.tsx +0 -1
- package/common/lib/theming/index.ts +1 -0
- package/common/lib/theming/useThemedRing.ts +84 -0
- package/dist/commonjs/combobox/lib/AutocompleteList.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/AutocompleteList.js +5 -2
- package/dist/commonjs/combobox/lib/Combobox.d.ts.map +1 -1
- package/dist/commonjs/combobox/lib/Combobox.js +0 -1
- package/dist/commonjs/common/lib/theming/index.d.ts +1 -0
- package/dist/commonjs/common/lib/theming/index.d.ts.map +1 -1
- package/dist/commonjs/common/lib/theming/index.js +1 -0
- package/dist/commonjs/common/lib/theming/useThemedRing.d.ts +11 -0
- package/dist/commonjs/common/lib/theming/useThemedRing.d.ts.map +1 -0
- package/dist/commonjs/common/lib/theming/useThemedRing.js +61 -0
- package/dist/commonjs/header/index.d.ts +5 -5
- package/dist/commonjs/header/index.d.ts.map +1 -1
- package/dist/commonjs/header/index.js +2 -2
- package/dist/commonjs/header/lib/GlobalHeader.d.ts +11 -2
- package/dist/commonjs/header/lib/GlobalHeader.d.ts.map +1 -1
- package/dist/commonjs/header/lib/GlobalHeader.js +19 -8
- package/dist/commonjs/header/lib/Header.d.ts +17 -8
- package/dist/commonjs/header/lib/Header.d.ts.map +1 -1
- package/dist/commonjs/header/lib/Header.js +27 -14
- package/dist/commonjs/header/lib/parts/DubLogoTitle.d.ts +13 -4
- package/dist/commonjs/header/lib/parts/DubLogoTitle.d.ts.map +1 -1
- package/dist/commonjs/header/lib/parts/DubLogoTitle.js +22 -11
- package/dist/commonjs/header/lib/parts/WorkdayLogoTitle.d.ts +14 -5
- package/dist/commonjs/header/lib/parts/WorkdayLogoTitle.d.ts.map +1 -1
- package/dist/commonjs/header/lib/parts/WorkdayLogoTitle.js +25 -12
- package/dist/commonjs/header/lib/parts/index.d.ts +2 -3
- package/dist/commonjs/header/lib/parts/index.d.ts.map +1 -1
- package/dist/commonjs/header/lib/parts/index.js +2 -4
- package/dist/commonjs/header/lib/shared/themes.d.ts +28 -19
- package/dist/commonjs/header/lib/shared/themes.d.ts.map +1 -1
- package/dist/commonjs/header/lib/shared/themes.js +13 -36
- package/dist/commonjs/header/lib/shared/types.d.ts +3 -8
- package/dist/commonjs/header/lib/shared/types.d.ts.map +1 -1
- package/dist/commonjs/header/lib/shared/types.js +17 -23
- package/dist/commonjs/index.d.ts +2 -0
- package/dist/commonjs/index.d.ts.map +1 -1
- package/dist/commonjs/index.js +2 -0
- package/dist/commonjs/layout/lib/utils/getValidChildren.d.ts +1 -1
- package/dist/commonjs/layout/lib/utils/getValidChildren.d.ts.map +1 -1
- package/dist/commonjs/search-form/index.d.ts +3 -0
- package/dist/commonjs/search-form/index.d.ts.map +1 -0
- package/dist/commonjs/search-form/index.js +7 -0
- package/dist/commonjs/{header/lib/parts/SearchBar.d.ts → search-form/lib/SearchForm.d.ts} +22 -23
- package/dist/commonjs/search-form/lib/SearchForm.d.ts.map +1 -0
- package/dist/commonjs/{header/lib/parts/SearchBar.js → search-form/lib/SearchForm.js} +13 -14
- package/dist/commonjs/search-form/lib/themes.d.ts +21 -0
- package/dist/commonjs/search-form/lib/themes.d.ts.map +1 -0
- package/dist/commonjs/search-form/lib/themes.js +41 -0
- package/dist/commonjs/text-input/index.d.ts +7 -0
- package/dist/commonjs/text-input/index.d.ts.map +1 -0
- package/dist/commonjs/text-input/index.js +11 -0
- package/dist/commonjs/text-input/lib/TextInput.d.ts +21 -0
- package/dist/commonjs/text-input/lib/TextInput.d.ts.map +1 -0
- package/dist/commonjs/text-input/lib/TextInput.js +36 -0
- package/dist/commonjs/text-input/lib/TextInputField.d.ts +8 -0
- package/dist/commonjs/text-input/lib/TextInputField.d.ts.map +1 -0
- package/dist/commonjs/text-input/lib/TextInputField.js +66 -0
- package/dist/commonjs/text-input/lib/TextInputHint.d.ts +13 -0
- package/dist/commonjs/text-input/lib/TextInputHint.d.ts.map +1 -0
- package/dist/commonjs/text-input/lib/TextInputHint.js +46 -0
- package/dist/commonjs/text-input/lib/TextInputLabel.d.ts +17 -0
- package/dist/commonjs/text-input/lib/TextInputLabel.d.ts.map +1 -0
- package/dist/commonjs/text-input/lib/TextInputLabel.js +54 -0
- package/dist/commonjs/text-input/lib/hooks/useTextInputField.d.ts +19 -0
- package/dist/commonjs/text-input/lib/hooks/useTextInputField.d.ts.map +1 -0
- package/dist/commonjs/text-input/lib/hooks/useTextInputField.js +16 -0
- package/dist/commonjs/text-input/lib/hooks/useTextInputHint.d.ts +15 -0
- package/dist/commonjs/text-input/lib/hooks/useTextInputHint.d.ts.map +1 -0
- package/dist/commonjs/text-input/lib/hooks/useTextInputHint.js +12 -0
- package/dist/commonjs/text-input/lib/hooks/useTextInputLabel.d.ts +15 -0
- package/dist/commonjs/text-input/lib/hooks/useTextInputLabel.d.ts.map +1 -0
- package/dist/commonjs/text-input/lib/hooks/useTextInputLabel.js +12 -0
- package/dist/commonjs/text-input/lib/hooks/useTextInputModel.d.ts +17 -0
- package/dist/commonjs/text-input/lib/hooks/useTextInputModel.d.ts.map +1 -0
- package/dist/commonjs/text-input/lib/hooks/useTextInputModel.js +23 -0
- package/dist/es6/combobox/lib/AutocompleteList.d.ts.map +1 -1
- package/dist/es6/combobox/lib/AutocompleteList.js +5 -2
- package/dist/es6/combobox/lib/Combobox.d.ts.map +1 -1
- package/dist/es6/combobox/lib/Combobox.js +0 -1
- package/dist/es6/common/lib/theming/index.d.ts +1 -0
- package/dist/es6/common/lib/theming/index.d.ts.map +1 -1
- package/dist/es6/common/lib/theming/index.js +1 -0
- package/dist/es6/common/lib/theming/useThemedRing.d.ts +11 -0
- package/dist/es6/common/lib/theming/useThemedRing.d.ts.map +1 -0
- package/dist/es6/common/lib/theming/useThemedRing.js +55 -0
- package/dist/es6/header/index.d.ts +5 -5
- package/dist/es6/header/index.d.ts.map +1 -1
- package/dist/es6/header/index.js +5 -5
- package/dist/es6/header/lib/GlobalHeader.d.ts +11 -2
- package/dist/es6/header/lib/GlobalHeader.d.ts.map +1 -1
- package/dist/es6/header/lib/GlobalHeader.js +22 -11
- package/dist/es6/header/lib/Header.d.ts +17 -8
- package/dist/es6/header/lib/Header.d.ts.map +1 -1
- package/dist/es6/header/lib/Header.js +30 -17
- package/dist/es6/header/lib/parts/DubLogoTitle.d.ts +13 -4
- package/dist/es6/header/lib/parts/DubLogoTitle.d.ts.map +1 -1
- package/dist/es6/header/lib/parts/DubLogoTitle.js +23 -12
- package/dist/es6/header/lib/parts/WorkdayLogoTitle.d.ts +14 -5
- package/dist/es6/header/lib/parts/WorkdayLogoTitle.d.ts.map +1 -1
- package/dist/es6/header/lib/parts/WorkdayLogoTitle.js +26 -13
- package/dist/es6/header/lib/parts/index.d.ts +2 -3
- package/dist/es6/header/lib/parts/index.d.ts.map +1 -1
- package/dist/es6/header/lib/parts/index.js +2 -3
- package/dist/es6/header/lib/shared/themes.d.ts +28 -19
- package/dist/es6/header/lib/shared/themes.d.ts.map +1 -1
- package/dist/es6/header/lib/shared/themes.js +14 -37
- package/dist/es6/header/lib/shared/types.d.ts +3 -8
- package/dist/es6/header/lib/shared/types.d.ts.map +1 -1
- package/dist/es6/header/lib/shared/types.js +17 -23
- package/dist/es6/index.d.ts +2 -0
- package/dist/es6/index.d.ts.map +1 -1
- package/dist/es6/index.js +2 -0
- package/dist/es6/layout/lib/utils/getValidChildren.d.ts +1 -1
- package/dist/es6/layout/lib/utils/getValidChildren.d.ts.map +1 -1
- package/dist/es6/search-form/index.d.ts +3 -0
- package/dist/es6/search-form/index.d.ts.map +1 -0
- package/dist/es6/search-form/index.js +2 -0
- package/dist/es6/{header/lib/parts/SearchBar.d.ts → search-form/lib/SearchForm.d.ts} +22 -23
- package/dist/es6/search-form/lib/SearchForm.d.ts.map +1 -0
- package/dist/es6/{header/lib/parts/SearchBar.js → search-form/lib/SearchForm.js} +11 -12
- package/dist/es6/search-form/lib/themes.d.ts +21 -0
- package/dist/es6/search-form/lib/themes.d.ts.map +1 -0
- package/dist/es6/search-form/lib/themes.js +39 -0
- package/dist/es6/text-input/index.d.ts +7 -0
- package/dist/es6/text-input/index.d.ts.map +1 -0
- package/dist/es6/text-input/index.js +6 -0
- package/dist/es6/text-input/lib/TextInput.d.ts +21 -0
- package/dist/es6/text-input/lib/TextInput.d.ts.map +1 -0
- package/dist/es6/text-input/lib/TextInput.js +31 -0
- package/dist/es6/text-input/lib/TextInputField.d.ts +8 -0
- package/dist/es6/text-input/lib/TextInputField.d.ts.map +1 -0
- package/dist/es6/text-input/lib/TextInputField.js +64 -0
- package/dist/es6/text-input/lib/TextInputHint.d.ts +13 -0
- package/dist/es6/text-input/lib/TextInputHint.d.ts.map +1 -0
- package/dist/es6/text-input/lib/TextInputHint.js +44 -0
- package/dist/es6/text-input/lib/TextInputLabel.d.ts +17 -0
- package/dist/es6/text-input/lib/TextInputLabel.d.ts.map +1 -0
- package/dist/es6/text-input/lib/TextInputLabel.js +52 -0
- package/dist/es6/text-input/lib/hooks/useTextInputField.d.ts +19 -0
- package/dist/es6/text-input/lib/hooks/useTextInputField.d.ts.map +1 -0
- package/dist/es6/text-input/lib/hooks/useTextInputField.js +14 -0
- package/dist/es6/text-input/lib/hooks/useTextInputHint.d.ts +15 -0
- package/dist/es6/text-input/lib/hooks/useTextInputHint.d.ts.map +1 -0
- package/dist/es6/text-input/lib/hooks/useTextInputHint.js +10 -0
- package/dist/es6/text-input/lib/hooks/useTextInputLabel.d.ts +15 -0
- package/dist/es6/text-input/lib/hooks/useTextInputLabel.d.ts.map +1 -0
- package/dist/es6/text-input/lib/hooks/useTextInputLabel.js +10 -0
- package/dist/es6/text-input/lib/hooks/useTextInputModel.d.ts +17 -0
- package/dist/es6/text-input/lib/hooks/useTextInputModel.d.ts.map +1 -0
- package/dist/es6/text-input/lib/hooks/useTextInputModel.js +21 -0
- package/header/README.md +37 -181
- package/header/index.ts +5 -5
- package/header/lib/GlobalHeader.tsx +26 -9
- package/header/lib/Header.tsx +58 -26
- package/header/lib/parts/DubLogoTitle.tsx +26 -9
- package/header/lib/parts/WorkdayLogoTitle.tsx +40 -11
- package/header/lib/parts/index.ts +2 -3
- package/header/lib/shared/themes.tsx +32 -56
- package/header/lib/shared/types.tsx +3 -9
- package/index.ts +2 -0
- package/package.json +7 -5
- package/search-form/LICENSE +52 -0
- package/search-form/README.md +6 -0
- package/search-form/index.ts +2 -0
- package/{header/lib/parts/SearchBar.tsx → search-form/lib/SearchForm.tsx} +30 -31
- package/search-form/lib/themes.ts +54 -0
- package/search-form/package.json +5 -0
- package/text-input/LICENSE +52 -0
- package/text-input/README.md +11 -0
- package/text-input/index.ts +6 -0
- package/text-input/lib/TextInput.tsx +34 -0
- package/text-input/lib/TextInputField.tsx +75 -0
- package/text-input/lib/TextInputHint.tsx +52 -0
- package/text-input/lib/TextInputLabel.tsx +74 -0
- package/text-input/lib/hooks/useTextInputField.tsx +15 -0
- package/text-input/lib/hooks/useTextInputHint.tsx +11 -0
- package/text-input/lib/hooks/useTextInputLabel.tsx +11 -0
- package/text-input/lib/hooks/useTextInputModel.tsx +45 -0
- package/text-input/package.json +5 -0
- package/ts3.5/dist/commonjs/common/lib/theming/index.d.ts +1 -0
- package/ts3.5/dist/commonjs/common/lib/theming/useThemedRing.d.ts +11 -0
- package/ts3.5/dist/commonjs/header/index.d.ts +5 -5
- package/ts3.5/dist/commonjs/header/lib/GlobalHeader.d.ts +11 -2
- package/ts3.5/dist/commonjs/header/lib/Header.d.ts +17 -8
- package/ts3.5/dist/commonjs/header/lib/parts/DubLogoTitle.d.ts +13 -4
- package/ts3.5/dist/commonjs/header/lib/parts/WorkdayLogoTitle.d.ts +14 -5
- package/ts3.5/dist/commonjs/header/lib/parts/index.d.ts +2 -3
- package/ts3.5/dist/commonjs/header/lib/shared/themes.d.ts +28 -19
- package/ts3.5/dist/commonjs/header/lib/shared/types.d.ts +3 -8
- package/ts3.5/dist/commonjs/index.d.ts +2 -0
- package/ts3.5/dist/commonjs/layout/lib/utils/getValidChildren.d.ts +1 -1
- package/ts3.5/dist/commonjs/search-form/index.d.ts +3 -0
- package/ts3.5/dist/commonjs/{header/lib/parts/SearchBar.d.ts → search-form/lib/SearchForm.d.ts} +22 -23
- package/ts3.5/dist/commonjs/search-form/lib/themes.d.ts +21 -0
- package/ts3.5/dist/commonjs/text-input/index.d.ts +7 -0
- package/ts3.5/dist/commonjs/text-input/lib/TextInput.d.ts +21 -0
- package/ts3.5/dist/commonjs/text-input/lib/TextInputField.d.ts +8 -0
- package/ts3.5/dist/commonjs/text-input/lib/TextInputHint.d.ts +13 -0
- package/ts3.5/dist/commonjs/text-input/lib/TextInputLabel.d.ts +17 -0
- package/ts3.5/dist/commonjs/text-input/lib/hooks/useTextInputField.d.ts +19 -0
- package/ts3.5/dist/commonjs/text-input/lib/hooks/useTextInputHint.d.ts +15 -0
- package/ts3.5/dist/commonjs/text-input/lib/hooks/useTextInputLabel.d.ts +15 -0
- package/ts3.5/dist/commonjs/text-input/lib/hooks/useTextInputModel.d.ts +17 -0
- package/ts3.5/dist/es6/common/lib/theming/index.d.ts +1 -0
- package/ts3.5/dist/es6/common/lib/theming/useThemedRing.d.ts +11 -0
- package/ts3.5/dist/es6/header/index.d.ts +5 -5
- package/ts3.5/dist/es6/header/lib/GlobalHeader.d.ts +11 -2
- package/ts3.5/dist/es6/header/lib/Header.d.ts +17 -8
- package/ts3.5/dist/es6/header/lib/parts/DubLogoTitle.d.ts +13 -4
- package/ts3.5/dist/es6/header/lib/parts/WorkdayLogoTitle.d.ts +14 -5
- package/ts3.5/dist/es6/header/lib/parts/index.d.ts +2 -3
- package/ts3.5/dist/es6/header/lib/shared/themes.d.ts +28 -19
- package/ts3.5/dist/es6/header/lib/shared/types.d.ts +3 -8
- package/ts3.5/dist/es6/index.d.ts +2 -0
- package/ts3.5/dist/es6/layout/lib/utils/getValidChildren.d.ts +1 -1
- package/ts3.5/dist/es6/search-form/index.d.ts +3 -0
- package/ts3.5/dist/es6/{header/lib/parts/SearchBar.d.ts → search-form/lib/SearchForm.d.ts} +22 -23
- package/ts3.5/dist/es6/search-form/lib/themes.d.ts +21 -0
- package/ts3.5/dist/es6/text-input/index.d.ts +7 -0
- package/ts3.5/dist/es6/text-input/lib/TextInput.d.ts +21 -0
- package/ts3.5/dist/es6/text-input/lib/TextInputField.d.ts +8 -0
- package/ts3.5/dist/es6/text-input/lib/TextInputHint.d.ts +13 -0
- package/ts3.5/dist/es6/text-input/lib/TextInputLabel.d.ts +17 -0
- package/ts3.5/dist/es6/text-input/lib/hooks/useTextInputField.d.ts +19 -0
- package/ts3.5/dist/es6/text-input/lib/hooks/useTextInputHint.d.ts +15 -0
- package/ts3.5/dist/es6/text-input/lib/hooks/useTextInputLabel.d.ts +15 -0
- package/ts3.5/dist/es6/text-input/lib/hooks/useTextInputModel.d.ts +17 -0
- package/dist/commonjs/header/lib/parts/SearchBar.d.ts.map +0 -1
- package/dist/es6/header/lib/parts/SearchBar.d.ts.map +0 -1
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
import { CSSProperties } from '@workday/canvas-kit-react/tokens';
|
|
2
|
-
|
|
2
|
+
/**
|
|
3
|
+
* ### Deprecated Header Theme Attributes Interface
|
|
4
|
+
*
|
|
5
|
+
* As of Canvas Kit v6, this type interface is being soft-deprecated along with the rest of the labs/header package.
|
|
6
|
+
* It will be hard-deprecated (completely removed) in v7. Please see the
|
|
7
|
+
* [migration guide](https://workday.github.io/canvas-kit/?path=/story/welcome-migration-guides-v6-0--page)
|
|
8
|
+
* for more information.
|
|
9
|
+
*/
|
|
10
|
+
export interface DeprecatedHeaderThemeAttributes {
|
|
3
11
|
color: string;
|
|
4
12
|
background: string;
|
|
5
13
|
depth: CSSProperties;
|
|
@@ -12,23 +20,24 @@ export interface ThemeAttributes {
|
|
|
12
20
|
currentLinkColor: string;
|
|
13
21
|
chipColor: string;
|
|
14
22
|
}
|
|
15
|
-
|
|
16
|
-
|
|
23
|
+
/**
|
|
24
|
+
* ### Deprecated Header Themes Interface
|
|
25
|
+
*
|
|
26
|
+
* As of Canvas Kit v6, this type interface is being soft-deprecated along with the rest of the labs/header package.
|
|
27
|
+
* It will be hard-deprecated (completely removed) in v7. Please see the
|
|
28
|
+
* [migration guide](https://workday.github.io/canvas-kit/?path=/story/welcome-migration-guides-v6-0--page)
|
|
29
|
+
* for more information.
|
|
30
|
+
*/
|
|
31
|
+
export interface DeprecatedHeaderThemes {
|
|
32
|
+
[key: string]: DeprecatedHeaderThemeAttributes;
|
|
17
33
|
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
boxShadow?: string | string[];
|
|
28
|
-
boxShadowFocus?: string | string[];
|
|
29
|
-
}
|
|
30
|
-
export interface SearchThemes {
|
|
31
|
-
[key: string]: SearchThemeAttributes;
|
|
32
|
-
}
|
|
33
|
-
export declare const searchThemes: SearchThemes;
|
|
34
|
+
/**
|
|
35
|
+
* ### Deprecated Header Themes
|
|
36
|
+
*
|
|
37
|
+
* As of Canvas Kit v6, this theme object is being soft-deprecated along with the rest of the labs/header package.
|
|
38
|
+
* It will be hard-deprecated (completely removed) in v7. Please see the
|
|
39
|
+
* [migration guide](https://workday.github.io/canvas-kit/?path=/story/welcome-migration-guides-v6-0--page)
|
|
40
|
+
* for more information.
|
|
41
|
+
*/
|
|
42
|
+
export declare const deprecatedHeaderThemes: DeprecatedHeaderThemes;
|
|
34
43
|
//# sourceMappingURL=themes.d.ts.map
|
|
@@ -1,20 +1,15 @@
|
|
|
1
|
-
export declare enum
|
|
1
|
+
export declare enum DeprecatedHeaderTheme {
|
|
2
2
|
White = 0,
|
|
3
3
|
Blue = 1,
|
|
4
4
|
Transparent = 2
|
|
5
5
|
}
|
|
6
|
-
export declare enum
|
|
6
|
+
export declare enum DeprecatedHeaderVariant {
|
|
7
7
|
Dub = 0,
|
|
8
8
|
Full = 1,
|
|
9
9
|
Global = 2
|
|
10
10
|
}
|
|
11
|
-
export declare enum
|
|
11
|
+
export declare enum DeprecatedHeaderHeight {
|
|
12
12
|
Small = "64px",
|
|
13
13
|
Large = "80px"
|
|
14
14
|
}
|
|
15
|
-
export declare enum SearchTheme {
|
|
16
|
-
Light = 0,
|
|
17
|
-
Dark = 1,
|
|
18
|
-
Transparent = 2
|
|
19
|
-
}
|
|
20
15
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
export declare function getValidChildren(children: React.ReactNode): React.ReactElement<any, string | ((props: any) => React.ReactElement<any,
|
|
2
|
+
export declare function getValidChildren(children: React.ReactNode): React.ReactElement<any, string | ((props: any) => React.ReactElement<any, any> | null) | (new (props: any) => React.Component<any, any, any>)>[];
|
|
3
3
|
//# sourceMappingURL=getValidChildren.d.ts.map
|
|
@@ -1,24 +1,23 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { GrowthBehavior } from '@workday/canvas-kit-react/common';
|
|
3
3
|
import { MenuItemProps } from '@workday/canvas-kit-preview-react/menu';
|
|
4
|
-
import { SearchThemeAttributes } from '
|
|
5
|
-
|
|
6
|
-
export interface SearchBarProps extends GrowthBehavior, React.FormHTMLAttributes<HTMLFormElement> {
|
|
4
|
+
import { SearchThemeAttributes, SearchTheme } from './themes';
|
|
5
|
+
export interface SearchFormProps extends GrowthBehavior, React.FormHTMLAttributes<HTMLFormElement> {
|
|
7
6
|
/**
|
|
8
|
-
* The function called when the
|
|
7
|
+
* The function called when the SearchForm form is submitted. The current input value is passed to the callback function.
|
|
9
8
|
*/
|
|
10
9
|
onSubmit: React.FormEventHandler<HTMLFormElement>;
|
|
11
10
|
/**
|
|
12
|
-
* If true, collapse the
|
|
11
|
+
* If true, collapse the SearchForm text input into a toggle icon. Useful for responsive layouts.
|
|
13
12
|
* @default false
|
|
14
13
|
*/
|
|
15
14
|
isCollapsed?: boolean;
|
|
16
15
|
/**
|
|
17
|
-
* The function called when the
|
|
16
|
+
* The function called when the SearchForm text input changes.
|
|
18
17
|
*/
|
|
19
18
|
onInputChange?: React.ChangeEventHandler<HTMLInputElement>;
|
|
20
19
|
/**
|
|
21
|
-
* The autocomplete items of the
|
|
20
|
+
* The autocomplete items of the SearchForm. This array of menu items is shown under the search bar.
|
|
22
21
|
*/
|
|
23
22
|
autocompleteItems?: React.ReactElement<MenuItemProps>[];
|
|
24
23
|
/**
|
|
@@ -26,73 +25,73 @@ export interface SearchBarProps extends GrowthBehavior, React.FormHTMLAttributes
|
|
|
26
25
|
*/
|
|
27
26
|
searchTheme?: SearchTheme | SearchThemeAttributes;
|
|
28
27
|
/**
|
|
29
|
-
* The placeholder text of the
|
|
28
|
+
* The placeholder text of the SearchForm text input.
|
|
30
29
|
* @default Search
|
|
31
30
|
*/
|
|
32
31
|
placeholder?: string;
|
|
33
32
|
/**
|
|
34
|
-
* The initial value of the
|
|
33
|
+
* The initial value of the SearchForm text input.
|
|
35
34
|
*/
|
|
36
35
|
initialValue?: string;
|
|
37
36
|
/**
|
|
38
|
-
* If true, right-align the
|
|
37
|
+
* If true, right-align the SearchForm. If false, the text input should grow to left-align the SearchForm.
|
|
39
38
|
* @default false
|
|
40
39
|
*/
|
|
41
40
|
rightAlign?: boolean;
|
|
42
41
|
/**
|
|
43
|
-
* The screenreader label text for the
|
|
42
|
+
* The screenreader label text for the SearchForm text input.
|
|
44
43
|
* @default Search
|
|
45
44
|
*/
|
|
46
45
|
inputLabel?: string;
|
|
47
46
|
/**
|
|
48
|
-
* The screenreader label text for the
|
|
47
|
+
* The screenreader label text for the SearchForm submit button.
|
|
49
48
|
* @default Search
|
|
50
49
|
*/
|
|
51
50
|
submitAriaLabel?: string;
|
|
52
51
|
/**
|
|
53
|
-
* The screenreader label text for the
|
|
52
|
+
* The screenreader label text for the SearchForm clear button.
|
|
54
53
|
* @default Reset Search Form
|
|
55
54
|
*/
|
|
56
55
|
clearButtonAriaLabel?: string;
|
|
57
56
|
/**
|
|
58
|
-
* The screenreader label text for the button to open the collapsed
|
|
57
|
+
* The screenreader label text for the button to open the collapsed SearchForm.
|
|
59
58
|
* @default Open Search
|
|
60
59
|
*/
|
|
61
60
|
openButtonAriaLabel?: string;
|
|
62
61
|
/**
|
|
63
|
-
* The screenreader label text for the button to close the open
|
|
62
|
+
* The screenreader label text for the button to close the open SearchForm.
|
|
64
63
|
* @default Cancel
|
|
65
64
|
*/
|
|
66
65
|
closeButtonAriaLabel?: string;
|
|
67
66
|
/**
|
|
68
|
-
* If true, render the
|
|
67
|
+
* If true, render the SearchForm with a button to clear the text input.
|
|
69
68
|
* @default true
|
|
70
69
|
*/
|
|
71
70
|
showClearButton?: boolean;
|
|
72
71
|
/**
|
|
73
|
-
* Height of the Search
|
|
74
|
-
* @default
|
|
72
|
+
* Height of the Search Form in pixels
|
|
73
|
+
* @default 40
|
|
75
74
|
*/
|
|
76
75
|
height?: number;
|
|
77
76
|
}
|
|
78
|
-
export interface
|
|
77
|
+
export interface SearchFormState {
|
|
79
78
|
showForm: boolean;
|
|
80
79
|
searchQuery: string;
|
|
81
80
|
isFocused: boolean;
|
|
82
81
|
}
|
|
83
|
-
export declare class
|
|
82
|
+
export declare class SearchForm extends React.Component<SearchFormProps, SearchFormState> {
|
|
84
83
|
static Theme: typeof SearchTheme;
|
|
85
84
|
private inputRef;
|
|
86
85
|
private openRef;
|
|
87
86
|
private labelId;
|
|
88
|
-
state: Readonly<
|
|
87
|
+
state: Readonly<SearchFormState>;
|
|
89
88
|
private getTheme;
|
|
90
89
|
private getThemeColors;
|
|
91
90
|
getIconButtonType: () => "circle" | "square" | "inverse" | "squareFilled" | "plain" | "circleFilled" | "inverseFilled" | undefined;
|
|
92
91
|
handleSubmit: (event: React.FormEvent<HTMLFormElement>) => void;
|
|
93
92
|
openCollapsedSearch: () => void;
|
|
94
93
|
closeCollapsedSearch: () => void;
|
|
95
|
-
componentDidUpdate(prevProps:
|
|
94
|
+
componentDidUpdate(prevProps: SearchFormProps, prevState: SearchFormState): void;
|
|
96
95
|
focusInput: () => void;
|
|
97
96
|
focusOpen: () => void;
|
|
98
97
|
handleFocus: () => void;
|
|
@@ -100,4 +99,4 @@ export declare class SearchBar extends React.Component<SearchBarProps, SearchBar
|
|
|
100
99
|
handleSearchInputChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
101
100
|
render(): JSX.Element;
|
|
102
101
|
}
|
|
103
|
-
//# sourceMappingURL=
|
|
102
|
+
//# sourceMappingURL=SearchForm.d.ts.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare enum SearchTheme {
|
|
2
|
+
Light = 0,
|
|
3
|
+
Dark = 1,
|
|
4
|
+
Transparent = 2
|
|
5
|
+
}
|
|
6
|
+
export interface SearchThemeAttributes {
|
|
7
|
+
background?: string;
|
|
8
|
+
backgroundFocus?: string;
|
|
9
|
+
backgroundHover?: string;
|
|
10
|
+
color?: string;
|
|
11
|
+
colorFocus?: string;
|
|
12
|
+
placeholderColor?: string;
|
|
13
|
+
placeholderColorFocus?: string;
|
|
14
|
+
boxShadow?: string | string[];
|
|
15
|
+
boxShadowFocus?: string | string[];
|
|
16
|
+
}
|
|
17
|
+
export interface SearchThemes {
|
|
18
|
+
[key: string]: SearchThemeAttributes;
|
|
19
|
+
}
|
|
20
|
+
export declare const searchThemes: SearchThemes;
|
|
21
|
+
//# sourceMappingURL=themes.d.ts.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './lib/TextInput';
|
|
2
|
+
export * from './lib/hooks/useTextInputModel';
|
|
3
|
+
export * from './lib/hooks/useTextInputHint';
|
|
4
|
+
export * from './lib/hooks/useTextInputField';
|
|
5
|
+
export * from './lib/hooks/useTextInputHint';
|
|
6
|
+
export * from './lib/hooks/useTextInputLabel';
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { TextInputModel, TextInputModelConfig } from './hooks/useTextInputModel';
|
|
3
|
+
export declare const TextInputModelContext: React.Context<import("@workday/canvas-kit-react/common").Model<{
|
|
4
|
+
hasError?: boolean | undefined;
|
|
5
|
+
inputId?: string | undefined;
|
|
6
|
+
hintId?: string | undefined;
|
|
7
|
+
isRequired?: boolean | undefined;
|
|
8
|
+
}, {}>>;
|
|
9
|
+
export interface TextInputProps extends TextInputModelConfig {
|
|
10
|
+
model?: TextInputModel;
|
|
11
|
+
/**
|
|
12
|
+
* Children of the Text Input. Should contain a `<TextInput.Field>`, a `<TextInput.Label>` and an optional `<TextInput.Hint>`
|
|
13
|
+
*/
|
|
14
|
+
children: React.ReactNode;
|
|
15
|
+
}
|
|
16
|
+
export declare const TextInput: import("@workday/canvas-kit-react/common").Component<TextInputProps> & {
|
|
17
|
+
Field: import("@workday/canvas-kit-react/common").ElementComponent<"input", import("./TextInputField").TextInputFieldProps>;
|
|
18
|
+
Label: import("@workday/canvas-kit-react/common").ElementComponent<"label", import("./TextInputLabel").TextInputLabelProps>;
|
|
19
|
+
Hint: import("@workday/canvas-kit-react/common").ElementComponent<"p", import("./TextInputHint").TextInputHintProps>;
|
|
20
|
+
};
|
|
21
|
+
//# sourceMappingURL=TextInput.d.ts.map
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ExtractProps } from '@workday/canvas-kit-react/common';
|
|
2
|
+
import { Box } from '@workday/canvas-kit-labs-react/common';
|
|
3
|
+
import { TextInputModel } from './hooks/useTextInputModel';
|
|
4
|
+
export interface TextInputFieldProps extends ExtractProps<typeof Box, never> {
|
|
5
|
+
model?: TextInputModel;
|
|
6
|
+
}
|
|
7
|
+
export declare const TextInputField: import("@workday/canvas-kit-react/common").ElementComponent<"input", TextInputFieldProps>;
|
|
8
|
+
//# sourceMappingURL=TextInputField.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ExtractProps } from '@workday/canvas-kit-react/common';
|
|
3
|
+
import { Box } from '@workday/canvas-kit-labs-react/common';
|
|
4
|
+
import { TextInputModel } from './hooks/useTextInputModel';
|
|
5
|
+
export interface TextInputHintProps extends ExtractProps<typeof Box, never> {
|
|
6
|
+
model?: TextInputModel;
|
|
7
|
+
/**
|
|
8
|
+
* Hint text to show to the user regarding the Error/Alert
|
|
9
|
+
*/
|
|
10
|
+
children?: React.ReactNode;
|
|
11
|
+
}
|
|
12
|
+
export declare const TextInputHint: import("@workday/canvas-kit-react/common").ElementComponent<"p", TextInputHintProps>;
|
|
13
|
+
//# sourceMappingURL=TextInputHint.d.ts.map
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ExtractProps } from '@workday/canvas-kit-react/common';
|
|
3
|
+
import { Box } from '@workday/canvas-kit-labs-react/common';
|
|
4
|
+
import { TextInputModel } from './hooks/useTextInputModel';
|
|
5
|
+
export interface TextInputLabelProps extends ExtractProps<typeof Box, never> {
|
|
6
|
+
model?: TextInputModel;
|
|
7
|
+
/**
|
|
8
|
+
* If true, apply the `accessibleHide` styles to the Label.
|
|
9
|
+
*/
|
|
10
|
+
isVisuallyHidden?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* The text of the label.
|
|
13
|
+
*/
|
|
14
|
+
children: React.ReactNode;
|
|
15
|
+
}
|
|
16
|
+
export declare const TextInputLabel: import("@workday/canvas-kit-react/common").ElementComponent<"label", TextInputLabelProps>;
|
|
17
|
+
//# sourceMappingURL=TextInputLabel.d.ts.map
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/// <reference types="@emotion/core" />
|
|
2
|
+
/**
|
|
3
|
+
* Adds the necessary props to a `Field` component. Used by the TextInput.Field subcomponent.
|
|
4
|
+
*/
|
|
5
|
+
export declare const useTextInputField: <P extends {}, R>(model: import("@workday/canvas-kit-react/common").Model<{
|
|
6
|
+
hasError?: boolean | undefined;
|
|
7
|
+
inputId?: string | undefined;
|
|
8
|
+
hintId?: string | undefined;
|
|
9
|
+
isRequired?: boolean | undefined;
|
|
10
|
+
}, {}>, elemProps?: P | undefined, ref?: ((instance: R | null) => void) | import("react").RefObject<R> | null | undefined) => {
|
|
11
|
+
type: string;
|
|
12
|
+
required: boolean | undefined;
|
|
13
|
+
'aria-invalid': boolean | undefined;
|
|
14
|
+
'aria-describedby': string | undefined;
|
|
15
|
+
id: string | undefined;
|
|
16
|
+
} & P & (R extends HTMLOrSVGElement ? {
|
|
17
|
+
ref: import("react").Ref<R>;
|
|
18
|
+
} : {});
|
|
19
|
+
//# sourceMappingURL=useTextInputField.d.ts.map
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="@emotion/core" />
|
|
2
|
+
/**
|
|
3
|
+
* Adds the necessary props to a `Hint` component. Used by the TextInput.Hint subcomponent.
|
|
4
|
+
*/
|
|
5
|
+
export declare const useTextInputHint: <P extends {}, R>(model: import("@workday/canvas-kit-react/common").Model<{
|
|
6
|
+
hasError?: boolean | undefined;
|
|
7
|
+
inputId?: string | undefined;
|
|
8
|
+
hintId?: string | undefined;
|
|
9
|
+
isRequired?: boolean | undefined;
|
|
10
|
+
}, {}>, elemProps?: P | undefined, ref?: ((instance: R | null) => void) | import("react").RefObject<R> | null | undefined) => {
|
|
11
|
+
id: string | undefined;
|
|
12
|
+
} & P & (R extends HTMLOrSVGElement ? {
|
|
13
|
+
ref: import("react").Ref<R>;
|
|
14
|
+
} : {});
|
|
15
|
+
//# sourceMappingURL=useTextInputHint.d.ts.map
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="@emotion/core" />
|
|
2
|
+
/**
|
|
3
|
+
* Adds the necessary props to a `Label` component. Used by the TextInput.Label subcomponent.
|
|
4
|
+
*/
|
|
5
|
+
export declare const useTextInputLabel: <P extends {}, R>(model: import("@workday/canvas-kit-react/common").Model<{
|
|
6
|
+
hasError?: boolean | undefined;
|
|
7
|
+
inputId?: string | undefined;
|
|
8
|
+
hintId?: string | undefined;
|
|
9
|
+
isRequired?: boolean | undefined;
|
|
10
|
+
}, {}>, elemProps?: P | undefined, ref?: ((instance: R | null) => void) | import("react").RefObject<R> | null | undefined) => {
|
|
11
|
+
htmlFor: string | undefined;
|
|
12
|
+
} & P & (R extends HTMLOrSVGElement ? {
|
|
13
|
+
ref: import("react").Ref<R>;
|
|
14
|
+
} : {});
|
|
15
|
+
//# sourceMappingURL=useTextInputLabel.d.ts.map
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Model, ToModelConfig } from '@workday/canvas-kit-react/common';
|
|
2
|
+
declare type TextInputState = {
|
|
3
|
+
hasError?: boolean;
|
|
4
|
+
inputId?: string;
|
|
5
|
+
hintId?: string;
|
|
6
|
+
isRequired?: boolean;
|
|
7
|
+
};
|
|
8
|
+
declare type TextInputEvents = {};
|
|
9
|
+
export declare type TextInputModel = Model<TextInputState, TextInputEvents>;
|
|
10
|
+
declare const textInputEventMap: {
|
|
11
|
+
guards: {};
|
|
12
|
+
callbacks: {};
|
|
13
|
+
};
|
|
14
|
+
export declare type TextInputModelConfig = TextInputState & Partial<ToModelConfig<TextInputState, TextInputEvents, typeof textInputEventMap>>;
|
|
15
|
+
export declare const useTextInputModel: (config?: TextInputModelConfig) => Model<TextInputState, TextInputEvents>;
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=useTextInputModel.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SearchBar.d.ts","sourceRoot":"","sources":["../../../../../header/lib/parts/SearchBar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,EAAC,cAAc,EAAS,MAAM,kCAAkC,CAAC;AAMxE,OAAO,EAAC,aAAa,EAAC,MAAM,wCAAwC,CAAC;AACrE,OAAO,EAAC,qBAAqB,EAAe,MAAM,kBAAkB,CAAC;AACrE,OAAO,EAAC,WAAW,EAAC,MAAM,iBAAiB,CAAC;AAI5C,MAAM,WAAW,cAAe,SAAQ,cAAc,EAAE,KAAK,CAAC,kBAAkB,CAAC,eAAe,CAAC;IAC/F;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,gBAAgB,CAAC,eAAe,CAAC,CAAC;IAClD;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,kBAAkB,CAAC,gBAAgB,CAAC,CAAC;IAC3D;;OAEG;IACH,iBAAiB,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,aAAa,CAAC,EAAE,CAAC;IACxD;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,GAAG,qBAAqB,CAAC;IAClD;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;OAGG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;OAGG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B;;;OAGG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B;;;OAGG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,cAAc;IAC7B,QAAQ,EAAE,OAAO,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,OAAO,CAAC;CACpB;AAuMD,qBAAa,SAAU,SAAQ,KAAK,CAAC,SAAS,CAAC,cAAc,EAAE,cAAc,CAAC;IAC5E,MAAM,CAAC,KAAK,qBAAe;IAE3B,OAAO,CAAC,QAAQ,CAAuC;IACvD,OAAO,CAAC,OAAO,CAAwC;IACvD,OAAO,CAAC,OAAO,CAAU;IAEzB,KAAK,EAAE,QAAQ,CAAC,cAAc,CAAC,CAI7B;IAEF,OAAO,CAAC,QAAQ,CAUd;IAEF,OAAO,CAAC,cAAc,CAMpB;IAEF,iBAAiB,kHAOf;IAEF,YAAY,oDAOV;IAEF,mBAAmB,aAIjB;IAEF,oBAAoB,aAIlB;IAEF,kBAAkB,CAAC,SAAS,EAAE,cAAc,EAAE,SAAS,EAAE,cAAc;IAWvE,UAAU,aAIR;IAEF,SAAS,aAIP;IAEF,WAAW,aAET;IAEF,UAAU,aAER;IAEF,uBAAuB,uDAMrB;IAEF,MAAM;CAkGP"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SearchBar.d.ts","sourceRoot":"","sources":["../../../../../header/lib/parts/SearchBar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,EAAC,cAAc,EAAS,MAAM,kCAAkC,CAAC;AAMxE,OAAO,EAAC,aAAa,EAAC,MAAM,wCAAwC,CAAC;AACrE,OAAO,EAAC,qBAAqB,EAAe,MAAM,kBAAkB,CAAC;AACrE,OAAO,EAAC,WAAW,EAAC,MAAM,iBAAiB,CAAC;AAI5C,MAAM,WAAW,cAAe,SAAQ,cAAc,EAAE,KAAK,CAAC,kBAAkB,CAAC,eAAe,CAAC;IAC/F;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,gBAAgB,CAAC,eAAe,CAAC,CAAC;IAClD;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,kBAAkB,CAAC,gBAAgB,CAAC,CAAC;IAC3D;;OAEG;IACH,iBAAiB,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,aAAa,CAAC,EAAE,CAAC;IACxD;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,GAAG,qBAAqB,CAAC;IAClD;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;OAGG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;OAGG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B;;;OAGG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B;;;OAGG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,cAAc;IAC7B,QAAQ,EAAE,OAAO,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,OAAO,CAAC;CACpB;AAuMD,qBAAa,SAAU,SAAQ,KAAK,CAAC,SAAS,CAAC,cAAc,EAAE,cAAc,CAAC;IAC5E,MAAM,CAAC,KAAK,qBAAe;IAE3B,OAAO,CAAC,QAAQ,CAAuC;IACvD,OAAO,CAAC,OAAO,CAAwC;IACvD,OAAO,CAAC,OAAO,CAAU;IAEzB,KAAK,EAAE,QAAQ,CAAC,cAAc,CAAC,CAI7B;IAEF,OAAO,CAAC,QAAQ,CAUd;IAEF,OAAO,CAAC,cAAc,CAMpB;IAEF,iBAAiB,kHAOf;IAEF,YAAY,oDAOV;IAEF,mBAAmB,aAIjB;IAEF,oBAAoB,aAIlB;IAEF,kBAAkB,CAAC,SAAS,EAAE,cAAc,EAAE,SAAS,EAAE,cAAc;IAWvE,UAAU,aAIR;IAEF,SAAS,aAIP;IAEF,WAAW,aAET;IAEF,UAAU,aAER;IAEF,uBAAuB,uDAMrB;IAEF,MAAM;CAkGP"}
|