Skip to content

Commit

Permalink
Release solid-overlays@0.1.0, solid-u@0.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
kcirtaptrick committed Aug 28, 2023
1 parent 48cd121 commit 4445021
Show file tree
Hide file tree
Showing 10 changed files with 185 additions and 18 deletions.
5 changes: 0 additions & 5 deletions .changeset/forty-seahorses-tap.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/witty-falcons-smile.md

This file was deleted.

12 changes: 12 additions & 0 deletions packages/solid-overlays/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# solid-overlays

## 0.1.0

### Minor Changes

- 48cd121: Full implementation

### Patch Changes

- Updated dependencies [069f3c6]
- solid-u@0.1.13
7 changes: 4 additions & 3 deletions packages/solid-overlays/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solid-overlays",
"version": "0.0.4",
"version": "0.1.0",
"description": "Overlays for SolidJS",
"license": "MIT",
"author": "Patrick Wang <patrick.bohan.wang@gmail.com>",
Expand All @@ -16,7 +16,6 @@
"files": [
"dist"
],
"private": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
Expand Down Expand Up @@ -54,7 +53,7 @@
},
"dependencies": {
"record-tuple": "^1.3.2",
"solid-u": "workspace:^0.1.7"
"solid-u": "workspace:^0.1.13"
},
"peerDependencies": {
"solid-js": "^1.6.0"
Expand All @@ -65,7 +64,9 @@
"class-c": "^0.0.10",
"concurrently": "^8.2.0",
"esbuild": "^0.18.15",
"esbuild-css-modules-plugin": "^3.0.1",
"esbuild-plugin-solid": "^0.5.0",
"esbuild-sass-plugin": "^2.13.0",
"eslint": "^8.45.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/solid-overlays/src/layouts/ModalLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { createEffect, createMemo, createSignal, JSX, onMount } from "solid-js";
import { reactiveProps } from "solid-u";

import styles from "./ModalLayout.module.scss";
import DarkenBackdrop from "../backdrops/DarkenBackdrop";
import { useOverlayLayout } from "../contexts/OverlayLayoutContext";

import styles from "./ModalLayout.module.scss";

declare namespace ModalLayout {
interface Props {
onClose?(): void;
Expand Down
3 changes: 1 addition & 2 deletions packages/solid-overlays/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
"allowSyntheticDefaultImports": true,
"noUncheckedIndexedAccess": true,
"types": ["vite/client"],
"baseUrl": ".",
"composite": true
"baseUrl": "."
},
"exclude": ["node_modules", "dist"],
"include": ["src/**/*"],
Expand Down
7 changes: 7 additions & 0 deletions packages/solid-overlays/tsup.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import path from "path";
import { defineConfig } from "tsup";
import * as preset from "tsup-preset-solid";
import cssModulesPlugin from "esbuild-css-modules-plugin";
import { sassPlugin } from "esbuild-sass-plugin";

const preset_options: preset.PresetOptions = {
// array or single object
Expand All @@ -12,6 +15,10 @@ const preset_options: preset.PresetOptions = {
dev_entry: true,
},
],
esbuild_plugins: [
sassPlugin(),
cssModulesPlugin({ pattern: "[name]_[local]_[hash]" }),
],
// Set to `true` to remove all `console.*` calls and `debugger` statements in prod builds
drop_console: true,
// Set to `true` to generate a CommonJS build alongside ESM
Expand Down
6 changes: 6 additions & 0 deletions packages/solid-u/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# solid-u

## 0.1.13

### Patch Changes

- 069f3c6: PropsProvider: propsFor default merger

## 0.1.12

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/solid-u/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solid-u",
"version": "0.1.12",
"version": "0.1.13",
"description": "SolidJS Utils",
"author": "Patrick Wang <patrick.bohan.wang@gmail.com>",
"homepage": "https://github.com/kcirtaptrick/solid-packages/tree/master/packages/solid-u#readme",
Expand Down
153 changes: 152 additions & 1 deletion pnpm-lock.yaml

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

0 comments on commit 4445021

Please sign in to comment.