@sebgroup/green-core 2.29.0 → 2.30.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.
@@ -5259,6 +5259,21 @@
5259
5259
  "module": "src/components/form/form-control.ts"
5260
5260
  }
5261
5261
  },
5262
+ {
5263
+ "kind": "field",
5264
+ "name": "wrapped",
5265
+ "type": {
5266
+ "text": "boolean"
5267
+ },
5268
+ "default": "false",
5269
+ "description": "When set, adds a wrapped class to the button.",
5270
+ "attribute": "wrapped",
5271
+ "reflects": true,
5272
+ "inheritedFrom": {
5273
+ "name": "Button",
5274
+ "module": "src/components/button/button.component.ts"
5275
+ }
5276
+ },
5262
5277
  {
5263
5278
  "kind": "field",
5264
5279
  "name": "href",
@@ -5696,6 +5711,19 @@
5696
5711
  "module": "src/components/form/form-control.ts"
5697
5712
  }
5698
5713
  },
5714
+ {
5715
+ "name": "wrapped",
5716
+ "type": {
5717
+ "text": "boolean"
5718
+ },
5719
+ "default": "false",
5720
+ "description": "When set, adds a wrapped class to the button.",
5721
+ "fieldName": "wrapped",
5722
+ "inheritedFrom": {
5723
+ "name": "Button",
5724
+ "module": "src/components/button/button.component.ts"
5725
+ }
5726
+ },
5699
5727
  {
5700
5728
  "name": "href",
5701
5729
  "type": {
@@ -5923,12 +5951,12 @@
5923
5951
  },
5924
5952
  {
5925
5953
  "kind": "variable",
5926
- "name": "Length",
5954
+ "name": "Wrapping",
5927
5955
  "type": {
5928
5956
  "text": "Story"
5929
5957
  },
5930
- "default": "{ ...DefaultParams, parameters: { ...DefaultParams.parameters, controls: { include: [] }, }, render: (args) => html` <div style=\"width: 30ch\"> <gds-button> <gds-icon-credit-card slot=\"lead\"></gds-icon-credit-card> This is a long text that will truncated </gds-button> </div> `, }",
5931
- "description": "Text content will get truncated if it does not fit."
5958
+ "default": "{ ...DefaultParams, parameters: { ...DefaultParams.parameters, controls: { include: [] }, }, render: (args) => html` <gds-flex gap=\"xl\" flex-direction=\"column\" width=\"40ch\" gap=\"2xl\"> <gds-flex flex-direction=\"column\" gap=\"m\" flex=\"1\"> <gds-flex flex-direction=\"column\"> <gds-text>Wrapped</gds-text> <gds-text color=\"neutral-02\" tag=\"small\"> Text wraps to multiple lines when exceeding container width </gds-text> </gds-flex> <gds-button wrapped> Lorem ipsum dolor sit amet, consectetur adipiscing elit. </gds-button> </gds-flex> <gds-divider></gds-divider> <gds-flex flex-direction=\"column\" gap=\"m\" flex=\"1\"> <gds-flex flex-direction=\"column\"> <gds-text>Default</gds-text> <gds-text color=\"neutral-02\" tag=\"small\"> Text truncates with ellipsis when exceeding container width </gds-text> </gds-flex> <gds-button width=\"20ch\"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. </gds-button> </gds-flex> </gds-flex> `, }",
5959
+ "description": "Button label will be wrapped if it does not fit."
5932
5960
  },
5933
5961
  {
5934
5962
  "kind": "variable",
@@ -6024,9 +6052,9 @@
6024
6052
  },
6025
6053
  {
6026
6054
  "kind": "js",
6027
- "name": "Length",
6055
+ "name": "Wrapping",
6028
6056
  "declaration": {
6029
- "name": "Length",
6057
+ "name": "Wrapping",
6030
6058
  "module": "src/components/button/button.stories.ts"
6031
6059
  }
6032
6060
  },
@@ -6055,7 +6083,7 @@
6055
6083
  {
6056
6084
  "kind": "variable",
6057
6085
  "name": "style",
6058
- "default": "css` @layer tokens, core, a11y, ranks, sizes, variants, disabled; @layer a11y { @media (prefers-reduced-motion: reduce) { .button { transition: none; } } } @layer core { :host { display: inline-flex; max-width: 100%; } .button { --_block-size: var(--gds-sys-space-4xl); display: flex; align-items: center; justify-content: center; box-sizing: border-box; border: none; cursor: pointer; block-size: var(--_block-size); background-color: var(--gds-sys-color-l3-neutral-01); color: var(--gds-sys-color-content-neutral-03); border-radius: var(--gds-sys-radius-max); font-family: inherit; font: var(--gds-sys-text-detail-book-m); gap: var(--gds-sys-space-xs); outline-color: transparent; outline-offset: var(--gds-sys-space-4xs); outline-style: solid; outline-width: var(--gds-sys-space-4xs); padding-block: var(--gds-sys-space-s); padding-inline: var(--gds-sys-space-xl); position: relative; text-decoration: none; transition-property: color, border-colorm, background; transition-duration: 0.2s; flex: 1; &:focus { outline-color: var(--gds-sys-color-content-neutral-01); &:not(:focus-visible) { outline-color: transparent; } } @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-neutral-01), var(--gds-sys-color-state-neutral-01) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-neutral-01), var(--gds-sys-color-state-neutral-02) ); } &:not(.circle) slot:not([name]) { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } } } .button.circle { aspect-ratio: 1 / 1; padding: 0; min-block-size: var(--_block-size); min-inline-size: var(--_block-size); } .button:disabled { pointer-events: none; background-color: var(--gds-sys-color-l3-disabled-01); color: var(--gds-sys-color-content-disabled-01); } @layer ranks { :host([rank*='secondary']) .button { background-color: var(--gds-sys-color-l3-neutral-02); color: var(--gds-sys-color-content-neutral-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-neutral-02), var(--gds-sys-color-state-neutral-03) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-neutral-02), var(--gds-sys-color-state-neutral-04) ); } } :host([rank*='tertiary']) .button { background-color: transparent; color: var(--gds-sys-color-content-neutral-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-neutral-05) ); } } &:active { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-neutral-06) ); } } } @layer sizes { :host([size='xs']) .button { --_block-size: var(--gds-sys-space-xl); gap: var(--gds-sys-space-3xs); font: var(--gds-sys-text-detail-book-xs); padding-inline: var(--gds-sys-space-s); } :host([size='small']) .button { --_block-size: var(--gds-sys-space-2xl); font: var(--gds-sys-text-detail-book-s); gap: var(--gds-sys-space-3xs); padding-block: var(--gds-sys-space-3xs); padding-inline: var(--gds-sys-space-m); } :host([size='medium']) .button { --_block-size: var(--gds-sys-space-3xl); gap: var(--gds-sys-space-2xs); font: var(--gds-sys-text-detail-book-m); padding-inline: var(--gds-sys-space-l); } } @layer variants { .brand { background-color: var(--gds-sys-color-l3-brand-01); &:focus { outline-color: var(--gds-sys-color-content-brand-01); &:not(:focus-visible) { outline-color: transparent; } } @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-brand-01), var(--gds-sys-color-state-brand-01) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-brand-01), var(--gds-sys-color-state-brand-02) ); } &.secondary { background-color: var(--gds-sys-color-l3-neutral-02); color: var(--gds-sys-color-content-neutral-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-neutral-02), var(--gds-sys-color-state-brand-03) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-neutral-02), var(--gds-sys-color-state-brand-04) ); } } &.tertiary { background-color: transparent; color: var(--gds-sys-color-content-neutral-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-brand-05) ); } } &:active { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-brand-06) ); } } } .positive { background-color: var(--gds-sys-color-l3-positive-01); color: var(--gds-sys-color-content-inversed); &:focus { outline-color: var(--gds-sys-color-content-positive-01); &:not(:focus-visible) { outline-color: transparent; } } @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-positive-01), var(--gds-sys-color-state-positive-01) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-positive-01), var(--gds-sys-color-state-positive-02) ); } &.secondary { background-color: var(--gds-sys-color-l3-positive-02); color: var(--gds-sys-color-content-positive-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-positive-02), var(--gds-sys-color-state-positive-03) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-positive-02), var(--gds-sys-color-state-positive-04) ); } } &.tertiary { background-color: transparent; color: var(--gds-sys-color-content-positive-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-positive-05) ); } } &:active { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-positive-06) ); } } } .negative { background-color: var(--gds-sys-color-l3-negative-01); color: var(--gds-sys-color-content-inversed); &:focus { outline-color: var(--gds-sys-color-content-negative-01); &:not(:focus-visible) { outline-color: transparent; } } @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-negative-01), var(--gds-sys-color-state-negative-01) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-negative-01), var(--gds-sys-color-state-negative-02) ); } &.secondary { background-color: var(--gds-sys-color-l3-negative-02); color: var(--gds-sys-color-content-negative-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-negative-02), var(--gds-sys-color-state-negative-03) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-negative-02), var(--gds-sys-color-state-negative-04) ); } } &.tertiary { background-color: transparent; color: var(--gds-sys-color-content-negative-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-negative-05) ); } } &:active { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-negative-06) ); } } } .notice { background-color: var(--gds-sys-color-l3-notice-01); color: var(--gds-sys-color-content-inversed); &:focus { outline-color: var(--gds-sys-color-content-notice-01); &:not(:focus-visible) { outline-color: transparent; } } @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-notice-01), var(--gds-sys-color-state-notice-01) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-notice-01), var(--gds-sys-color-state-notice-02) ); } &.secondary { background-color: var(--gds-sys-color-l3-notice-02); color: var(--gds-sys-color-content-notice-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-notice-02), var(--gds-sys-color-state-notice-03) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-notice-02), var(--gds-sys-color-state-notice-04) ); } } &.tertiary { background-color: transparent; color: var(--gds-sys-color-content-notice-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-notice-05) ); } } &:active { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-notice-06) ); } } } .warning { background-color: var(--gds-sys-color-l3-warning-01); color: var(--gds-sys-color-content-neutral-03); &:focus { outline-color: var(--gds-sys-color-content-warning-01); &:not(:focus-visible) { outline-color: transparent; } } @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-warning-01), var(--gds-sys-color-state-warning-01) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-warning-01), var(--gds-sys-color-state-warning-02) ); } &.secondary { background-color: var(--gds-sys-color-l3-warning-02); color: var(--gds-sys-color-content-warning-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-warning-02), var(--gds-sys-color-state-warning-03) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-warning-02), var(--gds-sys-color-state-warning-04) ); } } &.tertiary { background-color: transparent; color: var(--gds-sys-color-content-warning-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-warning-05) ); } } &:active { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-warning-06) ); } } } } `"
6086
+ "default": "css` @layer tokens, core, a11y, ranks, sizes, variants, disabled; @layer a11y { @media (prefers-reduced-motion: reduce) { .button { transition: none; } } } @layer core { :host { display: inline-flex; max-width: 100%; } .button { --_block-size: var(--gds-sys-space-4xl); display: flex; align-items: center; justify-content: center; box-sizing: border-box; border: none; cursor: pointer; min-block-size: var(--_block-size); min-width: 0; background-color: var(--gds-sys-color-l3-neutral-01); color: var(--gds-sys-color-content-neutral-03); border-radius: calc(var(--_block-size) / 1.8); font-family: inherit; font: var(--gds-sys-text-detail-book-m); gap: var(--gds-sys-space-xs); outline-color: transparent; outline-offset: var(--gds-sys-space-4xs); outline-style: solid; outline-width: var(--gds-sys-space-4xs); padding-block: var(--gds-sys-space-s); padding-inline: var(--gds-sys-space-xl); position: relative; text-decoration: none; transition-property: color, border-colorm, background; transition-duration: 0.2s; flex: 1; &:focus { outline-color: var(--gds-sys-color-content-neutral-01); &:not(:focus-visible) { outline-color: transparent; } } @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-neutral-01), var(--gds-sys-color-state-neutral-01) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-neutral-01), var(--gds-sys-color-state-neutral-02) ); } &:not(.circle, .wrapped) slot:not([name]) { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; } } } .button.circle { aspect-ratio: 1 / 1; padding: 0; min-block-size: var(--_block-size); min-inline-size: var(--_block-size); } .button:disabled { pointer-events: none; background-color: var(--gds-sys-color-l3-disabled-01); color: var(--gds-sys-color-content-disabled-01); } @layer ranks { :host([rank*='secondary']) .button { background-color: var(--gds-sys-color-l3-neutral-02); color: var(--gds-sys-color-content-neutral-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-neutral-02), var(--gds-sys-color-state-neutral-03) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-neutral-02), var(--gds-sys-color-state-neutral-04) ); } } :host([rank*='tertiary']) .button { background-color: transparent; color: var(--gds-sys-color-content-neutral-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-neutral-05) ); } } &:active { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-neutral-06) ); } } } @layer sizes { :host([size='xs']) .button { --_block-size: var(--gds-sys-space-xl); gap: var(--gds-sys-space-3xs); font: var(--gds-sys-text-detail-book-xs); padding-inline: var(--gds-sys-space-s); padding-block: 0; } :host([size='small']) .button { --_block-size: var(--gds-sys-space-2xl); font: var(--gds-sys-text-detail-book-s); gap: var(--gds-sys-space-3xs); padding-block: var(--gds-sys-space-3xs); padding-inline: var(--gds-sys-space-m); } :host([size='medium']) .button { --_block-size: var(--gds-sys-space-3xl); gap: var(--gds-sys-space-2xs); font: var(--gds-sys-text-detail-book-m); padding-inline: var(--gds-sys-space-l); } } @layer variants { .brand { background-color: var(--gds-sys-color-l3-brand-01); &:focus { outline-color: var(--gds-sys-color-content-brand-01); &:not(:focus-visible) { outline-color: transparent; } } @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-brand-01), var(--gds-sys-color-state-brand-01) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-brand-01), var(--gds-sys-color-state-brand-02) ); } &.secondary { background-color: var(--gds-sys-color-l3-neutral-02); color: var(--gds-sys-color-content-neutral-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-neutral-02), var(--gds-sys-color-state-brand-03) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-neutral-02), var(--gds-sys-color-state-brand-04) ); } } &.tertiary { background-color: transparent; color: var(--gds-sys-color-content-neutral-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-brand-05) ); } } &:active { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-brand-06) ); } } } .positive { background-color: var(--gds-sys-color-l3-positive-01); color: var(--gds-sys-color-content-inversed); &:focus { outline-color: var(--gds-sys-color-content-positive-01); &:not(:focus-visible) { outline-color: transparent; } } @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-positive-01), var(--gds-sys-color-state-positive-01) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-positive-01), var(--gds-sys-color-state-positive-02) ); } &.secondary { background-color: var(--gds-sys-color-l3-positive-02); color: var(--gds-sys-color-content-positive-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-positive-02), var(--gds-sys-color-state-positive-03) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-positive-02), var(--gds-sys-color-state-positive-04) ); } } &.tertiary { background-color: transparent; color: var(--gds-sys-color-content-positive-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-positive-05) ); } } &:active { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-positive-06) ); } } } .negative { background-color: var(--gds-sys-color-l3-negative-01); color: var(--gds-sys-color-content-inversed); &:focus { outline-color: var(--gds-sys-color-content-negative-01); &:not(:focus-visible) { outline-color: transparent; } } @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-negative-01), var(--gds-sys-color-state-negative-01) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-negative-01), var(--gds-sys-color-state-negative-02) ); } &.secondary { background-color: var(--gds-sys-color-l3-negative-02); color: var(--gds-sys-color-content-negative-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-negative-02), var(--gds-sys-color-state-negative-03) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-negative-02), var(--gds-sys-color-state-negative-04) ); } } &.tertiary { background-color: transparent; color: var(--gds-sys-color-content-negative-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-negative-05) ); } } &:active { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-negative-06) ); } } } .notice { background-color: var(--gds-sys-color-l3-notice-01); color: var(--gds-sys-color-content-inversed); &:focus { outline-color: var(--gds-sys-color-content-notice-01); &:not(:focus-visible) { outline-color: transparent; } } @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-notice-01), var(--gds-sys-color-state-notice-01) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-notice-01), var(--gds-sys-color-state-notice-02) ); } &.secondary { background-color: var(--gds-sys-color-l3-notice-02); color: var(--gds-sys-color-content-notice-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-notice-02), var(--gds-sys-color-state-notice-03) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-notice-02), var(--gds-sys-color-state-notice-04) ); } } &.tertiary { background-color: transparent; color: var(--gds-sys-color-content-notice-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-notice-05) ); } } &:active { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-notice-06) ); } } } .warning { background-color: var(--gds-sys-color-l3-warning-01); color: var(--gds-sys-color-content-neutral-03); &:focus { outline-color: var(--gds-sys-color-content-warning-01); &:not(:focus-visible) { outline-color: transparent; } } @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-warning-01), var(--gds-sys-color-state-warning-01) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-warning-01), var(--gds-sys-color-state-warning-02) ); } &.secondary { background-color: var(--gds-sys-color-l3-warning-02); color: var(--gds-sys-color-content-warning-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, var(--gds-sys-color-l3-warning-02), var(--gds-sys-color-state-warning-03) ); } } &:active { background-color: color-mix( in srgb, var(--gds-sys-color-l3-warning-02), var(--gds-sys-color-state-warning-04) ); } } &.tertiary { background-color: transparent; color: var(--gds-sys-color-content-warning-01); @media (pointer: fine) { &:hover { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-warning-05) ); } } &:active { background-color: color-mix( in srgb, transparent, var(--gds-sys-color-state-warning-06) ); } } } } `"
6059
6087
  }
6060
6088
  ],
