@pantheon-systems/pds-toolkit-react 2.0.0-alpha.88 → 2.0.0-alpha.89
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/badges/Badge/Badge.d.ts +1 -1
- package/dist/components/icons/Icon/generated-icon-data.d.ts +9 -2
- package/dist/css/component-css/pds-badge.css +1 -1
- package/dist/css/component-css/pds-index.css +2 -2
- package/dist/css/component-css/pds-input-group.css +1 -1
- package/dist/css/pds-components.css +2 -2
- package/dist/css/pds-core.css +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/svg/files.svg +3 -0
- package/dist/utilities/ai-visuals/AiVisualsDemo.d.ts +8 -0
- package/package.json +1 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="currentColor" aria-hidden="true" focusable="false" role="img">
|
|
2
|
+
<path d="M256 48l0 72c0 39.8 32.2 72 72 72l72 0 0 192c0 8.8-7.2 16-16 16l-224 0c-8.8 0-16-7.2-16-16l0-320c0-8.8 7.2-16 16-16l96 0zm48 3.9l92.1 92.1-68.1 0c-13.3 0-24-10.7-24-24l0-68.1zM160 0C124.7 0 96 28.7 96 64l0 320c0 35.3 28.7 64 64 64l224 0c35.3 0 64-28.7 64-64l0-236.1c0-12.7-5.1-24.9-14.1-33.9L334.1 14.1c-9-9-21.2-14.1-33.9-14.1L160 0zM24 96C10.7 96 0 106.7 0 120L0 480c0 35.3 28.7 64 64 64l264 0c13.3 0 24-10.7 24-24s-10.7-24-24-24L64 496c-8.8 0-16-7.2-16-16l0-360c0-13.3-10.7-24-24-24z"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import './ai-visuals-demo.css';
|
|
2
|
+
/**
|
|
3
|
+
* Local to this Storybook doc only -- not part of the shipped library.
|
|
4
|
+
* Lets reviewers toggle each AI Visuals class independently, over a real
|
|
5
|
+
* photo (the shimmer sweep is much easier to see over a photo than over
|
|
6
|
+
* plain text), and simulate `prefers-reduced-motion: reduce`.
|
|
7
|
+
*/
|
|
8
|
+
export declare const AiVisualsDemo: () => import("react/jsx-runtime").JSX.Element;
|
package/package.json
CHANGED