@public-ui/react-hook-form-adapter 4.0.0-alpha.7 → 4.0.0-alpha.9

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
@@ -1461,6 +1461,7 @@ type KoliBriTableHeaderCell = KoliBriTableCell & {
1461
1461
  sortDirection?: KoliBriSortDirection;
1462
1462
  hidable?: boolean;
1463
1463
  sortable?: boolean;
1464
+ sortOrder?: number;
1464
1465
  resizable?: boolean;
1465
1466
  };
1466
1467
  type KoliBriTableSelection = {
@@ -1593,6 +1594,11 @@ type PropIndeterminate = {
1593
1594
  indeterminate: IndeterminatePropType;
1594
1595
  };
1595
1596
 
1597
+ type InlinePropType = boolean;
1598
+ type PropInline = {
1599
+ inline: InlinePropType;
1600
+ };
1601
+
1596
1602
  declare const headingLevelOptions: readonly [0, 1, 2, 3, 4, 5, 6];
1597
1603
  type HeadingLevel = (typeof headingLevelOptions)[number];
1598
1604
  type LabelPropType = string;
@@ -1623,12 +1629,6 @@ type PropLinkTarget = {
1623
1629
  target: LinkTargetPropType;
1624
1630
  };
1625
1631
 
1626
- declare const linkVariantPropTypeOptions: readonly ["inline", "standalone"];
1627
- type LinkVariantPropType = (typeof linkVariantPropTypeOptions)[number];
1628
- type PropLinkVariant = {
1629
- variant: LinkVariantPropType;
1630
- };
1631
-
1632
1632
  declare const loadingOptions: readonly ["eager", "lazy"];
1633
1633
  type Loading = (typeof loadingOptions)[number];
1634
1634
 
@@ -1802,16 +1802,16 @@ type AlertProps = Generic.Element.Members<RequiredAlertProps, OptionalAlertProps
1802
1802
 
1803
1803
  type RequiredButtonProps = PropLabelWithExpertSlot;
1804
1804
  type OptionalButtonProps = {
1805
+ ariaExpanded: AriaExpandedPropType;
1805
1806
  tabIndex: number;
1806
1807
  value: StencilUnknown;
1807
- ariaExpanded: AriaExpandedPropType;
1808
- } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaControls & PropAriaDescription & PropAriaSelected & PropButtonCallbacks<StencilUnknown> & PropButtonType & PropButtonVariant & PropCustomClass & PropDisabled & PropHideLabel & PropIcons & PropId & PropName & PropShortKey & PropSyncValueBySelector & PropTooltipAlign;
1808
+ } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaControls & PropAriaDescription & PropAriaSelected & PropButtonCallbacks<StencilUnknown> & PropButtonType & PropButtonVariant & PropCustomClass & PropDisabled & PropHideLabel & PropIcons & PropId & PropInline & PropName & PropShortKey & PropSyncValueBySelector & PropTooltipAlign;
1809
1809
  type ButtonProps = Generic.Element.Members<RequiredButtonProps, OptionalButtonProps>;
1810
1810
 
1811
1811
  type RequiredProps$f = PropHref;
1812
1812
  type OptionalProps$f = {
1813
1813
  tabIndex: number;
1814
- } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropLinkVariant & PropShortKey & PropTooltipAlign;
1814
+ } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropInline & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropShortKey & PropTooltipAlign;
1815
1815
  type LinkProps = Generic.Element.Members<RequiredProps$f, OptionalProps$f>;
1816
1816
 
1817
1817
  type BreadcrumbLinkProps = LinkProps & LabelProp;
