@omniumretail/component-library 1.2.27 → 1.2.29
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/bundle.js +1 -1
- package/dist/main.css +1 -0
- package/dist/types/components/BellNotifications/BellNotifications.stories.d.ts +5 -0
- package/dist/types/components/BellNotifications/index.d.ts +23 -0
- package/dist/types/components/Header/Header.types.d.ts +5 -0
- package/dist/types/components/Header/index.d.ts +1 -1
- package/dist/types/components/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/components/BellNotifications/BellNotifications.stories.tsx +116 -0
- package/src/components/BellNotifications/index.tsx +161 -0
- package/src/components/BellNotifications/styles.module.scss +186 -0
- package/src/components/Header/Header.types.ts +6 -0
- package/src/components/Header/index.tsx +28 -9
- package/src/components/ResponsiveTable/index.tsx +1 -2
- package/src/components/index.tsx +1 -0
- package/src/locales/en.json +5 -0
- package/src/locales/es.json +5 -0
- package/src/locales/pt.json +5 -0
package/src/locales/es.json
CHANGED
|
@@ -125,6 +125,11 @@
|
|
|
125
125
|
},
|
|
126
126
|
"upload": {
|
|
127
127
|
"loadFile": "Cargar archivo"
|
|
128
|
+
},
|
|
129
|
+
"bellNotifications": {
|
|
130
|
+
"noNotifications": "Sin notificaciones",
|
|
131
|
+
"onlyShowNoRead": "Mostrar sólo no leídas",
|
|
132
|
+
"markAllAsRead": "Marcar todo como leído"
|
|
128
133
|
}
|
|
129
134
|
}
|
|
130
135
|
}
|
package/src/locales/pt.json
CHANGED
|
@@ -125,6 +125,11 @@
|
|
|
125
125
|
},
|
|
126
126
|
"upload": {
|
|
127
127
|
"loadFile": "Carregar ficheiro"
|
|
128
|
+
},
|
|
129
|
+
"bellNotifications": {
|
|
130
|
+
"noNotifications": "Sem notificações",
|
|
131
|
+
"onlyShowNoRead": "Mostrar apenas não lidas",
|
|
132
|
+
"markAllAsRead": "Marcar todas como lidas"
|
|
128
133
|
}
|
|
129
134
|
}
|
|
130
135
|
}
|