@club-employes/utopia 4.358.0 → 4.359.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.
@@ -0,0 +1,8 @@
1
+ import { CustomCriterionValueType, CustomCriterionVProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<CustomCriterionVProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4
+ "update:type": (value: CustomCriterionValueType | undefined) => any;
5
+ }, string, PublicProps, Readonly<CustomCriterionVProps> & Readonly<{
6
+ "onUpdate:type"?: ((value: CustomCriterionValueType | undefined) => any) | undefined;
7
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
8
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import { CustomCriterionValueType } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ interface CustomCriterionValuePreviewProps {
4
+ type?: CustomCriterionValueType;
5
+ }
6
+ declare const _default: DefineComponent<CustomCriterionValuePreviewProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CustomCriterionValuePreviewProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
7
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export { default as CustomCriterionV } from './CustomCriterionV';
2
+ export { default as CustomCriterionValuePreview } from './CustomCriterionValuePreview';
3
+ export type { CustomCriterionVProps, CustomCriterionValueType } from './types';
@@ -0,0 +1,4 @@
1
+ export type CustomCriterionValueType = 'text' | 'numberRange' | 'dateRange' | 'boolean';
2
+ export interface CustomCriterionVProps {
3
+ type?: CustomCriterionValueType;
4
+ }
@@ -36,3 +36,5 @@ export { DeliveryMethodSelector } from './DeliveryMethodSelector';
36
36
  export type { DeliveryMethodSelectorProps, DeliveryMethodProductRecap, DeliveryMethod } from './DeliveryMethodSelector';
37
37
  export { CustomCriteriaSection } from './CustomCriteriaSection';
38
38
  export type { CustomCriteriaSectionProps } from './CustomCriteriaSection';
39
+ export { CustomCriterionV, CustomCriterionValuePreview } from './CustomCriterionV';
40
+ export type { CustomCriterionVProps, CustomCriterionValueType } from './CustomCriterionV';
package/dist/index.d.ts CHANGED
@@ -100,6 +100,8 @@ export type { OrderRecapProps, OrderRecapMessage } from './components/organisms/
100
100
  export type { SummaryMetricCardProps } from './components/organisms/SummaryMetricCard/types';
101
101
  export type { DeliveryMethodSelectorProps, DeliveryMethodProductRecap, DeliveryMethod } from './components/organisms/DeliveryMethodSelector/types';
102
102
  export type { CustomCriteriaSectionProps, CustomCriterion } from './components/organisms/CustomCriteriaSection/types';
103
+ export type { CustomCriterionVProps, CustomCriterionValueType } from './components/organisms/CustomCriterionV/types';
104
+ export { CustomCriterionV, CustomCriterionValuePreview } from './components/organisms/CustomCriterionV';
103
105
  export { CustomCriteriaSection } from './components/organisms/CustomCriteriaSection';
104
106
  export type { AddressFormProps, AddressFormSchema, AddressFormSection } from './components/organisms/AddressForm/types';
105
107
  export type { CartPreviewProps, CartPreviewPrice, CartPreviewPriceLine } from './components/organisms/CartPreview/types';