@moises.ai/design-system 3.9.15 → 3.9.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moises.ai/design-system",
3
- "version": "3.9.15",
3
+ "version": "3.9.16",
4
4
  "description": "Design System package based on @radix-ui/themes with custom defaults",
5
5
  "private": false,
6
6
  "type": "module",
@@ -23,7 +23,12 @@
23
23
  position: absolute;
24
24
  top: 4px;
25
25
  right: 4px;
26
-
26
+
27
+
28
+ width: 24px;
29
+ height: 24px;
30
+ border-radius: 50% !important;
31
+ background: #11111366 !important;
27
32
  }
28
33
 
29
34
  .children {
@@ -27,23 +27,25 @@ const withFlexContainer = (Story) => (
27
27
 
28
28
  export const FeatureAnnouncement = {
29
29
  render: (args) => (
30
- <BannerAnnouncement {...args}>
31
- <Flex direction="column" gap="2">
32
- <Heading size="3" weight="bold">
33
- Moises AI Studio
34
- </Heading>
35
- <Text size="2">
36
- Step into the future of music creation. Record, separate, generate,
37
- convert voice, mix, and master with our all-in-one essential AI tool
38
- for musicians.
39
- </Text>
40
- </Flex>
41
- </BannerAnnouncement>
30
+ <Flex justify="center" align="center" style={{ padding: '40px', marginTop: '100px' }}>
31
+ <BannerAnnouncement {...args}>
32
+ <Flex direction="column" gap="2">
33
+ <Heading size="3" weight="bold">
34
+ Moises AI Studio
35
+ </Heading>
36
+ <Text size="2">
37
+ Step into the future of music creation. Record, separate, generate,
38
+ convert voice, mix, and master with our all-in-one essential AI tool
39
+ for musicians.
40
+ </Text>
41
+ </Flex>
42
+ </BannerAnnouncement>
43
+ </Flex>
42
44
  ),
43
45
  args: {
44
46
  badge: { label: 'New', color: 'green' },
45
47
  image:
46
- 'https://storage.googleapis.com/moises-cms/1_day_discount_banner_2d5990f994/1_day_discount_banner_2d5990f994.png',
48
+ 'https://storage.googleapis.com/moises-cms/image_3x_f0971a1e8e/image_3x_f0971a1e8e.png',
47
49
  link: 'https://www.google.com',
48
50
  buttonText: 'Learn More',
49
51
  buttonColor: 'gray',
@@ -92,21 +94,23 @@ export const DayOne = {
92
94
  }, [])
93
95
 
94
96
  return (
95
- <BannerAnnouncement {...args}>
96
- <Flex direction="column" gap="3">
97
- <Text size="2">Up to 30% off any individual plan for the next:</Text>
98
- <Countdown
99
- show={true}
100
- days={timeLeft.days}
101
- hours={timeLeft.hours}
102
- minutes={timeLeft.minutes}
103
- seconds={timeLeft.seconds}
104
- theme="default"
105
- variant="lg"
106
- showDays={false}
107
- />
108
- </Flex>
109
- </BannerAnnouncement>
97
+ <Flex justify="center" align="center" style={{ padding: '40px', marginTop: '100px' }}>
98
+ <BannerAnnouncement {...args}>
99
+ <Flex direction="column" gap="3">
100
+ <Text size="2">Up to 30% off any individual plan for the next:</Text>
101
+ <Countdown
102
+ show={true}
103
+ days={timeLeft.days}
104
+ hours={timeLeft.hours}
105
+ minutes={timeLeft.minutes}
106
+ seconds={timeLeft.seconds}
107
+ theme="default"
108
+ variant="lg"
109
+ showDays={false}
110
+ />
111
+ </Flex>
112
+ </BannerAnnouncement>
113
+ </Flex>
110
114
  )
111
115
  },
112
116
  args: {