@club-employes/utopia 4.357.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.
- package/dist/components/organisms/CustomCriterionV/CustomCriterionV.d.ts +8 -0
- package/dist/components/organisms/CustomCriterionV/CustomCriterionValuePreview.d.ts +7 -0
- package/dist/components/organisms/CustomCriterionV/index.d.ts +3 -0
- package/dist/components/organisms/CustomCriterionV/types.d.ts +4 -0
- package/dist/components/organisms/index.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6721 -6568
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -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';
|