frst-components 0.23.36 → 0.23.38

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 (34) hide show
  1. package/README.md +52 -52
  2. package/dist/index.js +12203 -12202
  3. package/dist/src/components/FI/ThreadComments/utilitiesComponents/commentaryBoxReply/index.d.ts.map +1 -1
  4. package/dist/src/components/FI/ThreadComments/utilitiesComponents/inputReply/index.d.ts.map +1 -1
  5. package/dist/src/components/FI/ThreadComments/utilitiesComponents/inputReply/inputReply.styles.d.ts.map +1 -1
  6. package/dist/src/components/IJ/learningCycleCard/components/menu/index.d.ts.map +1 -1
  7. package/dist/src/components/IJ/learningCycleCard/components/menu/menuStyle.d.ts.map +1 -1
  8. package/dist/src/components/form-elements/table/parts/TableBody/index.d.ts.map +1 -1
  9. package/dist/src/components/form-elements/table/parts/TableBody/tableStyle.d.ts.map +1 -1
  10. package/dist/src/components/form-elements/table/parts/TableHead/index.d.ts.map +1 -1
  11. package/dist/src/components/form-elements/table/parts/TableHead/tableStyle.d.ts.map +1 -1
  12. package/dist/src/components/form-elements/table-actions/parts/CollaboratorAvatar/collaboratorAvatarStyle.d.ts.map +1 -1
  13. package/dist/src/components/form-elements/table-actions/parts/CollaboratorAvatar/index.d.ts.map +1 -1
  14. package/dist/src/components/form-elements/table-actions/parts/DateLimit/dateLimitStyle.d.ts.map +1 -1
  15. package/dist/src/components/form-elements/table-actions/parts/DateLimit/index.d.ts.map +1 -1
  16. package/dist/src/components/form-elements/table-actions/parts/TagStatus/index.d.ts.map +1 -1
  17. package/dist/src/components/form-elements/table-actions/parts/TagStatus/tagStatusStyle.d.ts.map +1 -1
  18. package/dist/src/components/hypothesisComponent/index.d.ts.map +1 -1
  19. package/package.json +109 -109
  20. package/public/customIcons/CircledAlert.tsx +21 -21
  21. package/public/customIcons/CircledCheck.tsx +20 -20
  22. package/public/customIcons/DefaultProfile.tsx +15 -15
  23. package/public/customIcons/ExcludeVoteIcon.tsx +40 -40
  24. package/public/customIcons/SmallTrash.tsx +20 -20
  25. package/public/customIcons/TagAlert.tsx +10 -10
  26. package/public/customIcons/VoteCurrentIcon.tsx +22 -22
  27. package/public/customIcons/VoteIcon.tsx +41 -41
  28. package/public/customIcons/index.ts +7 -7
  29. package/public/index.html +43 -43
  30. package/public/locales/en-US.json +33 -33
  31. package/public/locales/es.json +34 -34
  32. package/public/locales/pt-BR.json +41 -41
  33. package/public/manifest.json +15 -15
  34. package/public/robots.txt +3 -3
