@ziky/ui 0.1.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.
Files changed (83) hide show
  1. package/README.md +34 -0
  2. package/dist/index.d.ts +20 -0
  3. package/dist/index.d.ts.map +1 -0
  4. package/dist/index.js +50 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/layout/AppConfig.d.ts +4 -0
  7. package/dist/layout/AppConfig.d.ts.map +1 -0
  8. package/dist/layout/AppConfig.js +83 -0
  9. package/dist/layout/AppConfig.js.map +1 -0
  10. package/dist/layout/AppFooter.d.ts +3 -0
  11. package/dist/layout/AppFooter.d.ts.map +1 -0
  12. package/dist/layout/AppFooter.js +11 -0
  13. package/dist/layout/AppFooter.js.map +1 -0
  14. package/dist/layout/AppMenu.d.ts +7 -0
  15. package/dist/layout/AppMenu.d.ts.map +1 -0
  16. package/dist/layout/AppMenu.js +16 -0
  17. package/dist/layout/AppMenu.js.map +1 -0
  18. package/dist/layout/AppMenuitem.d.ts +4 -0
  19. package/dist/layout/AppMenuitem.d.ts.map +1 -0
  20. package/dist/layout/AppMenuitem.js +55 -0
  21. package/dist/layout/AppMenuitem.js.map +1 -0
  22. package/dist/layout/AppSidebar.d.ts +7 -0
  23. package/dist/layout/AppSidebar.d.ts.map +1 -0
  24. package/dist/layout/AppSidebar.js +12 -0
  25. package/dist/layout/AppSidebar.js.map +1 -0
  26. package/dist/layout/AppTopbar.d.ts +5 -0
  27. package/dist/layout/AppTopbar.d.ts.map +1 -0
  28. package/dist/layout/AppTopbar.js +93 -0
  29. package/dist/layout/AppTopbar.js.map +1 -0
  30. package/dist/layout/RidinAdminLayout.d.ts +4 -0
  31. package/dist/layout/RidinAdminLayout.d.ts.map +1 -0
  32. package/dist/layout/RidinAdminLayout.js +9 -0
  33. package/dist/layout/RidinAdminLayout.js.map +1 -0
  34. package/dist/layout/RidinAdminLayoutContext.d.ts +3 -0
  35. package/dist/layout/RidinAdminLayoutContext.d.ts.map +1 -0
  36. package/dist/layout/RidinAdminLayoutContext.js +7 -0
  37. package/dist/layout/RidinAdminLayoutContext.js.map +1 -0
  38. package/dist/layout/SakaiLayout.d.ts +4 -0
  39. package/dist/layout/SakaiLayout.d.ts.map +1 -0
  40. package/dist/layout/SakaiLayout.js +13 -0
  41. package/dist/layout/SakaiLayout.js.map +1 -0
  42. package/dist/layout/context/layoutcontext.d.ts +5 -0
  43. package/dist/layout/context/layoutcontext.d.ts.map +1 -0
  44. package/dist/layout/context/layoutcontext.js +67 -0
  45. package/dist/layout/context/layoutcontext.js.map +1 -0
  46. package/dist/layout/context/menucontext.d.ts +5 -0
  47. package/dist/layout/context/menucontext.d.ts.map +1 -0
  48. package/dist/layout/context/menucontext.js +16 -0
  49. package/dist/layout/context/menucontext.js.map +1 -0
  50. package/dist/layout/layout.d.ts +8 -0
  51. package/dist/layout/layout.d.ts.map +1 -0
  52. package/dist/layout/layout.js +146 -0
  53. package/dist/layout/layout.js.map +1 -0
  54. package/dist/menu/adminMenu.d.ts +30 -0
  55. package/dist/menu/adminMenu.d.ts.map +1 -0
  56. package/dist/menu/adminMenu.js +65 -0
  57. package/dist/menu/adminMenu.js.map +1 -0
  58. package/dist/providers/RidinProviders.d.ts +5 -0
  59. package/dist/providers/RidinProviders.d.ts.map +1 -0
  60. package/dist/providers/RidinProviders.js +12 -0
  61. package/dist/providers/RidinProviders.js.map +1 -0
  62. package/dist/styles/index.d.ts +6 -0
  63. package/dist/styles/index.d.ts.map +1 -0
  64. package/dist/styles/index.js +8 -0
  65. package/dist/styles/index.js.map +1 -0
  66. package/dist/styles/index.ts +5 -0
  67. package/dist/styles/layout/_config.scss +54 -0
  68. package/dist/styles/layout/_content.scss +17 -0
  69. package/dist/styles/layout/_footer.scss +10 -0
  70. package/dist/styles/layout/_main.scss +27 -0
  71. package/dist/styles/layout/_menu.scss +159 -0
  72. package/dist/styles/layout/_mixins.scss +13 -0
  73. package/dist/styles/layout/_responsive.scss +101 -0
  74. package/dist/styles/layout/_topbar.scss +152 -0
  75. package/dist/styles/layout/_typography.scss +65 -0
  76. package/dist/styles/layout/_utils.scss +40 -0
  77. package/dist/styles/layout/_variables.scss +3 -0
  78. package/dist/styles/layout/layout.scss +11 -0
  79. package/dist/types.d.ts +89 -0
  80. package/dist/types.d.ts.map +1 -0
  81. package/dist/types.js +3 -0
  82. package/dist/types.js.map +1 -0
  83. package/package.json +57 -0
@@ -0,0 +1,159 @@
1
+ @use './_variables' as vars;
2
+ @use './_mixins' as mixins;
3
+
4
+ .layout-sidebar {
5
+ position: fixed;
6
+ width: 300px;
7
+ height: calc(100vh - 9rem);
8
+ z-index: 999;
9
+ overflow-y: auto;
10
+ user-select: none;
11
+ top: 7rem;
12
+ left: 2rem;
13
+ transition: transform vars.$transitionDuration, left vars.$transitionDuration;
14
+ background-color: var(--surface-overlay);
15
+ border-radius: vars.$borderRadius;
16
+ padding: 0.5rem 1.5rem;
17
+ box-shadow: 0px 3px 5px rgba(0, 0, 0, .02), 0px 0px 2px rgba(0, 0, 0, .05), 0px 1px 4px rgba(0, 0, 0, .08);
18
+ }
19
+
20
+ .layout-menu {
21
+ margin: 0;
22
+ padding: 0;
23
+ list-style-type: none;
24
+ user-select: none;
25
+
26
+ .layout-root-menuitem {
27
+ >.layout-menuitem-root-text {
28
+ font-size: .857rem;
29
+ text-transform: uppercase;
30
+ font-weight: 700;
31
+ color: var(--surface-900);
32
+ margin: .75rem 0;
33
+ }
34
+
35
+ > a {
36
+ display: none;
37
+ }
38
+ }
39
+
40
+ li.active-menuitem {
41
+ > a {
42
+ .layout-submenu-toggler {
43
+ transform: rotate(-180deg);
44
+ }
45
+ }
46
+
47
+ > ul {
48
+ max-height: auto;
49
+ }
50
+ }
51
+
52
+ ul {
53
+ margin: 0;
54
+ padding: 0;
55
+ list-style-type: none;
56
+
57
+ a {
58
+ display: flex;
59
+ align-items: center;
60
+ position: relative;
61
+ outline: 0 none;
62
+ color: var(--text-color);
63
+ cursor: pointer;
64
+ padding: .75rem 1rem;
65
+ border-radius: vars.$borderRadius;
66
+ transition: background-color vars.$transitionDuration, box-shadow vars.$transitionDuration;
67
+
68
+ .layout-menuitem-icon {
69
+ margin-right: .5rem;
70
+ }
71
+
72
+ .layout-submenu-toggler {
73
+ font-size: 75%;
74
+ margin-left: auto;
75
+ transition: transform vars.$transitionDuration;
76
+ }
77
+
78
+ &.rotated-icon {
79
+ .layout-menuitem-icon {
80
+ transform: rotate(90deg);
81
+ }
82
+ }
83
+
84
+ &.active-route {
85
+ font-weight: 700;
86
+ color: var(--primary-color);
87
+ }
88
+
89
+ &:hover {
90
+ background-color: var(--surface-hover);
91
+ }
92
+
93
+ &:focus {
94
+ @include mixins.focused-inset();
95
+ }
96
+ }
97
+
98
+ ul {
99
+ overflow: hidden;
100
+ max-height: 0;
101
+ border-radius: vars.$borderRadius;
102
+
103
+ li {
104
+ a {
105
+ margin-left: 1rem;
106
+ }
107
+
108
+ li {
109
+ a {
110
+ margin-left: 2rem;
111
+ }
112
+
113
+ li {
114
+ a {
115
+ margin-left: 2.5rem;
116
+ }
117
+
118
+ li {
119
+ a {
120
+ margin-left: 3rem;
121
+ }
122
+
123
+ li {
124
+ a {
125
+ margin-left: 3.5rem;
126
+ }
127
+
128
+ li {
129
+ a {
130
+ margin-left: 4rem;
131
+ }
132
+ }
133
+ }
134
+ }
135
+ }
136
+ }
137
+ }
138
+ }
139
+ }
140
+ }
141
+
142
+ .layout-submenu-enter-active {
143
+ max-height: 1000px !important;
144
+ transition: max-height 1s ease-in-out;
145
+ }
146
+
147
+ .layout-submenu-enter-done {
148
+ max-height: 1000px !important;
149
+ }
150
+
151
+ .layout-submenu-exit {
152
+ max-height: 1000px !important;
153
+ }
154
+
155
+ .layout-submenu-exit-active {
156
+ overflow: hidden;
157
+ max-height: 0 !important;
158
+ transition: max-height 0.45s cubic-bezier(0, 1, 0, 1);
159
+ }
@@ -0,0 +1,13 @@
1
+ @mixin focused() {
2
+ outline: 0 none;
3
+ outline-offset: 0;
4
+ transition: box-shadow .2s;
5
+ box-shadow: var(--focus-ring);
6
+ }
7
+
8
+ @mixin focused-inset() {
9
+ outline: 0 none;
10
+ outline-offset: 0;
11
+ transition: box-shadow .2s;
12
+ box-shadow: inset var(--focus-ring);
13
+ }
@@ -0,0 +1,101 @@
1
+ @use './_variables' as vars;
2
+
3
+ @media screen and (min-width: 1960px) {
4
+ .layout-main, .landing-wrapper {
5
+ width: 1504px;
6
+ margin-left: auto !important;
7
+ margin-right: auto !important;
8
+ }
9
+ }
10
+
11
+ @media (min-width: 992px) {
12
+ .layout-wrapper {
13
+ &.layout-overlay {
14
+ .layout-main-container {
15
+ margin-left: 0;
16
+ padding-left: 2rem;
17
+ }
18
+
19
+ .layout-sidebar {
20
+ transform: translateX(-100%);
21
+ left: 0;
22
+ top: 0;
23
+ height: 100vh;
24
+ border-top-left-radius: 0;
25
+ border-bottom-left-radius: 0;
26
+ }
27
+
28
+ &.layout-overlay-active {
29
+ .layout-sidebar {
30
+ transform: translateX(0);
31
+ }
32
+ }
33
+ }
34
+
35
+ &.layout-static {
36
+ .layout-main-container {
37
+ margin-left: 300px;
38
+ }
39
+
40
+ &.layout-static-inactive {
41
+ .layout-sidebar {
42
+ transform: translateX(-100%);
43
+ left: 0;
44
+ }
45
+
46
+ .layout-main-container {
47
+ margin-left: 0;
48
+ padding-left: 2rem;
49
+ }
50
+ }
51
+ }
52
+
53
+ .layout-mask {
54
+ display: none;
55
+ }
56
+ }
57
+ }
58
+
59
+ @media (max-width: 991px) {
60
+ .blocked-scroll {
61
+ overflow: hidden;
62
+ }
63
+
64
+ .layout-wrapper {
65
+ .layout-main-container {
66
+ margin-left: 0;
67
+ padding-left: 2rem;
68
+ }
69
+
70
+ .layout-sidebar {
71
+ transform: translateX(-100%);
72
+ left: 0;
73
+ top: 0;
74
+ height: 100vh;
75
+ border-top-left-radius: 0;
76
+ border-bottom-left-radius: 0;
77
+ }
78
+
79
+ .layout-mask {
80
+ display: none;
81
+ position: fixed;
82
+ top: 0;
83
+ left: 0;
84
+ z-index: 998;
85
+ width: 100%;
86
+ height: 100%;
87
+ background-color: var(--maskbg);
88
+ }
89
+
90
+ &.layout-mobile-active {
91
+ .layout-sidebar {
92
+ transform: translateX(0);
93
+ }
94
+
95
+ .layout-mask {
96
+ display: block;
97
+ animation: fadein vars.$transitionDuration;
98
+ }
99
+ }
100
+ }
101
+ }
@@ -0,0 +1,152 @@
1
+ @use './_variables' as vars;
2
+ @use './_mixins' as mixins;
3
+
4
+ .layout-topbar {
5
+ position: fixed;
6
+ height: 5rem;
7
+ z-index: 997;
8
+ left: 0;
9
+ top: 0;
10
+ width: 100%;
11
+ padding: 0 2rem;
12
+ background-color: var(--surface-card);
13
+ transition: left vars.$transitionDuration;
14
+ display: flex;
15
+ align-items: center;
16
+ box-shadow: 0px 3px 5px rgba(0,0,0,.02), 0px 0px 2px rgba(0,0,0,.05), 0px 1px 4px rgba(0,0,0,.08);
17
+
18
+ .layout-topbar-logo {
19
+ display: flex;
20
+ align-items: center;
21
+ color: var(--surface-900);
22
+ font-size: 1.5rem;
23
+ font-weight: 500;
24
+ width: 300px;
25
+ border-radius: 12px;
26
+
27
+ img {
28
+ height: 2.5rem;
29
+ margin-right: .5rem;
30
+ }
31
+
32
+ &:focus {
33
+ @include mixins.focused();
34
+ }
35
+ }
36
+
37
+ .layout-topbar-button {
38
+ display: inline-flex;
39
+ justify-content: center;
40
+ align-items: center;
41
+ position: relative;
42
+ color: var(--text-color-secondary);
43
+ border-radius: 50%;
44
+ width: 3rem;
45
+ height: 3rem;
46
+ cursor: pointer;
47
+ transition: background-color vars.$transitionDuration;
48
+
49
+ &:hover {
50
+ color: var(--text-color);
51
+ background-color: var(--surface-hover);
52
+ }
53
+
54
+ &:focus {
55
+ @include mixins.focused();
56
+ }
57
+
58
+ i {
59
+ font-size: 1.5rem;
60
+ }
61
+
62
+ span {
63
+ font-size: 1rem;
64
+ display: none;
65
+ }
66
+ }
67
+
68
+ .layout-menu-button {
69
+ margin-left: 2rem;
70
+ }
71
+
72
+ .layout-topbar-menu-button {
73
+ display: none;
74
+
75
+ i {
76
+ font-size: 1.25rem;
77
+ }
78
+ }
79
+
80
+ .layout-topbar-menu {
81
+ margin: 0 0 0 auto;
82
+ padding: 0;
83
+ list-style: none;
84
+ display: flex;
85
+
86
+ .layout-topbar-button {
87
+ margin-left: 1rem;
88
+ }
89
+ }
90
+ }
91
+
92
+ @media (max-width: 991px) {
93
+ .layout-topbar {
94
+ justify-content: space-between;
95
+
96
+ .layout-topbar-logo {
97
+ width: auto;
98
+ order: 2;
99
+ }
100
+
101
+ .layout-menu-button {
102
+ margin-left: 0;
103
+ order: 1;
104
+ }
105
+
106
+ .layout-topbar-menu-button {
107
+ display: inline-flex;
108
+ margin-left: 0;
109
+ order: 3;
110
+ }
111
+
112
+ .layout-topbar-menu {
113
+ margin-left: 0;
114
+ position: absolute;
115
+ flex-direction: column;
116
+ background-color: var(--surface-overlay);
117
+ box-shadow: 0px 3px 5px rgba(0,0,0,.02), 0px 0px 2px rgba(0,0,0,.05), 0px 1px 4px rgba(0,0,0,.08);
118
+ border-radius: 12px;
119
+ padding: 1rem;
120
+ right: 2rem;
121
+ top: 5rem;
122
+ min-width: 15rem;
123
+ display: none;
124
+ -webkit-animation: scalein 0.15s linear;
125
+ animation: scalein 0.15s linear;
126
+
127
+ &.layout-topbar-menu-mobile-active {
128
+ display: block
129
+ }
130
+
131
+ .layout-topbar-button {
132
+ margin-left: 0;
133
+ display: flex;
134
+ width: 100%;
135
+ height: auto;
136
+ justify-content: flex-start;
137
+ border-radius: 12px;
138
+ padding: 1rem;
139
+
140
+ i {
141
+ font-size: 1rem;
142
+ margin-right: .5rem;
143
+ }
144
+
145
+ span {
146
+ font-weight: medium;
147
+ display: block;
148
+ }
149
+ }
150
+ }
151
+ }
152
+ }
@@ -0,0 +1,65 @@
1
+ @use './_variables' as vars;
2
+
3
+ h1, h2, h3, h4, h5, h6 {
4
+ margin: 1.5rem 0 1rem 0;
5
+ font-family: inherit;
6
+ font-weight: 500;
7
+ line-height: 1.2;
8
+ color: var(--surface-900);
9
+
10
+ &:first-child {
11
+ margin-top: 0;
12
+ }
13
+ }
14
+
15
+ h1 {
16
+ font-size: 2.5rem;
17
+ }
18
+
19
+ h2 {
20
+ font-size: 2rem;
21
+ }
22
+
23
+ h3 {
24
+ font-size: 1.75rem;
25
+ }
26
+
27
+ h4 {
28
+ font-size: 1.5rem;
29
+ }
30
+
31
+ h5 {
32
+ font-size: 1.25rem;
33
+ }
34
+
35
+ h6 {
36
+ font-size: 1rem;
37
+ }
38
+
39
+ mark {
40
+ background: #FFF8E1;
41
+ padding: .25rem .4rem;
42
+ border-radius: vars.$borderRadius;
43
+ font-family: monospace;
44
+ }
45
+
46
+ blockquote {
47
+ margin: 1rem 0;
48
+ padding: 0 2rem;
49
+ border-left: 4px solid #90A4AE;
50
+ }
51
+
52
+ hr {
53
+ border-top: solid var(--surface-border);
54
+ border-width: 1px 0 0 0;
55
+ margin: 1rem 0;
56
+ }
57
+
58
+ p {
59
+ margin: 0 0 1rem 0;
60
+ line-height: 1.5;
61
+
62
+ &:last-child {
63
+ margin-bottom: 0;
64
+ }
65
+ }
@@ -0,0 +1,40 @@
1
+ @use './_variables' as vars;
2
+
3
+ /* Utils */
4
+ .clearfix:after {
5
+ content: " ";
6
+ display: block;
7
+ clear: both;
8
+ }
9
+
10
+ .card {
11
+ background: var(--surface-card);
12
+ border: 1px solid var(--surface-border);
13
+ padding: 2rem;
14
+ margin-bottom: 2rem;
15
+ box-shadow: var(--card-shadow);
16
+ border-radius: vars.$borderRadius;
17
+
18
+ &:last-child {
19
+ margin-bottom: 0;
20
+ }
21
+ }
22
+
23
+ .p-toast {
24
+ &.p-toast-top-right,
25
+ &.p-toast-top-left,
26
+ &.p-toast-top-center {
27
+ top: 100px;
28
+ }
29
+ }
30
+
31
+ .global-loading-overlay {
32
+ position: fixed;
33
+ inset: 0;
34
+ display: flex;
35
+ align-items: center;
36
+ justify-content: center;
37
+ background: rgba(255, 255, 255, 0.6);
38
+ backdrop-filter: blur(1px);
39
+ z-index: 9999;
40
+ }
@@ -0,0 +1,3 @@
1
+ /* General */
2
+ $borderRadius:12px; /* border radius of layout element e.g. card, sidebar */
3
+ $transitionDuration:.2s; /* transition duration of layout elements e.g. sidebar, overlay menus */
@@ -0,0 +1,11 @@
1
+ @use './_variables' as *;
2
+ @use "./_mixins" as *;
3
+ @use "./_main" as *;
4
+ @use "./_topbar" as *;
5
+ @use "./_menu" as *;
6
+ @use "./_config" as *;
7
+ @use "./_content" as *;
8
+ @use "./_footer" as *;
9
+ @use "./_responsive" as *;
10
+ @use "./_utils" as *;
11
+ @use "./_typography" as *;
@@ -0,0 +1,89 @@
1
+ import type { Dispatch, SetStateAction, HTMLAttributeAnchorTarget, MutableRefObject, ReactNode } from "react";
2
+ export type ChildContainerProps = {
3
+ children: ReactNode;
4
+ };
5
+ export type LayoutState = {
6
+ staticMenuDesktopInactive: boolean;
7
+ overlayMenuActive: boolean;
8
+ profileSidebarVisible: boolean;
9
+ configSidebarVisible: boolean;
10
+ staticMenuMobileActive: boolean;
11
+ menuHoverActive: boolean;
12
+ };
13
+ export type LayoutConfig = {
14
+ ripple: boolean;
15
+ inputStyle: string;
16
+ menuMode: string;
17
+ colorScheme: string;
18
+ theme: string;
19
+ scale: number;
20
+ };
21
+ export interface LayoutContextProps {
22
+ layoutConfig: LayoutConfig;
23
+ setLayoutConfig: Dispatch<SetStateAction<LayoutConfig>>;
24
+ layoutState: LayoutState;
25
+ setLayoutState: Dispatch<SetStateAction<LayoutState>>;
26
+ onMenuToggle: () => void;
27
+ showProfileSidebar: () => void;
28
+ }
29
+ export interface MenuContextProps {
30
+ activeMenu: string;
31
+ setActiveMenu: Dispatch<SetStateAction<string>>;
32
+ }
33
+ export interface AppConfigProps {
34
+ simple?: boolean;
35
+ }
36
+ export type NodeRef = MutableRefObject<ReactNode>;
37
+ export interface AppTopbarRef {
38
+ menubutton?: HTMLButtonElement | null;
39
+ topbarmenu?: HTMLDivElement | null;
40
+ topbarmenubutton?: HTMLButtonElement | null;
41
+ }
42
+ type CommandProps = {
43
+ originalEvent: React.MouseEvent<HTMLAnchorElement, MouseEvent>;
44
+ item: AppMenuItem;
45
+ };
46
+ export interface AppMenuItem {
47
+ label: string;
48
+ icon?: string;
49
+ items?: AppMenuItem[];
50
+ to?: string;
51
+ url?: string;
52
+ target?: HTMLAttributeAnchorTarget;
53
+ seperator?: boolean;
54
+ badge?: "UPDATED" | "NEW";
55
+ badgeClass?: string;
56
+ class?: string;
57
+ preventExact?: boolean;
58
+ visible?: boolean;
59
+ disabled?: boolean;
60
+ replaceUrl?: boolean;
61
+ command?: ({ originalEvent, item }: CommandProps) => void;
62
+ }
63
+ export interface AppMenuItemProps {
64
+ item: AppMenuItem;
65
+ parentKey?: string;
66
+ index?: number;
67
+ root?: boolean;
68
+ className?: string;
69
+ }
70
+ export type AppUser = {
71
+ userId?: string;
72
+ email?: string;
73
+ fullName?: string;
74
+ avatarUrl?: string;
75
+ };
76
+ export type AppTopbarProps = {
77
+ t?: (key: string) => string;
78
+ user?: AppUser;
79
+ logoText?: string;
80
+ logoTo?: string;
81
+ profileTo?: string;
82
+ settingsTo?: string;
83
+ signOutTo?: string;
84
+ onSignOut?: () => void;
85
+ onAvatarUpload?: (file: File) => Promise<string>;
86
+ onAvatarSaved?: (avatarUrl: string) => Promise<void> | void;
87
+ };
88
+ export {};
89
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,QAAQ,EACR,cAAc,EACd,yBAAyB,EACzB,gBAAgB,EAChB,SAAS,EACV,MAAM,OAAO,CAAC;AAEf,MAAM,MAAM,mBAAmB,GAAG;IAChC,QAAQ,EAAE,SAAS,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,yBAAyB,EAAE,OAAO,CAAC;IACnC,iBAAiB,EAAE,OAAO,CAAC;IAC3B,qBAAqB,EAAE,OAAO,CAAC;IAC/B,oBAAoB,EAAE,OAAO,CAAC;IAC9B,sBAAsB,EAAE,OAAO,CAAC;IAChC,eAAe,EAAE,OAAO,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,MAAM,EAAE,OAAO,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,WAAW,kBAAkB;IACjC,YAAY,EAAE,YAAY,CAAC;IAC3B,eAAe,EAAE,QAAQ,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC,CAAC;IACxD,WAAW,EAAE,WAAW,CAAC;IACzB,cAAc,EAAE,QAAQ,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC,CAAC;IACtD,YAAY,EAAE,MAAM,IAAI,CAAC;IACzB,kBAAkB,EAAE,MAAM,IAAI,CAAC;CAChC;AAED,MAAM,WAAW,gBAAgB;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,QAAQ,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC;CACjD;AAED,MAAM,WAAW,cAAc;IAC7B,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,MAAM,OAAO,GAAG,gBAAgB,CAAC,SAAS,CAAC,CAAC;AAClD,MAAM,WAAW,YAAY;IAC3B,UAAU,CAAC,EAAE,iBAAiB,GAAG,IAAI,CAAC;IACtC,UAAU,CAAC,EAAE,cAAc,GAAG,IAAI,CAAC;IACnC,gBAAgB,CAAC,EAAE,iBAAiB,GAAG,IAAI,CAAC;CAC7C;AAED,KAAK,YAAY,GAAG;IAClB,aAAa,EAAE,KAAK,CAAC,UAAU,CAAC,iBAAiB,EAAE,UAAU,CAAC,CAAC;IAC/D,IAAI,EAAE,WAAW,CAAC;CACnB,CAAC;AAEF,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,WAAW,EAAE,CAAC;IACtB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,yBAAyB,CAAC;IACnC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,KAAK,CAAC,EAAE,SAAS,GAAG,KAAK,CAAC;IAC1B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,OAAO,CAAC,EAAE,CAAC,EAAE,aAAa,EAAE,IAAI,EAAE,EAAE,YAAY,KAAK,IAAI,CAAC;CAC3D;AAED,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,WAAW,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,MAAM,OAAO,GAAG;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IAC3B,CAAC,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC;IAC5B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;IACvB,cAAc,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;IACjD,aAAa,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;CAC7D,CAAC"}
package/dist/types.js ADDED
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":""}