6061
6089
  "exports": [
@@ -17663,6 +17691,21 @@
17663
17691
  "module": "src/components/form/form-control.ts"
17664
17692
  }
17665
17693
  },
17694
+ {
17695
+ "kind": "field",
17696
+ "name": "wrapped",
17697
+ "type": {
17698
+ "text": "boolean"
17699
+ },
17700
+ "default": "false",
17701
+ "description": "When set, adds a wrapped class to the button.",
17702
+ "attribute": "wrapped",
17703
+ "reflects": true,
17704
+ "inheritedFrom": {
17705
+ "name": "Button",
17706
+ "module": "src/components/button/button.component.ts"
17707
+ }
17708
+ },
17666
17709
  {
17667
17710
  "kind": "field",
17668
17711
  "name": "href",
@@ -18100,6 +18143,19 @@
18100
18143
  "module": "src/components/form/form-control.ts"
18101
18144
  }
18102
18145
  },
18146
+ {
18147
+ "name": "wrapped",
18148
+ "type": {
18149
+ "text": "boolean"
18150
+ },
18151
+ "default": "false",
18152
+ "description": "When set, adds a wrapped class to the button.",
18153
+ "fieldName": "wrapped",
18154
+ "inheritedFrom": {
18155
+ "name": "Button",
18156
+ "module": "src/components/button/button.component.ts"
18157
+ }
18158
+ },
18103
18159
  {
18104
18160
  "name": "href",
18105
18161
  "type": {
@@ -30043,7 +30099,7 @@
30043
30099
  "kind": "field",
30044
30100
  "name": "value",
30045
30101
  "type": {
30046
- "text": "string"
30102
+ "text": "string | boolean"
30047
30103
  },
30048
30104
  "default": "''",
30049
30105
  "description": "The value of the radio button.",
@@ -30278,7 +30334,7 @@
30278
30334
  {
30279
30335
  "name": "value",
30280
30336
  "type": {
30281
- "text": "string"
30337
+ "text": "string | boolean"
30282
30338
  },
30283
30339
  "default": "''",
30284
30340
  "description": "The value of the radio button.",
@@ -41115,6 +41171,30 @@
41115
41171
  "module": "src/generated/react/segment/index.js"
41116
41172
  }
41117
41173
  },
41174
+ {
41175
+ "kind": "js",
41176
+ "name": "*",
41177
+ "declaration": {
41178
+ "name": "*",
41179
+ "module": "src/generated/react/sensitive-account/index.js"
41180
+ }
41181
+ },
41182
+ {
41183
+ "kind": "js",
41184
+ "name": "*",
41185
+ "declaration": {
41186
+ "name": "*",
41187
+ "module": "src/generated/react/sensitive-number/index.js"
41188
+ }
41189
+ },
41190
+ {
41191
+ "kind": "js",
41192
+ "name": "*",
41193
+ "declaration": {
41194
+ "name": "*",
41195
+ "module": "src/generated/react/sensitive-date/index.js"
41196
+ }
41197
+ },
41118
41198
  {
41119
41199
  "kind": "js",
41120
41200
  "name": "*",
@@ -43795,30 +43875,6 @@
43795
43875
  "module": "src/generated/react/icons/icon-zoom-out/index.js"
43796
43876
  }
43797
43877
  },
