@agility/plenum-ui 2.0.0-rc47 → 2.0.0-rc49
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/.eslintrc.json +6 -6
- package/.prettierrc +13 -13
- package/.storybook/Layout.jsx +12 -12
- package/.storybook/head.tsx +4 -4
- package/.storybook/main.ts +18 -18
- package/.storybook/manager-head.html +1 -1
- package/.storybook/manager.ts +25 -25
- package/.storybook/plenumTheme.ts +8 -8
- package/.storybook/preview-head.html +3 -3
- package/.storybook/preview.tsx +28 -28
- package/.vscode/settings.json +3 -3
- package/README.md +271 -271
- package/app/globals.css +99 -99
- package/app/head.tsx +59 -59
- package/app/layout.tsx +28 -28
- package/app/page.tsx +7 -7
- package/build.js +45 -45
- package/dist/index.d.ts +232 -230
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/types/stories/molecules/inputs/select/Select.d.ts +2 -0
- package/local.sh +100 -100
- package/next.config.js +8 -8
- package/package.json +82 -82
- package/pages/api/hello.ts +13 -13
- package/postcss.config.js +6 -6
- package/rollup.config.mjs +41 -41
- package/scripts/create-component.js +97 -97
- package/stories/Introduction.mdx +314 -314
- package/stories/assets/stackalt.svg +1 -1
- package/stories/atoms/Avatar/Avatar.stories.tsx +96 -96
- package/stories/atoms/Avatar/Avatar.tsx +123 -123
- package/stories/atoms/Avatar/index.ts +3 -3
- package/stories/atoms/badges/Badge.tsx +127 -127
- package/stories/atoms/badges/Pill/Pill.stories.tsx +75 -75
- package/stories/atoms/badges/Rounded/Rounded.stories.tsx +75 -75
- package/stories/atoms/badges/index.ts +3 -3
- package/stories/atoms/buttons/Button/Alternative/Alternative.stories.ts +86 -86
- package/stories/atoms/buttons/Button/Button.tsx +232 -232
- package/stories/atoms/buttons/Button/Danger/Danger.stories.ts +90 -90
- package/stories/atoms/buttons/Button/Primary/Primary.stories.ts +97 -97
- package/stories/atoms/buttons/Button/Secondary/Secondary.stories.ts +93 -93
- package/stories/atoms/buttons/Button/defaultArgs.ts +9 -9
- package/stories/atoms/buttons/Button/index.ts +3 -3
- package/stories/atoms/buttons/Capsule/Alternative/Alternative.stories.ts +27 -27
- package/stories/atoms/buttons/Capsule/Capsule.tsx +88 -88
- package/stories/atoms/buttons/Capsule/Danger/Danger.stories.ts +27 -27
- package/stories/atoms/buttons/Capsule/Primary/Primary.stories.ts +27 -27
- package/stories/atoms/buttons/Capsule/Secondary/Secondary.stories.ts +27 -27
- package/stories/atoms/buttons/Capsule/index.ts +3 -3
- package/stories/atoms/buttons/FloatingActionButton/FloatingActionButton.stories.tsx +15 -15
- package/stories/atoms/buttons/FloatingActionButton/FloatingActionButton.tsx +22 -22
- package/stories/atoms/buttons/FloatingActionButton/index.tsx +3 -3
- package/stories/atoms/buttons/index.ts +4 -4
- package/stories/atoms/crumb/Crumb.stories.tsx +18 -18
- package/stories/atoms/crumb/Crumb.tsx +22 -22
- package/stories/atoms/crumb/index.tsx +3 -3
- package/stories/atoms/icons/DynamicIcon.stories.ts +43 -43
- package/stories/atoms/icons/DynamicIcon.tsx +90 -90
- package/stories/atoms/icons/IconWithShadow.stories.ts +43 -43
- package/stories/atoms/icons/IconWithShadow.tsx +16 -16
- package/stories/atoms/icons/TablerIcon.tsx +22 -22
- package/stories/atoms/icons/index.tsx +14 -14
- package/stories/atoms/icons/tablerIconNames.ts +4336 -4336
- package/stories/atoms/index.ts +46 -46
- package/stories/atoms/loaders/Loader.stories.ts +15 -15
- package/stories/atoms/loaders/Loader.tsx +21 -21
- package/stories/atoms/loaders/NProgress/RadialProgress.stories.tsx +19 -19
- package/stories/atoms/loaders/NProgress/RadialProgress.tsx +74 -74
- package/stories/atoms/loaders/NProgress/index.ts +3 -3
- package/stories/atoms/loaders/index.ts +4 -4
- package/stories/index.ts +136 -136
- package/stories/molecules/index.ts +51 -51
- package/stories/molecules/inputs/InputCounter/InputCounter.stories.tsx +18 -18
- package/stories/molecules/inputs/InputCounter/InputCounter.tsx +24 -24
- package/stories/molecules/inputs/InputCounter/index.tsx +3 -3
- package/stories/molecules/inputs/InputField/InputField.stories.tsx +29 -29
- package/stories/molecules/inputs/InputField/InputField.tsx +96 -96
- package/stories/molecules/inputs/InputField/index.tsx +3 -3
- package/stories/molecules/inputs/InputLabel/InputLabel.stories.tsx +19 -19
- package/stories/molecules/inputs/InputLabel/InputLabel.tsx +45 -45
- package/stories/molecules/inputs/InputLabel/index.tsx +3 -3
- package/stories/molecules/inputs/NestedInputButton/NestedInputButton.stories.tsx +52 -52
- package/stories/molecules/inputs/NestedInputButton/NestedInputButton.tsx +64 -64
- package/stories/molecules/inputs/NestedInputButton/index.tsx +3 -3
- package/stories/molecules/inputs/TextInput/TextInput.stories.tsx +32 -32
- package/stories/molecules/inputs/TextInput/TextInput.tsx +165 -165
- package/stories/molecules/inputs/TextInput/index.tsx +5 -5
- package/stories/molecules/inputs/checkbox/Checkbox.stories.ts +23 -23
- package/stories/molecules/inputs/checkbox/Checkbox.tsx +98 -98
- package/stories/molecules/inputs/checkbox/index.ts +3 -3
- package/stories/molecules/inputs/combobox/ComboBox.stories.ts +41 -41
- package/stories/molecules/inputs/combobox/ComboBox.tsx +185 -185
- package/stories/molecules/inputs/combobox/index.ts +3 -3
- package/stories/molecules/inputs/index.ts +38 -38
- package/stories/molecules/inputs/radio/Radio.stories.ts +27 -27
- package/stories/molecules/inputs/radio/Radio.tsx +92 -92
- package/stories/molecules/inputs/radio/index.ts +3 -3
- package/stories/molecules/inputs/select/Select.stories.ts +23 -23
- package/stories/molecules/inputs/select/Select.tsx +108 -100
- package/stories/molecules/inputs/select/index.ts +3 -3
- package/stories/molecules/inputs/textArea/TextArea.stories.ts +22 -22
- package/stories/molecules/inputs/textArea/TextArea.tsx +158 -158
- package/stories/molecules/inputs/textArea/index.ts +3 -3
- package/stories/molecules/inputs/toggleSwitch/ToggleSwitch.stories.tsx +118 -118
- package/stories/molecules/inputs/toggleSwitch/ToggleSwitch.tsx +81 -81
- package/stories/molecules/inputs/toggleSwitch/index.ts +3 -3
- package/stories/molecules/tabs/Tabs.stories.tsx +18 -18
- package/stories/molecules/tabs/Tabs.tsx +22 -22
- package/stories/molecules/tabs/index.tsx +2 -2
- package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.stories.tsx +30 -30
- package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.tsx +66 -66
- package/stories/organisms/AnimatedLabelInput/index.tsx +3 -3
- package/stories/organisms/AnimatedLabelTextArea/AnimatedLabelTextArea.stories.tsx +26 -26
- package/stories/organisms/AnimatedLabelTextArea/AnimatedLabelTextArea.tsx +61 -61
- package/stories/organisms/AnimatedLabelTextArea/index.tsx +3 -3
- package/stories/organisms/ButtonDropdown/ButtonDropdown.stories.tsx +125 -125
- package/stories/organisms/ButtonDropdown/ButtonDropdown.tsx +86 -86
- package/stories/organisms/ButtonDropdown/index.tsx +3 -3
- package/stories/organisms/DropdownComponent/Dropdown.stories.tsx +73 -73
- package/stories/organisms/DropdownComponent/DropdownComponent.tsx +346 -346
- package/stories/organisms/DropdownComponent/dropdownItems.ts +122 -122
- package/stories/organisms/DropdownComponent/index.ts +4 -4
- package/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder.stories.tsx +76 -76
- package/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder.tsx +52 -52
- package/stories/organisms/EmptySectionPlaceholder/index.tsx +4 -4
- package/stories/organisms/FormInputWithAddons/FormInputWithAddons.stories.tsx +29 -29
- package/stories/organisms/FormInputWithAddons/FormInputWithAddons.tsx +145 -145
- package/stories/organisms/FormInputWithAddons/index.tsx +3 -3
- package/stories/organisms/TextInputSelect/InputSelect.tsx +59 -59
- package/stories/organisms/TextInputSelect/TextInputSelect.stories.tsx +33 -33
- package/stories/organisms/TextInputSelect/TextInputSelect.tsx +186 -186
- package/stories/organisms/TextInputSelect/index.tsx +3 -3
- package/stories/organisms/index.ts +27 -27
- package/tailwind.config.js +192 -192
- package/tsconfig.json +29 -29
- package/tsconfig.lib.json +25 -25
- package/utils/types.d.ts +2 -2
- package/utils/types.ts +3 -3
- package/utils/useId.d.ts +1 -1
- package/utils/useId.tsx +16 -16
package/app/globals.css
CHANGED
|
@@ -1,99 +1,99 @@
|
|
|
1
|
-
@tailwind base;
|
|
2
|
-
@tailwind components;
|
|
3
|
-
@tailwind utilities;
|
|
4
|
-
@layer {
|
|
5
|
-
* {
|
|
6
|
-
/* set the default outline color on focus */
|
|
7
|
-
outline-color: #7933dd;
|
|
8
|
-
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
/*
|
|
12
|
-
vertical splitter on the InnerContainer component
|
|
13
|
-
|
|
14
|
-
.reflex-container.vertical > .reflex-splitter {
|
|
15
|
-
border-right: 1px solid #f9fafb;
|
|
16
|
-
border-left: 1px solid #f9fafb;
|
|
17
|
-
z-index: 2 !important;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.reflex-container.vertical > .reflex-splitter:hover {
|
|
21
|
-
border-right: 1px solid #eee;
|
|
22
|
-
border-left: 1px solid #eee;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.reflex-container.vertical > .reflex-splitter:active {
|
|
26
|
-
border-right: 1px solid #ddd;
|
|
27
|
-
border-left: 1px solid #ddd;
|
|
28
|
-
} */
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
/*
|
|
32
|
-
scroll bar overrides
|
|
33
|
-
*/
|
|
34
|
-
.scroll-black {
|
|
35
|
-
scrollbar-width: thin; /* "auto" or "thin" */
|
|
36
|
-
scrollbar-color: #aaa; /* scroll thumb and track */
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.scroll-black::-webkit-scrollbar {
|
|
40
|
-
width: 6px; /* width of the entire scrollbar */
|
|
41
|
-
height: 6px;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.scroll-black::-webkit-scrollbar-track {
|
|
45
|
-
background: 0; /* color of the tracking area */
|
|
46
|
-
}
|
|
47
|
-
.scroll-black::-webkit-scrollbar-thumb {
|
|
48
|
-
background-color: #aaa; /* color of the scroll thumb */
|
|
49
|
-
border-radius: 20px; /* roundness of the scroll thumb */
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.scroll-transparent {
|
|
53
|
-
scrollbar-width: thin; /* "auto" or "thin" */
|
|
54
|
-
scrollbar-color: #00000000; /* scroll thumb and track */
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.scroll-transparent::-webkit-scrollbar {
|
|
58
|
-
width: 6px; /* width of the entire scrollbar */
|
|
59
|
-
height: 6px;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.scroll-transparent::-webkit-scrollbar-track {
|
|
63
|
-
background: 0; /* color of the tracking area */
|
|
64
|
-
}
|
|
65
|
-
.scroll-transparent::-webkit-scrollbar-thumb {
|
|
66
|
-
background-color: #00000000; /* color of the scroll thumb */
|
|
67
|
-
border-radius: 20px; /* roundness of the scroll thumb */
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.scroll-none {
|
|
71
|
-
scrollbar-width: none; /* "auto" or "thin" */
|
|
72
|
-
scrollbar-color: #00000000; /* scroll thumb and track */
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.scroll-none::-webkit-scrollbar {
|
|
76
|
-
width: 0; /* width of the entire scrollbar */
|
|
77
|
-
height: 0;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.scroll-none::-webkit-scrollbar-track {
|
|
81
|
-
background: 0; /* color of the tracking area */
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
/* .scroll-none::-webkit-scrollbar-thumb {
|
|
85
|
-
} */
|
|
86
|
-
|
|
87
|
-
.scrollbar-gutter {
|
|
88
|
-
scrollbar-gutter: stable;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.content-graph g text {
|
|
92
|
-
font-weight: bold;
|
|
93
|
-
font-size: 13px !important;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
}
|
|
1
|
+
@tailwind base;
|
|
2
|
+
@tailwind components;
|
|
3
|
+
@tailwind utilities;
|
|
4
|
+
@layer {
|
|
5
|
+
* {
|
|
6
|
+
/* set the default outline color on focus */
|
|
7
|
+
outline-color: #7933dd;
|
|
8
|
+
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/*
|
|
12
|
+
vertical splitter on the InnerContainer component
|
|
13
|
+
|
|
14
|
+
.reflex-container.vertical > .reflex-splitter {
|
|
15
|
+
border-right: 1px solid #f9fafb;
|
|
16
|
+
border-left: 1px solid #f9fafb;
|
|
17
|
+
z-index: 2 !important;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.reflex-container.vertical > .reflex-splitter:hover {
|
|
21
|
+
border-right: 1px solid #eee;
|
|
22
|
+
border-left: 1px solid #eee;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.reflex-container.vertical > .reflex-splitter:active {
|
|
26
|
+
border-right: 1px solid #ddd;
|
|
27
|
+
border-left: 1px solid #ddd;
|
|
28
|
+
} */
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
/*
|
|
32
|
+
scroll bar overrides
|
|
33
|
+
*/
|
|
34
|
+
.scroll-black {
|
|
35
|
+
scrollbar-width: thin; /* "auto" or "thin" */
|
|
36
|
+
scrollbar-color: #aaa; /* scroll thumb and track */
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.scroll-black::-webkit-scrollbar {
|
|
40
|
+
width: 6px; /* width of the entire scrollbar */
|
|
41
|
+
height: 6px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.scroll-black::-webkit-scrollbar-track {
|
|
45
|
+
background: 0; /* color of the tracking area */
|
|
46
|
+
}
|
|
47
|
+
.scroll-black::-webkit-scrollbar-thumb {
|
|
48
|
+
background-color: #aaa; /* color of the scroll thumb */
|
|
49
|
+
border-radius: 20px; /* roundness of the scroll thumb */
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.scroll-transparent {
|
|
53
|
+
scrollbar-width: thin; /* "auto" or "thin" */
|
|
54
|
+
scrollbar-color: #00000000; /* scroll thumb and track */
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.scroll-transparent::-webkit-scrollbar {
|
|
58
|
+
width: 6px; /* width of the entire scrollbar */
|
|
59
|
+
height: 6px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.scroll-transparent::-webkit-scrollbar-track {
|
|
63
|
+
background: 0; /* color of the tracking area */
|
|
64
|
+
}
|
|
65
|
+
.scroll-transparent::-webkit-scrollbar-thumb {
|
|
66
|
+
background-color: #00000000; /* color of the scroll thumb */
|
|
67
|
+
border-radius: 20px; /* roundness of the scroll thumb */
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.scroll-none {
|
|
71
|
+
scrollbar-width: none; /* "auto" or "thin" */
|
|
72
|
+
scrollbar-color: #00000000; /* scroll thumb and track */
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.scroll-none::-webkit-scrollbar {
|
|
76
|
+
width: 0; /* width of the entire scrollbar */
|
|
77
|
+
height: 0;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.scroll-none::-webkit-scrollbar-track {
|
|
81
|
+
background: 0; /* color of the tracking area */
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* .scroll-none::-webkit-scrollbar-thumb {
|
|
85
|
+
} */
|
|
86
|
+
|
|
87
|
+
.scrollbar-gutter {
|
|
88
|
+
scrollbar-gutter: stable;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.content-graph g text {
|
|
92
|
+
font-weight: bold;
|
|
93
|
+
font-size: 13px !important;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
}
|
package/app/head.tsx
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
export default function Head() {
|
|
2
|
-
return (
|
|
3
|
-
<>
|
|
4
|
-
<title>Create Next App</title>
|
|
5
|
-
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
|
6
|
-
<meta name="description" content="Generated by create next app" />
|
|
7
|
-
|
|
8
|
-
<link rel="apple-touch-startup-image" href="https://static.agilitycms.com/favicon/purple/128.png" />
|
|
9
|
-
|
|
10
|
-
<link
|
|
11
|
-
rel="apple-touch-icon-precomposed"
|
|
12
|
-
sizes="64x64"
|
|
13
|
-
href="https://static.agilitycms.com/favicon/purple/64.png"
|
|
14
|
-
/>
|
|
15
|
-
<link
|
|
16
|
-
rel="apple-touch-icon-precomposed"
|
|
17
|
-
sizes="128x128"
|
|
18
|
-
href="https://static.agilitycms.com/favicon/purple/128.png"
|
|
19
|
-
/>
|
|
20
|
-
<link
|
|
21
|
-
rel="apple-touch-icon-precomposed"
|
|
22
|
-
sizes="256x256"
|
|
23
|
-
href="https://static.agilitycms.com/favicon/purple/256.png"
|
|
24
|
-
/>
|
|
25
|
-
<link
|
|
26
|
-
rel="apple-touch-icon-precomposed"
|
|
27
|
-
sizes="512x512"
|
|
28
|
-
href="https://static.agilitycms.com/favicon/purple/512.png"
|
|
29
|
-
/>
|
|
30
|
-
|
|
31
|
-
<link
|
|
32
|
-
rel="icon"
|
|
33
|
-
type="image/png"
|
|
34
|
-
href="https://static.agilitycms.com/favicon/purple/32.png"
|
|
35
|
-
sizes="32x32"
|
|
36
|
-
/>
|
|
37
|
-
<link
|
|
38
|
-
rel="icon"
|
|
39
|
-
type="image/png"
|
|
40
|
-
href="https://static.agilitycms.com/favicon/purple/64.png"
|
|
41
|
-
sizes="64x64"
|
|
42
|
-
/>
|
|
43
|
-
<link
|
|
44
|
-
rel="icon"
|
|
45
|
-
type="image/png"
|
|
46
|
-
href="https://static.agilitycms.com/favicon/favicon-128x128.png"
|
|
47
|
-
sizes="128x128"
|
|
48
|
-
/>
|
|
49
|
-
<link
|
|
50
|
-
rel="icon"
|
|
51
|
-
type="image/png"
|
|
52
|
-
href="https://static.agilitycms.com/favicon/favicon-256x256.png"
|
|
53
|
-
sizes="256x256"
|
|
54
|
-
/>
|
|
55
|
-
|
|
56
|
-
<meta name="application-name" content="Agility" />
|
|
57
|
-
</>
|
|
58
|
-
)
|
|
59
|
-
}
|
|
1
|
+
export default function Head() {
|
|
2
|
+
return (
|
|
3
|
+
<>
|
|
4
|
+
<title>Create Next App</title>
|
|
5
|
+
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
|
6
|
+
<meta name="description" content="Generated by create next app" />
|
|
7
|
+
|
|
8
|
+
<link rel="apple-touch-startup-image" href="https://static.agilitycms.com/favicon/purple/128.png" />
|
|
9
|
+
|
|
10
|
+
<link
|
|
11
|
+
rel="apple-touch-icon-precomposed"
|
|
12
|
+
sizes="64x64"
|
|
13
|
+
href="https://static.agilitycms.com/favicon/purple/64.png"
|
|
14
|
+
/>
|
|
15
|
+
<link
|
|
16
|
+
rel="apple-touch-icon-precomposed"
|
|
17
|
+
sizes="128x128"
|
|
18
|
+
href="https://static.agilitycms.com/favicon/purple/128.png"
|
|
19
|
+
/>
|
|
20
|
+
<link
|
|
21
|
+
rel="apple-touch-icon-precomposed"
|
|
22
|
+
sizes="256x256"
|
|
23
|
+
href="https://static.agilitycms.com/favicon/purple/256.png"
|
|
24
|
+
/>
|
|
25
|
+
<link
|
|
26
|
+
rel="apple-touch-icon-precomposed"
|
|
27
|
+
sizes="512x512"
|
|
28
|
+
href="https://static.agilitycms.com/favicon/purple/512.png"
|
|
29
|
+
/>
|
|
30
|
+
|
|
31
|
+
<link
|
|
32
|
+
rel="icon"
|
|
33
|
+
type="image/png"
|
|
34
|
+
href="https://static.agilitycms.com/favicon/purple/32.png"
|
|
35
|
+
sizes="32x32"
|
|
36
|
+
/>
|
|
37
|
+
<link
|
|
38
|
+
rel="icon"
|
|
39
|
+
type="image/png"
|
|
40
|
+
href="https://static.agilitycms.com/favicon/purple/64.png"
|
|
41
|
+
sizes="64x64"
|
|
42
|
+
/>
|
|
43
|
+
<link
|
|
44
|
+
rel="icon"
|
|
45
|
+
type="image/png"
|
|
46
|
+
href="https://static.agilitycms.com/favicon/favicon-128x128.png"
|
|
47
|
+
sizes="128x128"
|
|
48
|
+
/>
|
|
49
|
+
<link
|
|
50
|
+
rel="icon"
|
|
51
|
+
type="image/png"
|
|
52
|
+
href="https://static.agilitycms.com/favicon/favicon-256x256.png"
|
|
53
|
+
sizes="256x256"
|
|
54
|
+
/>
|
|
55
|
+
|
|
56
|
+
<meta name="application-name" content="Agility" />
|
|
57
|
+
</>
|
|
58
|
+
)
|
|
59
|
+
}
|
package/app/layout.tsx
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { Mulish } from "@next/font/google"
|
|
2
|
-
import "./globals.css"
|
|
3
|
-
|
|
4
|
-
const mulishFont = Mulish({
|
|
5
|
-
variable: "--mulish",
|
|
6
|
-
weight: ["200", "300", "400", "500", "600", "700", "800", "900", "1000"],
|
|
7
|
-
display: "swap",
|
|
8
|
-
style: ["normal", "italic"],
|
|
9
|
-
subsets: ["latin"],
|
|
10
|
-
fallback: ["Helvetica", "Arial", "sans-serif"]
|
|
11
|
-
})
|
|
12
|
-
|
|
13
|
-
export default function RootLayout({
|
|
14
|
-
children,
|
|
15
|
-
}: {
|
|
16
|
-
children: React.ReactNode
|
|
17
|
-
}) {
|
|
18
|
-
return (
|
|
19
|
-
<html lang="en" className={`${mulishFont.variable}`}>
|
|
20
|
-
{/*
|
|
21
|
-
<head /> will contain the components returned by the nearest parent
|
|
22
|
-
head.tsx. Find out more at https://beta.nextjs.org/docs/api-reference/file-conventions/head
|
|
23
|
-
*/}
|
|
24
|
-
<head />
|
|
25
|
-
<body>{children}</body>
|
|
26
|
-
</html>
|
|
27
|
-
)
|
|
28
|
-
}
|
|
1
|
+
import { Mulish } from "@next/font/google"
|
|
2
|
+
import "./globals.css"
|
|
3
|
+
|
|
4
|
+
const mulishFont = Mulish({
|
|
5
|
+
variable: "--mulish",
|
|
6
|
+
weight: ["200", "300", "400", "500", "600", "700", "800", "900", "1000"],
|
|
7
|
+
display: "swap",
|
|
8
|
+
style: ["normal", "italic"],
|
|
9
|
+
subsets: ["latin"],
|
|
10
|
+
fallback: ["Helvetica", "Arial", "sans-serif"]
|
|
11
|
+
})
|
|
12
|
+
|
|
13
|
+
export default function RootLayout({
|
|
14
|
+
children,
|
|
15
|
+
}: {
|
|
16
|
+
children: React.ReactNode
|
|
17
|
+
}) {
|
|
18
|
+
return (
|
|
19
|
+
<html lang="en" className={`${mulishFont.variable}`}>
|
|
20
|
+
{/*
|
|
21
|
+
<head /> will contain the components returned by the nearest parent
|
|
22
|
+
head.tsx. Find out more at https://beta.nextjs.org/docs/api-reference/file-conventions/head
|
|
23
|
+
*/}
|
|
24
|
+
<head />
|
|
25
|
+
<body>{children}</body>
|
|
26
|
+
</html>
|
|
27
|
+
)
|
|
28
|
+
}
|
package/app/page.tsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Inter } from "@next/font/google"
|
|
2
|
-
|
|
3
|
-
const inter = Inter({ subsets: ["latin"] })
|
|
4
|
-
|
|
5
|
-
export default function Home() {
|
|
6
|
-
return <main className={""}></main>
|
|
7
|
-
}
|
|
1
|
+
import { Inter } from "@next/font/google"
|
|
2
|
+
|
|
3
|
+
const inter = Inter({ subsets: ["latin"] })
|
|
4
|
+
|
|
5
|
+
export default function Home() {
|
|
6
|
+
return <main className={""}></main>
|
|
7
|
+
}
|
package/build.js
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
const { execSync } = require("child_process")
|
|
2
|
-
const esbuild = require("esbuild")
|
|
3
|
-
const path = require("path")
|
|
4
|
-
const { Generator } = require('npm-dts');
|
|
5
|
-
|
|
6
|
-
new Generator({
|
|
7
|
-
entry: path.resolve(__dirname, "stories/index.ts"),
|
|
8
|
-
output: path.resolve(__dirname, 'dist/index.d.ts'),
|
|
9
|
-
tsc: "--emitDeclarationOnly --project tsconfig.lib.json"
|
|
10
|
-
}).generate();
|
|
11
|
-
|
|
12
|
-
// Run TypeScript to generate type declarations using the new tsconfig.lib.json
|
|
13
|
-
execSync("tsc --emitDeclarationOnly --project tsconfig.lib.json", { stdio: "inherit" })
|
|
14
|
-
|
|
15
|
-
const context = {
|
|
16
|
-
logLevel: "info",
|
|
17
|
-
entryPoints: [path.resolve(__dirname, "stories/index.ts")],
|
|
18
|
-
|
|
19
|
-
bundle: true,
|
|
20
|
-
platform: "browser",
|
|
21
|
-
target: ["esnext"],
|
|
22
|
-
minify: true,
|
|
23
|
-
pure: ["React.createElement"],
|
|
24
|
-
jsx: 'transform',
|
|
25
|
-
loader: { '.js': 'jsx' },
|
|
26
|
-
outdir: path.resolve(__dirname, "dist"),
|
|
27
|
-
sourcemap: true,
|
|
28
|
-
external: [
|
|
29
|
-
"react",
|
|
30
|
-
"react-dom",
|
|
31
|
-
"@floating-ui/react",
|
|
32
|
-
"@headlessui/react",
|
|
33
|
-
"@headlessui/tailwindcss",
|
|
34
|
-
"@heroicons/react",
|
|
35
|
-
"@tabler/icons",
|
|
36
|
-
"@tabler/icons-react",
|
|
37
|
-
"classnames",
|
|
38
|
-
"react-icons"
|
|
39
|
-
],
|
|
40
|
-
format: "esm"
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
// Build script using esbuild
|
|
44
|
-
esbuild
|
|
45
|
-
.build(context)
|
|
1
|
+
const { execSync } = require("child_process")
|
|
2
|
+
const esbuild = require("esbuild")
|
|
3
|
+
const path = require("path")
|
|
4
|
+
const { Generator } = require('npm-dts');
|
|
5
|
+
|
|
6
|
+
new Generator({
|
|
7
|
+
entry: path.resolve(__dirname, "stories/index.ts"),
|
|
8
|
+
output: path.resolve(__dirname, 'dist/index.d.ts'),
|
|
9
|
+
tsc: "--emitDeclarationOnly --project tsconfig.lib.json"
|
|
10
|
+
}).generate();
|
|
11
|
+
|
|
12
|
+
// Run TypeScript to generate type declarations using the new tsconfig.lib.json
|
|
13
|
+
execSync("tsc --emitDeclarationOnly --project tsconfig.lib.json", { stdio: "inherit" })
|
|
14
|
+
|
|
15
|
+
const context = {
|
|
16
|
+
logLevel: "info",
|
|
17
|
+
entryPoints: [path.resolve(__dirname, "stories/index.ts")],
|
|
18
|
+
|
|
19
|
+
bundle: true,
|
|
20
|
+
platform: "browser",
|
|
21
|
+
target: ["esnext"],
|
|
22
|
+
minify: true,
|
|
23
|
+
pure: ["React.createElement"],
|
|
24
|
+
jsx: 'transform',
|
|
25
|
+
loader: { '.js': 'jsx' },
|
|
26
|
+
outdir: path.resolve(__dirname, "dist"),
|
|
27
|
+
sourcemap: true,
|
|
28
|
+
external: [
|
|
29
|
+
"react",
|
|
30
|
+
"react-dom",
|
|
31
|
+
"@floating-ui/react",
|
|
32
|
+
"@headlessui/react",
|
|
33
|
+
"@headlessui/tailwindcss",
|
|
34
|
+
"@heroicons/react",
|
|
35
|
+
"@tabler/icons",
|
|
36
|
+
"@tabler/icons-react",
|
|
37
|
+
"classnames",
|
|
38
|
+
"react-icons"
|
|
39
|
+
],
|
|
40
|
+
format: "esm"
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// Build script using esbuild
|
|
44
|
+
esbuild
|
|
45
|
+
.build(context)
|
|
46
46
|
.catch(() => process.exit(1))
|