@public-ui/react-hook-form-adapter 3.0.9-rc.2 → 3.0.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 +215 -0
- package/dist/index.d.mts +215 -0
- package/dist/index.d.ts +215 -0
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -5013,6 +5013,115 @@ declare namespace Components {
|
|
|
5013
5013
|
* Defines the value of the element.
|
|
5014
5014
|
*/
|
|
5015
5015
|
"_value"?: Stringified<StencilUnknown[]> | Stringified<StencilUnknown>;
|
|
5016
|
+
/**
|
|
5017
|
+
* Returns the selected values.
|
|
5018
|
+
*/
|
|
5019
|
+
"getValue": () => Promise<StencilUnknown[] | StencilUnknown>;
|
|
5020
|
+
/**
|
|
5021
|
+
* Focuses the select element.
|
|
5022
|
+
*/
|
|
5023
|
+
"kolFocus": () => Promise<void>;
|
|
5024
|
+
}
|
|
5025
|
+
interface KolSelectWc {
|
|
5026
|
+
/**
|
|
5027
|
+
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
5028
|
+
*/
|
|
5029
|
+
"_accessKey"?: string;
|
|
5030
|
+
/**
|
|
5031
|
+
* Makes the element not focusable and ignore all events.
|
|
5032
|
+
* @TODO : Change type back to `DisabledPropType` after Stencil#4663 has been resolved.
|
|
5033
|
+
* @default false
|
|
5034
|
+
*/
|
|
5035
|
+
"_disabled"?: boolean;
|
|
5036
|
+
/**
|
|
5037
|
+
* Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it.
|
|
5038
|
+
* @TODO : Change type back to `HideLabelPropType` after Stencil#4663 has been resolved.
|
|
5039
|
+
* @default false
|
|
5040
|
+
*/
|
|
5041
|
+
"_hideLabel"?: boolean;
|
|
5042
|
+
/**
|
|
5043
|
+
* Hides the error message but leaves it in the DOM for the input's aria-describedby.
|
|
5044
|
+
* @TODO : Change type back to `HideMsgPropType` after Stencil#4663 has been resolved.
|
|
5045
|
+
* @default false
|
|
5046
|
+
*/
|
|
5047
|
+
"_hideMsg"?: boolean;
|
|
5048
|
+
/**
|
|
5049
|
+
* Defines the hint text.
|
|
5050
|
+
* @default ''
|
|
5051
|
+
*/
|
|
5052
|
+
"_hint"?: string;
|
|
5053
|
+
/**
|
|
5054
|
+
* Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
|
|
5055
|
+
*/
|
|
5056
|
+
"_icons"?: IconsHorizontalPropType;
|
|
5057
|
+
/**
|
|
5058
|
+
* Defines the internal ID of the primary component element.
|
|
5059
|
+
* @deprecated Will be removed in the next major version.
|
|
5060
|
+
*/
|
|
5061
|
+
"_id"?: IdPropType;
|
|
5062
|
+
/**
|
|
5063
|
+
* 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.
|
|
5064
|
+
*/
|
|
5065
|
+
"_label": LabelWithExpertSlotPropType;
|
|
5066
|
+
/**
|
|
5067
|
+
* Defines the properties for a message rendered as Alert component.
|
|
5068
|
+
*/
|
|
5069
|
+
"_msg"?: Stringified<MsgPropType>;
|
|
5070
|
+
/**
|
|
5071
|
+
* Makes the input accept multiple inputs.
|
|
5072
|
+
* @TODO : Change type back to `MultiplePropType` after Stencil#4663 has been resolved.
|
|
5073
|
+
* @default false
|
|
5074
|
+
*/
|
|
5075
|
+
"_multiple"?: boolean;
|
|
5076
|
+
/**
|
|
5077
|
+
* Defines the technical name of an input field.
|
|
5078
|
+
*/
|
|
5079
|
+
"_name"?: NamePropType;
|
|
5080
|
+
/**
|
|
5081
|
+
* Gibt die EventCallback-Funktionen für das Input-Event an.
|
|
5082
|
+
*/
|
|
5083
|
+
"_on"?: InputTypeOnDefault;
|
|
5084
|
+
/**
|
|
5085
|
+
* Options the user can choose from, also supporting Optgroup.
|
|
5086
|
+
*/
|
|
5087
|
+
"_options": OptionsWithOptgroupPropType;
|
|
5088
|
+
/**
|
|
5089
|
+
* Makes the input element required.
|
|
5090
|
+
* @TODO : Change type back to `RequiredPropType` after Stencil#4663 has been resolved.
|
|
5091
|
+
* @default false
|
|
5092
|
+
*/
|
|
5093
|
+
"_required"?: boolean;
|
|
5094
|
+
/**
|
|
5095
|
+
* Defines how many rows of options should be visible at the same time.
|
|
5096
|
+
*/
|
|
5097
|
+
"_rows"?: RowsPropType;
|
|
5098
|
+
/**
|
|
5099
|
+
* Adds a visual shortcut hint after the label and instructs the screen reader to read the shortcut aloud.
|
|
5100
|
+
*/
|
|
5101
|
+
"_shortKey"?: ShortKeyPropType;
|
|
5102
|
+
/**
|
|
5103
|
+
* Selector for synchronizing the value with another input element.
|
|
5104
|
+
*/
|
|
5105
|
+
"_syncValueBySelector"?: SyncValueBySelectorPropType;
|
|
5106
|
+
/**
|
|
5107
|
+
* Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex)
|
|
5108
|
+
*/
|
|
5109
|
+
"_tabIndex"?: number;
|
|
5110
|
+
/**
|
|
5111
|
+
* Defines where to show the Tooltip preferably: top, right, bottom or left.
|
|
5112
|
+
* @default 'top'
|
|
5113
|
+
*/
|
|
5114
|
+
"_tooltipAlign"?: TooltipAlignPropType;
|
|
5115
|
+
/**
|
|
5116
|
+
* Shows if the input was touched by a user.
|
|
5117
|
+
* @TODO : Change type back to `TouchedPropType` after Stencil#4663 has been resolved.
|
|
5118
|
+
* @default false
|
|
5119
|
+
*/
|
|
5120
|
+
"_touched"?: boolean;
|
|
5121
|
+
/**
|
|
5122
|
+
* Defines the value of the input.
|
|
5123
|
+
*/
|
|
5124
|
+
"_value"?: Stringified<StencilUnknown[]> | Stringified<StencilUnknown>;
|
|
5016
5125
|
/**
|
|
5017
5126
|
* Returns the current value.
|
|
5018
5127
|
*/
|
|
@@ -5984,6 +6093,12 @@ declare global {
|
|
|
5984
6093
|
prototype: HTMLKolSelectElement;
|
|
5985
6094
|
new (): HTMLKolSelectElement;
|
|
5986
6095
|
};
|
|
6096
|
+
interface HTMLKolSelectWcElement extends Components.KolSelectWc, HTMLStencilElement {
|
|
6097
|
+
}
|
|
6098
|
+
var HTMLKolSelectWcElement: {
|
|
6099
|
+
prototype: HTMLKolSelectWcElement;
|
|
6100
|
+
new (): HTMLKolSelectWcElement;
|
|
6101
|
+
};
|
|
5987
6102
|
interface HTMLKolSingleSelectElement extends Components.KolSingleSelect, HTMLStencilElement {
|
|
5988
6103
|
}
|
|
5989
6104
|
var HTMLKolSingleSelectElement: {
|
|
@@ -6143,6 +6258,7 @@ declare global {
|
|
|
6143
6258
|
"kol-progress": HTMLKolProgressElement;
|
|
6144
6259
|
"kol-quote": HTMLKolQuoteElement;
|
|
6145
6260
|
"kol-select": HTMLKolSelectElement;
|
|
6261
|
+
"kol-select-wc": HTMLKolSelectWcElement;
|
|
6146
6262
|
"kol-single-select": HTMLKolSingleSelectElement;
|
|
6147
6263
|
"kol-skip-nav": HTMLKolSkipNavElement;
|
|
6148
6264
|
"kol-spin": HTMLKolSpinElement;
|
|
@@ -8661,6 +8777,103 @@ declare namespace LocalJSX {
|
|
|
8661
8777
|
*/
|
|
8662
8778
|
"_value"?: Stringified<StencilUnknown[]> | Stringified<StencilUnknown>;
|
|
8663
8779
|
}
|
|
8780
|
+
interface KolSelectWc {
|
|
8781
|
+
/**
|
|
8782
|
+
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
8783
|
+
*/
|
|
8784
|
+
"_accessKey"?: string;
|
|
8785
|
+
/**
|
|
8786
|
+
* Makes the element not focusable and ignore all events.
|
|
8787
|
+
* @TODO : Change type back to `DisabledPropType` after Stencil#4663 has been resolved.
|
|
8788
|
+
* @default false
|
|
8789
|
+
*/
|
|
8790
|
+
"_disabled"?: boolean;
|
|
8791
|
+
/**
|
|
8792
|
+
* Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it.
|
|
8793
|
+
* @TODO : Change type back to `HideLabelPropType` after Stencil#4663 has been resolved.
|
|
8794
|
+
* @default false
|
|
8795
|
+
*/
|
|
8796
|
+
"_hideLabel"?: boolean;
|
|
8797
|
+
/**
|
|
8798
|
+
* Hides the error message but leaves it in the DOM for the input's aria-describedby.
|
|
8799
|
+
* @TODO : Change type back to `HideMsgPropType` after Stencil#4663 has been resolved.
|
|
8800
|
+
* @default false
|
|
8801
|
+
*/
|
|
8802
|
+
"_hideMsg"?: boolean;
|
|
8803
|
+
/**
|
|
8804
|
+
* Defines the hint text.
|
|
8805
|
+
* @default ''
|
|
8806
|
+
*/
|
|
8807
|
+
"_hint"?: string;
|
|
8808
|
+
/**
|
|
8809
|
+
* Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
|
|
8810
|
+
*/
|
|
8811
|
+
"_icons"?: IconsHorizontalPropType;
|
|
8812
|
+
/**
|
|
8813
|
+
* Defines the internal ID of the primary component element.
|
|
8814
|
+
* @deprecated Will be removed in the next major version.
|
|
8815
|
+
*/
|
|
8816
|
+
"_id"?: IdPropType;
|
|
8817
|
+
/**
|
|
8818
|
+
* 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.
|
|
8819
|
+
*/
|
|
8820
|
+
"_label": LabelWithExpertSlotPropType;
|
|
8821
|
+
/**
|
|
8822
|
+
* Defines the properties for a message rendered as Alert component.
|
|
8823
|
+
*/
|
|
8824
|
+
"_msg"?: Stringified<MsgPropType>;
|
|
8825
|
+
/**
|
|
8826
|
+
* Makes the input accept multiple inputs.
|
|
8827
|
+
* @TODO : Change type back to `MultiplePropType` after Stencil#4663 has been resolved.
|
|
8828
|
+
* @default false
|
|
8829
|
+
*/
|
|
8830
|
+
"_multiple"?: boolean;
|
|
8831
|
+
/**
|
|
8832
|
+
* Defines the technical name of an input field.
|
|
8833
|
+
*/
|
|
8834
|
+
"_name"?: NamePropType;
|
|
8835
|
+
/**
|
|
8836
|
+
* Gibt die EventCallback-Funktionen für das Input-Event an.
|
|
8837
|
+
*/
|
|
8838
|
+
"_on"?: InputTypeOnDefault;
|
|
8839
|
+
/**
|
|
8840
|
+
* Options the user can choose from, also supporting Optgroup.
|
|
8841
|
+
*/
|
|
8842
|
+
"_options": OptionsWithOptgroupPropType;
|
|
8843
|
+
/**
|
|
8844
|
+
* Makes the input element required.
|
|
8845
|
+
* @TODO : Change type back to `RequiredPropType` after Stencil#4663 has been resolved.
|
|
8846
|
+
* @default false
|
|
8847
|
+
*/
|
|
8848
|
+
"_required"?: boolean;
|
|
8849
|
+
/**
|
|
8850
|
+
* Defines how many rows of options should be visible at the same time.
|
|
8851
|
+
*/
|
|
8852
|
+
"_rows"?: RowsPropType;
|
|
8853
|
+
/**
|
|
8854
|
+
* Adds a visual shortcut hint after the label and instructs the screen reader to read the shortcut aloud.
|
|
8855
|
+
*/
|
|
8856
|
+
"_shortKey"?: ShortKeyPropType;
|
|
8857
|
+
/**
|
|
8858
|
+
* Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex)
|
|
8859
|
+
*/
|
|
8860
|
+
"_tabIndex"?: number;
|
|
8861
|
+
/**
|
|
8862
|
+
* Defines where to show the Tooltip preferably: top, right, bottom or left.
|
|
8863
|
+
* @default 'top'
|
|
8864
|
+
*/
|
|
8865
|
+
"_tooltipAlign"?: TooltipAlignPropType;
|
|
8866
|
+
/**
|
|
8867
|
+
* Shows if the input was touched by a user.
|
|
8868
|
+
* @TODO : Change type back to `TouchedPropType` after Stencil#4663 has been resolved.
|
|
8869
|
+
* @default false
|
|
8870
|
+
*/
|
|
8871
|
+
"_touched"?: boolean;
|
|
8872
|
+
/**
|
|
8873
|
+
* Defines the value of the input.
|
|
8874
|
+
*/
|
|
8875
|
+
"_value"?: Stringified<StencilUnknown[]> | Stringified<StencilUnknown>;
|
|
8876
|
+
}
|
|
8664
8877
|
interface KolSingleSelect {
|
|
8665
8878
|
/**
|
|
8666
8879
|
* Defines the key combination that can be used to trigger or focus the component's interactive element.
|
|
@@ -9290,6 +9503,7 @@ declare namespace LocalJSX {
|
|
|
9290
9503
|
"kol-progress": KolProgress;
|
|
9291
9504
|
"kol-quote": KolQuote;
|
|
9292
9505
|
"kol-select": KolSelect;
|
|
9506
|
+
"kol-select-wc": KolSelectWc;
|
|
9293
9507
|
"kol-single-select": KolSingleSelect;
|
|
9294
9508
|
"kol-skip-nav": KolSkipNav;
|
|
9295
9509
|
"kol-spin": KolSpin;
|
|
@@ -9362,6 +9576,7 @@ declare module "@stencil/core" {
|
|
|
9362
9576
|
"kol-progress": LocalJSX.KolProgress & JSXBase.HTMLAttributes<HTMLKolProgressElement>;
|
|
9363
9577
|
"kol-quote": LocalJSX.KolQuote & JSXBase.HTMLAttributes<HTMLKolQuoteElement>;
|
|
9364
9578
|
"kol-select": LocalJSX.KolSelect & JSXBase.HTMLAttributes<HTMLKolSelectElement>;
|
|
9579
|
+
"kol-select-wc": LocalJSX.KolSelectWc & JSXBase.HTMLAttributes<HTMLKolSelectWcElement>;
|
|
9365
9580
|
"kol-single-select": LocalJSX.KolSingleSelect & JSXBase.HTMLAttributes<HTMLKolSingleSelectElement>;
|
|
9366
9581
|
"kol-skip-nav": LocalJSX.KolSkipNav & JSXBase.HTMLAttributes<HTMLKolSkipNavElement>;
|
|
9367
9582
|
"kol-spin": LocalJSX.KolSpin & JSXBase.HTMLAttributes<HTMLKolSpinElement>;
|
package/dist/index.d.mts
CHANGED
|
@@ -5013,6 +5013,115 @@ declare namespace Components {
|
|
|
5013
5013
|
* Defines the value of the element.
|
|
5014
5014
|
*/
|
|
5015
5015
|
"_value"?: Stringified<StencilUnknown[]> | Stringified<StencilUnknown>;
|
|
5016
|
+
/**
|
|
5017
|
+
* Returns the selected values.
|
|
5018
|
+
*/
|
|
5019
|
+
"getValue": () => Promise<StencilUnknown[] | StencilUnknown>;
|
|
5020
|
+
/**
|
|
5021
|
+
* Focuses the select element.
|
|
5022
|
+
*/
|
|
5023
|
+
"kolFocus": () => Promise<void>;
|
|
5024
|
+
}
|
|
5025
|
+
interface KolSelectWc {
|
|
5026
|
+
/**
|
|
5027
|
+
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
5028
|
+
*/
|
|
5029
|
+
"_accessKey"?: string;
|
|
5030
|
+
/**
|
|
5031
|
+
* Makes the element not focusable and ignore all events.
|
|
5032
|
+
* @TODO : Change type back to `DisabledPropType` after Stencil#4663 has been resolved.
|
|
5033
|
+
* @default false
|
|
5034
|
+
*/
|
|
5035
|
+
"_disabled"?: boolean;
|
|
5036
|
+
/**
|
|
5037
|
+
* Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it.
|
|
5038
|
+
* @TODO : Change type back to `HideLabelPropType` after Stencil#4663 has been resolved.
|
|
5039
|
+
* @default false
|
|
5040
|
+
*/
|
|
5041
|
+
"_hideLabel"?: boolean;
|
|
5042
|
+
/**
|
|
5043
|
+
* Hides the error message but leaves it in the DOM for the input's aria-describedby.
|
|
5044
|
+
* @TODO : Change type back to `HideMsgPropType` after Stencil#4663 has been resolved.
|
|
5045
|
+
* @default false
|
|
5046
|
+
*/
|
|
5047
|
+
"_hideMsg"?: boolean;
|
|
5048
|
+
/**
|
|
5049
|
+
* Defines the hint text.
|
|
5050
|
+
* @default ''
|
|
5051
|
+
*/
|
|
5052
|
+
"_hint"?: string;
|
|
5053
|
+
/**
|
|
5054
|
+
* Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
|
|
5055
|
+
*/
|
|
5056
|
+
"_icons"?: IconsHorizontalPropType;
|
|
5057
|
+
/**
|
|
5058
|
+
* Defines the internal ID of the primary component element.
|
|
5059
|
+
* @deprecated Will be removed in the next major version.
|
|
5060
|
+
*/
|
|
5061
|
+
"_id"?: IdPropType;
|
|
5062
|
+
/**
|
|
5063
|
+
* 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.
|
|
5064
|
+
*/
|
|
5065
|
+
"_label": LabelWithExpertSlotPropType;
|
|
5066
|
+
/**
|
|
5067
|
+
* Defines the properties for a message rendered as Alert component.
|
|
5068
|
+
*/
|
|
5069
|
+
"_msg"?: Stringified<MsgPropType>;
|
|
5070
|
+
/**
|
|
5071
|
+
* Makes the input accept multiple inputs.
|
|
5072
|
+
* @TODO : Change type back to `MultiplePropType` after Stencil#4663 has been resolved.
|
|
5073
|
+
* @default false
|
|
5074
|
+
*/
|
|
5075
|
+
"_multiple"?: boolean;
|
|
5076
|
+
/**
|
|
5077
|
+
* Defines the technical name of an input field.
|
|
5078
|
+
*/
|
|
5079
|
+
"_name"?: NamePropType;
|
|
5080
|
+
/**
|
|
5081
|
+
* Gibt die EventCallback-Funktionen für das Input-Event an.
|
|
5082
|
+
*/
|
|
5083
|
+
"_on"?: InputTypeOnDefault;
|
|
5084
|
+
/**
|
|
5085
|
+
* Options the user can choose from, also supporting Optgroup.
|
|
5086
|
+
*/
|
|
5087
|
+
"_options": OptionsWithOptgroupPropType;
|
|
5088
|
+
/**
|
|
5089
|
+
* Makes the input element required.
|
|
5090
|
+
* @TODO : Change type back to `RequiredPropType` after Stencil#4663 has been resolved.
|
|
5091
|
+
* @default false
|
|
5092
|
+
*/
|
|
5093
|
+
"_required"?: boolean;
|
|
5094
|
+
/**
|
|
5095
|
+
* Defines how many rows of options should be visible at the same time.
|
|
5096
|
+
*/
|
|
5097
|
+
"_rows"?: RowsPropType;
|
|
5098
|
+
/**
|
|
5099
|
+
* Adds a visual shortcut hint after the label and instructs the screen reader to read the shortcut aloud.
|
|
5100
|
+
*/
|
|
5101
|
+
"_shortKey"?: ShortKeyPropType;
|
|
5102
|
+
/**
|
|
5103
|
+
* Selector for synchronizing the value with another input element.
|
|
5104
|
+
*/
|
|
5105
|
+
"_syncValueBySelector"?: SyncValueBySelectorPropType;
|
|
5106
|
+
/**
|
|
5107
|
+
* Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex)
|
|
5108
|
+
*/
|
|
5109
|
+
"_tabIndex"?: number;
|
|
5110
|
+
/**
|
|
5111
|
+
* Defines where to show the Tooltip preferably: top, right, bottom or left.
|
|
5112
|
+
* @default 'top'
|
|
5113
|
+
*/
|
|
5114
|
+
"_tooltipAlign"?: TooltipAlignPropType;
|
|
5115
|
+
/**
|
|
5116
|
+
* Shows if the input was touched by a user.
|
|
5117
|
+
* @TODO : Change type back to `TouchedPropType` after Stencil#4663 has been resolved.
|
|
5118
|
+
* @default false
|
|
5119
|
+
*/
|
|
5120
|
+
"_touched"?: boolean;
|
|
5121
|
+
/**
|
|
5122
|
+
* Defines the value of the input.
|
|
5123
|
+
*/
|
|
5124
|
+
"_value"?: Stringified<StencilUnknown[]> | Stringified<StencilUnknown>;
|
|
5016
5125
|
/**
|
|
5017
5126
|
* Returns the current value.
|
|
5018
5127
|
*/
|
|
@@ -5984,6 +6093,12 @@ declare global {
|
|
|
5984
6093
|
prototype: HTMLKolSelectElement;
|
|
5985
6094
|
new (): HTMLKolSelectElement;
|
|
5986
6095
|
};
|
|
6096
|
+
interface HTMLKolSelectWcElement extends Components.KolSelectWc, HTMLStencilElement {
|
|
6097
|
+
}
|
|
6098
|
+
var HTMLKolSelectWcElement: {
|
|
6099
|
+
prototype: HTMLKolSelectWcElement;
|
|
6100
|
+
new (): HTMLKolSelectWcElement;
|
|
6101
|
+
};
|
|
5987
6102
|
interface HTMLKolSingleSelectElement extends Components.KolSingleSelect, HTMLStencilElement {
|
|
5988
6103
|
}
|
|
5989
6104
|
var HTMLKolSingleSelectElement: {
|
|
@@ -6143,6 +6258,7 @@ declare global {
|
|
|
6143
6258
|
"kol-progress": HTMLKolProgressElement;
|
|
6144
6259
|
"kol-quote": HTMLKolQuoteElement;
|
|
6145
6260
|
"kol-select": HTMLKolSelectElement;
|
|
6261
|
+
"kol-select-wc": HTMLKolSelectWcElement;
|
|
6146
6262
|
"kol-single-select": HTMLKolSingleSelectElement;
|
|
6147
6263
|
"kol-skip-nav": HTMLKolSkipNavElement;
|
|
6148
6264
|
"kol-spin": HTMLKolSpinElement;
|
|
@@ -8661,6 +8777,103 @@ declare namespace LocalJSX {
|
|
|
8661
8777
|
*/
|
|
8662
8778
|
"_value"?: Stringified<StencilUnknown[]> | Stringified<StencilUnknown>;
|
|
8663
8779
|
}
|
|
8780
|
+
interface KolSelectWc {
|
|
8781
|
+
/**
|
|
8782
|
+
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
8783
|
+
*/
|
|
8784
|
+
"_accessKey"?: string;
|
|
8785
|
+
/**
|
|
8786
|
+
* Makes the element not focusable and ignore all events.
|
|
8787
|
+
* @TODO : Change type back to `DisabledPropType` after Stencil#4663 has been resolved.
|
|
8788
|
+
* @default false
|
|
8789
|
+
*/
|
|
8790
|
+
"_disabled"?: boolean;
|
|
8791
|
+
/**
|
|
8792
|
+
* Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it.
|
|
8793
|
+
* @TODO : Change type back to `HideLabelPropType` after Stencil#4663 has been resolved.
|
|
8794
|
+
* @default false
|
|
8795
|
+
*/
|
|
8796
|
+
"_hideLabel"?: boolean;
|
|
8797
|
+
/**
|
|
8798
|
+
* Hides the error message but leaves it in the DOM for the input's aria-describedby.
|
|
8799
|
+
* @TODO : Change type back to `HideMsgPropType` after Stencil#4663 has been resolved.
|
|
8800
|
+
* @default false
|
|
8801
|
+
*/
|
|
8802
|
+
"_hideMsg"?: boolean;
|
|
8803
|
+
/**
|
|
8804
|
+
* Defines the hint text.
|
|
8805
|
+
* @default ''
|
|
8806
|
+
*/
|
|
8807
|
+
"_hint"?: string;
|
|
8808
|
+
/**
|
|
8809
|
+
* Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
|
|
8810
|
+
*/
|
|
8811
|
+
"_icons"?: IconsHorizontalPropType;
|
|
8812
|
+
/**
|
|
8813
|
+
* Defines the internal ID of the primary component element.
|
|
8814
|
+
* @deprecated Will be removed in the next major version.
|
|
8815
|
+
*/
|
|
8816
|
+
"_id"?: IdPropType;
|
|
8817
|
+
/**
|
|
8818
|
+
* 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.
|
|
8819
|
+
*/
|
|
8820
|
+
"_label": LabelWithExpertSlotPropType;
|
|
8821
|
+
/**
|
|
8822
|
+
* Defines the properties for a message rendered as Alert component.
|
|
8823
|
+
*/
|
|
8824
|
+
"_msg"?: Stringified<MsgPropType>;
|
|
8825
|
+
/**
|
|
8826
|
+
* Makes the input accept multiple inputs.
|
|
8827
|
+
* @TODO : Change type back to `MultiplePropType` after Stencil#4663 has been resolved.
|
|
8828
|
+
* @default false
|
|
8829
|
+
*/
|
|
8830
|
+
"_multiple"?: boolean;
|
|
8831
|
+
/**
|
|
8832
|
+
* Defines the technical name of an input field.
|
|
8833
|
+
*/
|
|
8834
|
+
"_name"?: NamePropType;
|
|
8835
|
+
/**
|
|
8836
|
+
* Gibt die EventCallback-Funktionen für das Input-Event an.
|
|
8837
|
+
*/
|
|
8838
|
+
"_on"?: InputTypeOnDefault;
|
|
8839
|
+
/**
|
|
8840
|
+
* Options the user can choose from, also supporting Optgroup.
|
|
8841
|
+
*/
|
|
8842
|
+
"_options": OptionsWithOptgroupPropType;
|
|
8843
|
+
/**
|
|
8844
|
+
* Makes the input element required.
|
|
8845
|
+
* @TODO : Change type back to `RequiredPropType` after Stencil#4663 has been resolved.
|
|
8846
|
+
* @default false
|
|
8847
|
+
*/
|
|
8848
|
+
"_required"?: boolean;
|
|
8849
|
+
/**
|
|
8850
|
+
* Defines how many rows of options should be visible at the same time.
|
|
8851
|
+
*/
|
|
8852
|
+
"_rows"?: RowsPropType;
|
|
8853
|
+
/**
|
|
8854
|
+
* Adds a visual shortcut hint after the label and instructs the screen reader to read the shortcut aloud.
|
|
8855
|
+
*/
|
|
8856
|
+
"_shortKey"?: ShortKeyPropType;
|
|
8857
|
+
/**
|
|
8858
|
+
* Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex)
|
|
8859
|
+
*/
|
|
8860
|
+
"_tabIndex"?: number;
|
|
8861
|
+
/**
|
|
8862
|
+
* Defines where to show the Tooltip preferably: top, right, bottom or left.
|
|
8863
|
+
* @default 'top'
|
|
8864
|
+
*/
|
|
8865
|
+
"_tooltipAlign"?: TooltipAlignPropType;
|
|
8866
|
+
/**
|
|
8867
|
+
* Shows if the input was touched by a user.
|
|
8868
|
+
* @TODO : Change type back to `TouchedPropType` after Stencil#4663 has been resolved.
|
|
8869
|
+
* @default false
|
|
8870
|
+
*/
|
|
8871
|
+
"_touched"?: boolean;
|
|
8872
|
+
/**
|
|
8873
|
+
* Defines the value of the input.
|
|
8874
|
+
*/
|
|
8875
|
+
"_value"?: Stringified<StencilUnknown[]> | Stringified<StencilUnknown>;
|
|
8876
|
+
}
|
|
8664
8877
|
interface KolSingleSelect {
|
|
8665
8878
|
/**
|
|
8666
8879
|
* Defines the key combination that can be used to trigger or focus the component's interactive element.
|
|
@@ -9290,6 +9503,7 @@ declare namespace LocalJSX {
|
|
|
9290
9503
|
"kol-progress": KolProgress;
|
|
9291
9504
|
"kol-quote": KolQuote;
|
|
9292
9505
|
"kol-select": KolSelect;
|
|
9506
|
+
"kol-select-wc": KolSelectWc;
|
|
9293
9507
|
"kol-single-select": KolSingleSelect;
|
|
9294
9508
|
"kol-skip-nav": KolSkipNav;
|
|
9295
9509
|
"kol-spin": KolSpin;
|
|
@@ -9362,6 +9576,7 @@ declare module "@stencil/core" {
|
|
|
9362
9576
|
"kol-progress": LocalJSX.KolProgress & JSXBase.HTMLAttributes<HTMLKolProgressElement>;
|
|
9363
9577
|
"kol-quote": LocalJSX.KolQuote & JSXBase.HTMLAttributes<HTMLKolQuoteElement>;
|
|
9364
9578
|
"kol-select": LocalJSX.KolSelect & JSXBase.HTMLAttributes<HTMLKolSelectElement>;
|
|
9579
|
+
"kol-select-wc": LocalJSX.KolSelectWc & JSXBase.HTMLAttributes<HTMLKolSelectWcElement>;
|
|
9365
9580
|
"kol-single-select": LocalJSX.KolSingleSelect & JSXBase.HTMLAttributes<HTMLKolSingleSelectElement>;
|
|
9366
9581
|
"kol-skip-nav": LocalJSX.KolSkipNav & JSXBase.HTMLAttributes<HTMLKolSkipNavElement>;
|
|
9367
9582
|
"kol-spin": LocalJSX.KolSpin & JSXBase.HTMLAttributes<HTMLKolSpinElement>;
|
package/dist/index.d.ts
CHANGED
|
@@ -5013,6 +5013,115 @@ declare namespace Components {
|
|
|
5013
5013
|
* Defines the value of the element.
|
|
5014
5014
|
*/
|
|
5015
5015
|
"_value"?: Stringified<StencilUnknown[]> | Stringified<StencilUnknown>;
|
|
5016
|
+
/**
|
|
5017
|
+
* Returns the selected values.
|
|
5018
|
+
*/
|
|
5019
|
+
"getValue": () => Promise<StencilUnknown[] | StencilUnknown>;
|
|
5020
|
+
/**
|
|
5021
|
+
* Focuses the select element.
|
|
5022
|
+
*/
|
|
5023
|
+
"kolFocus": () => Promise<void>;
|
|
5024
|
+
}
|
|
5025
|
+
interface KolSelectWc {
|
|
5026
|
+
/**
|
|
5027
|
+
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
5028
|
+
*/
|
|
5029
|
+
"_accessKey"?: string;
|
|
5030
|
+
/**
|
|
5031
|
+
* Makes the element not focusable and ignore all events.
|
|
5032
|
+
* @TODO : Change type back to `DisabledPropType` after Stencil#4663 has been resolved.
|
|
5033
|
+
* @default false
|
|
5034
|
+
*/
|
|
5035
|
+
"_disabled"?: boolean;
|
|
5036
|
+
/**
|
|
5037
|
+
* Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it.
|
|
5038
|
+
* @TODO : Change type back to `HideLabelPropType` after Stencil#4663 has been resolved.
|
|
5039
|
+
* @default false
|
|
5040
|
+
*/
|
|
5041
|
+
"_hideLabel"?: boolean;
|
|
5042
|
+
/**
|
|
5043
|
+
* Hides the error message but leaves it in the DOM for the input's aria-describedby.
|
|
5044
|
+
* @TODO : Change type back to `HideMsgPropType` after Stencil#4663 has been resolved.
|
|
5045
|
+
* @default false
|
|
5046
|
+
*/
|
|
5047
|
+
"_hideMsg"?: boolean;
|
|
5048
|
+
/**
|
|
5049
|
+
* Defines the hint text.
|
|
5050
|
+
* @default ''
|
|
5051
|
+
*/
|
|
5052
|
+
"_hint"?: string;
|
|
5053
|
+
/**
|
|
5054
|
+
* Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
|
|
5055
|
+
*/
|
|
5056
|
+
"_icons"?: IconsHorizontalPropType;
|
|
5057
|
+
/**
|
|
5058
|
+
* Defines the internal ID of the primary component element.
|
|
5059
|
+
* @deprecated Will be removed in the next major version.
|
|
5060
|
+
*/
|
|
5061
|
+
"_id"?: IdPropType;
|
|
5062
|
+
/**
|
|
5063
|
+
* 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.
|
|
5064
|
+
*/
|
|
5065
|
+
"_label": LabelWithExpertSlotPropType;
|
|
5066
|
+
/**
|
|
5067
|
+
* Defines the properties for a message rendered as Alert component.
|
|
5068
|
+
*/
|
|
5069
|
+
"_msg"?: Stringified<MsgPropType>;
|
|
5070
|
+
/**
|
|
5071
|
+
* Makes the input accept multiple inputs.
|
|
5072
|
+
* @TODO : Change type back to `MultiplePropType` after Stencil#4663 has been resolved.
|
|
5073
|
+
* @default false
|
|
5074
|
+
*/
|
|
5075
|
+
"_multiple"?: boolean;
|
|
5076
|
+
/**
|
|
5077
|
+
* Defines the technical name of an input field.
|
|
5078
|
+
*/
|
|
5079
|
+
"_name"?: NamePropType;
|
|
5080
|
+
/**
|
|
5081
|
+
* Gibt die EventCallback-Funktionen für das Input-Event an.
|
|
5082
|
+
*/
|
|
5083
|
+
"_on"?: InputTypeOnDefault;
|
|
5084
|
+
/**
|
|
5085
|
+
* Options the user can choose from, also supporting Optgroup.
|
|
5086
|
+
*/
|
|
5087
|
+
"_options": OptionsWithOptgroupPropType;
|
|
5088
|
+
/**
|
|
5089
|
+
* Makes the input element required.
|
|
5090
|
+
* @TODO : Change type back to `RequiredPropType` after Stencil#4663 has been resolved.
|
|
5091
|
+
* @default false
|
|
5092
|
+
*/
|
|
5093
|
+
"_required"?: boolean;
|
|
5094
|
+
/**
|
|
5095
|
+
* Defines how many rows of options should be visible at the same time.
|
|
5096
|
+
*/
|
|
5097
|
+
"_rows"?: RowsPropType;
|
|
5098
|
+
/**
|
|
5099
|
+
* Adds a visual shortcut hint after the label and instructs the screen reader to read the shortcut aloud.
|
|
5100
|
+
*/
|
|
5101
|
+
"_shortKey"?: ShortKeyPropType;
|
|
5102
|
+
/**
|
|
5103
|
+
* Selector for synchronizing the value with another input element.
|
|
5104
|
+
*/
|
|
5105
|
+
"_syncValueBySelector"?: SyncValueBySelectorPropType;
|
|
5106
|
+
/**
|
|
5107
|
+
* Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex)
|
|
5108
|
+
*/
|
|
5109
|
+
"_tabIndex"?: number;
|
|
5110
|
+
/**
|
|
5111
|
+
* Defines where to show the Tooltip preferably: top, right, bottom or left.
|
|
5112
|
+
* @default 'top'
|
|
5113
|
+
*/
|
|
5114
|
+
"_tooltipAlign"?: TooltipAlignPropType;
|
|
5115
|
+
/**
|
|
5116
|
+
* Shows if the input was touched by a user.
|
|
5117
|
+
* @TODO : Change type back to `TouchedPropType` after Stencil#4663 has been resolved.
|
|
5118
|
+
* @default false
|
|
5119
|
+
*/
|
|
5120
|
+
"_touched"?: boolean;
|
|
5121
|
+
/**
|
|
5122
|
+
* Defines the value of the input.
|
|
5123
|
+
*/
|
|
5124
|
+
"_value"?: Stringified<StencilUnknown[]> | Stringified<StencilUnknown>;
|
|
5016
5125
|
/**
|
|
5017
5126
|
* Returns the current value.
|
|
5018
5127
|
*/
|
|
@@ -5984,6 +6093,12 @@ declare global {
|
|
|
5984
6093
|
prototype: HTMLKolSelectElement;
|
|
5985
6094
|
new (): HTMLKolSelectElement;
|
|
5986
6095
|
};
|
|
6096
|
+
interface HTMLKolSelectWcElement extends Components.KolSelectWc, HTMLStencilElement {
|
|
6097
|
+
}
|
|
6098
|
+
var HTMLKolSelectWcElement: {
|
|
6099
|
+
prototype: HTMLKolSelectWcElement;
|
|
6100
|
+
new (): HTMLKolSelectWcElement;
|
|
6101
|
+
};
|
|
5987
6102
|
interface HTMLKolSingleSelectElement extends Components.KolSingleSelect, HTMLStencilElement {
|
|
5988
6103
|
}
|
|
5989
6104
|
var HTMLKolSingleSelectElement: {
|
|
@@ -6143,6 +6258,7 @@ declare global {
|
|
|
6143
6258
|
"kol-progress": HTMLKolProgressElement;
|
|
6144
6259
|
"kol-quote": HTMLKolQuoteElement;
|
|
6145
6260
|
"kol-select": HTMLKolSelectElement;
|
|
6261
|
+
"kol-select-wc": HTMLKolSelectWcElement;
|
|
6146
6262
|
"kol-single-select": HTMLKolSingleSelectElement;
|
|
6147
6263
|
"kol-skip-nav": HTMLKolSkipNavElement;
|
|
6148
6264
|
"kol-spin": HTMLKolSpinElement;
|
|
@@ -8661,6 +8777,103 @@ declare namespace LocalJSX {
|
|
|
8661
8777
|
*/
|
|
8662
8778
|
"_value"?: Stringified<StencilUnknown[]> | Stringified<StencilUnknown>;
|
|
8663
8779
|
}
|
|
8780
|
+
interface KolSelectWc {
|
|
8781
|
+
/**
|
|
8782
|
+
* Defines the key combination that can be used to trigger or focus the component’s interactive element.
|
|
8783
|
+
*/
|
|
8784
|
+
"_accessKey"?: string;
|
|
8785
|
+
/**
|
|
8786
|
+
* Makes the element not focusable and ignore all events.
|
|
8787
|
+
* @TODO : Change type back to `DisabledPropType` after Stencil#4663 has been resolved.
|
|
8788
|
+
* @default false
|
|
8789
|
+
*/
|
|
8790
|
+
"_disabled"?: boolean;
|
|
8791
|
+
/**
|
|
8792
|
+
* Hides the caption by default and displays the caption text with a tooltip when the interactive element is focused or the mouse is over it.
|
|
8793
|
+
* @TODO : Change type back to `HideLabelPropType` after Stencil#4663 has been resolved.
|
|
8794
|
+
* @default false
|
|
8795
|
+
*/
|
|
8796
|
+
"_hideLabel"?: boolean;
|
|
8797
|
+
/**
|
|
8798
|
+
* Hides the error message but leaves it in the DOM for the input's aria-describedby.
|
|
8799
|
+
* @TODO : Change type back to `HideMsgPropType` after Stencil#4663 has been resolved.
|
|
8800
|
+
* @default false
|
|
8801
|
+
*/
|
|
8802
|
+
"_hideMsg"?: boolean;
|
|
8803
|
+
/**
|
|
8804
|
+
* Defines the hint text.
|
|
8805
|
+
* @default ''
|
|
8806
|
+
*/
|
|
8807
|
+
"_hint"?: string;
|
|
8808
|
+
/**
|
|
8809
|
+
* Defines the icon classnames (e.g. `_icons="fa-solid fa-user"`).
|
|
8810
|
+
*/
|
|
8811
|
+
"_icons"?: IconsHorizontalPropType;
|
|
8812
|
+
/**
|
|
8813
|
+
* Defines the internal ID of the primary component element.
|
|
8814
|
+
* @deprecated Will be removed in the next major version.
|
|
8815
|
+
*/
|
|
8816
|
+
"_id"?: IdPropType;
|
|
8817
|
+
/**
|
|
8818
|
+
* 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.
|
|
8819
|
+
*/
|
|
8820
|
+
"_label": LabelWithExpertSlotPropType;
|
|
8821
|
+
/**
|
|
8822
|
+
* Defines the properties for a message rendered as Alert component.
|
|
8823
|
+
*/
|
|
8824
|
+
"_msg"?: Stringified<MsgPropType>;
|
|
8825
|
+
/**
|
|
8826
|
+
* Makes the input accept multiple inputs.
|
|
8827
|
+
* @TODO : Change type back to `MultiplePropType` after Stencil#4663 has been resolved.
|
|
8828
|
+
* @default false
|
|
8829
|
+
*/
|
|
8830
|
+
"_multiple"?: boolean;
|
|
8831
|
+
/**
|
|
8832
|
+
* Defines the technical name of an input field.
|
|
8833
|
+
*/
|
|
8834
|
+
"_name"?: NamePropType;
|
|
8835
|
+
/**
|
|
8836
|
+
* Gibt die EventCallback-Funktionen für das Input-Event an.
|
|
8837
|
+
*/
|
|
8838
|
+
"_on"?: InputTypeOnDefault;
|
|
8839
|
+
/**
|
|
8840
|
+
* Options the user can choose from, also supporting Optgroup.
|
|
8841
|
+
*/
|
|
8842
|
+
"_options": OptionsWithOptgroupPropType;
|
|
8843
|
+
/**
|
|
8844
|
+
* Makes the input element required.
|
|
8845
|
+
* @TODO : Change type back to `RequiredPropType` after Stencil#4663 has been resolved.
|
|
8846
|
+
* @default false
|
|
8847
|
+
*/
|
|
8848
|
+
"_required"?: boolean;
|
|
8849
|
+
/**
|
|
8850
|
+
* Defines how many rows of options should be visible at the same time.
|
|
8851
|
+
*/
|
|
8852
|
+
"_rows"?: RowsPropType;
|
|
8853
|
+
/**
|
|
8854
|
+
* Adds a visual shortcut hint after the label and instructs the screen reader to read the shortcut aloud.
|
|
8855
|
+
*/
|
|
8856
|
+
"_shortKey"?: ShortKeyPropType;
|
|
8857
|
+
/**
|
|
8858
|
+
* Defines which tab-index the primary element of the component has. (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex)
|
|
8859
|
+
*/
|
|
8860
|
+
"_tabIndex"?: number;
|
|
8861
|
+
/**
|
|
8862
|
+
* Defines where to show the Tooltip preferably: top, right, bottom or left.
|
|
8863
|
+
* @default 'top'
|
|
8864
|
+
*/
|
|
8865
|
+
"_tooltipAlign"?: TooltipAlignPropType;
|
|
8866
|
+
/**
|
|
8867
|
+
* Shows if the input was touched by a user.
|
|
8868
|
+
* @TODO : Change type back to `TouchedPropType` after Stencil#4663 has been resolved.
|
|
8869
|
+
* @default false
|
|
8870
|
+
*/
|
|
8871
|
+
"_touched"?: boolean;
|
|
8872
|
+
/**
|
|
8873
|
+
* Defines the value of the input.
|
|
8874
|
+
*/
|
|
8875
|
+
"_value"?: Stringified<StencilUnknown[]> | Stringified<StencilUnknown>;
|
|
8876
|
+
}
|
|
8664
8877
|
interface KolSingleSelect {
|
|
8665
8878
|
/**
|
|
8666
8879
|
* Defines the key combination that can be used to trigger or focus the component's interactive element.
|
|
@@ -9290,6 +9503,7 @@ declare namespace LocalJSX {
|
|
|
9290
9503
|
"kol-progress": KolProgress;
|
|
9291
9504
|
"kol-quote": KolQuote;
|
|
9292
9505
|
"kol-select": KolSelect;
|
|
9506
|
+
"kol-select-wc": KolSelectWc;
|
|
9293
9507
|
"kol-single-select": KolSingleSelect;
|
|
9294
9508
|
"kol-skip-nav": KolSkipNav;
|
|
9295
9509
|
"kol-spin": KolSpin;
|
|
@@ -9362,6 +9576,7 @@ declare module "@stencil/core" {
|
|
|
9362
9576
|
"kol-progress": LocalJSX.KolProgress & JSXBase.HTMLAttributes<HTMLKolProgressElement>;
|
|
9363
9577
|
"kol-quote": LocalJSX.KolQuote & JSXBase.HTMLAttributes<HTMLKolQuoteElement>;
|
|
9364
9578
|
"kol-select": LocalJSX.KolSelect & JSXBase.HTMLAttributes<HTMLKolSelectElement>;
|
|
9579
|
+
"kol-select-wc": LocalJSX.KolSelectWc & JSXBase.HTMLAttributes<HTMLKolSelectWcElement>;
|
|
9365
9580
|
"kol-single-select": LocalJSX.KolSingleSelect & JSXBase.HTMLAttributes<HTMLKolSingleSelectElement>;
|
|
9366
9581
|
"kol-skip-nav": LocalJSX.KolSkipNav & JSXBase.HTMLAttributes<HTMLKolSkipNavElement>;
|
|
9367
9582
|
"kol-spin": LocalJSX.KolSpin & JSXBase.HTMLAttributes<HTMLKolSpinElement>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/react-hook-form-adapter",
|
|
3
|
-
"version": "3.0.9
|
|
3
|
+
"version": "3.0.9",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -58,13 +58,13 @@
|
|
|
58
58
|
"react-hook-form": "7.63.0",
|
|
59
59
|
"typescript": "5.9.3",
|
|
60
60
|
"unbuild": "3.6.1",
|
|
61
|
-
"@public-ui/
|
|
62
|
-
"@public-ui/
|
|
61
|
+
"@public-ui/components": "3.0.9",
|
|
62
|
+
"@public-ui/react-v19": "3.0.9"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"react": "^19",
|
|
66
66
|
"react-hook-form": "^7",
|
|
67
|
-
"@public-ui/react-v19": "3.0.9
|
|
67
|
+
"@public-ui/react-v19": "3.0.9"
|
|
68
68
|
},
|
|
69
69
|
"sideEffects": false,
|
|
70
70
|
"type": "module",
|