@rebnd/ui 0.0.2 → 0.0.4
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 +5 -3
- package/dist/index.d.ts +12 -0
- package/dist/src/assets/constants/components.d.ts +3 -0
- package/dist/src/components/RAvatar/RAvatar.d.ts +13 -13
- package/dist/src/components/RAvatar/utils/avatar.props.d.ts +7 -6
- package/dist/src/components/RAvatar/utils/avatar.style.d.ts +14 -10
- package/dist/src/components/RAvatarGroup/RAvatarGroup.d.ts +7 -7
- package/dist/src/components/RAvatarGroup/utils/avatar-group.props.d.ts +4 -3
- package/dist/src/components/RAvatarGroup/utils/avatar-group.style.d.ts +2 -1
- package/dist/src/components/RBadge/RBadge.d.ts +13 -13
- package/dist/src/components/RBadge/utils/badge.props.d.ts +8 -7
- package/dist/src/components/RBadge/utils/badge.style.d.ts +35 -66
- package/dist/src/components/RButton/RButton.d.ts +33 -13
- package/dist/src/components/RButton/utils/button.props.d.ts +16 -7
- package/dist/src/components/RButton/utils/button.style.d.ts +92 -38
- package/dist/src/components/RButtonGroup/RButtonGroup.d.ts +62 -0
- package/dist/src/components/RButtonGroup/utils/button-group.props.d.ts +30 -0
- package/dist/src/components/RButtonGroup/utils/button-group.style.d.ts +123 -0
- package/dist/src/components/RCheckbox/RCheckbox.d.ts +62 -0
- package/dist/src/components/RCheckbox/utils/checkbox.props.d.ts +27 -0
- package/dist/src/components/RCheckbox/utils/checkbox.style.d.ts +38 -0
- package/dist/src/components/RCheckboxGroup/RCheckboxGroup.d.ts +80 -0
- package/dist/src/components/RCheckboxGroup/utils/checkbox-group.props.d.ts +37 -0
- package/dist/src/components/RCheckboxGroup/utils/checkbox-group.style.d.ts +35 -0
- package/dist/src/components/RFormGroup/RFormGroup.d.ts +8 -2
- package/dist/src/components/RInput/RInput.d.ts +19 -3
- package/dist/src/components/RInput/utils/input.props.d.ts +7 -0
- package/dist/src/components/RInput/utils/input.style.d.ts +24 -2
- package/dist/src/components/RInputPassword/RInputPassword.d.ts +22 -0
- package/dist/src/components/RInputPassword/utils/input-password.props.d.ts +8 -0
- package/dist/src/components/RInputPassword/utils/input-password.style.d.ts +4 -0
- package/dist/src/components/RModal/RModal.d.ts +65 -0
- package/dist/src/components/RModal/utils/modal.props.d.ts +30 -0
- package/dist/src/components/RModal/utils/modal.style.d.ts +3 -0
- package/dist/src/components/RRadio/RRadio.d.ts +60 -0
- package/dist/src/components/RRadio/utils/radio.props.d.ts +27 -0
- package/dist/src/components/RRadio/utils/radio.style.d.ts +64 -0
- package/dist/src/components/RRadioGroup/RRadioGroup.d.ts +78 -0
- package/dist/src/components/RRadioGroup/utils/radio-group.props.d.ts +37 -0
- package/dist/src/components/RRadioGroup/utils/radio-group.style.d.ts +35 -0
- package/dist/src/components/RSwitch/RSwitch.d.ts +86 -0
- package/dist/src/components/RSwitch/utils/switch.props.d.ts +39 -0
- package/dist/src/components/RSwitch/utils/switch.style.d.ts +142 -0
- package/dist/src/components/RTable/RTable.d.ts +47 -0
- package/dist/src/components/RTable/utils/table.props.d.ts +23 -0
- package/dist/src/components/RTable/utils/table.style.d.ts +4 -0
- package/dist/src/components/RTabs/RTabs.d.ts +14 -14
- package/dist/src/components/RTabs/utils/tabs.props.d.ts +8 -6
- package/dist/src/components/RTabs/utils/tabs.style.d.ts +26 -10
- package/dist/src/components/RTextArea/RTextArea.d.ts +21 -1
- package/dist/src/components/RTextArea/utils/text-area.props.d.ts +11 -0
- package/dist/src/components/RTextArea/utils/text-area.style.d.ts +30 -2
- package/dist/src/components/RToast/RToast.d.ts +70 -0
- package/dist/src/components/RToast/utils/toast.props.d.ts +33 -0
- package/dist/src/components/RToast/utils/toast.style.d.ts +4 -0
- package/dist/src/components/RToastRenderer/RToastRenderer.d.ts +31 -0
- package/dist/src/components/RToastRenderer/utils/toast-renderer.props.d.ts +14 -0
- package/dist/src/components/RToastRenderer/utils/toast-renderer.style.d.ts +21 -0
- package/dist/src/components/RToggle/RToggle.d.ts +62 -0
- package/dist/src/components/RToggle/utils/toggle.props.d.ts +29 -0
- package/dist/src/components/RToggle/utils/toggle.style.d.ts +2 -0
- package/dist/src/composables/useModal.d.ts +8 -0
- package/dist/src/composables/useToast.d.ts +4 -0
- package/dist/src/theme/animations.d.ts +12 -0
- package/dist/src/theme/borders.d.ts +24 -0
- package/dist/src/theme/colors.d.ts +3696 -233
- package/dist/src/theme/fonts.d.ts +46 -0
- package/dist/src/theme/index.d.ts +2 -2
- package/dist/src/theme/radii.d.ts +24 -0
- package/dist/src/theme/semantic-tokens.d.ts +777 -35
- package/dist/src/theme/sizes.d.ts +21 -0
- package/dist/src/theme/spacing.d.ts +30 -0
- package/dist/src/theme/tokens.d.ts +3848 -232
- package/dist/src/types/component.d.ts +49 -12
- package/dist/src/types/index.d.ts +2 -3
- package/dist/src/utils/array.d.ts +3 -0
- package/dist/src/utils/regex.d.ts +2 -1
- package/dist/src/utils/string.d.ts +2 -1
- package/dist/styles.css +3308 -764
- package/dist/ui.js +14212 -1735
- package/dist/ui.umd.cjs +5 -2
- package/package.json +30 -32
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export declare const fontSizes: {
|
|
2
|
+
xs: {
|
|
3
|
+
value: string;
|
|
4
|
+
};
|
|
5
|
+
sm: {
|
|
6
|
+
value: string;
|
|
7
|
+
};
|
|
8
|
+
base: {
|
|
9
|
+
value: string;
|
|
10
|
+
};
|
|
11
|
+
md: {
|
|
12
|
+
value: string;
|
|
13
|
+
};
|
|
14
|
+
lg: {
|
|
15
|
+
value: string;
|
|
16
|
+
};
|
|
17
|
+
xl: {
|
|
18
|
+
value: string;
|
|
19
|
+
};
|
|
20
|
+
'2xl': {
|
|
21
|
+
value: string;
|
|
22
|
+
};
|
|
23
|
+
'3xl': {
|
|
24
|
+
value: string;
|
|
25
|
+
};
|
|
26
|
+
'4xl': {
|
|
27
|
+
value: string;
|
|
28
|
+
};
|
|
29
|
+
'5xl': {
|
|
30
|
+
value: string;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
export declare const fontWeights: {
|
|
34
|
+
light: {
|
|
35
|
+
value: string;
|
|
36
|
+
};
|
|
37
|
+
regular: {
|
|
38
|
+
value: string;
|
|
39
|
+
};
|
|
40
|
+
medium: {
|
|
41
|
+
value: string;
|
|
42
|
+
};
|
|
43
|
+
bold: {
|
|
44
|
+
value: string;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as globalCss } from './global-css';
|
|
2
|
-
import { default as tokens } from './tokens';
|
|
3
|
-
import { default as semanticTokens } from './semantic-tokens';
|
|
4
2
|
import { default as keyframes } from './keyframes';
|
|
3
|
+
import { default as semanticTokens } from './semantic-tokens';
|
|
4
|
+
import { default as tokens } from './tokens';
|
|
5
5
|
export { globalCss, keyframes, semanticTokens, tokens };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
sharp: {
|
|
3
|
+
value: string;
|
|
4
|
+
};
|
|
5
|
+
xs: {
|
|
6
|
+
value: string;
|
|
7
|
+
};
|
|
8
|
+
sm: {
|
|
9
|
+
value: string;
|
|
10
|
+
};
|
|
11
|
+
md: {
|
|
12
|
+
value: string;
|
|
13
|
+
};
|
|
14
|
+
lg: {
|
|
15
|
+
value: string;
|
|
16
|
+
};
|
|
17
|
+
pill: {
|
|
18
|
+
value: string;
|
|
19
|
+
};
|
|
20
|
+
full: {
|
|
21
|
+
value: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
export default _default;
|