@nswds/tokens 3.7.0 → 3.8.0
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 +22 -1
- package/dist/css/motion/global.css +8 -0
- package/dist/css/z-index/global.css +10 -0
- package/dist/index.cjs +199 -57
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +147 -0
- package/dist/index.d.ts +147 -0
- package/dist/index.js +199 -57
- package/dist/index.js.map +1 -1
- package/dist/js/motion/global.d.ts +10 -0
- package/dist/js/motion/global.js +10 -0
- package/dist/js/z-index/global.d.ts +10 -0
- package/dist/js/z-index/global.js +10 -0
- package/dist/json/motion/global.json +12 -0
- package/dist/json/z-index/global.json +12 -0
- package/dist/less/motion/global.less +6 -0
- package/dist/less/z-index/global.less +8 -0
- package/dist/scss/motion/global.scss +6 -0
- package/dist/scss/z-index/global.scss +8 -0
- package/dist/tailwind/motion/global.css +8 -0
- package/dist/tailwind/preset.css +24 -0
- package/dist/tailwind/z-index/global.css +10 -0
- package/dist/tokens/global/motion/canonical.json +45 -0
- package/dist/tokens/global/z-index/canonical.json +44 -0
- package/dist/ts/motion/global.ts +10 -0
- package/dist/ts/z-index/global.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -5719,6 +5719,36 @@ declare namespace shadowJsGlobal {
|
|
|
5719
5719
|
export { boxShadow$1 as boxShadow, shadow$1 as shadow, shadowColor$1 as shadowColor };
|
|
5720
5720
|
}
|
|
5721
5721
|
|
|
5722
|
+
declare const duration$1: {
|
|
5723
|
+
fast: string
|
|
5724
|
+
base: string
|
|
5725
|
+
slow: string
|
|
5726
|
+
}
|
|
5727
|
+
declare const easing$1: {
|
|
5728
|
+
standard: string
|
|
5729
|
+
decelerate: string
|
|
5730
|
+
accelerate: string
|
|
5731
|
+
}
|
|
5732
|
+
|
|
5733
|
+
declare namespace motionJsGlobal {
|
|
5734
|
+
export { duration$1 as duration, easing$1 as easing };
|
|
5735
|
+
}
|
|
5736
|
+
|
|
5737
|
+
declare const zIndex$1: {
|
|
5738
|
+
base: number
|
|
5739
|
+
dropdown: number
|
|
5740
|
+
sticky: number
|
|
5741
|
+
overlay: number
|
|
5742
|
+
modal: number
|
|
5743
|
+
popover: number
|
|
5744
|
+
toast: number
|
|
5745
|
+
tooltip: number
|
|
5746
|
+
}
|
|
5747
|
+
|
|
5748
|
+
declare namespace zIndexJsGlobal {
|
|
5749
|
+
export { zIndex$1 as zIndex };
|
|
5750
|
+
}
|
|
5751
|
+
|
|
5722
5752
|
declare const nswGrey$7: {
|
|
5723
5753
|
'50': string;
|
|
5724
5754
|
'100': string;
|
|
@@ -11498,6 +11528,39 @@ declare namespace shadowTsGlobal {
|
|
|
11498
11528
|
export { shadowTsGlobal_boxShadow as boxShadow, shadowTsGlobal_shadow as shadow, shadowTsGlobal_shadowColor as shadowColor };
|
|
11499
11529
|
}
|
|
11500
11530
|
|
|
11531
|
+
declare const duration: {
|
|
11532
|
+
fast: string;
|
|
11533
|
+
base: string;
|
|
11534
|
+
slow: string;
|
|
11535
|
+
};
|
|
11536
|
+
declare const easing: {
|
|
11537
|
+
standard: string;
|
|
11538
|
+
decelerate: string;
|
|
11539
|
+
accelerate: string;
|
|
11540
|
+
};
|
|
11541
|
+
|
|
11542
|
+
declare const motionTsGlobal_duration: typeof duration;
|
|
11543
|
+
declare const motionTsGlobal_easing: typeof easing;
|
|
11544
|
+
declare namespace motionTsGlobal {
|
|
11545
|
+
export { motionTsGlobal_duration as duration, motionTsGlobal_easing as easing };
|
|
11546
|
+
}
|
|
11547
|
+
|
|
11548
|
+
declare const zIndex: {
|
|
11549
|
+
base: number;
|
|
11550
|
+
dropdown: number;
|
|
11551
|
+
sticky: number;
|
|
11552
|
+
overlay: number;
|
|
11553
|
+
modal: number;
|
|
11554
|
+
popover: number;
|
|
11555
|
+
toast: number;
|
|
11556
|
+
tooltip: number;
|
|
11557
|
+
};
|
|
11558
|
+
|
|
11559
|
+
declare const zIndexTsGlobal_zIndex: typeof zIndex;
|
|
11560
|
+
declare namespace zIndexTsGlobal {
|
|
11561
|
+
export { zIndexTsGlobal_zIndex as zIndex };
|
|
11562
|
+
}
|
|
11563
|
+
|
|
11501
11564
|
declare const tokens: {
|
|
11502
11565
|
colors: {
|
|
11503
11566
|
global: {
|
|
@@ -11633,6 +11696,12 @@ declare const tokens: {
|
|
|
11633
11696
|
shadow: {
|
|
11634
11697
|
global: string;
|
|
11635
11698
|
};
|
|
11699
|
+
motion: {
|
|
11700
|
+
global: string;
|
|
11701
|
+
};
|
|
11702
|
+
zIndex: {
|
|
11703
|
+
global: string;
|
|
11704
|
+
};
|
|
11636
11705
|
};
|
|
11637
11706
|
js: {
|
|
11638
11707
|
global: {
|
|
@@ -11704,6 +11773,12 @@ declare const tokens: {
|
|
|
11704
11773
|
shadow: {
|
|
11705
11774
|
global: typeof shadowJsGlobal;
|
|
11706
11775
|
};
|
|
11776
|
+
motion: {
|
|
11777
|
+
global: typeof motionJsGlobal;
|
|
11778
|
+
};
|
|
11779
|
+
zIndex: {
|
|
11780
|
+
global: typeof zIndexJsGlobal;
|
|
11781
|
+
};
|
|
11707
11782
|
};
|
|
11708
11783
|
json: {
|
|
11709
11784
|
global: {
|
|
@@ -11775,6 +11850,12 @@ declare const tokens: {
|
|
|
11775
11850
|
shadow: {
|
|
11776
11851
|
global: any;
|
|
11777
11852
|
};
|
|
11853
|
+
motion: {
|
|
11854
|
+
global: any;
|
|
11855
|
+
};
|
|
11856
|
+
zIndex: {
|
|
11857
|
+
global: any;
|
|
11858
|
+
};
|
|
11778
11859
|
};
|
|
11779
11860
|
less: {
|
|
11780
11861
|
global: {
|
|
@@ -11846,6 +11927,12 @@ declare const tokens: {
|
|
|
11846
11927
|
shadow: {
|
|
11847
11928
|
global: string;
|
|
11848
11929
|
};
|
|
11930
|
+
motion: {
|
|
11931
|
+
global: string;
|
|
11932
|
+
};
|
|
11933
|
+
zIndex: {
|
|
11934
|
+
global: string;
|
|
11935
|
+
};
|
|
11849
11936
|
};
|
|
11850
11937
|
scss: {
|
|
11851
11938
|
global: {
|
|
@@ -11917,6 +12004,12 @@ declare const tokens: {
|
|
|
11917
12004
|
shadow: {
|
|
11918
12005
|
global: string;
|
|
11919
12006
|
};
|
|
12007
|
+
motion: {
|
|
12008
|
+
global: string;
|
|
12009
|
+
};
|
|
12010
|
+
zIndex: {
|
|
12011
|
+
global: string;
|
|
12012
|
+
};
|
|
11920
12013
|
};
|
|
11921
12014
|
tailwind: {
|
|
11922
12015
|
global: {
|
|
@@ -11975,6 +12068,12 @@ declare const tokens: {
|
|
|
11975
12068
|
shadow: {
|
|
11976
12069
|
global: string;
|
|
11977
12070
|
};
|
|
12071
|
+
motion: {
|
|
12072
|
+
global: string;
|
|
12073
|
+
};
|
|
12074
|
+
zIndex: {
|
|
12075
|
+
global: string;
|
|
12076
|
+
};
|
|
11978
12077
|
};
|
|
11979
12078
|
ts: {
|
|
11980
12079
|
global: {
|
|
@@ -12046,6 +12145,12 @@ declare const tokens: {
|
|
|
12046
12145
|
shadow: {
|
|
12047
12146
|
global: typeof shadowTsGlobal;
|
|
12048
12147
|
};
|
|
12148
|
+
motion: {
|
|
12149
|
+
global: typeof motionTsGlobal;
|
|
12150
|
+
};
|
|
12151
|
+
zIndex: {
|
|
12152
|
+
global: typeof zIndexTsGlobal;
|
|
12153
|
+
};
|
|
12049
12154
|
};
|
|
12050
12155
|
};
|
|
12051
12156
|
declare const colorTokens: {
|
|
@@ -12182,6 +12287,12 @@ declare const cssTokens: {
|
|
|
12182
12287
|
shadow: {
|
|
12183
12288
|
global: string;
|
|
12184
12289
|
};
|
|
12290
|
+
motion: {
|
|
12291
|
+
global: string;
|
|
12292
|
+
};
|
|
12293
|
+
zIndex: {
|
|
12294
|
+
global: string;
|
|
12295
|
+
};
|
|
12185
12296
|
};
|
|
12186
12297
|
declare const jsTokens: {
|
|
12187
12298
|
global: {
|
|
@@ -12253,6 +12364,12 @@ declare const jsTokens: {
|
|
|
12253
12364
|
shadow: {
|
|
12254
12365
|
global: typeof shadowJsGlobal;
|
|
12255
12366
|
};
|
|
12367
|
+
motion: {
|
|
12368
|
+
global: typeof motionJsGlobal;
|
|
12369
|
+
};
|
|
12370
|
+
zIndex: {
|
|
12371
|
+
global: typeof zIndexJsGlobal;
|
|
12372
|
+
};
|
|
12256
12373
|
};
|
|
12257
12374
|
declare const jsonTokens: {
|
|
12258
12375
|
global: {
|
|
@@ -12324,6 +12441,12 @@ declare const jsonTokens: {
|
|
|
12324
12441
|
shadow: {
|
|
12325
12442
|
global: any;
|
|
12326
12443
|
};
|
|
12444
|
+
motion: {
|
|
12445
|
+
global: any;
|
|
12446
|
+
};
|
|
12447
|
+
zIndex: {
|
|
12448
|
+
global: any;
|
|
12449
|
+
};
|
|
12327
12450
|
};
|
|
12328
12451
|
declare const lessTokens: {
|
|
12329
12452
|
global: {
|
|
@@ -12395,6 +12518,12 @@ declare const lessTokens: {
|
|
|
12395
12518
|
shadow: {
|
|
12396
12519
|
global: string;
|
|
12397
12520
|
};
|
|
12521
|
+
motion: {
|
|
12522
|
+
global: string;
|
|
12523
|
+
};
|
|
12524
|
+
zIndex: {
|
|
12525
|
+
global: string;
|
|
12526
|
+
};
|
|
12398
12527
|
};
|
|
12399
12528
|
declare const scssTokens: {
|
|
12400
12529
|
global: {
|
|
@@ -12466,6 +12595,12 @@ declare const scssTokens: {
|
|
|
12466
12595
|
shadow: {
|
|
12467
12596
|
global: string;
|
|
12468
12597
|
};
|
|
12598
|
+
motion: {
|
|
12599
|
+
global: string;
|
|
12600
|
+
};
|
|
12601
|
+
zIndex: {
|
|
12602
|
+
global: string;
|
|
12603
|
+
};
|
|
12469
12604
|
};
|
|
12470
12605
|
declare const tailwindTokens: {
|
|
12471
12606
|
global: {
|
|
@@ -12524,6 +12659,12 @@ declare const tailwindTokens: {
|
|
|
12524
12659
|
shadow: {
|
|
12525
12660
|
global: string;
|
|
12526
12661
|
};
|
|
12662
|
+
motion: {
|
|
12663
|
+
global: string;
|
|
12664
|
+
};
|
|
12665
|
+
zIndex: {
|
|
12666
|
+
global: string;
|
|
12667
|
+
};
|
|
12527
12668
|
};
|
|
12528
12669
|
declare const tsTokens: {
|
|
12529
12670
|
global: {
|
|
@@ -12595,6 +12736,12 @@ declare const tsTokens: {
|
|
|
12595
12736
|
shadow: {
|
|
12596
12737
|
global: typeof shadowTsGlobal;
|
|
12597
12738
|
};
|
|
12739
|
+
motion: {
|
|
12740
|
+
global: typeof motionTsGlobal;
|
|
12741
|
+
};
|
|
12742
|
+
zIndex: {
|
|
12743
|
+
global: typeof zIndexTsGlobal;
|
|
12744
|
+
};
|
|
12598
12745
|
};
|
|
12599
12746
|
declare const brand: {
|
|
12600
12747
|
iconDark: {
|
package/dist/index.d.ts
CHANGED
|
@@ -5719,6 +5719,36 @@ declare namespace shadowJsGlobal {
|
|
|
5719
5719
|
export { boxShadow$1 as boxShadow, shadow$1 as shadow, shadowColor$1 as shadowColor };
|
|
5720
5720
|
}
|
|
5721
5721
|
|
|
5722
|
+
declare const duration$1: {
|
|
5723
|
+
fast: string
|
|
5724
|
+
base: string
|
|
5725
|
+
slow: string
|
|
5726
|
+
}
|
|
5727
|
+
declare const easing$1: {
|
|
5728
|
+
standard: string
|
|
5729
|
+
decelerate: string
|
|
5730
|
+
accelerate: string
|
|
5731
|
+
}
|
|
5732
|
+
|
|
5733
|
+
declare namespace motionJsGlobal {
|
|
5734
|
+
export { duration$1 as duration, easing$1 as easing };
|
|
5735
|
+
}
|
|
5736
|
+
|
|
5737
|
+
declare const zIndex$1: {
|
|
5738
|
+
base: number
|
|
5739
|
+
dropdown: number
|
|
5740
|
+
sticky: number
|
|
5741
|
+
overlay: number
|
|
5742
|
+
modal: number
|
|
5743
|
+
popover: number
|
|
5744
|
+
toast: number
|
|
5745
|
+
tooltip: number
|
|
5746
|
+
}
|
|
5747
|
+
|
|
5748
|
+
declare namespace zIndexJsGlobal {
|
|
5749
|
+
export { zIndex$1 as zIndex };
|
|
5750
|
+
}
|
|
5751
|
+
|
|
5722
5752
|
declare const nswGrey$7: {
|
|
5723
5753
|
'50': string;
|
|
5724
5754
|
'100': string;
|
|
@@ -11498,6 +11528,39 @@ declare namespace shadowTsGlobal {
|
|
|
11498
11528
|
export { shadowTsGlobal_boxShadow as boxShadow, shadowTsGlobal_shadow as shadow, shadowTsGlobal_shadowColor as shadowColor };
|
|
11499
11529
|
}
|
|
11500
11530
|
|
|
11531
|
+
declare const duration: {
|
|
11532
|
+
fast: string;
|
|
11533
|
+
base: string;
|
|
11534
|
+
slow: string;
|
|
11535
|
+
};
|
|
11536
|
+
declare const easing: {
|
|
11537
|
+
standard: string;
|
|
11538
|
+
decelerate: string;
|
|
11539
|
+
accelerate: string;
|
|
11540
|
+
};
|
|
11541
|
+
|
|
11542
|
+
declare const motionTsGlobal_duration: typeof duration;
|
|
11543
|
+
declare const motionTsGlobal_easing: typeof easing;
|
|
11544
|
+
declare namespace motionTsGlobal {
|
|
11545
|
+
export { motionTsGlobal_duration as duration, motionTsGlobal_easing as easing };
|
|
11546
|
+
}
|
|
11547
|
+
|
|
11548
|
+
declare const zIndex: {
|
|
11549
|
+
base: number;
|
|
11550
|
+
dropdown: number;
|
|
11551
|
+
sticky: number;
|
|
11552
|
+
overlay: number;
|
|
11553
|
+
modal: number;
|
|
11554
|
+
popover: number;
|
|
11555
|
+
toast: number;
|
|
11556
|
+
tooltip: number;
|
|
11557
|
+
};
|
|
11558
|
+
|
|
11559
|
+
declare const zIndexTsGlobal_zIndex: typeof zIndex;
|
|
11560
|
+
declare namespace zIndexTsGlobal {
|
|
11561
|
+
export { zIndexTsGlobal_zIndex as zIndex };
|
|
11562
|
+
}
|
|
11563
|
+
|
|
11501
11564
|
declare const tokens: {
|
|
11502
11565
|
colors: {
|
|
11503
11566
|
global: {
|
|
@@ -11633,6 +11696,12 @@ declare const tokens: {
|
|
|
11633
11696
|
shadow: {
|
|
11634
11697
|
global: string;
|
|
11635
11698
|
};
|
|
11699
|
+
motion: {
|
|
11700
|
+
global: string;
|
|
11701
|
+
};
|
|
11702
|
+
zIndex: {
|
|
11703
|
+
global: string;
|
|
11704
|
+
};
|
|
11636
11705
|
};
|
|
11637
11706
|
js: {
|
|
11638
11707
|
global: {
|
|
@@ -11704,6 +11773,12 @@ declare const tokens: {
|
|
|
11704
11773
|
shadow: {
|
|
11705
11774
|
global: typeof shadowJsGlobal;
|
|
11706
11775
|
};
|
|
11776
|
+
motion: {
|
|
11777
|
+
global: typeof motionJsGlobal;
|
|
11778
|
+
};
|
|
11779
|
+
zIndex: {
|
|
11780
|
+
global: typeof zIndexJsGlobal;
|
|
11781
|
+
};
|
|
11707
11782
|
};
|
|
11708
11783
|
json: {
|
|
11709
11784
|
global: {
|
|
@@ -11775,6 +11850,12 @@ declare const tokens: {
|
|
|
11775
11850
|
shadow: {
|
|
11776
11851
|
global: any;
|
|
11777
11852
|
};
|
|
11853
|
+
motion: {
|
|
11854
|
+
global: any;
|
|
11855
|
+
};
|
|
11856
|
+
zIndex: {
|
|
11857
|
+
global: any;
|
|
11858
|
+
};
|
|
11778
11859
|
};
|
|
11779
11860
|
less: {
|
|
11780
11861
|
global: {
|
|
@@ -11846,6 +11927,12 @@ declare const tokens: {
|
|
|
11846
11927
|
shadow: {
|
|
11847
11928
|
global: string;
|
|
11848
11929
|
};
|
|
11930
|
+
motion: {
|
|
11931
|
+
global: string;
|
|
11932
|
+
};
|
|
11933
|
+
zIndex: {
|
|
11934
|
+
global: string;
|
|
11935
|
+
};
|
|
11849
11936
|
};
|
|
11850
11937
|
scss: {
|
|
11851
11938
|
global: {
|
|
@@ -11917,6 +12004,12 @@ declare const tokens: {
|
|
|
11917
12004
|
shadow: {
|
|
11918
12005
|
global: string;
|
|
11919
12006
|
};
|
|
12007
|
+
motion: {
|
|
12008
|
+
global: string;
|
|
12009
|
+
};
|
|
12010
|
+
zIndex: {
|
|
12011
|
+
global: string;
|
|
12012
|
+
};
|
|
11920
12013
|
};
|
|
11921
12014
|
tailwind: {
|
|
11922
12015
|
global: {
|
|
@@ -11975,6 +12068,12 @@ declare const tokens: {
|
|
|
11975
12068
|
shadow: {
|
|
11976
12069
|
global: string;
|
|
11977
12070
|
};
|
|
12071
|
+
motion: {
|
|
12072
|
+
global: string;
|
|
12073
|
+
};
|
|
12074
|
+
zIndex: {
|
|
12075
|
+
global: string;
|
|
12076
|
+
};
|
|
11978
12077
|
};
|
|
11979
12078
|
ts: {
|
|
11980
12079
|
global: {
|
|
@@ -12046,6 +12145,12 @@ declare const tokens: {
|
|
|
12046
12145
|
shadow: {
|
|
12047
12146
|
global: typeof shadowTsGlobal;
|
|
12048
12147
|
};
|
|
12148
|
+
motion: {
|
|
12149
|
+
global: typeof motionTsGlobal;
|
|
12150
|
+
};
|
|
12151
|
+
zIndex: {
|
|
12152
|
+
global: typeof zIndexTsGlobal;
|
|
12153
|
+
};
|
|
12049
12154
|
};
|
|
12050
12155
|
};
|
|
12051
12156
|
declare const colorTokens: {
|
|
@@ -12182,6 +12287,12 @@ declare const cssTokens: {
|
|
|
12182
12287
|
shadow: {
|
|
12183
12288
|
global: string;
|
|
12184
12289
|
};
|
|
12290
|
+
motion: {
|
|
12291
|
+
global: string;
|
|
12292
|
+
};
|
|
12293
|
+
zIndex: {
|
|
12294
|
+
global: string;
|
|
12295
|
+
};
|
|
12185
12296
|
};
|
|
12186
12297
|
declare const jsTokens: {
|
|
12187
12298
|
global: {
|
|
@@ -12253,6 +12364,12 @@ declare const jsTokens: {
|
|
|
12253
12364
|
shadow: {
|
|
12254
12365
|
global: typeof shadowJsGlobal;
|
|
12255
12366
|
};
|
|
12367
|
+
motion: {
|
|
12368
|
+
global: typeof motionJsGlobal;
|
|
12369
|
+
};
|
|
12370
|
+
zIndex: {
|
|
12371
|
+
global: typeof zIndexJsGlobal;
|
|
12372
|
+
};
|
|
12256
12373
|
};
|
|
12257
12374
|
declare const jsonTokens: {
|
|
12258
12375
|
global: {
|
|
@@ -12324,6 +12441,12 @@ declare const jsonTokens: {
|
|
|
12324
12441
|
shadow: {
|
|
12325
12442
|
global: any;
|
|
12326
12443
|
};
|
|
12444
|
+
motion: {
|
|
12445
|
+
global: any;
|
|
12446
|
+
};
|
|
12447
|
+
zIndex: {
|
|
12448
|
+
global: any;
|
|
12449
|
+
};
|
|
12327
12450
|
};
|
|
12328
12451
|
declare const lessTokens: {
|
|
12329
12452
|
global: {
|
|
@@ -12395,6 +12518,12 @@ declare const lessTokens: {
|
|
|
12395
12518
|
shadow: {
|
|
12396
12519
|
global: string;
|
|
12397
12520
|
};
|
|
12521
|
+
motion: {
|
|
12522
|
+
global: string;
|
|
12523
|
+
};
|
|
12524
|
+
zIndex: {
|
|
12525
|
+
global: string;
|
|
12526
|
+
};
|
|
12398
12527
|
};
|
|
12399
12528
|
declare const scssTokens: {
|
|
12400
12529
|
global: {
|
|
@@ -12466,6 +12595,12 @@ declare const scssTokens: {
|
|
|
12466
12595
|
shadow: {
|
|
12467
12596
|
global: string;
|
|
12468
12597
|
};
|
|
12598
|
+
motion: {
|
|
12599
|
+
global: string;
|
|
12600
|
+
};
|
|
12601
|
+
zIndex: {
|
|
12602
|
+
global: string;
|
|
12603
|
+
};
|
|
12469
12604
|
};
|
|
12470
12605
|
declare const tailwindTokens: {
|
|
12471
12606
|
global: {
|
|
@@ -12524,6 +12659,12 @@ declare const tailwindTokens: {
|
|
|
12524
12659
|
shadow: {
|
|
12525
12660
|
global: string;
|
|
12526
12661
|
};
|
|
12662
|
+
motion: {
|
|
12663
|
+
global: string;
|
|
12664
|
+
};
|
|
12665
|
+
zIndex: {
|
|
12666
|
+
global: string;
|
|
12667
|
+
};
|
|
12527
12668
|
};
|
|
12528
12669
|
declare const tsTokens: {
|
|
12529
12670
|
global: {
|
|
@@ -12595,6 +12736,12 @@ declare const tsTokens: {
|
|
|
12595
12736
|
shadow: {
|
|
12596
12737
|
global: typeof shadowTsGlobal;
|
|
12597
12738
|
};
|
|
12739
|
+
motion: {
|
|
12740
|
+
global: typeof motionTsGlobal;
|
|
12741
|
+
};
|
|
12742
|
+
zIndex: {
|
|
12743
|
+
global: typeof zIndexTsGlobal;
|
|
12744
|
+
};
|
|
12598
12745
|
};
|
|
12599
12746
|
declare const brand: {
|
|
12600
12747
|
iconDark: {
|