digital-zen-pack 0.1.1 → 0.1.2

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/main.d.ts CHANGED
@@ -1,2 +1 @@
1
- import './style.scss';
2
- export * from './helpers/logger.js';
1
+ export {};
package/dist/main.js CHANGED
@@ -1,2 +1 @@
1
- import './style.scss';
2
- export * from './helpers/logger.js';
1
+ export {};
package/dist/style.css CHANGED
@@ -485,3 +485,67 @@
485
485
  .dz-banner--lg .dz-banner__title {
486
486
  font-size: var(--font-size-lg);
487
487
  }
488
+
489
+ .shadow {
490
+ box-shadow: 0 4px 6px var(--shadow-color);
491
+ transition: transform 0.3s, box-shadow 0.3s;
492
+ }
493
+ .shadow:hover {
494
+ box-shadow: 0 6px 8px var(--shadow-color);
495
+ }
496
+ .shadow:hover:has(.shadow:hover) {
497
+ box-shadow: 0 4px 6px var(--shadow-color);
498
+ }
499
+ .shadow--activated {
500
+ box-shadow: 0 4px 6px var(--color-zen-accent);
501
+ }
502
+ .shadow--activated:hover {
503
+ box-shadow: 0 6px 8px var(--color-zen-accent);
504
+ }
505
+ .shadow--activated:hover:has(.shadow:hover) {
506
+ box-shadow: 0 4px 6px var(--color-zen-accent);
507
+ }
508
+ .shadow--hoverless:hover {
509
+ box-shadow: 0 4px 6px var(--shadow-color);
510
+ }
511
+
512
+ @keyframes pulse {
513
+ 0% {
514
+ transform: scale(1);
515
+ }
516
+ 70% {
517
+ transform: scale(1.3);
518
+ }
519
+ 100% {
520
+ transform: scale(1);
521
+ }
522
+ }
523
+ .pulse {
524
+ animation: pulse 3s infinite;
525
+ }
526
+
527
+ @keyframes rotate {
528
+ 0% {
529
+ transform: rotate(0deg);
530
+ }
531
+ 100% {
532
+ transform: rotate(360deg);
533
+ }
534
+ }
535
+ .rotate {
536
+ animation: rotate 2s linear infinite;
537
+ }
538
+
539
+ .round {
540
+ border-radius: 99999px;
541
+ }
542
+
543
+ .hidden {
544
+ display: none !important;
545
+ pointer-events: none !important;
546
+ height: 0 !important;
547
+ width: 0 !important;
548
+ margin: 0 !important;
549
+ padding: 0 !important;
550
+ overflow: hidden !important;
551
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digital-zen-pack",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "main": "./dist/main.js",
6
6
  "types": "./dist/main.d.ts",
@@ -15,7 +15,8 @@
15
15
  "scripts": {
16
16
  "build:js": "tsc",
17
17
  "build:css": "sass src/style.scss dist/style.css --no-source-map",
18
- "build": "pnpm run build:js && pnpm run build:css"
18
+ "build": "pnpm run build:js && pnpm run build:css",
19
+ "pack:local": "npm run build && npm pack"
19
20
  },
20
21
  "devDependencies": {
21
22
  "sass": "^1.97.2",