Skip to content

Commit

Permalink
feat(collapsibles) - wip transforms.ts
Browse files Browse the repository at this point in the history
#172 wip
  • Loading branch information
lukasniebler committed Nov 22, 2024
1 parent 265be76 commit d273b62
Show file tree
Hide file tree
Showing 18 changed files with 512 additions and 305 deletions.
2 changes: 1 addition & 1 deletion build/accordion/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-a11y', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '08ab4b35aa99a71e2aa3');
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-a11y', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '6d5d0dc82102893446ab');
2 changes: 1 addition & 1 deletion build/accordion/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/collapse/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-a11y', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => 'a1705097dd1978d18c62');
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-a11y', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => 'd5953ccb60e947d44a49');
2 changes: 1 addition & 1 deletion build/collapse/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/collapsibles/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-i18n', 'wp-primitives'), 'version' => 'a995ba8033cd5de8275f');
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-i18n', 'wp-primitives', 'wp-shortcode'), 'version' => '6265eb37ed05ae0218b6');
2 changes: 1 addition & 1 deletion build/collapsibles/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/iconbox/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-a11y', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-keycodes', 'wp-primitives'), 'version' => '982e5ca1e34355fc0248');
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-a11y', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-keycodes', 'wp-primitives'), 'version' => '5c3ebeead1a2e4a95098');
2 changes: 1 addition & 1 deletion build/iconbox/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/tab/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-a11y', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => 'ff64fec09da5e24fe02c');
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-a11y', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '0aeb401a5f9b79655d02');
2 changes: 1 addition & 1 deletion build/tab/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/tabs/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('lodash', 'react-jsx-runtime', 'wp-a11y', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '1d941c4d6842e35d61ee');
<?php return array('dependencies' => array('lodash', 'react-jsx-runtime', 'wp-a11y', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '84525967a6a190648b94');
2 changes: 1 addition & 1 deletion build/tabs/index.js

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ module.exports = [
version: 'detect',
},
},
env: {
browser: true,
},
rules: {
'react/jsx-key': 'error',
'tsdoc/syntax': 'warn',
Expand Down Expand Up @@ -56,7 +59,8 @@ module.exports = [
rules: {
// TypeScript-spezifische Regeln
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["error"]
"@typescript-eslint/no-unused-vars": ["error"],
'no-console': 'off'
// Weitere TypeScript-Regeln
},
},
Expand All @@ -75,6 +79,7 @@ module.exports = [
},
rules: {
'no-unused-vars': 'error',
'no-console': 'off',
},
},
];
10 changes: 5 additions & 5 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
},
"dependencies": {
"@wordpress/a11y": "^4.10.0",
"@wordpress/shortcode": "^4.12.0",
"color": "^4.2.3",
"gsap": "^3.12.5",
"lodash": "^4.17.21",
Expand Down
Loading

0 comments on commit d273b62

Please sign in to comment.