@devup-ui/react 0.1.29 → 0.1.30
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.
|
@@ -5,56 +5,56 @@ export type DevupThemeSelectorProps = keyof DevupTheme extends undefined ? Recor
|
|
|
5
5
|
[K in keyof DevupTheme as `_theme${toPascalCase<K>}`]?: DevupCommonProps & DevupSelectorProps;
|
|
6
6
|
};
|
|
7
7
|
export interface DevupSelectorProps {
|
|
8
|
-
_active?: DevupCommonProps;
|
|
9
|
-
_checked?: DevupCommonProps;
|
|
10
|
-
_default?: DevupCommonProps;
|
|
11
|
-
_disabled?: DevupCommonProps;
|
|
12
|
-
_empty?: DevupCommonProps;
|
|
13
|
-
_enabled?: DevupCommonProps;
|
|
14
|
-
_first?: DevupCommonProps;
|
|
15
|
-
_firstChild?: DevupCommonProps;
|
|
16
|
-
_firstOfType?: DevupCommonProps;
|
|
17
|
-
_focus?: DevupCommonProps;
|
|
18
|
-
_focusVisible?: DevupCommonProps;
|
|
19
|
-
_focusWithin?: DevupCommonProps;
|
|
20
|
-
_hover?: DevupCommonProps;
|
|
21
|
-
_invalid?: DevupCommonProps;
|
|
22
|
-
_lastChild?: DevupCommonProps;
|
|
23
|
-
_lastOfType?: DevupCommonProps;
|
|
24
|
-
_link?: DevupCommonProps;
|
|
25
|
-
_onlyChild?: DevupCommonProps;
|
|
26
|
-
_optional?: DevupCommonProps;
|
|
27
|
-
_readOnly?: DevupCommonProps;
|
|
28
|
-
_print?: DevupCommonProps;
|
|
29
|
-
_groupActive?: DevupCommonProps;
|
|
30
|
-
_groupChecked?: DevupCommonProps;
|
|
31
|
-
_groupDefault?: DevupCommonProps;
|
|
32
|
-
_groupDisabled?: DevupCommonProps;
|
|
33
|
-
_groupEmpty?: DevupCommonProps;
|
|
34
|
-
_groupEnabled?: DevupCommonProps;
|
|
35
|
-
_groupFirst?: DevupCommonProps;
|
|
36
|
-
_groupFirstChild?: DevupCommonProps;
|
|
37
|
-
_groupFirstOfType?: DevupCommonProps;
|
|
38
|
-
_groupFocus?: DevupCommonProps;
|
|
39
|
-
_groupFocusVisible?: DevupCommonProps;
|
|
40
|
-
_groupFocusWithin?: DevupCommonProps;
|
|
41
|
-
_groupHover?: DevupCommonProps;
|
|
42
|
-
_groupInvalid?: DevupCommonProps;
|
|
43
|
-
_groupLastChild?: DevupCommonProps;
|
|
44
|
-
_groupLastOfType?: DevupCommonProps;
|
|
45
|
-
_groupLink?: DevupCommonProps;
|
|
46
|
-
_groupOnlyChild?: DevupCommonProps;
|
|
47
|
-
_groupOptional?: DevupCommonProps;
|
|
48
|
-
_groupReadOnly?: DevupCommonProps;
|
|
49
|
-
_placeholder?: DevupCommonProps;
|
|
50
|
-
_before?: DevupCommonProps;
|
|
51
|
-
_after?: DevupCommonProps;
|
|
52
|
-
_highlight?: DevupCommonProps;
|
|
53
|
-
_viewTransition?: DevupCommonProps;
|
|
54
|
-
_viewTransitionGroup?: DevupCommonProps;
|
|
55
|
-
_viewTransitionImagePair?: DevupCommonProps;
|
|
56
|
-
_viewTransitionNew?: DevupCommonProps;
|
|
57
|
-
_viewTransitionOld?: DevupCommonProps;
|
|
8
|
+
_active?: DevupCommonProps | false;
|
|
9
|
+
_checked?: DevupCommonProps | false;
|
|
10
|
+
_default?: DevupCommonProps | false;
|
|
11
|
+
_disabled?: DevupCommonProps | false;
|
|
12
|
+
_empty?: DevupCommonProps | false;
|
|
13
|
+
_enabled?: DevupCommonProps | false;
|
|
14
|
+
_first?: DevupCommonProps | false;
|
|
15
|
+
_firstChild?: DevupCommonProps | false;
|
|
16
|
+
_firstOfType?: DevupCommonProps | false;
|
|
17
|
+
_focus?: DevupCommonProps | false;
|
|
18
|
+
_focusVisible?: DevupCommonProps | false;
|
|
19
|
+
_focusWithin?: DevupCommonProps | false;
|
|
20
|
+
_hover?: DevupCommonProps | false;
|
|
21
|
+
_invalid?: DevupCommonProps | false;
|
|
22
|
+
_lastChild?: DevupCommonProps | false;
|
|
23
|
+
_lastOfType?: DevupCommonProps | false;
|
|
24
|
+
_link?: DevupCommonProps | false;
|
|
25
|
+
_onlyChild?: DevupCommonProps | false;
|
|
26
|
+
_optional?: DevupCommonProps | false;
|
|
27
|
+
_readOnly?: DevupCommonProps | false;
|
|
28
|
+
_print?: DevupCommonProps | false;
|
|
29
|
+
_groupActive?: DevupCommonProps | false;
|
|
30
|
+
_groupChecked?: DevupCommonProps | false;
|
|
31
|
+
_groupDefault?: DevupCommonProps | false;
|
|
32
|
+
_groupDisabled?: DevupCommonProps | false;
|
|
33
|
+
_groupEmpty?: DevupCommonProps | false;
|
|
34
|
+
_groupEnabled?: DevupCommonProps | false;
|
|
35
|
+
_groupFirst?: DevupCommonProps | false;
|
|
36
|
+
_groupFirstChild?: DevupCommonProps | false;
|
|
37
|
+
_groupFirstOfType?: DevupCommonProps | false;
|
|
38
|
+
_groupFocus?: DevupCommonProps | false;
|
|
39
|
+
_groupFocusVisible?: DevupCommonProps | false;
|
|
40
|
+
_groupFocusWithin?: DevupCommonProps | false;
|
|
41
|
+
_groupHover?: DevupCommonProps | false;
|
|
42
|
+
_groupInvalid?: DevupCommonProps | false;
|
|
43
|
+
_groupLastChild?: DevupCommonProps | false;
|
|
44
|
+
_groupLastOfType?: DevupCommonProps | false;
|
|
45
|
+
_groupLink?: DevupCommonProps | false;
|
|
46
|
+
_groupOnlyChild?: DevupCommonProps | false;
|
|
47
|
+
_groupOptional?: DevupCommonProps | false;
|
|
48
|
+
_groupReadOnly?: DevupCommonProps | false;
|
|
49
|
+
_placeholder?: DevupCommonProps | false;
|
|
50
|
+
_before?: DevupCommonProps | false;
|
|
51
|
+
_after?: DevupCommonProps | false;
|
|
52
|
+
_highlight?: DevupCommonProps | false;
|
|
53
|
+
_viewTransition?: DevupCommonProps | false;
|
|
54
|
+
_viewTransitionGroup?: DevupCommonProps | false;
|
|
55
|
+
_viewTransitionImagePair?: DevupCommonProps | false;
|
|
56
|
+
_viewTransitionNew?: DevupCommonProps | false;
|
|
57
|
+
_viewTransitionOld?: DevupCommonProps | false;
|
|
58
58
|
selectors?: Record<string, DevupCommonProps>;
|
|
59
59
|
styleOrder?: number;
|
|
60
60
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/types/props/selector/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAA;AAEhD,KAAK,YAAY,CAAC,CAAC,SAAS,MAAM,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,GAAG,MAAM,CAAC,EAAE,GAClE,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,GACrB,CAAC,CAAA;AAEL,MAAM,MAAM,uBAAuB,GAAG,MAAM,UAAU,SAAS,SAAS,GACpE,MAAM,CAAC,SAAS,MAAM,EAAE,EAAE,gBAAgB,GAAG,kBAAkB,CAAC,GAChE;KACG,CAAC,IAAI,MAAM,UAAU,IAAI,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,gBAAgB,GACtE,kBAAkB;CACrB,CAAA;AAEL,MAAM,WAAW,kBAAkB;IACjC,OAAO,CAAC,EAAE,gBAAgB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/types/props/selector/index.ts"],"names":[],"mappings":"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"}
|