@synergy-design-system/react 3.1.0 → 3.2.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,27 @@
1
1
  # @synergy-design-system/react
2
2
 
3
+ ## 3.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1164](https://github.com/synergy-design-system/synergy-design-system/pull/1164) [`c9fb440`](https://github.com/synergy-design-system/synergy-design-system/commit/c9fb4405c0a1eb3499e4753447ac643ae632ff56) Thanks [@kirchsuSICKAG](https://github.com/kirchsuSICKAG)! - Released on: 2026-02-05
8
+
9
+ feat: ✨ syn-combobox multiple (#627)
10
+
11
+ Adds multiple selection functionality to the `syn-combobox` component, enabling users to select multiple options simultaneously.
12
+
13
+ **Properties Added:**
14
+ - `multiple`: Enables multiple selection mode
15
+ - `delimiter`: Customizable value separator (default: ` ` (space))
16
+ - `max-options-visible`: Controls visible tag limit with overflow handling
17
+ - `getTag`: Custom tag rendering function
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [[`c9fb440`](https://github.com/synergy-design-system/synergy-design-system/commit/c9fb4405c0a1eb3499e4753447ac643ae632ff56)]:
22
+ - @synergy-design-system/components@3.2.0
23
+ - @synergy-design-system/tokens@3.2.0
24
+
3
25
  ## 3.1.0
4
26
 
5
27
  ### Patch Changes
@@ -27,4 +27,4 @@ var SynCombobox = createComponent({
27
27
  export {
28
28
  SynCombobox
29
29
  };
30
- //# sourceMappingURL=chunk.S7IA5L2L.js.map
30
+ //# sourceMappingURL=chunk.S53BAHWU.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/components/combobox.ts"],
4
+ "sourcesContent": ["// ---------------------------------------------------------------------\n// \uD83D\uDD12 AUTOGENERATED @synergy-design-system/react wrappers for @synergy-design-system/components\n// Please do not edit this file directly!\n// It will get recreated when running pnpm build.\n// ---------------------------------------------------------------------\nimport * as React from 'react';\nimport { createComponent } from '@lit/react';\nimport Component from '@synergy-design-system/components/components/combobox/combobox.component.js';\n\nimport { type EventName } from '@lit/react';\nimport type { SynChangeEvent } from '@synergy-design-system/components';\nimport type { SynClearEvent } from '@synergy-design-system/components';\nimport type { SynInputEvent } from '@synergy-design-system/components';\nimport type { SynFocusEvent } from '@synergy-design-system/components';\nimport type { SynBlurEvent } from '@synergy-design-system/components';\nimport type { SynShowEvent } from '@synergy-design-system/components';\nimport type { SynAfterShowEvent } from '@synergy-design-system/components';\nimport type { SynHideEvent } from '@synergy-design-system/components';\nimport type { SynAfterHideEvent } from '@synergy-design-system/components';\nimport type { SynInvalidEvent } from '@synergy-design-system/components';\nimport type { SynErrorEvent } from '@synergy-design-system/components';\n\nconst tagName = 'syn-combobox';\nComponent.define('syn-combobox');\n\n/**\n * @summary A combobox component that combines the functionality of a text input with a dropdown listbox,\n * allowing users to either select from predefined options or enter custom values (when not restricted).\n *\n * @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-combobox--docs\n * @status stable\n *\n * @dependency syn-icon\n * @dependency syn-popup\n * @dependency syn-tag\n *\n * @slot - The listbox options. Must be `<syn-option>` elements.\n * You can use `<syn-optgroup>`'s to group items visually.\n * @slot label - The combobox's label. Alternatively, you can use the `label` attribute.\n * @slot prefix - Used to prepend a presentational icon or similar element to the combobox.\n * @slot suffix - Used to append a presentational icon or similar element to the combobox.\n * @slot clear-icon - An icon to use in lieu of the default clear icon.\n * @slot expand-icon - The icon to show when the control is expanded and collapsed.\n * Rotates on open and close.\n * @slot help-text - Text that describes how to use the combobox.\n * Alternatively, you can use the `help-text` attribute.\n *\n * @event syn-change - Emitted when the control's value changes.\n * @event syn-clear - Emitted when the control's value is cleared.\n * @event syn-input - Emitted when the control receives input.\n * @event syn-focus - Emitted when the control gains focus.\n * @event syn-blur - Emitted when the control loses focus.\n * @event syn-show - Emitted when the combobox's menu opens.\n * @event syn-after-show - Emitted after the combobox's menu opens and all animations are complete.\n * @event syn-hide - Emitted when the combobox's menu closes.\n * @event syn-after-hide - Emitted after the combobox's menu closes and all animations are complete.\n * @event syn-invalid - Emitted when the form control has been checked for validity\n * and its constraints aren't satisfied.\n * @event syn-error - Emitted when the combobox menu fails to open.\n *\n * @csspart form-control - The form control that wraps the label, combobox, and help text.\n * @csspart form-control-label - The label's wrapper.\n * @csspart form-control-input - The combobox's wrapper.\n * @csspart form-control-help-text - The help text's wrapper.\n * @csspart combobox - The container that wraps the prefix, combobox, clear icon, and expand button.\n * @csspart prefix - The container that wraps the prefix slot.\n * @csspart suffix - The container that wraps the suffix slot.\n * @csspart display-input - The element that displays the selected option's label,\n * an `<input>` element.\n * @csspart listbox - The listbox container where the options are slotted\n * and the filtered options list exists.\n * @csspart filtered-listbox - The container that wraps the filtered options.\n * @csspart clear-button - The clear button.\n * @csspart expand-icon - The container that wraps the expand icon.\n * @csspart popup - The popup's exported `popup` part.\n * Use this to target the tooltip's popup container.\n * @csspart no-results - The container that wraps the \"no results\" message.\n * @csspart tags - The container that houses option tags when `multiple` is used.\n * @csspart tag - The individual tags that represent each selected option in `multiple`.\n * @csspart tag__base - The tag's base part.\n * @csspart tag__content - The tag's content part.\n * @csspart tag__remove-button - The tag's remove button.\n * @csspart tag__remove-button__base - The tag's remove button base part.\n *\n * @animation combobox.show - The animation to use when showing the combobox.\n * @animation combobox.hide - The animation to use when hiding the combobox.\n */\nexport const SynCombobox = createComponent({\n displayName: 'SynCombobox',\n elementClass: Component,\n events: {\n onSynChange: 'syn-change' as EventName<SynChangeEvent>,\n onSynClear: 'syn-clear' as EventName<SynClearEvent>,\n onSynInput: 'syn-input' as EventName<SynInputEvent>,\n onSynFocus: 'syn-focus' as EventName<SynFocusEvent>,\n onSynBlur: 'syn-blur' as EventName<SynBlurEvent>,\n onSynShow: 'syn-show' as EventName<SynShowEvent>,\n onSynAfterShow: 'syn-after-show' as EventName<SynAfterShowEvent>,\n onSynHide: 'syn-hide' as EventName<SynHideEvent>,\n onSynAfterHide: 'syn-after-hide' as EventName<SynAfterHideEvent>,\n onSynInvalid: 'syn-invalid' as EventName<SynInvalidEvent>,\n onSynError: 'syn-error' as EventName<SynErrorEvent>,\n },\n react: React,\n tagName,\n});\n\nexport type { SynChangeEvent } from '@synergy-design-system/components';\nexport type { SynClearEvent } from '@synergy-design-system/components';\nexport type { SynInputEvent } from '@synergy-design-system/components';\nexport type { SynFocusEvent } from '@synergy-design-system/components';\nexport type { SynBlurEvent } from '@synergy-design-system/components';\nexport type { SynShowEvent } from '@synergy-design-system/components';\nexport type { SynAfterShowEvent } from '@synergy-design-system/components';\nexport type { SynHideEvent } from '@synergy-design-system/components';\nexport type { SynAfterHideEvent } from '@synergy-design-system/components';\nexport type { SynInvalidEvent } from '@synergy-design-system/components';\nexport type { SynErrorEvent } from '@synergy-design-system/components';\n"],
5
+ "mappings": ";AAKA,YAAY,WAAW;AACvB,SAAS,uBAAuB;AAChC,OAAO,eAAe;AAetB,IAAM,UAAU;AAChB,UAAU,OAAO,cAAc;AAgExB,IAAM,cAAc,gBAAgB;AAAA,EACzC,aAAa;AAAA,EACb,cAAc;AAAA,EACd,QAAQ;AAAA,IACN,aAAa;AAAA,IACb,YAAY;AAAA,IACZ,YAAY;AAAA,IACZ,YAAY;AAAA,IACZ,WAAW;AAAA,IACX,WAAW;AAAA,IACX,gBAAgB;AAAA,IAChB,WAAW;AAAA,IACX,gBAAgB;AAAA,IAChB,cAAc;AAAA,IACd,YAAY;AAAA,EACd;AAAA,EACA,OAAO;AAAA,EACP;AACF,CAAC;",
6
+ "names": []
7
+ }
@@ -12,12 +12,15 @@ import type { SynAfterHideEvent } from '@synergy-design-system/components';
12
12
  import type { SynInvalidEvent } from '@synergy-design-system/components';
13
13
  import type { SynErrorEvent } from '@synergy-design-system/components';
14
14
  /**
15
- * @summary Comboboxes allow you to choose items from a menu of predefined options.
15
+ * @summary A combobox component that combines the functionality of a text input with a dropdown listbox,
16
+ * allowing users to either select from predefined options or enter custom values (when not restricted).
17
+ *
16
18
  * @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-combobox--docs
17
19
  * @status stable
18
20
  *
19
21
  * @dependency syn-icon
20
22
  * @dependency syn-popup
23
+ * @dependency syn-tag
21
24
  *
22
25
  * @slot - The listbox options. Must be `<syn-option>` elements.
23
26
  * You can use `<syn-optgroup>`'s to group items visually.
@@ -47,7 +50,7 @@ import type { SynErrorEvent } from '@synergy-design-system/components';
47
50
  * @csspart form-control-label - The label's wrapper.
48
51
  * @csspart form-control-input - The combobox's wrapper.
49
52
  * @csspart form-control-help-text - The help text's wrapper.
50
- * @csspart combobox - The container the wraps the prefix, combobox, clear icon, and expand button.
53
+ * @csspart combobox - The container that wraps the prefix, combobox, clear icon, and expand button.
51
54
  * @csspart prefix - The container that wraps the prefix slot.
52
55
  * @csspart suffix - The container that wraps the suffix slot.
53
56
  * @csspart display-input - The element that displays the selected option's label,
@@ -60,6 +63,12 @@ import type { SynErrorEvent } from '@synergy-design-system/components';
60
63
  * @csspart popup - The popup's exported `popup` part.
61
64
  * Use this to target the tooltip's popup container.
62
65
  * @csspart no-results - The container that wraps the "no results" message.
66
+ * @csspart tags - The container that houses option tags when `multiple` is used.
67
+ * @csspart tag - The individual tags that represent each selected option in `multiple`.
68
+ * @csspart tag__base - The tag's base part.
69
+ * @csspart tag__content - The tag's content part.
70
+ * @csspart tag__remove-button - The tag's remove button.
71
+ * @csspart tag__remove-button__base - The tag's remove button base part.
63
72
  *
64
73
  * @animation combobox.show - The animation to use when showing the combobox.
65
74
  * @animation combobox.hide - The animation to use when hiding the combobox.
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  SynCombobox
3
- } from "../chunks/chunk.S7IA5L2L.js";
3
+ } from "../chunks/chunk.S53BAHWU.js";
4
4
  export {
5
5
  SynCombobox
6
6
  };
package/dist/index.js CHANGED
@@ -99,7 +99,7 @@ import {
99
99
  } from "./chunks/chunk.GKMBLOJD.js";
100
100
  import {
101
101
  SynCombobox
102
- } from "./chunks/chunk.S7IA5L2L.js";
102
+ } from "./chunks/chunk.S53BAHWU.js";
103
103
  import {
104
104
  SynDetails
105
105
  } from "./chunks/chunk.PACGWWN3.js";
@@ -230,12 +230,15 @@ export type SynCustomElement<SynElement extends HTMLElement, Events extends SynE
230
230
  ]
231
231
  ]>;
232
232
  /**
233
- * @summary Comboboxes allow you to choose items from a menu of predefined options.
233
+ * @summary A combobox component that combines the functionality of a text input with a dropdown listbox,
234
+ * allowing users to either select from predefined options or enter custom values (when not restricted).
235
+ *
234
236
  * @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-combobox--docs
235
237
  * @status stable
236
238
  *
237
239
  * @dependency syn-icon
238
240
  * @dependency syn-popup
241
+ * @dependency syn-tag
239
242
  *
240
243
  * @slot - The listbox options. Must be `<syn-option>` elements.
241
244
  * You can use `<syn-optgroup>`'s to group items visually.
@@ -265,7 +268,7 @@ export type SynCustomElement<SynElement extends HTMLElement, Events extends SynE
265
268
  * @csspart form-control-label - The label's wrapper.
266
269
  * @csspart form-control-input - The combobox's wrapper.
267
270
  * @csspart form-control-help-text - The help text's wrapper.
268
- * @csspart combobox - The container the wraps the prefix, combobox, clear icon, and expand button.
271
+ * @csspart combobox - The container that wraps the prefix, combobox, clear icon, and expand button.
269
272
  * @csspart prefix - The container that wraps the prefix slot.
270
273
  * @csspart suffix - The container that wraps the suffix slot.
271
274
  * @csspart display-input - The element that displays the selected option's label,
@@ -278,6 +281,12 @@ export type SynCustomElement<SynElement extends HTMLElement, Events extends SynE
278
281
  * @csspart popup - The popup's exported `popup` part.
279
282
  * Use this to target the tooltip's popup container.
280
283
  * @csspart no-results - The container that wraps the "no results" message.
284
+ * @csspart tags - The container that houses option tags when `multiple` is used.
285
+ * @csspart tag - The individual tags that represent each selected option in `multiple`.
286
+ * @csspart tag__base - The tag's base part.
287
+ * @csspart tag__content - The tag's content part.
288
+ * @csspart tag__remove-button - The tag's remove button.
289
+ * @csspart tag__remove-button__base - The tag's remove button base part.
281
290
  *
282
291
  * @animation combobox.show - The animation to use when showing the combobox.
283
292
  * @animation combobox.hide - The animation to use when hiding the combobox.
@@ -1809,12 +1818,15 @@ declare module 'react' {
1809
1818
  * @csspart form-control-help-text - The help text's wrapper.
1810
1819
  */ 'syn-checkbox': SynCheckboxJSXElement;
1811
1820
  /**
1812
- * @summary Comboboxes allow you to choose items from a menu of predefined options.
1821
+ * @summary A combobox component that combines the functionality of a text input with a dropdown listbox,
1822
+ * allowing users to either select from predefined options or enter custom values (when not restricted).
1823
+ *
1813
1824
  * @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-combobox--docs
1814
1825
  * @status stable
1815
1826
  *
1816
1827
  * @dependency syn-icon
1817
1828
  * @dependency syn-popup
1829
+ * @dependency syn-tag
1818
1830
  *
1819
1831
  * @slot - The listbox options. Must be `<syn-option>` elements.
1820
1832
  * You can use `<syn-optgroup>`'s to group items visually.
@@ -1844,7 +1856,7 @@ declare module 'react' {
1844
1856
  * @csspart form-control-label - The label's wrapper.
1845
1857
  * @csspart form-control-input - The combobox's wrapper.
1846
1858
  * @csspart form-control-help-text - The help text's wrapper.
1847
- * @csspart combobox - The container the wraps the prefix, combobox, clear icon, and expand button.
1859
+ * @csspart combobox - The container that wraps the prefix, combobox, clear icon, and expand button.
1848
1860
  * @csspart prefix - The container that wraps the prefix slot.
1849
1861
  * @csspart suffix - The container that wraps the suffix slot.
1850
1862
  * @csspart display-input - The element that displays the selected option's label,
@@ -1857,6 +1869,12 @@ declare module 'react' {
1857
1869
  * @csspart popup - The popup's exported `popup` part.
1858
1870
  * Use this to target the tooltip's popup container.
1859
1871
  * @csspart no-results - The container that wraps the "no results" message.
1872
+ * @csspart tags - The container that houses option tags when `multiple` is used.
1873
+ * @csspart tag - The individual tags that represent each selected option in `multiple`.
1874
+ * @csspart tag__base - The tag's base part.
1875
+ * @csspart tag__content - The tag's content part.
1876
+ * @csspart tag__remove-button - The tag's remove button.
1877
+ * @csspart tag__remove-button__base - The tag's remove button base part.
1860
1878
  *
1861
1879
  * @animation combobox.show - The animation to use when showing the combobox.
1862
1880
  * @animation combobox.hide - The animation to use when hiding the combobox.
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "dependencies": {
7
7
  "@lit/react": "^1.0.8",
8
- "@synergy-design-system/components": "3.1.0"
8
+ "@synergy-design-system/components": "3.2.0"
9
9
  },
10
10
  "description": "React wrappers for the Synergy Design System",
11
11
  "exports": {
@@ -43,12 +43,12 @@
43
43
  "directory": "packages/react"
44
44
  },
45
45
  "type": "module",
46
- "version": "3.1.0",
46
+ "version": "3.2.0",
47
47
  "devDependencies": {
48
48
  "@types/react": "^19.2.7",
49
49
  "react": "^19.2.3"
50
50
  },
51
51
  "peerDependencies": {
52
- "@synergy-design-system/tokens": "3.1.0"
52
+ "@synergy-design-system/tokens": "3.2.0"
53
53
  }
54
54
  }
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/components/combobox.ts"],
4
- "sourcesContent": ["// ---------------------------------------------------------------------\n// \uD83D\uDD12 AUTOGENERATED @synergy-design-system/react wrappers for @synergy-design-system/components\n// Please do not edit this file directly!\n// It will get recreated when running pnpm build.\n// ---------------------------------------------------------------------\nimport * as React from 'react';\nimport { createComponent } from '@lit/react';\nimport Component from '@synergy-design-system/components/components/combobox/combobox.component.js';\n\nimport { type EventName } from '@lit/react';\nimport type { SynChangeEvent } from '@synergy-design-system/components';\nimport type { SynClearEvent } from '@synergy-design-system/components';\nimport type { SynInputEvent } from '@synergy-design-system/components';\nimport type { SynFocusEvent } from '@synergy-design-system/components';\nimport type { SynBlurEvent } from '@synergy-design-system/components';\nimport type { SynShowEvent } from '@synergy-design-system/components';\nimport type { SynAfterShowEvent } from '@synergy-design-system/components';\nimport type { SynHideEvent } from '@synergy-design-system/components';\nimport type { SynAfterHideEvent } from '@synergy-design-system/components';\nimport type { SynInvalidEvent } from '@synergy-design-system/components';\nimport type { SynErrorEvent } from '@synergy-design-system/components';\n\nconst tagName = 'syn-combobox';\nComponent.define('syn-combobox');\n\n/**\n * @summary Comboboxes allow you to choose items from a menu of predefined options.\n * @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-combobox--docs\n * @status stable\n *\n * @dependency syn-icon\n * @dependency syn-popup\n *\n * @slot - The listbox options. Must be `<syn-option>` elements.\n * You can use `<syn-optgroup>`'s to group items visually.\n * @slot label - The combobox's label. Alternatively, you can use the `label` attribute.\n * @slot prefix - Used to prepend a presentational icon or similar element to the combobox.\n * @slot suffix - Used to append a presentational icon or similar element to the combobox.\n * @slot clear-icon - An icon to use in lieu of the default clear icon.\n * @slot expand-icon - The icon to show when the control is expanded and collapsed.\n * Rotates on open and close.\n * @slot help-text - Text that describes how to use the combobox.\n * Alternatively, you can use the `help-text` attribute.\n *\n * @event syn-change - Emitted when the control's value changes.\n * @event syn-clear - Emitted when the control's value is cleared.\n * @event syn-input - Emitted when the control receives input.\n * @event syn-focus - Emitted when the control gains focus.\n * @event syn-blur - Emitted when the control loses focus.\n * @event syn-show - Emitted when the combobox's menu opens.\n * @event syn-after-show - Emitted after the combobox's menu opens and all animations are complete.\n * @event syn-hide - Emitted when the combobox's menu closes.\n * @event syn-after-hide - Emitted after the combobox's menu closes and all animations are complete.\n * @event syn-invalid - Emitted when the form control has been checked for validity\n * and its constraints aren't satisfied.\n * @event syn-error - Emitted when the combobox menu fails to open.\n *\n * @csspart form-control - The form control that wraps the label, combobox, and help text.\n * @csspart form-control-label - The label's wrapper.\n * @csspart form-control-input - The combobox's wrapper.\n * @csspart form-control-help-text - The help text's wrapper.\n * @csspart combobox - The container the wraps the prefix, combobox, clear icon, and expand button.\n * @csspart prefix - The container that wraps the prefix slot.\n * @csspart suffix - The container that wraps the suffix slot.\n * @csspart display-input - The element that displays the selected option's label,\n * an `<input>` element.\n * @csspart listbox - The listbox container where the options are slotted\n * and the filtered options list exists.\n * @csspart filtered-listbox - The container that wraps the filtered options.\n * @csspart clear-button - The clear button.\n * @csspart expand-icon - The container that wraps the expand icon.\n * @csspart popup - The popup's exported `popup` part.\n * Use this to target the tooltip's popup container.\n * @csspart no-results - The container that wraps the \"no results\" message.\n *\n * @animation combobox.show - The animation to use when showing the combobox.\n * @animation combobox.hide - The animation to use when hiding the combobox.\n */\nexport const SynCombobox = createComponent({\n displayName: 'SynCombobox',\n elementClass: Component,\n events: {\n onSynChange: 'syn-change' as EventName<SynChangeEvent>,\n onSynClear: 'syn-clear' as EventName<SynClearEvent>,\n onSynInput: 'syn-input' as EventName<SynInputEvent>,\n onSynFocus: 'syn-focus' as EventName<SynFocusEvent>,\n onSynBlur: 'syn-blur' as EventName<SynBlurEvent>,\n onSynShow: 'syn-show' as EventName<SynShowEvent>,\n onSynAfterShow: 'syn-after-show' as EventName<SynAfterShowEvent>,\n onSynHide: 'syn-hide' as EventName<SynHideEvent>,\n onSynAfterHide: 'syn-after-hide' as EventName<SynAfterHideEvent>,\n onSynInvalid: 'syn-invalid' as EventName<SynInvalidEvent>,\n onSynError: 'syn-error' as EventName<SynErrorEvent>,\n },\n react: React,\n tagName,\n});\n\nexport type { SynChangeEvent } from '@synergy-design-system/components';\nexport type { SynClearEvent } from '@synergy-design-system/components';\nexport type { SynInputEvent } from '@synergy-design-system/components';\nexport type { SynFocusEvent } from '@synergy-design-system/components';\nexport type { SynBlurEvent } from '@synergy-design-system/components';\nexport type { SynShowEvent } from '@synergy-design-system/components';\nexport type { SynAfterShowEvent } from '@synergy-design-system/components';\nexport type { SynHideEvent } from '@synergy-design-system/components';\nexport type { SynAfterHideEvent } from '@synergy-design-system/components';\nexport type { SynInvalidEvent } from '@synergy-design-system/components';\nexport type { SynErrorEvent } from '@synergy-design-system/components';\n"],
5
- "mappings": ";AAKA,YAAY,WAAW;AACvB,SAAS,uBAAuB;AAChC,OAAO,eAAe;AAetB,IAAM,UAAU;AAChB,UAAU,OAAO,cAAc;AAuDxB,IAAM,cAAc,gBAAgB;AAAA,EACzC,aAAa;AAAA,EACb,cAAc;AAAA,EACd,QAAQ;AAAA,IACN,aAAa;AAAA,IACb,YAAY;AAAA,IACZ,YAAY;AAAA,IACZ,YAAY;AAAA,IACZ,WAAW;AAAA,IACX,WAAW;AAAA,IACX,gBAAgB;AAAA,IAChB,WAAW;AAAA,IACX,gBAAgB;AAAA,IAChB,cAAc;AAAA,IACd,YAAY;AAAA,EACd;AAAA,EACA,OAAO;AAAA,EACP;AACF,CAAC;",
6
- "names": []
7
- }