rbro-tat-uds 1.0.15 → 1.0.16
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/components/BreadcrumbItem/BreadcrumbItem.d.ts +11 -0
- package/dist/components/BreadcrumbItem/index.d.ts +1 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +8 -0
- package/dist/components/Breadcrumbs/index.d.ts +1 -0
- package/dist/components/Button/Button.d.ts +15 -0
- package/dist/components/Button/index.d.ts +1 -0
- package/dist/components/Checkbox/Checkbox.d.ts +8 -0
- package/dist/components/Checkbox/index.d.ts +1 -0
- package/dist/components/ConfigurationSaveInfo/ConfigurationSaveInfo.d.ts +9 -0
- package/dist/components/ConfigurationSaveInfo/index.d.ts +1 -0
- package/dist/components/Container/Container.d.ts +14 -0
- package/dist/components/Container/index.d.ts +1 -0
- package/dist/components/Content/Content.d.ts +8 -0
- package/dist/components/Content/index.d.ts +1 -0
- package/dist/components/Flex/Flex.d.ts +31 -0
- package/dist/components/Flex/index.d.ts +1 -0
- package/dist/components/FormField/FormField.d.ts +15 -0
- package/dist/components/FormField/index.d.ts +1 -0
- package/dist/components/Icon/Icon.d.ts +4 -0
- package/dist/components/Icon/Icon.types.d.ts +8 -0
- package/dist/components/Icon/IconsList.d.ts +14 -0
- package/dist/components/Icon/index.d.ts +1 -0
- package/dist/components/IconButton/IconButton.d.ts +12 -0
- package/dist/components/IconButton/index.d.ts +1 -0
- package/dist/components/LabeledText/LabeledText.d.ts +13 -0
- package/dist/components/LabeledText/index.d.ts +1 -0
- package/dist/components/Layout/Layout.d.ts +8 -0
- package/dist/components/Layout/index.d.ts +1 -0
- package/dist/components/Logo/Logo.d.ts +7 -0
- package/dist/components/Logo/index.d.ts +1 -0
- package/dist/components/ProductPageTitle/ProductPageTitle.d.ts +8 -0
- package/dist/components/ProductPageTitle/index.d.ts +1 -0
- package/dist/components/ProductShortcut/ProductShortcut.d.ts +11 -0
- package/dist/components/ProductShortcut/index.d.ts +1 -0
- package/dist/components/Products/ProductHeader/ProductHeader.d.ts +0 -0
- package/dist/components/Section/Section.d.ts +13 -0
- package/dist/components/Section/index.d.ts +1 -0
- package/dist/components/SegmentedTabs/SegmentedTabs.d.ts +13 -0
- package/dist/components/SegmentedTabs/index.d.ts +1 -0
- package/dist/components/Sidebar/Sidebar.d.ts +19 -0
- package/dist/components/Sidebar/index.d.ts +1 -0
- package/dist/components/SidebarItem/SidebarItem.d.ts +10 -0
- package/dist/components/SidebarItem/index.d.ts +1 -0
- package/dist/components/Tab/Tab.d.ts +11 -0
- package/dist/components/Tab/index.d.ts +1 -0
- package/dist/components/index.d.ts +20 -0
- package/dist/index.cjs.js +1084 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +3306 -0
- package/dist/index.es.js.map +1 -0
- package/dist/style.css +1 -0
- package/dist/utils/colors.d.ts +52 -0
- package/dist/utils/index.d.ts +1 -0
- package/package.json +1 -1
@@ -0,0 +1,52 @@
|
|
1
|
+
declare const colors: {
|
2
|
+
gray_30: string;
|
3
|
+
gray_60: string;
|
4
|
+
gray_100: string;
|
5
|
+
gray_150: string;
|
6
|
+
gray_200: string;
|
7
|
+
gray_300: string;
|
8
|
+
gray_400: string;
|
9
|
+
gray_500: string;
|
10
|
+
gray_600: string;
|
11
|
+
gray_700: string;
|
12
|
+
gray_800: string;
|
13
|
+
gray_900: string;
|
14
|
+
gray_950: string;
|
15
|
+
gray_1000: string;
|
16
|
+
gray_1000_10: string;
|
17
|
+
accent_100: string;
|
18
|
+
accent_200: string;
|
19
|
+
accent_300: string;
|
20
|
+
accent_400: string;
|
21
|
+
accent_500: string;
|
22
|
+
accent_600: string;
|
23
|
+
accent_650: string;
|
24
|
+
accent_700: string;
|
25
|
+
accent_800: string;
|
26
|
+
accent_900: string;
|
27
|
+
accent_1000: string;
|
28
|
+
info_100: string;
|
29
|
+
info_150: string;
|
30
|
+
info_200: string;
|
31
|
+
info_400: string;
|
32
|
+
info_500: string;
|
33
|
+
info_600: string;
|
34
|
+
info_700: string;
|
35
|
+
info_800: string;
|
36
|
+
success_100: string;
|
37
|
+
success_600: string;
|
38
|
+
success_800: string;
|
39
|
+
warning_100: string;
|
40
|
+
warning_500: string;
|
41
|
+
warning_700: string;
|
42
|
+
danger_100: string;
|
43
|
+
danger_200: string;
|
44
|
+
danger_250: string;
|
45
|
+
danger_400: string;
|
46
|
+
danger_500: string;
|
47
|
+
danger_600: string;
|
48
|
+
danger_700: string;
|
49
|
+
white: string;
|
50
|
+
black: string;
|
51
|
+
};
|
52
|
+
export default colors;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as colors } from "./colors.ts";
|