@procore/core-react 10.20.0-rc.71 → 10.20.0-rc.76

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.
Files changed (38) hide show
  1. package/dist/esm/components/Avatar/Avatar.types.d.ts +2 -2
  2. package/dist/esm/components/Banner/Banner.types.d.ts +1 -1
  3. package/dist/esm/components/TextEditor/TextEditor.d.ts +1 -1
  4. package/dist/esm/components/TextEditor/TextEditor.js +1 -1
  5. package/dist/esm/layouts/LegacyDetailPage/LegacyDetailPage.d.ts +42 -0
  6. package/dist/esm/layouts/LegacyDetailPage/LegacyDetailPage.js +45 -0
  7. package/dist/esm/layouts/LegacyDetailPage/LegacyDetailPage.js.map +1 -1
  8. package/dist/props/Avatar.json +1 -1
  9. package/dist/props/Banner.json +1 -1
  10. package/dist/props/Card.json +1 -1
  11. package/dist/props/Dropdown.json +1 -1
  12. package/dist/props/Form.json +1 -1
  13. package/dist/props/GridSource.json +1 -1
  14. package/dist/props/Input.json +1 -1
  15. package/dist/props/ListPage.json +1 -1
  16. package/dist/props/Menu.json +1 -1
  17. package/dist/props/Pagination.json +1 -1
  18. package/dist/props/Search.json +1 -1
  19. package/dist/props/SegmentedController.json +1 -1
  20. package/dist/props/Spinner.json +1 -1
  21. package/dist/props/Table.json +1 -1
  22. package/dist/props/Tabs.json +1 -1
  23. package/dist/props/TextArea.json +1 -1
  24. package/dist/props/TextEditor.json +1 -1
  25. package/dist/props/Token.json +1 -1
  26. package/dist/props/ToolHeader.json +1 -1
  27. package/dist/props/TreeSource.json +1 -1
  28. package/dist/props/allProps.json +3 -3
  29. package/package.json +6 -6
  30. package/storybook-static/iframe.html +1 -1
  31. package/storybook-static/{main.e7adb15f.iframe.bundle.js → main.fa8b94bc.iframe.bundle.js} +0 -0
  32. package/typedoc.js +10 -0
  33. package/dist/esm/components/Header.d.ts +0 -20
  34. package/dist/esm/components/Header.js +0 -56
  35. package/dist/esm/components/Header.js.map +0 -1
  36. package/dist/esm/layouts/WXPDetailPage.d.ts +0 -47
  37. package/dist/esm/layouts/WXPDetailPage.js +0 -217
  38. package/dist/esm/layouts/WXPDetailPage.js.map +0 -1
@@ -14,14 +14,14 @@ export interface AvatarProps extends Props {
14
14
  /**
15
15
  * Sets the avatar's size
16
16
  * @defaultValue md
17
- * @deprecated "xl" will be removed in a future version.
17
+ * @deprecated Partially deprecated: "xl" will be removed in a future version. Please use "lg" instead of "xl".
18
18
  */
19
19
  size?: AvatarSize;
20
20
  }
21
21
  export interface AvatarIconProps extends Props {
22
22
  /**
23
23
  * The icon to display
24
- * @deprecated String icon variant is deprecated, use the React components directly from the `@procore/core-icons/dist` package
24
+ * @deprecated Partially deprecated: string icon variant will be removed in the future. Please use the React components directly from the `@procore/core-icons/dist` package.
25
25
  */
26
26
  icon: string | React.ReactNode;
27
27
  }
@@ -12,7 +12,7 @@ export interface BannerProps extends Props {
12
12
  }
13
13
  export interface BannerIconProps extends Props {
14
14
  /**
15
- * @deprecated String variation is deprecated. Please pass an SVG icon instance.
15
+ * @deprecated String type is deprecated. Please pass an SVG icon instance.
16
16
  */
17
17
  icon: BannerIconVariant | React.ReactNode;
18
18
  }
@@ -8,7 +8,7 @@ interface ProviderProps {
8
8
  children?: React.ReactNode;
9
9
  }
10
10
  /**
11
- * @deprecated
11
+ * @deprecated The provider is no longer needed, `<TextEditor />` can be used on its own.
12
12
  */
13
13
  export declare function TextEditorProvider({ children }: ProviderProps): JSX.Element;
14
14
  export default TextEditor;
@@ -56,7 +56,7 @@ export function TextEditor(_a) {
56
56
  return (React.createElement(Editor, __assign({ init: __assign(__assign(__assign({}, tinyMCEConfig), { external_plugins: generateExternalPlugins(plugins), language_url: generateLanguageUrl(locale || contextLocale), language: locale || contextLocale }), initOverrides), tinymceScriptSrc: "".concat(tinyMCESource, "/").concat(tinyMCEVersion, "/tinymce.min.js"), onInit: onInit, onEditorChange: onEditorChange }, props, { value: (_c = props.value) !== null && _c !== void 0 ? _c : props.initialValue, initialValue: derivedInitial })));
57
57
  }
