@public-ui/react-hook-form-adapter 3.0.6-rc.2 → 3.0.7-d0e38f2b24188b03316351f07d939c4524a2fd81.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +61 -1
- package/dist/index.d.mts +61 -1
- package/dist/index.d.ts +61 -1
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -1500,6 +1500,8 @@ type PropHasCloser = {
|
|
|
1500
1500
|
hasCloser: HasCloserPropType;
|
|
1501
1501
|
};
|
|
1502
1502
|
|
|
1503
|
+
type HasSettingsMenuPropType = boolean;
|
|
1504
|
+
|
|
1503
1505
|
type HideLabelPropType = boolean;
|
|
1504
1506
|
type PropHideLabel = {
|
|
1505
1507
|
hideLabel: HideLabelPropType;
|
|
@@ -1701,7 +1703,7 @@ type ButtonProps = Generic.Element.Members<RequiredButtonProps, OptionalButtonPr
|
|
|
1701
1703
|
type RequiredProps$1 = PropHref;
|
|
1702
1704
|
type OptionalProps$1 = {
|
|
1703
1705
|
tabIndex: number;
|
|
1704
|
-
} & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropLinkVariant & PropShortKey & PropTooltipAlign;
|
|
1706
|
+
} & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropLinkVariant & PropShortKey & PropTooltipAlign;
|
|
1705
1707
|
type LinkProps = Generic.Element.Members<RequiredProps$1, OptionalProps$1>;
|
|
1706
1708
|
|
|
1707
1709
|
type BreadcrumbLinkProps = LinkProps & LabelProp;
|
|
@@ -3735,6 +3737,10 @@ declare namespace Components {
|
|
|
3735
3737
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
3736
3738
|
*/
|
|
3737
3739
|
"_accessKey"?: AccessKeyPropType;
|
|
3740
|
+
/**
|
|
3741
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
3742
|
+
*/
|
|
3743
|
+
"_ariaControls"?: string;
|
|
3738
3744
|
/**
|
|
3739
3745
|
* Defines the value for the aria-current attribute.
|
|
3740
3746
|
*/
|
|
@@ -3743,6 +3749,11 @@ declare namespace Components {
|
|
|
3743
3749
|
* Defines the value for the aria-description attribute.
|
|
3744
3750
|
*/
|
|
3745
3751
|
"_ariaDescription"?: AriaDescriptionPropType;
|
|
3752
|
+
/**
|
|
3753
|
+
* Defines whether the interactive element of the component expanded something. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-expanded)
|
|
3754
|
+
* @TODO : Change type back to `AriaExpandedPropType` after Stencil#4663 has been resolved.
|
|
3755
|
+
*/
|
|
3756
|
+
"_ariaExpanded"?: boolean;
|
|
3746
3757
|
/**
|
|
3747
3758
|
* Makes the element not focusable and ignore all events.
|
|
3748
3759
|
* @default false
|
|
@@ -3807,6 +3818,10 @@ declare namespace Components {
|
|
|
3807
3818
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
3808
3819
|
*/
|
|
3809
3820
|
"_accessKey"?: AccessKeyPropType;
|
|
3821
|
+
/**
|
|
3822
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
3823
|
+
*/
|
|
3824
|
+
"_ariaControls"?: string;
|
|
3810
3825
|
/**
|
|
3811
3826
|
* Defines the value for the aria-current attribute.
|
|
3812
3827
|
*/
|
|
@@ -3883,6 +3898,10 @@ declare namespace Components {
|
|
|
3883
3898
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
3884
3899
|
*/
|
|
3885
3900
|
"_accessKey"?: AccessKeyPropType;
|
|
3901
|
+
/**
|
|
3902
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
3903
|
+
*/
|
|
3904
|
+
"_ariaControls"?: string;
|
|
3886
3905
|
/**
|
|
3887
3906
|
* Defines the value for the aria-current attribute.
|
|
3888
3907
|
*/
|
|
@@ -4762,6 +4781,10 @@ declare namespace Components {
|
|
|
4762
4781
|
* Defines the data for the table footer.
|
|
4763
4782
|
*/
|
|
4764
4783
|
"_dataFoot"?: Stringified<KoliBriTableDataType[]>;
|
|
4784
|
+
/**
|
|
4785
|
+
* Enables the settings menu if true (default: false).
|
|
4786
|
+
*/
|
|
4787
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
4765
4788
|
/**
|
|
4766
4789
|
* Defines the horizontal and vertical table headers.
|
|
4767
4790
|
*/
|
|
@@ -4809,6 +4832,10 @@ declare namespace Components {
|
|
|
4809
4832
|
* Defines the data for the table footer.
|
|
4810
4833
|
*/
|
|
4811
4834
|
"_dataFoot"?: TableDataFootPropType;
|
|
4835
|
+
/**
|
|
4836
|
+
* Enables the settings menu if true (default: false).
|
|
4837
|
+
*/
|
|
4838
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
4812
4839
|
/**
|
|
4813
4840
|
* Defines the horizontal and vertical table headers.
|
|
4814
4841
|
*/
|
|
@@ -4843,6 +4870,10 @@ declare namespace Components {
|
|
|
4843
4870
|
* Defines the data for the table footer.
|
|
4844
4871
|
*/
|
|
4845
4872
|
"_dataFoot"?: TableDataFootPropType;
|
|
4873
|
+
/**
|
|
4874
|
+
* Enables the settings menu if true (default: false).
|
|
4875
|
+
*/
|
|
4876
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
4846
4877
|
/**
|
|
4847
4878
|
* Defines the horizontal and vertical table headers.
|
|
4848
4879
|
*/
|
|
@@ -7344,6 +7375,10 @@ declare namespace LocalJSX {
|
|
|
7344
7375
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
7345
7376
|
*/
|
|
7346
7377
|
"_accessKey"?: AccessKeyPropType;
|
|
7378
|
+
/**
|
|
7379
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
7380
|
+
*/
|
|
7381
|
+
"_ariaControls"?: string;
|
|
7347
7382
|
/**
|
|
7348
7383
|
* Defines the value for the aria-current attribute.
|
|
7349
7384
|
*/
|
|
@@ -7352,6 +7387,11 @@ declare namespace LocalJSX {
|
|
|
7352
7387
|
* Defines the value for the aria-description attribute.
|
|
7353
7388
|
*/
|
|
7354
7389
|
"_ariaDescription"?: AriaDescriptionPropType;
|
|
7390
|
+
/**
|
|
7391
|
+
* Defines whether the interactive element of the component expanded something. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-expanded)
|
|
7392
|
+
* @TODO : Change type back to `AriaExpandedPropType` after Stencil#4663 has been resolved.
|
|
7393
|
+
*/
|
|
7394
|
+
"_ariaExpanded"?: boolean;
|
|
7355
7395
|
/**
|
|
7356
7396
|
* Makes the element not focusable and ignore all events.
|
|
7357
7397
|
* @default false
|
|
@@ -7412,6 +7452,10 @@ declare namespace LocalJSX {
|
|
|
7412
7452
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
7413
7453
|
*/
|
|
7414
7454
|
"_accessKey"?: AccessKeyPropType;
|
|
7455
|
+
/**
|
|
7456
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
7457
|
+
*/
|
|
7458
|
+
"_ariaControls"?: string;
|
|
7415
7459
|
/**
|
|
7416
7460
|
* Defines the value for the aria-current attribute.
|
|
7417
7461
|
*/
|
|
@@ -7484,6 +7528,10 @@ declare namespace LocalJSX {
|
|
|
7484
7528
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
7485
7529
|
*/
|
|
7486
7530
|
"_accessKey"?: AccessKeyPropType;
|
|
7531
|
+
/**
|
|
7532
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
7533
|
+
*/
|
|
7534
|
+
"_ariaControls"?: string;
|
|
7487
7535
|
/**
|
|
7488
7536
|
* Defines the value for the aria-current attribute.
|
|
7489
7537
|
*/
|
|
@@ -8282,6 +8330,10 @@ declare namespace LocalJSX {
|
|
|
8282
8330
|
* Defines the data for the table footer.
|
|
8283
8331
|
*/
|
|
8284
8332
|
"_dataFoot"?: Stringified<KoliBriTableDataType[]>;
|
|
8333
|
+
/**
|
|
8334
|
+
* Enables the settings menu if true (default: false).
|
|
8335
|
+
*/
|
|
8336
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
8285
8337
|
/**
|
|
8286
8338
|
* Defines the horizontal and vertical table headers.
|
|
8287
8339
|
*/
|
|
@@ -8325,6 +8377,10 @@ declare namespace LocalJSX {
|
|
|
8325
8377
|
* Defines the data for the table footer.
|
|
8326
8378
|
*/
|
|
8327
8379
|
"_dataFoot"?: TableDataFootPropType;
|
|
8380
|
+
/**
|
|
8381
|
+
* Enables the settings menu if true (default: false).
|
|
8382
|
+
*/
|
|
8383
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
8328
8384
|
/**
|
|
8329
8385
|
* Defines the horizontal and vertical table headers.
|
|
8330
8386
|
*/
|
|
@@ -8359,6 +8415,10 @@ declare namespace LocalJSX {
|
|
|
8359
8415
|
* Defines the data for the table footer.
|
|
8360
8416
|
*/
|
|
8361
8417
|
"_dataFoot"?: TableDataFootPropType;
|
|
8418
|
+
/**
|
|
8419
|
+
* Enables the settings menu if true (default: false).
|
|
8420
|
+
*/
|
|
8421
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
8362
8422
|
/**
|
|
8363
8423
|
* Defines the horizontal and vertical table headers.
|
|
8364
8424
|
*/
|
package/dist/index.d.mts
CHANGED
|
@@ -1500,6 +1500,8 @@ type PropHasCloser = {
|
|
|
1500
1500
|
hasCloser: HasCloserPropType;
|
|
1501
1501
|
};
|
|
1502
1502
|
|
|
1503
|
+
type HasSettingsMenuPropType = boolean;
|
|
1504
|
+
|
|
1503
1505
|
type HideLabelPropType = boolean;
|
|
1504
1506
|
type PropHideLabel = {
|
|
1505
1507
|
hideLabel: HideLabelPropType;
|
|
@@ -1701,7 +1703,7 @@ type ButtonProps = Generic.Element.Members<RequiredButtonProps, OptionalButtonPr
|
|
|
1701
1703
|
type RequiredProps$1 = PropHref;
|
|
1702
1704
|
type OptionalProps$1 = {
|
|
1703
1705
|
tabIndex: number;
|
|
1704
|
-
} & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropLinkVariant & PropShortKey & PropTooltipAlign;
|
|
1706
|
+
} & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropLinkVariant & PropShortKey & PropTooltipAlign;
|
|
1705
1707
|
type LinkProps = Generic.Element.Members<RequiredProps$1, OptionalProps$1>;
|
|
1706
1708
|
|
|
1707
1709
|
type BreadcrumbLinkProps = LinkProps & LabelProp;
|
|
@@ -3735,6 +3737,10 @@ declare namespace Components {
|
|
|
3735
3737
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
3736
3738
|
*/
|
|
3737
3739
|
"_accessKey"?: AccessKeyPropType;
|
|
3740
|
+
/**
|
|
3741
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
3742
|
+
*/
|
|
3743
|
+
"_ariaControls"?: string;
|
|
3738
3744
|
/**
|
|
3739
3745
|
* Defines the value for the aria-current attribute.
|
|
3740
3746
|
*/
|
|
@@ -3743,6 +3749,11 @@ declare namespace Components {
|
|
|
3743
3749
|
* Defines the value for the aria-description attribute.
|
|
3744
3750
|
*/
|
|
3745
3751
|
"_ariaDescription"?: AriaDescriptionPropType;
|
|
3752
|
+
/**
|
|
3753
|
+
* Defines whether the interactive element of the component expanded something. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-expanded)
|
|
3754
|
+
* @TODO : Change type back to `AriaExpandedPropType` after Stencil#4663 has been resolved.
|
|
3755
|
+
*/
|
|
3756
|
+
"_ariaExpanded"?: boolean;
|
|
3746
3757
|
/**
|
|
3747
3758
|
* Makes the element not focusable and ignore all events.
|
|
3748
3759
|
* @default false
|
|
@@ -3807,6 +3818,10 @@ declare namespace Components {
|
|
|
3807
3818
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
3808
3819
|
*/
|
|
3809
3820
|
"_accessKey"?: AccessKeyPropType;
|
|
3821
|
+
/**
|
|
3822
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
3823
|
+
*/
|
|
3824
|
+
"_ariaControls"?: string;
|
|
3810
3825
|
/**
|
|
3811
3826
|
* Defines the value for the aria-current attribute.
|
|
3812
3827
|
*/
|
|
@@ -3883,6 +3898,10 @@ declare namespace Components {
|
|
|
3883
3898
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
3884
3899
|
*/
|
|
3885
3900
|
"_accessKey"?: AccessKeyPropType;
|
|
3901
|
+
/**
|
|
3902
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
3903
|
+
*/
|
|
3904
|
+
"_ariaControls"?: string;
|
|
3886
3905
|
/**
|
|
3887
3906
|
* Defines the value for the aria-current attribute.
|
|
3888
3907
|
*/
|
|
@@ -4762,6 +4781,10 @@ declare namespace Components {
|
|
|
4762
4781
|
* Defines the data for the table footer.
|
|
4763
4782
|
*/
|
|
4764
4783
|
"_dataFoot"?: Stringified<KoliBriTableDataType[]>;
|
|
4784
|
+
/**
|
|
4785
|
+
* Enables the settings menu if true (default: false).
|
|
4786
|
+
*/
|
|
4787
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
4765
4788
|
/**
|
|
4766
4789
|
* Defines the horizontal and vertical table headers.
|
|
4767
4790
|
*/
|
|
@@ -4809,6 +4832,10 @@ declare namespace Components {
|
|
|
4809
4832
|
* Defines the data for the table footer.
|
|
4810
4833
|
*/
|
|
4811
4834
|
"_dataFoot"?: TableDataFootPropType;
|
|
4835
|
+
/**
|
|
4836
|
+
* Enables the settings menu if true (default: false).
|
|
4837
|
+
*/
|
|
4838
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
4812
4839
|
/**
|
|
4813
4840
|
* Defines the horizontal and vertical table headers.
|
|
4814
4841
|
*/
|
|
@@ -4843,6 +4870,10 @@ declare namespace Components {
|
|
|
4843
4870
|
* Defines the data for the table footer.
|
|
4844
4871
|
*/
|
|
4845
4872
|
"_dataFoot"?: TableDataFootPropType;
|
|
4873
|
+
/**
|
|
4874
|
+
* Enables the settings menu if true (default: false).
|
|
4875
|
+
*/
|
|
4876
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
4846
4877
|
/**
|
|
4847
4878
|
* Defines the horizontal and vertical table headers.
|
|
4848
4879
|
*/
|
|
@@ -7344,6 +7375,10 @@ declare namespace LocalJSX {
|
|
|
7344
7375
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
7345
7376
|
*/
|
|
7346
7377
|
"_accessKey"?: AccessKeyPropType;
|
|
7378
|
+
/**
|
|
7379
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
7380
|
+
*/
|
|
7381
|
+
"_ariaControls"?: string;
|
|
7347
7382
|
/**
|
|
7348
7383
|
* Defines the value for the aria-current attribute.
|
|
7349
7384
|
*/
|
|
@@ -7352,6 +7387,11 @@ declare namespace LocalJSX {
|
|
|
7352
7387
|
* Defines the value for the aria-description attribute.
|
|
7353
7388
|
*/
|
|
7354
7389
|
"_ariaDescription"?: AriaDescriptionPropType;
|
|
7390
|
+
/**
|
|
7391
|
+
* Defines whether the interactive element of the component expanded something. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-expanded)
|
|
7392
|
+
* @TODO : Change type back to `AriaExpandedPropType` after Stencil#4663 has been resolved.
|
|
7393
|
+
*/
|
|
7394
|
+
"_ariaExpanded"?: boolean;
|
|
7355
7395
|
/**
|
|
7356
7396
|
* Makes the element not focusable and ignore all events.
|
|
7357
7397
|
* @default false
|
|
@@ -7412,6 +7452,10 @@ declare namespace LocalJSX {
|
|
|
7412
7452
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
7413
7453
|
*/
|
|
7414
7454
|
"_accessKey"?: AccessKeyPropType;
|
|
7455
|
+
/**
|
|
7456
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
7457
|
+
*/
|
|
7458
|
+
"_ariaControls"?: string;
|
|
7415
7459
|
/**
|
|
7416
7460
|
* Defines the value for the aria-current attribute.
|
|
7417
7461
|
*/
|
|
@@ -7484,6 +7528,10 @@ declare namespace LocalJSX {
|
|
|
7484
7528
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
7485
7529
|
*/
|
|
7486
7530
|
"_accessKey"?: AccessKeyPropType;
|
|
7531
|
+
/**
|
|
7532
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
7533
|
+
*/
|
|
7534
|
+
"_ariaControls"?: string;
|
|
7487
7535
|
/**
|
|
7488
7536
|
* Defines the value for the aria-current attribute.
|
|
7489
7537
|
*/
|
|
@@ -8282,6 +8330,10 @@ declare namespace LocalJSX {
|
|
|
8282
8330
|
* Defines the data for the table footer.
|
|
8283
8331
|
*/
|
|
8284
8332
|
"_dataFoot"?: Stringified<KoliBriTableDataType[]>;
|
|
8333
|
+
/**
|
|
8334
|
+
* Enables the settings menu if true (default: false).
|
|
8335
|
+
*/
|
|
8336
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
8285
8337
|
/**
|
|
8286
8338
|
* Defines the horizontal and vertical table headers.
|
|
8287
8339
|
*/
|
|
@@ -8325,6 +8377,10 @@ declare namespace LocalJSX {
|
|
|
8325
8377
|
* Defines the data for the table footer.
|
|
8326
8378
|
*/
|
|
8327
8379
|
"_dataFoot"?: TableDataFootPropType;
|
|
8380
|
+
/**
|
|
8381
|
+
* Enables the settings menu if true (default: false).
|
|
8382
|
+
*/
|
|
8383
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
8328
8384
|
/**
|
|
8329
8385
|
* Defines the horizontal and vertical table headers.
|
|
8330
8386
|
*/
|
|
@@ -8359,6 +8415,10 @@ declare namespace LocalJSX {
|
|
|
8359
8415
|
* Defines the data for the table footer.
|
|
8360
8416
|
*/
|
|
8361
8417
|
"_dataFoot"?: TableDataFootPropType;
|
|
8418
|
+
/**
|
|
8419
|
+
* Enables the settings menu if true (default: false).
|
|
8420
|
+
*/
|
|
8421
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
8362
8422
|
/**
|
|
8363
8423
|
* Defines the horizontal and vertical table headers.
|
|
8364
8424
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1500,6 +1500,8 @@ type PropHasCloser = {
|
|
|
1500
1500
|
hasCloser: HasCloserPropType;
|
|
1501
1501
|
};
|
|
1502
1502
|
|
|
1503
|
+
type HasSettingsMenuPropType = boolean;
|
|
1504
|
+
|
|
1503
1505
|
type HideLabelPropType = boolean;
|
|
1504
1506
|
type PropHideLabel = {
|
|
1505
1507
|
hideLabel: HideLabelPropType;
|
|
@@ -1701,7 +1703,7 @@ type ButtonProps = Generic.Element.Members<RequiredButtonProps, OptionalButtonPr
|
|
|
1701
1703
|
type RequiredProps$1 = PropHref;
|
|
1702
1704
|
type OptionalProps$1 = {
|
|
1703
1705
|
tabIndex: number;
|
|
1704
|
-
} & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropLinkVariant & PropShortKey & PropTooltipAlign;
|
|
1706
|
+
} & PropAccessKey & PropAlternativeButtonLinkRole & PropAriaCurrentValue & PropAriaControls & PropAriaDescription & PropDisabled & PropDownload & PropHideLabel & PropIcons & PropLabelWithExpertSlot & PropLinkOnCallbacks & PropLinkTarget & PropLinkVariant & PropShortKey & PropTooltipAlign;
|
|
1705
1707
|
type LinkProps = Generic.Element.Members<RequiredProps$1, OptionalProps$1>;
|
|
1706
1708
|
|
|
1707
1709
|
type BreadcrumbLinkProps = LinkProps & LabelProp;
|
|
@@ -3735,6 +3737,10 @@ declare namespace Components {
|
|
|
3735
3737
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
3736
3738
|
*/
|
|
3737
3739
|
"_accessKey"?: AccessKeyPropType;
|
|
3740
|
+
/**
|
|
3741
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
3742
|
+
*/
|
|
3743
|
+
"_ariaControls"?: string;
|
|
3738
3744
|
/**
|
|
3739
3745
|
* Defines the value for the aria-current attribute.
|
|
3740
3746
|
*/
|
|
@@ -3743,6 +3749,11 @@ declare namespace Components {
|
|
|
3743
3749
|
* Defines the value for the aria-description attribute.
|
|
3744
3750
|
*/
|
|
3745
3751
|
"_ariaDescription"?: AriaDescriptionPropType;
|
|
3752
|
+
/**
|
|
3753
|
+
* Defines whether the interactive element of the component expanded something. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-expanded)
|
|
3754
|
+
* @TODO : Change type back to `AriaExpandedPropType` after Stencil#4663 has been resolved.
|
|
3755
|
+
*/
|
|
3756
|
+
"_ariaExpanded"?: boolean;
|
|
3746
3757
|
/**
|
|
3747
3758
|
* Makes the element not focusable and ignore all events.
|
|
3748
3759
|
* @default false
|
|
@@ -3807,6 +3818,10 @@ declare namespace Components {
|
|
|
3807
3818
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
3808
3819
|
*/
|
|
3809
3820
|
"_accessKey"?: AccessKeyPropType;
|
|
3821
|
+
/**
|
|
3822
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
3823
|
+
*/
|
|
3824
|
+
"_ariaControls"?: string;
|
|
3810
3825
|
/**
|
|
3811
3826
|
* Defines the value for the aria-current attribute.
|
|
3812
3827
|
*/
|
|
@@ -3883,6 +3898,10 @@ declare namespace Components {
|
|
|
3883
3898
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
3884
3899
|
*/
|
|
3885
3900
|
"_accessKey"?: AccessKeyPropType;
|
|
3901
|
+
/**
|
|
3902
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
3903
|
+
*/
|
|
3904
|
+
"_ariaControls"?: string;
|
|
3886
3905
|
/**
|
|
3887
3906
|
* Defines the value for the aria-current attribute.
|
|
3888
3907
|
*/
|
|
@@ -4762,6 +4781,10 @@ declare namespace Components {
|
|
|
4762
4781
|
* Defines the data for the table footer.
|
|
4763
4782
|
*/
|
|
4764
4783
|
"_dataFoot"?: Stringified<KoliBriTableDataType[]>;
|
|
4784
|
+
/**
|
|
4785
|
+
* Enables the settings menu if true (default: false).
|
|
4786
|
+
*/
|
|
4787
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
4765
4788
|
/**
|
|
4766
4789
|
* Defines the horizontal and vertical table headers.
|
|
4767
4790
|
*/
|
|
@@ -4809,6 +4832,10 @@ declare namespace Components {
|
|
|
4809
4832
|
* Defines the data for the table footer.
|
|
4810
4833
|
*/
|
|
4811
4834
|
"_dataFoot"?: TableDataFootPropType;
|
|
4835
|
+
/**
|
|
4836
|
+
* Enables the settings menu if true (default: false).
|
|
4837
|
+
*/
|
|
4838
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
4812
4839
|
/**
|
|
4813
4840
|
* Defines the horizontal and vertical table headers.
|
|
4814
4841
|
*/
|
|
@@ -4843,6 +4870,10 @@ declare namespace Components {
|
|
|
4843
4870
|
* Defines the data for the table footer.
|
|
4844
4871
|
*/
|
|
4845
4872
|
"_dataFoot"?: TableDataFootPropType;
|
|
4873
|
+
/**
|
|
4874
|
+
* Enables the settings menu if true (default: false).
|
|
4875
|
+
*/
|
|
4876
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
4846
4877
|
/**
|
|
4847
4878
|
* Defines the horizontal and vertical table headers.
|
|
4848
4879
|
*/
|
|
@@ -7344,6 +7375,10 @@ declare namespace LocalJSX {
|
|
|
7344
7375
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
7345
7376
|
*/
|
|
7346
7377
|
"_accessKey"?: AccessKeyPropType;
|
|
7378
|
+
/**
|
|
7379
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
7380
|
+
*/
|
|
7381
|
+
"_ariaControls"?: string;
|
|
7347
7382
|
/**
|
|
7348
7383
|
* Defines the value for the aria-current attribute.
|
|
7349
7384
|
*/
|
|
@@ -7352,6 +7387,11 @@ declare namespace LocalJSX {
|
|
|
7352
7387
|
* Defines the value for the aria-description attribute.
|
|
7353
7388
|
*/
|
|
7354
7389
|
"_ariaDescription"?: AriaDescriptionPropType;
|
|
7390
|
+
/**
|
|
7391
|
+
* Defines whether the interactive element of the component expanded something. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-expanded)
|
|
7392
|
+
* @TODO : Change type back to `AriaExpandedPropType` after Stencil#4663 has been resolved.
|
|
7393
|
+
*/
|
|
7394
|
+
"_ariaExpanded"?: boolean;
|
|
7355
7395
|
/**
|
|
7356
7396
|
* Makes the element not focusable and ignore all events.
|
|
7357
7397
|
* @default false
|
|
@@ -7412,6 +7452,10 @@ declare namespace LocalJSX {
|
|
|
7412
7452
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
7413
7453
|
*/
|
|
7414
7454
|
"_accessKey"?: AccessKeyPropType;
|
|
7455
|
+
/**
|
|
7456
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
7457
|
+
*/
|
|
7458
|
+
"_ariaControls"?: string;
|
|
7415
7459
|
/**
|
|
7416
7460
|
* Defines the value for the aria-current attribute.
|
|
7417
7461
|
*/
|
|
@@ -7484,6 +7528,10 @@ declare namespace LocalJSX {
|
|
|
7484
7528
|
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
7485
7529
|
*/
|
|
7486
7530
|
"_accessKey"?: AccessKeyPropType;
|
|
7531
|
+
/**
|
|
7532
|
+
* Defines which elements are controlled by this component. (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-controls)
|
|
7533
|
+
*/
|
|
7534
|
+
"_ariaControls"?: string;
|
|
7487
7535
|
/**
|
|
7488
7536
|
* Defines the value for the aria-current attribute.
|
|
7489
7537
|
*/
|
|
@@ -8282,6 +8330,10 @@ declare namespace LocalJSX {
|
|
|
8282
8330
|
* Defines the data for the table footer.
|
|
8283
8331
|
*/
|
|
8284
8332
|
"_dataFoot"?: Stringified<KoliBriTableDataType[]>;
|
|
8333
|
+
/**
|
|
8334
|
+
* Enables the settings menu if true (default: false).
|
|
8335
|
+
*/
|
|
8336
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
8285
8337
|
/**
|
|
8286
8338
|
* Defines the horizontal and vertical table headers.
|
|
8287
8339
|
*/
|
|
@@ -8325,6 +8377,10 @@ declare namespace LocalJSX {
|
|
|
8325
8377
|
* Defines the data for the table footer.
|
|
8326
8378
|
*/
|
|
8327
8379
|
"_dataFoot"?: TableDataFootPropType;
|
|
8380
|
+
/**
|
|
8381
|
+
* Enables the settings menu if true (default: false).
|
|
8382
|
+
*/
|
|
8383
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
8328
8384
|
/**
|
|
8329
8385
|
* Defines the horizontal and vertical table headers.
|
|
8330
8386
|
*/
|
|
@@ -8359,6 +8415,10 @@ declare namespace LocalJSX {
|
|
|
8359
8415
|
* Defines the data for the table footer.
|
|
8360
8416
|
*/
|
|
8361
8417
|
"_dataFoot"?: TableDataFootPropType;
|
|
8418
|
+
/**
|
|
8419
|
+
* Enables the settings menu if true (default: false).
|
|
8420
|
+
*/
|
|
8421
|
+
"_hasSettingsMenu"?: HasSettingsMenuPropType;
|
|
8362
8422
|
/**
|
|
8363
8423
|
* Defines the horizontal and vertical table headers.
|
|
8364
8424
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/react-hook-form-adapter",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.7-d0e38f2b24188b03316351f07d939c4524a2fd81.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -56,13 +56,13 @@
|
|
|
56
56
|
"react-dom": "19.1.1",
|
|
57
57
|
"typescript": "5.9.2",
|
|
58
58
|
"unbuild": "3.6.1",
|
|
59
|
-
"@public-ui/components": "3.0.
|
|
60
|
-
"@public-ui/react-v19": "3.0.
|
|
59
|
+
"@public-ui/components": "3.0.7-d0e38f2b24188b03316351f07d939c4524a2fd81.0",
|
|
60
|
+
"@public-ui/react-v19": "3.0.7-d0e38f2b24188b03316351f07d939c4524a2fd81.0"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"react": "^19",
|
|
64
64
|
"react-hook-form": "^7",
|
|
65
|
-
"@public-ui/react-v19": "3.0.
|
|
65
|
+
"@public-ui/react-v19": "3.0.7-d0e38f2b24188b03316351f07d939c4524a2fd81.0"
|
|
66
66
|
},
|
|
67
67
|
"sideEffects": false,
|
|
68
68
|
"type": "module",
|