@public-ui/react-hook-form-adapter 4.0.0-alpha.6 → 4.0.0-alpha.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1593,6 +1593,11 @@ type PropIndeterminate = {
1593
1593
  indeterminate: IndeterminatePropType;
1594
1594
  };
1595
1595
 
1596
+ type InlinePropType = boolean;
1597
+ type PropInline = {
1598
+ inline: InlinePropType;
1599
+ };
1600
+
1596
1601
  declare const headingLevelOptions: readonly [0, 1, 2, 3, 4, 5, 6];
1597
1602
  type HeadingLevel = (typeof headingLevelOptions)[number];
1598
1603
  type LabelPropType = string;
@@ -1623,12 +1628,6 @@ type PropLinkTarget = {
1623
1628
  target: LinkTargetPropType;
1624
1629
  };
1625
1630
 
1626
- declare const linkVariantPropTypeOptions: readonly ["inline", "standalone"];
1627
- type LinkVariantPropType = (typeof linkVariantPropTypeOptions)[number];
1628
- type PropLinkVariant = {
1629
- variant: LinkVariantPropType;
1630
- };
1631
-
1632
1631
  declare const loadingOptions: readonly ["eager", "lazy"];
1633
1632
  type Loading = (typeof loadingOptions)[number];
1634
1633
 
@@ -1802,16 +1801,16 @@ type AlertProps = Generic.Element.Members<RequiredAlertProps, OptionalAlertProps
1802
1801
 
1803
1802
  type RequiredButtonProps = PropLabelWithExpertSlot;
1804
1803
  type OptionalButtonProps = {
1804
+ ariaExpanded: AriaExpandedPropType;
1805
1805
  tabIndex: number;
1806
1806
  value: StencilUnknown;
1807
- ariaExpanded: AriaExpandedPropType;
1808
- } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaControls & PropAriaDescription & PropAriaSelected & PropButtonCallbacks<StencilUnknown> & PropButtonType & PropButtonVariant & PropCustomClass & PropDisabled & PropHideLabel & PropIcons & PropId & PropName & PropShortKey & PropSyncValueBySelector & PropTooltipAlign;
1807
+ } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaControls & PropAriaDescription & PropAriaSelected & PropButtonCallbacks<StencilUnknown> & PropButtonType & PropButtonVariant & PropCustomClass & PropDisabled & PropHideLabel & PropIcons & PropId & PropInline & PropName & PropShortKey & PropSyncValueBySelector & PropTooltipAlign;
1809
1808
  type ButtonProps = Generic.Element.Members<RequiredButtonProps, OptionalButtonProps>;
1810
1809
 
1811
1810
  type RequiredProps$f = PropHref;
1812
1811
  type OptionalProps$f = {
1813
1812
  tabIndex: number;
1814
- } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropLinkVariant & PropShortKey & PropTooltipAlign;
1813
+ } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropInline & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropShortKey & PropTooltipAlign;
1815
1814
  type LinkProps = Generic.Element.Members<RequiredProps$f, OptionalProps$f>;
1816
1815
 
1817
1816
  type BreadcrumbLinkProps = LinkProps & LabelProp;
