@pexip/components 16.10.0 → 16.11.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## 16.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3353033: Move `isDisabled` from `MultiselectOption` to `Option`.
8
+
9
+ ### Patch Changes
10
+
11
+ - acd55a9: Allow ExpanderCell to take textVariant prop.
12
+ - 267898b: adds onPointerDownCapture prop to Menu component, which is passed to
13
+ the dropdown list
14
+ - c3f46b6: add missing breakout-rooms-16 icon
15
+ - 3353033: Fix Checkbox color for indeterminate state.
16
+ - Updated dependencies [bcfa59f]
17
+ - @pexip/signal@16.6.0
18
+ - @pexip/hooks@16.4.2
19
+
3
20
  ## 16.10.0
4
21
 
5
22
  ### Minor Changes
@@ -38,6 +38,7 @@ import IconBilling_16 from './icons/billing-16.svg';
38
38
  import IconBilling_24 from './icons/billing-24.svg';
39
39
  import IconBlock_16 from './icons/block-16.svg';
40
40
  import IconBlock_24 from './icons/block-24.svg';
41
+ import IconBreakoutRooms_16 from './icons/breakout-rooms-16.svg';
41
42
  import IconBreakoutRooms_24 from './icons/breakout-rooms-24.svg';
42
43
  import IconCalendar_16 from './icons/calendar-16.svg';
43
44
  import IconCalendar_24 from './icons/calendar-24.svg';
@@ -339,7 +340,7 @@ const collection: IconCollection = {
339
340
  IconBilling: {size16: IconBilling_16, size24: IconBilling_24},
340
341
  IconBlock: {size16: IconBlock_16, size24: IconBlock_24},
341
342
  IconBreakoutRooms: {
342
- size16: IconBreakoutRooms_24,
343
+ size16: IconBreakoutRooms_16,
343
344
  size24: IconBreakoutRooms_24,
344
345
  },
345
346
  IconCalendar: {size16: IconCalendar_16, size24: IconCalendar_24},
@@ -0,0 +1,7 @@
1
+ {
2
+ "iconName": "breakout-rooms-16",
3
+ "name": "16px-breakout-rooms",
4
+ "pascalName": "IconBreakoutRooms_16",
5
+ "resource": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/672bac1d-8c73-4cea-a50b-71c68dce5ec1",
6
+ "graphic": "<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.4545 3H3.54545C2.13909 3 1 4.20481 1 5.69231V11.0769C1 12.5644 2.13909 13.7692 3.54545 13.7692H12.4545C13.8609 13.7692 15 12.5644 15 11.0769V5.69231C15 4.20481 13.8609 3 12.4545 3ZM3 5H7V8H3V5ZM7 9H3V12H7V9ZM9 5H13V8H9V5ZM13 9H9V12H13V9Z\" fill=\"white\"/>\n</svg>\n"
7
+ }
@@ -0,0 +1,16 @@
1
+ <!-- FILE GENERATED BY packages/components/design-tokens/build-scripts/generate-icons.js DO NOT CHANGE -->
2
+
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ fill="none"
6
+ data-token-name="IconBreakoutRooms_16"
7
+ viewBox="0 0 16 16"
8
+ aria-hidden="true"
9
+ >
10
+ <path
11
+ fill="currentColor"
12
+ fill-rule="evenodd"
13
+ d="M12.454 3H3.545C2.14 3 1 4.205 1 5.692v5.385c0 1.487 1.14 2.692 2.545 2.692h8.91c1.406 0 2.545-1.205 2.545-2.692V5.692C15 4.205 13.86 3 12.454 3ZM3 5h4v3H3V5Zm4 4H3v3h4V9Zm2-4h4v3H9V5Zm4 4H9v3h4V9Z"
14
+ clip-rule="evenodd"
15
+ />
16
+ </svg>
@@ -0,0 +1,5 @@
1
+ // FILE GENERATED BY packages/components/design-tokens/build-scripts/generate-icons.js DO NOT CHANGE
2
+
3
+ import type React from 'react';
4
+ const icon: React.FC<React.ComponentProps<'svg'>>;
5
+ export default icon;
@@ -0,0 +1,22 @@
1
+ @import '../variables.scss';
2
+
3
+ :root {
4
+ @include create-token(components-z-index-draggable-dragging, 10000);
5
+ @include create-token(components-z-index-toast, 9999);
6
+ @include create-token(components-z-index-fullscreen-overlay, 9998);
7
+ @include create-token(
8
+ components-z-index-context-menu-position-adjuster,
9
+ 9999
10
+ );
11
+ @include create-token(components-z-index-context-menu-click-catcher, 9998);
12
+ @include create-token(components-z-index-modal-mask, 999);
13
+ @include create-token(components-z-index-modal-positioned, 999);
14
+ @include create-token(components-z-index-sheet-wrapper, 999);
15
+ @include create-token(components-z-index-badge-counter, 500);
16
+ @include create-token(components-z-index-drop-content, 99);
17
+ @include create-token(components-z-index-scrim-top, 5);
18
+ @include create-token(components-z-index-tooltip, 1);
19
+ @include create-token(components-z-index-line-heading-text, 1);
20
+ @include create-token(components-z-index-line-heading-visual-line, 0);
21
+ @include create-token(components-z-index-file-upload-input, -1);
22
+ }
@@ -4,6 +4,7 @@
4
4
  @import './tokens/all-sizes.tokens.scss';
5
5
  @import './tokens/circle-sizes.tokens.scss';
6
6
  @import './tokens/border-radius.tokens.scss';
7
+ @import './tokens/zIndex.tokens.scss';
7
8
 
8
9
  /*FOUNDATION*/
9
10
  @import '../src/components/foundation/FullSizeWindow/FullSizeWindow.tokens.scss';