@ably/ui 14.5.0-dev.c1c587f → 14.5.1-dev.6d0f90c
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/core/Code.js +1 -1
- package/core/Icon.js +1 -1
- package/core/ProductTile.js +1 -1
- package/core/icons/icon-display-custom.svg +7 -0
- package/core/icons/icon-display-integrations.svg +8 -0
- package/core/sprites.svg +1 -1
- package/index.d.ts +9 -5
- package/package.json +2 -2
- package/core/.DS_Store +0 -0
- package/core/Accordion/.DS_Store +0 -0
- package/core/Code/.DS_Store +0 -0
- package/core/ContactFooter/.DS_Store +0 -0
- package/core/CookieMessage/.DS_Store +0 -0
- package/core/CustomerLogos/.DS_Store +0 -0
- package/core/DropdownMenu/.DS_Store +0 -0
- package/core/FeaturedLink/.DS_Store +0 -0
- package/core/Flash/.DS_Store +0 -0
- package/core/Footer/.DS_Store +0 -0
- package/core/Icon/.DS_Store +0 -0
- package/core/Loader/.DS_Store +0 -0
- package/core/Logo/.DS_Store +0 -0
- package/core/Meganav/.DS_Store +0 -0
- package/core/MeganavBlogPostsList/.DS_Store +0 -0
- package/core/MeganavControl/.DS_Store +0 -0
- package/core/MeganavControlMobileDropdown/.DS_Store +0 -0
- package/core/MeganavControlMobilePanelClose/.DS_Store +0 -0
- package/core/MeganavControlMobilePanelOpen/.DS_Store +0 -0
- package/core/MeganavSearchAutocomplete/.DS_Store +0 -0
- package/core/MeganavSearchSuggestions/.DS_Store +0 -0
- package/core/Notice/.DS_Store +0 -0
- package/core/Slider/.DS_Store +0 -0
- package/core/Table/.DS_Store +0 -0
- package/core/Tooltip/.DS_Store +0 -0
- package/core/icons/.DS_Store +0 -0
package/index.d.ts
CHANGED
|
@@ -27,8 +27,10 @@ type CodeProps = {
|
|
|
27
27
|
textSize?: string;
|
|
28
28
|
padding?: string;
|
|
29
29
|
additionalCSS?: string;
|
|
30
|
+
showLines?: boolean;
|
|
31
|
+
lineCSS?: string;
|
|
30
32
|
};
|
|
31
|
-
const Code: ({ language, snippet, textSize, padding, additionalCSS, }: CodeProps) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
const Code: ({ language, snippet, textSize, padding, additionalCSS, showLines, lineCSS, }: CodeProps) => import("react/jsx-runtime").JSX.Element;
|
|
32
34
|
export default Code;
|
|
33
35
|
//# sourceMappingURL=Code.d.ts.map
|
|
34
36
|
}
|
|
@@ -613,8 +615,10 @@ type ProductTileProps = {
|
|
|
613
615
|
name: ProductName;
|
|
614
616
|
selected?: boolean;
|
|
615
617
|
currentPage?: boolean;
|
|
618
|
+
className?: string;
|
|
619
|
+
onClick?: () => void;
|
|
616
620
|
};
|
|
617
|
-
const ProductTile: ({ name, selected, currentPage }: ProductTileProps) => import("react/jsx-runtime").JSX.Element;
|
|
621
|
+
const ProductTile: ({ name, selected, currentPage, className, onClick, }: ProductTileProps) => import("react/jsx-runtime").JSX.Element;
|
|
618
622
|
export default ProductTile;
|
|
619
623
|
//# sourceMappingURL=ProductTile.d.ts.map
|
|
620
624
|
}
|
|
@@ -715,9 +719,9 @@ const _default: {
|
|
|
715
719
|
Cell: ({ children, isRowHeader, ...rest }: import("react").PropsWithChildren<{
|
|
716
720
|
isRowHeader?: boolean;
|
|
717
721
|
} & import("react").TdHTMLAttributes<HTMLTableCellElement>>) => import("react/jsx-runtime").JSX.Element;
|
|
718
|
-
LabelCell: ({ children, ...rest }: import("react").PropsWithChildren<
|
|
719
|
-
HeaderCell: ({ children, ...rest }: import("react").PropsWithChildren<
|
|
720
|
-
CtaCell: ({ children, ...rest }: import("react").PropsWithChildren<
|
|
722
|
+
LabelCell: ({ children, ...rest }: import("react").PropsWithChildren<React.TdHTMLAttributes<HTMLTableCellElement>>) => import("react/jsx-runtime").JSX.Element;
|
|
723
|
+
HeaderCell: ({ children, ...rest }: import("react").PropsWithChildren<React.TdHTMLAttributes<HTMLTableCellElement>>) => import("react/jsx-runtime").JSX.Element;
|
|
724
|
+
CtaCell: ({ children, ...rest }: import("react").PropsWithChildren<React.TdHTMLAttributes<HTMLTableCellElement>>) => import("react/jsx-runtime").JSX.Element;
|
|
721
725
|
RowHeader: ({ children, ...rest }: import("react").PropsWithChildren<import("react").TableHTMLAttributes<HTMLTableRowElement>>) => import("react/jsx-runtime").JSX.Element;
|
|
722
726
|
Body: ({ children, ...rest }: import("react").PropsWithChildren<import("react").TableHTMLAttributes<HTMLTableSectionElement>>) => import("react/jsx-runtime").JSX.Element;
|
|
723
727
|
Header: ({ children, ...rest }: import("react").PropsWithChildren<import("react").TableHTMLAttributes<HTMLTableSectionElement>>) => import("react/jsx-runtime").JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ably/ui",
|
|
3
|
-
"version": "14.5.
|
|
3
|
+
"version": "14.5.1-dev.6d0f90c",
|
|
4
4
|
"description": "Home of the Ably design system library ([design.ably.com](https://design.ably.com)). It provides a showcase, development/test environment and a publishing pipeline for different distributables.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"storybook": "^8.2.9",
|
|
46
46
|
"svg-sprite": "^2.0.4",
|
|
47
47
|
"tailwindcss": "^3.3.6",
|
|
48
|
-
"typescript": "5.
|
|
48
|
+
"typescript": "5.6.2",
|
|
49
49
|
"vite": "^5.2.12"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
package/core/.DS_Store
DELETED
|
Binary file
|
package/core/Accordion/.DS_Store
DELETED
|
Binary file
|
package/core/Code/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/core/Flash/.DS_Store
DELETED
|
Binary file
|
package/core/Footer/.DS_Store
DELETED
|
Binary file
|
package/core/Icon/.DS_Store
DELETED
|
Binary file
|
package/core/Loader/.DS_Store
DELETED
|
Binary file
|
package/core/Logo/.DS_Store
DELETED
|
Binary file
|
package/core/Meganav/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/core/Notice/.DS_Store
DELETED
|
Binary file
|
package/core/Slider/.DS_Store
DELETED
|
Binary file
|
package/core/Table/.DS_Store
DELETED
|
Binary file
|
package/core/Tooltip/.DS_Store
DELETED
|
Binary file
|
package/core/icons/.DS_Store
DELETED
|
Binary file
|