Skip to content

Commit 2408ea6

Browse files
authored
Merge branch 'main' into match-component
2 parents be5e956 + 81a8348 commit 2408ea6

File tree

363 files changed

+1200
-473
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

363 files changed

+1200
-473
lines changed

packages/active-element/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# @solid-primitives/active-element
22

3+
## 2.1.3
4+
5+
### Patch Changes
6+
7+
- 48d890d: Add missing type keyword to type imports.
8+
- Updated dependencies [48d890d]
9+
- @solid-primitives/event-listener@2.4.3
10+
11+
## 2.1.2
12+
13+
### Patch Changes
14+
15+
- 396812d: Enable verbatimModuleSyntax -> add `type` keyword to all type imports.
16+
- Updated dependencies [396812d]
17+
- @solid-primitives/event-listener@2.4.2
18+
- @solid-primitives/utils@6.3.2
19+
320
## 2.1.1
421

522
### Patch Changes

packages/active-element/dev/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { createActiveElement, focus } from "../src/index.js";
2-
import { Component, createSignal, Index, onMount, ParentComponent } from "solid-js";
2+
import { type Component, createSignal, Index, onMount, type ParentComponent } from "solid-js";
33

44
import { genNodeList } from "./utils.js";
55
// prevent tree-shaking

packages/active-element/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solid-primitives/active-element",
3-
"version": "2.1.1",
3+
"version": "2.1.3",
44
"description": "A reactive document.activeElement. Check which element is currently focused.",
55
"author": "Damian Tarnawski @thetarnav <[email protected]>",
66
"contributors": [

packages/active-element/src/index.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
import { Accessor, JSX } from "solid-js";
1+
import { type Accessor, type JSX } from "solid-js";
22
import { isServer } from "solid-js/web";
3-
import { MaybeAccessor, Directive, createHydratableSignal } from "@solid-primitives/utils";
3+
import {
4+
type MaybeAccessor,
5+
type Directive,
6+
createHydratableSignal,
7+
} from "@solid-primitives/utils";
48
import { makeEventListener, createEventListener } from "@solid-primitives/event-listener";
59

610
declare module "solid-js" {

packages/audio/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @solid-primitives/audio
22

3+
## 1.4.2
4+
5+
### Patch Changes
6+
7+
- 396812d: Enable verbatimModuleSyntax -> add `type` keyword to all type imports.
8+
- Updated dependencies [396812d]
9+
- @solid-primitives/static-store@0.1.2
10+
- @solid-primitives/utils@6.3.2
11+
312
## 1.4.1
413

514
### Patch Changes

packages/audio/dev/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Component, For, JSX, Show, createSignal, splitProps } from "solid-js";
1+
import { type Component, For, type JSX, Show, createSignal, splitProps } from "solid-js";
22
import { createAudio, AudioState } from "../src/index.js";
33

44
// import { Icon } from "solid-heroicons";

packages/audio/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solid-primitives/audio",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"description": "Primitives to manage audio and single sounds.",
55
"author": "David Di Biase <[email protected]>",
66
"license": "MIT",

packages/audio/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Accessor, onMount, onCleanup, createEffect } from "solid-js";
1+
import { type Accessor, onMount, onCleanup, createEffect } from "solid-js";
22
import { isServer } from "solid-js/web";
33
import { access, noop } from "@solid-primitives/utils";
44
import { createStaticStore } from "@solid-primitives/static-store";

packages/autofocus/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @solid-primitives/autofocus
22

3+
## 0.1.3
4+
5+
### Patch Changes
6+
7+
- 48d890d: Add missing type keyword to type imports.
8+
9+
## 0.1.2
10+
11+
### Patch Changes
12+
13+
- 396812d: Enable verbatimModuleSyntax -> add `type` keyword to all type imports.
14+
- Updated dependencies [396812d]
15+
- @solid-primitives/utils@6.3.2
16+
317
## 0.1.1
418

519
### Patch Changes

packages/autofocus/dev/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Component, createSignal, Switch, Match } from "solid-js";
1+
import { type Component, createSignal, Switch, Match } from "solid-js";
22
import { autofocus, createAutofocus } from "../src/index.js";
33

44
autofocus;

0 commit comments

Comments
 (0)