Skip to content

Commit

Permalink
update packages to 0.40.0 (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
anthoula authored Feb 4, 2025
1 parent 0338293 commit 8b8ece5
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 16 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"devDependencies": {
"@adobe/aem-cli": "^16.5.8",
"@babel/eslint-parser": "7.25.9",
"@dropins/build-tools": "0.1.1",
"@dropins/build-tools": "0.2.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
Expand All @@ -41,6 +41,6 @@
"@dropins/storefront-checkout": "~1.0.0",
"@dropins/storefront-order": "~1.0.2",
"@dropins/storefront-pdp": "~1.0.0",
"@dropins/tools": "^0.39.0"
"@dropins/tools": "^0.40.0"
}
}
3 changes: 3 additions & 0 deletions scripts/__dropins__/tools/chunks/icons/GiftCard.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion scripts/__dropins__/tools/components.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { FunctionComponent } from 'preact';
import { FunctionComponent, VNode } from 'preact';
import { HTMLAttributes } from 'preact/compat';

export interface CheckboxProps extends Omit<HTMLAttributes<HTMLInputElement>, 'size'> {
name: string;
size?: 'medium' | 'large';
disabled?: boolean;
error?: boolean;
label?: string;
description?: string;
label?: string | VNode[];
description?: string | VNode[];
}
export declare const Checkbox: FunctionComponent<CheckboxProps>;
//# sourceMappingURL=Checkbox.d.ts.map
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { FunctionComponent } from 'preact';
import { FunctionComponent, VNode } from 'preact';
import { HTMLAttributes } from 'preact/compat';

export interface TagProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange' | 'icon'> {
label: string;
label?: string;
children?: VNode | VNode[];
}
export declare const Tag: FunctionComponent<TagProps>;
//# sourceMappingURL=Tag.d.ts.map
1 change: 1 addition & 0 deletions scripts/__dropins__/tools/types/elsie/src/icons/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ export { default as AddressBook } from './AddressBook.svg';
export { default as EmptyBox } from './EmptyBox.svg';
export { default as Coupon } from './Coupon.svg';
export { default as Gift } from './Gift.svg';
export { default as GiftCard } from './GiftCard.svg';
//# sourceMappingURL=index.d.ts.map

0 comments on commit 8b8ece5

Please sign in to comment.