juxscript 1.1.112 → 1.1.115
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/css-classes-inventory.json +342 -2
- package/dom-structure-map.json +246 -2
- package/index.d.ts +13 -0
- package/index.d.ts.map +1 -1
- package/index.js +14 -1
- package/lib/components/base/LayoutExtensions.d.ts +6 -0
- package/lib/components/base/LayoutExtensions.d.ts.map +1 -1
- package/lib/components/base/LayoutExtensions.js +19 -0
- package/lib/components/base/LayoutExtensions.ts +29 -0
- package/lib/components/image.d.ts +42 -0
- package/lib/components/image.d.ts.map +1 -0
- package/lib/components/image.js +204 -0
- package/lib/components/image.ts +260 -0
- package/lib/components/layer.d.ts +72 -0
- package/lib/components/layer.d.ts.map +1 -0
- package/lib/components/layer.js +219 -0
- package/lib/components/layer.ts +304 -0
- package/lib/components/link.d.ts +41 -0
- package/lib/components/link.d.ts.map +1 -0
- package/lib/components/link.js +216 -0
- package/lib/components/link.ts +268 -0
- package/lib/styles/gradients.css +326 -0
- package/lib/styles/link.css +158 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"totalFiles":
|
|
3
|
-
"totalClasses":
|
|
2
|
+
"totalFiles": 69,
|
|
3
|
+
"totalClasses": 203,
|
|
4
4
|
"classList": [
|
|
5
5
|
"?",
|
|
6
6
|
"jux-alert",
|
|
@@ -91,12 +91,21 @@
|
|
|
91
91
|
"jux-hero-subtitle",
|
|
92
92
|
"jux-hero-title",
|
|
93
93
|
"jux-icon",
|
|
94
|
+
"jux-image",
|
|
94
95
|
"jux-input",
|
|
95
96
|
"jux-input-container",
|
|
96
97
|
"jux-input-counter",
|
|
97
98
|
"jux-input-icon",
|
|
98
99
|
"jux-input-required",
|
|
99
100
|
"jux-input-with-icon",
|
|
101
|
+
"jux-layer",
|
|
102
|
+
"jux-link",
|
|
103
|
+
"jux-link-active",
|
|
104
|
+
"jux-link-disabled",
|
|
105
|
+
"jux-link-icon",
|
|
106
|
+
"jux-link-icon-left",
|
|
107
|
+
"jux-link-icon-right",
|
|
108
|
+
"jux-link-text",
|
|
100
109
|
"jux-list",
|
|
101
110
|
"jux-list-header",
|
|
102
111
|
"jux-list-item",
|
|
@@ -3360,6 +3369,80 @@
|
|
|
3360
3369
|
}
|
|
3361
3370
|
]
|
|
3362
3371
|
},
|
|
3372
|
+
{
|
|
3373
|
+
"file": "image.js",
|
|
3374
|
+
"path": "image.js",
|
|
3375
|
+
"methods": {
|
|
3376
|
+
"render": [
|
|
3377
|
+
"jux-image"
|
|
3378
|
+
]
|
|
3379
|
+
},
|
|
3380
|
+
"allClasses": [
|
|
3381
|
+
"jux-image"
|
|
3382
|
+
],
|
|
3383
|
+
"classCount": 1,
|
|
3384
|
+
"domStructures": [
|
|
3385
|
+
{
|
|
3386
|
+
"method": "render",
|
|
3387
|
+
"elements": [
|
|
3388
|
+
{
|
|
3389
|
+
"tag": "img",
|
|
3390
|
+
"classes": [
|
|
3391
|
+
"jux-image"
|
|
3392
|
+
],
|
|
3393
|
+
"id": null
|
|
3394
|
+
}
|
|
3395
|
+
],
|
|
3396
|
+
"hierarchy": [
|
|
3397
|
+
{
|
|
3398
|
+
"tag": "img",
|
|
3399
|
+
"classes": [
|
|
3400
|
+
"jux-image"
|
|
3401
|
+
],
|
|
3402
|
+
"id": null,
|
|
3403
|
+
"orphan": true
|
|
3404
|
+
}
|
|
3405
|
+
]
|
|
3406
|
+
}
|
|
3407
|
+
]
|
|
3408
|
+
},
|
|
3409
|
+
{
|
|
3410
|
+
"file": "image.ts",
|
|
3411
|
+
"path": "image.ts",
|
|
3412
|
+
"methods": {
|
|
3413
|
+
"render": [
|
|
3414
|
+
"jux-image"
|
|
3415
|
+
]
|
|
3416
|
+
},
|
|
3417
|
+
"allClasses": [
|
|
3418
|
+
"jux-image"
|
|
3419
|
+
],
|
|
3420
|
+
"classCount": 1,
|
|
3421
|
+
"domStructures": [
|
|
3422
|
+
{
|
|
3423
|
+
"method": "render",
|
|
3424
|
+
"elements": [
|
|
3425
|
+
{
|
|
3426
|
+
"tag": "img",
|
|
3427
|
+
"classes": [
|
|
3428
|
+
"jux-image"
|
|
3429
|
+
],
|
|
3430
|
+
"id": null
|
|
3431
|
+
}
|
|
3432
|
+
],
|
|
3433
|
+
"hierarchy": [
|
|
3434
|
+
{
|
|
3435
|
+
"tag": "img",
|
|
3436
|
+
"classes": [
|
|
3437
|
+
"jux-image"
|
|
3438
|
+
],
|
|
3439
|
+
"id": null,
|
|
3440
|
+
"orphan": true
|
|
3441
|
+
}
|
|
3442
|
+
]
|
|
3443
|
+
}
|
|
3444
|
+
]
|
|
3445
|
+
},
|
|
3363
3446
|
{
|
|
3364
3447
|
"file": "input.js",
|
|
3365
3448
|
"path": "input.js",
|
|
@@ -3544,6 +3627,254 @@
|
|
|
3544
3627
|
}
|
|
3545
3628
|
]
|
|
3546
3629
|
},
|
|
3630
|
+
{
|
|
3631
|
+
"file": "layer.js",
|
|
3632
|
+
"path": "layer.js",
|
|
3633
|
+
"methods": {
|
|
3634
|
+
"render": [
|
|
3635
|
+
"jux-layer"
|
|
3636
|
+
]
|
|
3637
|
+
},
|
|
3638
|
+
"allClasses": [
|
|
3639
|
+
"jux-layer"
|
|
3640
|
+
],
|
|
3641
|
+
"classCount": 1,
|
|
3642
|
+
"domStructures": [
|
|
3643
|
+
{
|
|
3644
|
+
"method": "render",
|
|
3645
|
+
"elements": [
|
|
3646
|
+
{
|
|
3647
|
+
"tag": "div",
|
|
3648
|
+
"classes": [
|
|
3649
|
+
"jux-layer"
|
|
3650
|
+
],
|
|
3651
|
+
"id": null
|
|
3652
|
+
}
|
|
3653
|
+
],
|
|
3654
|
+
"hierarchy": [
|
|
3655
|
+
{
|
|
3656
|
+
"tag": "div",
|
|
3657
|
+
"classes": [
|
|
3658
|
+
"jux-layer"
|
|
3659
|
+
],
|
|
3660
|
+
"id": null,
|
|
3661
|
+
"orphan": true
|
|
3662
|
+
}
|
|
3663
|
+
]
|
|
3664
|
+
}
|
|
3665
|
+
]
|
|
3666
|
+
},
|
|
3667
|
+
{
|
|
3668
|
+
"file": "layer.ts",
|
|
3669
|
+
"path": "layer.ts",
|
|
3670
|
+
"methods": {
|
|
3671
|
+
"render": [
|
|
3672
|
+
"jux-layer"
|
|
3673
|
+
]
|
|
3674
|
+
},
|
|
3675
|
+
"allClasses": [
|
|
3676
|
+
"jux-layer"
|
|
3677
|
+
],
|
|
3678
|
+
"classCount": 1,
|
|
3679
|
+
"domStructures": [
|
|
3680
|
+
{
|
|
3681
|
+
"method": "render",
|
|
3682
|
+
"elements": [
|
|
3683
|
+
{
|
|
3684
|
+
"tag": "div",
|
|
3685
|
+
"classes": [
|
|
3686
|
+
"jux-layer"
|
|
3687
|
+
],
|
|
3688
|
+
"id": null
|
|
3689
|
+
}
|
|
3690
|
+
],
|
|
3691
|
+
"hierarchy": [
|
|
3692
|
+
{
|
|
3693
|
+
"tag": "div",
|
|
3694
|
+
"classes": [
|
|
3695
|
+
"jux-layer"
|
|
3696
|
+
],
|
|
3697
|
+
"id": null,
|
|
3698
|
+
"orphan": true
|
|
3699
|
+
}
|
|
3700
|
+
]
|
|
3701
|
+
}
|
|
3702
|
+
]
|
|
3703
|
+
},
|
|
3704
|
+
{
|
|
3705
|
+
"file": "link.js",
|
|
3706
|
+
"path": "link.js",
|
|
3707
|
+
"methods": {
|
|
3708
|
+
"render": [
|
|
3709
|
+
"jux-link",
|
|
3710
|
+
"jux-link-active",
|
|
3711
|
+
"jux-link-disabled",
|
|
3712
|
+
"jux-link-icon",
|
|
3713
|
+
"jux-link-icon-left",
|
|
3714
|
+
"jux-link-icon-right",
|
|
3715
|
+
"jux-link-text"
|
|
3716
|
+
]
|
|
3717
|
+
},
|
|
3718
|
+
"allClasses": [
|
|
3719
|
+
"jux-link",
|
|
3720
|
+
"jux-link-active",
|
|
3721
|
+
"jux-link-disabled",
|
|
3722
|
+
"jux-link-icon",
|
|
3723
|
+
"jux-link-icon-left",
|
|
3724
|
+
"jux-link-icon-right",
|
|
3725
|
+
"jux-link-text"
|
|
3726
|
+
],
|
|
3727
|
+
"classCount": 7,
|
|
3728
|
+
"domStructures": [
|
|
3729
|
+
{
|
|
3730
|
+
"method": "render",
|
|
3731
|
+
"elements": [
|
|
3732
|
+
{
|
|
3733
|
+
"tag": "a",
|
|
3734
|
+
"classes": [
|
|
3735
|
+
"jux-link",
|
|
3736
|
+
"jux-link-active",
|
|
3737
|
+
"jux-link-disabled"
|
|
3738
|
+
],
|
|
3739
|
+
"id": null
|
|
3740
|
+
},
|
|
3741
|
+
{
|
|
3742
|
+
"tag": "span",
|
|
3743
|
+
"classes": [
|
|
3744
|
+
"jux-link-icon",
|
|
3745
|
+
"jux-link-icon-left",
|
|
3746
|
+
"jux-link-icon-right"
|
|
3747
|
+
],
|
|
3748
|
+
"id": null
|
|
3749
|
+
},
|
|
3750
|
+
{
|
|
3751
|
+
"tag": "span",
|
|
3752
|
+
"classes": [
|
|
3753
|
+
"jux-link-text"
|
|
3754
|
+
],
|
|
3755
|
+
"id": null
|
|
3756
|
+
}
|
|
3757
|
+
],
|
|
3758
|
+
"hierarchy": [
|
|
3759
|
+
{
|
|
3760
|
+
"tag": "a",
|
|
3761
|
+
"classes": [
|
|
3762
|
+
"jux-link",
|
|
3763
|
+
"jux-link-active",
|
|
3764
|
+
"jux-link-disabled"
|
|
3765
|
+
],
|
|
3766
|
+
"id": null,
|
|
3767
|
+
"orphan": true
|
|
3768
|
+
},
|
|
3769
|
+
{
|
|
3770
|
+
"tag": "span",
|
|
3771
|
+
"classes": [
|
|
3772
|
+
"jux-link-icon",
|
|
3773
|
+
"jux-link-icon-left",
|
|
3774
|
+
"jux-link-icon-right"
|
|
3775
|
+
],
|
|
3776
|
+
"id": null,
|
|
3777
|
+
"orphan": true
|
|
3778
|
+
},
|
|
3779
|
+
{
|
|
3780
|
+
"tag": "span",
|
|
3781
|
+
"classes": [
|
|
3782
|
+
"jux-link-text"
|
|
3783
|
+
],
|
|
3784
|
+
"id": null,
|
|
3785
|
+
"orphan": true
|
|
3786
|
+
}
|
|
3787
|
+
]
|
|
3788
|
+
}
|
|
3789
|
+
]
|
|
3790
|
+
},
|
|
3791
|
+
{
|
|
3792
|
+
"file": "link.ts",
|
|
3793
|
+
"path": "link.ts",
|
|
3794
|
+
"methods": {
|
|
3795
|
+
"render": [
|
|
3796
|
+
"jux-link",
|
|
3797
|
+
"jux-link-active",
|
|
3798
|
+
"jux-link-disabled",
|
|
3799
|
+
"jux-link-icon",
|
|
3800
|
+
"jux-link-icon-left",
|
|
3801
|
+
"jux-link-icon-right",
|
|
3802
|
+
"jux-link-text"
|
|
3803
|
+
]
|
|
3804
|
+
},
|
|
3805
|
+
"allClasses": [
|
|
3806
|
+
"jux-link",
|
|
3807
|
+
"jux-link-active",
|
|
3808
|
+
"jux-link-disabled",
|
|
3809
|
+
"jux-link-icon",
|
|
3810
|
+
"jux-link-icon-left",
|
|
3811
|
+
"jux-link-icon-right",
|
|
3812
|
+
"jux-link-text"
|
|
3813
|
+
],
|
|
3814
|
+
"classCount": 7,
|
|
3815
|
+
"domStructures": [
|
|
3816
|
+
{
|
|
3817
|
+
"method": "render",
|
|
3818
|
+
"elements": [
|
|
3819
|
+
{
|
|
3820
|
+
"tag": "a",
|
|
3821
|
+
"classes": [
|
|
3822
|
+
"jux-link",
|
|
3823
|
+
"jux-link-active",
|
|
3824
|
+
"jux-link-disabled"
|
|
3825
|
+
],
|
|
3826
|
+
"id": null
|
|
3827
|
+
},
|
|
3828
|
+
{
|
|
3829
|
+
"tag": "span",
|
|
3830
|
+
"classes": [
|
|
3831
|
+
"jux-link-icon",
|
|
3832
|
+
"jux-link-icon-left",
|
|
3833
|
+
"jux-link-icon-right"
|
|
3834
|
+
],
|
|
3835
|
+
"id": null
|
|
3836
|
+
},
|
|
3837
|
+
{
|
|
3838
|
+
"tag": "span",
|
|
3839
|
+
"classes": [
|
|
3840
|
+
"jux-link-text"
|
|
3841
|
+
],
|
|
3842
|
+
"id": null
|
|
3843
|
+
}
|
|
3844
|
+
],
|
|
3845
|
+
"hierarchy": [
|
|
3846
|
+
{
|
|
3847
|
+
"tag": "a",
|
|
3848
|
+
"classes": [
|
|
3849
|
+
"jux-link",
|
|
3850
|
+
"jux-link-active",
|
|
3851
|
+
"jux-link-disabled"
|
|
3852
|
+
],
|
|
3853
|
+
"id": null,
|
|
3854
|
+
"orphan": true
|
|
3855
|
+
},
|
|
3856
|
+
{
|
|
3857
|
+
"tag": "span",
|
|
3858
|
+
"classes": [
|
|
3859
|
+
"jux-link-icon",
|
|
3860
|
+
"jux-link-icon-left",
|
|
3861
|
+
"jux-link-icon-right"
|
|
3862
|
+
],
|
|
3863
|
+
"id": null,
|
|
3864
|
+
"orphan": true
|
|
3865
|
+
},
|
|
3866
|
+
{
|
|
3867
|
+
"tag": "span",
|
|
3868
|
+
"classes": [
|
|
3869
|
+
"jux-link-text"
|
|
3870
|
+
],
|
|
3871
|
+
"id": null,
|
|
3872
|
+
"orphan": true
|
|
3873
|
+
}
|
|
3874
|
+
]
|
|
3875
|
+
}
|
|
3876
|
+
]
|
|
3877
|
+
},
|
|
3547
3878
|
{
|
|
3548
3879
|
"file": "list.js",
|
|
3549
3880
|
"path": "list.js",
|
|
@@ -7835,8 +8166,17 @@
|
|
|
7835
8166
|
"jux-hero-subtitle",
|
|
7836
8167
|
"jux-hero-title",
|
|
7837
8168
|
"jux-icon",
|
|
8169
|
+
"jux-image",
|
|
7838
8170
|
"jux-input-counter",
|
|
7839
8171
|
"jux-input-with-icon",
|
|
8172
|
+
"jux-layer",
|
|
8173
|
+
"jux-link",
|
|
8174
|
+
"jux-link-active",
|
|
8175
|
+
"jux-link-disabled",
|
|
8176
|
+
"jux-link-icon",
|
|
8177
|
+
"jux-link-icon-left",
|
|
8178
|
+
"jux-link-icon-right",
|
|
8179
|
+
"jux-link-text",
|
|
7840
8180
|
"jux-list",
|
|
7841
8181
|
"jux-list-header",
|
|
7842
8182
|
"jux-list-item",
|
package/dom-structure-map.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"totalComponents":
|
|
3
|
-
"generatedAt": "2026-02-
|
|
2
|
+
"totalComponents": 69,
|
|
3
|
+
"generatedAt": "2026-02-13T03:14:49.691Z",
|
|
4
4
|
"components": [
|
|
5
5
|
{
|
|
6
6
|
"file": "alert.js",
|
|
@@ -2600,6 +2600,62 @@
|
|
|
2600
2600
|
}
|
|
2601
2601
|
]
|
|
2602
2602
|
},
|
|
2603
|
+
{
|
|
2604
|
+
"file": "image.js",
|
|
2605
|
+
"path": "image.js",
|
|
2606
|
+
"domStructures": [
|
|
2607
|
+
{
|
|
2608
|
+
"method": "render",
|
|
2609
|
+
"elements": [
|
|
2610
|
+
{
|
|
2611
|
+
"tag": "img",
|
|
2612
|
+
"classes": [
|
|
2613
|
+
"jux-image"
|
|
2614
|
+
],
|
|
2615
|
+
"id": null
|
|
2616
|
+
}
|
|
2617
|
+
],
|
|
2618
|
+
"hierarchy": [
|
|
2619
|
+
{
|
|
2620
|
+
"tag": "img",
|
|
2621
|
+
"classes": [
|
|
2622
|
+
"jux-image"
|
|
2623
|
+
],
|
|
2624
|
+
"id": null,
|
|
2625
|
+
"orphan": true
|
|
2626
|
+
}
|
|
2627
|
+
]
|
|
2628
|
+
}
|
|
2629
|
+
]
|
|
2630
|
+
},
|
|
2631
|
+
{
|
|
2632
|
+
"file": "image.ts",
|
|
2633
|
+
"path": "image.ts",
|
|
2634
|
+
"domStructures": [
|
|
2635
|
+
{
|
|
2636
|
+
"method": "render",
|
|
2637
|
+
"elements": [
|
|
2638
|
+
{
|
|
2639
|
+
"tag": "img",
|
|
2640
|
+
"classes": [
|
|
2641
|
+
"jux-image"
|
|
2642
|
+
],
|
|
2643
|
+
"id": null
|
|
2644
|
+
}
|
|
2645
|
+
],
|
|
2646
|
+
"hierarchy": [
|
|
2647
|
+
{
|
|
2648
|
+
"tag": "img",
|
|
2649
|
+
"classes": [
|
|
2650
|
+
"jux-image"
|
|
2651
|
+
],
|
|
2652
|
+
"id": null,
|
|
2653
|
+
"orphan": true
|
|
2654
|
+
}
|
|
2655
|
+
]
|
|
2656
|
+
}
|
|
2657
|
+
]
|
|
2658
|
+
},
|
|
2603
2659
|
{
|
|
2604
2660
|
"file": "input.js",
|
|
2605
2661
|
"path": "input.js",
|
|
@@ -2750,6 +2806,194 @@
|
|
|
2750
2806
|
}
|
|
2751
2807
|
]
|
|
2752
2808
|
},
|
|
2809
|
+
{
|
|
2810
|
+
"file": "layer.js",
|
|
2811
|
+
"path": "layer.js",
|
|
2812
|
+
"domStructures": [
|
|
2813
|
+
{
|
|
2814
|
+
"method": "render",
|
|
2815
|
+
"elements": [
|
|
2816
|
+
{
|
|
2817
|
+
"tag": "div",
|
|
2818
|
+
"classes": [
|
|
2819
|
+
"jux-layer"
|
|
2820
|
+
],
|
|
2821
|
+
"id": null
|
|
2822
|
+
}
|
|
2823
|
+
],
|
|
2824
|
+
"hierarchy": [
|
|
2825
|
+
{
|
|
2826
|
+
"tag": "div",
|
|
2827
|
+
"classes": [
|
|
2828
|
+
"jux-layer"
|
|
2829
|
+
],
|
|
2830
|
+
"id": null,
|
|
2831
|
+
"orphan": true
|
|
2832
|
+
}
|
|
2833
|
+
]
|
|
2834
|
+
}
|
|
2835
|
+
]
|
|
2836
|
+
},
|
|
2837
|
+
{
|
|
2838
|
+
"file": "layer.ts",
|
|
2839
|
+
"path": "layer.ts",
|
|
2840
|
+
"domStructures": [
|
|
2841
|
+
{
|
|
2842
|
+
"method": "render",
|
|
2843
|
+
"elements": [
|
|
2844
|
+
{
|
|
2845
|
+
"tag": "div",
|
|
2846
|
+
"classes": [
|
|
2847
|
+
"jux-layer"
|
|
2848
|
+
],
|
|
2849
|
+
"id": null
|
|
2850
|
+
}
|
|
2851
|
+
],
|
|
2852
|
+
"hierarchy": [
|
|
2853
|
+
{
|
|
2854
|
+
"tag": "div",
|
|
2855
|
+
"classes": [
|
|
2856
|
+
"jux-layer"
|
|
2857
|
+
],
|
|
2858
|
+
"id": null,
|
|
2859
|
+
"orphan": true
|
|
2860
|
+
}
|
|
2861
|
+
]
|
|
2862
|
+
}
|
|
2863
|
+
]
|
|
2864
|
+
},
|
|
2865
|
+
{
|
|
2866
|
+
"file": "link.js",
|
|
2867
|
+
"path": "link.js",
|
|
2868
|
+
"domStructures": [
|
|
2869
|
+
{
|
|
2870
|
+
"method": "render",
|
|
2871
|
+
"elements": [
|
|
2872
|
+
{
|
|
2873
|
+
"tag": "a",
|
|
2874
|
+
"classes": [
|
|
2875
|
+
"jux-link",
|
|
2876
|
+
"jux-link-active",
|
|
2877
|
+
"jux-link-disabled"
|
|
2878
|
+
],
|
|
2879
|
+
"id": null
|
|
2880
|
+
},
|
|
2881
|
+
{
|
|
2882
|
+
"tag": "span",
|
|
2883
|
+
"classes": [
|
|
2884
|
+
"jux-link-icon",
|
|
2885
|
+
"jux-link-icon-left",
|
|
2886
|
+
"jux-link-icon-right"
|
|
2887
|
+
],
|
|
2888
|
+
"id": null
|
|
2889
|
+
},
|
|
2890
|
+
{
|
|
2891
|
+
"tag": "span",
|
|
2892
|
+
"classes": [
|
|
2893
|
+
"jux-link-text"
|
|
2894
|
+
],
|
|
2895
|
+
"id": null
|
|
2896
|
+
}
|
|
2897
|
+
],
|
|
2898
|
+
"hierarchy": [
|
|
2899
|
+
{
|
|
2900
|
+
"tag": "a",
|
|
2901
|
+
"classes": [
|
|
2902
|
+
"jux-link",
|
|
2903
|
+
"jux-link-active",
|
|
2904
|
+
"jux-link-disabled"
|
|
2905
|
+
],
|
|
2906
|
+
"id": null,
|
|
2907
|
+
"orphan": true
|
|
2908
|
+
},
|
|
2909
|
+
{
|
|
2910
|
+
"tag": "span",
|
|
2911
|
+
"classes": [
|
|
2912
|
+
"jux-link-icon",
|
|
2913
|
+
"jux-link-icon-left",
|
|
2914
|
+
"jux-link-icon-right"
|
|
2915
|
+
],
|
|
2916
|
+
"id": null,
|
|
2917
|
+
"orphan": true
|
|
2918
|
+
},
|
|
2919
|
+
{
|
|
2920
|
+
"tag": "span",
|
|
2921
|
+
"classes": [
|
|
2922
|
+
"jux-link-text"
|
|
2923
|
+
],
|
|
2924
|
+
"id": null,
|
|
2925
|
+
"orphan": true
|
|
2926
|
+
}
|
|
2927
|
+
]
|
|
2928
|
+
}
|
|
2929
|
+
]
|
|
2930
|
+
},
|
|
2931
|
+
{
|
|
2932
|
+
"file": "link.ts",
|
|
2933
|
+
"path": "link.ts",
|
|
2934
|
+
"domStructures": [
|
|
2935
|
+
{
|
|
2936
|
+
"method": "render",
|
|
2937
|
+
"elements": [
|
|
2938
|
+
{
|
|
2939
|
+
"tag": "a",
|
|
2940
|
+
"classes": [
|
|
2941
|
+
"jux-link",
|
|
2942
|
+
"jux-link-active",
|
|
2943
|
+
"jux-link-disabled"
|
|
2944
|
+
],
|
|
2945
|
+
"id": null
|
|
2946
|
+
},
|
|
2947
|
+
{
|
|
2948
|
+
"tag": "span",
|
|
2949
|
+
"classes": [
|
|
2950
|
+
"jux-link-icon",
|
|
2951
|
+
"jux-link-icon-left",
|
|
2952
|
+
"jux-link-icon-right"
|
|
2953
|
+
],
|
|
2954
|
+
"id": null
|
|
2955
|
+
},
|
|
2956
|
+
{
|
|
2957
|
+
"tag": "span",
|
|
2958
|
+
"classes": [
|
|
2959
|
+
"jux-link-text"
|
|
2960
|
+
],
|
|
2961
|
+
"id": null
|
|
2962
|
+
}
|
|
2963
|
+
],
|
|
2964
|
+
"hierarchy": [
|
|
2965
|
+
{
|
|
2966
|
+
"tag": "a",
|
|
2967
|
+
"classes": [
|
|
2968
|
+
"jux-link",
|
|
2969
|
+
"jux-link-active",
|
|
2970
|
+
"jux-link-disabled"
|
|
2971
|
+
],
|
|
2972
|
+
"id": null,
|
|
2973
|
+
"orphan": true
|
|
2974
|
+
},
|
|
2975
|
+
{
|
|
2976
|
+
"tag": "span",
|
|
2977
|
+
"classes": [
|
|
2978
|
+
"jux-link-icon",
|
|
2979
|
+
"jux-link-icon-left",
|
|
2980
|
+
"jux-link-icon-right"
|
|
2981
|
+
],
|
|
2982
|
+
"id": null,
|
|
2983
|
+
"orphan": true
|
|
2984
|
+
},
|
|
2985
|
+
{
|
|
2986
|
+
"tag": "span",
|
|
2987
|
+
"classes": [
|
|
2988
|
+
"jux-link-text"
|
|
2989
|
+
],
|
|
2990
|
+
"id": null,
|
|
2991
|
+
"orphan": true
|
|
2992
|
+
}
|
|
2993
|
+
]
|
|
2994
|
+
}
|
|
2995
|
+
]
|
|
2996
|
+
},
|
|
2753
2997
|
{
|
|
2754
2998
|
"file": "list.js",
|
|
2755
2999
|
"path": "list.js",
|
package/index.d.ts
CHANGED
|
@@ -19,8 +19,10 @@ import { heading } from './lib/components/heading.js';
|
|
|
19
19
|
import { getOrCreateContainer } from './lib/components/helpers.js';
|
|
20
20
|
import { hero } from './lib/components/hero.js';
|
|
21
21
|
import { icon } from './lib/components/icon.js';
|
|
22
|
+
import { image } from './lib/components/image.js';
|
|
22
23
|
import { include } from './lib/components/include.js';
|
|
23
24
|
import { input } from './lib/components/input.js';
|
|
25
|
+
import { link, navLink, externalLink } from './lib/components/link.js';
|
|
24
26
|
import { list } from './lib/components/list.js';
|
|
25
27
|
import { loading } from './lib/components/loading.js';
|
|
26
28
|
import { menu } from './lib/components/menu.js';
|
|
@@ -49,6 +51,13 @@ export { state, registry, stateHistory };
|
|
|
49
51
|
import { VStack, vstack } from './lib/components/stack/VStack.js';
|
|
50
52
|
import { HStack, hstack } from './lib/components/stack/HStack.js';
|
|
51
53
|
import { ZStack, zstack } from './lib/components/stack/ZStack.js';
|
|
54
|
+
export { Link, link, navLink, externalLink } from './lib/components/link.js';
|
|
55
|
+
export type { LinkOptions } from './lib/components/link.js';
|
|
56
|
+
export { Layer, layer, gradient, overlay, glassLayer, animatedGradient } from './lib/components/layer.js';
|
|
57
|
+
export type { LayerOptions, LayerPreset } from './lib/components/layer.js';
|
|
58
|
+
/**
|
|
59
|
+
* JUX Namespace - Main API
|
|
60
|
+
*/
|
|
52
61
|
export declare const jux: {
|
|
53
62
|
alert: typeof alert;
|
|
54
63
|
app: typeof app;
|
|
@@ -70,9 +79,13 @@ export declare const jux: {
|
|
|
70
79
|
heading: typeof heading;
|
|
71
80
|
hero: typeof hero;
|
|
72
81
|
icon: typeof icon;
|
|
82
|
+
image: typeof image;
|
|
73
83
|
include: typeof include;
|
|
74
84
|
input: typeof input;
|
|
75
85
|
list: typeof list;
|
|
86
|
+
link: typeof link;
|
|
87
|
+
navLink: typeof navLink;
|
|
88
|
+
externalLink: typeof externalLink;
|
|
76
89
|
loading: typeof loading;
|
|
77
90
|
menu: typeof menu;
|
|
78
91
|
modal: typeof modal;
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAE,GAAG,EAAE,MAAM,yBAAyB,CAAC;AAC9C,OAAO,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,OAAO,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC;AAChD,OAAO,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AACxD,OAAO,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AACxD,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC;AAC5D,OAAO,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC;AAEhD,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AACtD,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC;AAChD,OAAO,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"}
|