@laststranger/lz-test1
Advanced tools
Comparing version 1.0.11 to 1.0.12
"use strict"; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.StyledBar = void 0; | ||
const styled_components_1 = __importDefault(require("styled-components")); | ||
const styled_components_1 = __importStar(require("styled-components")); | ||
const animate = (0, styled_components_1.keyframes) ` | ||
0%,100% { | ||
filter: hue-rotate(0deg); | ||
} | ||
50% { | ||
filter: hue-rotate(360deg); | ||
} | ||
`; | ||
exports.StyledBar = styled_components_1.default.div ` | ||
@@ -38,14 +62,5 @@ ::-webkit-scrollbar { | ||
); | ||
animation: animate 5s linear infinite; | ||
animation: ${animate} 5s linear infinite; | ||
} | ||
@keyframes animate { | ||
0%, | ||
100% { | ||
filter: hue-rotate(0deg); | ||
} | ||
50% { | ||
filter: hue-rotate(360deg); | ||
} | ||
} | ||
.scrollbar:before { | ||
@@ -52,0 +67,0 @@ content: ""; |
@@ -1,2 +0,10 @@ | ||
import styled from "styled-components"; | ||
import styled, { keyframes } from "styled-components"; | ||
const animate = keyframes ` | ||
0%,100% { | ||
filter: hue-rotate(0deg); | ||
} | ||
50% { | ||
filter: hue-rotate(360deg); | ||
} | ||
`; | ||
export const StyledBar = styled.div ` | ||
@@ -32,14 +40,5 @@ ::-webkit-scrollbar { | ||
); | ||
animation: animate 5s linear infinite; | ||
animation: ${animate} 5s linear infinite; | ||
} | ||
@keyframes animate { | ||
0%, | ||
100% { | ||
filter: hue-rotate(0deg); | ||
} | ||
50% { | ||
filter: hue-rotate(360deg); | ||
} | ||
} | ||
.scrollbar:before { | ||
@@ -46,0 +45,0 @@ content: ""; |
{ | ||
"name": "@laststranger/lz-test1", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"description": "test action one, here we go", | ||
@@ -5,0 +5,0 @@ "main": "dist/cjs/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21498
393