@symbo.ls/scratch 2.11.17 → 2.11.18

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/dist/cjs/index.js CHANGED
@@ -1817,7 +1817,6 @@ var replaceIdsAndUrls = (code, key) => {
1817
1817
  var convertSvgToSymbol = (key, code) => {
1818
1818
  const extractAttrs = parseRootAttributes(code);
1819
1819
  const { width, height } = extractAttrs;
1820
- console.log(extractAttrs);
1821
1820
  const viewBox = extractAttrs.viewBox || `0 0 ${width || 24} ${height || 24}`;
1822
1821
  const xmlns = "http://www.w3.org/2000/svg";
1823
1822
  const replacedCode = replaceIdsAndUrls(code, key);
package/dist/cjs/set.js CHANGED
@@ -1509,7 +1509,6 @@ var replaceIdsAndUrls = (code, key) => {
1509
1509
  var convertSvgToSymbol = (key, code) => {
1510
1510
  const extractAttrs = parseRootAttributes(code);
1511
1511
  const { width, height } = extractAttrs;
1512
- console.log(extractAttrs);
1513
1512
  const viewBox = extractAttrs.viewBox || `0 0 ${width || 24} ${height || 24}`;
1514
1513
  const xmlns = "http://www.w3.org/2000/svg";
1515
1514
  const replacedCode = replaceIdsAndUrls(code, key);
@@ -1604,7 +1604,6 @@ var replaceIdsAndUrls = (code, key) => {
1604
1604
  var convertSvgToSymbol = (key, code) => {
1605
1605
  const extractAttrs = parseRootAttributes(code);
1606
1606
  const { width, height } = extractAttrs;
1607
- console.log(extractAttrs);
1608
1607
  const viewBox = extractAttrs.viewBox || `0 0 ${width || 24} ${height || 24}`;
1609
1608
  const xmlns = "http://www.w3.org/2000/svg";
1610
1609
  const replacedCode = replaceIdsAndUrls(code, key);
@@ -1265,7 +1265,6 @@ var replaceIdsAndUrls = (code, key) => {
1265
1265
  var convertSvgToSymbol = (key, code) => {
1266
1266
  const extractAttrs = parseRootAttributes(code);
1267
1267
  const { width, height } = extractAttrs;
1268
- console.log(extractAttrs);
1269
1268
  const viewBox = extractAttrs.viewBox || `0 0 ${width || 24} ${height || 24}`;
1270
1269
  const xmlns = "http://www.w3.org/2000/svg";
1271
1270
  const replacedCode = replaceIdsAndUrls(code, key);
@@ -1682,7 +1682,6 @@ var replaceIdsAndUrls = (code, key) => {
1682
1682
  var convertSvgToSymbol = (key, code) => {
1683
1683
  const extractAttrs = parseRootAttributes(code);
1684
1684
  const { width, height } = extractAttrs;
1685
- console.log(extractAttrs);
1686
1685
  const viewBox = extractAttrs.viewBox || `0 0 ${width || 24} ${height || 24}`;
1687
1686
  const xmlns = "http://www.w3.org/2000/svg";
1688
1687
  const replacedCode = replaceIdsAndUrls(code, key);
@@ -1247,7 +1247,6 @@ var replaceIdsAndUrls = (code, key) => {
1247
1247
  var convertSvgToSymbol = (key, code) => {
1248
1248
  const extractAttrs = parseRootAttributes(code);
1249
1249
  const { width, height } = extractAttrs;
1250
- console.log(extractAttrs);
1251
1250
  const viewBox = extractAttrs.viewBox || `0 0 ${width || 24} ${height || 24}`;
1252
1251
  const xmlns = "http://www.w3.org/2000/svg";
1253
1252
  const replacedCode = replaceIdsAndUrls(code, key);
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@symbo.ls/scratch",
3
3
  "description": "Φ / CSS framework and methodology.",
4
4
  "author": "symbo.ls",
5
- "version": "2.11.17",
5
+ "version": "2.11.18",
6
6
  "files": [
7
7
  "src",
8
8
  "dist"
@@ -32,5 +32,5 @@
32
32
  "peerDependencies": {
33
33
  "@emotion/css": "^11.5.0"
34
34
  },
35
- "gitHead": "df0a3ecf734ae06ee8877d1f58fb7de26cbccd66"
35
+ "gitHead": "09944e5ba459ced66abf1b396c5cdc95e5c3feb9"
36
36
  }
@@ -54,8 +54,6 @@ export const convertSvgToSymbol = (key, code) => {
54
54
  const extractAttrs = parseRootAttributes(code)
55
55
  const { width, height } = extractAttrs
56
56
 
57
- console.log(extractAttrs)
58
-
59
57
  const viewBox = extractAttrs.viewBox || `0 0 ${width || 24} ${height || 24}`
60
58
  const xmlns = 'http://www.w3.org/2000/svg'
61
59