@bedrock-layout/solid 0.11.8 → 0.11.9

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.
package/lib/index.cjs.js CHANGED
@@ -61,7 +61,7 @@
61
61
  position: relative;
62
62
  overflow: hidden;
63
63
 
64
- ${e=>{const t=Y(e.ratio);return t?s.css`
64
+ ${e=>{const t=Y(e.ratio);return t?`
65
65
  aspect-ratio: ${t};
66
66
  `:""}};
67
67
 
package/lib/index.m.js CHANGED
@@ -17,7 +17,7 @@ var __spreadValues = (a, b) => {
17
17
  return a;
18
18
  };
19
19
  var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
20
- import { styled, css, useTheme } from "solid-styled-components";
20
+ import { styled, useTheme } from "solid-styled-components";
21
21
  import { init, registerCallback } from "@bedrock-layout/register-resize-callback";
22
22
  import { createSignal, onMount, createEffect, onCleanup, children, Switch, Match } from "solid-js";
23
23
  function checkIsCSSLength(str) {
@@ -193,7 +193,7 @@ const Frame = styled.div`
193
193
  ${(props) => {
194
194
  const maybeRatio = getSafeRatio(props.ratio);
195
195
  if (maybeRatio) {
196
- return css`
196
+ return `
197
197
  aspect-ratio: ${maybeRatio};
198
198
  `;
199
199
  }
package/lib/index.umd.js CHANGED
@@ -61,7 +61,7 @@ var be=Object.defineProperty,ve=Object.defineProperties;var pe=Object.getOwnProp
61
61
  position: relative;
62
62
  overflow: hidden;
63
63
 
64
- ${e=>{const t=N(e.ratio);return t?i.css`
64
+ ${e=>{const t=N(e.ratio);return t?`
65
65
  aspect-ratio: ${t};
66
66
  `:""}};
67
67
 
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "@bedrock-layout/solid",
3
- "version": "0.11.8",
4
- "description": "solid.js port of bedrock-layout primitives",
3
+ "version": "0.11.9",
4
+ "description": "Solid Foundational Layout Primitives for your Solid-js App",
5
+ "info": "Solid Bedrock Layout is a Solid.js port of the Bedrock Layout primitives written for react. Bedrock primitives are built to allow you to compose them together to create your own custom layouts. Many 'complex' layouts can be created by composing Bedrock Layout Primitives",
5
6
  "sideEffects": false,
6
7
  "private": false,
7
8
  "publishConfig": {
8
9
  "access": "public"
9
10
  },
10
11
  "keywords": [
12
+ "solidhack",
13
+ "best_ecosystem",
11
14
  "primitives",
12
15
  "layout",
13
16
  "bedrock",
@@ -17,6 +20,13 @@
17
20
  "solid"
18
21
  ],
19
22
  "author": "Jarvis1010 <travis.mair@gmail.com>",
23
+ "contributors": [
24
+ {
25
+ "name": "Travis Waith-Mair",
26
+ "email": "travis.mair@gmail.com",
27
+ "url": "https://github.com/Jarvis1010"
28
+ }
29
+ ],
20
30
  "homepage": "https://github.com/Bedrock-Layouts/Solid-Bedrock",
21
31
  "license": "MIT",
22
32
  "unpkg": "lib/index.umd.js",
@@ -62,5 +72,5 @@
62
72
  "bugs": {
63
73
  "url": "https://github.com/Bedrock-Layouts/Solid-Bedrock/issues"
64
74
  },
65
- "gitHead": "c0f909ede8640d9eb57e0a0039be375cb1e43cdc"
75
+ "gitHead": "3a349f286a38d74db7d1857d50803cddaf184851"
66
76
  }