@@ -2440,6 +2440,11 @@ declare namespace Components {
2440
2440
  * @deprecated Will be removed in the next major version.
2441
2441
  */
2442
2442
  "_id"?: string;
2443
+ /**
2444
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2445
+ * @default false
2446
+ */
2447
+ "_inline"?: InlinePropType;
2443
2448
  /**
2444
2449
  * 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
2450
  */
@@ -2537,6 +2542,11 @@ declare namespace Components {
2537
2542
  * @deprecated Will be removed in the next major version.
2538
2543
  */
2539
2544
  "_id"?: IdPropType;
2545
+ /**
2546
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2547
+ * @default true
2548
+ */
2549
+ "_inline"?: InlinePropType;
2540
2550
  /**
2541
2551
  * 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
2552
  */
@@ -2576,11 +2586,6 @@ declare namespace Components {
2576
2586
  * Defines the value that the button emits on click.
2577
2587
  */
2578
2588
  "_value"?: StencilUnknown;
2579
- /**
2580
- * Defines which variant should be used for presentation.
2581
- * @default 'inline'
2582
- */
2583
- "_variant"?: LinkVariantPropType;
2584
2589
  /**
2585
2590
  * Returns the current value.
2586
2591
  */
@@ -2644,13 +2649,14 @@ declare namespace Components {
2644
2649
  */
2645
2650
  "_id"?: string;
2646
2651
  /**
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.
2652
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2653
+ * @default false
2648
2654
  */
2649
- "_label": LabelWithExpertSlotPropType;
2655
+ "_inline"?: InlinePropType;
2650
2656
  /**
2651
- * Defines which variant should be used for presentation.
2657
+ * 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
2658
  */
2653
- "_linkVariant"?: LinkVariantPropType;
2659
+ "_label": LabelWithExpertSlotPropType;
2654
2660
  /**
2655
2661
  * Defines the technical name of an input field.
2656
2662
  */
@@ -4228,6 +4234,11 @@ declare namespace Components {
4228
4234
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
4229
4235
  */
4230
4236
  "_icons"?: Stringified<KoliBriIconsProp>;
4237
+ /**
4238
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4239
+ * @default true
4240
+ */
4241
+ "_inline"?: InlinePropType;
4231
4242
  /**
4232
4243
  * 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
4244
  */
@@ -4254,11 +4265,6 @@ declare namespace Components {
4254
4265
  * @default 'right'
4255
4266
  */
4256
4267
  "_tooltipAlign"?: TooltipAlignPropType;
4257
- /**
4258
- * Defines which variant should be used for presentation.
4259
- * @default 'inline'
4260
- */
4261
- "_variant"?: LinkVariantPropType;
4262
4268
  /**
4263
4269
  * Sets focus on the internal element.
4264
4270
  */
@@ -4403,13 +4409,14 @@ declare namespace Components {
4403
4409
  */
4404
4410
  "_icons"?: Stringified<KoliBriIconsProp>;
4405
4411
  /**
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.
4412
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4413
+ * @default true
4407
4414
  */
4408
- "_label"?: LabelWithExpertSlotPropType;
4415
+ "_inline"?: InlinePropType;
4409
4416
  /**
4410
- * Defines which variant should be used for presentation.
4417
+ * 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
4418
  */
4412
- "_linkVariant"?: LinkVariantPropType;
4419
+ "_label"?: LabelWithExpertSlotPropType;
4413
4420
  /**
4414
4421
  * Defines the callback functions for links.
4415
4422
  */
@@ -4479,7 +4486,7 @@ declare namespace Components {
4479
4486
  */
4480
4487
  "_collapsible"?: boolean;
4481
4488
  /**
4482
- * Creates a button below the navigation, that toggles _collapsible. Only available for _orientation="vertical".
4489
+ * Creates a button below the navigation, that toggles _collapsible.
4483
4490
  * @default false
4484
4491
  */
4485
4492
  "_hasCompactButton"?: boolean;
@@ -4502,12 +4509,6 @@ declare namespace Components {
4502
4509
  * Defines the list of links, buttons or texts to render.
4503
4510
  */
4504
4511
  "_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
4512
  }
4512
4513
  interface KolPagination {
4513
4514
  /**
@@ -4654,6 +4655,11 @@ declare namespace Components {
4654
4655
  * @deprecated Will be removed in the next major version.
4655
4656
  */
4656
4657
  "_id"?: string;
4658
+ /**
4659
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4660
+ * @default false
4661
+ */
4662
+ "_inline"?: InlinePropType;
4657
4663
  /**
4658
4664
  * 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
4665
  */
@@ -4760,6 +4766,11 @@ declare namespace Components {
4760
4766
  * Defines the internal ID of the primary component element.
4761
4767
  */
4762
4768
  "_id"?: string;
4769
+ /**
4770
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4771
+ * @default false
4772
+ */
4773
+ "_inline"?: InlinePropType;
4763
4774
  /**
4764
4775
  * 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
4776
  */
@@ -6344,6 +6355,11 @@ declare namespace LocalJSX {
6344
6355
  * @deprecated Will be removed in the next major version.
6345
6356
  */
6346
6357
  "_id"?: string;
6358
+ /**
6359
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6360
+ * @default false
6361
+ */
6362
+ "_inline"?: InlinePropType;
6347
6363
  /**
6348
6364
  * 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
6365
  */
@@ -6429,6 +6445,11 @@ declare namespace LocalJSX {
6429
6445
  * @deprecated Will be removed in the next major version.
6430
6446
  */
6431
6447
  "_id"?: IdPropType;
6448
+ /**
6449
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6450
+ * @default true
6451
+ */
6452
+ "_inline"?: InlinePropType;
6432
6453
  /**
6433
6454
  * 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
6455
  */
@@ -6464,11 +6485,6 @@ declare namespace LocalJSX {
6464
6485
  * Defines the value that the button emits on click.
6465
6486
  */
6466
6487
  "_value"?: StencilUnknown;
6467
- /**
6468
- * Defines which variant should be used for presentation.
6469
- * @default 'inline'
6470
- */
6471
- "_variant"?: LinkVariantPropType;
6472
6488
  }
6473
6489
  interface KolButtonWc {
6474
6490
  /**
@@ -6510,6 +6526,11 @@ declare namespace LocalJSX {
6510
6526
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
6511
6527
  */
6512
6528
  "_icons"?: IconsPropType;
6529
+ /**
6530
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6531
+ * @default false
6532
+ */
6533
+ "_inline"?: InlinePropType;
6513
6534
  /**
6514
6535
  * 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
6536
  */
@@ -7907,6 +7928,11 @@ declare namespace LocalJSX {
7907
7928
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
7908
7929
  */
7909
7930
  "_icons"?: Stringified<KoliBriIconsProp>;
7931
+ /**
7932
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
7933
+ * @default true
7934
+ */
7935
+ "_inline"?: InlinePropType;
7910
7936
  /**
7911
7937
  * 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
7938
  */
@@ -7933,11 +7959,6 @@ declare namespace LocalJSX {
7933
7959
  * @default 'right'
7934
7960
  */
7935
7961
  "_tooltipAlign"?: TooltipAlignPropType;
7936
- /**
7937
- * Defines which variant should be used for presentation.
7938
- * @default 'inline'
7939
- */
7940
- "_variant"?: LinkVariantPropType;
7941
7962
  }
7942
7963
  interface KolLinkButton {
7943
7964
  /**
@@ -8068,6 +8089,11 @@ declare namespace LocalJSX {
8068
8089
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
8069
8090
  */
8070
8091
  "_icons"?: Stringified<KoliBriIconsProp>;
8092
+ /**
8093
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8094
+ * @default true
8095
+ */
8096
+ "_inline"?: InlinePropType;
8071
8097
  /**
8072
8098
  * 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
8099
  */
@@ -8129,7 +8155,7 @@ declare namespace LocalJSX {
8129
8155
  */
8130
8156
  "_collapsible"?: boolean;
8131
8157
  /**
8132
- * Creates a button below the navigation, that toggles _collapsible. Only available for _orientation="vertical".
8158
+ * Creates a button below the navigation, that toggles _collapsible.
8133
8159
  * @default false
8134
8160
  */
8135
8161
  "_hasCompactButton"?: boolean;
@@ -8152,12 +8178,6 @@ declare namespace LocalJSX {
8152
8178
  * Defines the list of links, buttons or texts to render.
8153
8179
  */
8154
8180
  "_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
8181
  }
8162
8182
  interface KolPagination {
8163
8183
  /**
@@ -8304,6 +8324,11 @@ declare namespace LocalJSX {
8304
8324
  * @deprecated Will be removed in the next major version.
8305
8325
  */
8306
8326
  "_id"?: string;
8327
+ /**
8328
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8329
+ * @default false
8330
+ */
8331
+ "_inline"?: InlinePropType;
8307
8332
  /**
8308
8333
  * 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
8334
  */
@@ -8390,6 +8415,11 @@ declare namespace LocalJSX {
8390
8415
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
8391
8416
  */
8392
8417
  "_icons"?: IconsPropType;
8418
+ /**
8419
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8420
+ * @default false
8421
+ */
8422
+ "_inline"?: InlinePropType;
8393
8423
  /**
8394
8424
  * 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
8425
  */
package/dist/index.d.mts CHANGED
@@ -1461,6 +1461,7 @@ type KoliBriTableHeaderCell = KoliBriTableCell & {
1461
1461
  sortDirection?: KoliBriSortDirection;
1462
1462
  hidable?: boolean;
1463
1463
  sortable?: boolean;
1464
+ sortOrder?: number;
1464
1465
  resizable?: boolean;
1465
1466
  };
1466
1467
  type KoliBriTableSelection = {
@@ -1593,6 +1594,11 @@ type PropIndeterminate = {
1593
1594
  indeterminate: IndeterminatePropType;
1594
1595
  };
1595
1596
 
1597
+ type InlinePropType = boolean;
1598
+ type PropInline = {
1599
+ inline: InlinePropType;
1600
+ };
1601
+
1596
1602
  declare const headingLevelOptions: readonly [0, 1, 2, 3, 4, 5, 6];
1597
1603
  type HeadingLevel = (typeof headingLevelOptions)[number];
1598
1604
  type LabelPropType = string;
@@ -1623,12 +1629,6 @@ type PropLinkTarget = {
1623
1629
  target: LinkTargetPropType;
1624
1630
  };
1625
1631
 
1626
- declare const linkVariantPropTypeOptions: readonly ["inline", "standalone"];
1627
- type LinkVariantPropType = (typeof linkVariantPropTypeOptions)[number];
1628
- type PropLinkVariant = {
1629
- variant: LinkVariantPropType;
1630
- };
1631
-
1632
1632
  declare const loadingOptions: readonly ["eager", "lazy"];
1633
1633
  type Loading = (typeof loadingOptions)[number];
1634
1634
 
@@ -1802,16 +1802,16 @@ type AlertProps = Generic.Element.Members<RequiredAlertProps, OptionalAlertProps
1802
1802
 
1803
1803
  type RequiredButtonProps = PropLabelWithExpertSlot;
1804
1804
  type OptionalButtonProps = {
1805
+ ariaExpanded: AriaExpandedPropType;
1805
1806
  tabIndex: number;
1806
1807
  value: StencilUnknown;
1807
- ariaExpanded: AriaExpandedPropType;
1808
- } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaControls & PropAriaDescription & PropAriaSelected & PropButtonCallbacks<StencilUnknown> & PropButtonType & PropButtonVariant & PropCustomClass & PropDisabled & PropHideLabel & PropIcons & PropId & PropName & PropShortKey & PropSyncValueBySelector & PropTooltipAlign;
1808
+ } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaControls & PropAriaDescription & PropAriaSelected & PropButtonCallbacks<StencilUnknown> & PropButtonType & PropButtonVariant & PropCustomClass & PropDisabled & PropHideLabel & PropIcons & PropId & PropInline & PropName & PropShortKey & PropSyncValueBySelector & PropTooltipAlign;
1809
1809
  type ButtonProps = Generic.Element.Members<RequiredButtonProps, OptionalButtonProps>;
1810
1810
 
1811
1811
  type RequiredProps$f = PropHref;
1812
1812
  type OptionalProps$f = {
1813
1813
  tabIndex: number;
1814
- } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropLinkVariant & PropShortKey & PropTooltipAlign;
1814
+ } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropInline & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropShortKey & PropTooltipAlign;
1815
1815
  type LinkProps = Generic.Element.Members<RequiredProps$f, OptionalProps$f>;
1816
1816
 
1817
1817
  type BreadcrumbLinkProps = LinkProps & LabelProp;
@@ -2440,6 +2440,11 @@ declare namespace Components {
2440
2440
  * @deprecated Will be removed in the next major version.
2441
2441
  */
2442
2442
  "_id"?: string;
2443
+ /**
2444
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2445
+ * @default false
2446
+ */
2447
+ "_inline"?: InlinePropType;
2443
2448
  /**
2444
2449
  * 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
2450
  */
@@ -2537,6 +2542,11 @@ declare namespace Components {
2537
2542
  * @deprecated Will be removed in the next major version.
2538
2543
  */
2539
2544
  "_id"?: IdPropType;
2545
+ /**
2546
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2547
+ * @default true
2548
+ */
2549
+ "_inline"?: InlinePropType;
2540
2550
  /**
2541
2551
  * 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
2552
  */
@@ -2576,11 +2586,6 @@ declare namespace Components {
2576
2586
  * Defines the value that the button emits on click.
2577
2587
  */
2578
2588
  "_value"?: StencilUnknown;
2579
- /**
2580
- * Defines which variant should be used for presentation.
2581
- * @default 'inline'
2582
- */
2583
- "_variant"?: LinkVariantPropType;
2584
2589
  /**
2585
2590
  * Returns the current value.
2586
2591
  */
@@ -2644,13 +2649,14 @@ declare namespace Components {
2644
2649
  */
2645
2650
  "_id"?: string;
2646
2651
  /**
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.
2652
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2653
+ * @default false
2648
2654
  */
2649
- "_label": LabelWithExpertSlotPropType;
2655
+ "_inline"?: InlinePropType;
2650
2656
  /**
2651
- * Defines which variant should be used for presentation.
2657
+ * 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
2658
  */
2653
- "_linkVariant"?: LinkVariantPropType;
2659
+ "_label": LabelWithExpertSlotPropType;
2654
2660
  /**
2655
2661
  * Defines the technical name of an input field.
2656
2662
  */
@@ -4228,6 +4234,11 @@ declare namespace Components {
4228
4234
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
4229
4235
  */
4230
4236
  "_icons"?: Stringified<KoliBriIconsProp>;
4237
+ /**
4238
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4239
+ * @default true
4240
+ */
4241
+ "_inline"?: InlinePropType;
4231
4242
  /**
4232
4243
  * 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
4244
  */
@@ -4254,11 +4265,6 @@ declare namespace Components {
4254
4265
  * @default 'right'
4255
4266
  */
4256
4267
  "_tooltipAlign"?: TooltipAlignPropType;
4257
- /**
4258
- * Defines which variant should be used for presentation.
4259
- * @default 'inline'
4260
- */
4261
- "_variant"?: LinkVariantPropType;
4262
4268
  /**
4263
4269
  * Sets focus on the internal element.
4264
4270
  */
@@ -4403,13 +4409,14 @@ declare namespace Components {
4403
4409
  */
4404
4410
  "_icons"?: Stringified<KoliBriIconsProp>;
4405
4411
  /**
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.
4412
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4413
+ * @default true
4407
4414
  */
4408
- "_label"?: LabelWithExpertSlotPropType;
4415
+ "_inline"?: InlinePropType;
4409
4416
  /**
4410
- * Defines which variant should be used for presentation.
4417
+ * 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
4418
  */
4412
- "_linkVariant"?: LinkVariantPropType;
4419
+ "_label"?: LabelWithExpertSlotPropType;
4413
4420
  /**
4414
4421
  * Defines the callback functions for links.
4415
4422
  */
@@ -4479,7 +4486,7 @@ declare namespace Components {
4479
4486
  */
4480
4487
  "_collapsible"?: boolean;
4481
4488
  /**
4482
- * Creates a button below the navigation, that toggles _collapsible. Only available for _orientation="vertical".
4489
+ * Creates a button below the navigation, that toggles _collapsible.
4483
4490
  * @default false
4484
4491
  */
4485
4492
  "_hasCompactButton"?: boolean;
@@ -4502,12 +4509,6 @@ declare namespace Components {
4502
4509
  * Defines the list of links, buttons or texts to render.
4503
4510
  */
4504
4511
  "_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
4512
  }
4512
4513
  interface KolPagination {
4513
4514
  /**
@@ -4654,6 +4655,11 @@ declare namespace Components {
4654
4655
  * @deprecated Will be removed in the next major version.
4655
4656
  */
4656
4657
  "_id"?: string;
4658
+ /**
4659
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4660
+ * @default false
4661
+ */
4662
+ "_inline"?: InlinePropType;
4657
4663
  /**
4658
4664
  * 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
4665
  */
@@ -4760,6 +4766,11 @@ declare namespace Components {
4760
4766
  * Defines the internal ID of the primary component element.
4761
4767
  */
4762
4768
  "_id"?: string;
4769
+ /**
4770
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4771
+ * @default false
4772
+ */
4773
+ "_inline"?: InlinePropType;
4763
4774
  /**
4764
4775
  * 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
4776
  */
@@ -6344,6 +6355,11 @@ declare namespace LocalJSX {
6344
6355
  * @deprecated Will be removed in the next major version.
6345
6356
  */
6346
6357
  "_id"?: string;
6358
+ /**
6359
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6360
+ * @default false
6361
+ */
6362
+ "_inline"?: InlinePropType;
6347
6363
  /**
6348
6364
  * 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
6365
  */
@@ -6429,6 +6445,11 @@ declare namespace LocalJSX {
6429
6445
  * @deprecated Will be removed in the next major version.
6430
6446
  */
6431
6447
  "_id"?: IdPropType;
6448
+ /**
6449
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6450
+ * @default true
6451
+ */
6452
+ "_inline"?: InlinePropType;
6432
6453
  /**
6433
6454
  * 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
6455
  */
@@ -6464,11 +6485,6 @@ declare namespace LocalJSX {
6464
6485
  * Defines the value that the button emits on click.
6465
6486
  */
6466
6487
  "_value"?: StencilUnknown;
6467
- /**
6468
- * Defines which variant should be used for presentation.
6469
- * @default 'inline'
6470
- */
6471
- "_variant"?: LinkVariantPropType;
6472
6488
  }
6473
6489
  interface KolButtonWc {
6474
6490
  /**
@@ -6510,6 +6526,11 @@ declare namespace LocalJSX {
6510
6526
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
6511
6527
  */
6512
6528
  "_icons"?: IconsPropType;
6529
+ /**
6530
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6531
+ * @default false
6532
+ */
6533
+ "_inline"?: InlinePropType;
6513
6534
  /**
6514
6535
  * 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
6536
  */
@@ -7907,6 +7928,11 @@ declare namespace LocalJSX {
7907
7928
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
7908
7929
  */
7909
7930
  "_icons"?: Stringified<KoliBriIconsProp>;
7931
+ /**
7932
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
7933
+ * @default true
7934
+ */
7935
+ "_inline"?: InlinePropType;
7910
7936
  /**
7911
7937
  * 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
7938
  */
@@ -7933,11 +7959,6 @@ declare namespace LocalJSX {
7933
7959
  * @default 'right'
7934
7960
  */
7935
7961
  "_tooltipAlign"?: TooltipAlignPropType;
7936
- /**
7937
- * Defines which variant should be used for presentation.
7938
- * @default 'inline'
7939
- */
7940
- "_variant"?: LinkVariantPropType;
7941
7962
  }
7942
7963
  interface KolLinkButton {
7943
7964
  /**
@@ -8068,6 +8089,11 @@ declare namespace LocalJSX {
8068
8089
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
8069
8090
  */
8070
8091
  "_icons"?: Stringified<KoliBriIconsProp>;
8092
+ /**
8093
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8094
+ * @default true
8095
+ */
8096
+ "_inline"?: InlinePropType;
8071
8097
  /**
8072
8098
  * 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
8099
  */
@@ -8129,7 +8155,7 @@ declare namespace LocalJSX {
8129
8155
  */
8130
8156
  "_collapsible"?: boolean;
8131
8157
  /**
8132
- * Creates a button below the navigation, that toggles _collapsible. Only available for _orientation="vertical".
8158
+ * Creates a button below the navigation, that toggles _collapsible.
8133
8159
  * @default false
8134
8160
  */
8135
8161
  "_hasCompactButton"?: boolean;
@@ -8152,12 +8178,6 @@ declare namespace LocalJSX {
8152
8178
  * Defines the list of links, buttons or texts to render.
8153
8179
  */
8154
8180
  "_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
8181
  }
8162
8182
  interface KolPagination {
8163
8183
  /**
@@ -8304,6 +8324,11 @@ declare namespace LocalJSX {
8304
8324
  * @deprecated Will be removed in the next major version.
8305
8325
  */
8306
8326
  "_id"?: string;
8327
+ /**
8328
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8329
+ * @default false
8330
+ */
8331
+ "_inline"?: InlinePropType;
8307
8332
  /**
8308
8333
  * 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
8334
  */
@@ -8390,6 +8415,11 @@ declare namespace LocalJSX {
8390
8415
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
8391
8416
  */
8392
8417
  "_icons"?: IconsPropType;
8418
+ /**
8419
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8420
+ * @default false
8421
+ */
8422
+ "_inline"?: InlinePropType;
8393
8423
  /**
8394
8424
  * 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
8425
  */
package/dist/index.d.ts CHANGED
@@ -1461,6 +1461,7 @@ type KoliBriTableHeaderCell = KoliBriTableCell & {
1461
1461
  sortDirection?: KoliBriSortDirection;
1462
1462
  hidable?: boolean;
1463
1463
  sortable?: boolean;
1464
+ sortOrder?: number;
1464
1465
  resizable?: boolean;
1465
1466
  };
1466
1467
  type KoliBriTableSelection = {
@@ -1593,6 +1594,11 @@ type PropIndeterminate = {
1593
1594
  indeterminate: IndeterminatePropType;
1594
1595
  };
1595
1596
 
1597
+ type InlinePropType = boolean;
1598
+ type PropInline = {
1599
+ inline: InlinePropType;
1600
+ };
1601
+
1596
1602
  declare const headingLevelOptions: readonly [0, 1, 2, 3, 4, 5, 6];
1597
1603
  type HeadingLevel = (typeof headingLevelOptions)[number];
1598
1604
  type LabelPropType = string;
@@ -1623,12 +1629,6 @@ type PropLinkTarget = {
1623
1629
  target: LinkTargetPropType;
1624
1630
  };
1625
1631
 
1626
- declare const linkVariantPropTypeOptions: readonly ["inline", "standalone"];
1627
- type LinkVariantPropType = (typeof linkVariantPropTypeOptions)[number];
1628
- type PropLinkVariant = {
1629
- variant: LinkVariantPropType;
1630
- };
1631
-
1632
1632
  declare const loadingOptions: readonly ["eager", "lazy"];
1633
1633
  type Loading = (typeof loadingOptions)[number];
1634
1634
 
@@ -1802,16 +1802,16 @@ type AlertProps = Generic.Element.Members<RequiredAlertProps, OptionalAlertProps
1802
1802
 
1803
1803
  type RequiredButtonProps = PropLabelWithExpertSlot;
1804
1804
  type OptionalButtonProps = {
1805
+ ariaExpanded: AriaExpandedPropType;
1805
1806
  tabIndex: number;
1806
1807
  value: StencilUnknown;
1807
- ariaExpanded: AriaExpandedPropType;
1808
- } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaControls & PropAriaDescription & PropAriaSelected & PropButtonCallbacks<StencilUnknown> & PropButtonType & PropButtonVariant & PropCustomClass & PropDisabled & PropHideLabel & PropIcons & PropId & PropName & PropShortKey & PropSyncValueBySelector & PropTooltipAlign;
1808
+ } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaControls & PropAriaDescription & PropAriaSelected & PropButtonCallbacks<StencilUnknown> & PropButtonType & PropButtonVariant & PropCustomClass & PropDisabled & PropHideLabel & PropIcons & PropId & PropInline & PropName & PropShortKey & PropSyncValueBySelector & PropTooltipAlign;
1809
1809
  type ButtonProps = Generic.Element.Members<RequiredButtonProps, OptionalButtonProps>;
1810
1810
 
1811
1811
  type RequiredProps$f = PropHref;
1812
1812
  type OptionalProps$f = {
1813
1813
  tabIndex: number;
1814
- } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropLinkVariant & PropShortKey & PropTooltipAlign;
1814
+ } & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropInline & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropShortKey & PropTooltipAlign;
1815
1815
  type LinkProps = Generic.Element.Members<RequiredProps$f, OptionalProps$f>;
1816
1816
 
1817
1817
  type BreadcrumbLinkProps = LinkProps & LabelProp;
@@ -2440,6 +2440,11 @@ declare namespace Components {
2440
2440
  * @deprecated Will be removed in the next major version.
2441
2441
  */
2442
2442
  "_id"?: string;
2443
+ /**
2444
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2445
+ * @default false
2446
+ */
2447
+ "_inline"?: InlinePropType;
2443
2448
  /**
2444
2449
  * 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
2450
  */
@@ -2537,6 +2542,11 @@ declare namespace Components {
2537
2542
  * @deprecated Will be removed in the next major version.
2538
2543
  */
2539
2544
  "_id"?: IdPropType;
2545
+ /**
2546
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2547
+ * @default true
2548
+ */
2549
+ "_inline"?: InlinePropType;
2540
2550
  /**
2541
2551
  * 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
2552
  */
@@ -2576,11 +2586,6 @@ declare namespace Components {
2576
2586
  * Defines the value that the button emits on click.
2577
2587
  */
2578
2588
  "_value"?: StencilUnknown;
2579
- /**
2580
- * Defines which variant should be used for presentation.
2581
- * @default 'inline'
2582
- */
2583
- "_variant"?: LinkVariantPropType;
2584
2589
  /**
2585
2590
  * Returns the current value.
2586
2591
  */
@@ -2644,13 +2649,14 @@ declare namespace Components {
2644
2649
  */
2645
2650
  "_id"?: string;
2646
2651
  /**
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.
2652
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
2653
+ * @default false
2648
2654
  */
2649
- "_label": LabelWithExpertSlotPropType;
2655
+ "_inline"?: InlinePropType;
2650
2656
  /**
2651
- * Defines which variant should be used for presentation.
2657
+ * 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
2658
  */
2653
- "_linkVariant"?: LinkVariantPropType;
2659
+ "_label": LabelWithExpertSlotPropType;
2654
2660
  /**
2655
2661
  * Defines the technical name of an input field.
2656
2662
  */
@@ -4228,6 +4234,11 @@ declare namespace Components {
4228
4234
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
4229
4235
  */
4230
4236
  "_icons"?: Stringified<KoliBriIconsProp>;
4237
+ /**
4238
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4239
+ * @default true
4240
+ */
4241
+ "_inline"?: InlinePropType;
4231
4242
  /**
4232
4243
  * 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
4244
  */
@@ -4254,11 +4265,6 @@ declare namespace Components {
4254
4265
  * @default 'right'
4255
4266
  */
4256
4267
  "_tooltipAlign"?: TooltipAlignPropType;
4257
- /**
4258
- * Defines which variant should be used for presentation.
4259
- * @default 'inline'
4260
- */
4261
- "_variant"?: LinkVariantPropType;
4262
4268
  /**
4263
4269
  * Sets focus on the internal element.
4264
4270
  */
@@ -4403,13 +4409,14 @@ declare namespace Components {
4403
4409
  */
4404
4410
  "_icons"?: Stringified<KoliBriIconsProp>;
4405
4411
  /**
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.
4412
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4413
+ * @default true
4407
4414
  */
4408
- "_label"?: LabelWithExpertSlotPropType;
4415
+ "_inline"?: InlinePropType;
4409
4416
  /**
4410
- * Defines which variant should be used for presentation.
4417
+ * 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
4418
  */
4412
- "_linkVariant"?: LinkVariantPropType;
4419
+ "_label"?: LabelWithExpertSlotPropType;
4413
4420
  /**
4414
4421
  * Defines the callback functions for links.
4415
4422
  */
@@ -4479,7 +4486,7 @@ declare namespace Components {
4479
4486
  */
4480
4487
  "_collapsible"?: boolean;
4481
4488
  /**
4482
- * Creates a button below the navigation, that toggles _collapsible. Only available for _orientation="vertical".
4489
+ * Creates a button below the navigation, that toggles _collapsible.
4483
4490
  * @default false
4484
4491
  */
4485
4492
  "_hasCompactButton"?: boolean;
@@ -4502,12 +4509,6 @@ declare namespace Components {
4502
4509
  * Defines the list of links, buttons or texts to render.
4503
4510
  */
4504
4511
  "_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
4512
  }
4512
4513
  interface KolPagination {
4513
4514
  /**
@@ -4654,6 +4655,11 @@ declare namespace Components {
4654
4655
  * @deprecated Will be removed in the next major version.
4655
4656
  */
4656
4657
  "_id"?: string;
4658
+ /**
4659
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4660
+ * @default false
4661
+ */
4662
+ "_inline"?: InlinePropType;
4657
4663
  /**
4658
4664
  * 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
4665
  */
@@ -4760,6 +4766,11 @@ declare namespace Components {
4760
4766
  * Defines the internal ID of the primary component element.
4761
4767
  */
4762
4768
  "_id"?: string;
4769
+ /**
4770
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
4771
+ * @default false
4772
+ */
4773
+ "_inline"?: InlinePropType;
4763
4774
  /**
4764
4775
  * 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
4776
  */
@@ -6344,6 +6355,11 @@ declare namespace LocalJSX {
6344
6355
  * @deprecated Will be removed in the next major version.
6345
6356
  */
6346
6357
  "_id"?: string;
6358
+ /**
6359
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6360
+ * @default false
6361
+ */
6362
+ "_inline"?: InlinePropType;
6347
6363
  /**
6348
6364
  * 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
6365
  */
@@ -6429,6 +6445,11 @@ declare namespace LocalJSX {
6429
6445
  * @deprecated Will be removed in the next major version.
6430
6446
  */
6431
6447
  "_id"?: IdPropType;
6448
+ /**
6449
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6450
+ * @default true
6451
+ */
6452
+ "_inline"?: InlinePropType;
6432
6453
  /**
6433
6454
  * 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
6455
  */
@@ -6464,11 +6485,6 @@ declare namespace LocalJSX {
6464
6485
  * Defines the value that the button emits on click.
6465
6486
  */
6466
6487
  "_value"?: StencilUnknown;
6467
- /**
6468
- * Defines which variant should be used for presentation.
6469
- * @default 'inline'
6470
- */
6471
- "_variant"?: LinkVariantPropType;
6472
6488
  }
6473
6489
  interface KolButtonWc {
6474
6490
  /**
@@ -6510,6 +6526,11 @@ declare namespace LocalJSX {
6510
6526
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
6511
6527
  */
6512
6528
  "_icons"?: IconsPropType;
6529
+ /**
6530
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
6531
+ * @default false
6532
+ */
6533
+ "_inline"?: InlinePropType;
6513
6534
  /**
6514
6535
  * 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
6536
  */
@@ -7907,6 +7928,11 @@ declare namespace LocalJSX {
7907
7928
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
7908
7929
  */
7909
7930
  "_icons"?: Stringified<KoliBriIconsProp>;
7931
+ /**
7932
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
7933
+ * @default true
7934
+ */
7935
+ "_inline"?: InlinePropType;
7910
7936
  /**
7911
7937
  * 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
7938
  */
@@ -7933,11 +7959,6 @@ declare namespace LocalJSX {
7933
7959
  * @default 'right'
7934
7960
  */
7935
7961
  "_tooltipAlign"?: TooltipAlignPropType;
7936
- /**
7937
- * Defines which variant should be used for presentation.
7938
- * @default 'inline'
7939
- */
7940
- "_variant"?: LinkVariantPropType;
7941
7962
  }
7942
7963
  interface KolLinkButton {
7943
7964
  /**
@@ -8068,6 +8089,11 @@ declare namespace LocalJSX {
8068
8089
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
8069
8090
  */
8070
8091
  "_icons"?: Stringified<KoliBriIconsProp>;
8092
+ /**
8093
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8094
+ * @default true
8095
+ */
8096
+ "_inline"?: InlinePropType;
8071
8097
  /**
8072
8098
  * 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
8099
  */
@@ -8129,7 +8155,7 @@ declare namespace LocalJSX {
8129
8155
  */
8130
8156
  "_collapsible"?: boolean;
8131
8157
  /**
8132
- * Creates a button below the navigation, that toggles _collapsible. Only available for _orientation="vertical".
8158
+ * Creates a button below the navigation, that toggles _collapsible.
8133
8159
  * @default false
8134
8160
  */
8135
8161
  "_hasCompactButton"?: boolean;
@@ -8152,12 +8178,6 @@ declare namespace LocalJSX {
8152
8178
  * Defines the list of links, buttons or texts to render.
8153
8179
  */
8154
8180
  "_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
8181
  }
8162
8182
  interface KolPagination {
8163
8183
  /**
@@ -8304,6 +8324,11 @@ declare namespace LocalJSX {
8304
8324
  * @deprecated Will be removed in the next major version.
8305
8325
  */
8306
8326
  "_id"?: string;
8327
+ /**
8328
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8329
+ * @default false
8330
+ */
8331
+ "_inline"?: InlinePropType;
8307
8332
  /**
8308
8333
  * 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
8334
  */
@@ -8390,6 +8415,11 @@ declare namespace LocalJSX {
8390
8415
  * Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
8391
8416
  */
8392
8417
  "_icons"?: IconsPropType;
8418
+ /**
8419
+ * Defines whether the component is displayed as a standalone block or inline without enforcing a minimum size of 44px.
8420
+ * @default false
8421
+ */
8422
+ "_inline"?: InlinePropType;
8393
8423
  /**
8394
8424
  * 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
8425
  */
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.7",
3
+ "version": "4.0.0-alpha.9",
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.3",
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/components": "4.0.0-alpha.7",
62
- "@public-ui/react-v19": "4.0.0-alpha.7"
61
+ "@public-ui/components": "4.0.0-alpha.9",
62
+ "@public-ui/react-v19": "4.0.0-alpha.9"
63
63
  },
64
64
  "peerDependencies": {
65
65
  "react": "^19",
66
66
  "react-hook-form": "^7",
67
- "@public-ui/react-v19": "4.0.0-alpha.7"
67
+ "@public-ui/react-v19": "4.0.0-alpha.9"
68
68
  },
69
69
  "sideEffects": false,
70
70
  "type": "module",