43798
- {
43799
- "kind": "js",
43800
- "name": "*",
43801
- "declaration": {
43802
- "name": "*",
43803
- "module": "src/generated/react/sensitive-account/index.js"
43804
- }
43805
- },
43806
- {
43807
- "kind": "js",
43808
- "name": "*",
43809
- "declaration": {
43810
- "name": "*",
43811
- "module": "src/generated/react/sensitive-date/index.js"
43812
- }
43813
- },
43814
- {
43815
- "kind": "js",
43816
- "name": "*",
43817
- "declaration": {
43818
- "name": "*",
43819
- "module": "src/generated/react/sensitive-number/index.js"
43820
- }
43821
- },
43822
43878
  {
43823
43879
  "kind": "js",
43824
43880
  "name": "*",
@@ -43932,28 +43988,37 @@
43932
43988
  },
43933
43989
  {
43934
43990
  "kind": "javascript-module",
43935
- "path": "src/primitives/form-control-footer/form-control-footer.component.ts",
43991
+ "path": "src/primitives/form-control-header/form-control-header.component.ts",
43936
43992
  "declarations": [
43937
43993
  {
43938
43994
  "kind": "class",
43939
43995
  "description": "",
43940
- "name": "GdsFormControlFooter",
43941
- "members": [
43996
+ "name": "GdsFormControlHeader",
43997
+ "slots": [
43942
43998
  {
43943
- "kind": "field",
43944
- "name": "charCounter",
43945
- "type": {
43946
- "text": "[number, GdsBadge['variant'] | boolean] | undefined"
43947
- },
43948
- "attribute": "charCounter"
43999
+ "description": "The label of the form control.",
44000
+ "name": "label"
43949
44001
  },
44002
+ {
44003
+ "description": "The supporting text of the form control.",
44004
+ "name": "supporting-text"
44005
+ },
44006
+ {
44007
+ "description": "The extended supporting text, or \"Show more info\" card, of the form control.",
44008
+ "name": "extended-supporting-text"
44009
+ }
44010
+ ],
44011
+ "members": [
43950
44012
  {
43951
44013
  "kind": "field",
43952
- "name": "errorMessage",
44014
+ "name": "showExtendedSupportingText",
43953
44015
  "type": {
43954
- "text": "string | undefined"
44016
+ "text": "boolean"
43955
44017
  },
43956
- "attribute": "errorMessage"
44018
+ "default": "false",
44019
+ "description": "Whether the supporting text should be displayed or not.",
44020
+ "attribute": "showExtendedSupportingText",
44021
+ "reflects": true
43957
44022
  },
43958
44023
  {
43959
44024
  "kind": "method",
@@ -44087,18 +44152,13 @@
44087
44152
  ],
44088
44153
  "attributes": [
44089
44154
  {
44090
- "name": "charCounter",
44091
- "type": {
44092
- "text": "[number, GdsBadge['variant'] | boolean] | undefined"
44093
- },
44094
- "fieldName": "charCounter"
44095
- },
44096
- {
44097
- "name": "errorMessage",
44155
+ "name": "showExtendedSupportingText",
44098
44156
  "type": {
44099
- "text": "string | undefined"
44157
+ "text": "boolean"
44100
44158
  },
44101
- "fieldName": "errorMessage"
44159
+ "default": "false",
44160
+ "description": "Whether the supporting text should be displayed or not.",
44161
+ "fieldName": "showExtendedSupportingText"
44102
44162
  },
44103
44163
  {
44104
44164
  "name": "gds-element",
@@ -44118,7 +44178,7 @@
44118
44178
  "name": "GdsElement",
44119
44179
  "module": "/src/gds-element"
44120
44180
  },
44121
- "tagName": "gds-form-control-footer",
44181
+ "tagName": "gds-form-control-header",
44122
44182
  "customElement": true,
44123
44183
  "events": [
44124
44184
  {
@@ -44157,22 +44217,22 @@
44157
44217
  "exports": [
44158
44218
  {
44159
44219
  "kind": "js",
44160
- "name": "GdsFormControlFooter",
44220
+ "name": "GdsFormControlHeader",
44161
44221
  "declaration": {
44162
- "name": "GdsFormControlFooter",
44163
- "module": "src/primitives/form-control-footer/form-control-footer.component.ts"
44222
+ "name": "GdsFormControlHeader",
44223
+ "module": "src/primitives/form-control-header/form-control-header.component.ts"
44164
44224
  }
44165
44225
  }
44166
44226
  ]
44167
44227
  },
44168
44228
  {
44169
44229
  "kind": "javascript-module",
44170
- "path": "src/primitives/form-control-footer/form-control-footer.styles.ts",
44230
+ "path": "src/primitives/form-control-header/form-control-header.styles.ts",
44171
44231
  "declarations": [
44172
44232
  {
44173
44233
  "kind": "variable",
44174
44234
  "name": "style",
44175
- "default": "css` @layer base, reset, transitional-styles; @layer base { :host(.visually-hidden) { position: absolute; clip: rect(0 0 0 0); width: 0px; height: 0px; overflow: hidden; } :host > *:not(style) { display: flex; justify-content: space-between; align-items: center; gap: var(--gds-sys-space-xl); } .error-message { display: flex; align-items: flex-start; gap: var(--gds-sys-space-xs); margin-top: var(--gds-sys-space-3xs); font: var(--gds-sys-text-detail-regular-s); color: var(--gds-sys-color-content-negative-01); } [gds-element^='gds-icon'] { width: 18px; height: 18px; } :host(.size-small) { & .error-message { font: var(--gds-sys-text-detail-xs); gap: var(--gds-sys-space-3xs); } & [gds-element^='gds-icon'] { width: 16px; height: 16px; line-height: 16px; margin-right: 2px; } } } `"
44235
+ "default": "css` @layer base, reset, transitional-styles; @layer base { #label-row { display: flex; justify-content: space-between; align-items: center; color: var(--gds-sys-color-content-neutral-01); } #label-row > div { display: flex; flex-direction: column; } slot[name='label']::slotted(*) { font: var(--_font-label, var(--gds-sys-text-detail-book-m)); } slot[name='supporting-text']::slotted(*) { font: var(--_font-supporting-text, var(--gds-sys-text-detail-regular-s)); } :host(.size-small) slot[name='supporting-text'], :host(.size-small) ::slotted(label) { font: var(--_font-label, var(--gds-sys-text-detail-book-s)); } #extended-supporting-text { opacity: 1; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 368ms; transition-property: all; font: var(--_font-supporting-text, var(--gds-sys-text-detail-regular-s)); border-radius: var(--gds-sys-space-xs); background-color: var(--gds-sys-color-l3-neutral-02); color: var(--gds-sys-color-content-neutral-01); max-height: var(--_max-height); } #extended-supporting-text[aria-hidden='false'] { margin: var(--gds-sys-space-3xs) 0 0 0; padding: var(--gds-sys-space-s) var(--gds-sys-space-m); } #extended-supporting-text[aria-hidden='true'] { max-height: 0; opacity: 0; translate: 0 2px; padding: 0 var(--gds-sys-space-m); margin: 0; overflow: hidden; } } `"
44176
44236
  }
44177
44237
  ],
44178
44238
  "exports": [
@@ -44181,29 +44241,29 @@
44181
44241
  "name": "default",
44182
44242
  "declaration": {
44183
44243
  "name": "style",
44184
- "module": "src/primitives/form-control-footer/form-control-footer.styles.ts"
44244
+ "module": "src/primitives/form-control-header/form-control-header.styles.ts"
44185
44245
  }
44186
44246
  }
44187
44247
  ]
44188
44248
  },
44189
44249
  {
44190
44250
  "kind": "javascript-module",
44191
- "path": "src/primitives/form-control-footer/form-control-footer.ts",
44251
+ "path": "src/primitives/form-control-header/form-control-header.ts",
44192
44252
  "declarations": [],
44193
44253
  "exports": [
44194
44254
  {
44195
44255
  "kind": "js",
44196
- "name": "GdsFormControlFooter",
44256
+ "name": "GdsFormControlHeader",
44197
44257
  "declaration": {
44198
- "name": "GdsFormControlFooter",
44199
- "module": "src/primitives/form-control-footer/form-control-footer.ts"
44258
+ "name": "GdsFormControlHeader",
44259
+ "module": "src/primitives/form-control-header/form-control-header.ts"
44200
44260
  }
44201
44261
  }
44202
44262
  ]
44203
44263
  },
44204
44264
  {
44205
44265
  "kind": "javascript-module",
44206
- "path": "src/primitives/form-control-footer/index.ts",
44266
+ "path": "src/primitives/form-control-header/index.ts",
44207
44267
  "declarations": [],
44208
44268
  "exports": [
44209
44269
  {
@@ -44211,44 +44271,35 @@
44211
44271
  "name": "*",
44212
44272
  "declaration": {
44213
44273
  "name": "*",
44214
- "module": "src/primitives/form-control-footer/form-control-footer"
44274
+ "module": "src/primitives/form-control-header/form-control-header"
44215
44275
  }
44216
44276
  }
44217
44277
  ]
44218
44278
  },
44219
44279
  {
44220
44280
  "kind": "javascript-module",
44221
- "path": "src/primitives/form-control-header/form-control-header.component.ts",
44281
+ "path": "src/primitives/form-control-footer/form-control-footer.component.ts",
44222
44282
  "declarations": [
44223
44283
  {
44224
44284
  "kind": "class",
44225
44285
  "description": "",
44226
- "name": "GdsFormControlHeader",
44227
- "slots": [
44228
- {
44229
- "description": "The label of the form control.",
44230
- "name": "label"
44231
- },
44286
+ "name": "GdsFormControlFooter",
44287
+ "members": [
44232
44288
  {
44233
- "description": "The supporting text of the form control.",
44234
- "name": "supporting-text"
44289
+ "kind": "field",
44290
+ "name": "charCounter",
44291
+ "type": {
44292
+ "text": "[number, GdsBadge['variant'] | boolean] | undefined"
44293
+ },
44294
+ "attribute": "charCounter"
44235
44295
  },
44236
- {
44237
- "description": "The extended supporting text, or \"Show more info\" card, of the form control.",
44238
- "name": "extended-supporting-text"
44239
- }
44240
- ],
44241
- "members": [
44242
44296
  {
44243
44297
  "kind": "field",
44244
- "name": "showExtendedSupportingText",
44298
+ "name": "errorMessage",
44245
44299
  "type": {
44246
- "text": "boolean"
44300
+ "text": "string | undefined"
44247
44301
  },
44248
- "default": "false",
44249
- "description": "Whether the supporting text should be displayed or not.",
44250
- "attribute": "showExtendedSupportingText",
44251
- "reflects": true
44302
+ "attribute": "errorMessage"
44252
44303
  },
44253
44304
  {
44254
44305
  "kind": "method",
@@ -44382,13 +44433,18 @@
44382
44433
  ],
44383
44434
  "attributes": [
44384
44435
  {
44385
- "name": "showExtendedSupportingText",
44436
+ "name": "charCounter",
44386
44437
  "type": {
44387
- "text": "boolean"
44438
+ "text": "[number, GdsBadge['variant'] | boolean] | undefined"
44388
44439
  },
44389
- "default": "false",
44390
- "description": "Whether the supporting text should be displayed or not.",
44391
- "fieldName": "showExtendedSupportingText"
44440
+ "fieldName": "charCounter"
44441
+ },
44442
+ {
44443
+ "name": "errorMessage",
44444
+ "type": {
44445
+ "text": "string | undefined"
44446
+ },
44447
+ "fieldName": "errorMessage"
44392
44448
  },
44393
44449
  {
44394
44450
  "name": "gds-element",
@@ -44408,7 +44464,7 @@
44408
44464
  "name": "GdsElement",
44409
44465
  "module": "/src/gds-element"
44410
44466
  },
44411
- "tagName": "gds-form-control-header",
44467
+ "tagName": "gds-form-control-footer",
44412
44468
  "customElement": true,
44413
44469
  "events": [
44414
44470
  {
@@ -44447,22 +44503,22 @@
44447
44503
  "exports": [
44448
44504
  {
44449
44505
  "kind": "js",
44450
- "name": "GdsFormControlHeader",
44506
+ "name": "GdsFormControlFooter",
44451
44507
  "declaration": {
44452
- "name": "GdsFormControlHeader",
44453
- "module": "src/primitives/form-control-header/form-control-header.component.ts"
44508
+ "name": "GdsFormControlFooter",
44509
+ "module": "src/primitives/form-control-footer/form-control-footer.component.ts"
44454
44510
  }
44455
44511
  }
44456
44512
  ]
44457
44513
  },
44458
44514
  {
44459
44515
  "kind": "javascript-module",
44460
- "path": "src/primitives/form-control-header/form-control-header.styles.ts",
44516
+ "path": "src/primitives/form-control-footer/form-control-footer.styles.ts",
44461
44517
  "declarations": [
44462
44518
  {
44463
44519
  "kind": "variable",
44464
44520
  "name": "style",
44465
- "default": "css` @layer base, reset, transitional-styles; @layer base { #label-row { display: flex; justify-content: space-between; align-items: center; color: var(--gds-sys-color-content-neutral-01); } #label-row > div { display: flex; flex-direction: column; } slot[name='label']::slotted(*) { font: var(--_font-label, var(--gds-sys-text-detail-book-m)); } slot[name='supporting-text']::slotted(*) { font: var(--_font-supporting-text, var(--gds-sys-text-detail-regular-s)); } :host(.size-small) slot[name='supporting-text'], :host(.size-small) ::slotted(label) { font: var(--_font-label, var(--gds-sys-text-detail-book-s)); } #extended-supporting-text { opacity: 1; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 368ms; transition-property: all; font: var(--_font-supporting-text, var(--gds-sys-text-detail-regular-s)); border-radius: var(--gds-sys-space-xs); background-color: var(--gds-sys-color-l3-neutral-02); color: var(--gds-sys-color-content-neutral-01); max-height: var(--_max-height); } #extended-supporting-text[aria-hidden='false'] { margin: var(--gds-sys-space-3xs) 0 0 0; padding: var(--gds-sys-space-s) var(--gds-sys-space-m); } #extended-supporting-text[aria-hidden='true'] { max-height: 0; opacity: 0; translate: 0 2px; padding: 0 var(--gds-sys-space-m); margin: 0; overflow: hidden; } } `"
44521
+ "default": "css` @layer base, reset, transitional-styles; @layer base { :host(.visually-hidden) { position: absolute; clip: rect(0 0 0 0); width: 0px; height: 0px; overflow: hidden; } :host > *:not(style) { display: flex; justify-content: space-between; align-items: center; gap: var(--gds-sys-space-xl); } .error-message { display: flex; align-items: flex-start; gap: var(--gds-sys-space-xs); margin-top: var(--gds-sys-space-3xs); font: var(--gds-sys-text-detail-regular-s); color: var(--gds-sys-color-content-negative-01); } [gds-element^='gds-icon'] { width: 18px; height: 18px; } :host(.size-small) { & .error-message { font: var(--gds-sys-text-detail-xs); gap: var(--gds-sys-space-3xs); } & [gds-element^='gds-icon'] { width: 16px; height: 16px; line-height: 16px; margin-right: 2px; } } } `"
44466
44522
  }
44467
44523
  ],
44468
44524
  "exports": [
@@ -44471,29 +44527,29 @@
44471
44527
  "name": "default",
44472
44528
  "declaration": {
44473
44529
  "name": "style",
44474
- "module": "src/primitives/form-control-header/form-control-header.styles.ts"
44530
+ "module": "src/primitives/form-control-footer/form-control-footer.styles.ts"
44475
44531
  }
44476
44532
  }
44477
44533
  ]
44478
44534
  },
44479
44535
  {
44480
44536
  "kind": "javascript-module",
44481
- "path": "src/primitives/form-control-header/form-control-header.ts",
44537
+ "path": "src/primitives/form-control-footer/form-control-footer.ts",
44482
44538
  "declarations": [],
44483
44539
  "exports": [
44484
44540
  {
44485
44541
  "kind": "js",
44486
- "name": "GdsFormControlHeader",
44542
+ "name": "GdsFormControlFooter",
44487
44543
  "declaration": {
44488
- "name": "GdsFormControlHeader",
44489
- "module": "src/primitives/form-control-header/form-control-header.ts"
44544
+ "name": "GdsFormControlFooter",
44545
+ "module": "src/primitives/form-control-footer/form-control-footer.ts"
44490
44546
  }
44491
44547
  }
44492
44548
  ]
44493
44549
  },
44494
44550
  {
44495
44551
  "kind": "javascript-module",
44496
- "path": "src/primitives/form-control-header/index.ts",
44552
+ "path": "src/primitives/form-control-footer/index.ts",
44497
44553
  "declarations": [],
44498
44554
  "exports": [
44499
44555
  {
@@ -44501,7 +44557,7 @@
44501
44557
  "name": "*",
44502
44558
  "declaration": {
44503
44559
  "name": "*",
44504
- "module": "src/primitives/form-control-header/form-control-header"
44560
+ "module": "src/primitives/form-control-footer/form-control-footer"
44505
44561
  }
44506
44562
  }
44507
44563
  ]
@@ -233716,34 +233772,6 @@
233716
233772
  }
233717
233773
  ]
233718
233774
  },
233719
- {
233720
- "kind": "javascript-module",
233721
- "path": "src/generated/react/context-menu/index.ts",
233722
- "declarations": [
233723
- {
233724
- "kind": "function",
233725
- "name": "GdsContextMenu",
233726
- "parameters": [
233727
- {
233728
- "name": "props",
233729
- "type": {
233730
- "text": "GdsContextMenuProps & { ref?: React.Ref<GdsContextMenuClass> }"
233731
- }
233732
- }
233733
- ]
233734
- }
233735
- ],
233736
- "exports": [
233737
- {
233738
- "kind": "js",
233739
- "name": "GdsContextMenu",
233740
- "declaration": {
233741
- "name": "GdsContextMenu",
233742
- "module": "src/generated/react/context-menu/index.ts"
233743
- }
233744
- }
233745
- ]
233746
- },
233747
233775
  {
233748
233776
  "kind": "javascript-module",
233749
233777
  "path": "src/generated/react/datepicker/index.ts",
@@ -233776,6 +233804,34 @@
233776
233804
  }
233777
233805
  ]
233778
233806
  },
233807
+ {
233808
+ "kind": "javascript-module",
233809
+ "path": "src/generated/react/context-menu/index.ts",
233810
+ "declarations": [
233811
+ {
233812
+ "kind": "function",
233813
+ "name": "GdsContextMenu",
233814
+ "parameters": [
233815
+ {
233816
+ "name": "props",
233817
+ "type": {
233818
+ "text": "GdsContextMenuProps & { ref?: React.Ref<GdsContextMenuClass> }"
233819
+ }
233820
+ }
233821
+ ]
233822
+ }
233823
+ ],
233824
+ "exports": [
233825
+ {
233826
+ "kind": "js",
233827
+ "name": "GdsContextMenu",
233828
+ "declaration": {
233829
+ "name": "GdsContextMenu",
233830
+ "module": "src/generated/react/context-menu/index.ts"
233831
+ }
233832
+ }
233833
+ ]
233834
+ },
233779
233835
  {
233780
233836
  "kind": "javascript-module",
233781
233837
  "path": "src/generated/react/details/index.ts",
@@ -234300,16 +234356,16 @@
234300
234356
  },
234301
234357
  {
234302
234358
  "kind": "javascript-module",
234303
- "path": "src/generated/react/mask/index.ts",
234359
+ "path": "src/generated/react/list-item/index.ts",
234304
234360
  "declarations": [
234305
234361
  {
234306
234362
  "kind": "function",
234307
- "name": "GdsMask",
234363
+ "name": "GdsListItem",
234308
234364
  "parameters": [
234309
234365
  {
234310
234366
  "name": "props",
234311
234367
  "type": {
234312
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<GdsMaskClass>>\n > & { ref?: React.Ref<GdsMaskClass> }"
234368
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<GdsListItemClass>>\n > & { ref?: React.Ref<GdsListItemClass> }"
234313
234369
  }
234314
234370
  }
234315
234371
  ]
@@ -234318,26 +234374,26 @@
234318
234374
  "exports": [
234319
234375
  {
234320
234376
  "kind": "js",
234321
- "name": "GdsMask",
234377
+ "name": "GdsListItem",
234322
234378
  "declaration": {
234323
- "name": "GdsMask",
234324
- "module": "src/generated/react/mask/index.ts"
234379
+ "name": "GdsListItem",
234380
+ "module": "src/generated/react/list-item/index.ts"
234325
234381
  }
234326
234382
  }
234327
234383
  ]
234328
234384
  },
234329
234385
  {
234330
234386
  "kind": "javascript-module",
234331
- "path": "src/generated/react/list-item/index.ts",
234387
+ "path": "src/generated/react/menu-button/index.ts",
234332
234388
  "declarations": [
234333
234389
  {
234334
234390
  "kind": "function",
234335
- "name": "GdsListItem",
234391
+ "name": "GdsMenuButton",
234336
234392
  "parameters": [
234337
234393
  {
234338
234394
  "name": "props",
234339
234395
  "type": {
234340
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<GdsListItemClass>>\n > & { ref?: React.Ref<GdsListItemClass> }"
234396
+ "text": "GdsMenuButtonProps & { ref?: React.Ref<GdsMenuButtonClass> }"
234341
234397
  }
234342
234398
  }
234343
234399
  ]
@@ -234346,26 +234402,26 @@
234346
234402
  "exports": [
234347
234403
  {
234348
234404
  "kind": "js",
234349
- "name": "GdsListItem",
234405
+ "name": "GdsMenuButton",
234350
234406
  "declaration": {
234351
- "name": "GdsListItem",
234352
- "module": "src/generated/react/list-item/index.ts"
234407
+ "name": "GdsMenuButton",
234408
+ "module": "src/generated/react/menu-button/index.ts"
234353
234409
  }
234354
234410
  }
234355
234411
  ]
234356
234412
  },
234357
234413
  {
234358
234414
  "kind": "javascript-module",
234359
- "path": "src/generated/react/menu-button/index.ts",
234415
+ "path": "src/generated/react/mask/index.ts",
234360
234416
  "declarations": [
234361
234417
  {
234362
234418
  "kind": "function",
234363
- "name": "GdsMenuButton",
234419
+ "name": "GdsMask",
234364
234420
  "parameters": [
234365
234421
  {
234366
234422
  "name": "props",
234367
234423
  "type": {
234368
- "text": "GdsMenuButtonProps & { ref?: React.Ref<GdsMenuButtonClass> }"
234424
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<GdsMaskClass>>\n > & { ref?: React.Ref<GdsMaskClass> }"
234369
234425
  }
234370
234426
  }
234371
234427
  ]
@@ -234374,10 +234430,10 @@
234374
234430
  "exports": [
234375
234431
  {
234376
234432
  "kind": "js",
234377
- "name": "GdsMenuButton",
234433
+ "name": "GdsMask",
234378
234434
  "declaration": {
234379
- "name": "GdsMenuButton",
234380
- "module": "src/generated/react/menu-button/index.ts"
234435
+ "name": "GdsMask",
234436
+ "module": "src/generated/react/mask/index.ts"
234381
234437
  }
234382
234438
  }
234383
234439
  ]
@@ -235236,34 +235292,6 @@
235236
235292
  }
235237
235293
  ]
235238
235294
  },
235239
- {
235240
- "kind": "javascript-module",
235241
- "path": "src/generated/react/icons/icon-arrow-inbox/index.ts",
235242
- "declarations": [
235243
- {
235244
- "kind": "function",
235245
- "name": "IconArrowInbox",
235246
- "parameters": [
235247
- {
235248
- "name": "props",
235249
- "type": {
235250
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconArrowInboxClass>>\n > & { ref?: React.Ref<IconArrowInboxClass> }"
235251
- }
235252
- }
235253
- ]
235254
- }
235255
- ],
235256
- "exports": [
235257
- {
235258
- "kind": "js",
235259
- "name": "IconArrowInbox",
235260
- "declaration": {
235261
- "name": "IconArrowInbox",
235262
- "module": "src/generated/react/icons/icon-arrow-inbox/index.ts"
235263
- }
235264
- }
235265
- ]
235266
- },
235267
235295
  {
235268
235296
  "kind": "javascript-module",
235269
235297
  "path": "src/generated/react/icons/icon-arrow-left/index.ts",
@@ -235516,6 +235544,34 @@
235516
235544
  }
235517
235545
  ]
235518
235546
  },
235547
+ {
235548
+ "kind": "javascript-module",
235549
+ "path": "src/generated/react/icons/icon-arrow-inbox/index.ts",
235550
+ "declarations": [
235551
+ {
235552
+ "kind": "function",
235553
+ "name": "IconArrowInbox",
235554
+ "parameters": [
235555
+ {
235556
+ "name": "props",
235557
+ "type": {
235558
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconArrowInboxClass>>\n > & { ref?: React.Ref<IconArrowInboxClass> }"
235559
+ }
235560
+ }
235561
+ ]
235562
+ }
235563
+ ],
235564
+ "exports": [
235565
+ {
235566
+ "kind": "js",
235567
+ "name": "IconArrowInbox",
235568
+ "declaration": {
235569
+ "name": "IconArrowInbox",
235570
+ "module": "src/generated/react/icons/icon-arrow-inbox/index.ts"
235571
+ }
235572
+ }
235573
+ ]
235574
+ },
235519
235575
  {
235520
235576
  "kind": "javascript-module",
235521
235577
  "path": "src/generated/react/icons/icon-arrow-rotate-left-right/index.ts",
@@ -235630,16 +235686,16 @@
235630
235686
  },
235631
235687
  {
235632
235688
  "kind": "javascript-module",
235633
- "path": "src/generated/react/icons/icon-arrow-split/index.ts",
235689
+ "path": "src/generated/react/icons/icon-arrow-up/index.ts",
235634
235690
  "declarations": [
235635
235691
  {
235636
235692
  "kind": "function",
235637
- "name": "IconArrowSplit",
235693
+ "name": "IconArrowUp",
235638
235694
  "parameters": [
235639
235695
  {
235640
235696
  "name": "props",
235641
235697
  "type": {
235642
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconArrowSplitClass>>\n > & { ref?: React.Ref<IconArrowSplitClass> }"
235698
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconArrowUpClass>>\n > & { ref?: React.Ref<IconArrowUpClass> }"
235643
235699
  }
235644
235700
  }
235645
235701
  ]
@@ -235648,26 +235704,26 @@
235648
235704
  "exports": [
235649
235705
  {
235650
235706
  "kind": "js",
235651
- "name": "IconArrowSplit",
235707
+ "name": "IconArrowUp",
235652
235708
  "declaration": {
235653
- "name": "IconArrowSplit",
235654
- "module": "src/generated/react/icons/icon-arrow-split/index.ts"
235709
+ "name": "IconArrowUp",
235710
+ "module": "src/generated/react/icons/icon-arrow-up/index.ts"
235655
235711
  }
235656
235712
  }
235657
235713
  ]
235658
235714
  },
235659
235715
  {
235660
235716
  "kind": "javascript-module",
235661
- "path": "src/generated/react/icons/icon-arrow-up/index.ts",
235717
+ "path": "src/generated/react/icons/icon-arrow-split/index.ts",
235662
235718
  "declarations": [
235663
235719
  {
235664
235720
  "kind": "function",
235665
- "name": "IconArrowUp",
235721
+ "name": "IconArrowSplit",
235666
235722
  "parameters": [
235667
235723
  {
235668
235724
  "name": "props",
235669
235725
  "type": {
235670
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconArrowUpClass>>\n > & { ref?: React.Ref<IconArrowUpClass> }"
235726
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconArrowSplitClass>>\n > & { ref?: React.Ref<IconArrowSplitClass> }"
235671
235727
  }
235672
235728
  }
235673
235729
  ]
@@ -235676,10 +235732,10 @@
235676
235732
  "exports": [
235677
235733
  {
235678
235734
  "kind": "js",
235679
- "name": "IconArrowUp",
235735
+ "name": "IconArrowSplit",
235680
235736
  "declaration": {
235681
- "name": "IconArrowUp",
235682
- "module": "src/generated/react/icons/icon-arrow-up/index.ts"
235737
+ "name": "IconArrowSplit",
235738
+ "module": "src/generated/react/icons/icon-arrow-split/index.ts"
235683
235739
  }
235684
235740
  }
235685
235741
  ]
@@ -235798,16 +235854,16 @@
235798
235854
  },
235799
235855
  {
235800
235856
  "kind": "javascript-module",
235801
- "path": "src/generated/react/icons/icon-at/index.ts",
235857
+ "path": "src/generated/react/icons/icon-arrows-repeat/index.ts",
235802
235858
  "declarations": [
235803
235859
  {
235804
235860
  "kind": "function",
235805
- "name": "IconAt",
235861
+ "name": "IconArrowsRepeat",
235806
235862
  "parameters": [
235807
235863
  {
235808
235864
  "name": "props",
235809
235865
  "type": {
235810
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconAtClass>>\n > & { ref?: React.Ref<IconAtClass> }"
235866
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconArrowsRepeatClass>>\n > & { ref?: React.Ref<IconArrowsRepeatClass> }"
235811
235867
  }
235812
235868
  }
235813
235869
  ]
@@ -235816,26 +235872,26 @@
235816
235872
  "exports": [
235817
235873
  {
235818
235874
  "kind": "js",
235819
- "name": "IconAt",
235875
+ "name": "IconArrowsRepeat",
235820
235876
  "declaration": {
235821
- "name": "IconAt",
235822
- "module": "src/generated/react/icons/icon-at/index.ts"
235877
+ "name": "IconArrowsRepeat",
235878
+ "module": "src/generated/react/icons/icon-arrows-repeat/index.ts"
235823
235879
  }
235824
235880
  }
235825
235881
  ]
235826
235882
  },
235827
235883
  {
235828
235884
  "kind": "javascript-module",
235829
- "path": "src/generated/react/icons/icon-back/index.ts",
235885
+ "path": "src/generated/react/icons/icon-at/index.ts",
235830
235886
  "declarations": [
235831
235887
  {
235832
235888
  "kind": "function",
235833
- "name": "IconBack",
235889
+ "name": "IconAt",
235834
235890
  "parameters": [
235835
235891
  {
235836
235892
  "name": "props",
235837
235893
  "type": {
235838
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconBackClass>>\n > & { ref?: React.Ref<IconBackClass> }"
235894
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconAtClass>>\n > & { ref?: React.Ref<IconAtClass> }"
235839
235895
  }
235840
235896
  }
235841
235897
  ]
@@ -235844,26 +235900,26 @@
235844
235900
  "exports": [
235845
235901
  {
235846
235902
  "kind": "js",
235847
- "name": "IconBack",
235903
+ "name": "IconAt",
235848
235904
  "declaration": {
235849
- "name": "IconBack",
235850
- "module": "src/generated/react/icons/icon-back/index.ts"
235905
+ "name": "IconAt",
235906
+ "module": "src/generated/react/icons/icon-at/index.ts"
235851
235907
  }
235852
235908
  }
235853
235909
  ]
235854
235910
  },
235855
235911
  {
235856
235912
  "kind": "javascript-module",
235857
- "path": "src/generated/react/icons/icon-backward/index.ts",
235913
+ "path": "src/generated/react/icons/icon-back/index.ts",
235858
235914
  "declarations": [
235859
235915
  {
235860
235916
  "kind": "function",
235861
- "name": "IconBackward",
235917
+ "name": "IconBack",
235862
235918
  "parameters": [
235863
235919
  {
235864
235920
  "name": "props",
235865
235921
  "type": {
235866
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconBackwardClass>>\n > & { ref?: React.Ref<IconBackwardClass> }"
235922
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconBackClass>>\n > & { ref?: React.Ref<IconBackClass> }"
235867
235923
  }
235868
235924
  }
235869
235925
  ]
@@ -235872,26 +235928,26 @@
235872
235928
  "exports": [
235873
235929
  {
235874
235930
  "kind": "js",
235875
- "name": "IconBackward",
235931
+ "name": "IconBack",
235876
235932
  "declaration": {
235877
- "name": "IconBackward",
235878
- "module": "src/generated/react/icons/icon-backward/index.ts"
235933
+ "name": "IconBack",
235934
+ "module": "src/generated/react/icons/icon-back/index.ts"
235879
235935
  }
235880
235936
  }
235881
235937
  ]
235882
235938
  },
235883
235939
  {
235884
235940
  "kind": "javascript-module",
235885
- "path": "src/generated/react/icons/icon-arrows-repeat/index.ts",
235941
+ "path": "src/generated/react/icons/icon-backward/index.ts",
235886
235942
  "declarations": [
235887
235943
  {
235888
235944
  "kind": "function",
235889
- "name": "IconArrowsRepeat",
235945
+ "name": "IconBackward",
235890
235946
  "parameters": [
235891
235947
  {
235892
235948
  "name": "props",
235893
235949
  "type": {
235894
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconArrowsRepeatClass>>\n > & { ref?: React.Ref<IconArrowsRepeatClass> }"
235950
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconBackwardClass>>\n > & { ref?: React.Ref<IconBackwardClass> }"
235895
235951
  }
235896
235952
  }
235897
235953
  ]
@@ -235900,10 +235956,10 @@
235900
235956
  "exports": [
235901
235957
  {
235902
235958
  "kind": "js",
235903
- "name": "IconArrowsRepeat",
235959
+ "name": "IconBackward",
235904
235960
  "declaration": {
235905
- "name": "IconArrowsRepeat",
235906
- "module": "src/generated/react/icons/icon-arrows-repeat/index.ts"
235961
+ "name": "IconBackward",
235962
+ "module": "src/generated/react/icons/icon-backward/index.ts"
235907
235963
  }
235908
235964
  }
235909
235965
  ]
@@ -236302,16 +236358,16 @@
236302
236358
  },
236303
236359
  {
236304
236360
  "kind": "javascript-module",
236305
- "path": "src/generated/react/icons/icon-bookmark-plus/index.ts",
236361
+ "path": "src/generated/react/icons/icon-bookmark-delete/index.ts",
236306
236362
  "declarations": [
236307
236363
  {
236308
236364
  "kind": "function",
236309
- "name": "IconBookmarkPlus",
236365
+ "name": "IconBookmarkDelete",
236310
236366
  "parameters": [
236311
236367
  {
236312
236368
  "name": "props",
236313
236369
  "type": {
236314
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconBookmarkPlusClass>>\n > & { ref?: React.Ref<IconBookmarkPlusClass> }"
236370
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconBookmarkDeleteClass>>\n > & { ref?: React.Ref<IconBookmarkDeleteClass> }"
236315
236371
  }
236316
236372
  }
236317
236373
  ]
@@ -236320,26 +236376,26 @@
236320
236376
  "exports": [
236321
236377
  {
236322
236378
  "kind": "js",
236323
- "name": "IconBookmarkPlus",
236379
+ "name": "IconBookmarkDelete",
236324
236380
  "declaration": {
236325
- "name": "IconBookmarkPlus",
236326
- "module": "src/generated/react/icons/icon-bookmark-plus/index.ts"
236381
+ "name": "IconBookmarkDelete",
236382
+ "module": "src/generated/react/icons/icon-bookmark-delete/index.ts"
236327
236383
  }
236328
236384
  }
236329
236385
  ]
236330
236386
  },
236331
236387
  {
236332
236388
  "kind": "javascript-module",
236333
- "path": "src/generated/react/icons/icon-bookmark-remove/index.ts",
236389
+ "path": "src/generated/react/icons/icon-bookmark-plus/index.ts",
236334
236390
  "declarations": [
236335
236391
  {
236336
236392
  "kind": "function",
236337
- "name": "IconBookmarkRemove",
236393
+ "name": "IconBookmarkPlus",
236338
236394
  "parameters": [
236339
236395
  {
236340
236396
  "name": "props",
236341
236397
  "type": {
236342
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconBookmarkRemoveClass>>\n > & { ref?: React.Ref<IconBookmarkRemoveClass> }"
236398
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconBookmarkPlusClass>>\n > & { ref?: React.Ref<IconBookmarkPlusClass> }"
236343
236399
  }
236344
236400
  }
236345
236401
  ]
@@ -236348,26 +236404,26 @@
236348
236404
  "exports": [
236349
236405
  {
236350
236406
  "kind": "js",
236351
- "name": "IconBookmarkRemove",
236407
+ "name": "IconBookmarkPlus",
236352
236408
  "declaration": {
236353
- "name": "IconBookmarkRemove",
236354
- "module": "src/generated/react/icons/icon-bookmark-remove/index.ts"
236409
+ "name": "IconBookmarkPlus",
236410
+ "module": "src/generated/react/icons/icon-bookmark-plus/index.ts"
236355
236411
  }
236356
236412
  }
236357
236413
  ]
236358
236414
  },
236359
236415
  {
236360
236416
  "kind": "javascript-module",
236361
- "path": "src/generated/react/icons/icon-bookmark-delete/index.ts",
236417
+ "path": "src/generated/react/icons/icon-bookmark-remove/index.ts",
236362
236418
  "declarations": [
236363
236419
  {
236364
236420
  "kind": "function",
236365
- "name": "IconBookmarkDelete",
236421
+ "name": "IconBookmarkRemove",
236366
236422
  "parameters": [
236367
236423
  {
236368
236424
  "name": "props",
236369
236425
  "type": {
236370
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconBookmarkDeleteClass>>\n > & { ref?: React.Ref<IconBookmarkDeleteClass> }"
236426
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconBookmarkRemoveClass>>\n > & { ref?: React.Ref<IconBookmarkRemoveClass> }"
236371
236427
  }
236372
236428
  }
236373
236429
  ]
@@ -236376,10 +236432,10 @@
236376
236432
  "exports": [
236377
236433
  {
236378
236434
  "kind": "js",
236379
- "name": "IconBookmarkDelete",
236435
+ "name": "IconBookmarkRemove",
236380
236436
  "declaration": {
236381
- "name": "IconBookmarkDelete",
236382
- "module": "src/generated/react/icons/icon-bookmark-delete/index.ts"
236437
+ "name": "IconBookmarkRemove",
236438
+ "module": "src/generated/react/icons/icon-bookmark-remove/index.ts"
236383
236439
  }
236384
236440
  }
236385
236441
  ]
@@ -237504,6 +237560,34 @@
237504
237560
  }
237505
237561
  ]
237506
237562
  },
237563
+ {
237564
+ "kind": "javascript-module",
237565
+ "path": "src/generated/react/icons/icon-chart-one/index.ts",
237566
+ "declarations": [
237567
+ {
237568
+ "kind": "function",
237569
+ "name": "IconChartOne",
237570
+ "parameters": [
237571
+ {
237572
+ "name": "props",
237573
+ "type": {
237574
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconChartOneClass>>\n > & { ref?: React.Ref<IconChartOneClass> }"
237575
+ }
237576
+ }
237577
+ ]
237578
+ }
237579
+ ],
237580
+ "exports": [
237581
+ {
237582
+ "kind": "js",
237583
+ "name": "IconChartOne",
237584
+ "declaration": {
237585
+ "name": "IconChartOne",
237586
+ "module": "src/generated/react/icons/icon-chart-one/index.ts"
237587
+ }
237588
+ }
237589
+ ]
237590
+ },
237507
237591
  {
237508
237592
  "kind": "javascript-module",
237509
237593
  "path": "src/generated/react/icons/icon-chart-presentation/index.ts",
@@ -237644,34 +237728,6 @@
237644
237728
  }
237645
237729
  ]
237646
237730
  },
237647
- {
237648
- "kind": "javascript-module",
237649
- "path": "src/generated/react/icons/icon-chart-one/index.ts",
237650
- "declarations": [
237651
- {
237652
- "kind": "function",
237653
- "name": "IconChartOne",
237654
- "parameters": [
237655
- {
237656
- "name": "props",
237657
- "type": {
237658
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconChartOneClass>>\n > & { ref?: React.Ref<IconChartOneClass> }"
237659
- }
237660
- }
237661
- ]
237662
- }
237663
- ],
237664
- "exports": [
237665
- {
237666
- "kind": "js",
237667
- "name": "IconChartOne",
237668
- "declaration": {
237669
- "name": "IconChartOne",
237670
- "module": "src/generated/react/icons/icon-chart-one/index.ts"
237671
- }
237672
- }
237673
- ]
237674
- },
237675
237731
  {
237676
237732
  "kind": "javascript-module",
237677
237733
  "path": "src/generated/react/icons/icon-chevron-double-down/index.ts",
@@ -237842,16 +237898,16 @@
237842
237898
  },
237843
237899
  {
237844
237900
  "kind": "javascript-module",
237845
- "path": "src/generated/react/icons/icon-chevron-left/index.ts",
237901
+ "path": "src/generated/react/icons/icon-chevron-left-small/index.ts",
237846
237902
  "declarations": [
237847
237903
  {
237848
237904
  "kind": "function",
237849
- "name": "IconChevronLeft",
237905
+ "name": "IconChevronLeftSmall",
237850
237906
  "parameters": [
237851
237907
  {
237852
237908
  "name": "props",
237853
237909
  "type": {
237854
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconChevronLeftClass>>\n > & { ref?: React.Ref<IconChevronLeftClass> }"
237910
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconChevronLeftSmallClass>>\n > & { ref?: React.Ref<IconChevronLeftSmallClass> }"
237855
237911
  }
237856
237912
  }
237857
237913
  ]
@@ -237860,26 +237916,26 @@
237860
237916
  "exports": [
237861
237917
  {
237862
237918
  "kind": "js",
237863
- "name": "IconChevronLeft",
237919
+ "name": "IconChevronLeftSmall",
237864
237920
  "declaration": {
237865
- "name": "IconChevronLeft",
237866
- "module": "src/generated/react/icons/icon-chevron-left/index.ts"
237921
+ "name": "IconChevronLeftSmall",
237922
+ "module": "src/generated/react/icons/icon-chevron-left-small/index.ts"
237867
237923
  }
237868
237924
  }
237869
237925
  ]
237870
237926
  },
237871
237927
  {
237872
237928
  "kind": "javascript-module",
237873
- "path": "src/generated/react/icons/icon-chevron-left-small/index.ts",
237929
+ "path": "src/generated/react/icons/icon-chevron-right/index.ts",
237874
237930
  "declarations": [
237875
237931
  {
237876
237932
  "kind": "function",
237877
- "name": "IconChevronLeftSmall",
237933
+ "name": "IconChevronRight",
237878
237934
  "parameters": [
237879
237935
  {
237880
237936
  "name": "props",
237881
237937
  "type": {
237882
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconChevronLeftSmallClass>>\n > & { ref?: React.Ref<IconChevronLeftSmallClass> }"
237938
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconChevronRightClass>>\n > & { ref?: React.Ref<IconChevronRightClass> }"
237883
237939
  }
237884
237940
  }
237885
237941
  ]
@@ -237888,26 +237944,26 @@
237888
237944
  "exports": [
237889
237945
  {
237890
237946
  "kind": "js",
237891
- "name": "IconChevronLeftSmall",
237947
+ "name": "IconChevronRight",
237892
237948
  "declaration": {
237893
- "name": "IconChevronLeftSmall",
237894
- "module": "src/generated/react/icons/icon-chevron-left-small/index.ts"
237949
+ "name": "IconChevronRight",
237950
+ "module": "src/generated/react/icons/icon-chevron-right/index.ts"
237895
237951
  }
237896
237952
  }
237897
237953
  ]
237898
237954
  },
237899
237955
  {
237900
237956
  "kind": "javascript-module",
237901
- "path": "src/generated/react/icons/icon-chevron-right/index.ts",
237957
+ "path": "src/generated/react/icons/icon-chevron-left/index.ts",
237902
237958
  "declarations": [
237903
237959
  {
237904
237960
  "kind": "function",
237905
- "name": "IconChevronRight",
237961
+ "name": "IconChevronLeft",
237906
237962
  "parameters": [
237907
237963
  {
237908
237964
  "name": "props",
237909
237965
  "type": {
237910
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconChevronRightClass>>\n > & { ref?: React.Ref<IconChevronRightClass> }"
237966
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconChevronLeftClass>>\n > & { ref?: React.Ref<IconChevronLeftClass> }"
237911
237967
  }
237912
237968
  }
237913
237969
  ]
@@ -237916,10 +237972,10 @@
237916
237972
  "exports": [
237917
237973
  {
237918
237974
  "kind": "js",
237919
- "name": "IconChevronRight",
237975
+ "name": "IconChevronLeft",
237920
237976
  "declaration": {
237921
- "name": "IconChevronRight",
237922
- "module": "src/generated/react/icons/icon-chevron-right/index.ts"
237977
+ "name": "IconChevronLeft",
237978
+ "module": "src/generated/react/icons/icon-chevron-left/index.ts"
237923
237979
  }
237924
237980
  }
237925
237981
  ]
@@ -239578,16 +239634,16 @@
239578
239634
  },
239579
239635
  {
239580
239636
  "kind": "javascript-module",
239581
- "path": "src/generated/react/icons/icon-fullscreen/index.ts",
239637
+ "path": "src/generated/react/icons/icon-folder-upload/index.ts",
239582
239638
  "declarations": [
239583
239639
  {
239584
239640
  "kind": "function",
239585
- "name": "IconFullscreen",
239641
+ "name": "IconFolderUpload",
239586
239642
  "parameters": [
239587
239643
  {
239588
239644
  "name": "props",
239589
239645
  "type": {
239590
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconFullscreenClass>>\n > & { ref?: React.Ref<IconFullscreenClass> }"
239646
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconFolderUploadClass>>\n > & { ref?: React.Ref<IconFolderUploadClass> }"
239591
239647
  }
239592
239648
  }
239593
239649
  ]
@@ -239596,26 +239652,26 @@
239596
239652
  "exports": [
239597
239653
  {
239598
239654
  "kind": "js",
239599
- "name": "IconFullscreen",
239655
+ "name": "IconFolderUpload",
239600
239656
  "declaration": {
239601
- "name": "IconFullscreen",
239602
- "module": "src/generated/react/icons/icon-fullscreen/index.ts"
239657
+ "name": "IconFolderUpload",
239658
+ "module": "src/generated/react/icons/icon-folder-upload/index.ts"
239603
239659
  }
239604
239660
  }
239605
239661
  ]
239606
239662
  },
239607
239663
  {
239608
239664
  "kind": "javascript-module",
239609
- "path": "src/generated/react/icons/icon-folder-upload/index.ts",
239665
+ "path": "src/generated/react/icons/icon-fullscreen/index.ts",
239610
239666
  "declarations": [
239611
239667
  {
239612
239668
  "kind": "function",
239613
- "name": "IconFolderUpload",
239669
+ "name": "IconFullscreen",
239614
239670
  "parameters": [
239615
239671
  {
239616
239672
  "name": "props",
239617
239673
  "type": {
239618
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconFolderUploadClass>>\n > & { ref?: React.Ref<IconFolderUploadClass> }"
239674
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconFullscreenClass>>\n > & { ref?: React.Ref<IconFullscreenClass> }"
239619
239675
  }
239620
239676
  }
239621
239677
  ]
@@ -239624,10 +239680,10 @@
239624
239680
  "exports": [
239625
239681
  {
239626
239682
  "kind": "js",
239627
- "name": "IconFolderUpload",
239683
+ "name": "IconFullscreen",
239628
239684
  "declaration": {
239629
- "name": "IconFolderUpload",
239630
- "module": "src/generated/react/icons/icon-folder-upload/index.ts"
239685
+ "name": "IconFullscreen",
239686
+ "module": "src/generated/react/icons/icon-fullscreen/index.ts"
239631
239687
  }
239632
239688
  }
239633
239689
  ]
@@ -240502,16 +240558,16 @@
240502
240558
  },
240503
240559
  {
240504
240560
  "kind": "javascript-module",
240505
- "path": "src/generated/react/icons/icon-line-chart-two/index.ts",
240561
+ "path": "src/generated/react/icons/icon-line-chart-three/index.ts",
240506
240562
  "declarations": [
240507
240563
  {
240508
240564
  "kind": "function",
240509
- "name": "IconLineChartTwo",
240565
+ "name": "IconLineChartThree",
240510
240566
  "parameters": [
240511
240567
  {
240512
240568
  "name": "props",
240513
240569
  "type": {
240514
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconLineChartTwoClass>>\n > & { ref?: React.Ref<IconLineChartTwoClass> }"
240570
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconLineChartThreeClass>>\n > & { ref?: React.Ref<IconLineChartThreeClass> }"
240515
240571
  }
240516
240572
  }
240517
240573
  ]
@@ -240520,26 +240576,26 @@
240520
240576
  "exports": [
240521
240577
  {
240522
240578
  "kind": "js",
240523
- "name": "IconLineChartTwo",
240579
+ "name": "IconLineChartThree",
240524
240580
  "declaration": {
240525
- "name": "IconLineChartTwo",
240526
- "module": "src/generated/react/icons/icon-line-chart-two/index.ts"
240581
+ "name": "IconLineChartThree",
240582
+ "module": "src/generated/react/icons/icon-line-chart-three/index.ts"
240527
240583
  }
240528
240584
  }
240529
240585
  ]
240530
240586
  },
240531
240587
  {
240532
240588
  "kind": "javascript-module",
240533
- "path": "src/generated/react/icons/icon-line-chart-three/index.ts",
240589
+ "path": "src/generated/react/icons/icon-line-chart-two/index.ts",
240534
240590
  "declarations": [
240535
240591
  {
240536
240592
  "kind": "function",
240537
- "name": "IconLineChartThree",
240593
+ "name": "IconLineChartTwo",
240538
240594
  "parameters": [
240539
240595
  {
240540
240596
  "name": "props",
240541
240597
  "type": {
240542
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconLineChartThreeClass>>\n > & { ref?: React.Ref<IconLineChartThreeClass> }"
240598
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconLineChartTwoClass>>\n > & { ref?: React.Ref<IconLineChartTwoClass> }"
240543
240599
  }
240544
240600
  }
240545
240601
  ]
@@ -240548,10 +240604,10 @@
240548
240604
  "exports": [
240549
240605
  {
240550
240606
  "kind": "js",
240551
- "name": "IconLineChartThree",
240607
+ "name": "IconLineChartTwo",
240552
240608
  "declaration": {
240553
- "name": "IconLineChartThree",
240554
- "module": "src/generated/react/icons/icon-line-chart-three/index.ts"
240609
+ "name": "IconLineChartTwo",
240610
+ "module": "src/generated/react/icons/icon-line-chart-two/index.ts"
240555
240611
  }
240556
240612
  }
240557
240613
  ]
@@ -240978,16 +241034,16 @@
240978
241034
  },
240979
241035
  {
240980
241036
  "kind": "javascript-module",
240981
- "path": "src/generated/react/icons/icon-office/index.ts",
241037
+ "path": "src/generated/react/icons/icon-mute/index.ts",
240982
241038
  "declarations": [
240983
241039
  {
240984
241040
  "kind": "function",
240985
- "name": "IconOffice",
241041
+ "name": "IconMute",
240986
241042
  "parameters": [
240987
241043
  {
240988
241044
  "name": "props",
240989
241045
  "type": {
240990
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconOfficeClass>>\n > & { ref?: React.Ref<IconOfficeClass> }"
241046
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconMuteClass>>\n > & { ref?: React.Ref<IconMuteClass> }"
240991
241047
  }
240992
241048
  }
240993
241049
  ]
@@ -240996,26 +241052,26 @@
240996
241052
  "exports": [
240997
241053
  {
240998
241054
  "kind": "js",
240999
- "name": "IconOffice",
241055
+ "name": "IconMute",
241000
241056
  "declaration": {
241001
- "name": "IconOffice",
241002
- "module": "src/generated/react/icons/icon-office/index.ts"
241057
+ "name": "IconMute",
241058
+ "module": "src/generated/react/icons/icon-mute/index.ts"
241003
241059
  }
241004
241060
  }
241005
241061
  ]
241006
241062
  },
241007
241063
  {
241008
241064
  "kind": "javascript-module",
241009
- "path": "src/generated/react/icons/icon-other/index.ts",
241065
+ "path": "src/generated/react/icons/icon-office/index.ts",
241010
241066
  "declarations": [
241011
241067
  {
241012
241068
  "kind": "function",
241013
- "name": "IconOther",
241069
+ "name": "IconOffice",
241014
241070
  "parameters": [
241015
241071
  {
241016
241072
  "name": "props",
241017
241073
  "type": {
241018
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconOtherClass>>\n > & { ref?: React.Ref<IconOtherClass> }"
241074
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconOfficeClass>>\n > & { ref?: React.Ref<IconOfficeClass> }"
241019
241075
  }
241020
241076
  }
241021
241077
  ]
@@ -241024,26 +241080,26 @@
241024
241080
  "exports": [
241025
241081
  {
241026
241082
  "kind": "js",
241027
- "name": "IconOther",
241083
+ "name": "IconOffice",
241028
241084
  "declaration": {
241029
- "name": "IconOther",
241030
- "module": "src/generated/react/icons/icon-other/index.ts"
241085
+ "name": "IconOffice",
241086
+ "module": "src/generated/react/icons/icon-office/index.ts"
241031
241087
  }
241032
241088
  }
241033
241089
  ]
241034
241090
  },
241035
241091
  {
241036
241092
  "kind": "javascript-module",
241037
- "path": "src/generated/react/icons/icon-mute/index.ts",
241093
+ "path": "src/generated/react/icons/icon-other/index.ts",
241038
241094
  "declarations": [
241039
241095
  {
241040
241096
  "kind": "function",
241041
- "name": "IconMute",
241097
+ "name": "IconOther",
241042
241098
  "parameters": [
241043
241099
  {
241044
241100
  "name": "props",
241045
241101
  "type": {
241046
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconMuteClass>>\n > & { ref?: React.Ref<IconMuteClass> }"
241102
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconOtherClass>>\n > & { ref?: React.Ref<IconOtherClass> }"
241047
241103
  }
241048
241104
  }
241049
241105
  ]
@@ -241052,10 +241108,10 @@
241052
241108
  "exports": [
241053
241109
  {
241054
241110
  "kind": "js",
241055
- "name": "IconMute",
241111
+ "name": "IconOther",
241056
241112
  "declaration": {
241057
- "name": "IconMute",
241058
- "module": "src/generated/react/icons/icon-mute/index.ts"
241113
+ "name": "IconOther",
241114
+ "module": "src/generated/react/icons/icon-other/index.ts"
241059
241115
  }
241060
241116
  }
241061
241117
  ]
@@ -241564,6 +241620,34 @@
241564
241620
  }
241565
241621
  ]
241566
241622
  },
241623
+ {
241624
+ "kind": "javascript-module",
241625
+ "path": "src/generated/react/icons/icon-people-remove/index.ts",
241626
+ "declarations": [
241627
+ {
241628
+ "kind": "function",
241629
+ "name": "IconPeopleRemove",
241630
+ "parameters": [
241631
+ {
241632
+ "name": "props",
241633
+ "type": {
241634
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconPeopleRemoveClass>>\n > & { ref?: React.Ref<IconPeopleRemoveClass> }"
241635
+ }
241636
+ }
241637
+ ]
241638
+ }
241639
+ ],
241640
+ "exports": [
241641
+ {
241642
+ "kind": "js",
241643
+ "name": "IconPeopleRemove",
241644
+ "declaration": {
241645
+ "name": "IconPeopleRemove",
241646
+ "module": "src/generated/react/icons/icon-people-remove/index.ts"
241647
+ }
241648
+ }
241649
+ ]
241650
+ },
241567
241651
  {
241568
241652
  "kind": "javascript-module",
241569
241653
  "path": "src/generated/react/icons/icon-percent/index.ts",
@@ -241732,34 +241816,6 @@
241732
241816
  }
241733
241817
  ]
241734
241818
  },
241735
- {
241736
- "kind": "javascript-module",
241737
- "path": "src/generated/react/icons/icon-people-remove/index.ts",
241738
- "declarations": [
241739
- {
241740
- "kind": "function",
241741
- "name": "IconPeopleRemove",
241742
- "parameters": [
241743
- {
241744
- "name": "props",
241745
- "type": {
241746
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconPeopleRemoveClass>>\n > & { ref?: React.Ref<IconPeopleRemoveClass> }"
241747
- }
241748
- }
241749
- ]
241750
- }
241751
- ],
241752
- "exports": [
241753
- {
241754
- "kind": "js",
241755
- "name": "IconPeopleRemove",
241756
- "declaration": {
241757
- "name": "IconPeopleRemove",
241758
- "module": "src/generated/react/icons/icon-people-remove/index.ts"
241759
- }
241760
- }
241761
- ]
241762
- },
241763
241819
  {
241764
241820
  "kind": "javascript-module",
241765
241821
  "path": "src/generated/react/icons/icon-pinch/index.ts",
@@ -241846,16 +241902,16 @@
241846
241902
  },
241847
241903
  {
241848
241904
  "kind": "javascript-module",
241849
- "path": "src/generated/react/icons/icon-plus-small/index.ts",
241905
+ "path": "src/generated/react/icons/icon-plus-large/index.ts",
241850
241906
  "declarations": [
241851
241907
  {
241852
241908
  "kind": "function",
241853
- "name": "IconPlusSmall",
241909
+ "name": "IconPlusLarge",
241854
241910
  "parameters": [
241855
241911
  {
241856
241912
  "name": "props",
241857
241913
  "type": {
241858
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconPlusSmallClass>>\n > & { ref?: React.Ref<IconPlusSmallClass> }"
241914
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconPlusLargeClass>>\n > & { ref?: React.Ref<IconPlusLargeClass> }"
241859
241915
  }
241860
241916
  }
241861
241917
  ]
@@ -241864,26 +241920,26 @@
241864
241920
  "exports": [
241865
241921
  {
241866
241922
  "kind": "js",
241867
- "name": "IconPlusSmall",
241923
+ "name": "IconPlusLarge",
241868
241924
  "declaration": {
241869
- "name": "IconPlusSmall",
241870
- "module": "src/generated/react/icons/icon-plus-small/index.ts"
241925
+ "name": "IconPlusLarge",
241926
+ "module": "src/generated/react/icons/icon-plus-large/index.ts"
241871
241927
  }
241872
241928
  }
241873
241929
  ]
241874
241930
  },
241875
241931
  {
241876
241932
  "kind": "javascript-module",
241877
- "path": "src/generated/react/icons/icon-plus-large/index.ts",
241933
+ "path": "src/generated/react/icons/icon-plus-small/index.ts",
241878
241934
  "declarations": [
241879
241935
  {
241880
241936
  "kind": "function",
241881
- "name": "IconPlusLarge",
241937
+ "name": "IconPlusSmall",
241882
241938
  "parameters": [
241883
241939
  {
241884
241940
  "name": "props",
241885
241941
  "type": {
241886
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconPlusLargeClass>>\n > & { ref?: React.Ref<IconPlusLargeClass> }"
241942
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconPlusSmallClass>>\n > & { ref?: React.Ref<IconPlusSmallClass> }"
241887
241943
  }
241888
241944
  }
241889
241945
  ]
@@ -241892,10 +241948,10 @@
241892
241948
  "exports": [
241893
241949
  {
241894
241950
  "kind": "js",
241895
- "name": "IconPlusLarge",
241951
+ "name": "IconPlusSmall",
241896
241952
  "declaration": {
241897
- "name": "IconPlusLarge",
241898
- "module": "src/generated/react/icons/icon-plus-large/index.ts"
241953
+ "name": "IconPlusSmall",
241954
+ "module": "src/generated/react/icons/icon-plus-small/index.ts"
241899
241955
  }
241900
241956
  }
241901
241957
  ]
@@ -242770,16 +242826,16 @@
242770
242826
  },
242771
242827
  {
242772
242828
  "kind": "javascript-module",
242773
- "path": "src/generated/react/icons/icon-shield-crossed/index.ts",
242829
+ "path": "src/generated/react/icons/icon-shopping-bag/index.ts",
242774
242830
  "declarations": [
242775
242831
  {
242776
242832
  "kind": "function",
242777
- "name": "IconShieldCrossed",
242833
+ "name": "IconShoppingBag",
242778
242834
  "parameters": [
242779
242835
  {
242780
242836
  "name": "props",
242781
242837
  "type": {
242782
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconShieldCrossedClass>>\n > & { ref?: React.Ref<IconShieldCrossedClass> }"
242838
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconShoppingBagClass>>\n > & { ref?: React.Ref<IconShoppingBagClass> }"
242783
242839
  }
242784
242840
  }
242785
242841
  ]
@@ -242788,26 +242844,26 @@
242788
242844
  "exports": [
242789
242845
  {
242790
242846
  "kind": "js",
242791
- "name": "IconShieldCrossed",
242847
+ "name": "IconShoppingBag",
242792
242848
  "declaration": {
242793
- "name": "IconShieldCrossed",
242794
- "module": "src/generated/react/icons/icon-shield-crossed/index.ts"
242849
+ "name": "IconShoppingBag",
242850
+ "module": "src/generated/react/icons/icon-shopping-bag/index.ts"
242795
242851
  }
242796
242852
  }
242797
242853
  ]
242798
242854
  },
242799
242855
  {
242800
242856
  "kind": "javascript-module",
242801
- "path": "src/generated/react/icons/icon-shopping-bag/index.ts",
242857
+ "path": "src/generated/react/icons/icon-shield-crossed/index.ts",
242802
242858
  "declarations": [
242803
242859
  {
242804
242860
  "kind": "function",
242805
- "name": "IconShoppingBag",
242861
+ "name": "IconShieldCrossed",
242806
242862
  "parameters": [
242807
242863
  {
242808
242864
  "name": "props",
242809
242865
  "type": {
242810
- "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconShoppingBagClass>>\n > & { ref?: React.Ref<IconShoppingBagClass> }"
242866
+ "text": "React.ComponentProps<\n ReturnType<typeof getReactComponent<IconShieldCrossedClass>>\n > & { ref?: React.Ref<IconShieldCrossedClass> }"
242811
242867
  }
242812
242868
  }
242813
242869
  ]
@@ -242816,10 +242872,10 @@
242816
242872
  "exports": [
242817
242873
  {
242818
242874
  "kind": "js",
242819
- "name": "IconShoppingBag",
242875
+ "name": "IconShieldCrossed",
242820
242876
  "declaration": {
242821
- "name": "IconShoppingBag",
242822
- "module": "src/generated/react/icons/icon-shopping-bag/index.ts"
242877
+ "name": "IconShieldCrossed",
242878
+ "module": "src/generated/react/icons/icon-shield-crossed/index.ts"
242823
242879
  }
242824
242880
  }
242825
242881
  ]