@lumx/react 2.2.1-alpha.0 → 2.2.1-alpha.1

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/package.json CHANGED
@@ -7,8 +7,8 @@
7
7
  },
8
8
  "dependencies": {
9
9
  "@juggle/resize-observer": "^3.2.0",
10
- "@lumx/core": "^2.2.1-alpha.0",
11
- "@lumx/icons": "^2.2.1-alpha.0",
10
+ "@lumx/core": "^2.2.1-alpha.1",
11
+ "@lumx/icons": "^2.2.1-alpha.1",
12
12
  "@popperjs/core": "^2.5.4",
13
13
  "body-scroll-lock": "^3.1.5",
14
14
  "classnames": "^2.2.6",
@@ -120,6 +120,6 @@
120
120
  "build:storybook": "cd storybook && ./build"
121
121
  },
122
122
  "sideEffects": false,
123
- "version": "2.2.1-alpha.0",
124
- "gitHead": "32d69b12124ecb7dcddb0c9a0649b5a2eba3aead"
123
+ "version": "2.2.1-alpha.1",
124
+ "gitHead": "3d6acac7cdc525099cb9ffd8ca1f0b5ff8c8c327"
125
125
  }
@@ -275,11 +275,13 @@ export const Vertical = () => (
275
275
  <Thumbnail alt="" aspectRatio="vertical" image={IMAGES.portrait1s200} size="xxl" />
276
276
  </FlexBox>
277
277
  <h2>With size & smaller image & fill height</h2>
278
+ <small>Unsupported use case (use ratio free with fill height)</small>
278
279
  <FlexBox orientation="horizontal" vAlign="center" gap="huge">
279
280
  <Thumbnail alt="" aspectRatio="vertical" image={IMAGES.landscape1s200} size="xxl" fillHeight />
280
281
  <Thumbnail alt="" aspectRatio="vertical" image={IMAGES.portrait1s200} size="xxl" fillHeight />
281
282
  </FlexBox>
282
283
  <h2>Constrained parent size & smaller image & fill height</h2>
284
+ <small>Unsupported use case (use ratio free with fill height)</small>
283
285
  <FlexBox orientation="horizontal" vAlign="center" gap="huge">
284
286
  <div className="parent" style={{ width: 220 }}>
285
287
  <Thumbnail alt="" aspectRatio="vertical" image={IMAGES.landscape1s200} fillHeight />
@@ -329,11 +331,13 @@ export const Wide = () => (
329
331
  <Thumbnail alt="" aspectRatio="wide" image={IMAGES.portrait1s200} size="xxl" />
330
332
  </FlexBox>
331
333
  <h2>With size & smaller image & fill height</h2>
334
+ <small>Unsupported use case (use ratio free with fill height)</small>
332
335
  <FlexBox orientation="horizontal" vAlign="center" gap="huge">
333
336
  <Thumbnail alt="" aspectRatio="wide" image={IMAGES.landscape1s200} size="xxl" fillHeight />
334
337
  <Thumbnail alt="" aspectRatio="wide" image={IMAGES.portrait1s200} size="xxl" fillHeight />
335
338
  </FlexBox>
336
339
  <h2>Constrained parent size & smaller image & fill height</h2>
340
+ <small>Unsupported use case (use ratio free with fill height)</small>
337
341
  <FlexBox orientation="horizontal" vAlign="center" gap="huge">
338
342
  <div className="parent" style={{ width: 220 }}>
339
343
  <Thumbnail alt="" aspectRatio="wide" image={IMAGES.landscape1s200} fillHeight />
@@ -383,11 +387,13 @@ export const Square = () => (
383
387
  <Thumbnail alt="" aspectRatio="square" image={IMAGES.portrait1s200} size="xxl" />
384
388
  </FlexBox>
385
389
  <h2>With size & smaller image & fill height</h2>
390
+ <small>Unsupported use case (use ratio free with fill height)</small>
386
391
  <FlexBox orientation="horizontal" vAlign="center" gap="huge">
387
392
  <Thumbnail alt="" aspectRatio="square" image={IMAGES.landscape1s200} size="xxl" fillHeight />
388
393
  <Thumbnail alt="" aspectRatio="square" image={IMAGES.portrait1s200} size="xxl" fillHeight />
389
394
  </FlexBox>
390
395
  <h2>Constrained parent size & smaller image & fill height</h2>
396
+ <small>Unsupported use case (use ratio free with fill height)</small>
391
397
  <FlexBox orientation="horizontal" vAlign="center" gap="huge">
392
398
  <div className="parent" style={{ width: 220 }}>
393
399
  <Thumbnail alt="" aspectRatio="square" image={IMAGES.landscape1s200} fillHeight />
@@ -3,6 +3,7 @@
3
3
  */
4
4
  export default { title: 'LumX components/badge/Badge Demos' };
5
5
 
6
+ export { App as Colors } from './colors';
6
7
  export { App as Icon } from './icon';
7
8
  export { App as Label } from './label';
8
9
  export { App as Thumbnail } from './thumbnail';
@@ -0,0 +1,6 @@
1
+ /**
2
+ * File generated when storybook is started. Do not edit directly!
3
+ */
4
+ export default { title: 'LumX components/flag/Flag Demos' };
5
+
6
+ export { App as Flag } from './flag';