@kiosinc/commons-rn 0.1.7
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/LICENSE +20 -0
- package/README.md +31 -0
- package/lib/commonjs/auth/api/authentication.js +20 -0
- package/lib/commonjs/auth/api/authentication.js.map +1 -0
- package/lib/commonjs/auth/appLogo.svg +9 -0
- package/lib/commonjs/auth/hooks/useAuthenticateRequests.js +52 -0
- package/lib/commonjs/auth/hooks/useAuthenticateRequests.js.map +1 -0
- package/lib/commonjs/auth/hooks/useAuthentication.js +89 -0
- package/lib/commonjs/auth/hooks/useAuthentication.js.map +1 -0
- package/lib/commonjs/auth/index.js +33 -0
- package/lib/commonjs/auth/index.js.map +1 -0
- package/lib/commonjs/auth/providers/authentication/AuthenticationProvider.js +57 -0
- package/lib/commonjs/auth/providers/authentication/AuthenticationProvider.js.map +1 -0
- package/lib/commonjs/auth/providers/authentication/actions/authentication.actions.js +13 -0
- package/lib/commonjs/auth/providers/authentication/actions/authentication.actions.js.map +1 -0
- package/lib/commonjs/auth/providers/authentication/index.js +50 -0
- package/lib/commonjs/auth/providers/authentication/index.js.map +1 -0
- package/lib/commonjs/auth/providers/authentication/reducer/authentication.reducer.js +21 -0
- package/lib/commonjs/auth/providers/authentication/reducer/authentication.reducer.js.map +1 -0
- package/lib/commonjs/auth/providers/authentication/types/authentication.types.js +11 -0
- package/lib/commonjs/auth/providers/authentication/types/authentication.types.js.map +1 -0
- package/lib/commonjs/auth/screens/LoginScreen.js +131 -0
- package/lib/commonjs/auth/screens/LoginScreen.js.map +1 -0
- package/lib/commonjs/auth/screens/ResetPassword.js +90 -0
- package/lib/commonjs/auth/screens/ResetPassword.js.map +1 -0
- package/lib/commonjs/auth/screens/ResetPasswordInstructionsSent.js +34 -0
- package/lib/commonjs/auth/screens/ResetPasswordInstructionsSent.js.map +1 -0
- package/lib/commonjs/auth/screens/SignUp.js +176 -0
- package/lib/commonjs/auth/screens/SignUp.js.map +1 -0
- package/lib/commonjs/auth/screens/SignUpPassword.js +103 -0
- package/lib/commonjs/auth/screens/SignUpPassword.js.map +1 -0
- package/lib/commonjs/auth/screens/VerifyPhoneNumber.js +95 -0
- package/lib/commonjs/auth/screens/VerifyPhoneNumber.js.map +1 -0
- package/lib/commonjs/auth/screens/index.js +37 -0
- package/lib/commonjs/auth/screens/index.js.map +1 -0
- package/lib/commonjs/auth/screens/validators.js +39 -0
- package/lib/commonjs/auth/screens/validators.js.map +1 -0
- package/lib/commonjs/components/Alert.js +109 -0
- package/lib/commonjs/components/Alert.js.map +1 -0
- package/lib/commonjs/components/Badge.js +20 -0
- package/lib/commonjs/components/Badge.js.map +1 -0
- package/lib/commonjs/components/BottomSheet.js +60 -0
- package/lib/commonjs/components/BottomSheet.js.map +1 -0
- package/lib/commonjs/components/Button.js +20 -0
- package/lib/commonjs/components/Button.js.map +1 -0
- package/lib/commonjs/components/Card.js +19 -0
- package/lib/commonjs/components/Card.js.map +1 -0
- package/lib/commonjs/components/Divider.js +19 -0
- package/lib/commonjs/components/Divider.js.map +1 -0
- package/lib/commonjs/components/FAB.js +19 -0
- package/lib/commonjs/components/FAB.js.map +1 -0
- package/lib/commonjs/components/Header.js +73 -0
- package/lib/commonjs/components/Header.js.map +1 -0
- package/lib/commonjs/components/IconButton.js +19 -0
- package/lib/commonjs/components/IconButton.js.map +1 -0
- package/lib/commonjs/components/Image.js +45 -0
- package/lib/commonjs/components/Image.js.map +1 -0
- package/lib/commonjs/components/KeyboardAvoidingView.js +23 -0
- package/lib/commonjs/components/KeyboardAvoidingView.js.map +1 -0
- package/lib/commonjs/components/LineLoader.js +61 -0
- package/lib/commonjs/components/LineLoader.js.map +1 -0
- package/lib/commonjs/components/LinkButton.js +32 -0
- package/lib/commonjs/components/LinkButton.js.map +1 -0
- package/lib/commonjs/components/OtpInputs.js +97 -0
- package/lib/commonjs/components/OtpInputs.js.map +1 -0
- package/lib/commonjs/components/ParentView.js +81 -0
- package/lib/commonjs/components/ParentView.js.map +1 -0
- package/lib/commonjs/components/Searchbar.js +22 -0
- package/lib/commonjs/components/Searchbar.js.map +1 -0
- package/lib/commonjs/components/SelectionDialog.js +130 -0
- package/lib/commonjs/components/SelectionDialog.js.map +1 -0
- package/lib/commonjs/components/Snackbar.js +69 -0
- package/lib/commonjs/components/Snackbar.js.map +1 -0
- package/lib/commonjs/components/Surface.js +19 -0
- package/lib/commonjs/components/Surface.js.map +1 -0
- package/lib/commonjs/components/Text.js +20 -0
- package/lib/commonjs/components/Text.js.map +1 -0
- package/lib/commonjs/components/TextInput.js +65 -0
- package/lib/commonjs/components/TextInput.js.map +1 -0
- package/lib/commonjs/components/ToggleButton.js +19 -0
- package/lib/commonjs/components/ToggleButton.js.map +1 -0
- package/lib/commonjs/components/Video.js +42 -0
- package/lib/commonjs/components/Video.js.map +1 -0
- package/lib/commonjs/components/View.js +20 -0
- package/lib/commonjs/components/View.js.map +1 -0
- package/lib/commonjs/components/index.js +174 -0
- package/lib/commonjs/components/index.js.map +1 -0
- package/lib/commonjs/index.js +37 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/theme/index.js +43 -0
- package/lib/commonjs/theme/index.js.map +1 -0
- package/lib/commonjs/theme/theme.js +126 -0
- package/lib/commonjs/theme/theme.js.map +1 -0
- package/lib/commonjs/theme/tokens.js +204 -0
- package/lib/commonjs/theme/tokens.js.map +1 -0
- package/lib/commonjs/types/index.d.js +2 -0
- package/lib/commonjs/types/index.d.js.map +1 -0
- package/lib/commonjs/types/svg.d.js +2 -0
- package/lib/commonjs/types/svg.d.js.map +1 -0
- package/lib/module/auth/api/authentication.js +11 -0
- package/lib/module/auth/api/authentication.js.map +1 -0
- package/lib/module/auth/appLogo.svg +9 -0
- package/lib/module/auth/hooks/useAuthenticateRequests.js +44 -0
- package/lib/module/auth/hooks/useAuthenticateRequests.js.map +1 -0
- package/lib/module/auth/hooks/useAuthentication.js +81 -0
- package/lib/module/auth/hooks/useAuthentication.js.map +1 -0
- package/lib/module/auth/index.js +5 -0
- package/lib/module/auth/index.js.map +1 -0
- package/lib/module/auth/providers/authentication/AuthenticationProvider.js +45 -0
- package/lib/module/auth/providers/authentication/AuthenticationProvider.js.map +1 -0
- package/lib/module/auth/providers/authentication/actions/authentication.actions.js +6 -0
- package/lib/module/auth/providers/authentication/actions/authentication.actions.js.map +1 -0
- package/lib/module/auth/providers/authentication/index.js +5 -0
- package/lib/module/auth/providers/authentication/index.js.map +1 -0
- package/lib/module/auth/providers/authentication/reducer/authentication.reducer.js +14 -0
- package/lib/module/auth/providers/authentication/reducer/authentication.reducer.js.map +1 -0
- package/lib/module/auth/providers/authentication/types/authentication.types.js +5 -0
- package/lib/module/auth/providers/authentication/types/authentication.types.js.map +1 -0
- package/lib/module/auth/screens/LoginScreen.js +121 -0
- package/lib/module/auth/screens/LoginScreen.js.map +1 -0
- package/lib/module/auth/screens/ResetPassword.js +82 -0
- package/lib/module/auth/screens/ResetPassword.js.map +1 -0
- package/lib/module/auth/screens/ResetPasswordInstructionsSent.js +26 -0
- package/lib/module/auth/screens/ResetPasswordInstructionsSent.js.map +1 -0
- package/lib/module/auth/screens/SignUp.js +168 -0
- package/lib/module/auth/screens/SignUp.js.map +1 -0
- package/lib/module/auth/screens/SignUpPassword.js +95 -0
- package/lib/module/auth/screens/SignUpPassword.js.map +1 -0
- package/lib/module/auth/screens/VerifyPhoneNumber.js +87 -0
- package/lib/module/auth/screens/VerifyPhoneNumber.js.map +1 -0
- package/lib/module/auth/screens/index.js +29 -0
- package/lib/module/auth/screens/index.js.map +1 -0
- package/lib/module/auth/screens/validators.js +31 -0
- package/lib/module/auth/screens/validators.js.map +1 -0
- package/lib/module/components/Alert.js +100 -0
- package/lib/module/components/Alert.js.map +1 -0
- package/lib/module/components/Badge.js +12 -0
- package/lib/module/components/Badge.js.map +1 -0
- package/lib/module/components/BottomSheet.js +52 -0
- package/lib/module/components/BottomSheet.js.map +1 -0
- package/lib/module/components/Button.js +12 -0
- package/lib/module/components/Button.js.map +1 -0
- package/lib/module/components/Card.js +11 -0
- package/lib/module/components/Card.js.map +1 -0
- package/lib/module/components/Divider.js +11 -0
- package/lib/module/components/Divider.js.map +1 -0
- package/lib/module/components/FAB.js +11 -0
- package/lib/module/components/FAB.js.map +1 -0
- package/lib/module/components/Header.js +66 -0
- package/lib/module/components/Header.js.map +1 -0
- package/lib/module/components/IconButton.js +11 -0
- package/lib/module/components/IconButton.js.map +1 -0
- package/lib/module/components/Image.js +35 -0
- package/lib/module/components/Image.js.map +1 -0
- package/lib/module/components/KeyboardAvoidingView.js +15 -0
- package/lib/module/components/KeyboardAvoidingView.js.map +1 -0
- package/lib/module/components/LineLoader.js +52 -0
- package/lib/module/components/LineLoader.js.map +1 -0
- package/lib/module/components/LinkButton.js +24 -0
- package/lib/module/components/LinkButton.js.map +1 -0
- package/lib/module/components/OtpInputs.js +87 -0
- package/lib/module/components/OtpInputs.js.map +1 -0
- package/lib/module/components/ParentView.js +72 -0
- package/lib/module/components/ParentView.js.map +1 -0
- package/lib/module/components/Searchbar.js +14 -0
- package/lib/module/components/Searchbar.js.map +1 -0
- package/lib/module/components/SelectionDialog.js +121 -0
- package/lib/module/components/SelectionDialog.js.map +1 -0
- package/lib/module/components/Snackbar.js +60 -0
- package/lib/module/components/Snackbar.js.map +1 -0
- package/lib/module/components/Surface.js +11 -0
- package/lib/module/components/Surface.js.map +1 -0
- package/lib/module/components/Text.js +12 -0
- package/lib/module/components/Text.js.map +1 -0
- package/lib/module/components/TextInput.js +56 -0
- package/lib/module/components/TextInput.js.map +1 -0
- package/lib/module/components/ToggleButton.js +11 -0
- package/lib/module/components/ToggleButton.js.map +1 -0
- package/lib/module/components/Video.js +32 -0
- package/lib/module/components/Video.js.map +1 -0
- package/lib/module/components/View.js +12 -0
- package/lib/module/components/View.js.map +1 -0
- package/lib/module/components/index.js +25 -0
- package/lib/module/components/index.js.map +1 -0
- package/lib/module/index.js +6 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/theme/index.js +36 -0
- package/lib/module/theme/index.js.map +1 -0
- package/lib/module/theme/theme.js +119 -0
- package/lib/module/theme/theme.js.map +1 -0
- package/lib/module/theme/tokens.js +198 -0
- package/lib/module/theme/tokens.js.map +1 -0
- package/lib/module/types/index.d.js +2 -0
- package/lib/module/types/index.d.js.map +1 -0
- package/lib/module/types/svg.d.js +2 -0
- package/lib/module/types/svg.d.js.map +1 -0
- package/lib/typescript/src/auth/api/authentication.d.ts +4 -0
- package/lib/typescript/src/auth/api/authentication.d.ts.map +1 -0
- package/lib/typescript/src/auth/hooks/useAuthenticateRequests.d.ts +2 -0
- package/lib/typescript/src/auth/hooks/useAuthenticateRequests.d.ts.map +1 -0
- package/lib/typescript/src/auth/hooks/useAuthentication.d.ts +19 -0
- package/lib/typescript/src/auth/hooks/useAuthentication.d.ts.map +1 -0
- package/lib/typescript/src/auth/index.d.ts +5 -0
- package/lib/typescript/src/auth/index.d.ts.map +1 -0
- package/lib/typescript/src/auth/providers/authentication/AuthenticationProvider.d.ts +8 -0
- package/lib/typescript/src/auth/providers/authentication/AuthenticationProvider.d.ts.map +1 -0
- package/lib/typescript/src/auth/providers/authentication/actions/authentication.actions.d.ts +3 -0
- package/lib/typescript/src/auth/providers/authentication/actions/authentication.actions.d.ts.map +1 -0
- package/lib/typescript/src/auth/providers/authentication/index.d.ts +5 -0
- package/lib/typescript/src/auth/providers/authentication/index.d.ts.map +1 -0
- package/lib/typescript/src/auth/providers/authentication/reducer/authentication.reducer.d.ts +3 -0
- package/lib/typescript/src/auth/providers/authentication/reducer/authentication.reducer.d.ts.map +1 -0
- package/lib/typescript/src/auth/providers/authentication/types/authentication.types.d.ts +15 -0
- package/lib/typescript/src/auth/providers/authentication/types/authentication.types.d.ts.map +1 -0
- package/lib/typescript/src/auth/screens/LoginScreen.d.ts +3 -0
- package/lib/typescript/src/auth/screens/LoginScreen.d.ts.map +1 -0
- package/lib/typescript/src/auth/screens/ResetPassword.d.ts +3 -0
- package/lib/typescript/src/auth/screens/ResetPassword.d.ts.map +1 -0
- package/lib/typescript/src/auth/screens/ResetPasswordInstructionsSent.d.ts +8 -0
- package/lib/typescript/src/auth/screens/ResetPasswordInstructionsSent.d.ts.map +1 -0
- package/lib/typescript/src/auth/screens/SignUp.d.ts +9 -0
- package/lib/typescript/src/auth/screens/SignUp.d.ts.map +1 -0
- package/lib/typescript/src/auth/screens/SignUpPassword.d.ts +8 -0
- package/lib/typescript/src/auth/screens/SignUpPassword.d.ts.map +1 -0
- package/lib/typescript/src/auth/screens/VerifyPhoneNumber.d.ts +8 -0
- package/lib/typescript/src/auth/screens/VerifyPhoneNumber.d.ts.map +1 -0
- package/lib/typescript/src/auth/screens/index.d.ts +3 -0
- package/lib/typescript/src/auth/screens/index.d.ts.map +1 -0
- package/lib/typescript/src/auth/screens/validators.d.ts +36 -0
- package/lib/typescript/src/auth/screens/validators.d.ts.map +1 -0
- package/lib/typescript/src/components/Alert.d.ts +19 -0
- package/lib/typescript/src/components/Alert.d.ts.map +1 -0
- package/lib/typescript/src/components/Badge.d.ts +9 -0
- package/lib/typescript/src/components/Badge.d.ts.map +1 -0
- package/lib/typescript/src/components/BottomSheet.d.ts +7 -0
- package/lib/typescript/src/components/BottomSheet.d.ts.map +1 -0
- package/lib/typescript/src/components/Button.d.ts +9 -0
- package/lib/typescript/src/components/Button.d.ts.map +1 -0
- package/lib/typescript/src/components/Card.d.ts +9 -0
- package/lib/typescript/src/components/Card.d.ts.map +1 -0
- package/lib/typescript/src/components/Divider.d.ts +9 -0
- package/lib/typescript/src/components/Divider.d.ts.map +1 -0
- package/lib/typescript/src/components/FAB.d.ts +9 -0
- package/lib/typescript/src/components/FAB.d.ts.map +1 -0
- package/lib/typescript/src/components/Header.d.ts +18 -0
- package/lib/typescript/src/components/Header.d.ts.map +1 -0
- package/lib/typescript/src/components/IconButton.d.ts +9 -0
- package/lib/typescript/src/components/IconButton.d.ts.map +1 -0
- package/lib/typescript/src/components/Image.d.ts +9 -0
- package/lib/typescript/src/components/Image.d.ts.map +1 -0
- package/lib/typescript/src/components/KeyboardAvoidingView.d.ts +9 -0
- package/lib/typescript/src/components/KeyboardAvoidingView.d.ts.map +1 -0
- package/lib/typescript/src/components/LineLoader.d.ts +10 -0
- package/lib/typescript/src/components/LineLoader.d.ts.map +1 -0
- package/lib/typescript/src/components/LinkButton.d.ts +9 -0
- package/lib/typescript/src/components/LinkButton.d.ts.map +1 -0
- package/lib/typescript/src/components/OtpInputs.d.ts +18 -0
- package/lib/typescript/src/components/OtpInputs.d.ts.map +1 -0
- package/lib/typescript/src/components/ParentView.d.ts +19 -0
- package/lib/typescript/src/components/ParentView.d.ts.map +1 -0
- package/lib/typescript/src/components/Searchbar.d.ts +9 -0
- package/lib/typescript/src/components/Searchbar.d.ts.map +1 -0
- package/lib/typescript/src/components/SelectionDialog.d.ts +20 -0
- package/lib/typescript/src/components/SelectionDialog.d.ts.map +1 -0
- package/lib/typescript/src/components/Snackbar.d.ts +15 -0
- package/lib/typescript/src/components/Snackbar.d.ts.map +1 -0
- package/lib/typescript/src/components/Surface.d.ts +9 -0
- package/lib/typescript/src/components/Surface.d.ts.map +1 -0
- package/lib/typescript/src/components/Text.d.ts +13 -0
- package/lib/typescript/src/components/Text.d.ts.map +1 -0
- package/lib/typescript/src/components/TextInput.d.ts +12 -0
- package/lib/typescript/src/components/TextInput.d.ts.map +1 -0
- package/lib/typescript/src/components/ToggleButton.d.ts +9 -0
- package/lib/typescript/src/components/ToggleButton.d.ts.map +1 -0
- package/lib/typescript/src/components/Video.d.ts +4 -0
- package/lib/typescript/src/components/Video.d.ts.map +1 -0
- package/lib/typescript/src/components/View.d.ts +9 -0
- package/lib/typescript/src/components/View.d.ts.map +1 -0
- package/lib/typescript/src/components/index.d.ts +25 -0
- package/lib/typescript/src/components/index.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +4 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/theme/index.d.ts +284 -0
- package/lib/typescript/src/theme/index.d.ts.map +1 -0
- package/lib/typescript/src/theme/theme.d.ts +4 -0
- package/lib/typescript/src/theme/theme.d.ts.map +1 -0
- package/lib/typescript/src/theme/tokens.d.ts +371 -0
- package/lib/typescript/src/theme/tokens.d.ts.map +1 -0
- package/package.json +191 -0
- package/src/auth/api/authentication.ts +13 -0
- package/src/auth/appLogo.svg +9 -0
- package/src/auth/hooks/useAuthenticateRequests.ts +56 -0
- package/src/auth/hooks/useAuthentication.ts +106 -0
- package/src/auth/index.ts +4 -0
- package/src/auth/providers/authentication/AuthenticationProvider.tsx +68 -0
- package/src/auth/providers/authentication/actions/authentication.actions.ts +10 -0
- package/src/auth/providers/authentication/index.ts +4 -0
- package/src/auth/providers/authentication/reducer/authentication.reducer.ts +21 -0
- package/src/auth/providers/authentication/types/authentication.types.ts +17 -0
- package/src/auth/screens/LoginScreen.tsx +140 -0
- package/src/auth/screens/ResetPassword.tsx +85 -0
- package/src/auth/screens/ResetPasswordInstructionsSent.tsx +32 -0
- package/src/auth/screens/SignUp.tsx +176 -0
- package/src/auth/screens/SignUpPassword.tsx +124 -0
- package/src/auth/screens/VerifyPhoneNumber.tsx +100 -0
- package/src/auth/screens/index.tsx +26 -0
- package/src/auth/screens/validators.ts +73 -0
- package/src/components/Alert.tsx +157 -0
- package/src/components/Badge.tsx +50 -0
- package/src/components/BottomSheet.tsx +72 -0
- package/src/components/Button.tsx +47 -0
- package/src/components/Card.tsx +47 -0
- package/src/components/Divider.tsx +47 -0
- package/src/components/FAB.tsx +47 -0
- package/src/components/Header.tsx +123 -0
- package/src/components/IconButton.tsx +47 -0
- package/src/components/Image.tsx +78 -0
- package/src/components/KeyboardAvoidingView.tsx +55 -0
- package/src/components/LineLoader.tsx +70 -0
- package/src/components/LinkButton.tsx +64 -0
- package/src/components/OtpInputs.tsx +149 -0
- package/src/components/ParentView.tsx +164 -0
- package/src/components/Searchbar.tsx +47 -0
- package/src/components/SelectionDialog.tsx +191 -0
- package/src/components/Snackbar.tsx +83 -0
- package/src/components/Surface.tsx +47 -0
- package/src/components/Text.tsx +70 -0
- package/src/components/TextInput.tsx +116 -0
- package/src/components/ToggleButton.tsx +47 -0
- package/src/components/Video.tsx +37 -0
- package/src/components/View.tsx +55 -0
- package/src/components/index.ts +24 -0
- package/src/index.tsx +5 -0
- package/src/theme/index.ts +37 -0
- package/src/theme/theme.ts +125 -0
- package/src/theme/tokens.ts +209 -0
- package/src/types/index.d.ts +1 -0
- package/src/types/svg.d.ts +4 -0
|
@@ -0,0 +1,284 @@
|
|
|
1
|
+
import type { MD3Theme } from 'react-native-paper';
|
|
2
|
+
export declare const generateRestyleComponentsTheme: ({ theme, }: {
|
|
3
|
+
theme: MD3Theme;
|
|
4
|
+
}) => {
|
|
5
|
+
colors: {
|
|
6
|
+
primary: string;
|
|
7
|
+
primaryContainer: string;
|
|
8
|
+
secondary: string;
|
|
9
|
+
secondaryContainer: string;
|
|
10
|
+
tertiary: string;
|
|
11
|
+
tertiaryContainer: string;
|
|
12
|
+
surface: string;
|
|
13
|
+
surfaceVariant: string;
|
|
14
|
+
surfaceDisabled: string;
|
|
15
|
+
background: string;
|
|
16
|
+
error: string;
|
|
17
|
+
errorContainer: string;
|
|
18
|
+
onPrimary: string;
|
|
19
|
+
onPrimaryContainer: string;
|
|
20
|
+
onSecondary: string;
|
|
21
|
+
onSecondaryContainer: string;
|
|
22
|
+
onTertiary: string;
|
|
23
|
+
onTertiaryContainer: string;
|
|
24
|
+
onSurface: string;
|
|
25
|
+
onSurfaceVariant: string;
|
|
26
|
+
onSurfaceDisabled: string;
|
|
27
|
+
onError: string;
|
|
28
|
+
onErrorContainer: string;
|
|
29
|
+
onBackground: string;
|
|
30
|
+
outline: string;
|
|
31
|
+
outlineVariant: string;
|
|
32
|
+
inverseSurface: string;
|
|
33
|
+
inverseOnSurface: string;
|
|
34
|
+
inversePrimary: string;
|
|
35
|
+
shadow: string;
|
|
36
|
+
scrim: string;
|
|
37
|
+
backdrop: string;
|
|
38
|
+
transparent: string;
|
|
39
|
+
};
|
|
40
|
+
textVariants: {
|
|
41
|
+
displayLarge: {
|
|
42
|
+
lineHeight: number;
|
|
43
|
+
fontSize: number;
|
|
44
|
+
fontFamily: string;
|
|
45
|
+
letterSpacing: number;
|
|
46
|
+
};
|
|
47
|
+
displayMedium: {
|
|
48
|
+
lineHeight: number;
|
|
49
|
+
fontSize: number;
|
|
50
|
+
fontFamily: string;
|
|
51
|
+
letterSpacing: number;
|
|
52
|
+
};
|
|
53
|
+
displaySmall: {
|
|
54
|
+
lineHeight: number;
|
|
55
|
+
fontSize: number;
|
|
56
|
+
fontFamily: string;
|
|
57
|
+
letterSpacing: number;
|
|
58
|
+
};
|
|
59
|
+
headlineLarge: {
|
|
60
|
+
lineHeight: number;
|
|
61
|
+
fontSize: number;
|
|
62
|
+
fontFamily: string;
|
|
63
|
+
letterSpacing: number;
|
|
64
|
+
};
|
|
65
|
+
headlineMedium: {
|
|
66
|
+
lineHeight: number;
|
|
67
|
+
fontSize: number;
|
|
68
|
+
fontFamily: string;
|
|
69
|
+
letterSpacing: number;
|
|
70
|
+
};
|
|
71
|
+
headlineSmall: {
|
|
72
|
+
lineHeight: number;
|
|
73
|
+
fontSize: number;
|
|
74
|
+
fontFamily: string;
|
|
75
|
+
letterSpacing: number;
|
|
76
|
+
};
|
|
77
|
+
titleLarge: {
|
|
78
|
+
lineHeight: number;
|
|
79
|
+
fontSize: number;
|
|
80
|
+
fontFamily: string;
|
|
81
|
+
letterSpacing: number;
|
|
82
|
+
};
|
|
83
|
+
titleMedium: {
|
|
84
|
+
letterSpacing: number;
|
|
85
|
+
lineHeight: number;
|
|
86
|
+
fontSize: number;
|
|
87
|
+
fontFamily: string;
|
|
88
|
+
};
|
|
89
|
+
titleSmall: {
|
|
90
|
+
letterSpacing: number;
|
|
91
|
+
lineHeight: number;
|
|
92
|
+
fontSize: number;
|
|
93
|
+
fontFamily: string;
|
|
94
|
+
};
|
|
95
|
+
labelLarge: {
|
|
96
|
+
letterSpacing: number;
|
|
97
|
+
lineHeight: number;
|
|
98
|
+
fontSize: number;
|
|
99
|
+
fontFamily: string;
|
|
100
|
+
};
|
|
101
|
+
labelMedium: {
|
|
102
|
+
letterSpacing: number;
|
|
103
|
+
lineHeight: number;
|
|
104
|
+
fontSize: number;
|
|
105
|
+
fontFamily: string;
|
|
106
|
+
};
|
|
107
|
+
labelSmall: {
|
|
108
|
+
letterSpacing: number;
|
|
109
|
+
lineHeight: number;
|
|
110
|
+
fontSize: number;
|
|
111
|
+
fontFamily: string;
|
|
112
|
+
};
|
|
113
|
+
bodyLarge: {
|
|
114
|
+
letterSpacing: number;
|
|
115
|
+
lineHeight: number;
|
|
116
|
+
fontSize: number;
|
|
117
|
+
fontFamily: string;
|
|
118
|
+
};
|
|
119
|
+
bodyMedium: {
|
|
120
|
+
letterSpacing: number;
|
|
121
|
+
lineHeight: number;
|
|
122
|
+
fontSize: number;
|
|
123
|
+
fontFamily: string;
|
|
124
|
+
};
|
|
125
|
+
bodySmall: {
|
|
126
|
+
letterSpacing: number;
|
|
127
|
+
lineHeight: number;
|
|
128
|
+
fontSize: number;
|
|
129
|
+
fontFamily: string;
|
|
130
|
+
};
|
|
131
|
+
default: {
|
|
132
|
+
fontFamily: string;
|
|
133
|
+
letterSpacing: number;
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
spacing: Record<string, number>;
|
|
137
|
+
breakpoints: {
|
|
138
|
+
phone: number;
|
|
139
|
+
};
|
|
140
|
+
zIndices: Record<string, number>;
|
|
141
|
+
borderRadii: Record<string, number>;
|
|
142
|
+
};
|
|
143
|
+
declare const dummyTheme: {
|
|
144
|
+
colors: {
|
|
145
|
+
primary: string;
|
|
146
|
+
primaryContainer: string;
|
|
147
|
+
secondary: string;
|
|
148
|
+
secondaryContainer: string;
|
|
149
|
+
tertiary: string;
|
|
150
|
+
tertiaryContainer: string;
|
|
151
|
+
surface: string;
|
|
152
|
+
surfaceVariant: string;
|
|
153
|
+
surfaceDisabled: string;
|
|
154
|
+
background: string;
|
|
155
|
+
error: string;
|
|
156
|
+
errorContainer: string;
|
|
157
|
+
onPrimary: string;
|
|
158
|
+
onPrimaryContainer: string;
|
|
159
|
+
onSecondary: string;
|
|
160
|
+
onSecondaryContainer: string;
|
|
161
|
+
onTertiary: string;
|
|
162
|
+
onTertiaryContainer: string;
|
|
163
|
+
onSurface: string;
|
|
164
|
+
onSurfaceVariant: string;
|
|
165
|
+
onSurfaceDisabled: string;
|
|
166
|
+
onError: string;
|
|
167
|
+
onErrorContainer: string;
|
|
168
|
+
onBackground: string;
|
|
169
|
+
outline: string;
|
|
170
|
+
outlineVariant: string;
|
|
171
|
+
inverseSurface: string;
|
|
172
|
+
inverseOnSurface: string;
|
|
173
|
+
inversePrimary: string;
|
|
174
|
+
shadow: string;
|
|
175
|
+
scrim: string;
|
|
176
|
+
backdrop: string;
|
|
177
|
+
transparent: string;
|
|
178
|
+
};
|
|
179
|
+
textVariants: {
|
|
180
|
+
displayLarge: {
|
|
181
|
+
lineHeight: number;
|
|
182
|
+
fontSize: number;
|
|
183
|
+
fontFamily: string;
|
|
184
|
+
letterSpacing: number;
|
|
185
|
+
};
|
|
186
|
+
displayMedium: {
|
|
187
|
+
lineHeight: number;
|
|
188
|
+
fontSize: number;
|
|
189
|
+
fontFamily: string;
|
|
190
|
+
letterSpacing: number;
|
|
191
|
+
};
|
|
192
|
+
displaySmall: {
|
|
193
|
+
lineHeight: number;
|
|
194
|
+
fontSize: number;
|
|
195
|
+
fontFamily: string;
|
|
196
|
+
letterSpacing: number;
|
|
197
|
+
};
|
|
198
|
+
headlineLarge: {
|
|
199
|
+
lineHeight: number;
|
|
200
|
+
fontSize: number;
|
|
201
|
+
fontFamily: string;
|
|
202
|
+
letterSpacing: number;
|
|
203
|
+
};
|
|
204
|
+
headlineMedium: {
|
|
205
|
+
lineHeight: number;
|
|
206
|
+
fontSize: number;
|
|
207
|
+
fontFamily: string;
|
|
208
|
+
letterSpacing: number;
|
|
209
|
+
};
|
|
210
|
+
headlineSmall: {
|
|
211
|
+
lineHeight: number;
|
|
212
|
+
fontSize: number;
|
|
213
|
+
fontFamily: string;
|
|
214
|
+
letterSpacing: number;
|
|
215
|
+
};
|
|
216
|
+
titleLarge: {
|
|
217
|
+
lineHeight: number;
|
|
218
|
+
fontSize: number;
|
|
219
|
+
fontFamily: string;
|
|
220
|
+
letterSpacing: number;
|
|
221
|
+
};
|
|
222
|
+
titleMedium: {
|
|
223
|
+
letterSpacing: number;
|
|
224
|
+
lineHeight: number;
|
|
225
|
+
fontSize: number;
|
|
226
|
+
fontFamily: string;
|
|
227
|
+
};
|
|
228
|
+
titleSmall: {
|
|
229
|
+
letterSpacing: number;
|
|
230
|
+
lineHeight: number;
|
|
231
|
+
fontSize: number;
|
|
232
|
+
fontFamily: string;
|
|
233
|
+
};
|
|
234
|
+
labelLarge: {
|
|
235
|
+
letterSpacing: number;
|
|
236
|
+
lineHeight: number;
|
|
237
|
+
fontSize: number;
|
|
238
|
+
fontFamily: string;
|
|
239
|
+
};
|
|
240
|
+
labelMedium: {
|
|
241
|
+
letterSpacing: number;
|
|
242
|
+
lineHeight: number;
|
|
243
|
+
fontSize: number;
|
|
244
|
+
fontFamily: string;
|
|
245
|
+
};
|
|
246
|
+
labelSmall: {
|
|
247
|
+
letterSpacing: number;
|
|
248
|
+
lineHeight: number;
|
|
249
|
+
fontSize: number;
|
|
250
|
+
fontFamily: string;
|
|
251
|
+
};
|
|
252
|
+
bodyLarge: {
|
|
253
|
+
letterSpacing: number;
|
|
254
|
+
lineHeight: number;
|
|
255
|
+
fontSize: number;
|
|
256
|
+
fontFamily: string;
|
|
257
|
+
};
|
|
258
|
+
bodyMedium: {
|
|
259
|
+
letterSpacing: number;
|
|
260
|
+
lineHeight: number;
|
|
261
|
+
fontSize: number;
|
|
262
|
+
fontFamily: string;
|
|
263
|
+
};
|
|
264
|
+
bodySmall: {
|
|
265
|
+
letterSpacing: number;
|
|
266
|
+
lineHeight: number;
|
|
267
|
+
fontSize: number;
|
|
268
|
+
fontFamily: string;
|
|
269
|
+
};
|
|
270
|
+
default: {
|
|
271
|
+
fontFamily: string;
|
|
272
|
+
letterSpacing: number;
|
|
273
|
+
};
|
|
274
|
+
};
|
|
275
|
+
spacing: Record<string, number>;
|
|
276
|
+
breakpoints: {
|
|
277
|
+
phone: number;
|
|
278
|
+
};
|
|
279
|
+
zIndices: Record<string, number>;
|
|
280
|
+
borderRadii: Record<string, number>;
|
|
281
|
+
};
|
|
282
|
+
export type ThemeType = typeof dummyTheme;
|
|
283
|
+
export {};
|
|
284
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/theme/index.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAQnD,eAAO,MAAM,8BAA8B;WAGlC,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkBhB,CAAC;AACF,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAEd,CAAC;AACH,MAAM,MAAM,SAAS,GAAG,OAAO,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../../src/theme/theme.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAC;AAGnD,eAAO,MAAM,gBAAgB,UA4DhB,CAAC;AAEd,eAAO,MAAM,eAAe,UAyDf,CAAC"}
|
|
@@ -0,0 +1,371 @@
|
|
|
1
|
+
export declare const typescale: {
|
|
2
|
+
displayLarge: {
|
|
3
|
+
lineHeight: number;
|
|
4
|
+
fontSize: number;
|
|
5
|
+
fontFamily: string;
|
|
6
|
+
letterSpacing: number;
|
|
7
|
+
};
|
|
8
|
+
displayMedium: {
|
|
9
|
+
lineHeight: number;
|
|
10
|
+
fontSize: number;
|
|
11
|
+
fontFamily: string;
|
|
12
|
+
letterSpacing: number;
|
|
13
|
+
};
|
|
14
|
+
displaySmall: {
|
|
15
|
+
lineHeight: number;
|
|
16
|
+
fontSize: number;
|
|
17
|
+
fontFamily: string;
|
|
18
|
+
letterSpacing: number;
|
|
19
|
+
};
|
|
20
|
+
headlineLarge: {
|
|
21
|
+
lineHeight: number;
|
|
22
|
+
fontSize: number;
|
|
23
|
+
fontFamily: string;
|
|
24
|
+
letterSpacing: number;
|
|
25
|
+
};
|
|
26
|
+
headlineMedium: {
|
|
27
|
+
lineHeight: number;
|
|
28
|
+
fontSize: number;
|
|
29
|
+
fontFamily: string;
|
|
30
|
+
letterSpacing: number;
|
|
31
|
+
};
|
|
32
|
+
headlineSmall: {
|
|
33
|
+
lineHeight: number;
|
|
34
|
+
fontSize: number;
|
|
35
|
+
fontFamily: string;
|
|
36
|
+
letterSpacing: number;
|
|
37
|
+
};
|
|
38
|
+
titleLarge: {
|
|
39
|
+
lineHeight: number;
|
|
40
|
+
fontSize: number;
|
|
41
|
+
fontFamily: string;
|
|
42
|
+
letterSpacing: number;
|
|
43
|
+
};
|
|
44
|
+
titleMedium: {
|
|
45
|
+
letterSpacing: number;
|
|
46
|
+
lineHeight: number;
|
|
47
|
+
fontSize: number;
|
|
48
|
+
fontFamily: string;
|
|
49
|
+
};
|
|
50
|
+
titleSmall: {
|
|
51
|
+
letterSpacing: number;
|
|
52
|
+
lineHeight: number;
|
|
53
|
+
fontSize: number;
|
|
54
|
+
fontFamily: string;
|
|
55
|
+
};
|
|
56
|
+
labelLarge: {
|
|
57
|
+
letterSpacing: number;
|
|
58
|
+
lineHeight: number;
|
|
59
|
+
fontSize: number;
|
|
60
|
+
fontFamily: string;
|
|
61
|
+
};
|
|
62
|
+
labelMedium: {
|
|
63
|
+
letterSpacing: number;
|
|
64
|
+
lineHeight: number;
|
|
65
|
+
fontSize: number;
|
|
66
|
+
fontFamily: string;
|
|
67
|
+
};
|
|
68
|
+
labelSmall: {
|
|
69
|
+
letterSpacing: number;
|
|
70
|
+
lineHeight: number;
|
|
71
|
+
fontSize: number;
|
|
72
|
+
fontFamily: string;
|
|
73
|
+
};
|
|
74
|
+
bodyLarge: {
|
|
75
|
+
letterSpacing: number;
|
|
76
|
+
lineHeight: number;
|
|
77
|
+
fontSize: number;
|
|
78
|
+
fontFamily: string;
|
|
79
|
+
};
|
|
80
|
+
bodyMedium: {
|
|
81
|
+
letterSpacing: number;
|
|
82
|
+
lineHeight: number;
|
|
83
|
+
fontSize: number;
|
|
84
|
+
fontFamily: string;
|
|
85
|
+
};
|
|
86
|
+
bodySmall: {
|
|
87
|
+
letterSpacing: number;
|
|
88
|
+
lineHeight: number;
|
|
89
|
+
fontSize: number;
|
|
90
|
+
fontFamily: string;
|
|
91
|
+
};
|
|
92
|
+
default: {
|
|
93
|
+
fontFamily: string;
|
|
94
|
+
letterSpacing: number;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
export declare const tokens: {
|
|
98
|
+
md: {
|
|
99
|
+
ref: {
|
|
100
|
+
palette: {
|
|
101
|
+
primary100: string;
|
|
102
|
+
primary99: string;
|
|
103
|
+
primary95: string;
|
|
104
|
+
primary90: string;
|
|
105
|
+
primary80: string;
|
|
106
|
+
primary70: string;
|
|
107
|
+
primary60: string;
|
|
108
|
+
primary50: string;
|
|
109
|
+
primary40: string;
|
|
110
|
+
primary30: string;
|
|
111
|
+
primary20: string;
|
|
112
|
+
primary10: string;
|
|
113
|
+
primary0: string;
|
|
114
|
+
secondary100: string;
|
|
115
|
+
secondary99: string;
|
|
116
|
+
secondary95: string;
|
|
117
|
+
secondary90: string;
|
|
118
|
+
secondary80: string;
|
|
119
|
+
secondary70: string;
|
|
120
|
+
secondary60: string;
|
|
121
|
+
secondary50: string;
|
|
122
|
+
secondary40: string;
|
|
123
|
+
secondary30: string;
|
|
124
|
+
secondary20: string;
|
|
125
|
+
secondary10: string;
|
|
126
|
+
secondary0: string;
|
|
127
|
+
tertiary100: string;
|
|
128
|
+
tertiary99: string;
|
|
129
|
+
tertiary95: string;
|
|
130
|
+
tertiary90: string;
|
|
131
|
+
tertiary80: string;
|
|
132
|
+
tertiary70: string;
|
|
133
|
+
tertiary60: string;
|
|
134
|
+
tertiary50: string;
|
|
135
|
+
tertiary40: string;
|
|
136
|
+
tertiary30: string;
|
|
137
|
+
tertiary20: string;
|
|
138
|
+
tertiary10: string;
|
|
139
|
+
tertiary0: string;
|
|
140
|
+
neutral100: string;
|
|
141
|
+
neutral99: string;
|
|
142
|
+
neutral95: string;
|
|
143
|
+
neutral90: string;
|
|
144
|
+
neutral80: string;
|
|
145
|
+
neutral70: string;
|
|
146
|
+
neutral60: string;
|
|
147
|
+
neutral50: string;
|
|
148
|
+
neutral40: string;
|
|
149
|
+
neutral30: string;
|
|
150
|
+
neutral20: string;
|
|
151
|
+
neutral10: string;
|
|
152
|
+
neutral0: string;
|
|
153
|
+
neutralVariant100: string;
|
|
154
|
+
neutralVariant99: string;
|
|
155
|
+
neutralVariant95: string;
|
|
156
|
+
neutralVariant90: string;
|
|
157
|
+
neutralVariant80: string;
|
|
158
|
+
neutralVariant70: string;
|
|
159
|
+
neutralVariant60: string;
|
|
160
|
+
neutralVariant50: string;
|
|
161
|
+
neutralVariant40: string;
|
|
162
|
+
neutralVariant30: string;
|
|
163
|
+
neutralVariant20: string;
|
|
164
|
+
neutralVariant10: string;
|
|
165
|
+
neutralVariant0: string;
|
|
166
|
+
error100: string;
|
|
167
|
+
error99: string;
|
|
168
|
+
error95: string;
|
|
169
|
+
error90: string;
|
|
170
|
+
error80: string;
|
|
171
|
+
error70: string;
|
|
172
|
+
error60: string;
|
|
173
|
+
error50: string;
|
|
174
|
+
error40: string;
|
|
175
|
+
error30: string;
|
|
176
|
+
error20: string;
|
|
177
|
+
error10: string;
|
|
178
|
+
error0: string;
|
|
179
|
+
};
|
|
180
|
+
typeface: {
|
|
181
|
+
brandRegular: string;
|
|
182
|
+
plainMedium: string;
|
|
183
|
+
};
|
|
184
|
+
opacity: {
|
|
185
|
+
level1: number;
|
|
186
|
+
level2: number;
|
|
187
|
+
level3: number;
|
|
188
|
+
level4: number;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
sys: {
|
|
192
|
+
typescale: {
|
|
193
|
+
displayLarge: {
|
|
194
|
+
lineHeight: number;
|
|
195
|
+
fontSize: number;
|
|
196
|
+
fontFamily: string;
|
|
197
|
+
letterSpacing: number;
|
|
198
|
+
};
|
|
199
|
+
displayMedium: {
|
|
200
|
+
lineHeight: number;
|
|
201
|
+
fontSize: number;
|
|
202
|
+
fontFamily: string;
|
|
203
|
+
letterSpacing: number;
|
|
204
|
+
};
|
|
205
|
+
displaySmall: {
|
|
206
|
+
lineHeight: number;
|
|
207
|
+
fontSize: number;
|
|
208
|
+
fontFamily: string;
|
|
209
|
+
letterSpacing: number;
|
|
210
|
+
};
|
|
211
|
+
headlineLarge: {
|
|
212
|
+
lineHeight: number;
|
|
213
|
+
fontSize: number;
|
|
214
|
+
fontFamily: string;
|
|
215
|
+
letterSpacing: number;
|
|
216
|
+
};
|
|
217
|
+
headlineMedium: {
|
|
218
|
+
lineHeight: number;
|
|
219
|
+
fontSize: number;
|
|
220
|
+
fontFamily: string;
|
|
221
|
+
letterSpacing: number;
|
|
222
|
+
};
|
|
223
|
+
headlineSmall: {
|
|
224
|
+
lineHeight: number;
|
|
225
|
+
fontSize: number;
|
|
226
|
+
fontFamily: string;
|
|
227
|
+
letterSpacing: number;
|
|
228
|
+
};
|
|
229
|
+
titleLarge: {
|
|
230
|
+
lineHeight: number;
|
|
231
|
+
fontSize: number;
|
|
232
|
+
fontFamily: string;
|
|
233
|
+
letterSpacing: number;
|
|
234
|
+
};
|
|
235
|
+
titleMedium: {
|
|
236
|
+
letterSpacing: number;
|
|
237
|
+
lineHeight: number;
|
|
238
|
+
fontSize: number;
|
|
239
|
+
fontFamily: string;
|
|
240
|
+
};
|
|
241
|
+
titleSmall: {
|
|
242
|
+
letterSpacing: number;
|
|
243
|
+
lineHeight: number;
|
|
244
|
+
fontSize: number;
|
|
245
|
+
fontFamily: string;
|
|
246
|
+
};
|
|
247
|
+
labelLarge: {
|
|
248
|
+
letterSpacing: number;
|
|
249
|
+
lineHeight: number;
|
|
250
|
+
fontSize: number;
|
|
251
|
+
fontFamily: string;
|
|
252
|
+
};
|
|
253
|
+
labelMedium: {
|
|
254
|
+
letterSpacing: number;
|
|
255
|
+
lineHeight: number;
|
|
256
|
+
fontSize: number;
|
|
257
|
+
fontFamily: string;
|
|
258
|
+
};
|
|
259
|
+
labelSmall: {
|
|
260
|
+
letterSpacing: number;
|
|
261
|
+
lineHeight: number;
|
|
262
|
+
fontSize: number;
|
|
263
|
+
fontFamily: string;
|
|
264
|
+
};
|
|
265
|
+
bodyLarge: {
|
|
266
|
+
letterSpacing: number;
|
|
267
|
+
lineHeight: number;
|
|
268
|
+
fontSize: number;
|
|
269
|
+
fontFamily: string;
|
|
270
|
+
};
|
|
271
|
+
bodyMedium: {
|
|
272
|
+
letterSpacing: number;
|
|
273
|
+
lineHeight: number;
|
|
274
|
+
fontSize: number;
|
|
275
|
+
fontFamily: string;
|
|
276
|
+
};
|
|
277
|
+
bodySmall: {
|
|
278
|
+
letterSpacing: number;
|
|
279
|
+
lineHeight: number;
|
|
280
|
+
fontSize: number;
|
|
281
|
+
fontFamily: string;
|
|
282
|
+
};
|
|
283
|
+
default: {
|
|
284
|
+
fontFamily: string;
|
|
285
|
+
letterSpacing: number;
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
export declare const MD3Colors: {
|
|
292
|
+
primary100: string;
|
|
293
|
+
primary99: string;
|
|
294
|
+
primary95: string;
|
|
295
|
+
primary90: string;
|
|
296
|
+
primary80: string;
|
|
297
|
+
primary70: string;
|
|
298
|
+
primary60: string;
|
|
299
|
+
primary50: string;
|
|
300
|
+
primary40: string;
|
|
301
|
+
primary30: string;
|
|
302
|
+
primary20: string;
|
|
303
|
+
primary10: string;
|
|
304
|
+
primary0: string;
|
|
305
|
+
secondary100: string;
|
|
306
|
+
secondary99: string;
|
|
307
|
+
secondary95: string;
|
|
308
|
+
secondary90: string;
|
|
309
|
+
secondary80: string;
|
|
310
|
+
secondary70: string;
|
|
311
|
+
secondary60: string;
|
|
312
|
+
secondary50: string;
|
|
313
|
+
secondary40: string;
|
|
314
|
+
secondary30: string;
|
|
315
|
+
secondary20: string;
|
|
316
|
+
secondary10: string;
|
|
317
|
+
secondary0: string;
|
|
318
|
+
tertiary100: string;
|
|
319
|
+
tertiary99: string;
|
|
320
|
+
tertiary95: string;
|
|
321
|
+
tertiary90: string;
|
|
322
|
+
tertiary80: string;
|
|
323
|
+
tertiary70: string;
|
|
324
|
+
tertiary60: string;
|
|
325
|
+
tertiary50: string;
|
|
326
|
+
tertiary40: string;
|
|
327
|
+
tertiary30: string;
|
|
328
|
+
tertiary20: string;
|
|
329
|
+
tertiary10: string;
|
|
330
|
+
tertiary0: string;
|
|
331
|
+
neutral100: string;
|
|
332
|
+
neutral99: string;
|
|
333
|
+
neutral95: string;
|
|
334
|
+
neutral90: string;
|
|
335
|
+
neutral80: string;
|
|
336
|
+
neutral70: string;
|
|
337
|
+
neutral60: string;
|
|
338
|
+
neutral50: string;
|
|
339
|
+
neutral40: string;
|
|
340
|
+
neutral30: string;
|
|
341
|
+
neutral20: string;
|
|
342
|
+
neutral10: string;
|
|
343
|
+
neutral0: string;
|
|
344
|
+
neutralVariant100: string;
|
|
345
|
+
neutralVariant99: string;
|
|
346
|
+
neutralVariant95: string;
|
|
347
|
+
neutralVariant90: string;
|
|
348
|
+
neutralVariant80: string;
|
|
349
|
+
neutralVariant70: string;
|
|
350
|
+
neutralVariant60: string;
|
|
351
|
+
neutralVariant50: string;
|
|
352
|
+
neutralVariant40: string;
|
|
353
|
+
neutralVariant30: string;
|
|
354
|
+
neutralVariant20: string;
|
|
355
|
+
neutralVariant10: string;
|
|
356
|
+
neutralVariant0: string;
|
|
357
|
+
error100: string;
|
|
358
|
+
error99: string;
|
|
359
|
+
error95: string;
|
|
360
|
+
error90: string;
|
|
361
|
+
error80: string;
|
|
362
|
+
error70: string;
|
|
363
|
+
error60: string;
|
|
364
|
+
error50: string;
|
|
365
|
+
error40: string;
|
|
366
|
+
error30: string;
|
|
367
|
+
error20: string;
|
|
368
|
+
error10: string;
|
|
369
|
+
error0: string;
|
|
370
|
+
};
|
|
371
|
+
//# sourceMappingURL=tokens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["../../../../src/theme/tokens.ts"],"names":[],"mappings":"AAyGA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4FrB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOlB,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAc,CAAC"}
|