@mtes-mct/monitor-ui 13.10.0 → 14.0.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 +8 -0
- package/components/Message.d.ts.map +1 -1
- package/elements/Tag/index.d.ts +7 -8
- package/elements/Tag/index.d.ts.map +1 -1
- package/entities/Mission.d.ts +2 -1
- package/entities/Mission.d.ts.map +1 -1
- package/icons/AttentionFilled.d.ts +3 -0
- package/icons/AttentionFilled.d.ts.map +1 -0
- package/icons/Circle.d.ts +3 -0
- package/icons/Circle.d.ts.map +1 -0
- package/icons/CircleFilled.d.ts +3 -0
- package/icons/CircleFilled.d.ts.map +1 -0
- package/icons/ClockDashed.d.ts +3 -0
- package/icons/ClockDashed.d.ts.map +1 -0
- package/icons/ControlUnit.d.ts.map +1 -1
- package/icons/ControlUnitFilled.d.ts.map +1 -1
- package/icons/index.d.ts +5 -3
- package/icons/index.d.ts.map +1 -1
- package/index.d.ts +2 -0
- package/index.d.ts.map +1 -1
- package/index.js +287 -203
- package/package.json +2 -2
- package/symbols/Dot.d.ts +7 -0
- package/symbols/Dot.d.ts.map +1 -0
- package/theme.d.ts +1 -0
- package/theme.d.ts.map +1 -1
- package/icons/Dot.d.ts +0 -3
- package/icons/Dot.d.ts.map +0 -1
- package/icons/DotFilled.d.ts +0 -3
- package/icons/DotFilled.d.ts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [13.10.0](https://github.com/MTES-MCT/monitor-ui/compare/v13.9.0...v13.10.0) (2024-03-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **icons:** introduce title props on icons for additional info on hover ([5849aa1](https://github.com/MTES-MCT/monitor-ui/commit/5849aa103ed6039e31b92b06ed4f0b70f86a43e7))
|
|
7
|
+
* **symbols:** rework ExclamationPoint to resize dynamically ([ce6a398](https://github.com/MTES-MCT/monitor-ui/commit/ce6a3981a2e5544cf630a7185bce4171a648140e))
|
|
8
|
+
|
|
1
9
|
## [13.9.0](https://github.com/MTES-MCT/monitor-ui/compare/v13.8.0...v13.9.0) (2024-03-24)
|
|
2
10
|
|
|
3
11
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Message.d.ts","sourceRoot":"","sources":["../../src/components/Message.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Message.d.ts","sourceRoot":"","sources":["../../src/components/Message.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,cAAc,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAA;AAG3D,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAA;AAGpC,MAAM,MAAM,YAAY,GAAG,cAAc,CAAC,cAAc,CAAC,GAAG;IAC1D,QAAQ,EAAE,SAAS,GAAG,MAAM,CAAA;IAC5B,KAAK,CAAC,EAAE,KAAK,GAAG,SAAS,CAAA;CAC1B,CAAA;AACD,wBAAgB,OAAO,CAAC,EAAE,QAAQ,EAAE,KAAqB,EAAE,GAAG,WAAW,EAAE,EAAE,YAAY,2CAkBxF"}
|
package/elements/Tag/index.d.ts
CHANGED
|
@@ -1,24 +1,23 @@
|
|
|
1
1
|
import { type FunctionComponent, type HTMLAttributes } from 'react';
|
|
2
|
-
import { Accent
|
|
2
|
+
import { Accent } from '../../constants';
|
|
3
3
|
import type { IconProps } from '../../types/definitions';
|
|
4
4
|
export type TagProps = HTMLAttributes<HTMLSpanElement> & {
|
|
5
5
|
Icon?: FunctionComponent<IconProps> | undefined;
|
|
6
6
|
accent?: Accent | undefined;
|
|
7
7
|
backgroundColor?: string | undefined;
|
|
8
8
|
borderColor?: string | undefined;
|
|
9
|
-
|
|
10
|
-
bulletColor?: string | undefined;
|
|
9
|
+
color?: string | undefined;
|
|
11
10
|
iconColor?: string | undefined;
|
|
12
11
|
isLight?: boolean | undefined;
|
|
13
|
-
|
|
12
|
+
withCircleIcon?: boolean | undefined;
|
|
14
13
|
};
|
|
15
|
-
export declare function Tag({ accent, backgroundColor, borderColor,
|
|
14
|
+
export declare function Tag({ accent, backgroundColor, borderColor, children, className, color, Icon, iconColor, isLight, withCircleIcon, ...nativeProps }: TagProps): import("react/jsx-runtime").JSX.Element;
|
|
16
15
|
export declare const PrimaryTag: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {
|
|
17
16
|
$backgroundColor?: string | undefined;
|
|
18
17
|
$borderColor?: string | undefined;
|
|
19
18
|
$color?: string | undefined;
|
|
20
19
|
$isLight: boolean;
|
|
21
|
-
$
|
|
20
|
+
$withCircleIcon?: boolean | undefined;
|
|
22
21
|
} & {
|
|
23
22
|
$isLight: boolean;
|
|
24
23
|
}, never>;
|
|
@@ -27,7 +26,7 @@ export declare const SecondaryTag: import("styled-components").StyledComponent<"
|
|
|
27
26
|
$borderColor?: string | undefined;
|
|
28
27
|
$color?: string | undefined;
|
|
29
28
|
$isLight: boolean;
|
|
30
|
-
$
|
|
29
|
+
$withCircleIcon?: boolean | undefined;
|
|
31
30
|
} & {
|
|
32
31
|
$isLight: boolean;
|
|
33
32
|
}, never>;
|
|
@@ -36,7 +35,7 @@ export declare const TertiaryTag: import("styled-components").StyledComponent<"s
|
|
|
36
35
|
$borderColor?: string | undefined;
|
|
37
36
|
$color?: string | undefined;
|
|
38
37
|
$isLight: boolean;
|
|
39
|
-
$
|
|
38
|
+
$withCircleIcon?: boolean | undefined;
|
|
40
39
|
} & {
|
|
41
40
|
$isLight: boolean;
|
|
42
41
|
}, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/elements/Tag/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,iBAAiB,EAAE,KAAK,cAAc,EAAW,MAAM,OAAO,CAAA;AAG5E,OAAO,EAAE,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/elements/Tag/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,iBAAiB,EAAE,KAAK,cAAc,EAAW,MAAM,OAAO,CAAA;AAG5E,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAA;AAGxC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAA;AAExD,MAAM,MAAM,QAAQ,GAAG,cAAc,CAAC,eAAe,CAAC,GAAG;IACvD,IAAI,CAAC,EAAE,iBAAiB,CAAC,SAAS,CAAC,GAAG,SAAS,CAAA;IAC/C,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAC3B,eAAe,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IACpC,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAChC,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAC1B,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAC9B,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAA;IAC7B,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAA;CACrC,CAAA;AACD,wBAAgB,GAAG,CAAC,EAClB,MAAM,EACN,eAAe,EACf,WAAW,EACX,QAAQ,EACR,SAAS,EACT,KAAK,EACL,IAAI,EACJ,SAAS,EACT,OAAe,EACf,cAAsB,EACtB,GAAG,WAAW,EACf,EAAE,QAAQ,2CA+CV;AA+BD,eAAO,MAAM,UAAU;uBA5BF,MAAM,GAAG,SAAS;mBACtB,MAAM,GAAG,SAAS;aACxB,MAAM,GAAG,SAAS;cACjB,OAAO;sBACC,OAAO,GAAG,SAAS;;cAyB3B,OAAO;SAIlB,CAAA;AAGD,eAAO,MAAM,YAAY;uBApCJ,MAAM,GAAG,SAAS;mBACtB,MAAM,GAAG,SAAS;aACxB,MAAM,GAAG,SAAS;cACjB,OAAO;sBACC,OAAO,GAAG,SAAS;;cAiC3B,OAAO;SAIlB,CAAA;AAED,eAAO,MAAM,WAAW;uBA3CH,MAAM,GAAG,SAAS;mBACtB,MAAM,GAAG,SAAS;aACxB,MAAM,GAAG,SAAS;cACjB,OAAO;sBACC,OAAO,GAAG,SAAS;;cAwC3B,OAAO;SAIlB,CAAA"}
|
package/entities/Mission.d.ts
CHANGED
|
@@ -3,7 +3,8 @@ export declare namespace Mission {
|
|
|
3
3
|
MONITORENV = "MONITORENV",
|
|
4
4
|
MONITORFISH = "MONITORFISH",
|
|
5
5
|
POSEIDON_CACEM = "POSEIDON_CACEM",
|
|
6
|
-
POSEIDON_CNSP = "POSEIDON_CNSP"
|
|
6
|
+
POSEIDON_CNSP = "POSEIDON_CNSP",
|
|
7
|
+
RAPPORTNAV = "RAPPORTNAV"
|
|
7
8
|
}
|
|
8
9
|
}
|
|
9
10
|
//# sourceMappingURL=Mission.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Mission.d.ts","sourceRoot":"","sources":["../../src/entities/Mission.ts"],"names":[],"mappings":"AAAA,yBAAiB,OAAO,CAAC;IACvB,KAAY,iBAAiB;QAC3B,UAAU,eAAe;QACzB,WAAW,gBAAgB;QAC3B,cAAc,mBAAmB;QACjC,aAAa,kBAAkB;
|
|
1
|
+
{"version":3,"file":"Mission.d.ts","sourceRoot":"","sources":["../../src/entities/Mission.ts"],"names":[],"mappings":"AAAA,yBAAiB,OAAO,CAAC;IACvB,KAAY,iBAAiB;QAC3B,UAAU,eAAe;QACzB,WAAW,gBAAgB;QAC3B,cAAc,mBAAmB;QACjC,aAAa,kBAAkB;QAC/B,UAAU,eAAe;KAC1B;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AttentionFilled.d.ts","sourceRoot":"","sources":["../../src/icons/AttentionFilled.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAErD,wBAAgB,eAAe,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,WAAW,EAAE,EAAE,SAAS,2CAahF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Circle.d.ts","sourceRoot":"","sources":["../../src/icons/Circle.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAErD,wBAAgB,MAAM,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,WAAW,EAAE,EAAE,SAAS,2CAgBvE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CircleFilled.d.ts","sourceRoot":"","sources":["../../src/icons/CircleFilled.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAErD,wBAAgB,YAAY,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,WAAW,EAAE,EAAE,SAAS,2CAa7E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClockDashed.d.ts","sourceRoot":"","sources":["../../src/icons/ClockDashed.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAErD,wBAAgB,WAAW,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,WAAW,EAAE,EAAE,SAAS,2CAiB5E"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ControlUnit.d.ts","sourceRoot":"","sources":["../../src/icons/ControlUnit.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAErD,wBAAgB,WAAW,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,WAAW,EAAE,EAAE,SAAS,
|
|
1
|
+
{"version":3,"file":"ControlUnit.d.ts","sourceRoot":"","sources":["../../src/icons/ControlUnit.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAErD,wBAAgB,WAAW,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,WAAW,EAAE,EAAE,SAAS,2CAkB5E"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ControlUnitFilled.d.ts","sourceRoot":"","sources":["../../src/icons/ControlUnitFilled.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAErD,wBAAgB,iBAAiB,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,WAAW,EAAE,EAAE,SAAS,
|
|
1
|
+
{"version":3,"file":"ControlUnitFilled.d.ts","sourceRoot":"","sources":["../../src/icons/ControlUnitFilled.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAErD,wBAAgB,iBAAiB,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,WAAW,EAAE,EAAE,SAAS,2CAkBlF"}
|
package/icons/index.d.ts
CHANGED
|
@@ -3,11 +3,15 @@ import { Alert } from './Alert';
|
|
|
3
3
|
import { Anchor } from './Anchor';
|
|
4
4
|
import { Archive } from './Archive';
|
|
5
5
|
import { Attention } from './Attention';
|
|
6
|
+
import { AttentionFilled } from './AttentionFilled';
|
|
6
7
|
import { Calendar } from './Calendar';
|
|
7
8
|
import { Car } from './Car';
|
|
8
9
|
import { Check } from './Check';
|
|
9
10
|
import { Chevron } from './Chevron';
|
|
11
|
+
import { Circle } from './Circle';
|
|
12
|
+
import { CircleFilled } from './CircleFilled';
|
|
10
13
|
import { Clock } from './Clock';
|
|
14
|
+
import { ClockDashed } from './ClockDashed';
|
|
11
15
|
import { Close } from './Close';
|
|
12
16
|
import { Comment } from './Comment';
|
|
13
17
|
import { Confirm } from './Confirm';
|
|
@@ -15,8 +19,6 @@ import { ControlUnit } from './ControlUnit';
|
|
|
15
19
|
import { ControlUnitFilled } from './ControlUnitFilled';
|
|
16
20
|
import { Delete } from './Delete';
|
|
17
21
|
import { Display } from './Display';
|
|
18
|
-
import { Dot } from './Dot';
|
|
19
|
-
import { DotFilled } from './DotFilled';
|
|
20
22
|
import { DoubleChevron } from './DoubleChevron';
|
|
21
23
|
import { Download } from './Download';
|
|
22
24
|
import { Drapeau } from './Drapeau';
|
|
@@ -83,5 +85,5 @@ import { Vessel } from './Vessel';
|
|
|
83
85
|
import { ViewOnMap } from './ViewOnMap';
|
|
84
86
|
import { Vms } from './Vms';
|
|
85
87
|
import { Warning } from './Warning';
|
|
86
|
-
export { ActivityFeed, Alert, Anchor, Archive, Attention, Calendar, Car, Check, Chevron, Clock, Close, Comment, Confirm, ControlUnit, ControlUnitFilled, Delete, Display,
|
|
88
|
+
export { ActivityFeed, Alert, Anchor, Archive, Attention, AttentionFilled, Calendar, Car, Check, Chevron, Circle, CircleFilled, Clock, ClockDashed, Close, Comment, Confirm, ControlUnit, ControlUnitFilled, Delete, Display, DoubleChevron, Download, Drapeau, Duplicate, Edit, EditUnbordered, Expand, Favorite, FilledArrow, Filter, FilterBis, Fishery, FishingEngine, FleetSegment, Focus, FocusVessel, FocusZones, Hide, Info, Infringement, Landmark, Link, List, MapLayers, MeasureAngle, MeasureBrokenLine, MeasureCircle, MeasureLine, Minus, MissionAction, More, Note, Observation, Phone, Pin, PinFilled, Pinpoint, PinpointHide, Plane, Plus, Reject, Report, Rescue, Reset, Save, Search, SelectCircle, SelectPolygon, SelectRectangle, SelectZone, Semaphore, ShowErsMessages, ShowXml, SortSelectedDown, SortSelectedUp, SortingArrows, SortingChevrons, Summary, Tag, Target, Unlink, Unlock, Vessel, ViewOnMap, Vms, Warning };
|
|
87
89
|
//# sourceMappingURL=index.d.ts.map
|
package/icons/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/icons/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AACnC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAA;AAC3B,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAA;AAC/B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AACnC,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/icons/index.tsx"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -63,6 +63,7 @@ export { FormikTextarea } from './formiks/FormikTextarea';
|
|
|
63
63
|
export { FormikTextInput } from './formiks/FormikTextInput';
|
|
64
64
|
export { FormikToggle } from './formiks/FormikToggle';
|
|
65
65
|
export { ExclamationPoint } from './symbols/ExclamationPoint';
|
|
66
|
+
export { Dot } from './symbols/Dot';
|
|
66
67
|
export { Accent, Icon, Level, CoordinatesFormat, Size, OPENLAYERS_PROJECTION, RichBoolean, TagBullet, WSG84_PROJECTION } from './constants';
|
|
67
68
|
export type { Administration } from './entities/Administration';
|
|
68
69
|
export { ControlUnit } from './entities/ControlUnit/types';
|
|
@@ -129,6 +130,7 @@ export type { LegendProps } from './elements/Legend';
|
|
|
129
130
|
export type { TagProps } from './elements/Tag';
|
|
130
131
|
export type { TagGroupProps } from './elements/TagGroup';
|
|
131
132
|
export type { ExclamationPointProps } from './symbols/ExclamationPoint';
|
|
133
|
+
export type { DotProps } from './symbols/Dot';
|
|
132
134
|
export type { CheckboxProps } from './fields/Checkbox';
|
|
133
135
|
export type { CheckPickerProps } from './fields/CheckPicker';
|
|
134
136
|
export type { CoordinatesInputProps } from './fields/CoordinatesInput';
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/index.js
CHANGED
|
@@ -249,6 +249,7 @@ const OnlyFontGlobalStyle = createGlobalStyle`
|
|
|
249
249
|
blueYonder25: '#D4DDE7',
|
|
250
250
|
blueGray: '#5697D2',
|
|
251
251
|
blueGray25: '#D4E5F4',
|
|
252
|
+
mayaBlue: '#5FBDFC',
|
|
252
253
|
maximumRed: '#E1000F',
|
|
253
254
|
maximumRed15: '#FBD9DB',
|
|
254
255
|
babyBlueEyes: '#99C9FF',
|
|
@@ -17961,6 +17962,48 @@ function Attention({ color, size, title, ...nativeProps }) {
|
|
|
17961
17962
|
});
|
|
17962
17963
|
}
|
|
17963
17964
|
|
|
17965
|
+
function AttentionFilled({ color, size, title, ...nativeProps }) {
|
|
17966
|
+
return /*#__PURE__*/ jsx(IconBox, {
|
|
17967
|
+
$color: color,
|
|
17968
|
+
$size: size,
|
|
17969
|
+
title: title,
|
|
17970
|
+
children: /*#__PURE__*/ jsxs("svg", {
|
|
17971
|
+
height: "20",
|
|
17972
|
+
viewBox: "0 0 20 20",
|
|
17973
|
+
width: "20",
|
|
17974
|
+
...nativeProps,
|
|
17975
|
+
children: [
|
|
17976
|
+
/*#__PURE__*/ jsxs("g", {
|
|
17977
|
+
transform: "translate(200 -82)",
|
|
17978
|
+
children: [
|
|
17979
|
+
/*#__PURE__*/ jsx("path", {
|
|
17980
|
+
d: "M-190,83a9,9,0,0,0-9,9,9,9,0,0,0,9,9,9,9,0,0,0,9-9A9,9,0,0,0-190,83Z",
|
|
17981
|
+
fill: "currentColor"
|
|
17982
|
+
}),
|
|
17983
|
+
/*#__PURE__*/ jsx("rect", {
|
|
17984
|
+
fill: "#fff",
|
|
17985
|
+
height: "5",
|
|
17986
|
+
transform: "translate(-189 93) rotate(180)",
|
|
17987
|
+
width: "2"
|
|
17988
|
+
}),
|
|
17989
|
+
/*#__PURE__*/ jsx("rect", {
|
|
17990
|
+
fill: "#fff",
|
|
17991
|
+
height: "2",
|
|
17992
|
+
transform: "translate(-189 96) rotate(180)",
|
|
17993
|
+
width: "2"
|
|
17994
|
+
})
|
|
17995
|
+
]
|
|
17996
|
+
}),
|
|
17997
|
+
/*#__PURE__*/ jsx("rect", {
|
|
17998
|
+
fill: "none",
|
|
17999
|
+
height: "20",
|
|
18000
|
+
width: "20"
|
|
18001
|
+
})
|
|
18002
|
+
]
|
|
18003
|
+
})
|
|
18004
|
+
});
|
|
18005
|
+
}
|
|
18006
|
+
|
|
17964
18007
|
function Calendar({ color, size, title, ...nativeProps }) {
|
|
17965
18008
|
return /*#__PURE__*/ jsx(IconBox, {
|
|
17966
18009
|
$color: color,
|
|
@@ -18144,6 +18187,71 @@ function Chevron({ color, size, title, ...nativeProps }) {
|
|
|
18144
18187
|
});
|
|
18145
18188
|
}
|
|
18146
18189
|
|
|
18190
|
+
function Circle({ color, size, title, ...nativeProps }) {
|
|
18191
|
+
return /*#__PURE__*/ jsx(IconBox, {
|
|
18192
|
+
$color: color,
|
|
18193
|
+
$size: size,
|
|
18194
|
+
title: title,
|
|
18195
|
+
children: /*#__PURE__*/ jsx("svg", {
|
|
18196
|
+
height: "20",
|
|
18197
|
+
viewBox: "0 0 20 20",
|
|
18198
|
+
width: "20",
|
|
18199
|
+
...nativeProps,
|
|
18200
|
+
children: /*#__PURE__*/ jsxs("g", {
|
|
18201
|
+
transform: "translate(-480 -481)",
|
|
18202
|
+
children: [
|
|
18203
|
+
/*#__PURE__*/ jsx("g", {
|
|
18204
|
+
transform: "translate(720 399)",
|
|
18205
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
18206
|
+
d: "M-230,83a9,9,0,0,0-9,9,9,9,0,0,0,9,9,9,9,0,0,0,9-9A9,9,0,0,0-230,83Zm0,16a7,7,0,0,1-7-7,7,7,0,0,1,7-7,7,7,0,0,1,7,7A7,7,0,0,1-230,99Z",
|
|
18207
|
+
fill: "currentColor"
|
|
18208
|
+
})
|
|
18209
|
+
}),
|
|
18210
|
+
/*#__PURE__*/ jsx("rect", {
|
|
18211
|
+
fill: "none",
|
|
18212
|
+
height: "20",
|
|
18213
|
+
transform: "translate(480 481)",
|
|
18214
|
+
width: "20"
|
|
18215
|
+
})
|
|
18216
|
+
]
|
|
18217
|
+
})
|
|
18218
|
+
})
|
|
18219
|
+
});
|
|
18220
|
+
}
|
|
18221
|
+
|
|
18222
|
+
function CircleFilled({ color, size, title, ...nativeProps }) {
|
|
18223
|
+
return /*#__PURE__*/ jsx(IconBox, {
|
|
18224
|
+
$color: color,
|
|
18225
|
+
$size: size,
|
|
18226
|
+
title: title,
|
|
18227
|
+
children: /*#__PURE__*/ jsx("svg", {
|
|
18228
|
+
height: "20",
|
|
18229
|
+
viewBox: "0 0 20 20",
|
|
18230
|
+
width: "20",
|
|
18231
|
+
...nativeProps,
|
|
18232
|
+
children: /*#__PURE__*/ jsxs("g", {
|
|
18233
|
+
transform: "translate(-505 -481)",
|
|
18234
|
+
children: [
|
|
18235
|
+
/*#__PURE__*/ jsx("g", {
|
|
18236
|
+
transform: "translate(506 482)",
|
|
18237
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
18238
|
+
d: "M11,2a9,9,0,1,0,9,9A9,9,0,0,0,11,2Z",
|
|
18239
|
+
fill: "currentColor",
|
|
18240
|
+
transform: "translate(-2 -2)"
|
|
18241
|
+
})
|
|
18242
|
+
}),
|
|
18243
|
+
/*#__PURE__*/ jsx("rect", {
|
|
18244
|
+
fill: "none",
|
|
18245
|
+
height: "20",
|
|
18246
|
+
transform: "translate(505 481)",
|
|
18247
|
+
width: "20"
|
|
18248
|
+
})
|
|
18249
|
+
]
|
|
18250
|
+
})
|
|
18251
|
+
})
|
|
18252
|
+
});
|
|
18253
|
+
}
|
|
18254
|
+
|
|
18147
18255
|
function Clock({ color, size, title, ...nativeProps }) {
|
|
18148
18256
|
return /*#__PURE__*/ jsx(IconBox, {
|
|
18149
18257
|
$color: color,
|
|
@@ -18203,6 +18311,49 @@ function Clock({ color, size, title, ...nativeProps }) {
|
|
|
18203
18311
|
});
|
|
18204
18312
|
}
|
|
18205
18313
|
|
|
18314
|
+
function ClockDashed({ color, size, title, ...nativeProps }) {
|
|
18315
|
+
return /*#__PURE__*/ jsx(IconBox, {
|
|
18316
|
+
$color: color,
|
|
18317
|
+
$size: size,
|
|
18318
|
+
title: title,
|
|
18319
|
+
children: /*#__PURE__*/ jsxs("svg", {
|
|
18320
|
+
height: "20",
|
|
18321
|
+
viewBox: "0 0 20 20",
|
|
18322
|
+
width: "20",
|
|
18323
|
+
...nativeProps,
|
|
18324
|
+
children: [
|
|
18325
|
+
/*#__PURE__*/ jsx("path", {
|
|
18326
|
+
d: "M0,0H20V20H0Z",
|
|
18327
|
+
fill: "none"
|
|
18328
|
+
}),
|
|
18329
|
+
/*#__PURE__*/ jsx("path", {
|
|
18330
|
+
d: "M0,0H20V20H0Z",
|
|
18331
|
+
fill: "none"
|
|
18332
|
+
}),
|
|
18333
|
+
/*#__PURE__*/ jsx("path", {
|
|
18334
|
+
d: "M10,1H9.307a9.006,9.006,0,0,0-2.1.414L7.87,3.462A6.862,6.862,0,0,1,10,3.126V1ZM4.7,2.726c-.218.159-.427.327-.629.5h0l-.02.018h0l-.02.018h0l0,0h0l-.005,0h0L4,3.288H4l0,0H4l0,0h0l0,.005h0l0,0h0l0,0h0l0,0h0l0,0h0l-.005,0h0l0,0v0l0,0h0l0,0h0l-.009.009h0l0,0,0,0,0,0,0,0,0,0h0l0,0,0,0,0,0v0l0,0,0,0,0,0h0l0,0v0l0,0h0l0,0,0,0,0,0,0,0,0,0h0l0,0v0l0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-.01.008v0l0,0,0,0,0,0,0,0,0,0h0l-.005.005v0l0,0v0l0,0,0,0,0,0h0l-.01.009v0l0,0,0,0,0,0v0l0,0h0l-.011.01v0l0,0,0,0,0,0h0l-.01.01h0l0,0h0l0,0h0l0,0h0l-.011.01h0l0,0h0l0,0h0l-.015.014h0l0,0v0l0,0h0L3.671,3.6h0l0,0h0l0,0h0l-.015.015h0l0,0h0l0,0h0l-.015.015h0l0,0h0l-.015.016h0l0,0h0l-.019.019h0l0,0h0l-.015.016h0l-.046.048h0L3.474,3.8h0l-.019.02h0a9.118,9.118,0,0,0-.748.9L4.428,5.973a6.912,6.912,0,0,1,1.524-1.53L4.7,2.726ZM1.43,7.244a8.8,8.8,0,0,0-.318,1.333h0l0,.021h0l0,.022h0l0,.026h0l0,.021h0v0h0l0,.016h0v.005h0l0,.02v.006h0l0,.015h0v.005h0l0,.014v.012h0v.01h0v.012l0,.014V8.83h0v.013l0,.013v.358h0v.112h0v.007h0v.02h0v.028h0v.02h0v.05h0v.049h0v.02h0v.05h0V9.6h0V9.63h0v.021h0v.029h0v.049H1v.021H1v.02H1V9.8H1v.02H1v.05H1V9.9H1v.029H1v.02H1V9.97H1v.007H1V10H3.126a6.856,6.856,0,0,1,.328-2.105L1.43,7.244Zm2.04,4.911-2.019.666c.023.071.048.142.073.212h0l.007.021h0l0,.005h0l0,0h0l.008.02h0l0,0h0l.007.02h0v.01h0l0,.013v0l0,0v0l0,0v.005l0,.005v.015l0,0v.01l0,.005V13.2l0,0v0l0,0v0l0,0v.009l0,0v0l0,.011v.008l0,.005h0l0,.012v0l0,0v0l0,0v0l0,.006h0l0,.006h0l0,.005h0l0,.005h0l.007.019h0l0,.006h0l.01.025h0a8.943,8.943,0,0,0,.6,1.21h0l0,.005h0l0,.005h0l.01.018h0l0,.005h0l.007.011h0l0,.006h0l0,0h0l0,.006h0l.007.011h0l0,0v0l0,0h0l0,.005h0l0,.005v0l0,0h0l0,0v0l0,0h0l0,.005v0l0,0v0l0,0v0l0,0,0,0,0,.005h0l0,0v0l0,0,0,0v0l0,0,0,0,0,0,0,0,0,0v0l0,0,0,0,0,0v0l.008.012h0l0,0h0l0,0h0l.008.013h0l0,0h0l0,0h0q.169.267.357.521l1.712-1.26a6.827,6.827,0,0,1-.989-1.914Zm2.525,3.432L4.754,17.314c.11.079.222.156.335.23h0l.022.014h0l0,0h0l0,0h0l.011.008h0l0,0h0l0,0h0l.006,0,0,0h0l0,0h0l0,0,0,0,0,0h0l.006,0h0l.005,0h0l0,0h0l0,0h0l.011.007h0l.005,0h0l.005,0h0l.017.01h0l0,0h0a8.939,8.939,0,0,0,1.574.78h0l.026.01h0l.025.009h0l.006,0h0l.013.005h0l.006,0h0l0,0h.008l.006,0h0l.006,0h0l0,0h0l0,0h0l.012.005h0l0,0h.008l0,0h0l.006,0h.02l.005,0H7l0,0h0l0,0H7.02l.005,0h.02l.008,0h.018l.013,0H7.1l.02.006h.006l.021.007h0l.005,0h0l.027.009h0l.1.033.643-2.027a6.812,6.812,0,0,1-1.925-.967Zm6.185.935a6.882,6.882,0,0,1-2.127.352L10.069,19a9.24,9.24,0,0,0,1.319-.106h0l.022,0h.006l.022,0h.006l.021,0h0l.022,0H11.5l.015,0h.007l.016,0h.011l.015,0h.012l.01,0H11.6l.015,0h.013l.009,0h.018l.008,0h.014l.013,0H11.7l.008,0h.216l.012,0h.042l.007,0h.007l.006,0h0l.013,0h.007l.007,0h.02l.014,0h.007l.006,0h0l.013,0h0l.005,0h0l.013,0h0l.007,0h.007l.013,0h.007l.02,0h0l.006,0h0l.02,0h0l.026-.007h0l.02-.005h0l.006,0h0l.02-.005h0q.3-.078.591-.175l-.674-2.016ZM15.6,13.984a6.912,6.912,0,0,1-1.513,1.541l1.267,1.708c.067-.05.134-.1.2-.152h0l.005,0h0l.047-.037h0l.021-.016h0l.005,0h0L15.651,17h0l0,0h0l.005,0h0l.016-.012h0l0,0h0l.016-.013h0l.005,0h0l0,0h0l.015-.013h0l0,0h0l.005,0h0l.011-.008h0l.005,0h0l0,0h0l.015-.013h0l0,0h0l.02-.016h0l0,0h0l.015-.013h0l.005,0h0l.005,0h0l.016-.013h0l.005,0h0l.02-.017h0l.02-.017h0l.005,0h0l.02-.018h0l.021-.018h0l.005,0h0l.02-.018h0l0,0h0l.02-.018h0l.025-.023h0l.02-.018h0l.02-.018h0a9.059,9.059,0,0,0,1.192-1.321h0l.016-.021h0l0-.005h0l0-.005h0l.008-.011h0l0-.005h0l0-.005h0l.012-.016h0l0,0v0l0,0h0l0-.005h0l0-.005h0l0,0,0,0,0,0h0l0,0h0l0-.005h0l0,0,0,0v0L15.6,13.984ZM19,9.9l-2.125.024V10a6.871,6.871,0,0,1-.312,2.055l2.029.635a8.91,8.91,0,0,0,.356-1.706h0v-.007h0v-.014h0v-.007h0v-.014h0v-.006h0l0-.014h0v-.006h0l0-.014h0v-.007h0l0-.013h0v-.006h0l0-.014h0V10.85h0l0-.014h0v-.007h0l0-.021h0V10.8h0v-.014h0v-.007h0v-.014h0v-.006h0v-.014h0v-.006h0l0-.014h0v-.006h0V10.7h0v-.006h0v-.013h0v-.006h0v-.014h0V10.65h0v-.02h0v-.014h0v-.006h0v-.013h0v-.013h0v-.007h0v-.006h0v-.006h0v-.02h0v-.007h0v-.006h0v-.006h0v-.02h0v-.007h0v-.006h0v-.006h0v-.028h0v-.013h0V10.42h0V10.4h0v-.013h0v-.007h0V10.37h0v-.006h0v-.057h0V10.3h0v-.006h0v-.007h0v-.014h0v-.021h0V10.24h0v-.013h0v-.007h0V10.2h0v-.013h0v-.028h0v-.013h0v-.007h0v-.021h0v-.021h0v-.02h0v-.021h0v-.035h0V10h0V9.993h0V9.986h0V9.978h0V9.9ZM17.212,4.616l-1.7,1.273a6.836,6.836,0,0,1,1,1.906l2.014-.681a8.934,8.934,0,0,0-1.315-2.5ZM12.657,1.4,12.03,3.43a6.822,6.822,0,0,1,1.932.952L15.19,2.646c-.112-.079-.224-.154-.339-.228h0L14.8,2.385h0l-.005,0h0l-.017-.01h0l-.005,0h0l-.011-.007h0l-.005,0h0l-.005,0h0l-.005,0h0l-.011-.007h0l0,0h0l0,0h0l-.011-.007h0l0,0h0l0,0h0l0,0h0l0,0h0l0,0h0l0,0h0l0,0h0l-.005,0,0,0,0,0h0l0,0h0l0,0,0,0-.005,0h0l0,0h0l0,0h0l0,0,0,0h0l0,0-.005,0h0l0,0h0l0,0,0,0h0l0,0h0l-.006,0,0,0,0,0h0l0,0h0l0,0h0l-.007-.005h0l0,0h0l0,0h0l0,0h0l-.012-.008h0l0,0h0l0,0h0l-.013-.008h0l0,0h0l0,0h0l-.018-.01h0l0,0h0l-.018-.011h0l0,0h0l-.023-.014h0a9.076,9.076,0,0,0-1.384-.634h0l-.025-.009h0l0,0h0l-.021-.007h-.011L12.961,1.5H12.95l-.015-.006h-.012l-.014,0h-.018l-.009,0h-.018l-.009,0h-.021l-.006,0h0l0,0h-.047l-.006,0h-.02l-.007,0h-.014l0,0h0l-.006,0h0l-.005,0h0l0,0h0l-.005,0h0l-.013,0h-.02l-.006,0Z",
|
|
18335
|
+
fill: "currentColor"
|
|
18336
|
+
}),
|
|
18337
|
+
/*#__PURE__*/ jsxs("g", {
|
|
18338
|
+
fill: "none",
|
|
18339
|
+
strokeMiterlimit: "10",
|
|
18340
|
+
children: [
|
|
18341
|
+
/*#__PURE__*/ jsx("path", {
|
|
18342
|
+
d: "M11,9V5H9v6h6V9Z",
|
|
18343
|
+
stroke: "none"
|
|
18344
|
+
}),
|
|
18345
|
+
/*#__PURE__*/ jsx("path", {
|
|
18346
|
+
d: "M 15 11 L 9 11 L 9 5 L 11 5 L 11 9 L 15 9 L 15 11 Z",
|
|
18347
|
+
fill: "currentColor",
|
|
18348
|
+
stroke: "none"
|
|
18349
|
+
})
|
|
18350
|
+
]
|
|
18351
|
+
})
|
|
18352
|
+
]
|
|
18353
|
+
})
|
|
18354
|
+
});
|
|
18355
|
+
}
|
|
18356
|
+
|
|
18206
18357
|
function Close({ color, size, title, ...nativeProps }) {
|
|
18207
18358
|
return /*#__PURE__*/ jsx(IconBox, {
|
|
18208
18359
|
$color: color,
|
|
@@ -18316,58 +18467,51 @@ function ControlUnit$1({ color, size, title, ...nativeProps }) {
|
|
|
18316
18467
|
$color: color,
|
|
18317
18468
|
$size: size,
|
|
18318
18469
|
title: title,
|
|
18319
|
-
children: /*#__PURE__*/
|
|
18470
|
+
children: /*#__PURE__*/ jsxs("svg", {
|
|
18320
18471
|
height: "20",
|
|
18321
18472
|
viewBox: "0 0 20 20",
|
|
18322
18473
|
width: "20",
|
|
18323
18474
|
...nativeProps,
|
|
18324
|
-
children:
|
|
18325
|
-
|
|
18326
|
-
|
|
18327
|
-
|
|
18328
|
-
|
|
18329
|
-
|
|
18330
|
-
|
|
18331
|
-
|
|
18332
|
-
|
|
18333
|
-
|
|
18334
|
-
|
|
18335
|
-
|
|
18336
|
-
|
|
18337
|
-
|
|
18338
|
-
|
|
18339
|
-
|
|
18340
|
-
|
|
18341
|
-
|
|
18342
|
-
|
|
18343
|
-
|
|
18344
|
-
|
|
18345
|
-
|
|
18346
|
-
|
|
18347
|
-
|
|
18348
|
-
|
|
18349
|
-
|
|
18350
|
-
|
|
18351
|
-
|
|
18352
|
-
|
|
18353
|
-
|
|
18354
|
-
|
|
18355
|
-
|
|
18356
|
-
|
|
18357
|
-
|
|
18358
|
-
|
|
18359
|
-
|
|
18360
|
-
|
|
18361
|
-
|
|
18362
|
-
|
|
18363
|
-
|
|
18364
|
-
}),
|
|
18365
|
-
/*#__PURE__*/ jsx("path", {
|
|
18366
|
-
d: "M-80-205h20v20H-80Z",
|
|
18367
|
-
fill: "none"
|
|
18368
|
-
})
|
|
18369
|
-
]
|
|
18370
|
-
})
|
|
18475
|
+
children: [
|
|
18476
|
+
/*#__PURE__*/ jsxs("g", {
|
|
18477
|
+
transform: "translate(80 205)",
|
|
18478
|
+
children: [
|
|
18479
|
+
/*#__PURE__*/ jsx("rect", {
|
|
18480
|
+
fill: "currentColor",
|
|
18481
|
+
height: "12",
|
|
18482
|
+
transform: "translate(-64 -188) rotate(90)",
|
|
18483
|
+
width: "2"
|
|
18484
|
+
}),
|
|
18485
|
+
/*#__PURE__*/ jsx("path", {
|
|
18486
|
+
d: "M-67.694-199l1.333,8h-7.277l1.336-8Zm0-2h-4.6a2,2,0,0,0-1.977,1.675L-76-189h12l-1.721-10.325A2,2,0,0,0-67.7-201Z",
|
|
18487
|
+
fill: "currentColor"
|
|
18488
|
+
}),
|
|
18489
|
+
/*#__PURE__*/ jsx("rect", {
|
|
18490
|
+
fill: "currentColor",
|
|
18491
|
+
height: "2.25",
|
|
18492
|
+
transform: "translate(-70.75 -204.25)",
|
|
18493
|
+
width: "1.5"
|
|
18494
|
+
}),
|
|
18495
|
+
/*#__PURE__*/ jsx("rect", {
|
|
18496
|
+
fill: "currentColor",
|
|
18497
|
+
height: "2.25",
|
|
18498
|
+
transform: "translate(-64.061 -203) rotate(45)",
|
|
18499
|
+
width: "1.5"
|
|
18500
|
+
}),
|
|
18501
|
+
/*#__PURE__*/ jsx("rect", {
|
|
18502
|
+
fill: "currentColor",
|
|
18503
|
+
height: "2.25",
|
|
18504
|
+
transform: "translate(-77 -201.939) rotate(-45)",
|
|
18505
|
+
width: "1.5"
|
|
18506
|
+
})
|
|
18507
|
+
]
|
|
18508
|
+
}),
|
|
18509
|
+
/*#__PURE__*/ jsx("rect", {
|
|
18510
|
+
fill: "none",
|
|
18511
|
+
height: "20",
|
|
18512
|
+
width: "20"
|
|
18513
|
+
})
|
|
18514
|
+
]
|
|
18371
18515
|
})
|
|
18372
18516
|
});
|
|
18373
18517
|
}
|
|
@@ -18377,44 +18521,51 @@ function ControlUnitFilled({ color, size, title, ...nativeProps }) {
|
|
|
18377
18521
|
$color: color,
|
|
18378
18522
|
$size: size,
|
|
18379
18523
|
title: title,
|
|
18380
|
-
children: /*#__PURE__*/
|
|
18381
|
-
height: "
|
|
18382
|
-
viewBox: "0 0
|
|
18383
|
-
width: "
|
|
18524
|
+
children: /*#__PURE__*/ jsxs("svg", {
|
|
18525
|
+
height: "20",
|
|
18526
|
+
viewBox: "0 0 20 20",
|
|
18527
|
+
width: "20",
|
|
18384
18528
|
...nativeProps,
|
|
18385
|
-
children:
|
|
18386
|
-
|
|
18387
|
-
|
|
18388
|
-
|
|
18389
|
-
|
|
18390
|
-
|
|
18391
|
-
|
|
18392
|
-
|
|
18393
|
-
|
|
18394
|
-
|
|
18395
|
-
|
|
18396
|
-
|
|
18397
|
-
|
|
18398
|
-
|
|
18399
|
-
|
|
18400
|
-
|
|
18401
|
-
|
|
18402
|
-
|
|
18403
|
-
|
|
18404
|
-
|
|
18405
|
-
|
|
18406
|
-
|
|
18407
|
-
|
|
18408
|
-
|
|
18409
|
-
|
|
18410
|
-
|
|
18411
|
-
|
|
18412
|
-
|
|
18413
|
-
|
|
18414
|
-
|
|
18415
|
-
|
|
18416
|
-
|
|
18417
|
-
|
|
18529
|
+
children: [
|
|
18530
|
+
/*#__PURE__*/ jsxs("g", {
|
|
18531
|
+
transform: "translate(80 205)",
|
|
18532
|
+
children: [
|
|
18533
|
+
/*#__PURE__*/ jsx("rect", {
|
|
18534
|
+
fill: "currentColor",
|
|
18535
|
+
height: "12",
|
|
18536
|
+
transform: "translate(-64 -188) rotate(90)",
|
|
18537
|
+
width: "2"
|
|
18538
|
+
}),
|
|
18539
|
+
/*#__PURE__*/ jsx("path", {
|
|
18540
|
+
d: "M-67.7-201h-4.6a2,2,0,0,0-1.977,1.675L-76-189h12l-1.721-10.325A2,2,0,0,0-67.7-201Z",
|
|
18541
|
+
fill: "currentColor"
|
|
18542
|
+
}),
|
|
18543
|
+
/*#__PURE__*/ jsx("rect", {
|
|
18544
|
+
fill: "currentColor",
|
|
18545
|
+
height: "2.25",
|
|
18546
|
+
transform: "translate(-70.75 -204.25)",
|
|
18547
|
+
width: "1.5"
|
|
18548
|
+
}),
|
|
18549
|
+
/*#__PURE__*/ jsx("rect", {
|
|
18550
|
+
fill: "currentColor",
|
|
18551
|
+
height: "2.25",
|
|
18552
|
+
transform: "translate(-64.061 -203) rotate(45)",
|
|
18553
|
+
width: "1.5"
|
|
18554
|
+
}),
|
|
18555
|
+
/*#__PURE__*/ jsx("rect", {
|
|
18556
|
+
fill: "currentColor",
|
|
18557
|
+
height: "2.25",
|
|
18558
|
+
transform: "translate(-77 -201.939) rotate(-45)",
|
|
18559
|
+
width: "1.5"
|
|
18560
|
+
})
|
|
18561
|
+
]
|
|
18562
|
+
}),
|
|
18563
|
+
/*#__PURE__*/ jsx("rect", {
|
|
18564
|
+
fill: "none",
|
|
18565
|
+
height: "20",
|
|
18566
|
+
width: "20"
|
|
18567
|
+
})
|
|
18568
|
+
]
|
|
18418
18569
|
})
|
|
18419
18570
|
});
|
|
18420
18571
|
}
|
|
@@ -18504,64 +18655,6 @@ function Display({ color, size, title, ...nativeProps }) {
|
|
|
18504
18655
|
});
|
|
18505
18656
|
}
|
|
18506
18657
|
|
|
18507
|
-
function Dot({ color, size, title, ...nativeProps }) {
|
|
18508
|
-
return /*#__PURE__*/ jsx(IconBox, {
|
|
18509
|
-
$color: color,
|
|
18510
|
-
$size: size,
|
|
18511
|
-
title: title,
|
|
18512
|
-
children: /*#__PURE__*/ jsx("svg", {
|
|
18513
|
-
height: "20",
|
|
18514
|
-
viewBox: "0 0 20 20",
|
|
18515
|
-
width: "20",
|
|
18516
|
-
...nativeProps,
|
|
18517
|
-
children: /*#__PURE__*/ jsxs("g", {
|
|
18518
|
-
fill: "none",
|
|
18519
|
-
transform: "translate(1 1)",
|
|
18520
|
-
children: [
|
|
18521
|
-
/*#__PURE__*/ jsx("path", {
|
|
18522
|
-
d: "M9,2a7,7,0,1,0,7,7A7,7,0,0,0,9,2Z",
|
|
18523
|
-
stroke: "none"
|
|
18524
|
-
}),
|
|
18525
|
-
/*#__PURE__*/ jsx("path", {
|
|
18526
|
-
d: "M 9 4 C 6.242989540100098 4 4 6.242989540100098 4 9 C 4 11.75700950622559 6.242989540100098 14 9 14 C 11.75700950622559 14 14 11.75700950622559 14 9 C 14 6.242989540100098 11.75700950622559 4 9 4 M 9 2 C 12.86574935913086 2 16 5.134249687194824 16 9 C 16 12.86574935913086 12.86574935913086 16 9 16 C 5.134249687194824 16 2 12.86574935913086 2 9 C 2 5.134249687194824 5.134249687194824 2 9 2 Z",
|
|
18527
|
-
fill: "currentColor",
|
|
18528
|
-
stroke: "none"
|
|
18529
|
-
})
|
|
18530
|
-
]
|
|
18531
|
-
})
|
|
18532
|
-
})
|
|
18533
|
-
});
|
|
18534
|
-
}
|
|
18535
|
-
|
|
18536
|
-
function DotFilled({ color, size, title, ...nativeProps }) {
|
|
18537
|
-
return /*#__PURE__*/ jsx(IconBox, {
|
|
18538
|
-
$color: color,
|
|
18539
|
-
$size: size,
|
|
18540
|
-
title: title,
|
|
18541
|
-
children: /*#__PURE__*/ jsxs("svg", {
|
|
18542
|
-
height: "20",
|
|
18543
|
-
viewBox: "0 0 20 20",
|
|
18544
|
-
width: "20",
|
|
18545
|
-
...nativeProps,
|
|
18546
|
-
children: [
|
|
18547
|
-
/*#__PURE__*/ jsx("g", {
|
|
18548
|
-
transform: "translate(1 1)",
|
|
18549
|
-
children: /*#__PURE__*/ jsx("path", {
|
|
18550
|
-
d: "M9,2a7,7,0,1,0,7,7A7,7,0,0,0,9,2Z",
|
|
18551
|
-
fill: "currentColor",
|
|
18552
|
-
transform: "translate(0 0)"
|
|
18553
|
-
})
|
|
18554
|
-
}),
|
|
18555
|
-
/*#__PURE__*/ jsx("rect", {
|
|
18556
|
-
fill: "none",
|
|
18557
|
-
height: "20",
|
|
18558
|
-
width: "20"
|
|
18559
|
-
})
|
|
18560
|
-
]
|
|
18561
|
-
})
|
|
18562
|
-
});
|
|
18563
|
-
}
|
|
18564
|
-
|
|
18565
18658
|
function DoubleChevron({ color, size, title, ...nativeProps }) {
|
|
18566
18659
|
return /*#__PURE__*/ jsx(IconBox, {
|
|
18567
18660
|
$color: color,
|
|
@@ -21355,11 +21448,15 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
21355
21448
|
Anchor: Anchor,
|
|
21356
21449
|
Archive: Archive,
|
|
21357
21450
|
Attention: Attention,
|
|
21451
|
+
AttentionFilled: AttentionFilled,
|
|
21358
21452
|
Calendar: Calendar,
|
|
21359
21453
|
Car: Car,
|
|
21360
21454
|
Check: Check,
|
|
21361
21455
|
Chevron: Chevron,
|
|
21456
|
+
Circle: Circle,
|
|
21457
|
+
CircleFilled: CircleFilled,
|
|
21362
21458
|
Clock: Clock,
|
|
21459
|
+
ClockDashed: ClockDashed,
|
|
21363
21460
|
Close: Close,
|
|
21364
21461
|
Comment: Comment,
|
|
21365
21462
|
Confirm: Confirm,
|
|
@@ -21367,8 +21464,6 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
21367
21464
|
ControlUnitFilled: ControlUnitFilled,
|
|
21368
21465
|
Delete: Delete,
|
|
21369
21466
|
Display: Display,
|
|
21370
|
-
Dot: Dot,
|
|
21371
|
-
DotFilled: DotFilled,
|
|
21372
21467
|
DoubleChevron: DoubleChevron,
|
|
21373
21468
|
Download: Download,
|
|
21374
21469
|
Drapeau: Drapeau,
|
|
@@ -53456,25 +53551,6 @@ const MapMenuDialog = {
|
|
|
53456
53551
|
VisibilityButton
|
|
53457
53552
|
};
|
|
53458
53553
|
|
|
53459
|
-
const DEFAULT_SIZE = 20;
|
|
53460
|
-
const ExclamationPoint = styled.span`
|
|
53461
|
-
background: ${(p)=>p.backgroundColor ?? p.theme.color.goldenPoppy};
|
|
53462
|
-
border-radius: ${(p)=>`${p.size ?? DEFAULT_SIZE}px`};
|
|
53463
|
-
color: ${(p)=>p.color ?? p.theme.color.white};
|
|
53464
|
-
display: inline-flex; /* use flexbox for easier centering */
|
|
53465
|
-
justify-content: center; /* center content horizontally */
|
|
53466
|
-
align-items: center; /* center content vertically */
|
|
53467
|
-
font-size: ${(p)=>`${p.size && p.size <= 13 ? p.size : 13}px`};
|
|
53468
|
-
font-weight: 700;
|
|
53469
|
-
height: ${(p)=>`${p.size ?? DEFAULT_SIZE}px`};
|
|
53470
|
-
width: ${(p)=>`${p.size ?? DEFAULT_SIZE}px`};
|
|
53471
|
-
box-sizing: border-box;
|
|
53472
|
-
|
|
53473
|
-
::after {
|
|
53474
|
-
content: '! ';
|
|
53475
|
-
}
|
|
53476
|
-
`;
|
|
53477
|
-
|
|
53478
53554
|
function Message({ children, level = Level.WARNING, ...nativeProps }) {
|
|
53479
53555
|
switch(level){
|
|
53480
53556
|
case Level.WARNING:
|
|
@@ -53483,9 +53559,8 @@ function Message({ children, level = Level.WARNING, ...nativeProps }) {
|
|
|
53483
53559
|
color: THEME.color.slateGray,
|
|
53484
53560
|
...nativeProps,
|
|
53485
53561
|
children: [
|
|
53486
|
-
/*#__PURE__*/ jsx(
|
|
53487
|
-
|
|
53488
|
-
color: THEME.color.white
|
|
53562
|
+
/*#__PURE__*/ jsx(AttentionFilled, {
|
|
53563
|
+
color: THEME.color.goldenPoppy
|
|
53489
53564
|
}),
|
|
53490
53565
|
/*#__PURE__*/ jsx(ChildrenContainer, {
|
|
53491
53566
|
children: children
|
|
@@ -53498,9 +53573,8 @@ function Message({ children, level = Level.WARNING, ...nativeProps }) {
|
|
|
53498
53573
|
color: THEME.color.slateGray,
|
|
53499
53574
|
...nativeProps,
|
|
53500
53575
|
children: [
|
|
53501
|
-
/*#__PURE__*/ jsx(
|
|
53502
|
-
|
|
53503
|
-
color: THEME.color.white
|
|
53576
|
+
/*#__PURE__*/ jsx(AttentionFilled, {
|
|
53577
|
+
color: THEME.color.goldenPoppy
|
|
53504
53578
|
}),
|
|
53505
53579
|
/*#__PURE__*/ jsx(ChildrenContainer, {
|
|
53506
53580
|
children: children
|
|
@@ -53523,9 +53597,6 @@ const Box$c = styled.span`
|
|
|
53523
53597
|
border-radius: 2px;
|
|
53524
53598
|
font-size: 13px;
|
|
53525
53599
|
`;
|
|
53526
|
-
const StyledExclamationPoint = styled(ExclamationPoint)`
|
|
53527
|
-
flex-shrink: 0;
|
|
53528
|
-
`;
|
|
53529
53600
|
|
|
53530
53601
|
const Field$2 = styled.div.attrs((props)=>({
|
|
53531
53602
|
className: classnames('Element-Field', props.className)
|
|
@@ -53628,16 +53699,10 @@ const Label = styled.label.attrs((props)=>({
|
|
|
53628
53699
|
}`}
|
|
53629
53700
|
`;
|
|
53630
53701
|
|
|
53631
|
-
function Tag({ accent, backgroundColor, borderColor,
|
|
53632
|
-
// TODO remove all bullet and bulletColor related code
|
|
53633
|
-
const withDot = useMemo(()=>(bullet === TagBullet.DISK || withBullet) && !Icon, [
|
|
53634
|
-
bullet,
|
|
53635
|
-
Icon,
|
|
53636
|
-
withBullet
|
|
53637
|
-
]);
|
|
53702
|
+
function Tag({ accent, backgroundColor, borderColor, children, className, color, Icon, iconColor, isLight = false, withCircleIcon = false, ...nativeProps }) {
|
|
53638
53703
|
const commonChildren = useMemo(()=>{
|
|
53639
53704
|
const defaultColor = color ?? THEME.color.gunMetal;
|
|
53640
|
-
const cutomIconColor =
|
|
53705
|
+
const cutomIconColor = iconColor ?? (accent ? ({
|
|
53641
53706
|
[Accent.PRIMARY]: THEME.color.gunMetal,
|
|
53642
53707
|
[Accent.SECONDARY]: THEME.color.gunMetal,
|
|
53643
53708
|
[Accent.TERTIARY]: THEME.color.white
|
|
@@ -53645,28 +53710,21 @@ function Tag({ accent, backgroundColor, borderColor, bullet, bulletColor, childr
|
|
|
53645
53710
|
return /*#__PURE__*/ jsxs(Fragment, {
|
|
53646
53711
|
children: [
|
|
53647
53712
|
Icon && /*#__PURE__*/ jsx(Icon, {
|
|
53648
|
-
color: cutomIconColor
|
|
53649
|
-
size: 16
|
|
53650
|
-
}),
|
|
53651
|
-
withDot && /*#__PURE__*/ jsx(DotFilled, {
|
|
53652
|
-
color: cutomIconColor,
|
|
53653
|
-
size: 20
|
|
53713
|
+
color: cutomIconColor
|
|
53654
53714
|
}),
|
|
53655
53715
|
children
|
|
53656
53716
|
]
|
|
53657
53717
|
});
|
|
53658
53718
|
}, [
|
|
53659
53719
|
accent,
|
|
53660
|
-
bulletColor,
|
|
53661
53720
|
color,
|
|
53662
53721
|
children,
|
|
53663
53722
|
Icon,
|
|
53664
|
-
withDot,
|
|
53665
53723
|
iconColor
|
|
53666
53724
|
]);
|
|
53667
53725
|
const commonProps = useMemo(()=>({
|
|
53668
53726
|
$isLight: isLight,
|
|
53669
|
-
$
|
|
53727
|
+
$withCircleIcon: withCircleIcon,
|
|
53670
53728
|
children: commonChildren,
|
|
53671
53729
|
className: classnames('Element-Tag', className),
|
|
53672
53730
|
...nativeProps
|
|
@@ -53675,7 +53733,7 @@ function Tag({ accent, backgroundColor, borderColor, bullet, bulletColor, childr
|
|
|
53675
53733
|
commonChildren,
|
|
53676
53734
|
isLight,
|
|
53677
53735
|
nativeProps,
|
|
53678
|
-
|
|
53736
|
+
withCircleIcon
|
|
53679
53737
|
]);
|
|
53680
53738
|
switch(accent){
|
|
53681
53739
|
case Accent.PRIMARY:
|
|
@@ -53700,7 +53758,6 @@ function Tag({ accent, backgroundColor, borderColor, bullet, bulletColor, childr
|
|
|
53700
53758
|
}
|
|
53701
53759
|
}
|
|
53702
53760
|
const Box$a = styled.span`
|
|
53703
|
-
align-items: ${(p)=>p.$withBullet ? 'flex-start' : 'end'};
|
|
53704
53761
|
align-self: flex-start;
|
|
53705
53762
|
background-color: ${(p)=>{
|
|
53706
53763
|
if (p.$backgroundColor) {
|
|
@@ -53713,18 +53770,12 @@ const Box$a = styled.span`
|
|
|
53713
53770
|
color: ${(p)=>p.$color ? p.$color : p.theme.color.gunMetal};
|
|
53714
53771
|
display: inline-flex;
|
|
53715
53772
|
font-size: 13px;
|
|
53716
|
-
|
|
53717
|
-
|
|
53718
|
-
|
|
53719
|
-
> span {
|
|
53720
|
-
height: 16px;
|
|
53721
|
-
margin-right: 4px;
|
|
53722
|
-
width: 16px;
|
|
53723
|
-
}
|
|
53724
|
-
|
|
53773
|
+
height: 22px;
|
|
53774
|
+
line-height: normal;
|
|
53775
|
+
padding: ${(p)=>p.$withCircleIcon ? '1px 8px 0px 1px' : '0px 8px'};
|
|
53725
53776
|
/* SVG Icon components are wrapped within a <div /> */
|
|
53726
53777
|
> div {
|
|
53727
|
-
margin-right:
|
|
53778
|
+
margin-right: 4px;
|
|
53728
53779
|
}
|
|
53729
53780
|
`;
|
|
53730
53781
|
const PrimaryTag = styled(Box$a)`
|
|
@@ -68893,6 +68944,38 @@ function FormikToggle({ name, ...originalProps }) {
|
|
|
68893
68944
|
});
|
|
68894
68945
|
}
|
|
68895
68946
|
|
|
68947
|
+
const DEFAULT_SIZE = 20;
|
|
68948
|
+
const ExclamationPoint = styled.span`
|
|
68949
|
+
background: ${(p)=>p.backgroundColor ?? p.theme.color.goldenPoppy};
|
|
68950
|
+
border-radius: ${(p)=>`${p.size ?? DEFAULT_SIZE}px`};
|
|
68951
|
+
color: ${(p)=>p.color ?? p.theme.color.white};
|
|
68952
|
+
display: inline-flex; /* use flexbox for easier centering */
|
|
68953
|
+
justify-content: center; /* center content horizontally */
|
|
68954
|
+
align-items: center; /* center content vertically */
|
|
68955
|
+
font-size: ${(p)=>`${p.size && p.size <= 13 ? p.size : 13}px`};
|
|
68956
|
+
font-weight: 700;
|
|
68957
|
+
height: ${(p)=>`${p.size ?? DEFAULT_SIZE}px`};
|
|
68958
|
+
width: ${(p)=>`${p.size ?? DEFAULT_SIZE}px`};
|
|
68959
|
+
box-sizing: border-box;
|
|
68960
|
+
|
|
68961
|
+
::after {
|
|
68962
|
+
content: '! ';
|
|
68963
|
+
}
|
|
68964
|
+
`;
|
|
68965
|
+
|
|
68966
|
+
const Dot = styled.span`
|
|
68967
|
+
display: flex;
|
|
68968
|
+
align-self: baseline;
|
|
68969
|
+
border-style: solid;
|
|
68970
|
+
border-width: 3px;
|
|
68971
|
+
padding: 2px;
|
|
68972
|
+
border-radius: 50%;
|
|
68973
|
+
height: ${(p)=>p.$size ?? 20}px;
|
|
68974
|
+
width: ${(p)=>p.$size ?? 20}px;
|
|
68975
|
+
color: ${(p)=>p.$borderColor ?? p.theme.color.charcoal};
|
|
68976
|
+
background-color: ${(p)=>p.$backgroundColor ?? 'transparent'};
|
|
68977
|
+
`;
|
|
68978
|
+
|
|
68896
68979
|
var ControlUnit;
|
|
68897
68980
|
(function(ControlUnit) {
|
|
68898
68981
|
(function(ControlUnitContactPredefinedName) {
|
|
@@ -69042,6 +69125,7 @@ var Mission;
|
|
|
69042
69125
|
MissionSourceEnum["MONITORFISH"] = "MONITORFISH";
|
|
69043
69126
|
MissionSourceEnum["POSEIDON_CACEM"] = "POSEIDON_CACEM";
|
|
69044
69127
|
MissionSourceEnum["POSEIDON_CNSP"] = "POSEIDON_CNSP";
|
|
69128
|
+
MissionSourceEnum["RAPPORTNAV"] = "RAPPORTNAV";
|
|
69045
69129
|
})(Mission.MissionSourceEnum || (Mission.MissionSourceEnum = {}));
|
|
69046
69130
|
})(Mission || (Mission = {}));
|
|
69047
69131
|
|
|
@@ -76230,4 +76314,4 @@ const undefineObjectProps = (record)=>Object.fromEntries(Object.entries(record).
|
|
|
76230
76314
|
return value;
|
|
76231
76315
|
}
|
|
76232
76316
|
|
|
76233
|
-
export { Accent, Button$1 as Button, CheckPicker, Checkbox, ControlUnit, CoordinatesFormat, CoordinatesInput, CustomSearch, DataTable, DatePicker, DateRangePicker, Dialog, Dropdown, ExclamationPoint, Field$2 as Field, FieldError, Fieldset, Figure, FormikCheckPicker, FormikCheckbox, FormikCoordinatesInput, FormikDatePicker, FormikDateRangePicker, FormikEffect, FormikMultiCascader, FormikMultiCheckbox, FormikMultiRadio, FormikMultiSelect, FormikNumberInput, FormikRichBooleanCheckbox, FormikSearch, FormikSelect, FormikTextInput, FormikTextarea, FormikToggle, GlobalStyle, index as Icon, IconButton, Label, Legend, Level, MapMenuDialog, Message, Mission, MultiCascader, MultiCheckbox, MultiRadio, MultiSelect, MultiZoneEditor, NewWindow, NewWindowContext, NotificationEvent, Notifier, NumberInput, OPENLAYERS_PROJECTION, OnlyFontGlobalStyle, Radio, RichBoolean, RichBooleanCheckbox, Search, Select, SideMenu, SimpleTable, SingleTag, Size, THEME, TableWithSelectableRows, Tag, TagBullet, TagGroup, TextInput, Textarea, ThemeProvider, Toggle, WSG84_PROJECTION, cleanString, coordinatesAreDistinct, customDayjs, getControlUnitResourceCategoryFromType, getCoordinates, getFilteredCollection, getHashFromCollection, getLocalizedDayjs, getMaybeBooleanFromRichBoolean, getOptionsFromIdAndName, getOptionsFromLabelledEnum, getPseudoRandomString, getSelectedOptionFromOptionValue, getSelectedOptionFromOptionValueInTree, getUtcizedDayjs, humanizePastDate, isArray, isDefined, isEmptyish, isNumeric, isObject, logSoftError, normalizeString, nullify, pluralize, sortCollectionByLocalizedProps, stopMouseEventPropagation, undefine, useClickOutsideEffect, useDeepCompareEffect, useFieldControl, useForceUpdate, useKey, useNewWindow, usePressEscapeEffect, usePrevious };
|
|
76317
|
+
export { Accent, Button$1 as Button, CheckPicker, Checkbox, ControlUnit, CoordinatesFormat, CoordinatesInput, CustomSearch, DataTable, DatePicker, DateRangePicker, Dialog, Dot, Dropdown, ExclamationPoint, Field$2 as Field, FieldError, Fieldset, Figure, FormikCheckPicker, FormikCheckbox, FormikCoordinatesInput, FormikDatePicker, FormikDateRangePicker, FormikEffect, FormikMultiCascader, FormikMultiCheckbox, FormikMultiRadio, FormikMultiSelect, FormikNumberInput, FormikRichBooleanCheckbox, FormikSearch, FormikSelect, FormikTextInput, FormikTextarea, FormikToggle, GlobalStyle, index as Icon, IconButton, Label, Legend, Level, MapMenuDialog, Message, Mission, MultiCascader, MultiCheckbox, MultiRadio, MultiSelect, MultiZoneEditor, NewWindow, NewWindowContext, NotificationEvent, Notifier, NumberInput, OPENLAYERS_PROJECTION, OnlyFontGlobalStyle, Radio, RichBoolean, RichBooleanCheckbox, Search, Select, SideMenu, SimpleTable, SingleTag, Size, THEME, TableWithSelectableRows, Tag, TagBullet, TagGroup, TextInput, Textarea, ThemeProvider, Toggle, WSG84_PROJECTION, cleanString, coordinatesAreDistinct, customDayjs, getControlUnitResourceCategoryFromType, getCoordinates, getFilteredCollection, getHashFromCollection, getLocalizedDayjs, getMaybeBooleanFromRichBoolean, getOptionsFromIdAndName, getOptionsFromLabelledEnum, getPseudoRandomString, getSelectedOptionFromOptionValue, getSelectedOptionFromOptionValueInTree, getUtcizedDayjs, humanizePastDate, isArray, isDefined, isEmptyish, isNumeric, isObject, logSoftError, normalizeString, nullify, pluralize, sortCollectionByLocalizedProps, stopMouseEventPropagation, undefine, useClickOutsideEffect, useDeepCompareEffect, useFieldControl, useForceUpdate, useKey, useNewWindow, usePressEscapeEffect, usePrevious };
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mtes-mct/monitor-ui",
|
|
3
3
|
"description": "Common React components, hooks, utilities and CSS stylesheets for MonitorFish, MonitorEnv and RapportNav.",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "14.0.0",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=20"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@babel/runtime": "7.
|
|
11
|
+
"@babel/runtime": "7.24.4",
|
|
12
12
|
"@tanstack/react-table": "8.9.7",
|
|
13
13
|
"@tanstack/react-virtual": "beta",
|
|
14
14
|
"prop-types": "15.8.1",
|
package/symbols/Dot.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type DotProps = {
|
|
2
|
+
$backgroundColor?: string;
|
|
3
|
+
$borderColor?: string;
|
|
4
|
+
$size?: number;
|
|
5
|
+
};
|
|
6
|
+
export declare const Dot: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, DotProps, never>;
|
|
7
|
+
//# sourceMappingURL=Dot.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Dot.d.ts","sourceRoot":"","sources":["../../src/symbols/Dot.tsx"],"names":[],"mappings":"AAEA,MAAM,MAAM,QAAQ,GAAG;IACrB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,KAAK,CAAC,EAAE,MAAM,CAAA;CACf,CAAA;AACD,eAAO,MAAM,GAAG,gHAWf,CAAA"}
|
package/theme.d.ts
CHANGED
package/theme.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../src/theme.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAE5C,MAAM,MAAM,KAAK,GAAG,OAAO,KAAK,CAAA;AAChC,MAAM,MAAM,YAAY,GAAG,WAAW,CAAC,KAAK,CAAC,CAAA;AAE7C,eAAO,MAAM,KAAK;;QAGd,uBAAuB
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../src/theme.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAE5C,MAAM,MAAM,KAAK,GAAG,OAAO,KAAK,CAAA;AAChC,MAAM,MAAM,YAAY,GAAG,WAAW,CAAC,KAAK,CAAC,CAAA;AAE7C,eAAO,MAAM,KAAK;;QAGd,uBAAuB;;;;;;;;;;;;;;;;;;;;;QA6BvB,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkE3B,CAAA"}
|
package/icons/Dot.d.ts
DELETED
package/icons/Dot.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Dot.d.ts","sourceRoot":"","sources":["../../src/icons/Dot.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAErD,wBAAgB,GAAG,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,WAAW,EAAE,EAAE,SAAS,2CAepE"}
|
package/icons/DotFilled.d.ts
DELETED
package/icons/DotFilled.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DotFilled.d.ts","sourceRoot":"","sources":["../../src/icons/DotFilled.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAErD,wBAAgB,SAAS,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,WAAW,EAAE,EAAE,SAAS,2CAW1E"}
|