@knowark/componarkjs 1.13.0 → 1.13.2

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.
@@ -292,6 +292,13 @@ ${[...mutableProperties, ...effects].map(
292
292
  }
293
293
  `.trim())).flat().join('\n')}
294
294
 
295
+ ${[...mutableProperties, ...effects].map(
296
+ effect => actions.map(action => css`
297
+ [style*='--${effect}-child${tie(action)}:']:has(> *${action.replace('-', ':')}) {
298
+ ${effect}: var(--${effect}-child${tie(action)});
299
+ }
300
+ `.trim())).flat().join('\n')}
301
+
295
302
  ${[...mutableProperties, ...effects].map(
296
303
  effect => actions.map(action => css`
297
304
  *${action.replace('-', ':')} + [style*='--${effect}-sibling${tie(action)}:'] {
@@ -158,7 +158,7 @@ export class Droparea extends Component {
158
158
 
159
159
  _buildFileInput (element) {
160
160
  const input = element ?? document.createElement('input')
161
- const attributes = [['id', 'fileElement'], ['class', `${tag}__input`],
161
+ const attributes = [['class', `${tag}__input`],
162
162
  ['type', 'file'], ['data-input', ''], ['multiple', '']]
163
163
  attributes.forEach(([key, value]) => input.setAttribute(key, value))
164
164
  return input
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowark/componarkjs",
3
- "version": "1.13.0",
3
+ "version": "1.13.2",
4
4
  "author": "Knowark",
5
5
  "description": "Knowark's Web Components Library",
6
6
  "license": "ISC",