@trendyol/baklava 3.4.0-beta.17 → 3.4.0-beta.18
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/baklava-react.d.ts +140 -119
- package/dist/baklava-react.d.ts.map +1 -1
- package/dist/baklava-react.js +1 -1
- package/dist/baklava-react.js.map +3 -3
- package/dist/baklava-svelte.d.ts +342 -312
- package/dist/baklava-vue.d.ts +16 -14
- package/dist/baklava.d.ts +21 -19
- package/dist/baklava.d.ts.map +1 -1
- package/dist/baklava.js +1 -1
- package/dist/{chunk-KTG566MB.js → chunk-3IZAFXL6.js} +4 -4
- package/dist/{chunk-QKUMEP5P.js → chunk-5QGKDF4O.js} +2 -2
- package/dist/chunk-BDTCJ2JC.js +16 -0
- package/dist/chunk-BDTCJ2JC.js.map +7 -0
- package/dist/chunk-HCSEQTUP.js +37 -0
- package/dist/chunk-HCSEQTUP.js.map +7 -0
- package/dist/{chunk-2EK4TAKQ.js → chunk-JTNWYMYZ.js} +2 -2
- package/dist/{chunk-TKTRDALH.js → chunk-LZ6VDMPM.js} +2 -2
- package/dist/{chunk-2Q566BEQ.js → chunk-SIQYHQUN.js} +3 -3
- package/dist/components/datepicker/bl-datepicker.js +1 -1
- package/dist/components/input/bl-input.js +1 -1
- package/dist/components/pagination/bl-pagination.js +1 -1
- package/dist/components/select/bl-select.js +1 -1
- package/dist/components/stepper/bl-stepper-item.d.ts +107 -0
- package/dist/components/stepper/bl-stepper-item.d.ts.map +1 -0
- package/dist/components/stepper/bl-stepper-item.js +2 -0
- package/dist/components/stepper/bl-stepper-item.js.map +7 -0
- package/dist/components/stepper/bl-stepper-item.test.d.ts +2 -0
- package/dist/components/stepper/bl-stepper-item.test.d.ts.map +1 -0
- package/dist/components/stepper/bl-stepper.d.ts +46 -0
- package/dist/components/stepper/bl-stepper.d.ts.map +1 -0
- package/dist/components/stepper/bl-stepper.js +2 -0
- package/dist/components/stepper/bl-stepper.js.map +7 -0
- package/dist/components/stepper/bl-stepper.stories.d.ts +23 -0
- package/dist/components/stepper/bl-stepper.stories.d.ts.map +1 -0
- package/dist/components/stepper/bl-stepper.stories.js +100 -0
- package/dist/components/stepper/bl-stepper.stories.js.map +7 -0
- package/dist/components/stepper/bl-stepper.test.d.ts +2 -0
- package/dist/components/stepper/bl-stepper.test.d.ts.map +1 -0
- package/dist/components/tab-group/bl-tab-group.js +1 -1
- package/dist/components/table/table-cell/bl-table-cell.js +1 -1
- package/dist/components/table/table-header-cell/bl-table-header-cell.js +1 -1
- package/dist/components/table/table-row/bl-table-row.js +1 -1
- package/dist/custom-elements.json +5940 -5482
- package/package.json +1 -1
- /package/dist/{chunk-KTG566MB.js.map → chunk-3IZAFXL6.js.map} +0 -0
- /package/dist/{chunk-QKUMEP5P.js.map → chunk-5QGKDF4O.js.map} +0 -0
- /package/dist/{chunk-2EK4TAKQ.js.map → chunk-JTNWYMYZ.js.map} +0 -0
- /package/dist/{chunk-TKTRDALH.js.map → chunk-LZ6VDMPM.js.map} +0 -0
- /package/dist/{chunk-2Q566BEQ.js.map → chunk-SIQYHQUN.js.map} +0 -0
package/dist/baklava-svelte.d.ts
CHANGED
|
@@ -95,6 +95,12 @@ declare namespace svelteHTML {
|
|
|
95
95
|
/** Sets the name of the icon */
|
|
96
96
|
"icon"?: import("@trendyol/baklava/dist/components/icon/icon-list").BaklavaIcon;
|
|
97
97
|
};
|
|
98
|
+
"bl-calendar": {
|
|
99
|
+
/** Fires when date selection changes */
|
|
100
|
+
"on:bl-calendar-change"?: (event: CustomEvent<Date[]>) => void;
|
|
101
|
+
/** Fires when date selection changes */
|
|
102
|
+
"onbl-calendar-change"?: (event: CustomEvent<Date[]>) => void;
|
|
103
|
+
};
|
|
98
104
|
"bl-checkbox": {
|
|
99
105
|
/** Sets the checked state for checkbox */
|
|
100
106
|
"checked"?: boolean;
|
|
@@ -145,6 +151,121 @@ declare namespace svelteHTML {
|
|
|
145
151
|
/** Fires when checkbox group is invalid */
|
|
146
152
|
"onbl-checkbox-group-invalid"?: (event: CustomEvent<ValidityState>) => void;
|
|
147
153
|
};
|
|
154
|
+
"bl-input": {
|
|
155
|
+
/** Sets name of the input */
|
|
156
|
+
"name"?: string;
|
|
157
|
+
/** Type of the input. It's used to set `type` attribute of native input inside. */
|
|
158
|
+
"type"?: "number" | "text" | "email" | "date" | "time" | "datetime-local" | "month" | "week" | "password" | "tel" | "url" | "search";
|
|
159
|
+
/** Sets label of the input */
|
|
160
|
+
"label"?: string;
|
|
161
|
+
/** Sets placeholder of the input */
|
|
162
|
+
"placeholder"?: string;
|
|
163
|
+
/** Sets initial value of the input */
|
|
164
|
+
"value"?: string;
|
|
165
|
+
/** Makes input a mandatory field */
|
|
166
|
+
"required"?: boolean;
|
|
167
|
+
/** Sets minimum length of the input */
|
|
168
|
+
"minlength"?: number;
|
|
169
|
+
/** Sets maximum length of the input */
|
|
170
|
+
"maxlength"?: number;
|
|
171
|
+
/** Sets the minimum acceptable value for the input */
|
|
172
|
+
"min"?: number | string;
|
|
173
|
+
/** Sets the loading value for the input */
|
|
174
|
+
"loading"?: boolean;
|
|
175
|
+
/** Sets the maximum acceptable value for the input */
|
|
176
|
+
"max"?: number | string;
|
|
177
|
+
/** Sets a regex pattern form the input validation */
|
|
178
|
+
"pattern"?: string;
|
|
179
|
+
/** Sets the increase and decrease step to a `number` input */
|
|
180
|
+
"step"?: number;
|
|
181
|
+
/** Hints browser to autocomplete this field. */
|
|
182
|
+
"autocomplete"?: "" | "email" | "tel" | "off" | "on" | "additional-name" | "address-level1" | "address-level2" | "address-level3" | "address-level4" | "address-line1" | "address-line2" | "address-line3" | "bday-day" | "bday-month" | "bday-year" | "cc-csc" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-family-name" | "cc-given-name" | "cc-name" | "cc-number" | "cc-type" | "country" | "country-name" | "current-password" | "family-name" | "given-name" | "honorific-prefix" | "honorific-suffix" | "name" | "new-password" | "one-time-code" | "organization" | "postal-code" | "street-address" | "transaction-amount" | "transaction-currency" | "username" | "tel-area-code" | "tel-country-code" | "tel-extension" | "tel-local" | "tel-local-prefix" | "tel-local-suffix" | "tel-national" | "home email" | "home tel" | "home tel-area-code" | "home tel-country-code" | "home tel-extension" | "home tel-local" | "home tel-local-prefix" | "home tel-local-suffix" | "home tel-national" | "mobile email" | "mobile tel" | "mobile tel-area-code" | "mobile tel-country-code" | "mobile tel-extension" | "mobile tel-local" | "mobile tel-local-prefix" | "mobile tel-local-suffix" | "mobile tel-national" | "work email" | "work tel" | "work tel-area-code" | "work tel-country-code" | "work tel-extension" | "work tel-local" | "work tel-local-prefix" | "work tel-local-suffix" | "work tel-national" | "additional-name webauthn" | "address-level1 webauthn" | "address-level2 webauthn" | "address-level3 webauthn" | "address-level4 webauthn" | "address-line1 webauthn" | "address-line2 webauthn" | "address-line3 webauthn" | "bday-day webauthn" | "bday-month webauthn" | "bday-year webauthn" | "cc-csc webauthn" | "cc-exp webauthn" | "cc-exp-month webauthn" | "cc-exp-year webauthn" | "cc-family-name webauthn" | "cc-given-name webauthn" | "cc-name webauthn" | "cc-number webauthn" | "cc-type webauthn" | "country webauthn" | "country-name webauthn" | "current-password webauthn" | "family-name webauthn" | "given-name webauthn" | "honorific-prefix webauthn" | "honorific-suffix webauthn" | "name webauthn" | "new-password webauthn" | "one-time-code webauthn" | "organization webauthn" | "postal-code webauthn" | "street-address webauthn" | "transaction-amount webauthn" | "transaction-currency webauthn" | "username webauthn" | "email webauthn" | "tel webauthn" | "tel-area-code webauthn" | "tel-country-code webauthn" | "tel-extension webauthn" | "tel-local webauthn" | "tel-local-prefix webauthn" | "tel-local-suffix webauthn" | "tel-national webauthn" | "home email webauthn" | "home tel webauthn" | "home tel-area-code webauthn" | "home tel-country-code webauthn" | "home tel-extension webauthn" | "home tel-local webauthn" | "home tel-local-prefix webauthn" | "home tel-local-suffix webauthn" | "home tel-national webauthn" | "mobile email webauthn" | "mobile tel webauthn" | "mobile tel-area-code webauthn" | "mobile tel-country-code webauthn" | "mobile tel-extension webauthn" | "mobile tel-local webauthn" | "mobile tel-local-prefix webauthn" | "mobile tel-local-suffix webauthn" | "mobile tel-national webauthn" | "work email webauthn" | "work tel webauthn" | "work tel-area-code webauthn" | "work tel-country-code webauthn" | "work tel-extension webauthn" | "work tel-local webauthn" | "work tel-local-prefix webauthn" | "work tel-local-suffix webauthn" | "work tel-national webauthn" | "billing additional-name" | "billing additional-name webauthn" | "billing address-level1" | "billing address-level1 webauthn" | "billing address-level2" | "billing address-level2 webauthn" | "billing address-level3" | "billing address-level3 webauthn" | "billing address-level4" | "billing address-level4 webauthn" | "billing address-line1" | "billing address-line1 webauthn" | "billing address-line2" | "billing address-line2 webauthn" | "billing address-line3" | "billing address-line3 webauthn" | "billing bday-day" | "billing bday-day webauthn" | "billing bday-month" | "billing bday-month webauthn" | "billing bday-year" | "billing bday-year webauthn" | "billing cc-csc" | "billing cc-csc webauthn" | "billing cc-exp" | "billing cc-exp webauthn" | "billing cc-exp-month" | "billing cc-exp-month webauthn" | "billing cc-exp-year" | "billing cc-exp-year webauthn" | "billing cc-family-name" | "billing cc-family-name webauthn" | "billing cc-given-name" | "billing cc-given-name webauthn" | "billing cc-name" | "billing cc-name webauthn" | "billing cc-number" | "billing cc-number webauthn" | "billing cc-type" | "billing cc-type webauthn" | "billing country" | "billing country webauthn" | "billing country-name" | "billing country-name webauthn" | "billing current-password" | "billing current-password webauthn" | "billing family-name" | "billing family-name webauthn" | "billing given-name" | "billing given-name webauthn" | "billing honorific-prefix" | "billing honorific-prefix webauthn" | "billing honorific-suffix" | "billing honorific-suffix webauthn" | "billing name" | "billing name webauthn" | "billing new-password" | "billing new-password webauthn" | "billing one-time-code" | "billing one-time-code webauthn" | "billing organization" | "billing organization webauthn" | "billing postal-code" | "billing postal-code webauthn" | "billing street-address" | "billing street-address webauthn" | "billing transaction-amount" | "billing transaction-amount webauthn" | "billing transaction-currency" | "billing transaction-currency webauthn" | "billing username" | "billing username webauthn" | "billing email" | "billing email webauthn" | "billing tel" | "billing tel webauthn" | "billing tel-area-code" | "billing tel-area-code webauthn" | "billing tel-country-code" | "billing tel-country-code webauthn" | "billing tel-extension" | "billing tel-extension webauthn" | "billing tel-local" | "billing tel-local webauthn" | "billing tel-local-prefix" | "billing tel-local-prefix webauthn" | "billing tel-local-suffix" | "billing tel-local-suffix webauthn" | "billing tel-national" | "billing tel-national webauthn" | "billing home email" | "billing home email webauthn" | "billing home tel" | "billing home tel webauthn" | "billing home tel-area-code" | "billing home tel-area-code webauthn" | "billing home tel-country-code" | "billing home tel-country-code webauthn" | "billing home tel-extension" | "billing home tel-extension webauthn" | "billing home tel-local" | "billing home tel-local webauthn" | "billing home tel-local-prefix" | "billing home tel-local-prefix webauthn" | "billing home tel-local-suffix" | "billing home tel-local-suffix webauthn" | "billing home tel-national" | "billing home tel-national webauthn" | "billing mobile email" | "billing mobile email webauthn" | "billing mobile tel" | "billing mobile tel webauthn" | "billing mobile tel-area-code" | "billing mobile tel-area-code webauthn" | "billing mobile tel-country-code" | "billing mobile tel-country-code webauthn" | "billing mobile tel-extension" | "billing mobile tel-extension webauthn" | "billing mobile tel-local" | "billing mobile tel-local webauthn" | "billing mobile tel-local-prefix" | "billing mobile tel-local-prefix webauthn" | "billing mobile tel-local-suffix" | "billing mobile tel-local-suffix webauthn" | "billing mobile tel-national" | "billing mobile tel-national webauthn" | "billing work email" | "billing work email webauthn" | "billing work tel" | "billing work tel webauthn" | "billing work tel-area-code" | "billing work tel-area-code webauthn" | "billing work tel-country-code" | "billing work tel-country-code webauthn" | "billing work tel-extension" | "billing work tel-extension webauthn" | "billing work tel-local" | "billing work tel-local webauthn" | "billing work tel-local-prefix" | "billing work tel-local-prefix webauthn" | "billing work tel-local-suffix" | "billing work tel-local-suffix webauthn" | "billing work tel-national" | "billing work tel-national webauthn" | "shipping additional-name" | "shipping additional-name webauthn" | "shipping address-level1" | "shipping address-level1 webauthn" | "shipping address-level2" | "shipping address-level2 webauthn" | "shipping address-level3" | "shipping address-level3 webauthn" | "shipping address-level4" | "shipping address-level4 webauthn" | "shipping address-line1" | "shipping address-line1 webauthn" | "shipping address-line2" | "shipping address-line2 webauthn" | "shipping address-line3" | "shipping address-line3 webauthn" | "shipping bday-day" | "shipping bday-day webauthn" | "shipping bday-month" | "shipping bday-month webauthn" | "shipping bday-year" | "shipping bday-year webauthn" | "shipping cc-csc" | "shipping cc-csc webauthn" | "shipping cc-exp" | "shipping cc-exp webauthn" | "shipping cc-exp-month" | "shipping cc-exp-month webauthn" | "shipping cc-exp-year" | "shipping cc-exp-year webauthn" | "shipping cc-family-name" | "shipping cc-family-name webauthn" | "shipping cc-given-name" | "shipping cc-given-name webauthn" | "shipping cc-name" | "shipping cc-name webauthn" | "shipping cc-number" | "shipping cc-number webauthn" | "shipping cc-type" | "shipping cc-type webauthn" | "shipping country" | "shipping country webauthn" | "shipping country-name" | "shipping country-name webauthn" | "shipping current-password" | "shipping current-password webauthn" | "shipping family-name" | "shipping family-name webauthn" | "shipping given-name" | "shipping given-name webauthn" | "shipping honorific-prefix" | "shipping honorific-prefix webauthn" | "shipping honorific-suffix" | "shipping honorific-suffix webauthn" | "shipping name" | "shipping name webauthn" | "shipping new-password" | "shipping new-password webauthn" | "shipping one-time-code" | "shipping one-time-code webauthn" | "shipping organization" | "shipping organization webauthn" | "shipping postal-code" | "shipping postal-code webauthn" | "shipping street-address" | "shipping street-address webauthn" | "shipping transaction-amount" | "shipping transaction-amount webauthn" | "shipping transaction-currency" | "shipping transaction-currency webauthn" | "shipping username" | "shipping username webauthn" | "shipping email" | "shipping email webauthn" | "shipping tel" | "shipping tel webauthn" | "shipping tel-area-code" | "shipping tel-area-code webauthn" | "shipping tel-country-code" | "shipping tel-country-code webauthn" | "shipping tel-extension" | "shipping tel-extension webauthn" | "shipping tel-local" | "shipping tel-local webauthn" | "shipping tel-local-prefix" | "shipping tel-local-prefix webauthn" | "shipping tel-local-suffix" | "shipping tel-local-suffix webauthn" | "shipping tel-national" | "shipping tel-national webauthn" | "shipping home email" | "shipping home email webauthn" | "shipping home tel" | "shipping home tel webauthn" | "shipping home tel-area-code" | "shipping home tel-area-code webauthn" | "shipping home tel-country-code" | "shipping home tel-country-code webauthn" | "shipping home tel-extension" | "shipping home tel-extension webauthn" | "shipping home tel-local" | "shipping home tel-local webauthn" | "shipping home tel-local-prefix" | "shipping home tel-local-prefix webauthn" | "shipping home tel-local-suffix" | "shipping home tel-local-suffix webauthn" | "shipping home tel-national" | "shipping home tel-national webauthn" | "shipping mobile email" | "shipping mobile email webauthn" | "shipping mobile tel" | "shipping mobile tel webauthn" | "shipping mobile tel-area-code" | "shipping mobile tel-area-code webauthn" | "shipping mobile tel-country-code" | "shipping mobile tel-country-code webauthn" | "shipping mobile tel-extension" | "shipping mobile tel-extension webauthn" | "shipping mobile tel-local" | "shipping mobile tel-local webauthn" | "shipping mobile tel-local-prefix" | "shipping mobile tel-local-prefix webauthn" | "shipping mobile tel-local-suffix" | "shipping mobile tel-local-suffix webauthn" | "shipping mobile tel-national" | "shipping mobile tel-national webauthn" | "shipping work email" | "shipping work email webauthn" | "shipping work tel" | "shipping work tel webauthn" | "shipping work tel-area-code" | "shipping work tel-area-code webauthn" | "shipping work tel-country-code" | "shipping work tel-country-code webauthn" | "shipping work tel-extension" | "shipping work tel-extension webauthn" | "shipping work tel-local" | "shipping work tel-local webauthn" | "shipping work tel-local-prefix" | "shipping work tel-local-prefix webauthn" | "shipping work tel-local-suffix" | "shipping work tel-local-suffix webauthn" | "shipping work tel-national" | "shipping work tel-national webauthn" | `section-${string} additional-name` | `section-${string} additional-name webauthn` | `section-${string} address-level1` | `section-${string} address-level1 webauthn` | `section-${string} address-level2` | `section-${string} address-level2 webauthn` | `section-${string} address-level3` | `section-${string} address-level3 webauthn` | `section-${string} address-level4` | `section-${string} address-level4 webauthn` | `section-${string} address-line1` | `section-${string} address-line1 webauthn` | `section-${string} address-line2` | `section-${string} address-line2 webauthn` | `section-${string} address-line3` | `section-${string} address-line3 webauthn` | `section-${string} bday-day` | `section-${string} bday-day webauthn` | `section-${string} bday-month` | `section-${string} bday-month webauthn` | `section-${string} bday-year` | `section-${string} bday-year webauthn` | `section-${string} cc-csc` | `section-${string} cc-csc webauthn` | `section-${string} cc-exp` | `section-${string} cc-exp webauthn` | `section-${string} cc-exp-month` | `section-${string} cc-exp-month webauthn` | `section-${string} cc-exp-year` | `section-${string} cc-exp-year webauthn` | `section-${string} cc-family-name` | `section-${string} cc-family-name webauthn` | `section-${string} cc-given-name` | `section-${string} cc-given-name webauthn` | `section-${string} cc-name` | `section-${string} cc-name webauthn` | `section-${string} cc-number` | `section-${string} cc-number webauthn` | `section-${string} cc-type` | `section-${string} cc-type webauthn` | `section-${string} country` | `section-${string} country webauthn` | `section-${string} country-name` | `section-${string} country-name webauthn` | `section-${string} current-password` | `section-${string} current-password webauthn` | `section-${string} family-name` | `section-${string} family-name webauthn` | `section-${string} given-name` | `section-${string} given-name webauthn` | `section-${string} honorific-prefix` | `section-${string} honorific-prefix webauthn` | `section-${string} honorific-suffix` | `section-${string} honorific-suffix webauthn` | `section-${string} name` | `section-${string} name webauthn` | `section-${string} new-password` | `section-${string} new-password webauthn` | `section-${string} one-time-code` | `section-${string} one-time-code webauthn` | `section-${string} organization` | `section-${string} organization webauthn` | `section-${string} postal-code` | `section-${string} postal-code webauthn` | `section-${string} street-address` | `section-${string} street-address webauthn` | `section-${string} transaction-amount` | `section-${string} transaction-amount webauthn` | `section-${string} transaction-currency` | `section-${string} transaction-currency webauthn` | `section-${string} username` | `section-${string} username webauthn` | `section-${string} email` | `section-${string} email webauthn` | `section-${string} tel` | `section-${string} tel webauthn` | `section-${string} tel-area-code` | `section-${string} tel-area-code webauthn` | `section-${string} tel-country-code` | `section-${string} tel-country-code webauthn` | `section-${string} tel-extension` | `section-${string} tel-extension webauthn` | `section-${string} tel-local` | `section-${string} tel-local webauthn` | `section-${string} tel-local-prefix` | `section-${string} tel-local-prefix webauthn` | `section-${string} tel-local-suffix` | `section-${string} tel-local-suffix webauthn` | `section-${string} tel-national` | `section-${string} tel-national webauthn` | `section-${string} home email` | `section-${string} home email webauthn` | `section-${string} home tel` | `section-${string} home tel webauthn` | `section-${string} home tel-area-code` | `section-${string} home tel-area-code webauthn` | `section-${string} home tel-country-code` | `section-${string} home tel-country-code webauthn` | `section-${string} home tel-extension` | `section-${string} home tel-extension webauthn` | `section-${string} home tel-local` | `section-${string} home tel-local webauthn` | `section-${string} home tel-local-prefix` | `section-${string} home tel-local-prefix webauthn` | `section-${string} home tel-local-suffix` | `section-${string} home tel-local-suffix webauthn` | `section-${string} home tel-national` | `section-${string} home tel-national webauthn` | `section-${string} mobile email` | `section-${string} mobile email webauthn` | `section-${string} mobile tel` | `section-${string} mobile tel webauthn` | `section-${string} mobile tel-area-code` | `section-${string} mobile tel-area-code webauthn` | `section-${string} mobile tel-country-code` | `section-${string} mobile tel-country-code webauthn` | `section-${string} mobile tel-extension` | `section-${string} mobile tel-extension webauthn` | `section-${string} mobile tel-local` | `section-${string} mobile tel-local webauthn` | `section-${string} mobile tel-local-prefix` | `section-${string} mobile tel-local-prefix webauthn` | `section-${string} mobile tel-local-suffix` | `section-${string} mobile tel-local-suffix webauthn` | `section-${string} mobile tel-national` | `section-${string} mobile tel-national webauthn` | `section-${string} work email` | `section-${string} work email webauthn` | `section-${string} work tel` | `section-${string} work tel webauthn` | `section-${string} work tel-area-code` | `section-${string} work tel-area-code webauthn` | `section-${string} work tel-country-code` | `section-${string} work tel-country-code webauthn` | `section-${string} work tel-extension` | `section-${string} work tel-extension webauthn` | `section-${string} work tel-local` | `section-${string} work tel-local webauthn` | `section-${string} work tel-local-prefix` | `section-${string} work tel-local-prefix webauthn` | `section-${string} work tel-local-suffix` | `section-${string} work tel-local-suffix webauthn` | `section-${string} work tel-national` | `section-${string} work tel-national webauthn` | `section-${string} billing additional-name` | `section-${string} billing additional-name webauthn` | `section-${string} billing address-level1` | `section-${string} billing address-level1 webauthn` | `section-${string} billing address-level2` | `section-${string} billing address-level2 webauthn` | `section-${string} billing address-level3` | `section-${string} billing address-level3 webauthn` | `section-${string} billing address-level4` | `section-${string} billing address-level4 webauthn` | `section-${string} billing address-line1` | `section-${string} billing address-line1 webauthn` | `section-${string} billing address-line2` | `section-${string} billing address-line2 webauthn` | `section-${string} billing address-line3` | `section-${string} billing address-line3 webauthn` | `section-${string} billing bday-day` | `section-${string} billing bday-day webauthn` | `section-${string} billing bday-month` | `section-${string} billing bday-month webauthn` | `section-${string} billing bday-year` | `section-${string} billing bday-year webauthn` | `section-${string} billing cc-csc` | `section-${string} billing cc-csc webauthn` | `section-${string} billing cc-exp` | `section-${string} billing cc-exp webauthn` | `section-${string} billing cc-exp-month` | `section-${string} billing cc-exp-month webauthn` | `section-${string} billing cc-exp-year` | `section-${string} billing cc-exp-year webauthn` | `section-${string} billing cc-family-name` | `section-${string} billing cc-family-name webauthn` | `section-${string} billing cc-given-name` | `section-${string} billing cc-given-name webauthn` | `section-${string} billing cc-name` | `section-${string} billing cc-name webauthn` | `section-${string} billing cc-number` | `section-${string} billing cc-number webauthn` | `section-${string} billing cc-type` | `section-${string} billing cc-type webauthn` | `section-${string} billing country` | `section-${string} billing country webauthn` | `section-${string} billing country-name` | `section-${string} billing country-name webauthn` | `section-${string} billing current-password` | `section-${string} billing current-password webauthn` | `section-${string} billing family-name` | `section-${string} billing family-name webauthn` | `section-${string} billing given-name` | `section-${string} billing given-name webauthn` | `section-${string} billing honorific-prefix` | `section-${string} billing honorific-prefix webauthn` | `section-${string} billing honorific-suffix` | `section-${string} billing honorific-suffix webauthn` | `section-${string} billing name` | `section-${string} billing name webauthn` | `section-${string} billing new-password` | `section-${string} billing new-password webauthn` | `section-${string} billing one-time-code` | `section-${string} billing one-time-code webauthn` | `section-${string} billing organization` | `section-${string} billing organization webauthn` | `section-${string} billing postal-code` | `section-${string} billing postal-code webauthn` | `section-${string} billing street-address` | `section-${string} billing street-address webauthn` | `section-${string} billing transaction-amount` | `section-${string} billing transaction-amount webauthn` | `section-${string} billing transaction-currency` | `section-${string} billing transaction-currency webauthn` | `section-${string} billing username` | `section-${string} billing username webauthn` | `section-${string} billing email` | `section-${string} billing email webauthn` | `section-${string} billing tel` | `section-${string} billing tel webauthn` | `section-${string} billing tel-area-code` | `section-${string} billing tel-area-code webauthn` | `section-${string} billing tel-country-code` | `section-${string} billing tel-country-code webauthn` | `section-${string} billing tel-extension` | `section-${string} billing tel-extension webauthn` | `section-${string} billing tel-local` | `section-${string} billing tel-local webauthn` | `section-${string} billing tel-local-prefix` | `section-${string} billing tel-local-prefix webauthn` | `section-${string} billing tel-local-suffix` | `section-${string} billing tel-local-suffix webauthn` | `section-${string} billing tel-national` | `section-${string} billing tel-national webauthn` | `section-${string} billing home email` | `section-${string} billing home email webauthn` | `section-${string} billing home tel` | `section-${string} billing home tel webauthn` | `section-${string} billing home tel-area-code` | `section-${string} billing home tel-area-code webauthn` | `section-${string} billing home tel-country-code` | `section-${string} billing home tel-country-code webauthn` | `section-${string} billing home tel-extension` | `section-${string} billing home tel-extension webauthn` | `section-${string} billing home tel-local` | `section-${string} billing home tel-local webauthn` | `section-${string} billing home tel-local-prefix` | `section-${string} billing home tel-local-prefix webauthn` | `section-${string} billing home tel-local-suffix` | `section-${string} billing home tel-local-suffix webauthn` | `section-${string} billing home tel-national` | `section-${string} billing home tel-national webauthn` | `section-${string} billing mobile email` | `section-${string} billing mobile email webauthn` | `section-${string} billing mobile tel` | `section-${string} billing mobile tel webauthn` | `section-${string} billing mobile tel-area-code` | `section-${string} billing mobile tel-area-code webauthn` | `section-${string} billing mobile tel-country-code` | `section-${string} billing mobile tel-country-code webauthn` | `section-${string} billing mobile tel-extension` | `section-${string} billing mobile tel-extension webauthn` | `section-${string} billing mobile tel-local` | `section-${string} billing mobile tel-local webauthn` | `section-${string} billing mobile tel-local-prefix` | `section-${string} billing mobile tel-local-prefix webauthn` | `section-${string} billing mobile tel-local-suffix` | `section-${string} billing mobile tel-local-suffix webauthn` | `section-${string} billing mobile tel-national` | `section-${string} billing mobile tel-national webauthn` | `section-${string} billing work email` | `section-${string} billing work email webauthn` | `section-${string} billing work tel` | `section-${string} billing work tel webauthn` | `section-${string} billing work tel-area-code` | `section-${string} billing work tel-area-code webauthn` | `section-${string} billing work tel-country-code` | `section-${string} billing work tel-country-code webauthn` | `section-${string} billing work tel-extension` | `section-${string} billing work tel-extension webauthn` | `section-${string} billing work tel-local` | `section-${string} billing work tel-local webauthn` | `section-${string} billing work tel-local-prefix` | `section-${string} billing work tel-local-prefix webauthn` | `section-${string} billing work tel-local-suffix` | `section-${string} billing work tel-local-suffix webauthn` | `section-${string} billing work tel-national` | `section-${string} billing work tel-national webauthn` | `section-${string} shipping additional-name` | `section-${string} shipping additional-name webauthn` | `section-${string} shipping address-level1` | `section-${string} shipping address-level1 webauthn` | `section-${string} shipping address-level2` | `section-${string} shipping address-level2 webauthn` | `section-${string} shipping address-level3` | `section-${string} shipping address-level3 webauthn` | `section-${string} shipping address-level4` | `section-${string} shipping address-level4 webauthn` | `section-${string} shipping address-line1` | `section-${string} shipping address-line1 webauthn` | `section-${string} shipping address-line2` | `section-${string} shipping address-line2 webauthn` | `section-${string} shipping address-line3` | `section-${string} shipping address-line3 webauthn` | `section-${string} shipping bday-day` | `section-${string} shipping bday-day webauthn` | `section-${string} shipping bday-month` | `section-${string} shipping bday-month webauthn` | `section-${string} shipping bday-year` | `section-${string} shipping bday-year webauthn` | `section-${string} shipping cc-csc` | `section-${string} shipping cc-csc webauthn` | `section-${string} shipping cc-exp` | `section-${string} shipping cc-exp webauthn` | `section-${string} shipping cc-exp-month` | `section-${string} shipping cc-exp-month webauthn` | `section-${string} shipping cc-exp-year` | `section-${string} shipping cc-exp-year webauthn` | `section-${string} shipping cc-family-name` | `section-${string} shipping cc-family-name webauthn` | `section-${string} shipping cc-given-name` | `section-${string} shipping cc-given-name webauthn` | `section-${string} shipping cc-name` | `section-${string} shipping cc-name webauthn` | `section-${string} shipping cc-number` | `section-${string} shipping cc-number webauthn` | `section-${string} shipping cc-type` | `section-${string} shipping cc-type webauthn` | `section-${string} shipping country` | `section-${string} shipping country webauthn` | `section-${string} shipping country-name` | `section-${string} shipping country-name webauthn` | `section-${string} shipping current-password` | `section-${string} shipping current-password webauthn` | `section-${string} shipping family-name` | `section-${string} shipping family-name webauthn` | `section-${string} shipping given-name` | `section-${string} shipping given-name webauthn` | `section-${string} shipping honorific-prefix` | `section-${string} shipping honorific-prefix webauthn` | `section-${string} shipping honorific-suffix` | `section-${string} shipping honorific-suffix webauthn` | `section-${string} shipping name` | `section-${string} shipping name webauthn` | `section-${string} shipping new-password` | `section-${string} shipping new-password webauthn` | `section-${string} shipping one-time-code` | `section-${string} shipping one-time-code webauthn` | `section-${string} shipping organization` | `section-${string} shipping organization webauthn` | `section-${string} shipping postal-code` | `section-${string} shipping postal-code webauthn` | `section-${string} shipping street-address` | `section-${string} shipping street-address webauthn` | `section-${string} shipping transaction-amount` | `section-${string} shipping transaction-amount webauthn` | `section-${string} shipping transaction-currency` | `section-${string} shipping transaction-currency webauthn` | `section-${string} shipping username` | `section-${string} shipping username webauthn` | `section-${string} shipping email` | `section-${string} shipping email webauthn` | `section-${string} shipping tel` | `section-${string} shipping tel webauthn` | `section-${string} shipping tel-area-code` | `section-${string} shipping tel-area-code webauthn` | `section-${string} shipping tel-country-code` | `section-${string} shipping tel-country-code webauthn` | `section-${string} shipping tel-extension` | `section-${string} shipping tel-extension webauthn` | `section-${string} shipping tel-local` | `section-${string} shipping tel-local webauthn` | `section-${string} shipping tel-local-prefix` | `section-${string} shipping tel-local-prefix webauthn` | `section-${string} shipping tel-local-suffix` | `section-${string} shipping tel-local-suffix webauthn` | `section-${string} shipping tel-national` | `section-${string} shipping tel-national webauthn` | `section-${string} shipping home email` | `section-${string} shipping home email webauthn` | `section-${string} shipping home tel` | `section-${string} shipping home tel webauthn` | `section-${string} shipping home tel-area-code` | `section-${string} shipping home tel-area-code webauthn` | `section-${string} shipping home tel-country-code` | `section-${string} shipping home tel-country-code webauthn` | `section-${string} shipping home tel-extension` | `section-${string} shipping home tel-extension webauthn` | `section-${string} shipping home tel-local` | `section-${string} shipping home tel-local webauthn` | `section-${string} shipping home tel-local-prefix` | `section-${string} shipping home tel-local-prefix webauthn` | `section-${string} shipping home tel-local-suffix` | `section-${string} shipping home tel-local-suffix webauthn` | `section-${string} shipping home tel-national` | `section-${string} shipping home tel-national webauthn` | `section-${string} shipping mobile email` | `section-${string} shipping mobile email webauthn` | `section-${string} shipping mobile tel` | `section-${string} shipping mobile tel webauthn` | `section-${string} shipping mobile tel-area-code` | `section-${string} shipping mobile tel-area-code webauthn` | `section-${string} shipping mobile tel-country-code` | `section-${string} shipping mobile tel-country-code webauthn` | `section-${string} shipping mobile tel-extension` | `section-${string} shipping mobile tel-extension webauthn` | `section-${string} shipping mobile tel-local` | `section-${string} shipping mobile tel-local webauthn` | `section-${string} shipping mobile tel-local-prefix` | `section-${string} shipping mobile tel-local-prefix webauthn` | `section-${string} shipping mobile tel-local-suffix` | `section-${string} shipping mobile tel-local-suffix webauthn` | `section-${string} shipping mobile tel-national` | `section-${string} shipping mobile tel-national webauthn` | `section-${string} shipping work email` | `section-${string} shipping work email webauthn` | `section-${string} shipping work tel` | `section-${string} shipping work tel webauthn` | `section-${string} shipping work tel-area-code` | `section-${string} shipping work tel-area-code webauthn` | `section-${string} shipping work tel-country-code` | `section-${string} shipping work tel-country-code webauthn` | `section-${string} shipping work tel-extension` | `section-${string} shipping work tel-extension webauthn` | `section-${string} shipping work tel-local` | `section-${string} shipping work tel-local webauthn` | `section-${string} shipping work tel-local-prefix` | `section-${string} shipping work tel-local-prefix webauthn` | `section-${string} shipping work tel-local-suffix` | `section-${string} shipping work tel-local-suffix webauthn` | `section-${string} shipping work tel-national` | `section-${string} shipping work tel-national webauthn`;
|
|
183
|
+
/** Sets the input mode of the field for asking browser to show the desired keyboard. */
|
|
184
|
+
"inputmode": string;
|
|
185
|
+
/** Sets input to get keyboard focus automatically */
|
|
186
|
+
"autofocus"?: boolean;
|
|
187
|
+
/** Sets the custom icon name. `bl-icon` component is used to show an icon */
|
|
188
|
+
"icon"?: import("@trendyol/baklava/dist/components/icon/icon-list").BaklavaIcon;
|
|
189
|
+
/** Sets input size. */
|
|
190
|
+
"size"?: "small" | "medium" | "large";
|
|
191
|
+
/** Disables the input */
|
|
192
|
+
"disabled"?: boolean;
|
|
193
|
+
/** Makes the input readonly. */
|
|
194
|
+
"readonly"?: boolean;
|
|
195
|
+
/** Makes label as fixed positioned */
|
|
196
|
+
"label-fixed"?: boolean;
|
|
197
|
+
/** Overrides error message. This message will override default error messages */
|
|
198
|
+
"invalid-text": string;
|
|
199
|
+
"error": string;
|
|
200
|
+
/** Adds help text */
|
|
201
|
+
"help-text"?: string | undefined;
|
|
202
|
+
/** Fires when an alteration to the element's value is committed by the user. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value. */
|
|
203
|
+
"on:bl-change"?: (event: CustomEvent<string>) => void;
|
|
204
|
+
/** Fires when an alteration to the element's value is committed by the user. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value. */
|
|
205
|
+
"onbl-change"?: (event: CustomEvent<string>) => void;
|
|
206
|
+
/** Fires when the value of an input element has been changed. */
|
|
207
|
+
"on:bl-input"?: (event: CustomEvent<string>) => void;
|
|
208
|
+
/** Fires when the value of an input element has been changed. */
|
|
209
|
+
"onbl-input"?: (event: CustomEvent<string>) => void;
|
|
210
|
+
/** Fires when the value of an input element has been changed. */
|
|
211
|
+
"on:bl-invalid"?: (event: CustomEvent<ValidityState>) => void;
|
|
212
|
+
/** Fires when the value of an input element has been changed. */
|
|
213
|
+
"onbl-invalid"?: (event: CustomEvent<ValidityState>) => void;
|
|
214
|
+
};
|
|
215
|
+
"bl-popover": {
|
|
216
|
+
/** Sets placement of the popover */
|
|
217
|
+
"placement"?: "top-start" | "top" | "top-end" | "bottom-start" | "bottom" | "bottom-end" | "left-start" | "left" | "left-end" | "right-start" | "right" | "right-end";
|
|
218
|
+
/** Sets size of popover same as trigger element */
|
|
219
|
+
"fit-size"?: boolean;
|
|
220
|
+
/** Sets the distance between popover and target/trigger element */
|
|
221
|
+
"offset"?: number;
|
|
222
|
+
/**
|
|
223
|
+
* Sets the target element of the popover to align and trigger.
|
|
224
|
+
* It can be a string id of the target element or can be a direct Element reference of it.
|
|
225
|
+
*/
|
|
226
|
+
"target": string | Element;
|
|
227
|
+
/** Fires when the popover is shown */
|
|
228
|
+
"on:bl-popover-show"?: (event: CustomEvent<string>) => void;
|
|
229
|
+
/** Fires when the popover is shown */
|
|
230
|
+
"onbl-popover-show"?: (event: CustomEvent<string>) => void;
|
|
231
|
+
/** Fires when popover becomes hidden */
|
|
232
|
+
"on:bl-popover-hide"?: (event: CustomEvent<string>) => void;
|
|
233
|
+
/** Fires when popover becomes hidden */
|
|
234
|
+
"onbl-popover-hide"?: (event: CustomEvent<string>) => void;
|
|
235
|
+
};
|
|
236
|
+
"bl-tooltip": {
|
|
237
|
+
/** Sets placement of the tooltip */
|
|
238
|
+
"placement"?: import("@trendyol/baklava/dist/components/popover/bl-popover").Placement;
|
|
239
|
+
"target": string | Element;
|
|
240
|
+
/** Fires when hovering over a trigger */
|
|
241
|
+
"on:bl-tooltip-show"?: (event: CustomEvent<string>) => void;
|
|
242
|
+
/** Fires when hovering over a trigger */
|
|
243
|
+
"onbl-tooltip-show"?: (event: CustomEvent<string>) => void;
|
|
244
|
+
/** Fires when leaving over from trigger */
|
|
245
|
+
"on:bl-tooltip-hide"?: (event: CustomEvent<string>) => void;
|
|
246
|
+
/** Fires when leaving over from trigger */
|
|
247
|
+
"onbl-tooltip-hide"?: (event: CustomEvent<string>) => void;
|
|
248
|
+
};
|
|
249
|
+
"bl-datepicker": {
|
|
250
|
+
/** Defines the datepicker input placeholder */
|
|
251
|
+
"placeholder": string;
|
|
252
|
+
/** Sets input size. */
|
|
253
|
+
"size"?: import("@trendyol/baklava/dist/components/input/bl-input").InputSize;
|
|
254
|
+
/** Makes datepicker input label as fixed positioned */
|
|
255
|
+
"label-fixed"?: boolean;
|
|
256
|
+
/** Defines the datepicker input label */
|
|
257
|
+
"label": string;
|
|
258
|
+
/** Defines the custom formatter function */
|
|
259
|
+
"value-formatter"?: ((dates: Date[]) => string) | null;
|
|
260
|
+
/** Sets datepicker to disabled */
|
|
261
|
+
"disabled": boolean;
|
|
262
|
+
/** Defines help text to datepicker input for users */
|
|
263
|
+
"help-text": string;
|
|
264
|
+
/** Fires when date selection is changed */
|
|
265
|
+
"on:bl-datepicker-change"?: (event: CustomEvent<Date[]>) => void;
|
|
266
|
+
/** Fires when date selection is changed */
|
|
267
|
+
"onbl-datepicker-change"?: (event: CustomEvent<Date[]>) => void;
|
|
268
|
+
};
|
|
148
269
|
"bl-dialog": {
|
|
149
270
|
/** Sets dialog open-close status */
|
|
150
271
|
"open"?: boolean;
|
|
@@ -207,66 +328,82 @@ declare namespace svelteHTML {
|
|
|
207
328
|
/** Fires when the drawer is closed */
|
|
208
329
|
"onbl-drawer-close"?: (event: CustomEvent<string>) => void;
|
|
209
330
|
};
|
|
210
|
-
"bl-
|
|
211
|
-
/** Sets
|
|
212
|
-
"
|
|
213
|
-
/**
|
|
214
|
-
"
|
|
215
|
-
/** Sets
|
|
216
|
-
"
|
|
217
|
-
/** Sets
|
|
218
|
-
"
|
|
219
|
-
/**
|
|
220
|
-
"
|
|
221
|
-
/**
|
|
222
|
-
"
|
|
223
|
-
/** Sets
|
|
224
|
-
"minlength"?: number;
|
|
225
|
-
/** Sets maximum length of the input */
|
|
226
|
-
"maxlength"?: number;
|
|
227
|
-
/** Sets the minimum acceptable value for the input */
|
|
228
|
-
"min"?: number | string;
|
|
229
|
-
/** Sets the loading value for the input */
|
|
331
|
+
"bl-split-button": {
|
|
332
|
+
/** Sets the split button label */
|
|
333
|
+
"label": string;
|
|
334
|
+
/** Sets the split button variant */
|
|
335
|
+
"variant"?: "primary" | "secondary";
|
|
336
|
+
/** Sets the split button kind */
|
|
337
|
+
"kind"?: import("@trendyol/baklava/dist/components/button/bl-button").ButtonKind;
|
|
338
|
+
/** Sets the split button size */
|
|
339
|
+
"size"?: import("@trendyol/baklava/dist/components/button/bl-button").ButtonSize;
|
|
340
|
+
/** Set link url. If set, split main button will be rendered as anchor tag. */
|
|
341
|
+
"href": string;
|
|
342
|
+
/** Sets main button as disabled */
|
|
343
|
+
"disabled"?: boolean;
|
|
344
|
+
/** Sets loading state of button */
|
|
230
345
|
"loading"?: boolean;
|
|
231
|
-
/** Sets the
|
|
232
|
-
"
|
|
233
|
-
/** Sets
|
|
234
|
-
"
|
|
235
|
-
/** Sets the
|
|
236
|
-
"
|
|
237
|
-
/**
|
|
238
|
-
"autocomplete"?: "" | "email" | "tel" | "off" | "on" | "additional-name" | "address-level1" | "address-level2" | "address-level3" | "address-level4" | "address-line1" | "address-line2" | "address-line3" | "bday-day" | "bday-month" | "bday-year" | "cc-csc" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-family-name" | "cc-given-name" | "cc-name" | "cc-number" | "cc-type" | "country" | "country-name" | "current-password" | "family-name" | "given-name" | "honorific-prefix" | "honorific-suffix" | "name" | "new-password" | "one-time-code" | "organization" | "postal-code" | "street-address" | "transaction-amount" | "transaction-currency" | "username" | "tel-area-code" | "tel-country-code" | "tel-extension" | "tel-local" | "tel-local-prefix" | "tel-local-suffix" | "tel-national" | "home email" | "home tel" | "home tel-area-code" | "home tel-country-code" | "home tel-extension" | "home tel-local" | "home tel-local-prefix" | "home tel-local-suffix" | "home tel-national" | "mobile email" | "mobile tel" | "mobile tel-area-code" | "mobile tel-country-code" | "mobile tel-extension" | "mobile tel-local" | "mobile tel-local-prefix" | "mobile tel-local-suffix" | "mobile tel-national" | "work email" | "work tel" | "work tel-area-code" | "work tel-country-code" | "work tel-extension" | "work tel-local" | "work tel-local-prefix" | "work tel-local-suffix" | "work tel-national" | "additional-name webauthn" | "address-level1 webauthn" | "address-level2 webauthn" | "address-level3 webauthn" | "address-level4 webauthn" | "address-line1 webauthn" | "address-line2 webauthn" | "address-line3 webauthn" | "bday-day webauthn" | "bday-month webauthn" | "bday-year webauthn" | "cc-csc webauthn" | "cc-exp webauthn" | "cc-exp-month webauthn" | "cc-exp-year webauthn" | "cc-family-name webauthn" | "cc-given-name webauthn" | "cc-name webauthn" | "cc-number webauthn" | "cc-type webauthn" | "country webauthn" | "country-name webauthn" | "current-password webauthn" | "family-name webauthn" | "given-name webauthn" | "honorific-prefix webauthn" | "honorific-suffix webauthn" | "name webauthn" | "new-password webauthn" | "one-time-code webauthn" | "organization webauthn" | "postal-code webauthn" | "street-address webauthn" | "transaction-amount webauthn" | "transaction-currency webauthn" | "username webauthn" | "email webauthn" | "tel webauthn" | "tel-area-code webauthn" | "tel-country-code webauthn" | "tel-extension webauthn" | "tel-local webauthn" | "tel-local-prefix webauthn" | "tel-local-suffix webauthn" | "tel-national webauthn" | "home email webauthn" | "home tel webauthn" | "home tel-area-code webauthn" | "home tel-country-code webauthn" | "home tel-extension webauthn" | "home tel-local webauthn" | "home tel-local-prefix webauthn" | "home tel-local-suffix webauthn" | "home tel-national webauthn" | "mobile email webauthn" | "mobile tel webauthn" | "mobile tel-area-code webauthn" | "mobile tel-country-code webauthn" | "mobile tel-extension webauthn" | "mobile tel-local webauthn" | "mobile tel-local-prefix webauthn" | "mobile tel-local-suffix webauthn" | "mobile tel-national webauthn" | "work email webauthn" | "work tel webauthn" | "work tel-area-code webauthn" | "work tel-country-code webauthn" | "work tel-extension webauthn" | "work tel-local webauthn" | "work tel-local-prefix webauthn" | "work tel-local-suffix webauthn" | "work tel-national webauthn" | "billing additional-name" | "billing additional-name webauthn" | "billing address-level1" | "billing address-level1 webauthn" | "billing address-level2" | "billing address-level2 webauthn" | "billing address-level3" | "billing address-level3 webauthn" | "billing address-level4" | "billing address-level4 webauthn" | "billing address-line1" | "billing address-line1 webauthn" | "billing address-line2" | "billing address-line2 webauthn" | "billing address-line3" | "billing address-line3 webauthn" | "billing bday-day" | "billing bday-day webauthn" | "billing bday-month" | "billing bday-month webauthn" | "billing bday-year" | "billing bday-year webauthn" | "billing cc-csc" | "billing cc-csc webauthn" | "billing cc-exp" | "billing cc-exp webauthn" | "billing cc-exp-month" | "billing cc-exp-month webauthn" | "billing cc-exp-year" | "billing cc-exp-year webauthn" | "billing cc-family-name" | "billing cc-family-name webauthn" | "billing cc-given-name" | "billing cc-given-name webauthn" | "billing cc-name" | "billing cc-name webauthn" | "billing cc-number" | "billing cc-number webauthn" | "billing cc-type" | "billing cc-type webauthn" | "billing country" | "billing country webauthn" | "billing country-name" | "billing country-name webauthn" | "billing current-password" | "billing current-password webauthn" | "billing family-name" | "billing family-name webauthn" | "billing given-name" | "billing given-name webauthn" | "billing honorific-prefix" | "billing honorific-prefix webauthn" | "billing honorific-suffix" | "billing honorific-suffix webauthn" | "billing name" | "billing name webauthn" | "billing new-password" | "billing new-password webauthn" | "billing one-time-code" | "billing one-time-code webauthn" | "billing organization" | "billing organization webauthn" | "billing postal-code" | "billing postal-code webauthn" | "billing street-address" | "billing street-address webauthn" | "billing transaction-amount" | "billing transaction-amount webauthn" | "billing transaction-currency" | "billing transaction-currency webauthn" | "billing username" | "billing username webauthn" | "billing email" | "billing email webauthn" | "billing tel" | "billing tel webauthn" | "billing tel-area-code" | "billing tel-area-code webauthn" | "billing tel-country-code" | "billing tel-country-code webauthn" | "billing tel-extension" | "billing tel-extension webauthn" | "billing tel-local" | "billing tel-local webauthn" | "billing tel-local-prefix" | "billing tel-local-prefix webauthn" | "billing tel-local-suffix" | "billing tel-local-suffix webauthn" | "billing tel-national" | "billing tel-national webauthn" | "billing home email" | "billing home email webauthn" | "billing home tel" | "billing home tel webauthn" | "billing home tel-area-code" | "billing home tel-area-code webauthn" | "billing home tel-country-code" | "billing home tel-country-code webauthn" | "billing home tel-extension" | "billing home tel-extension webauthn" | "billing home tel-local" | "billing home tel-local webauthn" | "billing home tel-local-prefix" | "billing home tel-local-prefix webauthn" | "billing home tel-local-suffix" | "billing home tel-local-suffix webauthn" | "billing home tel-national" | "billing home tel-national webauthn" | "billing mobile email" | "billing mobile email webauthn" | "billing mobile tel" | "billing mobile tel webauthn" | "billing mobile tel-area-code" | "billing mobile tel-area-code webauthn" | "billing mobile tel-country-code" | "billing mobile tel-country-code webauthn" | "billing mobile tel-extension" | "billing mobile tel-extension webauthn" | "billing mobile tel-local" | "billing mobile tel-local webauthn" | "billing mobile tel-local-prefix" | "billing mobile tel-local-prefix webauthn" | "billing mobile tel-local-suffix" | "billing mobile tel-local-suffix webauthn" | "billing mobile tel-national" | "billing mobile tel-national webauthn" | "billing work email" | "billing work email webauthn" | "billing work tel" | "billing work tel webauthn" | "billing work tel-area-code" | "billing work tel-area-code webauthn" | "billing work tel-country-code" | "billing work tel-country-code webauthn" | "billing work tel-extension" | "billing work tel-extension webauthn" | "billing work tel-local" | "billing work tel-local webauthn" | "billing work tel-local-prefix" | "billing work tel-local-prefix webauthn" | "billing work tel-local-suffix" | "billing work tel-local-suffix webauthn" | "billing work tel-national" | "billing work tel-national webauthn" | "shipping additional-name" | "shipping additional-name webauthn" | "shipping address-level1" | "shipping address-level1 webauthn" | "shipping address-level2" | "shipping address-level2 webauthn" | "shipping address-level3" | "shipping address-level3 webauthn" | "shipping address-level4" | "shipping address-level4 webauthn" | "shipping address-line1" | "shipping address-line1 webauthn" | "shipping address-line2" | "shipping address-line2 webauthn" | "shipping address-line3" | "shipping address-line3 webauthn" | "shipping bday-day" | "shipping bday-day webauthn" | "shipping bday-month" | "shipping bday-month webauthn" | "shipping bday-year" | "shipping bday-year webauthn" | "shipping cc-csc" | "shipping cc-csc webauthn" | "shipping cc-exp" | "shipping cc-exp webauthn" | "shipping cc-exp-month" | "shipping cc-exp-month webauthn" | "shipping cc-exp-year" | "shipping cc-exp-year webauthn" | "shipping cc-family-name" | "shipping cc-family-name webauthn" | "shipping cc-given-name" | "shipping cc-given-name webauthn" | "shipping cc-name" | "shipping cc-name webauthn" | "shipping cc-number" | "shipping cc-number webauthn" | "shipping cc-type" | "shipping cc-type webauthn" | "shipping country" | "shipping country webauthn" | "shipping country-name" | "shipping country-name webauthn" | "shipping current-password" | "shipping current-password webauthn" | "shipping family-name" | "shipping family-name webauthn" | "shipping given-name" | "shipping given-name webauthn" | "shipping honorific-prefix" | "shipping honorific-prefix webauthn" | "shipping honorific-suffix" | "shipping honorific-suffix webauthn" | "shipping name" | "shipping name webauthn" | "shipping new-password" | "shipping new-password webauthn" | "shipping one-time-code" | "shipping one-time-code webauthn" | "shipping organization" | "shipping organization webauthn" | "shipping postal-code" | "shipping postal-code webauthn" | "shipping street-address" | "shipping street-address webauthn" | "shipping transaction-amount" | "shipping transaction-amount webauthn" | "shipping transaction-currency" | "shipping transaction-currency webauthn" | "shipping username" | "shipping username webauthn" | "shipping email" | "shipping email webauthn" | "shipping tel" | "shipping tel webauthn" | "shipping tel-area-code" | "shipping tel-area-code webauthn" | "shipping tel-country-code" | "shipping tel-country-code webauthn" | "shipping tel-extension" | "shipping tel-extension webauthn" | "shipping tel-local" | "shipping tel-local webauthn" | "shipping tel-local-prefix" | "shipping tel-local-prefix webauthn" | "shipping tel-local-suffix" | "shipping tel-local-suffix webauthn" | "shipping tel-national" | "shipping tel-national webauthn" | "shipping home email" | "shipping home email webauthn" | "shipping home tel" | "shipping home tel webauthn" | "shipping home tel-area-code" | "shipping home tel-area-code webauthn" | "shipping home tel-country-code" | "shipping home tel-country-code webauthn" | "shipping home tel-extension" | "shipping home tel-extension webauthn" | "shipping home tel-local" | "shipping home tel-local webauthn" | "shipping home tel-local-prefix" | "shipping home tel-local-prefix webauthn" | "shipping home tel-local-suffix" | "shipping home tel-local-suffix webauthn" | "shipping home tel-national" | "shipping home tel-national webauthn" | "shipping mobile email" | "shipping mobile email webauthn" | "shipping mobile tel" | "shipping mobile tel webauthn" | "shipping mobile tel-area-code" | "shipping mobile tel-area-code webauthn" | "shipping mobile tel-country-code" | "shipping mobile tel-country-code webauthn" | "shipping mobile tel-extension" | "shipping mobile tel-extension webauthn" | "shipping mobile tel-local" | "shipping mobile tel-local webauthn" | "shipping mobile tel-local-prefix" | "shipping mobile tel-local-prefix webauthn" | "shipping mobile tel-local-suffix" | "shipping mobile tel-local-suffix webauthn" | "shipping mobile tel-national" | "shipping mobile tel-national webauthn" | "shipping work email" | "shipping work email webauthn" | "shipping work tel" | "shipping work tel webauthn" | "shipping work tel-area-code" | "shipping work tel-area-code webauthn" | "shipping work tel-country-code" | "shipping work tel-country-code webauthn" | "shipping work tel-extension" | "shipping work tel-extension webauthn" | "shipping work tel-local" | "shipping work tel-local webauthn" | "shipping work tel-local-prefix" | "shipping work tel-local-prefix webauthn" | "shipping work tel-local-suffix" | "shipping work tel-local-suffix webauthn" | "shipping work tel-national" | "shipping work tel-national webauthn" | `section-${string} additional-name` | `section-${string} additional-name webauthn` | `section-${string} address-level1` | `section-${string} address-level1 webauthn` | `section-${string} address-level2` | `section-${string} address-level2 webauthn` | `section-${string} address-level3` | `section-${string} address-level3 webauthn` | `section-${string} address-level4` | `section-${string} address-level4 webauthn` | `section-${string} address-line1` | `section-${string} address-line1 webauthn` | `section-${string} address-line2` | `section-${string} address-line2 webauthn` | `section-${string} address-line3` | `section-${string} address-line3 webauthn` | `section-${string} bday-day` | `section-${string} bday-day webauthn` | `section-${string} bday-month` | `section-${string} bday-month webauthn` | `section-${string} bday-year` | `section-${string} bday-year webauthn` | `section-${string} cc-csc` | `section-${string} cc-csc webauthn` | `section-${string} cc-exp` | `section-${string} cc-exp webauthn` | `section-${string} cc-exp-month` | `section-${string} cc-exp-month webauthn` | `section-${string} cc-exp-year` | `section-${string} cc-exp-year webauthn` | `section-${string} cc-family-name` | `section-${string} cc-family-name webauthn` | `section-${string} cc-given-name` | `section-${string} cc-given-name webauthn` | `section-${string} cc-name` | `section-${string} cc-name webauthn` | `section-${string} cc-number` | `section-${string} cc-number webauthn` | `section-${string} cc-type` | `section-${string} cc-type webauthn` | `section-${string} country` | `section-${string} country webauthn` | `section-${string} country-name` | `section-${string} country-name webauthn` | `section-${string} current-password` | `section-${string} current-password webauthn` | `section-${string} family-name` | `section-${string} family-name webauthn` | `section-${string} given-name` | `section-${string} given-name webauthn` | `section-${string} honorific-prefix` | `section-${string} honorific-prefix webauthn` | `section-${string} honorific-suffix` | `section-${string} honorific-suffix webauthn` | `section-${string} name` | `section-${string} name webauthn` | `section-${string} new-password` | `section-${string} new-password webauthn` | `section-${string} one-time-code` | `section-${string} one-time-code webauthn` | `section-${string} organization` | `section-${string} organization webauthn` | `section-${string} postal-code` | `section-${string} postal-code webauthn` | `section-${string} street-address` | `section-${string} street-address webauthn` | `section-${string} transaction-amount` | `section-${string} transaction-amount webauthn` | `section-${string} transaction-currency` | `section-${string} transaction-currency webauthn` | `section-${string} username` | `section-${string} username webauthn` | `section-${string} email` | `section-${string} email webauthn` | `section-${string} tel` | `section-${string} tel webauthn` | `section-${string} tel-area-code` | `section-${string} tel-area-code webauthn` | `section-${string} tel-country-code` | `section-${string} tel-country-code webauthn` | `section-${string} tel-extension` | `section-${string} tel-extension webauthn` | `section-${string} tel-local` | `section-${string} tel-local webauthn` | `section-${string} tel-local-prefix` | `section-${string} tel-local-prefix webauthn` | `section-${string} tel-local-suffix` | `section-${string} tel-local-suffix webauthn` | `section-${string} tel-national` | `section-${string} tel-national webauthn` | `section-${string} home email` | `section-${string} home email webauthn` | `section-${string} home tel` | `section-${string} home tel webauthn` | `section-${string} home tel-area-code` | `section-${string} home tel-area-code webauthn` | `section-${string} home tel-country-code` | `section-${string} home tel-country-code webauthn` | `section-${string} home tel-extension` | `section-${string} home tel-extension webauthn` | `section-${string} home tel-local` | `section-${string} home tel-local webauthn` | `section-${string} home tel-local-prefix` | `section-${string} home tel-local-prefix webauthn` | `section-${string} home tel-local-suffix` | `section-${string} home tel-local-suffix webauthn` | `section-${string} home tel-national` | `section-${string} home tel-national webauthn` | `section-${string} mobile email` | `section-${string} mobile email webauthn` | `section-${string} mobile tel` | `section-${string} mobile tel webauthn` | `section-${string} mobile tel-area-code` | `section-${string} mobile tel-area-code webauthn` | `section-${string} mobile tel-country-code` | `section-${string} mobile tel-country-code webauthn` | `section-${string} mobile tel-extension` | `section-${string} mobile tel-extension webauthn` | `section-${string} mobile tel-local` | `section-${string} mobile tel-local webauthn` | `section-${string} mobile tel-local-prefix` | `section-${string} mobile tel-local-prefix webauthn` | `section-${string} mobile tel-local-suffix` | `section-${string} mobile tel-local-suffix webauthn` | `section-${string} mobile tel-national` | `section-${string} mobile tel-national webauthn` | `section-${string} work email` | `section-${string} work email webauthn` | `section-${string} work tel` | `section-${string} work tel webauthn` | `section-${string} work tel-area-code` | `section-${string} work tel-area-code webauthn` | `section-${string} work tel-country-code` | `section-${string} work tel-country-code webauthn` | `section-${string} work tel-extension` | `section-${string} work tel-extension webauthn` | `section-${string} work tel-local` | `section-${string} work tel-local webauthn` | `section-${string} work tel-local-prefix` | `section-${string} work tel-local-prefix webauthn` | `section-${string} work tel-local-suffix` | `section-${string} work tel-local-suffix webauthn` | `section-${string} work tel-national` | `section-${string} work tel-national webauthn` | `section-${string} billing additional-name` | `section-${string} billing additional-name webauthn` | `section-${string} billing address-level1` | `section-${string} billing address-level1 webauthn` | `section-${string} billing address-level2` | `section-${string} billing address-level2 webauthn` | `section-${string} billing address-level3` | `section-${string} billing address-level3 webauthn` | `section-${string} billing address-level4` | `section-${string} billing address-level4 webauthn` | `section-${string} billing address-line1` | `section-${string} billing address-line1 webauthn` | `section-${string} billing address-line2` | `section-${string} billing address-line2 webauthn` | `section-${string} billing address-line3` | `section-${string} billing address-line3 webauthn` | `section-${string} billing bday-day` | `section-${string} billing bday-day webauthn` | `section-${string} billing bday-month` | `section-${string} billing bday-month webauthn` | `section-${string} billing bday-year` | `section-${string} billing bday-year webauthn` | `section-${string} billing cc-csc` | `section-${string} billing cc-csc webauthn` | `section-${string} billing cc-exp` | `section-${string} billing cc-exp webauthn` | `section-${string} billing cc-exp-month` | `section-${string} billing cc-exp-month webauthn` | `section-${string} billing cc-exp-year` | `section-${string} billing cc-exp-year webauthn` | `section-${string} billing cc-family-name` | `section-${string} billing cc-family-name webauthn` | `section-${string} billing cc-given-name` | `section-${string} billing cc-given-name webauthn` | `section-${string} billing cc-name` | `section-${string} billing cc-name webauthn` | `section-${string} billing cc-number` | `section-${string} billing cc-number webauthn` | `section-${string} billing cc-type` | `section-${string} billing cc-type webauthn` | `section-${string} billing country` | `section-${string} billing country webauthn` | `section-${string} billing country-name` | `section-${string} billing country-name webauthn` | `section-${string} billing current-password` | `section-${string} billing current-password webauthn` | `section-${string} billing family-name` | `section-${string} billing family-name webauthn` | `section-${string} billing given-name` | `section-${string} billing given-name webauthn` | `section-${string} billing honorific-prefix` | `section-${string} billing honorific-prefix webauthn` | `section-${string} billing honorific-suffix` | `section-${string} billing honorific-suffix webauthn` | `section-${string} billing name` | `section-${string} billing name webauthn` | `section-${string} billing new-password` | `section-${string} billing new-password webauthn` | `section-${string} billing one-time-code` | `section-${string} billing one-time-code webauthn` | `section-${string} billing organization` | `section-${string} billing organization webauthn` | `section-${string} billing postal-code` | `section-${string} billing postal-code webauthn` | `section-${string} billing street-address` | `section-${string} billing street-address webauthn` | `section-${string} billing transaction-amount` | `section-${string} billing transaction-amount webauthn` | `section-${string} billing transaction-currency` | `section-${string} billing transaction-currency webauthn` | `section-${string} billing username` | `section-${string} billing username webauthn` | `section-${string} billing email` | `section-${string} billing email webauthn` | `section-${string} billing tel` | `section-${string} billing tel webauthn` | `section-${string} billing tel-area-code` | `section-${string} billing tel-area-code webauthn` | `section-${string} billing tel-country-code` | `section-${string} billing tel-country-code webauthn` | `section-${string} billing tel-extension` | `section-${string} billing tel-extension webauthn` | `section-${string} billing tel-local` | `section-${string} billing tel-local webauthn` | `section-${string} billing tel-local-prefix` | `section-${string} billing tel-local-prefix webauthn` | `section-${string} billing tel-local-suffix` | `section-${string} billing tel-local-suffix webauthn` | `section-${string} billing tel-national` | `section-${string} billing tel-national webauthn` | `section-${string} billing home email` | `section-${string} billing home email webauthn` | `section-${string} billing home tel` | `section-${string} billing home tel webauthn` | `section-${string} billing home tel-area-code` | `section-${string} billing home tel-area-code webauthn` | `section-${string} billing home tel-country-code` | `section-${string} billing home tel-country-code webauthn` | `section-${string} billing home tel-extension` | `section-${string} billing home tel-extension webauthn` | `section-${string} billing home tel-local` | `section-${string} billing home tel-local webauthn` | `section-${string} billing home tel-local-prefix` | `section-${string} billing home tel-local-prefix webauthn` | `section-${string} billing home tel-local-suffix` | `section-${string} billing home tel-local-suffix webauthn` | `section-${string} billing home tel-national` | `section-${string} billing home tel-national webauthn` | `section-${string} billing mobile email` | `section-${string} billing mobile email webauthn` | `section-${string} billing mobile tel` | `section-${string} billing mobile tel webauthn` | `section-${string} billing mobile tel-area-code` | `section-${string} billing mobile tel-area-code webauthn` | `section-${string} billing mobile tel-country-code` | `section-${string} billing mobile tel-country-code webauthn` | `section-${string} billing mobile tel-extension` | `section-${string} billing mobile tel-extension webauthn` | `section-${string} billing mobile tel-local` | `section-${string} billing mobile tel-local webauthn` | `section-${string} billing mobile tel-local-prefix` | `section-${string} billing mobile tel-local-prefix webauthn` | `section-${string} billing mobile tel-local-suffix` | `section-${string} billing mobile tel-local-suffix webauthn` | `section-${string} billing mobile tel-national` | `section-${string} billing mobile tel-national webauthn` | `section-${string} billing work email` | `section-${string} billing work email webauthn` | `section-${string} billing work tel` | `section-${string} billing work tel webauthn` | `section-${string} billing work tel-area-code` | `section-${string} billing work tel-area-code webauthn` | `section-${string} billing work tel-country-code` | `section-${string} billing work tel-country-code webauthn` | `section-${string} billing work tel-extension` | `section-${string} billing work tel-extension webauthn` | `section-${string} billing work tel-local` | `section-${string} billing work tel-local webauthn` | `section-${string} billing work tel-local-prefix` | `section-${string} billing work tel-local-prefix webauthn` | `section-${string} billing work tel-local-suffix` | `section-${string} billing work tel-local-suffix webauthn` | `section-${string} billing work tel-national` | `section-${string} billing work tel-national webauthn` | `section-${string} shipping additional-name` | `section-${string} shipping additional-name webauthn` | `section-${string} shipping address-level1` | `section-${string} shipping address-level1 webauthn` | `section-${string} shipping address-level2` | `section-${string} shipping address-level2 webauthn` | `section-${string} shipping address-level3` | `section-${string} shipping address-level3 webauthn` | `section-${string} shipping address-level4` | `section-${string} shipping address-level4 webauthn` | `section-${string} shipping address-line1` | `section-${string} shipping address-line1 webauthn` | `section-${string} shipping address-line2` | `section-${string} shipping address-line2 webauthn` | `section-${string} shipping address-line3` | `section-${string} shipping address-line3 webauthn` | `section-${string} shipping bday-day` | `section-${string} shipping bday-day webauthn` | `section-${string} shipping bday-month` | `section-${string} shipping bday-month webauthn` | `section-${string} shipping bday-year` | `section-${string} shipping bday-year webauthn` | `section-${string} shipping cc-csc` | `section-${string} shipping cc-csc webauthn` | `section-${string} shipping cc-exp` | `section-${string} shipping cc-exp webauthn` | `section-${string} shipping cc-exp-month` | `section-${string} shipping cc-exp-month webauthn` | `section-${string} shipping cc-exp-year` | `section-${string} shipping cc-exp-year webauthn` | `section-${string} shipping cc-family-name` | `section-${string} shipping cc-family-name webauthn` | `section-${string} shipping cc-given-name` | `section-${string} shipping cc-given-name webauthn` | `section-${string} shipping cc-name` | `section-${string} shipping cc-name webauthn` | `section-${string} shipping cc-number` | `section-${string} shipping cc-number webauthn` | `section-${string} shipping cc-type` | `section-${string} shipping cc-type webauthn` | `section-${string} shipping country` | `section-${string} shipping country webauthn` | `section-${string} shipping country-name` | `section-${string} shipping country-name webauthn` | `section-${string} shipping current-password` | `section-${string} shipping current-password webauthn` | `section-${string} shipping family-name` | `section-${string} shipping family-name webauthn` | `section-${string} shipping given-name` | `section-${string} shipping given-name webauthn` | `section-${string} shipping honorific-prefix` | `section-${string} shipping honorific-prefix webauthn` | `section-${string} shipping honorific-suffix` | `section-${string} shipping honorific-suffix webauthn` | `section-${string} shipping name` | `section-${string} shipping name webauthn` | `section-${string} shipping new-password` | `section-${string} shipping new-password webauthn` | `section-${string} shipping one-time-code` | `section-${string} shipping one-time-code webauthn` | `section-${string} shipping organization` | `section-${string} shipping organization webauthn` | `section-${string} shipping postal-code` | `section-${string} shipping postal-code webauthn` | `section-${string} shipping street-address` | `section-${string} shipping street-address webauthn` | `section-${string} shipping transaction-amount` | `section-${string} shipping transaction-amount webauthn` | `section-${string} shipping transaction-currency` | `section-${string} shipping transaction-currency webauthn` | `section-${string} shipping username` | `section-${string} shipping username webauthn` | `section-${string} shipping email` | `section-${string} shipping email webauthn` | `section-${string} shipping tel` | `section-${string} shipping tel webauthn` | `section-${string} shipping tel-area-code` | `section-${string} shipping tel-area-code webauthn` | `section-${string} shipping tel-country-code` | `section-${string} shipping tel-country-code webauthn` | `section-${string} shipping tel-extension` | `section-${string} shipping tel-extension webauthn` | `section-${string} shipping tel-local` | `section-${string} shipping tel-local webauthn` | `section-${string} shipping tel-local-prefix` | `section-${string} shipping tel-local-prefix webauthn` | `section-${string} shipping tel-local-suffix` | `section-${string} shipping tel-local-suffix webauthn` | `section-${string} shipping tel-national` | `section-${string} shipping tel-national webauthn` | `section-${string} shipping home email` | `section-${string} shipping home email webauthn` | `section-${string} shipping home tel` | `section-${string} shipping home tel webauthn` | `section-${string} shipping home tel-area-code` | `section-${string} shipping home tel-area-code webauthn` | `section-${string} shipping home tel-country-code` | `section-${string} shipping home tel-country-code webauthn` | `section-${string} shipping home tel-extension` | `section-${string} shipping home tel-extension webauthn` | `section-${string} shipping home tel-local` | `section-${string} shipping home tel-local webauthn` | `section-${string} shipping home tel-local-prefix` | `section-${string} shipping home tel-local-prefix webauthn` | `section-${string} shipping home tel-local-suffix` | `section-${string} shipping home tel-local-suffix webauthn` | `section-${string} shipping home tel-national` | `section-${string} shipping home tel-national webauthn` | `section-${string} shipping mobile email` | `section-${string} shipping mobile email webauthn` | `section-${string} shipping mobile tel` | `section-${string} shipping mobile tel webauthn` | `section-${string} shipping mobile tel-area-code` | `section-${string} shipping mobile tel-area-code webauthn` | `section-${string} shipping mobile tel-country-code` | `section-${string} shipping mobile tel-country-code webauthn` | `section-${string} shipping mobile tel-extension` | `section-${string} shipping mobile tel-extension webauthn` | `section-${string} shipping mobile tel-local` | `section-${string} shipping mobile tel-local webauthn` | `section-${string} shipping mobile tel-local-prefix` | `section-${string} shipping mobile tel-local-prefix webauthn` | `section-${string} shipping mobile tel-local-suffix` | `section-${string} shipping mobile tel-local-suffix webauthn` | `section-${string} shipping mobile tel-national` | `section-${string} shipping mobile tel-national webauthn` | `section-${string} shipping work email` | `section-${string} shipping work email webauthn` | `section-${string} shipping work tel` | `section-${string} shipping work tel webauthn` | `section-${string} shipping work tel-area-code` | `section-${string} shipping work tel-area-code webauthn` | `section-${string} shipping work tel-country-code` | `section-${string} shipping work tel-country-code webauthn` | `section-${string} shipping work tel-extension` | `section-${string} shipping work tel-extension webauthn` | `section-${string} shipping work tel-local` | `section-${string} shipping work tel-local webauthn` | `section-${string} shipping work tel-local-prefix` | `section-${string} shipping work tel-local-prefix webauthn` | `section-${string} shipping work tel-local-suffix` | `section-${string} shipping work tel-local-suffix webauthn` | `section-${string} shipping work tel-national` | `section-${string} shipping work tel-national webauthn`;
|
|
239
|
-
/** Sets the
|
|
240
|
-
"
|
|
241
|
-
/** Sets
|
|
346
|
+
/** Sets the button label for loading status. */
|
|
347
|
+
"loading-label": string;
|
|
348
|
+
/** Sets dropdown button as disabled */
|
|
349
|
+
"dropdown-disabled"?: boolean;
|
|
350
|
+
/** Sets the icon name. Shows icon with bl-icon component */
|
|
351
|
+
"icon"?: import("@trendyol/baklava/dist/components/icon/icon-list").BaklavaIcon;
|
|
352
|
+
/** Sets the anchor target. Used when `href` is set. */
|
|
353
|
+
"target"?: import("@trendyol/baklava/dist/components/button/bl-button").TargetType;
|
|
354
|
+
/** Sets the type of the button. Set `submit` to use button as the submitter of parent form. */
|
|
355
|
+
"type": "submit";
|
|
356
|
+
/** Sets button to get keyboard focus automatically */
|
|
242
357
|
"autofocus"?: boolean;
|
|
243
|
-
/** Sets the
|
|
358
|
+
/** Sets the associated form of the button. Use when `type` is set to `submit` and button is not inside the target form. */
|
|
359
|
+
"form": HTMLFormElement | string;
|
|
360
|
+
/** Fires when dropdown opened */
|
|
361
|
+
"on:bl-dropdown-open"?: (event: CustomEvent<string>) => void;
|
|
362
|
+
/** Fires when dropdown opened */
|
|
363
|
+
"onbl-dropdown-open"?: (event: CustomEvent<string>) => void;
|
|
364
|
+
/** Fires when dropdown closed */
|
|
365
|
+
"on:bl-dropdown-close"?: (event: CustomEvent<string>) => void;
|
|
366
|
+
/** Fires when dropdown closed */
|
|
367
|
+
"onbl-dropdown-close"?: (event: CustomEvent<string>) => void;
|
|
368
|
+
/** Fires when main button click */
|
|
369
|
+
"on:bl-click"?: (event: CustomEvent<string>) => void;
|
|
370
|
+
/** Fires when main button click */
|
|
371
|
+
"onbl-click"?: (event: CustomEvent<string>) => void;
|
|
372
|
+
};
|
|
373
|
+
"bl-dropdown-group": {
|
|
374
|
+
/** Sets the caption. */
|
|
375
|
+
"caption"?: string;
|
|
376
|
+
};
|
|
377
|
+
"bl-dropdown-item": {
|
|
378
|
+
/** Sets the icon name. Shows icon with bl-icon component */
|
|
244
379
|
"icon"?: import("@trendyol/baklava/dist/components/icon/icon-list").BaklavaIcon;
|
|
245
|
-
/** Sets
|
|
246
|
-
"size"?: "small" | "medium" | "large";
|
|
247
|
-
/** Disables the input */
|
|
380
|
+
/** Sets item as disabled */
|
|
248
381
|
"disabled"?: boolean;
|
|
249
|
-
|
|
250
|
-
"
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
"
|
|
256
|
-
/**
|
|
257
|
-
"
|
|
258
|
-
/**
|
|
259
|
-
"
|
|
260
|
-
/**
|
|
261
|
-
"
|
|
262
|
-
/**
|
|
263
|
-
"
|
|
264
|
-
/**
|
|
265
|
-
"
|
|
266
|
-
/** Fires when
|
|
267
|
-
"on:bl-
|
|
268
|
-
/** Fires when
|
|
269
|
-
"onbl-
|
|
382
|
+
|
|
383
|
+
"on:bl-dropdown-item-click"?: (event: CustomEvent<string>) => void;
|
|
384
|
+
"onbl-dropdown-item-click"?: (event: CustomEvent<string>) => void;
|
|
385
|
+
};
|
|
386
|
+
"bl-dropdown": {
|
|
387
|
+
/** Sets the dropdown button label */
|
|
388
|
+
"label": string;
|
|
389
|
+
/** Sets the dropdown button variant */
|
|
390
|
+
"variant"?: import("@trendyol/baklava/dist/components/button/bl-button").ButtonVariant;
|
|
391
|
+
/** Sets the dropdown button kind */
|
|
392
|
+
"kind"?: import("@trendyol/baklava/dist/components/button/bl-button").ButtonKind;
|
|
393
|
+
/** Sets the dropdown button size */
|
|
394
|
+
"size"?: import("@trendyol/baklava/dist/components/button/bl-button").ButtonSize;
|
|
395
|
+
/** Sets button as disabled */
|
|
396
|
+
"disabled"?: boolean;
|
|
397
|
+
/** Sets the icon name to be displayed on the left side of the button label */
|
|
398
|
+
"icon"?: string;
|
|
399
|
+
/** Fires when dropdown opened */
|
|
400
|
+
"on:bl-dropdown-open"?: (event: CustomEvent<string>) => void;
|
|
401
|
+
/** Fires when dropdown opened */
|
|
402
|
+
"onbl-dropdown-open"?: (event: CustomEvent<string>) => void;
|
|
403
|
+
/** Fires when dropdown closed */
|
|
404
|
+
"on:bl-dropdown-close"?: (event: CustomEvent<string>) => void;
|
|
405
|
+
/** Fires when dropdown closed */
|
|
406
|
+
"onbl-dropdown-close"?: (event: CustomEvent<string>) => void;
|
|
270
407
|
};
|
|
271
408
|
"bl-link": {
|
|
272
409
|
/** URL that the hyperlink points to */
|
|
@@ -298,13 +435,65 @@ declare namespace svelteHTML {
|
|
|
298
435
|
/** Ping URLs to be notified when following the link */
|
|
299
436
|
"ping"?: string;
|
|
300
437
|
};
|
|
301
|
-
"bl-
|
|
302
|
-
/** Sets
|
|
303
|
-
"
|
|
304
|
-
/**
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
438
|
+
"bl-notification-card": {
|
|
439
|
+
/** Sets notification caption. */
|
|
440
|
+
"caption"?: string;
|
|
441
|
+
/**
|
|
442
|
+
* Allows to customize notification icon.
|
|
443
|
+
* True value will display default icon.
|
|
444
|
+
* False value will hide icon.
|
|
445
|
+
* String value will display icon with specified name.
|
|
446
|
+
*/
|
|
447
|
+
"icon"?: boolean | import("@trendyol/baklava/dist/components/icon/icon-list").BaklavaIcon;
|
|
448
|
+
/** Sets notification variant. */
|
|
449
|
+
"variant"?: "success" | "info" | "warning" | "error";
|
|
450
|
+
/** Indicates whether the notification is closed. */
|
|
451
|
+
"closed"?: boolean;
|
|
452
|
+
/**
|
|
453
|
+
* Sets notification display duration in minutes.
|
|
454
|
+
* Has no effect if permanent is set to true.
|
|
455
|
+
*/
|
|
456
|
+
"duration"?: boolean;
|
|
457
|
+
/** Prevents notification from being closed automatically. */
|
|
458
|
+
"permanent"?: boolean;
|
|
459
|
+
/**
|
|
460
|
+
* Dispatches close request event.
|
|
461
|
+
* The notification will not be closed automatically if the event is prevented.
|
|
462
|
+
*/
|
|
463
|
+
"on:bl-notification-card-request-close"?: (event: CustomEvent<{ source: "close-button" | "duration-ended"; }>) => void;
|
|
464
|
+
/**
|
|
465
|
+
* Dispatches close request event.
|
|
466
|
+
* The notification will not be closed automatically if the event is prevented.
|
|
467
|
+
*/
|
|
468
|
+
"onbl-notification-card-request-close"?: (event: CustomEvent<{ source: "close-button" | "duration-ended"; }>) => void;
|
|
469
|
+
/**
|
|
470
|
+
* Dispatches close event.
|
|
471
|
+
* The notification will hidden after the event is dispatched and the closed property is set to true.
|
|
472
|
+
*/
|
|
473
|
+
"on:bl-notification-card-close"?: (event: CustomEvent<{ source: "close-button" | "duration-ended"; }>) => void;
|
|
474
|
+
/**
|
|
475
|
+
* Dispatches close event.
|
|
476
|
+
* The notification will hidden after the event is dispatched and the closed property is set to true.
|
|
477
|
+
*/
|
|
478
|
+
"onbl-notification-card-close"?: (event: CustomEvent<{ source: "close-button" | "duration-ended"; }>) => void;
|
|
479
|
+
};
|
|
480
|
+
"bl-notification": {
|
|
481
|
+
/**
|
|
482
|
+
* Disable animations.
|
|
483
|
+
* It will not be possible to use animations if the user has disabled them.
|
|
484
|
+
* Animations will respect the user's preferences regardless of this property.
|
|
485
|
+
*/
|
|
486
|
+
"no-animation"?: boolean;
|
|
487
|
+
/** Sets the default duration of notifications in seconds */
|
|
488
|
+
"duration"?: number;
|
|
489
|
+
};
|
|
490
|
+
"bl-select-option": {
|
|
491
|
+
/** Sets the value for the option */
|
|
492
|
+
"value": string;
|
|
493
|
+
/** Sets the label for bl-select, and bl-select renders this value instead of the option's textContent */
|
|
494
|
+
"label"?: string;
|
|
495
|
+
/** Sets option as disabled */
|
|
496
|
+
"disabled"?: boolean;
|
|
308
497
|
/** Sets option as selected state */
|
|
309
498
|
"selected"?: boolean;
|
|
310
499
|
/** Fires when clicked on the option */
|
|
@@ -430,6 +619,46 @@ declare namespace svelteHTML {
|
|
|
430
619
|
/** Fires when radio group value changed */
|
|
431
620
|
"onbl-radio-change"?: (event: CustomEvent<string>) => void;
|
|
432
621
|
};
|
|
622
|
+
"bl-stepper-item": {
|
|
623
|
+
/** Defines stepper item's id */
|
|
624
|
+
"id"?: string;
|
|
625
|
+
/** Defines stepper item's status */
|
|
626
|
+
"variant"?: "default" | "success" | "error" | "active";
|
|
627
|
+
/** Defines stepper item's interaction */
|
|
628
|
+
"disabled"?: boolean;
|
|
629
|
+
/** If stepper type is icon, it should be rendered on stepper items */
|
|
630
|
+
"icon"?: import("@trendyol/baklava/dist/components/icon/icon-list").BaklavaIcon;
|
|
631
|
+
/** Defines stepper item's main title */
|
|
632
|
+
"title"?: string;
|
|
633
|
+
/** Defines stepper item's description */
|
|
634
|
+
"description"?: string;
|
|
635
|
+
/** Fires when stepper item is clicked */
|
|
636
|
+
"on:bl-stepper-item-click"?: (event: CustomEvent<string>) => void;
|
|
637
|
+
/** Fires when stepper item is clicked */
|
|
638
|
+
"onbl-stepper-item-click"?: (event: CustomEvent<string>) => void;
|
|
639
|
+
};
|
|
640
|
+
"bl-stepper": {
|
|
641
|
+
/** Defines stepper render style */
|
|
642
|
+
"type"?: "number" | "dot" | "icon";
|
|
643
|
+
/** Defines stepper direction is horizontal or vertical */
|
|
644
|
+
"direction"?: "horizontal" | "vertical";
|
|
645
|
+
/** Defines stepper usage is clickable or non-clickable */
|
|
646
|
+
"usage"?: "clickable" | "non-clickable";
|
|
647
|
+
/** Fires when stepper state changes */
|
|
648
|
+
"on:bl-stepper-change"?: (event: CustomEvent<{ activeStep: number; totalSteps: number; }>) => void;
|
|
649
|
+
/** Fires when stepper state changes */
|
|
650
|
+
"onbl-stepper-change"?: (event: CustomEvent<{ activeStep: number; totalSteps: number; }>) => void;
|
|
651
|
+
};
|
|
652
|
+
"bl-switch": {
|
|
653
|
+
/** Sets the checked state for switch */
|
|
654
|
+
"checked"?: boolean;
|
|
655
|
+
/** Sets the disabled state for switch */
|
|
656
|
+
"disabled"?: boolean;
|
|
657
|
+
/** Fires whenever user toggles the switch */
|
|
658
|
+
"on:bl-switch-toggle"?: (event: CustomEvent<boolean>) => void;
|
|
659
|
+
/** Fires whenever user toggles the switch */
|
|
660
|
+
"onbl-switch-toggle"?: (event: CustomEvent<boolean>) => void;
|
|
661
|
+
};
|
|
433
662
|
"bl-tab-panel": {
|
|
434
663
|
/** Name of the linked tab. */
|
|
435
664
|
"tab": string;
|
|
@@ -456,231 +685,6 @@ declare namespace svelteHTML {
|
|
|
456
685
|
/** Fires when tab is selected. */
|
|
457
686
|
"onbl-tab-selected"?: (event: CustomEvent<string>) => void;
|
|
458
687
|
};
|
|
459
|
-
"bl-textarea": {
|
|
460
|
-
"error": string;
|
|
461
|
-
/** Name of textarea */
|
|
462
|
-
"name"?: string;
|
|
463
|
-
/** Makes textarea a mandatory field */
|
|
464
|
-
"required"?: boolean;
|
|
465
|
-
/** Disables the textarea */
|
|
466
|
-
"disabled"?: boolean;
|
|
467
|
-
/** Sets expandity */
|
|
468
|
-
"expand"?: boolean;
|
|
469
|
-
/** Sets max row when expand is true */
|
|
470
|
-
"max-rows"?: number | undefined;
|
|
471
|
-
/** Sets textarea size. */
|
|
472
|
-
"size"?: "small" | "medium" | "large";
|
|
473
|
-
/** Sets label of the textarea */
|
|
474
|
-
"label"?: string;
|
|
475
|
-
/** Makes label as fixed positioned */
|
|
476
|
-
"label-fixed"?: boolean;
|
|
477
|
-
/** Sets placeholder of the textarea */
|
|
478
|
-
"placeholder"?: string;
|
|
479
|
-
/** Enables showing character counter. */
|
|
480
|
-
"character-counter"?: boolean;
|
|
481
|
-
/** Adds help text */
|
|
482
|
-
"help-text"?: string | undefined;
|
|
483
|
-
/** Set custom error message */
|
|
484
|
-
"invalid-text"?: string | undefined;
|
|
485
|
-
/** Sets minimum length of the textarea */
|
|
486
|
-
"minlength"?: number;
|
|
487
|
-
/** Sets max length of textarea */
|
|
488
|
-
"maxlength"?: number;
|
|
489
|
-
/** Sets initial value of the textarea */
|
|
490
|
-
"value"?: string;
|
|
491
|
-
/** Sets textarea visible row count. */
|
|
492
|
-
"rows"?: number;
|
|
493
|
-
/** Sets the input mode of the field for asking browser to show the desired keyboard. */
|
|
494
|
-
"inputmode": "none" | "text" | "decimal" | "numeric" | "tel" | "search" | "email" | "url";
|
|
495
|
-
/** Sets input to get keyboard focus automatically */
|
|
496
|
-
"autofocus"?: boolean;
|
|
497
|
-
/** Hints browser to autocomplete this field. */
|
|
498
|
-
"autocomplete": string;
|
|
499
|
-
/** Enables/disables spellcheck feature inside the textarea */
|
|
500
|
-
"spellcheck"?: "true" | "false";
|
|
501
|
-
|
|
502
|
-
"on:bl-input"?: (event: CustomEvent<string>) => void;
|
|
503
|
-
"onbl-input"?: (event: CustomEvent<string>) => void;
|
|
504
|
-
|
|
505
|
-
"on:bl-change"?: (event: CustomEvent<string>) => void;
|
|
506
|
-
"onbl-change"?: (event: CustomEvent<string>) => void;
|
|
507
|
-
|
|
508
|
-
"on:bl-invalid"?: (event: CustomEvent<ValidityState>) => void;
|
|
509
|
-
"onbl-invalid"?: (event: CustomEvent<ValidityState>) => void;
|
|
510
|
-
};
|
|
511
|
-
"bl-popover": {
|
|
512
|
-
/** Sets placement of the popover */
|
|
513
|
-
"placement"?: "top-start" | "top" | "top-end" | "bottom-start" | "bottom" | "bottom-end" | "left-start" | "left" | "left-end" | "right-start" | "right" | "right-end";
|
|
514
|
-
/** Sets size of popover same as trigger element */
|
|
515
|
-
"fit-size"?: boolean;
|
|
516
|
-
/** Sets the distance between popover and target/trigger element */
|
|
517
|
-
"offset"?: number;
|
|
518
|
-
/**
|
|
519
|
-
* Sets the target element of the popover to align and trigger.
|
|
520
|
-
* It can be a string id of the target element or can be a direct Element reference of it.
|
|
521
|
-
*/
|
|
522
|
-
"target": string | Element;
|
|
523
|
-
/** Fires when the popover is shown */
|
|
524
|
-
"on:bl-popover-show"?: (event: CustomEvent<string>) => void;
|
|
525
|
-
/** Fires when the popover is shown */
|
|
526
|
-
"onbl-popover-show"?: (event: CustomEvent<string>) => void;
|
|
527
|
-
/** Fires when popover becomes hidden */
|
|
528
|
-
"on:bl-popover-hide"?: (event: CustomEvent<string>) => void;
|
|
529
|
-
/** Fires when popover becomes hidden */
|
|
530
|
-
"onbl-popover-hide"?: (event: CustomEvent<string>) => void;
|
|
531
|
-
};
|
|
532
|
-
"bl-tooltip": {
|
|
533
|
-
/** Sets placement of the tooltip */
|
|
534
|
-
"placement"?: import("@trendyol/baklava/dist/components/popover/bl-popover").Placement;
|
|
535
|
-
"target": string | Element;
|
|
536
|
-
/** Fires when hovering over a trigger */
|
|
537
|
-
"on:bl-tooltip-show"?: (event: CustomEvent<string>) => void;
|
|
538
|
-
/** Fires when hovering over a trigger */
|
|
539
|
-
"onbl-tooltip-show"?: (event: CustomEvent<string>) => void;
|
|
540
|
-
/** Fires when leaving over from trigger */
|
|
541
|
-
"on:bl-tooltip-hide"?: (event: CustomEvent<string>) => void;
|
|
542
|
-
/** Fires when leaving over from trigger */
|
|
543
|
-
"onbl-tooltip-hide"?: (event: CustomEvent<string>) => void;
|
|
544
|
-
};
|
|
545
|
-
"bl-split-button": {
|
|
546
|
-
/** Sets the split button label */
|
|
547
|
-
"label": string;
|
|
548
|
-
/** Sets the split button variant */
|
|
549
|
-
"variant"?: "primary" | "secondary";
|
|
550
|
-
/** Sets the split button kind */
|
|
551
|
-
"kind"?: import("@trendyol/baklava/dist/components/button/bl-button").ButtonKind;
|
|
552
|
-
/** Sets the split button size */
|
|
553
|
-
"size"?: import("@trendyol/baklava/dist/components/button/bl-button").ButtonSize;
|
|
554
|
-
/** Set link url. If set, split main button will be rendered as anchor tag. */
|
|
555
|
-
"href": string;
|
|
556
|
-
/** Sets main button as disabled */
|
|
557
|
-
"disabled"?: boolean;
|
|
558
|
-
/** Sets loading state of button */
|
|
559
|
-
"loading"?: boolean;
|
|
560
|
-
/** Sets the button label for loading status. */
|
|
561
|
-
"loading-label": string;
|
|
562
|
-
/** Sets dropdown button as disabled */
|
|
563
|
-
"dropdown-disabled"?: boolean;
|
|
564
|
-
/** Sets the icon name. Shows icon with bl-icon component */
|
|
565
|
-
"icon"?: import("@trendyol/baklava/dist/components/icon/icon-list").BaklavaIcon;
|
|
566
|
-
/** Sets the anchor target. Used when `href` is set. */
|
|
567
|
-
"target"?: import("@trendyol/baklava/dist/components/button/bl-button").TargetType;
|
|
568
|
-
/** Sets the type of the button. Set `submit` to use button as the submitter of parent form. */
|
|
569
|
-
"type": "submit";
|
|
570
|
-
/** Sets button to get keyboard focus automatically */
|
|
571
|
-
"autofocus"?: boolean;
|
|
572
|
-
/** Sets the associated form of the button. Use when `type` is set to `submit` and button is not inside the target form. */
|
|
573
|
-
"form": HTMLFormElement | string;
|
|
574
|
-
/** Fires when dropdown opened */
|
|
575
|
-
"on:bl-dropdown-open"?: (event: CustomEvent<string>) => void;
|
|
576
|
-
/** Fires when dropdown opened */
|
|
577
|
-
"onbl-dropdown-open"?: (event: CustomEvent<string>) => void;
|
|
578
|
-
/** Fires when dropdown closed */
|
|
579
|
-
"on:bl-dropdown-close"?: (event: CustomEvent<string>) => void;
|
|
580
|
-
/** Fires when dropdown closed */
|
|
581
|
-
"onbl-dropdown-close"?: (event: CustomEvent<string>) => void;
|
|
582
|
-
/** Fires when main button click */
|
|
583
|
-
"on:bl-click"?: (event: CustomEvent<string>) => void;
|
|
584
|
-
/** Fires when main button click */
|
|
585
|
-
"onbl-click"?: (event: CustomEvent<string>) => void;
|
|
586
|
-
};
|
|
587
|
-
"bl-dropdown-group": {
|
|
588
|
-
/** Sets the caption. */
|
|
589
|
-
"caption"?: string;
|
|
590
|
-
};
|
|
591
|
-
"bl-dropdown-item": {
|
|
592
|
-
/** Sets the icon name. Shows icon with bl-icon component */
|
|
593
|
-
"icon"?: import("@trendyol/baklava/dist/components/icon/icon-list").BaklavaIcon;
|
|
594
|
-
/** Sets item as disabled */
|
|
595
|
-
"disabled"?: boolean;
|
|
596
|
-
|
|
597
|
-
"on:bl-dropdown-item-click"?: (event: CustomEvent<string>) => void;
|
|
598
|
-
"onbl-dropdown-item-click"?: (event: CustomEvent<string>) => void;
|
|
599
|
-
};
|
|
600
|
-
"bl-dropdown": {
|
|
601
|
-
/** Sets the dropdown button label */
|
|
602
|
-
"label": string;
|
|
603
|
-
/** Sets the dropdown button variant */
|
|
604
|
-
"variant"?: import("@trendyol/baklava/dist/components/button/bl-button").ButtonVariant;
|
|
605
|
-
/** Sets the dropdown button kind */
|
|
606
|
-
"kind"?: import("@trendyol/baklava/dist/components/button/bl-button").ButtonKind;
|
|
607
|
-
/** Sets the dropdown button size */
|
|
608
|
-
"size"?: import("@trendyol/baklava/dist/components/button/bl-button").ButtonSize;
|
|
609
|
-
/** Sets button as disabled */
|
|
610
|
-
"disabled"?: boolean;
|
|
611
|
-
/** Sets the icon name to be displayed on the left side of the button label */
|
|
612
|
-
"icon"?: string;
|
|
613
|
-
/** Fires when dropdown opened */
|
|
614
|
-
"on:bl-dropdown-open"?: (event: CustomEvent<string>) => void;
|
|
615
|
-
/** Fires when dropdown opened */
|
|
616
|
-
"onbl-dropdown-open"?: (event: CustomEvent<string>) => void;
|
|
617
|
-
/** Fires when dropdown closed */
|
|
618
|
-
"on:bl-dropdown-close"?: (event: CustomEvent<string>) => void;
|
|
619
|
-
/** Fires when dropdown closed */
|
|
620
|
-
"onbl-dropdown-close"?: (event: CustomEvent<string>) => void;
|
|
621
|
-
};
|
|
622
|
-
"bl-switch": {
|
|
623
|
-
/** Sets the checked state for switch */
|
|
624
|
-
"checked"?: boolean;
|
|
625
|
-
/** Sets the disabled state for switch */
|
|
626
|
-
"disabled"?: boolean;
|
|
627
|
-
/** Fires whenever user toggles the switch */
|
|
628
|
-
"on:bl-switch-toggle"?: (event: CustomEvent<boolean>) => void;
|
|
629
|
-
/** Fires whenever user toggles the switch */
|
|
630
|
-
"onbl-switch-toggle"?: (event: CustomEvent<boolean>) => void;
|
|
631
|
-
};
|
|
632
|
-
"bl-notification-card": {
|
|
633
|
-
/** Sets notification caption. */
|
|
634
|
-
"caption"?: string;
|
|
635
|
-
/**
|
|
636
|
-
* Allows to customize notification icon.
|
|
637
|
-
* True value will display default icon.
|
|
638
|
-
* False value will hide icon.
|
|
639
|
-
* String value will display icon with specified name.
|
|
640
|
-
*/
|
|
641
|
-
"icon"?: boolean | import("@trendyol/baklava/dist/components/icon/icon-list").BaklavaIcon;
|
|
642
|
-
/** Sets notification variant. */
|
|
643
|
-
"variant"?: "success" | "info" | "warning" | "error";
|
|
644
|
-
/** Indicates whether the notification is closed. */
|
|
645
|
-
"closed"?: boolean;
|
|
646
|
-
/**
|
|
647
|
-
* Sets notification display duration in minutes.
|
|
648
|
-
* Has no effect if permanent is set to true.
|
|
649
|
-
*/
|
|
650
|
-
"duration"?: boolean;
|
|
651
|
-
/** Prevents notification from being closed automatically. */
|
|
652
|
-
"permanent"?: boolean;
|
|
653
|
-
/**
|
|
654
|
-
* Dispatches close request event.
|
|
655
|
-
* The notification will not be closed automatically if the event is prevented.
|
|
656
|
-
*/
|
|
657
|
-
"on:bl-notification-card-request-close"?: (event: CustomEvent<{ source: "close-button" | "duration-ended"; }>) => void;
|
|
658
|
-
/**
|
|
659
|
-
* Dispatches close request event.
|
|
660
|
-
* The notification will not be closed automatically if the event is prevented.
|
|
661
|
-
*/
|
|
662
|
-
"onbl-notification-card-request-close"?: (event: CustomEvent<{ source: "close-button" | "duration-ended"; }>) => void;
|
|
663
|
-
/**
|
|
664
|
-
* Dispatches close event.
|
|
665
|
-
* The notification will hidden after the event is dispatched and the closed property is set to true.
|
|
666
|
-
*/
|
|
667
|
-
"on:bl-notification-card-close"?: (event: CustomEvent<{ source: "close-button" | "duration-ended"; }>) => void;
|
|
668
|
-
/**
|
|
669
|
-
* Dispatches close event.
|
|
670
|
-
* The notification will hidden after the event is dispatched and the closed property is set to true.
|
|
671
|
-
*/
|
|
672
|
-
"onbl-notification-card-close"?: (event: CustomEvent<{ source: "close-button" | "duration-ended"; }>) => void;
|
|
673
|
-
};
|
|
674
|
-
"bl-notification": {
|
|
675
|
-
/**
|
|
676
|
-
* Disable animations.
|
|
677
|
-
* It will not be possible to use animations if the user has disabled them.
|
|
678
|
-
* Animations will respect the user's preferences regardless of this property.
|
|
679
|
-
*/
|
|
680
|
-
"no-animation"?: boolean;
|
|
681
|
-
/** Sets the default duration of notifications in seconds */
|
|
682
|
-
"duration"?: number;
|
|
683
|
-
};
|
|
684
688
|
"bl-table-header-cell": {
|
|
685
689
|
/** Set key value for column */
|
|
686
690
|
"sort-key"?: string;
|
|
@@ -723,12 +727,6 @@ declare namespace svelteHTML {
|
|
|
723
727
|
/** Fires when selected table rows changed */
|
|
724
728
|
"onbl-row-select"?: (event: CustomEvent<string[]>) => void;
|
|
725
729
|
};
|
|
726
|
-
"bl-calendar": {
|
|
727
|
-
/** Fires when date selection changes */
|
|
728
|
-
"on:bl-calendar-change"?: (event: CustomEvent<Date[]>) => void;
|
|
729
|
-
/** Fires when date selection changes */
|
|
730
|
-
"onbl-calendar-change"?: (event: CustomEvent<Date[]>) => void;
|
|
731
|
-
};
|
|
732
730
|
"bl-tag": {
|
|
733
731
|
/** Sets the tag size */
|
|
734
732
|
"size"?: "small" | "medium" | "large";
|
|
@@ -747,25 +745,57 @@ declare namespace svelteHTML {
|
|
|
747
745
|
/** Dispatches when the tag is clicked */
|
|
748
746
|
"onbl-tag-click"?: (event: CustomEvent<{ value: string; selected: boolean; }>) => void;
|
|
749
747
|
};
|
|
750
|
-
"bl-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
748
|
+
"bl-textarea": {
|
|
749
|
+
"error": string;
|
|
750
|
+
/** Name of textarea */
|
|
751
|
+
"name"?: string;
|
|
752
|
+
/** Makes textarea a mandatory field */
|
|
753
|
+
"required"?: boolean;
|
|
754
|
+
/** Disables the textarea */
|
|
755
|
+
"disabled"?: boolean;
|
|
756
|
+
/** Sets expandity */
|
|
757
|
+
"expand"?: boolean;
|
|
758
|
+
/** Sets max row when expand is true */
|
|
759
|
+
"max-rows"?: number | undefined;
|
|
760
|
+
/** Sets textarea size. */
|
|
761
|
+
"size"?: "small" | "medium" | "large";
|
|
762
|
+
/** Sets label of the textarea */
|
|
763
|
+
"label"?: string;
|
|
764
|
+
/** Makes label as fixed positioned */
|
|
756
765
|
"label-fixed"?: boolean;
|
|
757
|
-
/**
|
|
758
|
-
"
|
|
759
|
-
/**
|
|
760
|
-
"
|
|
761
|
-
/**
|
|
762
|
-
"
|
|
763
|
-
/**
|
|
764
|
-
"
|
|
765
|
-
/**
|
|
766
|
-
"
|
|
767
|
-
/**
|
|
768
|
-
"
|
|
766
|
+
/** Sets placeholder of the textarea */
|
|
767
|
+
"placeholder"?: string;
|
|
768
|
+
/** Enables showing character counter. */
|
|
769
|
+
"character-counter"?: boolean;
|
|
770
|
+
/** Adds help text */
|
|
771
|
+
"help-text"?: string | undefined;
|
|
772
|
+
/** Set custom error message */
|
|
773
|
+
"invalid-text"?: string | undefined;
|
|
774
|
+
/** Sets minimum length of the textarea */
|
|
775
|
+
"minlength"?: number;
|
|
776
|
+
/** Sets max length of textarea */
|
|
777
|
+
"maxlength"?: number;
|
|
778
|
+
/** Sets initial value of the textarea */
|
|
779
|
+
"value"?: string;
|
|
780
|
+
/** Sets textarea visible row count. */
|
|
781
|
+
"rows"?: number;
|
|
782
|
+
/** Sets the input mode of the field for asking browser to show the desired keyboard. */
|
|
783
|
+
"inputmode": "none" | "text" | "decimal" | "numeric" | "tel" | "search" | "email" | "url";
|
|
784
|
+
/** Sets input to get keyboard focus automatically */
|
|
785
|
+
"autofocus"?: boolean;
|
|
786
|
+
/** Hints browser to autocomplete this field. */
|
|
787
|
+
"autocomplete": string;
|
|
788
|
+
/** Enables/disables spellcheck feature inside the textarea */
|
|
789
|
+
"spellcheck"?: "true" | "false";
|
|
790
|
+
|
|
791
|
+
"on:bl-input"?: (event: CustomEvent<string>) => void;
|
|
792
|
+
"onbl-input"?: (event: CustomEvent<string>) => void;
|
|
793
|
+
|
|
794
|
+
"on:bl-change"?: (event: CustomEvent<string>) => void;
|
|
795
|
+
"onbl-change"?: (event: CustomEvent<string>) => void;
|
|
796
|
+
|
|
797
|
+
"on:bl-invalid"?: (event: CustomEvent<ValidityState>) => void;
|
|
798
|
+
"onbl-invalid"?: (event: CustomEvent<ValidityState>) => void;
|
|
769
799
|
};
|
|
770
800
|
"bl-accordion-group": {
|
|
771
801
|
/** Allow multiple accordions to be open at once */
|