@@ -1,20 +1,20 @@
1
- import React from 'react'
2
-
3
- export const SmallTrash = ({
4
- width = '16',
5
- height = '16',
6
- fill = '#BDBDBD'
7
- }: {
8
- fill?: string
9
- width?: string
10
- height?: string
11
- }) => {
12
- return (
13
- <svg width={width} height={height} viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
14
- <path
15
- d="M14.6673 4.06718C14.6673 4.44501 14.369 4.75103 14.0007 4.75103H2.00065C1.63232 4.75103 1.33398 4.44501 1.33398 4.06718C1.33398 3.68935 1.63232 3.38333 2.00065 3.38333H4.37231C4.65898 3.38333 4.91399 3.19527 5.00399 2.9166L5.21399 2.26866C5.39566 1.70961 5.90398 1.3335 6.47898 1.3335H9.51731C10.0923 1.3335 10.6006 1.70961 10.7823 2.26866L10.9923 2.91831C11.0823 3.19698 11.3373 3.38504 11.624 3.38504H13.9956C14.364 3.38504 14.6623 3.69106 14.6623 4.06889L14.6673 4.06718ZM12.8673 6.13924L12.4607 12.4306C12.374 13.6889 11.3473 14.6668 10.1273 14.6668H5.87398C4.65398 14.6668 3.62732 13.6889 3.54065 12.4375L3.13397 6.13924C3.12731 6.05034 3.16064 5.9546 3.22064 5.88622C3.28731 5.81783 3.37397 5.7768 3.46731 5.7768H12.534C12.6273 5.7768 12.714 5.81783 12.7806 5.88622C12.8406 5.9546 12.874 6.05034 12.8673 6.13924ZM7.33398 8.17027C7.33398 7.79415 7.03398 7.48642 6.66732 7.48642C6.30065 7.48642 6.00065 7.79415 6.00065 8.17027V11.5895C6.00065 11.9656 6.30065 12.2734 6.66732 12.2734C7.03398 12.2734 7.33398 11.9656 7.33398 11.5895V8.17027ZM10.0007 8.17027C10.0007 7.79415 9.70065 7.48642 9.33398 7.48642C8.96732 7.48642 8.66732 7.79415 8.66732 8.17027V11.5895C8.66732 11.9656 8.96732 12.2734 9.33398 12.2734C9.70065 12.2734 10.0007 11.9656 10.0007 11.5895V8.17027Z"
16
- fill={fill}
17
- />
18
- </svg>
19
- )
20
- }
1
+ import React from 'react'
2
+
3
+ export const SmallTrash = ({
4
+ width = '16',
5
+ height = '16',
6
+ fill = '#BDBDBD'
7
+ }: {
8
+ fill?: string
9
+ width?: string
10
+ height?: string
11
+ }) => {
12
+ return (
13
+ <svg width={width} height={height} viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
14
+ <path
15
+ d="M14.6673 4.06718C14.6673 4.44501 14.369 4.75103 14.0007 4.75103H2.00065C1.63232 4.75103 1.33398 4.44501 1.33398 4.06718C1.33398 3.68935 1.63232 3.38333 2.00065 3.38333H4.37231C4.65898 3.38333 4.91399 3.19527 5.00399 2.9166L5.21399 2.26866C5.39566 1.70961 5.90398 1.3335 6.47898 1.3335H9.51731C10.0923 1.3335 10.6006 1.70961 10.7823 2.26866L10.9923 2.91831C11.0823 3.19698 11.3373 3.38504 11.624 3.38504H13.9956C14.364 3.38504 14.6623 3.69106 14.6623 4.06889L14.6673 4.06718ZM12.8673 6.13924L12.4607 12.4306C12.374 13.6889 11.3473 14.6668 10.1273 14.6668H5.87398C4.65398 14.6668 3.62732 13.6889 3.54065 12.4375L3.13397 6.13924C3.12731 6.05034 3.16064 5.9546 3.22064 5.88622C3.28731 5.81783 3.37397 5.7768 3.46731 5.7768H12.534C12.6273 5.7768 12.714 5.81783 12.7806 5.88622C12.8406 5.9546 12.874 6.05034 12.8673 6.13924ZM7.33398 8.17027C7.33398 7.79415 7.03398 7.48642 6.66732 7.48642C6.30065 7.48642 6.00065 7.79415 6.00065 8.17027V11.5895C6.00065 11.9656 6.30065 12.2734 6.66732 12.2734C7.03398 12.2734 7.33398 11.9656 7.33398 11.5895V8.17027ZM10.0007 8.17027C10.0007 7.79415 9.70065 7.48642 9.33398 7.48642C8.96732 7.48642 8.66732 7.79415 8.66732 8.17027V11.5895C8.66732 11.9656 8.96732 12.2734 9.33398 12.2734C9.70065 12.2734 10.0007 11.9656 10.0007 11.5895V8.17027Z"
16
+ fill={fill}
17
+ />
18
+ </svg>
19
+ )
20
+ }
@@ -1,10 +1,10 @@
1
- export const TagAlert = ({ width = 18, height = 18, color = "#C00F00" }: { width?: number, height?: number, color?: string }) => {
2
- return (
3
- <svg width={width} height={height} viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
4
- <path d="M9 17C13.4183 17 17 13.4183 17 9C17 4.58172 13.4183 1 9 1C4.58172 1 1 4.58172 1 9C1 13.4183 4.58172 17 9 17Z" stroke={color} stroke-linecap="round" stroke-linejoin="round" />
5
- <path d="M8.99683 5.57153L8.99683 9.68582" stroke={color} strokeWidth="1.2" strokeLinecap="round" strokeLinejoin="round" />
6
- <ellipse cx="8.99821" cy="12.4283" rx="0.685714" ry="0.685145" fill={color} />
7
- </svg>
8
-
9
- )
10
- }
1
+ export const TagAlert = ({ width = 18, height = 18, color = "#C00F00" }: { width?: number, height?: number, color?: string }) => {
2
+ return (
3
+ <svg width={width} height={height} viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
4
+ <path d="M9 17C13.4183 17 17 13.4183 17 9C17 4.58172 13.4183 1 9 1C4.58172 1 1 4.58172 1 9C1 13.4183 4.58172 17 9 17Z" stroke={color} stroke-linecap="round" stroke-linejoin="round" />
5
+ <path d="M8.99683 5.57153L8.99683 9.68582" stroke={color} strokeWidth="1.2" strokeLinecap="round" strokeLinejoin="round" />
6
+ <ellipse cx="8.99821" cy="12.4283" rx="0.685714" ry="0.685145" fill={color} />
7
+ </svg>
8
+
9
+ )
10
+ }
@@ -1,22 +1,22 @@
1
- import React from 'react'
2
- import { CSSProperties } from 'react'
3
-
4
- export const VoteCurrentIcon = ({
5
- style,
6
- width = '16',
7
- height = '17',
8
- stroke = '#444444'
9
- }: {
10
- style?: CSSProperties | undefined
11
- width?: string
12
- height?: string
13
- stroke?: string
14
- }) => {
15
- return (
16
- <svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
17
- <path d="M3.33398 5.05884V8.906H6.97035" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
18
- <path d="M16.6676 15.318V11.4708H13.0312" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
19
- <path d="M15.1461 8.26484C14.8387 7.34587 14.3163 6.52425 13.6276 5.87666C12.939 5.22906 12.1064 4.77659 11.2077 4.56147C10.3091 4.34634 9.37353 4.37557 8.48841 4.64643C7.6033 4.9173 6.79747 5.42096 6.14611 6.11043L3.33398 8.90603M16.6673 11.4708L13.8552 14.2664C13.2038 14.9559 12.398 15.4595 11.5129 15.7304C10.6278 16.0013 9.69223 16.0305 8.79355 15.8154C7.89487 15.6003 7.06235 15.1478 6.37366 14.5002C5.68497 13.8526 5.16257 13.031 4.8552 12.112" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
20
- </svg>
21
- )
22
- }
1
+ import React from 'react'
2
+ import { CSSProperties } from 'react'
3
+
4
+ export const VoteCurrentIcon = ({
5
+ style,
6
+ width = '16',
7
+ height = '17',
8
+ stroke = '#444444'
9
+ }: {
10
+ style?: CSSProperties | undefined
11
+ width?: string
12
+ height?: string
13
+ stroke?: string
14
+ }) => {
15
+ return (
16
+ <svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
17
+ <path d="M3.33398 5.05884V8.906H6.97035" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
18
+ <path d="M16.6676 15.318V11.4708H13.0312" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
19
+ <path d="M15.1461 8.26484C14.8387 7.34587 14.3163 6.52425 13.6276 5.87666C12.939 5.22906 12.1064 4.77659 11.2077 4.56147C10.3091 4.34634 9.37353 4.37557 8.48841 4.64643C7.6033 4.9173 6.79747 5.42096 6.14611 6.11043L3.33398 8.90603M16.6673 11.4708L13.8552 14.2664C13.2038 14.9559 12.398 15.4595 11.5129 15.7304C10.6278 16.0013 9.69223 16.0305 8.79355 15.8154C7.89487 15.6003 7.06235 15.1478 6.37366 14.5002C5.68497 13.8526 5.16257 13.031 4.8552 12.112" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
20
+ </svg>
21
+ )
22
+ }
@@ -1,41 +1,41 @@
1
- import React from 'react'
2
- import { CSSProperties } from 'react'
3
-
4
- export const VoteIcon = ({
5
- style,
6
- width = '16',
7
- height = '17',
8
- stroke = '#444444'
9
- }: {
10
- style?: CSSProperties | undefined
11
- width?: string
12
- height?: string
13
- stroke?: string
14
- }) => {
15
- return (
16
- <svg style={style} width={width} height={height} viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
17
- <g clipPath="url(#clip0_2067_11382)">
18
- <path
19
- d="M7.9987 14.9192C11.6806 14.9192 14.6654 11.9345 14.6654 8.25257C14.6654 4.57068 11.6806 1.58591 7.9987 1.58591C4.3168 1.58591 1.33203 4.57068 1.33203 8.25257C1.33203 11.9345 4.3168 14.9192 7.9987 14.9192Z"
20
- stroke={stroke}
21
- strokeWidth="1.2"
22
- strokeLinecap="round"
23
- strokeLinejoin="round"
24
- />
25
- <path
26
- d="M11 8.25256L8 5.25256L5 8.25256"
27
- stroke={stroke}
28
- strokeWidth="1.2"
29
- strokeLinecap="round"
30
- strokeLinejoin="round"
31
- />
32
- <path d="M8 11.2526V5.25256" stroke={stroke} strokeWidth="1.2" strokeLinecap="round" strokeLinejoin="round" />
33
- </g>
34
- <defs>
35
- <clipPath id="clip0_2067_11382">
36
- <rect width="16" height="16" fill="white" transform="translate(0 0.252563)" />
37
- </clipPath>
38
- </defs>
39
- </svg>
40
- )
41
- }
1
+ import React from 'react'
2
+ import { CSSProperties } from 'react'
3
+
4
+ export const VoteIcon = ({
5
+ style,
6
+ width = '16',
7
+ height = '17',
8
+ stroke = '#444444'
9
+ }: {
10
+ style?: CSSProperties | undefined
11
+ width?: string
12
+ height?: string
13
+ stroke?: string
14
+ }) => {
15
+ return (
16
+ <svg style={style} width={width} height={height} viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
17
+ <g clipPath="url(#clip0_2067_11382)">
18
+ <path
19
+ d="M7.9987 14.9192C11.6806 14.9192 14.6654 11.9345 14.6654 8.25257C14.6654 4.57068 11.6806 1.58591 7.9987 1.58591C4.3168 1.58591 1.33203 4.57068 1.33203 8.25257C1.33203 11.9345 4.3168 14.9192 7.9987 14.9192Z"
20
+ stroke={stroke}
21
+ strokeWidth="1.2"
22
+ strokeLinecap="round"
23
+ strokeLinejoin="round"
24
+ />
25
+ <path
26
+ d="M11 8.25256L8 5.25256L5 8.25256"
27
+ stroke={stroke}
28
+ strokeWidth="1.2"
29
+ strokeLinecap="round"
30
+ strokeLinejoin="round"
31
+ />
32
+ <path d="M8 11.2526V5.25256" stroke={stroke} strokeWidth="1.2" strokeLinecap="round" strokeLinejoin="round" />
33
+ </g>
34
+ <defs>
35
+ <clipPath id="clip0_2067_11382">
36
+ <rect width="16" height="16" fill="white" transform="translate(0 0.252563)" />
37
+ </clipPath>
38
+ </defs>
39
+ </svg>
40
+ )
41
+ }
@@ -1,7 +1,7 @@
1
- export { SmallTrash } from './SmallTrash';
2
- export { TagAlert } from './TagAlert';
3
- export { CircledCheck } from './CircledCheck';
4
- export { CircledAlert } from './CircledAlert'
5
- export { VoteIcon } from './VoteIcon';
6
- export { ExcludeVoteIcon } from './ExcludeVoteIcon';
7
- export { VoteCurrentIcon } from './VoteCurrentIcon';
1
+ export { SmallTrash } from './SmallTrash';
2
+ export { TagAlert } from './TagAlert';
3
+ export { CircledCheck } from './CircledCheck';
4
+ export { CircledAlert } from './CircledAlert'
5
+ export { VoteIcon } from './VoteIcon';
6
+ export { ExcludeVoteIcon } from './ExcludeVoteIcon';
7
+ export { VoteCurrentIcon } from './VoteCurrentIcon';
package/public/index.html CHANGED
@@ -1,43 +1,43 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8" />
5
- <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6
- <meta name="viewport" content="width=device-width, initial-scale=1" />
7
- <meta name="theme-color" content="#000000" />
8
- <meta
9
- name="description"
10
- content="Web site created using create-react-app"
11
- />
12
- <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13
- <!--
14
- manifest.json provides metadata used when your web app is installed on a
15
- user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
16
- -->
17
- <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
18
- <!--
19
- Notice the use of %PUBLIC_URL% in the tags above.
20
- It will be replaced with the URL of the `public` folder during the build.
21
- Only files inside the `public` folder can be referenced from the HTML.
22
-
23
- Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
24
- work correctly both with client-side routing and a non-root public URL.
25
- Learn how to configure a non-root public URL by running `npm run build`.
26
- -->
27
- <title>React App</title>
28
- </head>
29
- <body>
30
- <noscript>You need to enable JavaScript to run this app.</noscript>
31
- <div id="root"></div>
32
- <!--
33
- This HTML file is a template.
34
- If you open it directly in the browser, you will see an empty page.
35
-
36
- You can add webfonts, meta tags, or analytics to this file.
37
- The build step will place the bundled scripts into the <body> tag.
38
-
39
- To begin the development, run `npm start` or `yarn start`.
40
- To create a production bundle, use `npm run build` or `yarn build`.
41
- -->
42
- </body>
43
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
7
+ <meta name="theme-color" content="#000000" />
8
+ <meta
9
+ name="description"
10
+ content="Web site created using create-react-app"
11
+ />
12
+ <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13
+ <!--
14
+ manifest.json provides metadata used when your web app is installed on a
15
+ user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
16
+ -->
17
+ <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
18
+ <!--
19
+ Notice the use of %PUBLIC_URL% in the tags above.
20
+ It will be replaced with the URL of the `public` folder during the build.
21
+ Only files inside the `public` folder can be referenced from the HTML.
22
+
23
+ Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
24
+ work correctly both with client-side routing and a non-root public URL.
25
+ Learn how to configure a non-root public URL by running `npm run build`.
26
+ -->
27
+ <title>React App</title>
28
+ </head>
29
+ <body>
30
+ <noscript>You need to enable JavaScript to run this app.</noscript>
31
+ <div id="root"></div>
32
+ <!--
33
+ This HTML file is a template.
34
+ If you open it directly in the browser, you will see an empty page.
35
+
36
+ You can add webfonts, meta tags, or analytics to this file.
37
+ The build step will place the bundled scripts into the <body> tag.
38
+
39
+ To begin the development, run `npm start` or `yarn start`.
40
+ To create a production bundle, use `npm run build` or `yarn build`.
41
+ -->
42
+ </body>
43
+ </html>
@@ -1,33 +1,33 @@
1
- {
2
- "globals.clickHere": "Click here",
3
- "globals.typeHere": "Type aqui",
4
- "globals.edit": "Edit",
5
- "globals.toView": "View",
6
- "globals.replys": "Answers",
7
- "globals.publish": "Publish",
8
-
9
- "calendar.weekdays": ["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"],
10
- "calendar.monthsInitials": ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
11
- "calendar.title": "Events",
12
- "calendar.subtitle": "Schedule yourself below and don't miss any event.",
13
- "calendar.card.description": "Select below the module you want to view the events.",
14
- "calendar.card.mentoringSchedule": "Mentoring schedule: next",
15
- "calendar.card.fullSchedule": "to see your full schedule of events",
16
- "calendar.card.joinEvent": "Enter the event",
17
- "calendar.notAvailable": "You will soon be able to view your event schedule here.",
18
- "calendar.noMoreEvents": "Events closed.",
19
-
20
- "user.card.noProduct": "No product defined",
21
- "user.card.status.complete": "Completed",
22
- "user.card.status.incomplete": "Incomplete",
23
- "user.card.status.enrolled": "Enrolled",
24
- "user.card.status.defined": "Defined trail",
25
- "user.card.status.error": "Error on sending",
26
- "user.card.area": "Area",
27
- "user.card.position": "Position",
28
- "user.card.current": "Current",
29
- "user.card.previus": "Previus",
30
- "user.card.assignedLicense": "License assigned",
31
- "user.card.definedTrail": "Trail defined",
32
- "user.card.enrollments": "Registered"
33
- }
1
+ {
2
+ "globals.clickHere": "Click here",
3
+ "globals.typeHere": "Type aqui",
4
+ "globals.edit": "Edit",
5
+ "globals.toView": "View",
6
+ "globals.replys": "Answers",
7
+ "globals.publish": "Publish",
8
+
9
+ "calendar.weekdays": ["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"],
10
+ "calendar.monthsInitials": ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
11
+ "calendar.title": "Events",
12
+ "calendar.subtitle": "Schedule yourself below and don't miss any event.",
13
+ "calendar.card.description": "Select below the module you want to view the events.",
14
+ "calendar.card.mentoringSchedule": "Mentoring schedule: next",
15
+ "calendar.card.fullSchedule": "to see your full schedule of events",
16
+ "calendar.card.joinEvent": "Enter the event",
17
+ "calendar.notAvailable": "You will soon be able to view your event schedule here.",
18
+ "calendar.noMoreEvents": "Events closed.",
19
+
20
+ "user.card.noProduct": "No product defined",
21
+ "user.card.status.complete": "Completed",
22
+ "user.card.status.incomplete": "Incomplete",
23
+ "user.card.status.enrolled": "Enrolled",
24
+ "user.card.status.defined": "Defined trail",
25
+ "user.card.status.error": "Error on sending",
26
+ "user.card.area": "Area",
27
+ "user.card.position": "Position",
28
+ "user.card.current": "Current",
29
+ "user.card.previus": "Previus",
30
+ "user.card.assignedLicense": "License assigned",
31
+ "user.card.definedTrail": "Trail defined",
32
+ "user.card.enrollments": "Registered"
33
+ }
@@ -1,34 +1,34 @@
1
- {
2
- "globals.clickHere": "Haga clic aquí",
3
- "globals.typeHere": "Escriba aquí",
4
- "globals.edit": "Editar",
5
- "globals.toView": "Ver",
6
- "globals.replys": "Respuestas",
7
- "globals.publish": "Publicar",
8
-
9
- "calendar.weekdays": ["domingo", "lunes", "martes", "miércoles", "jueves", "viernes", "sábado"],
10
- "calendar.monthsInitials": ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dec"],
11
- "calendar.title": "Eventos",
12
- "calendar.subtitle": "Programe usted mismo a continuación y no se pierda ningún evento.",
13
- "calendar.card.description": "Seleccione a continuación el módulo en el que desea ver los eventos.",
14
- "calendar.card.mentoringSchedule": "Horario de tutoría: próximo",
15
- "calendar.card.noMoreSchedule": "Horario de tutoría: próximo",
16
- "calendar.card.fullSchedule": "para ver su programa completo de eventos",
17
- "calendar.card.joinEvent": "Ingresa al evento",
18
- "calendar.notAvailable": "Pronto podrás ver el calendario de eventos aquí.",
19
- "calendar.noMoreEvents": "Eventos cerrados.",
20
-
21
- "user.card.noProduct": "Ningún producto definido",
22
- "user.card.status.complete": "Completo",
23
- "user.card.status.incomplete": "Incompleto",
24
- "user.card.status.enrolled": "Registrado",
25
- "user.card.status.defined": "Camino definido",
26
- "user.card.status.error": "error en el envio",
27
- "user.card.area": "Área",
28
- "user.card.position": "Cargo",
29
- "user.card.current": "Actual",
30
- "user.card.previus": "Anterior",
31
- "user.card.assignedLicense": "Licencia asignada",
32
- "user.card.definedTrail": "Módulo definido",
33
- "user.card.enrollments": "Registrado"
34
- }
1
+ {
2
+ "globals.clickHere": "Haga clic aquí",
3
+ "globals.typeHere": "Escriba aquí",
4
+ "globals.edit": "Editar",
5
+ "globals.toView": "Ver",
6
+ "globals.replys": "Respuestas",
7
+ "globals.publish": "Publicar",
8
+
9
+ "calendar.weekdays": ["domingo", "lunes", "martes", "miércoles", "jueves", "viernes", "sábado"],
10
+ "calendar.monthsInitials": ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dec"],
11
+ "calendar.title": "Eventos",
12
+ "calendar.subtitle": "Programe usted mismo a continuación y no se pierda ningún evento.",
13
+ "calendar.card.description": "Seleccione a continuación el módulo en el que desea ver los eventos.",
14
+ "calendar.card.mentoringSchedule": "Horario de tutoría: próximo",
15
+ "calendar.card.noMoreSchedule": "Horario de tutoría: próximo",
16
+ "calendar.card.fullSchedule": "para ver su programa completo de eventos",
17
+ "calendar.card.joinEvent": "Ingresa al evento",
18
+ "calendar.notAvailable": "Pronto podrás ver el calendario de eventos aquí.",
19
+ "calendar.noMoreEvents": "Eventos cerrados.",
20
+
21
+ "user.card.noProduct": "Ningún producto definido",
22
+ "user.card.status.complete": "Completo",
23
+ "user.card.status.incomplete": "Incompleto",
24
+ "user.card.status.enrolled": "Registrado",
25
+ "user.card.status.defined": "Camino definido",
26
+ "user.card.status.error": "error en el envio",
27
+ "user.card.area": "Área",
28
+ "user.card.position": "Cargo",
29
+ "user.card.current": "Actual",
30
+ "user.card.previus": "Anterior",
31
+ "user.card.assignedLicense": "Licencia asignada",
32
+ "user.card.definedTrail": "Módulo definido",
33
+ "user.card.enrollments": "Registrado"
34
+ }
@@ -1,41 +1,41 @@
1
- {
2
- "globals.clickHere": "Clique aqui",
3
- "globals.typeHere": "Escreva aqui",
4
- "globals.edit": "Editar",
5
- "globals.toView": "Visualizar",
6
- "globals.replys": "Respostas",
7
- "globals.publish": "Publicar",
8
-
9
- "calendar.weekdays": [
10
- "domingo",
11
- "segunda-feira",
12
- "terça-feira",
13
- "quarta-feira",
14
- "quinta-feira",
15
- "sexta-feira",
16
- "sabado"
17
- ],
18
- "calendar.monthsInitials": ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"],
19
- "calendar.title": "Eventos",
20
- "calendar.subtitle": "Programe-se abaixo e não perca nenhum evento.",
21
- "calendar.card.description": "Selecione abaixo o módulo que deseja ver os eventos.",
22
- "calendar.card.mentoringSchedule": "Horario das mentorias: próxima",
23
- "calendar.card.fullSchedule": "para ver sua agenda de eventos completa",
24
- "calendar.card.joinEvent": "Entrar no evento",
25
- "calendar.notAvailable": "Em breve você poderá visualizar sua agenda de eventos aqui.",
26
- "calendar.noMoreEvents": "Eventos encerrados.",
27
-
28
- "user.card.noProduct": "Sem produto definido",
29
- "user.card.status.complete": "Completo",
30
- "user.card.status.incomplete": "Incompleto",
31
- "user.card.status.enrolled": "Matriculado",
32
- "user.card.status.defined": "Trilha Definida",
33
- "user.card.status.error": "Erro no envio",
34
- "user.card.area": "Área",
35
- "user.card.position": "Cargo",
36
- "user.card.current": "Atual",
37
- "user.card.previus": "Anterior",
38
- "user.card.assignedLicense": "Licença atribuida",
39
- "user.card.definedTrail": "Trilha definida",
40
- "user.card.enrollments": "Matriculado"
41
- }
1
+ {
2
+ "globals.clickHere": "Clique aqui",
3
+ "globals.typeHere": "Escreva aqui",
4
+ "globals.edit": "Editar",
5
+ "globals.toView": "Visualizar",
6
+ "globals.replys": "Respostas",
7
+ "globals.publish": "Publicar",
8
+
9
+ "calendar.weekdays": [
10
+ "domingo",
11
+ "segunda-feira",
12
+ "terça-feira",
13
+ "quarta-feira",
14
+ "quinta-feira",
15
+ "sexta-feira",
16
+ "sabado"
17
+ ],
18
+ "calendar.monthsInitials": ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"],
19
+ "calendar.title": "Eventos",
20
+ "calendar.subtitle": "Programe-se abaixo e não perca nenhum evento.",
21
+ "calendar.card.description": "Selecione abaixo o módulo que deseja ver os eventos.",
22
+ "calendar.card.mentoringSchedule": "Horario das mentorias: próxima",
23
+ "calendar.card.fullSchedule": "para ver sua agenda de eventos completa",
24
+ "calendar.card.joinEvent": "Entrar no evento",
25
+ "calendar.notAvailable": "Em breve você poderá visualizar sua agenda de eventos aqui.",
26
+ "calendar.noMoreEvents": "Eventos encerrados.",
27
+
28
+ "user.card.noProduct": "Sem produto definido",
29
+ "user.card.status.complete": "Completo",
30
+ "user.card.status.incomplete": "Incompleto",
31
+ "user.card.status.enrolled": "Matriculado",
32
+ "user.card.status.defined": "Trilha Definida",
33
+ "user.card.status.error": "Erro no envio",
34
+ "user.card.area": "Área",
35
+ "user.card.position": "Cargo",
36
+ "user.card.current": "Atual",
37
+ "user.card.previus": "Anterior",
38
+ "user.card.assignedLicense": "Licença atribuida",
39
+ "user.card.definedTrail": "Trilha definida",
40
+ "user.card.enrollments": "Matriculado"
41
+ }
@@ -1,15 +1,15 @@
1
- {
2
- "short_name": "React App",
3
- "name": "Create React App Sample",
4
- "icons": [
5
- {
6
- "src": "favicon.ico",
7
- "sizes": "512x512 192x192 64x64 32x32 24x24 16x16",
8
- "type": "image/x-icon"
9
- }
10
- ],
11
- "start_url": ".",
12
- "display": "standalone",
13
- "theme_color": "#000000",
14
- "background_color": "#ffffff"
15
- }
1
+ {
2
+ "short_name": "React App",
3
+ "name": "Create React App Sample",
4
+ "icons": [
5
+ {
6
+ "src": "favicon.ico",
7
+ "sizes": "512x512 192x192 64x64 32x32 24x24 16x16",
8
+ "type": "image/x-icon"
9
+ }
10
+ ],
11
+ "start_url": ".",
12
+ "display": "standalone",
13
+ "theme_color": "#000000",
14
+ "background_color": "#ffffff"
15
+ }
package/public/robots.txt CHANGED
@@ -1,3 +1,3 @@
1
- # https://www.robotstxt.org/robotstxt.html
2
- User-agent: *
3
- Disallow:
1
+ # https://www.robotstxt.org/robotstxt.html
2
+ User-agent: *
3
+ Disallow: