@digigov/ui 0.13.1 → 0.14.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.
- package/CHANGELOG.md +12 -1
- package/app/Header/HeaderContent.d.ts +3 -0
- package/app/Header/HeaderContent.js +19 -0
- package/core/Link/index.js +3 -1
- package/core/PaginationLabel/index.d.ts +21 -0
- package/core/PaginationLabel/index.js +34 -0
- package/core/index.d.ts +1 -0
- package/core/index.js +14 -0
- package/es/app/Header/HeaderContent.js +3 -0
- package/es/core/Link/index.js +2 -1
- package/es/core/PaginationLabel/index.js +20 -0
- package/es/core/index.js +2 -1
- package/es/locales/el.js +6 -0
- package/es/locales/en.js +6 -0
- package/esm/app/Header/HeaderContent.js +3 -0
- package/esm/core/Link/index.js +2 -1
- package/esm/core/PaginationLabel/index.js +20 -0
- package/esm/core/index.js +2 -1
- package/esm/index.js +1 -1
- package/esm/locales/el.js +6 -0
- package/esm/locales/en.js +6 -0
- package/locales/el.d.ts +6 -0
- package/locales/el.js +6 -0
- package/locales/en.d.ts +6 -0
- package/locales/en.js +6 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
# Change Log - @digigov/ui
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 09 Mar 2022 13:21:47 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.14.0
|
|
6
|
+
Wed, 09 Mar 2022 13:21:47 GMT
|
|
7
|
+
|
|
8
|
+
### Minor changes
|
|
9
|
+
|
|
10
|
+
- Add react-extensions library / add PaginationLabel with translations / use Link from react-core
|
|
11
|
+
|
|
12
|
+
### Patches
|
|
13
|
+
|
|
14
|
+
- export HeaderContent component
|
|
4
15
|
|
|
5
16
|
## 0.13.1
|
|
6
17
|
Thu, 03 Mar 2022 09:55:59 GMT
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
Object.defineProperty(exports, "HeaderContent", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function get() {
|
|
11
|
+
return _HeaderContent["default"];
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
exports["default"] = void 0;
|
|
15
|
+
|
|
16
|
+
var _HeaderContent = _interopRequireDefault(require("@digigov/react-core/HeaderContent"));
|
|
17
|
+
|
|
18
|
+
var _default = _HeaderContent["default"];
|
|
19
|
+
exports["default"] = _default;
|
package/core/Link/index.js
CHANGED
|
@@ -15,6 +15,8 @@ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/h
|
|
|
15
15
|
|
|
16
16
|
var React = _interopRequireWildcard(require("react"));
|
|
17
17
|
|
|
18
|
+
var _Link = _interopRequireDefault(require("@digigov/react-core/Link"));
|
|
19
|
+
|
|
18
20
|
var _excluded = ["children", "href"];
|
|
19
21
|
|
|
20
22
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
@@ -26,7 +28,7 @@ var CommonLink = function CommonLink(props) {
|
|
|
26
28
|
};
|
|
27
29
|
|
|
28
30
|
exports.CommonLink = CommonLink;
|
|
29
|
-
var LinkComponentContext = /*#__PURE__*/React.createContext(
|
|
31
|
+
var LinkComponentContext = /*#__PURE__*/React.createContext(_Link["default"]);
|
|
30
32
|
|
|
31
33
|
var LinkProvider = function LinkProvider(props) {
|
|
32
34
|
return /*#__PURE__*/React.createElement(LinkComponentContext.Provider, {
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { PaginationLabelProps as CorePaginationLabelProps } from '@digigov/react-extensions/admin/PaginationLabel';
|
|
3
|
+
export interface PaginationLabelProps extends CorePaginationLabelProps {
|
|
4
|
+
/**
|
|
5
|
+
* Use start to set the value of the start point of the results shown.
|
|
6
|
+
*/
|
|
7
|
+
start: number;
|
|
8
|
+
/**
|
|
9
|
+
* Use end to set the value of the end point of the results shown.
|
|
10
|
+
*/
|
|
11
|
+
end: number;
|
|
12
|
+
/**
|
|
13
|
+
* Use total to set the value of the total results.
|
|
14
|
+
*/
|
|
15
|
+
total: number;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* PaginationLabel component is used for placing the pagination results label.
|
|
19
|
+
*/
|
|
20
|
+
export declare const PaginationLabel: React.ForwardRefExoticComponent<Pick<PaginationLabelProps, "color" | "className" | "children" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "end" | "start" | "total"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
21
|
+
export default PaginationLabel;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = exports.PaginationLabel = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
|
|
12
|
+
var _PaginationLabel = _interopRequireDefault(require("@digigov/react-extensions/admin/PaginationLabel"));
|
|
13
|
+
|
|
14
|
+
var _app = require("@digigov/ui/app");
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* PaginationLabel component is used for placing the pagination results label.
|
|
18
|
+
*/
|
|
19
|
+
var PaginationLabel = /*#__PURE__*/_react["default"].forwardRef(function PaginationLabel(_ref, ref) {
|
|
20
|
+
var start = _ref.start,
|
|
21
|
+
end = _ref.end,
|
|
22
|
+
total = _ref.total;
|
|
23
|
+
|
|
24
|
+
var _useTranslation = (0, _app.useTranslation)(),
|
|
25
|
+
t = _useTranslation.t;
|
|
26
|
+
|
|
27
|
+
return /*#__PURE__*/_react["default"].createElement(_PaginationLabel["default"], {
|
|
28
|
+
ref: ref
|
|
29
|
+
}, t('pagination.show'), " ", /*#__PURE__*/_react["default"].createElement("b", null, start), " ", t('pagination.to'), " ", /*#__PURE__*/_react["default"].createElement("b", null, end), ' ', t('pagination.of'), " ", /*#__PURE__*/_react["default"].createElement("b", null, total), " ", t('pagination.results'));
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
exports.PaginationLabel = PaginationLabel;
|
|
33
|
+
var _default = PaginationLabel;
|
|
34
|
+
exports["default"] = _default;
|
package/core/index.d.ts
CHANGED
package/core/index.js
CHANGED
|
@@ -222,6 +222,20 @@ Object.keys(_Divider).forEach(function (key) {
|
|
|
222
222
|
});
|
|
223
223
|
});
|
|
224
224
|
|
|
225
|
+
var _PaginationLabel = require("@digigov/ui/core/PaginationLabel");
|
|
226
|
+
|
|
227
|
+
Object.keys(_PaginationLabel).forEach(function (key) {
|
|
228
|
+
if (key === "default" || key === "__esModule") return;
|
|
229
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
230
|
+
if (key in exports && exports[key] === _PaginationLabel[key]) return;
|
|
231
|
+
Object.defineProperty(exports, key, {
|
|
232
|
+
enumerable: true,
|
|
233
|
+
get: function get() {
|
|
234
|
+
return _PaginationLabel[key];
|
|
235
|
+
}
|
|
236
|
+
});
|
|
237
|
+
});
|
|
238
|
+
|
|
225
239
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
226
240
|
|
|
227
241
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
package/es/core/Link/index.js
CHANGED
|
@@ -2,10 +2,11 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
3
3
|
var _excluded = ["children", "href"];
|
|
4
4
|
import * as React from 'react';
|
|
5
|
+
import CoreLink from '@digigov/react-core/Link';
|
|
5
6
|
export var CommonLink = function CommonLink(props) {
|
|
6
7
|
return /*#__PURE__*/React.createElement("a", props, props.children);
|
|
7
8
|
};
|
|
8
|
-
var LinkComponentContext = /*#__PURE__*/React.createContext(
|
|
9
|
+
var LinkComponentContext = /*#__PURE__*/React.createContext(CoreLink);
|
|
9
10
|
export var LinkProvider = function LinkProvider(props) {
|
|
10
11
|
return /*#__PURE__*/React.createElement(LinkComponentContext.Provider, {
|
|
11
12
|
value: props.component
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import CorePaginationLabel from '@digigov/react-extensions/admin/PaginationLabel';
|
|
3
|
+
import { useTranslation } from '@digigov/ui/app';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* PaginationLabel component is used for placing the pagination results label.
|
|
7
|
+
*/
|
|
8
|
+
export var PaginationLabel = /*#__PURE__*/React.forwardRef(function PaginationLabel(_ref, ref) {
|
|
9
|
+
var start = _ref.start,
|
|
10
|
+
end = _ref.end,
|
|
11
|
+
total = _ref.total;
|
|
12
|
+
|
|
13
|
+
var _useTranslation = useTranslation(),
|
|
14
|
+
t = _useTranslation.t;
|
|
15
|
+
|
|
16
|
+
return /*#__PURE__*/React.createElement(CorePaginationLabel, {
|
|
17
|
+
ref: ref
|
|
18
|
+
}, t('pagination.show'), " ", /*#__PURE__*/React.createElement("b", null, start), " ", t('pagination.to'), " ", /*#__PURE__*/React.createElement("b", null, end), ' ', t('pagination.of'), " ", /*#__PURE__*/React.createElement("b", null, total), " ", t('pagination.results'));
|
|
19
|
+
});
|
|
20
|
+
export default PaginationLabel;
|
package/es/core/index.js
CHANGED
|
@@ -14,4 +14,5 @@ export * from '@digigov/ui/core/Tabs';
|
|
|
14
14
|
export * from '@digigov/ui/core/NotificationBanner';
|
|
15
15
|
export * from '@digigov/ui/core/Table';
|
|
16
16
|
export * from '@digigov/ui/core/Button';
|
|
17
|
-
export * from '@digigov/ui/core/Divider';
|
|
17
|
+
export * from '@digigov/ui/core/Divider';
|
|
18
|
+
export * from '@digigov/ui/core/PaginationLabel';
|
package/es/locales/el.js
CHANGED
|
@@ -51,5 +51,11 @@ export default {
|
|
|
51
51
|
outdated: {
|
|
52
52
|
mobile: 'Η ιστοσελίδα ενδέχεται να μην λειτουργεί σωστά καθώς ο browser σας είτε δεν υποστηρίζεται είτε είναι μη επικαιροποιημένος. Παρακαλούμε επικαιροποιήστε τον browser σας.',
|
|
53
53
|
web: 'Η ιστοσελίδα ενδέχεται να μην λειτουργεί σωστά καθώς ο browser σας είναι μη επικαιροποιημένος. Για να επικαιροποιήσετε τον browser σας επισκεφθείτε την ιστοσελίδα: '
|
|
54
|
+
},
|
|
55
|
+
pagination: {
|
|
56
|
+
show: 'Εμφανίζονται',
|
|
57
|
+
to: 'έως',
|
|
58
|
+
of: 'από',
|
|
59
|
+
results: 'αποτελέσματα'
|
|
54
60
|
}
|
|
55
61
|
};
|
package/es/locales/en.js
CHANGED
|
@@ -51,5 +51,11 @@ export default {
|
|
|
51
51
|
outdated: {
|
|
52
52
|
mobile: 'This site may not work properly because your browser is either not supported or outdated. Please update your browser',
|
|
53
53
|
web: 'This site may not work properly because your browser outdated. To update your browser visit: '
|
|
54
|
+
},
|
|
55
|
+
pagination: {
|
|
56
|
+
show: 'Showing',
|
|
57
|
+
to: 'to',
|
|
58
|
+
of: 'of',
|
|
59
|
+
results: 'results'
|
|
54
60
|
}
|
|
55
61
|
};
|
package/esm/core/Link/index.js
CHANGED
|
@@ -2,10 +2,11 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
3
3
|
var _excluded = ["children", "href"];
|
|
4
4
|
import * as React from 'react';
|
|
5
|
+
import CoreLink from '@digigov/react-core/Link';
|
|
5
6
|
export var CommonLink = function CommonLink(props) {
|
|
6
7
|
return /*#__PURE__*/React.createElement("a", props, props.children);
|
|
7
8
|
};
|
|
8
|
-
var LinkComponentContext = /*#__PURE__*/React.createContext(
|
|
9
|
+
var LinkComponentContext = /*#__PURE__*/React.createContext(CoreLink);
|
|
9
10
|
export var LinkProvider = function LinkProvider(props) {
|
|
10
11
|
return /*#__PURE__*/React.createElement(LinkComponentContext.Provider, {
|
|
11
12
|
value: props.component
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import CorePaginationLabel from '@digigov/react-extensions/admin/PaginationLabel';
|
|
3
|
+
import { useTranslation } from '@digigov/ui/app';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* PaginationLabel component is used for placing the pagination results label.
|
|
7
|
+
*/
|
|
8
|
+
export var PaginationLabel = /*#__PURE__*/React.forwardRef(function PaginationLabel(_ref, ref) {
|
|
9
|
+
var start = _ref.start,
|
|
10
|
+
end = _ref.end,
|
|
11
|
+
total = _ref.total;
|
|
12
|
+
|
|
13
|
+
var _useTranslation = useTranslation(),
|
|
14
|
+
t = _useTranslation.t;
|
|
15
|
+
|
|
16
|
+
return /*#__PURE__*/React.createElement(CorePaginationLabel, {
|
|
17
|
+
ref: ref
|
|
18
|
+
}, t('pagination.show'), " ", /*#__PURE__*/React.createElement("b", null, start), " ", t('pagination.to'), " ", /*#__PURE__*/React.createElement("b", null, end), ' ', t('pagination.of'), " ", /*#__PURE__*/React.createElement("b", null, total), " ", t('pagination.results'));
|
|
19
|
+
});
|
|
20
|
+
export default PaginationLabel;
|
package/esm/core/index.js
CHANGED
|
@@ -14,4 +14,5 @@ export * from '@digigov/ui/core/Tabs';
|
|
|
14
14
|
export * from '@digigov/ui/core/NotificationBanner';
|
|
15
15
|
export * from '@digigov/ui/core/Table';
|
|
16
16
|
export * from '@digigov/ui/core/Button';
|
|
17
|
-
export * from '@digigov/ui/core/Divider';
|
|
17
|
+
export * from '@digigov/ui/core/Divider';
|
|
18
|
+
export * from '@digigov/ui/core/PaginationLabel';
|
package/esm/index.js
CHANGED
package/esm/locales/el.js
CHANGED
|
@@ -51,5 +51,11 @@ export default {
|
|
|
51
51
|
outdated: {
|
|
52
52
|
mobile: 'Η ιστοσελίδα ενδέχεται να μην λειτουργεί σωστά καθώς ο browser σας είτε δεν υποστηρίζεται είτε είναι μη επικαιροποιημένος. Παρακαλούμε επικαιροποιήστε τον browser σας.',
|
|
53
53
|
web: 'Η ιστοσελίδα ενδέχεται να μην λειτουργεί σωστά καθώς ο browser σας είναι μη επικαιροποιημένος. Για να επικαιροποιήσετε τον browser σας επισκεφθείτε την ιστοσελίδα: '
|
|
54
|
+
},
|
|
55
|
+
pagination: {
|
|
56
|
+
show: 'Εμφανίζονται',
|
|
57
|
+
to: 'έως',
|
|
58
|
+
of: 'από',
|
|
59
|
+
results: 'αποτελέσματα'
|
|
54
60
|
}
|
|
55
61
|
};
|
package/esm/locales/en.js
CHANGED
|
@@ -51,5 +51,11 @@ export default {
|
|
|
51
51
|
outdated: {
|
|
52
52
|
mobile: 'This site may not work properly because your browser is either not supported or outdated. Please update your browser',
|
|
53
53
|
web: 'This site may not work properly because your browser outdated. To update your browser visit: '
|
|
54
|
+
},
|
|
55
|
+
pagination: {
|
|
56
|
+
show: 'Showing',
|
|
57
|
+
to: 'to',
|
|
58
|
+
of: 'of',
|
|
59
|
+
results: 'results'
|
|
54
60
|
}
|
|
55
61
|
};
|
package/locales/el.d.ts
CHANGED
package/locales/el.js
CHANGED
|
@@ -57,6 +57,12 @@ var _default = {
|
|
|
57
57
|
outdated: {
|
|
58
58
|
mobile: 'Η ιστοσελίδα ενδέχεται να μην λειτουργεί σωστά καθώς ο browser σας είτε δεν υποστηρίζεται είτε είναι μη επικαιροποιημένος. Παρακαλούμε επικαιροποιήστε τον browser σας.',
|
|
59
59
|
web: 'Η ιστοσελίδα ενδέχεται να μην λειτουργεί σωστά καθώς ο browser σας είναι μη επικαιροποιημένος. Για να επικαιροποιήσετε τον browser σας επισκεφθείτε την ιστοσελίδα: '
|
|
60
|
+
},
|
|
61
|
+
pagination: {
|
|
62
|
+
show: 'Εμφανίζονται',
|
|
63
|
+
to: 'έως',
|
|
64
|
+
of: 'από',
|
|
65
|
+
results: 'αποτελέσματα'
|
|
60
66
|
}
|
|
61
67
|
};
|
|
62
68
|
exports["default"] = _default;
|
package/locales/en.d.ts
CHANGED
package/locales/en.js
CHANGED
|
@@ -57,6 +57,12 @@ var _default = {
|
|
|
57
57
|
outdated: {
|
|
58
58
|
mobile: 'This site may not work properly because your browser is either not supported or outdated. Please update your browser',
|
|
59
59
|
web: 'This site may not work properly because your browser outdated. To update your browser visit: '
|
|
60
|
+
},
|
|
61
|
+
pagination: {
|
|
62
|
+
show: 'Showing',
|
|
63
|
+
to: 'to',
|
|
64
|
+
of: 'of',
|
|
65
|
+
results: 'results'
|
|
60
66
|
}
|
|
61
67
|
};
|
|
62
68
|
exports["default"] = _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "@digigov reusable components toolkit",
|
|
5
5
|
"module": "./esm/index.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"clsx": "1.1.1",
|
|
19
19
|
"react": "16.14.0",
|
|
20
20
|
"react-dom": "16.14.0",
|
|
21
|
-
"@digigov/react-core": "0.6.
|
|
21
|
+
"@digigov/react-core": "0.6.5",
|
|
22
|
+
"@digigov/react-extensions": "0.6.0"
|
|
22
23
|
},
|
|
23
24
|
"gitHead": "c903a46306f77f55ad7fc4d2e274006f39a6c871",
|
|
24
25
|
"private": false,
|