58
58
  /**
59
- * @deprecated
59
+ * @deprecated The provider is no longer needed, `<TextEditor />` can be used on its own.
60
60
  */
61
61
  export function TextEditorProvider(_a) {
62
62
  var children = _a.children;
@@ -22,29 +22,71 @@ export declare const Subtabs: React.ForwardRefExoticComponent<DivAttributes & Pr
22
22
  export declare const Sidebar: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
23
23
  export declare const SidebarContent: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
24
24
  export declare const SidebarFooter: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
25
+ /**
26
+ * @deprecated Please migrate to `import { NextDetailPage as DetailPage } from '@procore/core-react'`
27
+ */
25
28
  export declare const DetailPage: React.ForwardRefExoticComponent<DivAttributes & DetailPageProps & React.RefAttributes<HTMLDivElement>> & {
29
+ /**
30
+ * @deprecated
31
+ */
26
32
  Actions: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
33
+ /**
34
+ * @deprecated
35
+ */
27
36
  Banner: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
37
+ /**
38
+ * @deprecated
39
+ */
28
40
  Body: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
41
+ /**
42
+ * @deprecated
43
+ */
29
44
  Breadcrumbs: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
45
+ /**
46
+ * @deprecated
47
+ */
30
48
  Header: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
49
+ /**
50
+ * @deprecated
51
+ */
31
52
  Consumer: React.Consumer<{
32
53
  isVisible: boolean;
33
54
  show: () => void;
34
55
  hide: () => void;
35
56
  toggle: () => void;
36
57
  }>;
58
+ /**
59
+ * @deprecated
60
+ */
37
61
  Main: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
62
+ /**
63
+ * @deprecated
64
+ */
38
65
  Provider: React.Provider<{
39
66
  isVisible: boolean;
40
67
  show: () => void;
41
68
  hide: () => void;
42
69
  toggle: () => void;
43
70
  }>;
71
+ /**
72
+ * @deprecated
73
+ */
44
74
  Sidebar: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
75
+ /**
76
+ * @deprecated
77
+ */
45
78
  SidebarContent: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
79
+ /**
80
+ * @deprecated
81
+ */
46
82
  SidebarFooter: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
83
+ /**
84
+ * @deprecated
85
+ */
47
86
  Subtabs: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
87
+ /**
88
+ * @deprecated
89
+ */
48
90
  Title: React.ForwardRefExoticComponent<DivAttributes & Props & React.RefAttributes<HTMLDivElement>>;
49
91
  };
50
92
  export default DetailPage;
@@ -100,20 +100,65 @@ SidebarContent.displayName = 'LegacyDetailPage.SidebarContent';
100
100
  SidebarFooter.displayName = 'LegacyDetailPage.SidebarFooter';
101
101
  Subtabs.displayName = 'LegacyDetailPage.Subtabs';
102
102
  Title.displayName = 'LegacyDetailPage.Title';
103
+ /**
104
+ * @deprecated Please migrate to `import { NextDetailPage as DetailPage } from '@procore/core-react'`
105
+ */
103
106
  export var DetailPage = addSubcomponents({
107
+ /**
108
+ * @deprecated
109
+ */
104
110
  Actions: Actions,
111
+ /**
112
+ * @deprecated
113
+ */
105
114
  Banner: Banner,
115
+ /**
116
+ * @deprecated
117
+ */
106
118
  Body: Body,
119
+ /**
120
+ * @deprecated
121
+ */
107
122
  Breadcrumbs: Breadcrumbs,
123
+ /**
124
+ * @deprecated
125
+ */
108
126
  Header: Header,
127
+ /**
128
+ * @deprecated
129
+ */
109
130
  Consumer: Consumer,
131
+ /**
132
+ * @deprecated
133
+ */
110
134
  Main: Main,
135
+ /**
136
+ * @deprecated
137
+ */
111
138
  Provider: Provider,
139
+ /**
140
+ * @deprecated
141
+ */
112
142
  Sidebar: Sidebar,
143
+ /**
144
+ * @deprecated
145
+ */
113
146
  SidebarContent: SidebarContent,
147
+ /**
148
+ * @deprecated
149
+ */
114
150
  SidebarFooter: SidebarFooter,
151
+ /**
152
+ * @deprecated
153
+ */
115
154
  Subtabs: Subtabs,
155
+ /**
156
+ * @deprecated
157
+ */
116
158
  Title: Title,
159
+ /**
160
+ * @deprecated
161
+ */
117
162
  }, DetailPage_);
118
163
  export default DetailPage;
119
164
  //# sourceMappingURL=LegacyDetailPage.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"LegacyDetailPage.js","sourceRoot":"","sources":["../../../../src/layouts/LegacyDetailPage/LegacyDetailPage.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"LegacyDetailPage.js","sourceRoot":"","sources":["../../../../src/layouts/LegacyDetailPage/LegacyDetailPage.tsx"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"AvatarIconProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"icon","type":"ReactNode","required":true,"description":"The icon to display"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"}],"AvatarLabelProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"}],"AvatarPortraitProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"imageUrl","type":"string","required":true,"description":"The avatar rich media url"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"}],"AvatarProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"clickable","type":"boolean","required":false,"description":"Sets the avatar's clickable state","defaultValue":"false\n"},{"name":"disabled","type":"boolean","required":false,"description":"Sets the avatar's disabled state","defaultValue":"false\n"},{"name":"size","type":"Extract","required":false,"description":"Sets the avatar's size","defaultValue":"md"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"}]}
1
+ {"AvatarIconProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"icon","type":"ReactNode","required":true,"description":"The icon to display","deprecated":"Partially deprecated: string icon variant will be removed in the future. Please use the React components directly from the `@procore/core-icons/dist` package.\n"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"}],"AvatarLabelProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"}],"AvatarPortraitProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"imageUrl","type":"string","required":true,"description":"The avatar rich media url"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"}],"AvatarProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"clickable","type":"boolean","required":false,"description":"Sets the avatar's clickable state","defaultValue":"false\n"},{"name":"disabled","type":"boolean","required":false,"description":"Sets the avatar's disabled state","defaultValue":"false\n"},{"name":"size","type":"Extract","required":false,"description":"Sets the avatar's size","defaultValue":"md","deprecated":"Partially deprecated: \"xl\" will be removed in a future version. Please use \"lg\" instead of \"xl\".\n"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"}]}
@@ -1 +1 @@
1
- {"BannerIconProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"icon","required":true},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"}],"BannerProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"},{"name":"variant","required":true,"description":"Sets the banner's variant."}],"ExpandableProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"expanded","type":"boolean","required":true,"description":"Expands banner content"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"}]}
1
+ {"BannerIconProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"icon","required":true,"deprecated":"String type is deprecated. Please pass an SVG icon instance.\n"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"}],"BannerProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"},{"name":"variant","required":true,"description":"Sets the banner's variant."}],"ExpandableProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"expanded","type":"boolean","required":true,"description":"Expands banner content"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"}]}
@@ -1 +1 @@
1
- {"CardProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"level","required":false,"description":"The card level for determining the shadow"},{"name":"shadowStrength","required":false,"description":"Determines shadow strength","defaultValue":"1\n"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"},{"name":"variant","required":false,"description":"The card variant"}]}
1
+ {"CardProps":[{"name":"children","type":"ReactNode","required":false,"description":"Instead of using the default children, you can pass in your own."},{"name":"className","type":"string","required":false,"description":"Additional classNames"},{"name":"level","required":false,"description":"The card level for determining the shadow","deprecated":"\"level\" prop will be removed in a future version. Use \"shadowStrength\" prop instead for determining the shadow.\n"},{"name":"shadowStrength","required":false,"description":"Determines shadow strength","defaultValue":"1\n"},{"name":"style","type":"CSSProperties","required":false,"description":"Additional CSS styles"},{"name":"variant","required":false,"description":"The card variant"}]}
@@ -1 +1 @@
1
- {"ConsumerProps":[{"name":"children","type":"Element","required":true}],"DropdownButtonProps":[{"name":"arrow","type":"boolean","required":false,"description":"Shows the arrow when activated"},{"name":"block","type":"boolean","required":false,"description":"Sets the button to be 100% of the width of its parent"},{"name":"icon","type":"ReactNode","required":false,"description":"string icons have been deprecated, please pass a component from `@procore/core-icons`\nThe icon to display on the left side of the label"},{"name":"iconRight","type":"ReactNode","required":false,"description":"The icon to display on the right side of the label"},{"name":"loading","type":"boolean","required":false,"description":"Shows the button spinner"},{"name":"open","type":"boolean","required":false,"description":"Changes the direction of the arrow if shown"},{"name":"size","type":"","required":false,"description":"The size of the button"},{"name":"variant","type":"","required":false,"description":"All variants except for primary, secondary, tertiary are DEPRECATED.\nAll will still be accepted, but deprecated ones will look like secondary"}],"DropdownMenuProps":[{"name":"footer","type":"ReactNode","required":false},{"name":"i18nScope","type":"string","required":false},{"name":"menuRef","type":"RefObject","required":true},{"name":"onSearch","type":"void","required":true},{"name":"onSelect","type":"void","required":true}],"DropdownProps":[{"name":"afterHide","required":false},{"name":"afterShow","required":false},{"name":"beforeHide","type":"BeforeCallback","required":false},{"name":"beforeShow","type":"BeforeCallback","required":false},{"name":"block","type":"boolean","required":false},{"name":"className","type":"string","required":false},{"name":"disabled","type":"boolean","required":false},{"name":"error","type":"boolean","required":false},{"name":"footer","type":"ReactNode","required":false,"description":"Content to render in a footer."},{"name":"i18nScope","type":"string","required":false,"description":"The i18n key to use for the dropdowns's configurable strings.\nDefaults to using the core library's default strings."},{"name":"icon","type":"ReactNode","required":false},{"name":"label","type":"string","required":false,"description":"The button text."},{"name":"loading","type":"boolean","required":false},{"name":"placement","type":"Extract","required":false,"description":"The placement of the overlay."},{"name":"size","type":"","required":false,"description":"The button size"},{"name":"trigger","required":false},{"name":"type","required":false},{"name":"variant","type":"","required":false},{"name":"onSearch","type":"void","required":true,"description":"Adds a search bar to the dropdown."},{"name":"onSelect","type":"void","required":true,"description":"<div>\n <div>Callback for selecting an item from the menu\n <CodeBlock>\n { '({ event: ReactEvent, item: Menu.Item.props.item, group: bool }) => void' }\n </CodeBlock>\n </div>\n <div>\n <Code>item</Code> will be the <Code>item</Code> prop supplied to the{' '}\n <Code>Item</Code> component\n </div>\n</div>"}]}
1
+ {"ConsumerProps":[{"name":"children","type":"Element","required":true}],"DropdownButtonProps":[{"name":"arrow","type":"boolean","required":false,"description":"Shows the arrow when activated"},{"name":"block","type":"boolean","required":false,"description":"Sets the button to be 100% of the width of its parent"},{"name":"icon","type":"ReactNode","required":false,"description":"string icons have been deprecated, please pass a component from `@procore/core-icons`\nThe icon to display on the left side of the label"},{"name":"iconRight","type":"ReactNode","required":false,"description":"The icon to display on the right side of the label"},{"name":"loading","type":"boolean","required":false,"description":"Shows the button spinner"},{"name":"open","type":"boolean","required":false,"description":"Changes the direction of the arrow if shown"},{"name":"size","type":"","required":false,"description":"The size of the button"},{"name":"variant","type":"","required":false,"description":"All variants except for primary, secondary, tertiary are DEPRECATED.\nAll will still be accepted, but deprecated ones will look like secondary"}],"DropdownMenuProps":[{"name":"footer","type":"ReactNode","required":false},{"name":"i18nScope","type":"string","required":false},{"name":"menuRef","type":"RefObject","required":true},{"name":"onSearch","type":"void","required":true},{"name":"onSelect","type":"void","required":true}],"DropdownProps":[{"name":"afterHide","required":false},{"name":"afterShow","required":false},{"name":"beforeHide","type":"BeforeCallback","required":false},{"name":"beforeShow","type":"BeforeCallback","required":false},{"name":"block","type":"boolean","required":false},{"name":"className","type":"string","required":false},{"name":"disabled","type":"boolean","required":false},{"name":"error","type":"boolean","required":false},{"name":"footer","type":"ReactNode","required":false,"description":"Content to render in a footer."},{"name":"i18nScope","type":"string","required":false,"description":"The i18n key to use for the dropdowns's configurable strings.\nDefaults to using the core library's default strings."},{"name":"icon","type":"ReactNode","required":false,"remarks":"string icons have been deprecated, please pass a component from `@procore/core-icons`\n"},{"name":"label","type":"string","required":false,"description":"The button text."},{"name":"loading","type":"boolean","required":false},{"name":"placement","type":"Extract","required":false,"description":"The placement of the overlay."},{"name":"size","type":"","required":false,"description":"The button size"},{"name":"trigger","required":false},{"name":"type","required":false},{"name":"variant","type":"","required":false},{"name":"onSearch","type":"void","required":true,"description":"Adds a search bar to the dropdown."},{"name":"onSelect","type":"void","required":true,"description":"<div>\n <div>Callback for selecting an item from the menu\n <CodeBlock>\n { '({ event: ReactEvent, item: Menu.Item.props.item, group: bool }) => void' }\n </CodeBlock>\n </div>\n <div>\n <Code>item</Code> will be the <Code>item</Code> prop supplied to the{' '}\n <Code>Item</Code> component\n </div>\n</div>"}]}