@pantheon-systems/pds-toolkit-react 1.0.0-dev.262 → 1.0.0-dev.264
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/Picture/Picture.d.ts +37 -0
- package/_dist/components/empty-states/HorizontalEmptyState/HorizontalEmptyState.d.ts +2 -4
- package/_dist/css/component-css/pds-index.css +2 -2
- package/_dist/css/component-css/pds-modal.css +1 -1
- package/_dist/css/component-css/pds-picture.css +1 -0
- package/_dist/css/pds-components.css +2 -2
- package/_dist/index.css +1 -1
- package/_dist/index.d.ts +1 -0
- package/_dist/index.js +1133 -1098
- package/_dist/index.js.map +1 -1
- package/_dist/libs/components/utils.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export function createRandomID(): string;
|
|
2
2
|
export function getDescendants(node: any, collect: any): any;
|
|
3
|
-
export function initiateSlots(children: any): {
|
|
3
|
+
export function initiateSlots(children: any): {
|
|
4
|
+
__unslotted: any[];
|
|
5
|
+
};
|
|
4
6
|
export function mergeClasses(styles: any): any;
|
|
5
7
|
export function isValidImageSrc(uri: any): boolean;
|