@pantheon-systems/pds-toolkit-react 1.0.0-dev.147 → 1.0.0-dev.149
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/_dist/components/CTALink/CTALink.d.ts +1 -1
- package/_dist/components/Callout/Callout.d.ts +2 -3
- package/_dist/components/ComparisonList/ComparisonList.d.ts +2 -2
- package/_dist/components/Modal/Modal.d.ts +37 -22
- package/_dist/components/Panel/Panel.d.ts +29 -14
- package/_dist/components/Popover/Popover.d.ts +51 -27
- package/_dist/components/Skiplink/Skiplink.d.ts +20 -14
- package/_dist/components/Tag/Tag.d.ts +37 -21
- package/_dist/components/badges/IndicatorBadge/IndicatorBadge.d.ts +2 -3
- package/_dist/components/badges/StatusBadge/StatusBadge.d.ts +2 -3
- package/_dist/components/badges/Tally/Tally.d.ts +3 -3
- package/_dist/components/buttons/SegmentedButton/SegmentedButton.d.ts +1 -2
- package/_dist/components/inputs/TextInput/TextInput.d.ts +123 -0
- package/_dist/components/inputs/input-utilities.d.ts +44 -0
- package/_dist/components/notifications/InlineMessage/InlineMessage.d.ts +1 -1
- package/_dist/components/notifications/SectionMessage/SectionMessage.d.ts +2 -2
- package/_dist/components/progress-indicators/Spinner/Spinner.d.ts +28 -16
- package/_dist/css/component-css/pds-button.css +1 -1
- package/_dist/css/component-css/pds-dashboard-nav.css +2 -2
- package/_dist/css/component-css/pds-index.css +5 -5
- package/_dist/css/component-css/pds-input-group.css +1 -1
- package/_dist/css/component-css/pds-input-utilities.css +1 -0
- package/_dist/css/component-css/pds-panel.css +1 -1
- package/_dist/css/component-css/pds-skiplink.css +1 -1
- package/_dist/css/component-css/pds-text-input.css +1 -0
- package/_dist/css/component-css/pds-workspace-selector.css +1 -1
- package/_dist/css/pds-components.css +5 -5
- package/_dist/css/pds-layouts.css +1 -1
- package/_dist/index.css +1 -1
- package/_dist/index.d.ts +14 -13
- package/_dist/index.js +3385 -3301
- package/_dist/index.js.map +1 -1
- package/_dist/layouts/DashboardLayout/DashboardLayout.d.ts +2 -3
- package/package.json +2 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { ComponentPropsWithoutRef } from 'react';
|
|
2
2
|
export declare const DashboardContext: React.Context<any>;
|
|
3
3
|
import './dashboard-layout.css';
|
|
4
4
|
/**
|
|
5
5
|
* Prop types for DashboardLayout
|
|
6
6
|
*/
|
|
7
|
-
interface DashboardLayoutProps {
|
|
7
|
+
export interface DashboardLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
8
8
|
/**
|
|
9
9
|
* Child components
|
|
10
10
|
*/
|
|
@@ -42,4 +42,3 @@ interface DashboardLayoutProps {
|
|
|
42
42
|
* DashboardLayout UI component
|
|
43
43
|
*/
|
|
44
44
|
export declare const DashboardLayout: ({ children, hasSidebarToggle, initialSidebarExpanded, sidebarCollapsedWidth, sidebarExpandedWidth, sidebarToggleLabel, skiplinkText, className, ...props }: DashboardLayoutProps) => React.JSX.Element;
|
|
45
|
-
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pantheon-systems/pds-toolkit-react",
|
|
3
3
|
"technology": "React",
|
|
4
|
-
"version": "1.0.0-dev.
|
|
4
|
+
"version": "1.0.0-dev.149",
|
|
5
5
|
"description": "PDS toolkit built using the React framework",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -139,6 +139,7 @@
|
|
|
139
139
|
"@reactuses/core": "^5.0.15",
|
|
140
140
|
"focus-trap-react": "^10.2.1",
|
|
141
141
|
"hash-sum": "^2.0.0",
|
|
142
|
+
"react-hotkeys-hook": "^4.5.1",
|
|
142
143
|
"react-router-dom": "^6.13.0",
|
|
143
144
|
"react-toastify": "^9.0.3"
|
|
144
145
|
},
|