@vezham/shared-varaints 0.2.0-beta-v0xcli
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/README.md +1 -0
 - package/index.d.ts +1 -0
 - package/index.js +1 -0
 - package/index.mjs +2746 -0
 - package/lib/sheet-section/src/index.d.ts +3 -0
 - package/package.json +22 -0
 - package/style.css +1 -0
 
    
        package/package.json
    ADDED
    
    | 
         @@ -0,0 +1,22 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "name": "@vezham/shared-varaints",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "version": "0.2.0-beta-v0xcli",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "description": "A package for managing shared-varaints",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "repository": {
         
     | 
| 
      
 6 
     | 
    
         
            +
                "type": "git",
         
     | 
| 
      
 7 
     | 
    
         
            +
                "url": "git+https://github.com/vezham/v0xFE-kit.git",
         
     | 
| 
      
 8 
     | 
    
         
            +
                "directory": "packages/common/shared-varaints"
         
     | 
| 
      
 9 
     | 
    
         
            +
              },
         
     | 
| 
      
 10 
     | 
    
         
            +
              "exports": {
         
     | 
| 
      
 11 
     | 
    
         
            +
                ".": {
         
     | 
| 
      
 12 
     | 
    
         
            +
                  "import": "./index.mjs",
         
     | 
| 
      
 13 
     | 
    
         
            +
                  "require": "./index.js",
         
     | 
| 
      
 14 
     | 
    
         
            +
                  "types": "./index.d.ts"
         
     | 
| 
      
 15 
     | 
    
         
            +
                }
         
     | 
| 
      
 16 
     | 
    
         
            +
              },
         
     | 
| 
      
 17 
     | 
    
         
            +
              "main": "./index.js",
         
     | 
| 
      
 18 
     | 
    
         
            +
              "types": "./index.d.ts",
         
     | 
| 
      
 19 
     | 
    
         
            +
              "dependencies": {
         
     | 
| 
      
 20 
     | 
    
         
            +
                "@vezham/react-utils": "0.2.0-beta-v0xcli"
         
     | 
| 
      
 21 
     | 
    
         
            +
              }
         
     | 
| 
      
 22 
     | 
    
         
            +
            }
         
     | 
    
        package/style.css
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            .vs-section.vgallery.vcv-success{background:linear-gradient(90deg,#00b887,#00805e) border-box}.vs-section.vgallery.vcv-warning{background:linear-gradient(90deg,#ffc105,#f90) border-box}.vs-section.vgallery.vcv-danger{background:linear-gradient(90deg,#ec8e8e,#e20312) border-box}.vs-section.vgallery.vcv-danger .vc-text{@apply text-black;}.vs-section.vgallery.vcv-info{background:linear-gradient(90deg,#1dc8fc,#1e72f1) border-box}.vs-section.vgallery.vcv-info .vc-text{@apply text-black;}.vs-section.vgallery.vcv-default{background:linear-gradient(90deg,#b2b7bd,#99a2ad) border-box}.vs-section.vgallery.vcv-default .vc-text{@apply text-black;}.vs-section.vgallery.vcv-primary{background:linear-gradient(90deg,#6cf,#3e89e0)}.vs-section.vgallery.vcv-primary .vc-text{@apply text-black;}.vcolor-blue .vs-section.vgallery.vcv-primary{background:linear-gradient(90deg,#6cf,#3e89e0)}.vcolor-blue .vs-section.vgallery.vcv-primary .vc-text,.vcolor-blue.vmode-light .vs-section.vfaded .vc-text,.vcolor-purple.vmode-light .vs-section.vfaded .vc-text{@apply text-black;}.vcolor-pink.vmode-dark .vs-section.vfaded .vc-text,.vcolor-red.vmode-dark .vs-section.vfaded .vc-text,.vcolor-orange.vmode-dark .vs-section.vfaded .vc-text,.vcolor-yellow.vmode-dark .vs-section.vfaded .vc-text,.vcolor-green.vmode-dark .vs-section.vfaded .vc-text{@apply text-white;}
         
     |