@yahoo/uds 3.162.1 → 3.163.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/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +2 -2
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +2 -2
- package/dist/cli/commands/sync.cjs +1 -1
- package/dist/cli/commands/sync.js +1 -1
- package/dist/cli/dist/commands/editor-rules.cjs +1 -1
- package/dist/cli/dist/commands/editor-rules.js +1 -1
- package/dist/cli/dist/utils/rules/config.cjs +1 -1
- package/dist/cli/dist/utils/rules/config.js +1 -1
- package/dist/components/client/Popover/UDSPopoverConfigProvider.d.cts +1 -1
- package/dist/components/client/Popover/UDSPopoverConfigProvider.d.ts +1 -1
- package/dist/components/client/Switch/Switch.cjs +5 -2
- package/dist/components/client/Switch/Switch.js +5 -2
- package/dist/components/client/Switch/switchStyles.cjs +2 -2
- package/dist/components/client/Switch/switchStyles.js +2 -2
- package/dist/css/dist/css/generate.cjs +4 -4
- package/dist/css/dist/css/generate.helpers.cjs +9 -19
- package/dist/css/dist/css/generate.helpers.js +4 -13
- package/dist/css/dist/css/generate.js +3 -3
- package/dist/css/dist/css/nodeUtils.cjs +3 -3
- package/dist/css/dist/css/nodeUtils.js +2 -2
- package/dist/css/dist/css/runner.cjs +2 -2
- package/dist/css/dist/css/runner.js +2 -2
- package/dist/css/dist/css/theme.d.cts +1 -1
- package/dist/css/dist/css/theme.d.ts +1 -1
- package/dist/css/dist/postcss/pruneVars.cjs +53 -0
- package/dist/css/dist/postcss/pruneVars.d.cts +33 -0
- package/dist/css/dist/postcss/pruneVars.d.ts +33 -0
- package/dist/css/dist/postcss/pruneVars.js +50 -0
- package/dist/css/dist/postcss.d.cts +3 -0
- package/dist/css/dist/postcss.d.ts +3 -0
- package/dist/css/dist/purger/optimized/ast/expressions.cjs +2 -2
- package/dist/css/dist/purger/optimized/ast/expressions.js +1 -1
- package/dist/css/dist/purger/optimized/purge.cjs +3 -3
- package/dist/css/dist/purger/optimized/purge.js +2 -2
- package/dist/css/dist/purger/optimized/utils/safelist.cjs +1 -1
- package/dist/css/dist/purger/optimized/utils/safelist.js +1 -1
- package/dist/hooks/useRtl.cjs +4 -8
- package/dist/hooks/useRtl.js +4 -8
- package/dist/postcss.cjs +4 -0
- package/dist/postcss.d.cts +4 -0
- package/dist/postcss.d.ts +4 -0
- package/dist/postcss.js +3 -0
- package/dist/styles/styler.d.cts +5 -5
- package/dist/styles/styler.d.ts +5 -5
- package/dist/tailwind-internal/dist/utils/entryPoints.cjs +2 -2
- package/dist/tailwind-internal/dist/utils/entryPoints.js +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowStyles.d.cts +2 -2
- package/dist/tailwind-internal/dist/utils/getShadowStyles.d.ts +2 -2
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/LICENSE +1 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/README.md +6 -10
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/at-rule.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/comment.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/container.d.ts +1 -6
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/container.js +81 -34
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/css-syntax-error.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/declaration.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/document.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/fromJSON.d.ts +1 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/fromJSON.js +76 -23
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/input.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/input.js +22 -5
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/lazy-result.d.ts +3 -4
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/lazy-result.js +68 -13
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/list.d.ts +1 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/map-generator.js +9 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/no-work-result.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/no-work-result.js +3 -4
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/node.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/node.js +105 -60
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/parse.d.ts +1 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/parser.js +37 -30
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/postcss.d.mts +0 -3
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/postcss.d.ts +10 -4
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/previous-map.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/previous-map.js +32 -6
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/processor.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/processor.js +1 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/result.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/root.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/rule.d.ts +12 -12
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/stringifier.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/stringifier.js +118 -32
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/stringify.d.ts +1 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/tokenize.js +4 -0
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/lib/warning.d.ts +0 -1
- package/dist/tailwind-internal/dist/vendor/node_modules/postcss/package.json +44 -44
- package/dist/tailwind-v3/dist/purger/legacy/purgeCSS.cjs +1 -1
- package/dist/tailwind-v3/dist/purger/legacy/purgeCSS.js +1 -1
- package/dist/uds/generated/componentData.cjs +142 -140
- package/dist/uds/generated/componentData.js +142 -140
- package/dist/uds/generated/tailwindPurge.cjs +1 -1
- package/dist/uds/generated/tailwindPurge.js +1 -1
- package/dist/uds/package.cjs +11 -1
- package/dist/uds/package.js +11 -1
- package/generated/componentData.json +186 -184
- package/generated/tailwindPurge.ts +1 -1
- package/package.json +12 -2
package/dist/uds/package.cjs
CHANGED
|
@@ -36,6 +36,16 @@ var package_default = {
|
|
|
36
36
|
"default": "./dist/flags.cjs"
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
|
+
"./postcss": {
|
|
40
|
+
"import": {
|
|
41
|
+
"types": "./dist/postcss.d.ts",
|
|
42
|
+
"default": "./dist/postcss.js"
|
|
43
|
+
},
|
|
44
|
+
"require": {
|
|
45
|
+
"types": "./dist/postcss.d.cts",
|
|
46
|
+
"default": "./dist/postcss.cjs"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
39
49
|
"./client": {
|
|
40
50
|
"import": {
|
|
41
51
|
"types": "./dist/components/client/index.d.ts",
|
|
@@ -252,7 +262,7 @@ var package_default = {
|
|
|
252
262
|
"lodash": "^4.18.1",
|
|
253
263
|
"lodash-es": "^4.17.23",
|
|
254
264
|
"motion": "^12.38.0",
|
|
255
|
-
"postcss": "^8.5.
|
|
265
|
+
"postcss": "^8.5.18",
|
|
256
266
|
"postcss-prune-var": "^1.1.2",
|
|
257
267
|
"postcss-scope": "^1.7.4",
|
|
258
268
|
"postcss-selector-parser": "^6.1.2",
|
package/dist/uds/package.js
CHANGED
|
@@ -36,6 +36,16 @@ var package_default = {
|
|
|
36
36
|
"default": "./dist/flags.cjs"
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
|
+
"./postcss": {
|
|
40
|
+
"import": {
|
|
41
|
+
"types": "./dist/postcss.d.ts",
|
|
42
|
+
"default": "./dist/postcss.js"
|
|
43
|
+
},
|
|
44
|
+
"require": {
|
|
45
|
+
"types": "./dist/postcss.d.cts",
|
|
46
|
+
"default": "./dist/postcss.cjs"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
39
49
|
"./client": {
|
|
40
50
|
"import": {
|
|
41
51
|
"types": "./dist/components/client/index.d.ts",
|
|
@@ -252,7 +262,7 @@ var package_default = {
|
|
|
252
262
|
"lodash": "^4.18.1",
|
|
253
263
|
"lodash-es": "^4.17.23",
|
|
254
264
|
"motion": "^12.38.0",
|
|
255
|
-
"postcss": "^8.5.
|
|
265
|
+
"postcss": "^8.5.18",
|
|
256
266
|
"postcss-prune-var": "^1.1.2",
|
|
257
267
|
"postcss-scope": "^1.7.4",
|
|
258
268
|
"postcss-selector-parser": "^6.1.2",
|
|
@@ -2957,7 +2957,9 @@
|
|
|
2957
2957
|
"text-start",
|
|
2958
2958
|
"text-end",
|
|
2959
2959
|
"translate-x-[1.25rem]",
|
|
2960
|
-
"translate-x-[
|
|
2960
|
+
"rtl:translate-x-[-1.25rem]",
|
|
2961
|
+
"translate-x-[0.75rem]",
|
|
2962
|
+
"rtl:translate-x-[-0.75rem]"
|
|
2961
2963
|
],
|
|
2962
2964
|
"internalComponents": [
|
|
2963
2965
|
"FormLabel",
|
|
@@ -4545,6 +4547,189 @@
|
|
|
4545
4547
|
"runtimeConfigInternalComponentProps": {},
|
|
4546
4548
|
"motionVarPrefixes": []
|
|
4547
4549
|
},
|
|
4550
|
+
"PaddleButtonPrevious": {
|
|
4551
|
+
"name": "PaddleButtonPrevious",
|
|
4552
|
+
"defaultProps": {},
|
|
4553
|
+
"getStylesLiterals": {},
|
|
4554
|
+
"cxLiterals": [],
|
|
4555
|
+
"internalComponents": [
|
|
4556
|
+
"PaddleButton"
|
|
4557
|
+
],
|
|
4558
|
+
"internalComponentProps": {
|
|
4559
|
+
"PaddleButton": {
|
|
4560
|
+
"paddleRole": [
|
|
4561
|
+
"previous"
|
|
4562
|
+
]
|
|
4563
|
+
}
|
|
4564
|
+
},
|
|
4565
|
+
"propToVariantKeys": {},
|
|
4566
|
+
"runtimeConfigDefaultProps": {},
|
|
4567
|
+
"runtimeConfigGetStyles": {},
|
|
4568
|
+
"runtimeConfigInternalComponentProps": {},
|
|
4569
|
+
"motionVarPrefixes": []
|
|
4570
|
+
},
|
|
4571
|
+
"PaddleNavContent": {
|
|
4572
|
+
"name": "PaddleNavContent",
|
|
4573
|
+
"defaultProps": {},
|
|
4574
|
+
"getStylesLiterals": {},
|
|
4575
|
+
"cxLiterals": [
|
|
4576
|
+
"min-w-0",
|
|
4577
|
+
"min-h-0",
|
|
4578
|
+
"relative"
|
|
4579
|
+
],
|
|
4580
|
+
"internalComponents": [],
|
|
4581
|
+
"internalComponentProps": {},
|
|
4582
|
+
"propToVariantKeys": {},
|
|
4583
|
+
"runtimeConfigDefaultProps": {},
|
|
4584
|
+
"runtimeConfigGetStyles": {},
|
|
4585
|
+
"runtimeConfigInternalComponentProps": {},
|
|
4586
|
+
"motionVarPrefixes": []
|
|
4587
|
+
},
|
|
4588
|
+
"PaddleButton": {
|
|
4589
|
+
"name": "PaddleButton",
|
|
4590
|
+
"defaultProps": {},
|
|
4591
|
+
"getStylesLiterals": {},
|
|
4592
|
+
"cxLiterals": [
|
|
4593
|
+
"relative",
|
|
4594
|
+
"inline-flex",
|
|
4595
|
+
"items-center",
|
|
4596
|
+
"justify-center",
|
|
4597
|
+
"box-border",
|
|
4598
|
+
"overflow-hidden",
|
|
4599
|
+
"border-solid",
|
|
4600
|
+
"select-none",
|
|
4601
|
+
"uds-nested-radius",
|
|
4602
|
+
"transition-[color,border-color,box-shadow]",
|
|
4603
|
+
"duration-[180ms]",
|
|
4604
|
+
"ease-[cubic-bezier(0,0,0.2,1)]",
|
|
4605
|
+
"uds-ring",
|
|
4606
|
+
"cursor-pointer",
|
|
4607
|
+
"cursor-not-allowed",
|
|
4608
|
+
"opacity-50",
|
|
4609
|
+
"pointer-events-none",
|
|
4610
|
+
"hidden",
|
|
4611
|
+
"absolute",
|
|
4612
|
+
"inset-0",
|
|
4613
|
+
"-z-10",
|
|
4614
|
+
"rounded-[var(--uds-nested-radius)]",
|
|
4615
|
+
"transition-[background-color,opacity]"
|
|
4616
|
+
],
|
|
4617
|
+
"internalComponents": [
|
|
4618
|
+
"Icon"
|
|
4619
|
+
],
|
|
4620
|
+
"internalComponentProps": {
|
|
4621
|
+
"Icon": {
|
|
4622
|
+
"size": [
|
|
4623
|
+
"md"
|
|
4624
|
+
],
|
|
4625
|
+
"color": [
|
|
4626
|
+
"current"
|
|
4627
|
+
]
|
|
4628
|
+
}
|
|
4629
|
+
},
|
|
4630
|
+
"propToVariantKeys": {
|
|
4631
|
+
"size": [
|
|
4632
|
+
"paddlenavSizeRoot",
|
|
4633
|
+
"paddlenavSizeIcon"
|
|
4634
|
+
],
|
|
4635
|
+
"variant": [
|
|
4636
|
+
"paddlenavVariantRoot",
|
|
4637
|
+
"paddlenavVariantBackground",
|
|
4638
|
+
"paddlenavVariantIcon"
|
|
4639
|
+
]
|
|
4640
|
+
},
|
|
4641
|
+
"runtimeConfigDefaultProps": {},
|
|
4642
|
+
"runtimeConfigGetStyles": {},
|
|
4643
|
+
"runtimeConfigInternalComponentProps": {},
|
|
4644
|
+
"motionVarPrefixes": []
|
|
4645
|
+
},
|
|
4646
|
+
"PaddleNav": {
|
|
4647
|
+
"name": "PaddleNav",
|
|
4648
|
+
"defaultProps": {
|
|
4649
|
+
"orientation": "horizontal",
|
|
4650
|
+
"variant": "primary",
|
|
4651
|
+
"size": "md"
|
|
4652
|
+
},
|
|
4653
|
+
"getStylesLiterals": {},
|
|
4654
|
+
"cxLiterals": [
|
|
4655
|
+
"pointer-events-none",
|
|
4656
|
+
"inline-flex",
|
|
4657
|
+
"flex-row",
|
|
4658
|
+
"gap-2",
|
|
4659
|
+
"items-center",
|
|
4660
|
+
"pointer-events-auto",
|
|
4661
|
+
"flex-col",
|
|
4662
|
+
"relative",
|
|
4663
|
+
"min-w-0",
|
|
4664
|
+
"min-h-0",
|
|
4665
|
+
"flex-1",
|
|
4666
|
+
"inline-block",
|
|
4667
|
+
"absolute",
|
|
4668
|
+
"z-10",
|
|
4669
|
+
"top-2",
|
|
4670
|
+
"left-1/2",
|
|
4671
|
+
"-translate-x-1/2",
|
|
4672
|
+
"left-2",
|
|
4673
|
+
"top-1/2",
|
|
4674
|
+
"-translate-y-1/2",
|
|
4675
|
+
"bottom-2",
|
|
4676
|
+
"right-2",
|
|
4677
|
+
"-top-12",
|
|
4678
|
+
"left-0",
|
|
4679
|
+
"right-0",
|
|
4680
|
+
"-bottom-12"
|
|
4681
|
+
],
|
|
4682
|
+
"internalComponents": [
|
|
4683
|
+
"PaddleNavContext.Provider",
|
|
4684
|
+
"Box"
|
|
4685
|
+
],
|
|
4686
|
+
"internalComponentProps": {
|
|
4687
|
+
"Box": {
|
|
4688
|
+
"display": [
|
|
4689
|
+
"inline-flex"
|
|
4690
|
+
],
|
|
4691
|
+
"alignItems": [
|
|
4692
|
+
"center"
|
|
4693
|
+
],
|
|
4694
|
+
"justifyContent": [
|
|
4695
|
+
"center"
|
|
4696
|
+
],
|
|
4697
|
+
"data-paddle-nav-outside": [
|
|
4698
|
+
"true"
|
|
4699
|
+
]
|
|
4700
|
+
}
|
|
4701
|
+
},
|
|
4702
|
+
"propToVariantKeys": {
|
|
4703
|
+
"orientation": [
|
|
4704
|
+
"data-paddle-nav-orientation"
|
|
4705
|
+
]
|
|
4706
|
+
},
|
|
4707
|
+
"runtimeConfigDefaultProps": {},
|
|
4708
|
+
"runtimeConfigGetStyles": {},
|
|
4709
|
+
"runtimeConfigInternalComponentProps": {},
|
|
4710
|
+
"motionVarPrefixes": []
|
|
4711
|
+
},
|
|
4712
|
+
"PaddleButtonNext": {
|
|
4713
|
+
"name": "PaddleButtonNext",
|
|
4714
|
+
"defaultProps": {},
|
|
4715
|
+
"getStylesLiterals": {},
|
|
4716
|
+
"cxLiterals": [],
|
|
4717
|
+
"internalComponents": [
|
|
4718
|
+
"PaddleButton"
|
|
4719
|
+
],
|
|
4720
|
+
"internalComponentProps": {
|
|
4721
|
+
"PaddleButton": {
|
|
4722
|
+
"paddleRole": [
|
|
4723
|
+
"next"
|
|
4724
|
+
]
|
|
4725
|
+
}
|
|
4726
|
+
},
|
|
4727
|
+
"propToVariantKeys": {},
|
|
4728
|
+
"runtimeConfigDefaultProps": {},
|
|
4729
|
+
"runtimeConfigGetStyles": {},
|
|
4730
|
+
"runtimeConfigInternalComponentProps": {},
|
|
4731
|
+
"motionVarPrefixes": []
|
|
4732
|
+
},
|
|
4548
4733
|
"RadioBase": {
|
|
4549
4734
|
"name": "RadioBase",
|
|
4550
4735
|
"defaultProps": {
|
|
@@ -4741,189 +4926,6 @@
|
|
|
4741
4926
|
"runtimeConfigInternalComponentProps": {},
|
|
4742
4927
|
"motionVarPrefixes": []
|
|
4743
4928
|
},
|
|
4744
|
-
"PaddleButtonPrevious": {
|
|
4745
|
-
"name": "PaddleButtonPrevious",
|
|
4746
|
-
"defaultProps": {},
|
|
4747
|
-
"getStylesLiterals": {},
|
|
4748
|
-
"cxLiterals": [],
|
|
4749
|
-
"internalComponents": [
|
|
4750
|
-
"PaddleButton"
|
|
4751
|
-
],
|
|
4752
|
-
"internalComponentProps": {
|
|
4753
|
-
"PaddleButton": {
|
|
4754
|
-
"paddleRole": [
|
|
4755
|
-
"previous"
|
|
4756
|
-
]
|
|
4757
|
-
}
|
|
4758
|
-
},
|
|
4759
|
-
"propToVariantKeys": {},
|
|
4760
|
-
"runtimeConfigDefaultProps": {},
|
|
4761
|
-
"runtimeConfigGetStyles": {},
|
|
4762
|
-
"runtimeConfigInternalComponentProps": {},
|
|
4763
|
-
"motionVarPrefixes": []
|
|
4764
|
-
},
|
|
4765
|
-
"PaddleNavContent": {
|
|
4766
|
-
"name": "PaddleNavContent",
|
|
4767
|
-
"defaultProps": {},
|
|
4768
|
-
"getStylesLiterals": {},
|
|
4769
|
-
"cxLiterals": [
|
|
4770
|
-
"min-w-0",
|
|
4771
|
-
"min-h-0",
|
|
4772
|
-
"relative"
|
|
4773
|
-
],
|
|
4774
|
-
"internalComponents": [],
|
|
4775
|
-
"internalComponentProps": {},
|
|
4776
|
-
"propToVariantKeys": {},
|
|
4777
|
-
"runtimeConfigDefaultProps": {},
|
|
4778
|
-
"runtimeConfigGetStyles": {},
|
|
4779
|
-
"runtimeConfigInternalComponentProps": {},
|
|
4780
|
-
"motionVarPrefixes": []
|
|
4781
|
-
},
|
|
4782
|
-
"PaddleButton": {
|
|
4783
|
-
"name": "PaddleButton",
|
|
4784
|
-
"defaultProps": {},
|
|
4785
|
-
"getStylesLiterals": {},
|
|
4786
|
-
"cxLiterals": [
|
|
4787
|
-
"relative",
|
|
4788
|
-
"inline-flex",
|
|
4789
|
-
"items-center",
|
|
4790
|
-
"justify-center",
|
|
4791
|
-
"box-border",
|
|
4792
|
-
"overflow-hidden",
|
|
4793
|
-
"border-solid",
|
|
4794
|
-
"select-none",
|
|
4795
|
-
"uds-nested-radius",
|
|
4796
|
-
"transition-[color,border-color,box-shadow]",
|
|
4797
|
-
"duration-[180ms]",
|
|
4798
|
-
"ease-[cubic-bezier(0,0,0.2,1)]",
|
|
4799
|
-
"uds-ring",
|
|
4800
|
-
"cursor-pointer",
|
|
4801
|
-
"cursor-not-allowed",
|
|
4802
|
-
"opacity-50",
|
|
4803
|
-
"pointer-events-none",
|
|
4804
|
-
"hidden",
|
|
4805
|
-
"absolute",
|
|
4806
|
-
"inset-0",
|
|
4807
|
-
"-z-10",
|
|
4808
|
-
"rounded-[var(--uds-nested-radius)]",
|
|
4809
|
-
"transition-[background-color,opacity]"
|
|
4810
|
-
],
|
|
4811
|
-
"internalComponents": [
|
|
4812
|
-
"Icon"
|
|
4813
|
-
],
|
|
4814
|
-
"internalComponentProps": {
|
|
4815
|
-
"Icon": {
|
|
4816
|
-
"size": [
|
|
4817
|
-
"md"
|
|
4818
|
-
],
|
|
4819
|
-
"color": [
|
|
4820
|
-
"current"
|
|
4821
|
-
]
|
|
4822
|
-
}
|
|
4823
|
-
},
|
|
4824
|
-
"propToVariantKeys": {
|
|
4825
|
-
"size": [
|
|
4826
|
-
"paddlenavSizeRoot",
|
|
4827
|
-
"paddlenavSizeIcon"
|
|
4828
|
-
],
|
|
4829
|
-
"variant": [
|
|
4830
|
-
"paddlenavVariantRoot",
|
|
4831
|
-
"paddlenavVariantBackground",
|
|
4832
|
-
"paddlenavVariantIcon"
|
|
4833
|
-
]
|
|
4834
|
-
},
|
|
4835
|
-
"runtimeConfigDefaultProps": {},
|
|
4836
|
-
"runtimeConfigGetStyles": {},
|
|
4837
|
-
"runtimeConfigInternalComponentProps": {},
|
|
4838
|
-
"motionVarPrefixes": []
|
|
4839
|
-
},
|
|
4840
|
-
"PaddleNav": {
|
|
4841
|
-
"name": "PaddleNav",
|
|
4842
|
-
"defaultProps": {
|
|
4843
|
-
"orientation": "horizontal",
|
|
4844
|
-
"variant": "primary",
|
|
4845
|
-
"size": "md"
|
|
4846
|
-
},
|
|
4847
|
-
"getStylesLiterals": {},
|
|
4848
|
-
"cxLiterals": [
|
|
4849
|
-
"pointer-events-none",
|
|
4850
|
-
"inline-flex",
|
|
4851
|
-
"flex-row",
|
|
4852
|
-
"gap-2",
|
|
4853
|
-
"items-center",
|
|
4854
|
-
"pointer-events-auto",
|
|
4855
|
-
"flex-col",
|
|
4856
|
-
"relative",
|
|
4857
|
-
"min-w-0",
|
|
4858
|
-
"min-h-0",
|
|
4859
|
-
"flex-1",
|
|
4860
|
-
"inline-block",
|
|
4861
|
-
"absolute",
|
|
4862
|
-
"z-10",
|
|
4863
|
-
"top-2",
|
|
4864
|
-
"left-1/2",
|
|
4865
|
-
"-translate-x-1/2",
|
|
4866
|
-
"left-2",
|
|
4867
|
-
"top-1/2",
|
|
4868
|
-
"-translate-y-1/2",
|
|
4869
|
-
"bottom-2",
|
|
4870
|
-
"right-2",
|
|
4871
|
-
"-top-12",
|
|
4872
|
-
"left-0",
|
|
4873
|
-
"right-0",
|
|
4874
|
-
"-bottom-12"
|
|
4875
|
-
],
|
|
4876
|
-
"internalComponents": [
|
|
4877
|
-
"PaddleNavContext.Provider",
|
|
4878
|
-
"Box"
|
|
4879
|
-
],
|
|
4880
|
-
"internalComponentProps": {
|
|
4881
|
-
"Box": {
|
|
4882
|
-
"display": [
|
|
4883
|
-
"inline-flex"
|
|
4884
|
-
],
|
|
4885
|
-
"alignItems": [
|
|
4886
|
-
"center"
|
|
4887
|
-
],
|
|
4888
|
-
"justifyContent": [
|
|
4889
|
-
"center"
|
|
4890
|
-
],
|
|
4891
|
-
"data-paddle-nav-outside": [
|
|
4892
|
-
"true"
|
|
4893
|
-
]
|
|
4894
|
-
}
|
|
4895
|
-
},
|
|
4896
|
-
"propToVariantKeys": {
|
|
4897
|
-
"orientation": [
|
|
4898
|
-
"data-paddle-nav-orientation"
|
|
4899
|
-
]
|
|
4900
|
-
},
|
|
4901
|
-
"runtimeConfigDefaultProps": {},
|
|
4902
|
-
"runtimeConfigGetStyles": {},
|
|
4903
|
-
"runtimeConfigInternalComponentProps": {},
|
|
4904
|
-
"motionVarPrefixes": []
|
|
4905
|
-
},
|
|
4906
|
-
"PaddleButtonNext": {
|
|
4907
|
-
"name": "PaddleButtonNext",
|
|
4908
|
-
"defaultProps": {},
|
|
4909
|
-
"getStylesLiterals": {},
|
|
4910
|
-
"cxLiterals": [],
|
|
4911
|
-
"internalComponents": [
|
|
4912
|
-
"PaddleButton"
|
|
4913
|
-
],
|
|
4914
|
-
"internalComponentProps": {
|
|
4915
|
-
"PaddleButton": {
|
|
4916
|
-
"paddleRole": [
|
|
4917
|
-
"next"
|
|
4918
|
-
]
|
|
4919
|
-
}
|
|
4920
|
-
},
|
|
4921
|
-
"propToVariantKeys": {},
|
|
4922
|
-
"runtimeConfigDefaultProps": {},
|
|
4923
|
-
"runtimeConfigGetStyles": {},
|
|
4924
|
-
"runtimeConfigInternalComponentProps": {},
|
|
4925
|
-
"motionVarPrefixes": []
|
|
4926
|
-
},
|
|
4927
4929
|
"SwitchStaticHandle": {
|
|
4928
4930
|
"name": "SwitchStaticHandle",
|
|
4929
4931
|
"defaultProps": {},
|