@economic/taco 2.60.0 → 2.60.1-date-fns.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/taco.cjs +6378 -6627
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.d.ts +2 -3
- package/dist/taco.js +6373 -6622
- package/dist/taco.js.map +1 -1
- package/package.json +3 -3
package/dist/taco.d.ts
CHANGED
@@ -2157,15 +2157,14 @@ export declare type ListProps = default_2.HTMLAttributes<HTMLDivElement> & {
|
|
2157
2157
|
|
2158
2158
|
export declare type ListSwitchProps = ComposableListItemProps<'div'> & Omit<ControlledSwitchProps, 'title'>;
|
2159
2159
|
|
2160
|
-
declare type
|
2161
|
-
export { Locale_2 as Locale }
|
2160
|
+
export declare type Locale = 'en-GB' | 'da-DK' | 'sv-SE' | 'no-NO';
|
2162
2161
|
|
2163
2162
|
export declare type Localization = {
|
2164
2163
|
/**
|
2165
2164
|
* Provide the language code used in application.
|
2166
2165
|
* Default value is `en-GB`
|
2167
2166
|
*/
|
2168
|
-
locale:
|
2167
|
+
locale: Locale;
|
2169
2168
|
/** Provide the texts and aria-labels for components used within the provider */
|
2170
2169
|
texts: LocalizationTexts;
|
2171
2170
|
/** Provide the formatting */
|