@@ -2440,6 +2439,11 @@ declare namespace Components {
2440
2439
  * @deprecated Will be removed in the next major version.
2441
2440
  */
2442
2441
  "_id"?: string;
2442
+ /**
2443
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2444
+ * @default false
2445
+ */
2446
+ "_inline"?: InlinePropType;
2443
2447
  /**
2444
2448
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
2445
2449
  */
@@ -2537,6 +2541,11 @@ declare namespace Components {
2537
2541
  * @deprecated Will be removed in the next major version.
2538
2542
  */
2539
2543
  "_id"?: IdPropType;
2544
+ /**
2545
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2546
+ * @default true
2547
+ */
2548
+ "_inline"?: InlinePropType;
2540
2549
  /**
2541
2550
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
2542
2551
  */
@@ -2576,11 +2585,6 @@ declare namespace Components {
2576
2585
  * Defines the value that the button emits on click.
2577
2586
  */
2578
2587
  "_value"?: StencilUnknown;
2579
- /**
2580
- * Defines which variant should be used for presentation.
2581
- * @default 'inline'
2582
- */
2583
- "_variant"?: LinkVariantPropType;
2584
2588
  /**
2585
2589
  * Returns the current value.
2586
2590
  */
@@ -2644,13 +2648,14 @@ declare namespace Components {
2644
2648
  */
2645
2649
  "_id"?: string;
2646
2650
  /**
2647
- * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
2651
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2652
+ * @default false
2648
2653
  */
2649
- "_label": LabelWithExpertSlotPropType;
2654
+ "_inline"?: InlinePropType;
2650
2655
  /**
2651
- * Defines which variant should be used for presentation.
2656
+ * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
2652
2657
  */
2653
- "_linkVariant"?: LinkVariantPropType;
2658
+ "_label": LabelWithExpertSlotPropType;
2654
2659
  /**
2655
2660
  * Defines the technical name of an input field.
2656
2661
  */
@@ -4228,6 +4233,11 @@ declare namespace Components {
4228
4233
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
4229
4234
  */
4230
4235
  "_icons"?: Stringified<KoliBriIconsProp>;
4236
+ /**
4237
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4238
+ * @default true
4239
+ */
4240
+ "_inline"?: InlinePropType;
4231
4241
  /**
4232
4242
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4233
4243
  */
@@ -4254,11 +4264,6 @@ declare namespace Components {
4254
4264
  * @default 'right'
4255
4265
  */
4256
4266
  "_tooltipAlign"?: TooltipAlignPropType;
4257
- /**
4258
- * Defines which variant should be used for presentation.
4259
- * @default 'inline'
4260
- */
4261
- "_variant"?: LinkVariantPropType;
4262
4267
  /**
4263
4268
  * Sets focus on the internal element.
4264
4269
  */
@@ -4403,13 +4408,14 @@ declare namespace Components {
4403
4408
  */
4404
4409
  "_icons"?: Stringified<KoliBriIconsProp>;
4405
4410
  /**
4406
- * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4411
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4412
+ * @default true
4407
4413
  */
4408
- "_label"?: LabelWithExpertSlotPropType;
4414
+ "_inline"?: InlinePropType;
4409
4415
  /**
4410
- * Defines which variant should be used for presentation.
4416
+ * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4411
4417
  */
4412
- "_linkVariant"?: LinkVariantPropType;
4418
+ "_label"?: LabelWithExpertSlotPropType;
4413
4419
  /**
4414
4420
  * Defines the callback functions for links.
4415
4421
  */
@@ -4479,7 +4485,7 @@ declare namespace Components {
4479
4485
  */
4480
4486
  "_collapsible"?: boolean;
4481
4487
  /**
4482
- * Creates a button below the navigation, that toggles _collapsible. Only available for _orientation="vertical".
4488
+ * Creates a button below the navigation, that toggles _collapsible.
4483
4489
  * @default false
4484
4490
  */
4485
4491
  "_hasCompactButton"?: boolean;
@@ -4502,12 +4508,6 @@ declare namespace Components {
4502
4508
  * Defines the list of links, buttons or texts to render.
4503
4509
  */
4504
4510
  "_links": Stringified<ButtonOrLinkOrTextWithChildrenProps[]>;
4505
- /**
4506
- * Defines whether the orientation of the component is horizontal or vertical.
4507
- * @deprecated Will be removed in the next major version.
4508
- * @default 'vertical'
4509
- */
4510
- "_orientation"?: OrientationPropType;
4511
4511
  }
4512
4512
  interface KolPagination {
4513
4513
  /**
@@ -4654,6 +4654,11 @@ declare namespace Components {
4654
4654
  * @deprecated Will be removed in the next major version.
4655
4655
  */
4656
4656
  "_id"?: string;
4657
+ /**
4658
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4659
+ * @default false
4660
+ */
4661
+ "_inline"?: InlinePropType;
4657
4662
  /**
4658
4663
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4659
4664
  */
@@ -4760,6 +4765,11 @@ declare namespace Components {
4760
4765
  * Defines the internal ID of the primary component element.
4761
4766
  */
4762
4767
  "_id"?: string;
4768
+ /**
4769
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4770
+ * @default false
4771
+ */
4772
+ "_inline"?: InlinePropType;
4763
4773
  /**
4764
4774
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4765
4775
  */
@@ -6344,6 +6354,11 @@ declare namespace LocalJSX {
6344
6354
  * @deprecated Will be removed in the next major version.
6345
6355
  */
6346
6356
  "_id"?: string;
6357
+ /**
6358
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6359
+ * @default false
6360
+ */
6361
+ "_inline"?: InlinePropType;
6347
6362
  /**
6348
6363
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
6349
6364
  */
@@ -6429,6 +6444,11 @@ declare namespace LocalJSX {
6429
6444
  * @deprecated Will be removed in the next major version.
6430
6445
  */
6431
6446
  "_id"?: IdPropType;
6447
+ /**
6448
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6449
+ * @default true
6450
+ */
6451
+ "_inline"?: InlinePropType;
6432
6452
  /**
6433
6453
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
6434
6454
  */
@@ -6464,11 +6484,6 @@ declare namespace LocalJSX {
6464
6484
  * Defines the value that the button emits on click.
6465
6485
  */
6466
6486
  "_value"?: StencilUnknown;
6467
- /**
6468
- * Defines which variant should be used for presentation.
6469
- * @default 'inline'
6470
- */
6471
- "_variant"?: LinkVariantPropType;
6472
6487
  }
6473
6488
  interface KolButtonWc {
6474
6489
  /**
@@ -6510,6 +6525,11 @@ declare namespace LocalJSX {
6510
6525
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
6511
6526
  */
6512
6527
  "_icons"?: IconsPropType;
6528
+ /**
6529
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6530
+ * @default false
6531
+ */
6532
+ "_inline"?: InlinePropType;
6513
6533
  /**
6514
6534
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
6515
6535
  */
@@ -7907,6 +7927,11 @@ declare namespace LocalJSX {
7907
7927
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
7908
7928
  */
7909
7929
  "_icons"?: Stringified<KoliBriIconsProp>;
7930
+ /**
7931
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
7932
+ * @default true
7933
+ */
7934
+ "_inline"?: InlinePropType;
7910
7935
  /**
7911
7936
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
7912
7937
  */
@@ -7933,11 +7958,6 @@ declare namespace LocalJSX {
7933
7958
  * @default 'right'
7934
7959
  */
7935
7960
  "_tooltipAlign"?: TooltipAlignPropType;
7936
- /**
7937
- * Defines which variant should be used for presentation.
7938
- * @default 'inline'
7939
- */
7940
- "_variant"?: LinkVariantPropType;
7941
7961
  }
7942
7962
  interface KolLinkButton {
7943
7963
  /**
@@ -8068,6 +8088,11 @@ declare namespace LocalJSX {
8068
8088
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
8069
8089
  */
8070
8090
  "_icons"?: Stringified<KoliBriIconsProp>;
8091
+ /**
8092
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8093
+ * @default true
8094
+ */
8095
+ "_inline"?: InlinePropType;
8071
8096
  /**
8072
8097
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
8073
8098
  */
@@ -8129,7 +8154,7 @@ declare namespace LocalJSX {
8129
8154
  */
8130
8155
  "_collapsible"?: boolean;
8131
8156
  /**
8132
- * Creates a button below the navigation, that toggles _collapsible. Only available for _orientation="vertical".
8157
+ * Creates a button below the navigation, that toggles _collapsible.
8133
8158
  * @default false
8134
8159
  */
8135
8160
  "_hasCompactButton"?: boolean;
@@ -8152,12 +8177,6 @@ declare namespace LocalJSX {
8152
8177
  * Defines the list of links, buttons or texts to render.
8153
8178
  */
8154
8179
  "_links": Stringified<ButtonOrLinkOrTextWithChildrenProps[]>;
8155
- /**
8156
- * Defines whether the orientation of the component is horizontal or vertical.
8157
- * @deprecated Will be removed in the next major version.
8158
- * @default 'vertical'
8159
- */
8160
- "_orientation"?: OrientationPropType;
8161
8180
  }
8162
8181
  interface KolPagination {
8163
8182
  /**
@@ -8304,6 +8323,11 @@ declare namespace LocalJSX {
8304
8323
  * @deprecated Will be removed in the next major version.
8305
8324
  */
8306
8325
  "_id"?: string;
8326
+ /**
8327
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8328
+ * @default false
8329
+ */
8330
+ "_inline"?: InlinePropType;
8307
8331
  /**
8308
8332
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
8309
8333
  */
@@ -8390,6 +8414,11 @@ declare namespace LocalJSX {
8390
8414
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
8391
8415
  */
8392
8416
  "_icons"?: IconsPropType;
8417
+ /**
8418
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8419
+ * @default false
8420
+ */
8421
+ "_inline"?: InlinePropType;
8393
8422
  /**
8394
8423
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
8395
8424
  */
package/dist/index.d.mts CHANGED
@@ -1593,6 +1593,11 @@ type PropIndeterminate = {
1593
1593
  indeterminate: IndeterminatePropType;
1594
1594
  };
1595
1595
 
1596
+ type InlinePropType = boolean;
1597
+ type PropInline = {
1598
+ inline: InlinePropType;
1599
+ };
1600
+
1596
1601
  declare const headingLevelOptions: readonly [0, 1, 2, 3, 4, 5, 6];
1597
1602
  type HeadingLevel = (typeof headingLevelOptions)[number];
1598
1603
  type LabelPropType = string;
@@ -1623,12 +1628,6 @@ type PropLinkTarget = {
1623
1628
  target: LinkTargetPropType;
1624
1629
  };
1625
1630
 
1626
- declare const linkVariantPropTypeOptions: readonly ["inline", "standalone"];
1627
- type LinkVariantPropType = (typeof linkVariantPropTypeOptions)[number];
1628
- type PropLinkVariant = {
1629
- variant: LinkVariantPropType;
1630
- };
1631
-
1632
1631
  declare const loadingOptions: readonly ["eager", "lazy"];
1633
1632
  type Loading = (typeof loadingOptions)[number];
1634
1633
 
@@ -1802,16 +1801,16 @@ type AlertProps = Generic.Element.Members<RequiredAlertProps, OptionalAlertProps
1802
1801
 
1803
1802
  type RequiredButtonProps = PropLabelWithExpertSlot;
1804
1803
  type OptionalButtonProps = {
1804
+ ariaExpanded: AriaExpandedPropType;
1805
1805
  tabIndex: number;
1806
1806
  value: StencilUnknown;
1807
- ariaExpanded: AriaExpandedPropType;
1808
- } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaControls & PropAriaDescription & PropAriaSelected & PropButtonCallbacks<StencilUnknown> & PropButtonType & PropButtonVariant & PropCustomClass & PropDisabled & PropHideLabel & PropIcons & PropId & PropName & PropShortKey & PropSyncValueBySelector & PropTooltipAlign;
1807
+ } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaControls & PropAriaDescription & PropAriaSelected & PropButtonCallbacks<StencilUnknown> & PropButtonType & PropButtonVariant & PropCustomClass & PropDisabled & PropHideLabel & PropIcons & PropId & PropInline & PropName & PropShortKey & PropSyncValueBySelector & PropTooltipAlign;
1809
1808
  type ButtonProps = Generic.Element.Members<RequiredButtonProps, OptionalButtonProps>;
1810
1809
 
1811
1810
  type RequiredProps$f = PropHref;
1812
1811
  type OptionalProps$f = {
1813
1812
  tabIndex: number;
1814
- } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropLinkVariant & PropShortKey & PropTooltipAlign;
1813
+ } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropInline & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropShortKey & PropTooltipAlign;
1815
1814
  type LinkProps = Generic.Element.Members<RequiredProps$f, OptionalProps$f>;
1816
1815
 
1817
1816
  type BreadcrumbLinkProps = LinkProps & LabelProp;
@@ -2440,6 +2439,11 @@ declare namespace Components {
2440
2439
  * @deprecated Will be removed in the next major version.
2441
2440
  */
2442
2441
  "_id"?: string;
2442
+ /**
2443
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2444
+ * @default false
2445
+ */
2446
+ "_inline"?: InlinePropType;
2443
2447
  /**
2444
2448
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
2445
2449
  */
@@ -2537,6 +2541,11 @@ declare namespace Components {
2537
2541
  * @deprecated Will be removed in the next major version.
2538
2542
  */
2539
2543
  "_id"?: IdPropType;
2544
+ /**
2545
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2546
+ * @default true
2547
+ */
2548
+ "_inline"?: InlinePropType;
2540
2549
  /**
2541
2550
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
2542
2551
  */
@@ -2576,11 +2585,6 @@ declare namespace Components {
2576
2585
  * Defines the value that the button emits on click.
2577
2586
  */
2578
2587
  "_value"?: StencilUnknown;
2579
- /**
2580
- * Defines which variant should be used for presentation.
2581
- * @default 'inline'
2582
- */
2583
- "_variant"?: LinkVariantPropType;
2584
2588
  /**
2585
2589
  * Returns the current value.
2586
2590
  */
@@ -2644,13 +2648,14 @@ declare namespace Components {
2644
2648
  */
2645
2649
  "_id"?: string;
2646
2650
  /**
2647
- * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
2651
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2652
+ * @default false
2648
2653
  */
2649
- "_label": LabelWithExpertSlotPropType;
2654
+ "_inline"?: InlinePropType;
2650
2655
  /**
2651
- * Defines which variant should be used for presentation.
2656
+ * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
2652
2657
  */
2653
- "_linkVariant"?: LinkVariantPropType;
2658
+ "_label": LabelWithExpertSlotPropType;
2654
2659
  /**
2655
2660
  * Defines the technical name of an input field.
2656
2661
  */
@@ -4228,6 +4233,11 @@ declare namespace Components {
4228
4233
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
4229
4234
  */
4230
4235
  "_icons"?: Stringified<KoliBriIconsProp>;
4236
+ /**
4237
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4238
+ * @default true
4239
+ */
4240
+ "_inline"?: InlinePropType;
4231
4241
  /**
4232
4242
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4233
4243
  */
@@ -4254,11 +4264,6 @@ declare namespace Components {
4254
4264
  * @default 'right'
4255
4265
  */
4256
4266
  "_tooltipAlign"?: TooltipAlignPropType;
4257
- /**
4258
- * Defines which variant should be used for presentation.
4259
- * @default 'inline'
4260
- */
4261
- "_variant"?: LinkVariantPropType;
4262
4267
  /**
4263
4268
  * Sets focus on the internal element.
4264
4269
  */
@@ -4403,13 +4408,14 @@ declare namespace Components {
4403
4408
  */
4404
4409
  "_icons"?: Stringified<KoliBriIconsProp>;
4405
4410
  /**
4406
- * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4411
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4412
+ * @default true
4407
4413
  */
4408
- "_label"?: LabelWithExpertSlotPropType;
4414
+ "_inline"?: InlinePropType;
4409
4415
  /**
4410
- * Defines which variant should be used for presentation.
4416
+ * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4411
4417
  */
4412
- "_linkVariant"?: LinkVariantPropType;
4418
+ "_label"?: LabelWithExpertSlotPropType;
4413
4419
  /**
4414
4420
  * Defines the callback functions for links.
4415
4421
  */
@@ -4479,7 +4485,7 @@ declare namespace Components {
4479
4485
  */
4480
4486
  "_collapsible"?: boolean;
4481
4487
  /**
4482
- * Creates a button below the navigation, that toggles _collapsible. Only available for _orientation="vertical".
4488
+ * Creates a button below the navigation, that toggles _collapsible.
4483
4489
  * @default false
4484
4490
  */
4485
4491
  "_hasCompactButton"?: boolean;
@@ -4502,12 +4508,6 @@ declare namespace Components {
4502
4508
  * Defines the list of links, buttons or texts to render.
4503
4509
  */
4504
4510
  "_links": Stringified<ButtonOrLinkOrTextWithChildrenProps[]>;
4505
- /**
4506
- * Defines whether the orientation of the component is horizontal or vertical.
4507
- * @deprecated Will be removed in the next major version.
4508
- * @default 'vertical'
4509
- */
4510
- "_orientation"?: OrientationPropType;
4511
4511
  }
4512
4512
  interface KolPagination {
4513
4513
  /**
@@ -4654,6 +4654,11 @@ declare namespace Components {
4654
4654
  * @deprecated Will be removed in the next major version.
4655
4655
  */
4656
4656
  "_id"?: string;
4657
+ /**
4658
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4659
+ * @default false
4660
+ */
4661
+ "_inline"?: InlinePropType;
4657
4662
  /**
4658
4663
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4659
4664
  */
@@ -4760,6 +4765,11 @@ declare namespace Components {
4760
4765
  * Defines the internal ID of the primary component element.
4761
4766
  */
4762
4767
  "_id"?: string;
4768
+ /**
4769
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4770
+ * @default false
4771
+ */
4772
+ "_inline"?: InlinePropType;
4763
4773
  /**
4764
4774
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4765
4775
  */
@@ -6344,6 +6354,11 @@ declare namespace LocalJSX {
6344
6354
  * @deprecated Will be removed in the next major version.
6345
6355
  */
6346
6356
  "_id"?: string;
6357
+ /**
6358
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6359
+ * @default false
6360
+ */
6361
+ "_inline"?: InlinePropType;
6347
6362
  /**
6348
6363
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
6349
6364
  */
@@ -6429,6 +6444,11 @@ declare namespace LocalJSX {
6429
6444
  * @deprecated Will be removed in the next major version.
6430
6445
  */
6431
6446
  "_id"?: IdPropType;
6447
+ /**
6448
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6449
+ * @default true
6450
+ */
6451
+ "_inline"?: InlinePropType;
6432
6452
  /**
6433
6453
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
6434
6454
  */
@@ -6464,11 +6484,6 @@ declare namespace LocalJSX {
6464
6484
  * Defines the value that the button emits on click.
6465
6485
  */
6466
6486
  "_value"?: StencilUnknown;
6467
- /**
6468
- * Defines which variant should be used for presentation.
6469
- * @default 'inline'
6470
- */
6471
- "_variant"?: LinkVariantPropType;
6472
6487
  }
6473
6488
  interface KolButtonWc {
6474
6489
  /**
@@ -6510,6 +6525,11 @@ declare namespace LocalJSX {
6510
6525
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
6511
6526
  */
6512
6527
  "_icons"?: IconsPropType;
6528
+ /**
6529
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6530
+ * @default false
6531
+ */
6532
+ "_inline"?: InlinePropType;
6513
6533
  /**
6514
6534
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
6515
6535
  */
@@ -7907,6 +7927,11 @@ declare namespace LocalJSX {
7907
7927
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
7908
7928
  */
7909
7929
  "_icons"?: Stringified<KoliBriIconsProp>;
7930
+ /**
7931
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
7932
+ * @default true
7933
+ */
7934
+ "_inline"?: InlinePropType;
7910
7935
  /**
7911
7936
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
7912
7937
  */
@@ -7933,11 +7958,6 @@ declare namespace LocalJSX {
7933
7958
  * @default 'right'
7934
7959
  */
7935
7960
  "_tooltipAlign"?: TooltipAlignPropType;
7936
- /**
7937
- * Defines which variant should be used for presentation.
7938
- * @default 'inline'
7939
- */
7940
- "_variant"?: LinkVariantPropType;
7941
7961
  }
7942
7962
  interface KolLinkButton {
7943
7963
  /**
@@ -8068,6 +8088,11 @@ declare namespace LocalJSX {
8068
8088
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
8069
8089
  */
8070
8090
  "_icons"?: Stringified<KoliBriIconsProp>;
8091
+ /**
8092
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8093
+ * @default true
8094
+ */
8095
+ "_inline"?: InlinePropType;
8071
8096
  /**
8072
8097
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
8073
8098
  */
@@ -8129,7 +8154,7 @@ declare namespace LocalJSX {
8129
8154
  */
8130
8155
  "_collapsible"?: boolean;
8131
8156
  /**
8132
- * Creates a button below the navigation, that toggles _collapsible. Only available for _orientation="vertical".
8157
+ * Creates a button below the navigation, that toggles _collapsible.
8133
8158
  * @default false
8134
8159
  */
8135
8160
  "_hasCompactButton"?: boolean;
@@ -8152,12 +8177,6 @@ declare namespace LocalJSX {
8152
8177
  * Defines the list of links, buttons or texts to render.
8153
8178
  */
8154
8179
  "_links": Stringified<ButtonOrLinkOrTextWithChildrenProps[]>;
8155
- /**
8156
- * Defines whether the orientation of the component is horizontal or vertical.
8157
- * @deprecated Will be removed in the next major version.
8158
- * @default 'vertical'
8159
- */
8160
- "_orientation"?: OrientationPropType;
8161
8180
  }
8162
8181
  interface KolPagination {
8163
8182
  /**
@@ -8304,6 +8323,11 @@ declare namespace LocalJSX {
8304
8323
  * @deprecated Will be removed in the next major version.
8305
8324
  */
8306
8325
  "_id"?: string;
8326
+ /**
8327
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8328
+ * @default false
8329
+ */
8330
+ "_inline"?: InlinePropType;
8307
8331
  /**
8308
8332
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
8309
8333
  */
@@ -8390,6 +8414,11 @@ declare namespace LocalJSX {
8390
8414
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
8391
8415
  */
8392
8416
  "_icons"?: IconsPropType;
8417
+ /**
8418
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8419
+ * @default false
8420
+ */
8421
+ "_inline"?: InlinePropType;
8393
8422
  /**
8394
8423
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
8395
8424
  */
package/dist/index.d.ts CHANGED
@@ -1593,6 +1593,11 @@ type PropIndeterminate = {
1593
1593
  indeterminate: IndeterminatePropType;
1594
1594
  };
1595
1595
 
1596
+ type InlinePropType = boolean;
1597
+ type PropInline = {
1598
+ inline: InlinePropType;
1599
+ };
1600
+
1596
1601
  declare const headingLevelOptions: readonly [0, 1, 2, 3, 4, 5, 6];
1597
1602
  type HeadingLevel = (typeof headingLevelOptions)[number];
1598
1603
  type LabelPropType = string;
@@ -1623,12 +1628,6 @@ type PropLinkTarget = {
1623
1628
  target: LinkTargetPropType;
1624
1629
  };
1625
1630
 
1626
- declare const linkVariantPropTypeOptions: readonly ["inline", "standalone"];
1627
- type LinkVariantPropType = (typeof linkVariantPropTypeOptions)[number];
1628
- type PropLinkVariant = {
1629
- variant: LinkVariantPropType;
1630
- };
1631
-
1632
1631
  declare const loadingOptions: readonly ["eager", "lazy"];
1633
1632
  type Loading = (typeof loadingOptions)[number];
1634
1633
 
@@ -1802,16 +1801,16 @@ type AlertProps = Generic.Element.Members<RequiredAlertProps, OptionalAlertProps
1802
1801
 
1803
1802
  type RequiredButtonProps = PropLabelWithExpertSlot;
1804
1803
  type OptionalButtonProps = {
1804
+ ariaExpanded: AriaExpandedPropType;
1805
1805
  tabIndex: number;
1806
1806
  value: StencilUnknown;
1807
- ariaExpanded: AriaExpandedPropType;
1808
- } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaControls & PropAriaDescription & PropAriaSelected & PropButtonCallbacks<StencilUnknown> & PropButtonType & PropButtonVariant & PropCustomClass & PropDisabled & PropHideLabel & PropIcons & PropId & PropName & PropShortKey & PropSyncValueBySelector & PropTooltipAlign;
1807
+ } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaControls & PropAriaDescription & PropAriaSelected & PropButtonCallbacks<StencilUnknown> & PropButtonType & PropButtonVariant & PropCustomClass & PropDisabled & PropHideLabel & PropIcons & PropId & PropInline & PropName & PropShortKey & PropSyncValueBySelector & PropTooltipAlign;
1809
1808
  type ButtonProps = Generic.Element.Members<RequiredButtonProps, OptionalButtonProps>;
1810
1809
 
1811
1810
  type RequiredProps$f = PropHref;
1812
1811
  type OptionalProps$f = {
1813
1812
  tabIndex: number;
1814
- } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropLinkVariant & PropShortKey & PropTooltipAlign;
1813
+ } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropInline & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropShortKey & PropTooltipAlign;
1815
1814
  type LinkProps = Generic.Element.Members<RequiredProps$f, OptionalProps$f>;
1816
1815
 
1817
1816
  type BreadcrumbLinkProps = LinkProps & LabelProp;
@@ -2440,6 +2439,11 @@ declare namespace Components {
2440
2439
  * @deprecated Will be removed in the next major version.
2441
2440
  */
2442
2441
  "_id"?: string;
2442
+ /**
2443
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2444
+ * @default false
2445
+ */
2446
+ "_inline"?: InlinePropType;
2443
2447
  /**
2444
2448
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
2445
2449
  */
@@ -2537,6 +2541,11 @@ declare namespace Components {
2537
2541
  * @deprecated Will be removed in the next major version.
2538
2542
  */
2539
2543
  "_id"?: IdPropType;
2544
+ /**
2545
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2546
+ * @default true
2547
+ */
2548
+ "_inline"?: InlinePropType;
2540
2549
  /**
2541
2550
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
2542
2551
  */
@@ -2576,11 +2585,6 @@ declare namespace Components {
2576
2585
  * Defines the value that the button emits on click.
2577
2586
  */
2578
2587
  "_value"?: StencilUnknown;
2579
- /**
2580
- * Defines which variant should be used for presentation.
2581
- * @default 'inline'
2582
- */
2583
- "_variant"?: LinkVariantPropType;
2584
2588
  /**
2585
2589
  * Returns the current value.
2586
2590
  */
@@ -2644,13 +2648,14 @@ declare namespace Components {
2644
2648
  */
2645
2649
  "_id"?: string;
2646
2650
  /**
2647
- * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
2651
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2652
+ * @default false
2648
2653
  */
2649
- "_label": LabelWithExpertSlotPropType;
2654
+ "_inline"?: InlinePropType;
2650
2655
  /**
2651
- * Defines which variant should be used for presentation.
2656
+ * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
2652
2657
  */
2653
- "_linkVariant"?: LinkVariantPropType;
2658
+ "_label": LabelWithExpertSlotPropType;
2654
2659
  /**
2655
2660
  * Defines the technical name of an input field.
2656
2661
  */
@@ -4228,6 +4233,11 @@ declare namespace Components {
4228
4233
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
4229
4234
  */
4230
4235
  "_icons"?: Stringified<KoliBriIconsProp>;
4236
+ /**
4237
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4238
+ * @default true
4239
+ */
4240
+ "_inline"?: InlinePropType;
4231
4241
  /**
4232
4242
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4233
4243
  */
@@ -4254,11 +4264,6 @@ declare namespace Components {
4254
4264
  * @default 'right'
4255
4265
  */
4256
4266
  "_tooltipAlign"?: TooltipAlignPropType;
4257
- /**
4258
- * Defines which variant should be used for presentation.
4259
- * @default 'inline'
4260
- */
4261
- "_variant"?: LinkVariantPropType;
4262
4267
  /**
4263
4268
  * Sets focus on the internal element.
4264
4269
  */
@@ -4403,13 +4408,14 @@ declare namespace Components {
4403
4408
  */
4404
4409
  "_icons"?: Stringified<KoliBriIconsProp>;
4405
4410
  /**
4406
- * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4411
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4412
+ * @default true
4407
4413
  */
4408
- "_label"?: LabelWithExpertSlotPropType;
4414
+ "_inline"?: InlinePropType;
4409
4415
  /**
4410
- * Defines which variant should be used for presentation.
4416
+ * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4411
4417
  */
4412
- "_linkVariant"?: LinkVariantPropType;
4418
+ "_label"?: LabelWithExpertSlotPropType;
4413
4419
  /**
4414
4420
  * Defines the callback functions for links.
4415
4421
  */
@@ -4479,7 +4485,7 @@ declare namespace Components {
4479
4485
  */
4480
4486
  "_collapsible"?: boolean;
4481
4487
  /**
4482
- * Creates a button below the navigation, that toggles _collapsible. Only available for _orientation="vertical".
4488
+ * Creates a button below the navigation, that toggles _collapsible.
4483
4489
  * @default false
4484
4490
  */
4485
4491
  "_hasCompactButton"?: boolean;
@@ -4502,12 +4508,6 @@ declare namespace Components {
4502
4508
  * Defines the list of links, buttons or texts to render.
4503
4509
  */
4504
4510
  "_links": Stringified<ButtonOrLinkOrTextWithChildrenProps[]>;
4505
- /**
4506
- * Defines whether the orientation of the component is horizontal or vertical.
4507
- * @deprecated Will be removed in the next major version.
4508
- * @default 'vertical'
4509
- */
4510
- "_orientation"?: OrientationPropType;
4511
4511
  }
4512
4512
  interface KolPagination {
4513
4513
  /**
@@ -4654,6 +4654,11 @@ declare namespace Components {
4654
4654
  * @deprecated Will be removed in the next major version.
4655
4655
  */
4656
4656
  "_id"?: string;
4657
+ /**
4658
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4659
+ * @default false
4660
+ */
4661
+ "_inline"?: InlinePropType;
4657
4662
  /**
4658
4663
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4659
4664
  */
@@ -4760,6 +4765,11 @@ declare namespace Components {
4760
4765
  * Defines the internal ID of the primary component element.
4761
4766
  */
4762
4767
  "_id"?: string;
4768
+ /**
4769
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4770
+ * @default false
4771
+ */
4772
+ "_inline"?: InlinePropType;
4763
4773
  /**
4764
4774
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
4765
4775
  */
@@ -6344,6 +6354,11 @@ declare namespace LocalJSX {
6344
6354
  * @deprecated Will be removed in the next major version.
6345
6355
  */
6346
6356
  "_id"?: string;
6357
+ /**
6358
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6359
+ * @default false
6360
+ */
6361
+ "_inline"?: InlinePropType;
6347
6362
  /**
6348
6363
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
6349
6364
  */
@@ -6429,6 +6444,11 @@ declare namespace LocalJSX {
6429
6444
  * @deprecated Will be removed in the next major version.
6430
6445
  */
6431
6446
  "_id"?: IdPropType;
6447
+ /**
6448
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6449
+ * @default true
6450
+ */
6451
+ "_inline"?: InlinePropType;
6432
6452
  /**
6433
6453
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
6434
6454
  */
@@ -6464,11 +6484,6 @@ declare namespace LocalJSX {
6464
6484
  * Defines the value that the button emits on click.
6465
6485
  */
6466
6486
  "_value"?: StencilUnknown;
6467
- /**
6468
- * Defines which variant should be used for presentation.
6469
- * @default 'inline'
6470
- */
6471
- "_variant"?: LinkVariantPropType;
6472
6487
  }
6473
6488
  interface KolButtonWc {
6474
6489
  /**
@@ -6510,6 +6525,11 @@ declare namespace LocalJSX {
6510
6525
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
6511
6526
  */
6512
6527
  "_icons"?: IconsPropType;
6528
+ /**
6529
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6530
+ * @default false
6531
+ */
6532
+ "_inline"?: InlinePropType;
6513
6533
  /**
6514
6534
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
6515
6535
  */
@@ -7907,6 +7927,11 @@ declare namespace LocalJSX {
7907
7927
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
7908
7928
  */
7909
7929
  "_icons"?: Stringified<KoliBriIconsProp>;
7930
+ /**
7931
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
7932
+ * @default true
7933
+ */
7934
+ "_inline"?: InlinePropType;
7910
7935
  /**
7911
7936
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
7912
7937
  */
@@ -7933,11 +7958,6 @@ declare namespace LocalJSX {
7933
7958
  * @default 'right'
7934
7959
  */
7935
7960
  "_tooltipAlign"?: TooltipAlignPropType;
7936
- /**
7937
- * Defines which variant should be used for presentation.
7938
- * @default 'inline'
7939
- */
7940
- "_variant"?: LinkVariantPropType;
7941
7961
  }
7942
7962
  interface KolLinkButton {
7943
7963
  /**
@@ -8068,6 +8088,11 @@ declare namespace LocalJSX {
8068
8088
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
8069
8089
  */
8070
8090
  "_icons"?: Stringified<KoliBriIconsProp>;
8091
+ /**
8092
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8093
+ * @default true
8094
+ */
8095
+ "_inline"?: InlinePropType;
8071
8096
  /**
8072
8097
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
8073
8098
  */
@@ -8129,7 +8154,7 @@ declare namespace LocalJSX {
8129
8154
  */
8130
8155
  "_collapsible"?: boolean;
8131
8156
  /**
8132
- * Creates a button below the navigation, that toggles _collapsible. Only available for _orientation="vertical".
8157
+ * Creates a button below the navigation, that toggles _collapsible.
8133
8158
  * @default false
8134
8159
  */
8135
8160
  "_hasCompactButton"?: boolean;
@@ -8152,12 +8177,6 @@ declare namespace LocalJSX {
8152
8177
  * Defines the list of links, buttons or texts to render.
8153
8178
  */
8154
8179
  "_links": Stringified<ButtonOrLinkOrTextWithChildrenProps[]>;
8155
- /**
8156
- * Defines whether the orientation of the component is horizontal or vertical.
8157
- * @deprecated Will be removed in the next major version.
8158
- * @default 'vertical'
8159
- */
8160
- "_orientation"?: OrientationPropType;
8161
8180
  }
8162
8181
  interface KolPagination {
8163
8182
  /**
@@ -8304,6 +8323,11 @@ declare namespace LocalJSX {
8304
8323
  * @deprecated Will be removed in the next major version.
8305
8324
  */
8306
8325
  "_id"?: string;
8326
+ /**
8327
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8328
+ * @default false
8329
+ */
8330
+ "_inline"?: InlinePropType;
8307
8331
  /**
8308
8332
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
8309
8333
  */
@@ -8390,6 +8414,11 @@ declare namespace LocalJSX {
8390
8414
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
8391
8415
  */
8392
8416
  "_icons"?: IconsPropType;
8417
+ /**
8418
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8419
+ * @default false
8420
+ */
8421
+ "_inline"?: InlinePropType;
8393
8422
  /**
8394
8423
  * Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). Set to `false` to enable the expert slot.
8395
8424
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@public-ui/react-hook-form-adapter",
3
- "version": "4.0.0-alpha.6",
3
+ "version": "4.0.0-alpha.8",
4
4
  "license": "EUPL-1.2",
5
5
  "homepage": "https://public-ui.github.io",
6
6
  "repository": {
@@ -51,20 +51,20 @@
51
51
  "@typescript-eslint/eslint-plugin": "7.18.0",
52
52
  "@typescript-eslint/parser": "7.18.0",
53
53
  "eslint": "8.57.1",
54
- "prettier": "3.7.1",
54
+ "prettier": "3.7.4",
55
55
  "prettier-plugin-organize-imports": "4.3.0",
56
56
  "react": "19.2.0",
57
- "react-dom": "19.2.0",
57
+ "react-dom": "19.2.1",
58
58
  "react-hook-form": "7.63.0",
59
59
  "typescript": "5.9.3",
60
60
  "unbuild": "3.6.1",
61
- "@public-ui/react-v19": "4.0.0-alpha.6",
62
- "@public-ui/components": "4.0.0-alpha.6"
61
+ "@public-ui/react-v19": "4.0.0-alpha.8",
62
+ "@public-ui/components": "4.0.0-alpha.8"
63
63
  },
64
64
  "peerDependencies": {
65
65
  "react": "^19",
66
66
  "react-hook-form": "^7",
67
- "@public-ui/react-v19": "4.0.0-alpha.6"
67
+ "@public-ui/react-v19": "4.0.0-alpha.8"
68
68
  },
69
69
  "sideEffects": false,
70
70
  "type": "module",