@swan-io/lake 4.0.2 → 4.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +9 -9
- package/src/components/AutoWidthImage.d.ts +3 -3
- package/src/components/Form.d.ts +3 -3
- package/src/components/Heading.d.ts +4 -4
- package/src/components/Icon.d.ts +1 -0
- package/src/components/LakeHeading.d.ts +4 -4
- package/src/components/LakeTextInput.d.ts +7 -7
- package/src/components/Link.d.ts +4 -4
- package/src/components/Pressable.d.ts +10 -10
- package/src/components/SegmentedControl.js +1 -1
- package/src/icons/custom-icons.json +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swan-io/lake",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.4",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=18.0.0",
|
|
6
6
|
"yarn": "^1.22.0"
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@popperjs/core": "^2.11.8",
|
|
30
|
-
"@react-three/drei": "^9.
|
|
31
|
-
"@react-three/fiber": "^8.15.
|
|
30
|
+
"@react-three/drei": "^9.90.0",
|
|
31
|
+
"@react-three/fiber": "^8.15.12",
|
|
32
32
|
"@swan-io/boxed": "^1.2.0",
|
|
33
33
|
"@swan-io/chicane": "^1.4.1",
|
|
34
34
|
"dayjs": "^1.11.10",
|
|
@@ -41,19 +41,19 @@
|
|
|
41
41
|
"react-popper": "^2.3.0",
|
|
42
42
|
"react-ux-form": "^1.5.0",
|
|
43
43
|
"rifm": "^0.12.1",
|
|
44
|
-
"three": "^0.
|
|
44
|
+
"three": "^0.159.0",
|
|
45
45
|
"ts-dedent": "^2.2.0",
|
|
46
|
-
"ts-pattern": "^5.0.
|
|
46
|
+
"ts-pattern": "^5.0.6",
|
|
47
47
|
"urql": "^4.0.6",
|
|
48
48
|
"uuid": "^9.0.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@types/react": "^18.2.
|
|
51
|
+
"@types/react": "^18.2.42",
|
|
52
52
|
"@types/react-dom": "^18.2.17",
|
|
53
|
-
"@types/react-native": "^0.72.
|
|
54
|
-
"@types/three": "^0.
|
|
53
|
+
"@types/react-native": "^0.72.8",
|
|
54
|
+
"@types/three": "^0.159.0",
|
|
55
55
|
"@types/uuid": "^9.0.7",
|
|
56
56
|
"jsdom": "^22.1.0",
|
|
57
|
-
"type-fest": "^4.8.
|
|
57
|
+
"type-fest": "^4.8.3"
|
|
58
58
|
}
|
|
59
59
|
}
|
|
@@ -57,9 +57,9 @@ export declare const AutoWidthImage: import("react").MemoExoticComponent<import(
|
|
|
57
57
|
"aria-valuenow"?: number | undefined;
|
|
58
58
|
"aria-valuetext"?: string | undefined;
|
|
59
59
|
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
|
|
60
|
-
importantForAccessibility?: "auto" | "
|
|
60
|
+
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
|
|
61
61
|
"aria-hidden"?: boolean | undefined;
|
|
62
|
-
"aria-live"?: "
|
|
62
|
+
"aria-live"?: "polite" | "assertive" | "off" | undefined;
|
|
63
63
|
"aria-modal"?: boolean | undefined;
|
|
64
64
|
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
|
|
65
65
|
accessibilityLabelledBy?: string | string[] | undefined;
|
|
@@ -78,7 +78,7 @@ export declare const AutoWidthImage: import("react").MemoExoticComponent<import(
|
|
|
78
78
|
"aria-colindex"?: number | undefined;
|
|
79
79
|
"aria-colspan"?: number | undefined;
|
|
80
80
|
"aria-controls"?: string | undefined;
|
|
81
|
-
"aria-current"?: boolean | "time" | "page" | "
|
|
81
|
+
"aria-current"?: boolean | "time" | "page" | "step" | "location" | "date" | undefined;
|
|
82
82
|
"aria-describedby"?: string | undefined;
|
|
83
83
|
"aria-details"?: string | undefined;
|
|
84
84
|
"aria-errormessage"?: string | undefined;
|
package/src/components/Form.d.ts
CHANGED
|
@@ -77,9 +77,9 @@ export declare const Form: import("react").MemoExoticComponent<import("react").F
|
|
|
77
77
|
"aria-valuenow"?: number | undefined;
|
|
78
78
|
"aria-valuetext"?: string | undefined;
|
|
79
79
|
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
|
|
80
|
-
importantForAccessibility?: "auto" | "
|
|
80
|
+
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
|
|
81
81
|
"aria-hidden"?: boolean | undefined;
|
|
82
|
-
"aria-live"?: "
|
|
82
|
+
"aria-live"?: "polite" | "assertive" | "off" | undefined;
|
|
83
83
|
"aria-modal"?: boolean | undefined;
|
|
84
84
|
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
|
|
85
85
|
accessibilityLabelledBy?: string | string[] | undefined;
|
|
@@ -98,7 +98,7 @@ export declare const Form: import("react").MemoExoticComponent<import("react").F
|
|
|
98
98
|
"aria-colindex"?: number | undefined;
|
|
99
99
|
"aria-colspan"?: number | undefined;
|
|
100
100
|
"aria-controls"?: string | undefined;
|
|
101
|
-
"aria-current"?: boolean | "time" | "page" | "
|
|
101
|
+
"aria-current"?: boolean | "time" | "page" | "step" | "location" | "date" | undefined;
|
|
102
102
|
"aria-describedby"?: string | undefined;
|
|
103
103
|
"aria-details"?: string | undefined;
|
|
104
104
|
"aria-errormessage"?: string | undefined;
|
|
@@ -80,7 +80,7 @@ export declare const Heading: import("react").ForwardRefExoticComponent<{
|
|
|
80
80
|
selectable?: boolean | undefined;
|
|
81
81
|
selectionColor?: import("react-native").ColorValue | undefined;
|
|
82
82
|
textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
|
|
83
|
-
dataDetectorType?: "none" | "all" | "link" | "
|
|
83
|
+
dataDetectorType?: "none" | "all" | "link" | "phoneNumber" | "email" | null | undefined;
|
|
84
84
|
android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
|
|
85
85
|
accessible?: boolean | undefined;
|
|
86
86
|
accessibilityActions?: readonly Readonly<{
|
|
@@ -104,9 +104,9 @@ export declare const Heading: import("react").ForwardRefExoticComponent<{
|
|
|
104
104
|
"aria-valuenow"?: number | undefined;
|
|
105
105
|
"aria-valuetext"?: string | undefined;
|
|
106
106
|
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
|
|
107
|
-
importantForAccessibility?: "auto" | "
|
|
107
|
+
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
|
|
108
108
|
"aria-hidden"?: boolean | undefined;
|
|
109
|
-
"aria-live"?: "
|
|
109
|
+
"aria-live"?: "polite" | "assertive" | "off" | undefined;
|
|
110
110
|
"aria-modal"?: boolean | undefined;
|
|
111
111
|
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
|
|
112
112
|
accessibilityLabelledBy?: string | string[] | undefined;
|
|
@@ -125,7 +125,7 @@ export declare const Heading: import("react").ForwardRefExoticComponent<{
|
|
|
125
125
|
"aria-colindex"?: number | undefined;
|
|
126
126
|
"aria-colspan"?: number | undefined;
|
|
127
127
|
"aria-controls"?: string | undefined;
|
|
128
|
-
"aria-current"?: boolean | "time" | "page" | "
|
|
128
|
+
"aria-current"?: boolean | "time" | "page" | "step" | "location" | "date" | undefined;
|
|
129
129
|
"aria-describedby"?: string | undefined;
|
|
130
130
|
"aria-details"?: string | undefined;
|
|
131
131
|
"aria-errormessage"?: string | undefined;
|
package/src/components/Icon.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export declare const LakeHeading: import("react").ForwardRefExoticComponent<{
|
|
|
29
29
|
selectable?: boolean | undefined;
|
|
30
30
|
selectionColor?: import("react-native").ColorValue | undefined;
|
|
31
31
|
textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
|
|
32
|
-
dataDetectorType?: "none" | "all" | "link" | "
|
|
32
|
+
dataDetectorType?: "none" | "all" | "link" | "phoneNumber" | "email" | null | undefined;
|
|
33
33
|
android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
|
|
34
34
|
accessible?: boolean | undefined;
|
|
35
35
|
accessibilityActions?: readonly Readonly<{
|
|
@@ -53,9 +53,9 @@ export declare const LakeHeading: import("react").ForwardRefExoticComponent<{
|
|
|
53
53
|
"aria-valuenow"?: number | undefined;
|
|
54
54
|
"aria-valuetext"?: string | undefined;
|
|
55
55
|
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
|
|
56
|
-
importantForAccessibility?: "auto" | "
|
|
56
|
+
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
|
|
57
57
|
"aria-hidden"?: boolean | undefined;
|
|
58
|
-
"aria-live"?: "
|
|
58
|
+
"aria-live"?: "polite" | "assertive" | "off" | undefined;
|
|
59
59
|
"aria-modal"?: boolean | undefined;
|
|
60
60
|
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
|
|
61
61
|
accessibilityLabelledBy?: string | string[] | undefined;
|
|
@@ -74,7 +74,7 @@ export declare const LakeHeading: import("react").ForwardRefExoticComponent<{
|
|
|
74
74
|
"aria-colindex"?: number | undefined;
|
|
75
75
|
"aria-colspan"?: number | undefined;
|
|
76
76
|
"aria-controls"?: string | undefined;
|
|
77
|
-
"aria-current"?: boolean | "time" | "page" | "
|
|
77
|
+
"aria-current"?: boolean | "time" | "page" | "step" | "location" | "date" | undefined;
|
|
78
78
|
"aria-describedby"?: string | undefined;
|
|
79
79
|
"aria-details"?: string | undefined;
|
|
80
80
|
"aria-errormessage"?: string | undefined;
|
|
@@ -72,7 +72,7 @@ export declare const LakeTextInput: import("react").ForwardRefExoticComponent<{
|
|
|
72
72
|
role?: import("react-native").WebRole | undefined;
|
|
73
73
|
lang?: string | undefined;
|
|
74
74
|
initialValue?: string | undefined;
|
|
75
|
-
autoComplete?: "name" | "email" | "
|
|
75
|
+
autoComplete?: "name" | "email" | "off" | "url" | "tel" | "additional-name" | "address-level1" | "address-level2" | "address-level3" | "address-level4" | "address-line1" | "address-line2" | "address-line3" | "bday" | "bday-day" | "bday-month" | "bday-year" | "cc-additional-name" | "cc-csc" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-family-name" | "cc-given-name" | "cc-name" | "cc-number" | "cc-type" | "country" | "country-name" | "current-password" | "family-name" | "given-name" | "honorific-prefix" | "honorific-suffix" | "impp" | "language" | "new-password" | "nickname" | "on" | "one-time-code" | "organization" | "organization-title" | "postal-code" | "sex" | "street-address" | "tel-area-code" | "tel-country-code" | "tel-extension" | "tel-local" | "tel-national" | "transaction-amount" | "transaction-currency" | "username" | undefined;
|
|
76
76
|
enterKeyHint?: "enter" | "search" | "done" | "go" | "next" | "send" | "previous" | undefined;
|
|
77
77
|
rows?: number | undefined;
|
|
78
78
|
readOnly?: boolean | undefined;
|
|
@@ -150,9 +150,9 @@ export declare const LakeTextInput: import("react").ForwardRefExoticComponent<{
|
|
|
150
150
|
"aria-valuenow"?: number | undefined;
|
|
151
151
|
"aria-valuetext"?: string | undefined;
|
|
152
152
|
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
|
|
153
|
-
importantForAccessibility?: "auto" | "
|
|
153
|
+
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
|
|
154
154
|
"aria-hidden"?: boolean | undefined;
|
|
155
|
-
"aria-live"?: "
|
|
155
|
+
"aria-live"?: "polite" | "assertive" | "off" | undefined;
|
|
156
156
|
"aria-modal"?: boolean | undefined;
|
|
157
157
|
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
|
|
158
158
|
accessibilityLabelledBy?: string | string[] | undefined;
|
|
@@ -171,7 +171,7 @@ export declare const LakeTextInput: import("react").ForwardRefExoticComponent<{
|
|
|
171
171
|
"aria-colindex"?: number | undefined;
|
|
172
172
|
"aria-colspan"?: number | undefined;
|
|
173
173
|
"aria-controls"?: string | undefined;
|
|
174
|
-
"aria-current"?: boolean | "time" | "page" | "
|
|
174
|
+
"aria-current"?: boolean | "time" | "page" | "step" | "location" | "date" | undefined;
|
|
175
175
|
"aria-describedby"?: string | undefined;
|
|
176
176
|
"aria-details"?: string | undefined;
|
|
177
177
|
"aria-errormessage"?: string | undefined;
|
|
@@ -204,11 +204,11 @@ export declare const LakeTextInput: import("react").ForwardRefExoticComponent<{
|
|
|
204
204
|
rejectResponderTermination?: boolean | null | undefined;
|
|
205
205
|
selectionState?: import("react-native").DocumentSelectionState | undefined;
|
|
206
206
|
spellCheck?: boolean | undefined;
|
|
207
|
-
textContentType?: "none" | "name" | "
|
|
207
|
+
textContentType?: "none" | "name" | "location" | "nickname" | "username" | "URL" | "addressCity" | "addressCityAndState" | "addressState" | "countryName" | "creditCardNumber" | "emailAddress" | "familyName" | "fullStreetAddress" | "givenName" | "jobTitle" | "middleName" | "namePrefix" | "nameSuffix" | "organizationName" | "postalCode" | "streetAddressLine1" | "streetAddressLine2" | "sublocality" | "telephoneNumber" | "password" | "newPassword" | "oneTimeCode" | undefined;
|
|
208
208
|
scrollEnabled?: boolean | undefined;
|
|
209
209
|
lineBreakStrategyIOS?: "none" | "standard" | "hangul-word" | "push-out" | undefined;
|
|
210
210
|
cursorColor?: import("react-native").ColorValue | null | undefined;
|
|
211
|
-
importantForAutofill?: "auto" | "
|
|
211
|
+
importantForAutofill?: "auto" | "yes" | "no" | "noExcludeDescendants" | "yesExcludeDescendants" | undefined;
|
|
212
212
|
disableFullscreenUI?: boolean | undefined;
|
|
213
213
|
inlineImageLeft?: string | undefined;
|
|
214
214
|
inlineImagePadding?: number | undefined;
|
|
@@ -229,7 +229,7 @@ export declare const LakeTextInput: import("react").ForwardRefExoticComponent<{
|
|
|
229
229
|
disabled?: boolean | undefined;
|
|
230
230
|
color?: "gray" | "live" | "sandbox" | "positive" | "warning" | "negative" | "current" | "partner" | "swan" | "shakespear" | "darkPink" | "sunglow" | "mediumSladeBlue" | undefined;
|
|
231
231
|
multiline?: boolean | undefined;
|
|
232
|
-
icon?: "lake-building-bank" | "lake-calendar-arrow-swap" | "lake-card" | "lake-card-add" | "lake-card-filled" | "lake-card-one-off" | "lake-card-physical" | "lake-card-recurring" | "lake-card-single-use" | "lake-card-virtual" | "lake-check" | "lake-chevron-double" | "lake-clipboard-bullet" | "lake-clock" | "lake-clock-arrow-swap" | "lake-close" | "lake-currencies" | "lake-delivery-grouped" | "lake-delivery-individual" | "lake-document-csv" | "lake-document-jpg" | "lake-document-pdf" | "lake-document-png" | "lake-document-xls" | "lake-email" | "lake-face-id" | "lake-fingerprint" | "lake-id-card" | "lake-inbox-empty" | "lake-key" | "lake-lock-closed" | "lake-menu" | "lake-people" | "lake-person-arrow-swap" | "lake-phone" | "lake-receipt" | "lake-settings" | "lake-shield" | "lake-signature" | "lake-transfer" | "lake-warning" | "lake-world-map" | "add-circle-filled" | "add-circle-regular" | "add-filled" | "approvals-app-filled" | "apps-list-filled" | "apps-list-regular" | "arrow-counterclockwise-filled" | "arrow-clockwise-filled" | "arrow-down-filled" | "arrow-down-regular" | "arrow-download-filled" | "arrow-left-filled" | "arrow-left-regular" | "arrow-right-filled" | "arrow-right-regular" | "arrow-swap-filled" | "arrow-swap-regular" | "arrow-up-filled" | "arrow-up-regular" | "arrow-upload-filled" | "arrow-upload-regular" | "beaker-filled" | "beaker-regular" | "board-filled" | "board-regular" | "box-regular" | "building-bank-filled" | "building-bank-regular" | "building-filled" | "building-multiple-regular" | "building-regular" | "building-shop-regular" | "calendar-ltr-regular" | "cart-regular" | "chat-help-filled" | "chat-help-regular" | "check-filled" | "check-regular" | "checkmark-circle-regular" | "checkmark-filled" | "chevron-down-filled" | "chevron-left-filled" | "chevron-right-filled" | "chevron-up-down-regular" | "chevron-up-filled" | "clipboard-search-regular" | "clock-filled" | "clock-regular" | "cloud-sync-filled" | "cloud-sync-regular" | "code-filled" | "code-regular" | "color-regular" | "comment-note-regular" | "copy-filled" | "copy-regular" | "cursor-click-regular" | "database-filled" | "database-regular" | "delete-filled" | "delete-regular" | "desktop-regular" | "device-meeting-room-regular" | "dismiss-circle-regular" | "dismiss-filled" | "dismiss-regular" | "document-regular" | "earth-regular" | "edit-filled" | "edit-regular" | "error-circle-filled" | "error-circle-regular" | "eye-filled" | "eye-off-filled" | "eye-regular" | "filter-filled" | "flag-filled" | "flag-regular" | "flash-filled" | "flash-regular" | "form-new-filled" | "form-new-regular" | "hand-right-regular" | "image-add-filled" | "image-add-regular" | "image-filled" | "image-regular" | "info-filled" | "info-regular" | "key-regular" | "link-filled" | "live-filled" | "live-regular" | "lock-closed-filled" | "lock-closed-regular" | "lock-open-filled" | "lock-open-regular" | "mail-filled" | "mail-regular" | "money-regular" | "more-horizontal-filled" | "more-vertical-filled" | "open-filled" | "open-regular" | "options-regular" | "paint-brush-filled" | "paint-brush-regular" | "pause-regular" | "payment-filled" | "payment-regular" | "people-add-regular" | "people-community-filled" | "people-community-regular" | "people-filled" | "people-regular" | "people-team-regular" | "person-accounts-filled" | "person-accounts-regular" | "person-add-regular" | "person-call-filled" | "person-call-regular" | "person-filled" | "person-lock-regular" | "person-regular" | "phone-filled" | "phone-regular" | "pin-regular" | "play-filled" | "play-regular" | "preview-link-filled" | "qr-code-regular" | "question-circle-regular" | "receipt-money-filled" | "receipt-money-regular" | "rocket-regular" | "search-filled" | "send-filled" | "send-regular" | "settings-filled" | "settings-regular" | "shield-checkmark-filled" | "shield-checkmark-regular" | "shield-error-regular" | "shield-regular" | "sign-out-regular" | "signature-filled" | "signature-regular" | "subtract-circle-filled" | "subtract-circle-regular" | "target-arrow-regular" | "task-list-square-ltr-filled" | "task-list-square-ltr-regular" | "warning-filled" | "warning-regular" | "window-dev-tools-filled" | "window-dev-tools-regular" | undefined;
|
|
232
|
+
icon?: "lake-building-bank" | "lake-calendar-arrow-swap" | "lake-card" | "lake-card-add" | "lake-card-filled" | "lake-card-one-off" | "lake-card-physical" | "lake-card-recurring" | "lake-card-single-use" | "lake-card-virtual" | "lake-check" | "lake-chevron-double" | "lake-clipboard-bullet" | "lake-clock" | "lake-clock-arrow-swap" | "lake-close" | "lake-currencies" | "lake-delivery-grouped" | "lake-delivery-individual" | "lake-denied" | "lake-document-csv" | "lake-document-jpg" | "lake-document-pdf" | "lake-document-png" | "lake-document-xls" | "lake-email" | "lake-face-id" | "lake-fingerprint" | "lake-id-card" | "lake-inbox-empty" | "lake-key" | "lake-lock-closed" | "lake-menu" | "lake-people" | "lake-person-arrow-swap" | "lake-phone" | "lake-receipt" | "lake-settings" | "lake-shield" | "lake-signature" | "lake-transfer" | "lake-warning" | "lake-world-map" | "add-circle-filled" | "add-circle-regular" | "add-filled" | "approvals-app-filled" | "apps-list-filled" | "apps-list-regular" | "arrow-counterclockwise-filled" | "arrow-clockwise-filled" | "arrow-down-filled" | "arrow-down-regular" | "arrow-download-filled" | "arrow-left-filled" | "arrow-left-regular" | "arrow-right-filled" | "arrow-right-regular" | "arrow-swap-filled" | "arrow-swap-regular" | "arrow-up-filled" | "arrow-up-regular" | "arrow-upload-filled" | "arrow-upload-regular" | "beaker-filled" | "beaker-regular" | "board-filled" | "board-regular" | "box-regular" | "building-bank-filled" | "building-bank-regular" | "building-filled" | "building-multiple-regular" | "building-regular" | "building-shop-regular" | "calendar-ltr-regular" | "cart-regular" | "chat-help-filled" | "chat-help-regular" | "check-filled" | "check-regular" | "checkmark-circle-regular" | "checkmark-filled" | "chevron-down-filled" | "chevron-left-filled" | "chevron-right-filled" | "chevron-up-down-regular" | "chevron-up-filled" | "clipboard-search-regular" | "clock-filled" | "clock-regular" | "cloud-sync-filled" | "cloud-sync-regular" | "code-filled" | "code-regular" | "color-regular" | "comment-note-regular" | "copy-filled" | "copy-regular" | "cursor-click-regular" | "database-filled" | "database-regular" | "delete-filled" | "delete-regular" | "desktop-regular" | "device-meeting-room-regular" | "dismiss-circle-regular" | "dismiss-filled" | "dismiss-regular" | "document-regular" | "earth-regular" | "edit-filled" | "edit-regular" | "error-circle-filled" | "error-circle-regular" | "eye-filled" | "eye-off-filled" | "eye-regular" | "filter-filled" | "flag-filled" | "flag-regular" | "flash-filled" | "flash-regular" | "form-new-filled" | "form-new-regular" | "hand-right-regular" | "image-add-filled" | "image-add-regular" | "image-filled" | "image-regular" | "info-filled" | "info-regular" | "key-regular" | "link-filled" | "live-filled" | "live-regular" | "lock-closed-filled" | "lock-closed-regular" | "lock-open-filled" | "lock-open-regular" | "mail-filled" | "mail-regular" | "money-regular" | "more-horizontal-filled" | "more-vertical-filled" | "open-filled" | "open-regular" | "options-regular" | "paint-brush-filled" | "paint-brush-regular" | "pause-regular" | "payment-filled" | "payment-regular" | "people-add-regular" | "people-community-filled" | "people-community-regular" | "people-filled" | "people-regular" | "people-team-regular" | "person-accounts-filled" | "person-accounts-regular" | "person-add-regular" | "person-call-filled" | "person-call-regular" | "person-filled" | "person-lock-regular" | "person-regular" | "phone-filled" | "phone-regular" | "pin-regular" | "play-filled" | "play-regular" | "preview-link-filled" | "qr-code-regular" | "question-circle-regular" | "receipt-money-filled" | "receipt-money-regular" | "rocket-regular" | "search-filled" | "send-filled" | "send-regular" | "settings-filled" | "settings-regular" | "shield-checkmark-filled" | "shield-checkmark-regular" | "shield-error-regular" | "shield-regular" | "sign-out-regular" | "signature-filled" | "signature-regular" | "subtract-circle-filled" | "subtract-circle-regular" | "target-arrow-regular" | "task-list-square-ltr-filled" | "task-list-square-ltr-regular" | "warning-filled" | "warning-regular" | "window-dev-tools-filled" | "window-dev-tools-regular" | undefined;
|
|
233
233
|
unit?: string | undefined;
|
|
234
234
|
units?: string[] | undefined;
|
|
235
235
|
inputMode?: TextInputProps["inputMode"];
|
package/src/components/Link.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ export declare const Link: import("react").MemoExoticComponent<import("react").F
|
|
|
38
38
|
selectable?: boolean | undefined;
|
|
39
39
|
selectionColor?: import("react-native").ColorValue | undefined;
|
|
40
40
|
textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
|
|
41
|
-
dataDetectorType?: "none" | "all" | "link" | "
|
|
41
|
+
dataDetectorType?: "none" | "all" | "link" | "phoneNumber" | "email" | null | undefined;
|
|
42
42
|
android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
|
|
43
43
|
accessible?: boolean | undefined;
|
|
44
44
|
accessibilityActions?: readonly Readonly<{
|
|
@@ -62,9 +62,9 @@ export declare const Link: import("react").MemoExoticComponent<import("react").F
|
|
|
62
62
|
"aria-valuenow"?: number | undefined;
|
|
63
63
|
"aria-valuetext"?: string | undefined;
|
|
64
64
|
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
|
|
65
|
-
importantForAccessibility?: "auto" | "
|
|
65
|
+
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
|
|
66
66
|
"aria-hidden"?: boolean | undefined;
|
|
67
|
-
"aria-live"?: "
|
|
67
|
+
"aria-live"?: "polite" | "assertive" | "off" | undefined;
|
|
68
68
|
"aria-modal"?: boolean | undefined;
|
|
69
69
|
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
|
|
70
70
|
accessibilityLabelledBy?: string | string[] | undefined;
|
|
@@ -83,7 +83,7 @@ export declare const Link: import("react").MemoExoticComponent<import("react").F
|
|
|
83
83
|
"aria-colindex"?: number | undefined;
|
|
84
84
|
"aria-colspan"?: number | undefined;
|
|
85
85
|
"aria-controls"?: string | undefined;
|
|
86
|
-
"aria-current"?: boolean | "time" | "page" | "
|
|
86
|
+
"aria-current"?: boolean | "time" | "page" | "step" | "location" | "date" | undefined;
|
|
87
87
|
"aria-describedby"?: string | undefined;
|
|
88
88
|
"aria-details"?: string | undefined;
|
|
89
89
|
"aria-errormessage"?: string | undefined;
|
|
@@ -59,7 +59,7 @@ export declare const PressableText: FC<{
|
|
|
59
59
|
selectable?: boolean | undefined;
|
|
60
60
|
selectionColor?: import("react-native").ColorValue | undefined;
|
|
61
61
|
textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
|
|
62
|
-
dataDetectorType?: "none" | "all" | "link" | "
|
|
62
|
+
dataDetectorType?: "none" | "all" | "link" | "phoneNumber" | "email" | null | undefined;
|
|
63
63
|
android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
|
|
64
64
|
accessible?: boolean | undefined;
|
|
65
65
|
accessibilityActions?: readonly Readonly<{
|
|
@@ -83,9 +83,9 @@ export declare const PressableText: FC<{
|
|
|
83
83
|
"aria-valuenow"?: number | undefined;
|
|
84
84
|
"aria-valuetext"?: string | undefined;
|
|
85
85
|
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
|
|
86
|
-
importantForAccessibility?: "auto" | "
|
|
86
|
+
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
|
|
87
87
|
"aria-hidden"?: boolean | undefined;
|
|
88
|
-
"aria-live"?: "
|
|
88
|
+
"aria-live"?: "polite" | "assertive" | "off" | undefined;
|
|
89
89
|
"aria-modal"?: boolean | undefined;
|
|
90
90
|
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
|
|
91
91
|
accessibilityLabelledBy?: string | string[] | undefined;
|
|
@@ -104,7 +104,7 @@ export declare const PressableText: FC<{
|
|
|
104
104
|
"aria-colindex"?: number | undefined;
|
|
105
105
|
"aria-colspan"?: number | undefined;
|
|
106
106
|
"aria-controls"?: string | undefined;
|
|
107
|
-
"aria-current"?: boolean | "time" | "page" | "
|
|
107
|
+
"aria-current"?: boolean | "time" | "page" | "step" | "location" | "date" | undefined;
|
|
108
108
|
"aria-describedby"?: string | undefined;
|
|
109
109
|
"aria-details"?: string | undefined;
|
|
110
110
|
"aria-errormessage"?: string | undefined;
|
|
@@ -190,7 +190,7 @@ export declare const PressableTextInput: FC<{
|
|
|
190
190
|
role?: import("react-native").WebRole | undefined;
|
|
191
191
|
lang?: string | undefined;
|
|
192
192
|
initialValue?: string | undefined;
|
|
193
|
-
autoComplete?: "name" | "email" | "
|
|
193
|
+
autoComplete?: "name" | "email" | "off" | "url" | "tel" | "additional-name" | "address-level1" | "address-level2" | "address-level3" | "address-level4" | "address-line1" | "address-line2" | "address-line3" | "bday" | "bday-day" | "bday-month" | "bday-year" | "cc-additional-name" | "cc-csc" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-family-name" | "cc-given-name" | "cc-name" | "cc-number" | "cc-type" | "country" | "country-name" | "current-password" | "family-name" | "given-name" | "honorific-prefix" | "honorific-suffix" | "impp" | "language" | "new-password" | "nickname" | "on" | "one-time-code" | "organization" | "organization-title" | "postal-code" | "sex" | "street-address" | "tel-area-code" | "tel-country-code" | "tel-extension" | "tel-local" | "tel-national" | "transaction-amount" | "transaction-currency" | "username" | undefined;
|
|
194
194
|
enterKeyHint?: "enter" | "search" | "done" | "go" | "next" | "send" | "previous" | undefined;
|
|
195
195
|
rows?: number | undefined;
|
|
196
196
|
readOnly?: boolean | undefined;
|
|
@@ -265,9 +265,9 @@ export declare const PressableTextInput: FC<{
|
|
|
265
265
|
"aria-valuenow"?: number | undefined;
|
|
266
266
|
"aria-valuetext"?: string | undefined;
|
|
267
267
|
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
|
|
268
|
-
importantForAccessibility?: "auto" | "
|
|
268
|
+
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
|
|
269
269
|
"aria-hidden"?: boolean | undefined;
|
|
270
|
-
"aria-live"?: "
|
|
270
|
+
"aria-live"?: "polite" | "assertive" | "off" | undefined;
|
|
271
271
|
"aria-modal"?: boolean | undefined;
|
|
272
272
|
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
|
|
273
273
|
accessibilityLabelledBy?: string | string[] | undefined;
|
|
@@ -286,7 +286,7 @@ export declare const PressableTextInput: FC<{
|
|
|
286
286
|
"aria-colindex"?: number | undefined;
|
|
287
287
|
"aria-colspan"?: number | undefined;
|
|
288
288
|
"aria-controls"?: string | undefined;
|
|
289
|
-
"aria-current"?: boolean | "time" | "page" | "
|
|
289
|
+
"aria-current"?: boolean | "time" | "page" | "step" | "location" | "date" | undefined;
|
|
290
290
|
"aria-describedby"?: string | undefined;
|
|
291
291
|
"aria-details"?: string | undefined;
|
|
292
292
|
"aria-errormessage"?: string | undefined;
|
|
@@ -319,11 +319,11 @@ export declare const PressableTextInput: FC<{
|
|
|
319
319
|
rejectResponderTermination?: boolean | null | undefined;
|
|
320
320
|
selectionState?: import("react-native").DocumentSelectionState | undefined;
|
|
321
321
|
spellCheck?: boolean | undefined;
|
|
322
|
-
textContentType?: "none" | "name" | "
|
|
322
|
+
textContentType?: "none" | "name" | "location" | "nickname" | "username" | "URL" | "addressCity" | "addressCityAndState" | "addressState" | "countryName" | "creditCardNumber" | "emailAddress" | "familyName" | "fullStreetAddress" | "givenName" | "jobTitle" | "middleName" | "namePrefix" | "nameSuffix" | "organizationName" | "postalCode" | "streetAddressLine1" | "streetAddressLine2" | "sublocality" | "telephoneNumber" | "password" | "newPassword" | "oneTimeCode" | undefined;
|
|
323
323
|
scrollEnabled?: boolean | undefined;
|
|
324
324
|
lineBreakStrategyIOS?: "none" | "standard" | "hangul-word" | "push-out" | undefined;
|
|
325
325
|
cursorColor?: import("react-native").ColorValue | null | undefined;
|
|
326
|
-
importantForAutofill?: "auto" | "
|
|
326
|
+
importantForAutofill?: "auto" | "yes" | "no" | "noExcludeDescendants" | "yesExcludeDescendants" | undefined;
|
|
327
327
|
disableFullscreenUI?: boolean | undefined;
|
|
328
328
|
inlineImageLeft?: string | undefined;
|
|
329
329
|
inlineImagePadding?: number | undefined;
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"lake-currencies": "M7 18.4V4.8h1v13.6H7ZM9.8 9c0-.5-.3-.9-.7-1.2-.4-.2-1-.4-1.6-.4a3 3 0 0 0-1.1.2l-.8.6-.2.8.1.7.5.5.7.3.6.2 1 .3 1.2.3c.3.1.7.3 1 .6.3.2.5.5.7.9.2.3.3.7.3 1.2a2.9 2.9 0 0 1-1.8 2.8c-.6.2-1.4.4-2.2.4-.8 0-1.5-.2-2.1-.4-.6-.3-1-.6-1.4-1.1-.3-.5-.5-1-.6-1.7h1.7c0 .4.1.7.4 1l.8.6 1.2.1c.4 0 .9 0 1.2-.2.4-.1.7-.3.9-.6.2-.3.3-.6.3-1 0-.2-.1-.5-.3-.7a2 2 0 0 0-.7-.5l-1-.4-1.3-.3a5 5 0 0 1-2.1-1c-.5-.5-.8-1.1-.8-1.9 0-.6.2-1.1.5-1.6.4-.5.8-.8 1.4-1.1.6-.3 1.2-.4 2-.4.7 0 1.4.1 2 .4.5.3 1 .6 1.2 1 .4.5.5 1 .6 1.6H9.8Zm10.8 8h-7.4v-1.4h7.4V17Zm-2.2-4.2h-5.2v-1.5h5.2v1.5Zm-2.6-3.4.2 4.5c0 .5 0 .9-.2 1.3-.1.3-.4.6-.7.8l-1.4-.4c.2 0 .3-.1.4-.3l.3-.6V14l-.2-4.6c0-.8.2-1.4.5-1.9s.7-.9 1.2-1.1c.5-.3 1-.4 1.6-.4.5 0 1 .1 1.4.3.4.1.8.4 1 .7.4.3.6.6.7 1 .1.4.2.8 0 1.2L19.2 9 19 8l-.6-.4a2 2 0 0 0-1.7 0c-.2.2-.5.4-.6.7-.2.2-.3.6-.3 1Z",
|
|
19
19
|
"lake-delivery-grouped": "M10.8064 3.00744L7.74894 4.1834L17.2742 7.78936L21.2511 6.08498L13.2494 3.00744C12.4632 2.70503 11.5927 2.70503 10.8064 3.00744ZM21.4354 16.8938V6.76816L12.3782 10.6498V21.0807L12.8786 20.9515C13.0038 20.9191 13.1277 20.8796 13.2494 20.8327L20.6976 17.968C21.1421 17.7971 21.4354 17.37 21.4354 16.8938ZM11.1773 20.9515L11.6777 21.0807V10.6498L2.62048 6.76816V16.8938C2.62048 17.37 2.91376 17.7971 3.35824 17.968L10.8064 20.8327C10.9282 20.8796 11.052 20.9191 11.1773 20.9515ZM6.76742 4.56091L2.80482 6.08498L12.0279 10.0377L16.3461 8.1871L6.76742 4.56091ZM10.555 2.35358C11.5031 1.98891 12.5528 1.98891 13.5009 2.35358L20.9491 5.21827C21.6641 5.49328 22.136 6.18025 22.136 6.94633V16.8938C22.136 17.6599 21.6642 18.3469 20.9491 18.6219L13.5009 21.4866C12.5528 21.8512 11.5031 21.8512 10.555 21.4866L3.10675 18.6219C2.39173 18.3469 1.91992 17.6599 1.91992 16.8938V6.94633C1.91992 6.18025 2.39173 5.49328 3.10675 5.21827L10.555 2.35358Z",
|
|
20
20
|
"lake-delivery-individual": "M20.5698 16.8751V8.63434L12.1468 13.2673C12.0677 13.3108 11.974 13.3167 11.891 13.285L11.8449 13.263L3.42982 8.63434V16.8751C3.42982 17.8112 4.1887 18.5701 5.12482 18.5701H18.8748C19.8109 18.5701 20.5698 17.8112 20.5698 16.8751ZM3.42982 7.12507V7.93878L11.9998 12.652L20.5698 7.93827V7.12507C20.5698 6.18895 19.8109 5.43007 18.8748 5.43007H5.12482C4.1887 5.43007 3.42982 6.18895 3.42982 7.12507ZM18.8748 4.82007C20.1478 4.82007 21.1798 5.85205 21.1798 7.12507V16.8751C21.1798 18.1481 20.1478 19.1801 18.8748 19.1801H5.12482C3.85181 19.1801 2.81982 18.1481 2.81982 16.8751V7.12507C2.81982 5.85205 3.85181 4.82007 5.12482 4.82007H18.8748Z",
|
|
21
|
+
"lake-denied": "M11.9991 11.5514L14.2246 9.32561C14.3396 9.21067 14.5209 9.20225 14.6454 9.3005L14.6757 9.32773C14.7887 9.44277 14.7964 9.62264 14.6988 9.7464L14.6714 9.7769L12.4479 12.0001L14.6737 14.2256C14.7886 14.3406 14.797 14.5219 14.6988 14.6464L14.6715 14.6767C14.5565 14.7897 14.3766 14.7974 14.2529 14.6997L14.2224 14.6723L11.9991 12.4489L9.77364 14.6746C9.6587 14.7896 9.47737 14.798 9.35286 14.6997L9.32254 14.6725C9.20959 14.5575 9.20188 14.3776 9.29952 14.2538L9.32692 14.2233L11.5504 12.0001L9.32463 9.77462C9.20969 9.65967 9.20128 9.47835 9.29953 9.35384L9.32674 9.32352C9.44179 9.21056 9.62167 9.20285 9.74542 9.3005L9.77593 9.32789L11.9991 11.5514ZM11.9991 5.12012C15.7989 5.12012 18.8791 8.2004 18.8791 12.0001C18.8791 15.7998 15.7989 18.8801 11.9991 18.8801C8.19942 18.8801 5.11914 15.7998 5.11914 12.0001C5.11914 8.2004 8.19942 5.12012 11.9991 5.12012ZM11.9991 5.75512C8.55012 5.75512 5.75414 8.5511 5.75414 12.0001C5.75414 15.4491 8.55012 18.2451 11.9991 18.2451C15.4482 18.2451 18.2441 15.4491 18.2441 12.0001C18.2441 8.5511 15.4482 5.75512 11.9991 5.75512Z",
|
|
21
22
|
"lake-document-csv": "M12.2 2h.1c.2 0 .4 0 .6.2H13.2v.1l.2.1.1.1 6 6c.3.3.5.8.5 1.3V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-1h1.5v1c0 .3.2.5.5.5h12c.3 0 .5-.2.5-.5V10H14a2 2 0 0 1-2-2V3.5H6c-.3 0-.5.2-.5.5v5H4V4c0-1.1.9-2 2-2h6.2ZM9 11.1c.4 0 .8 0 1.1.2l.8.6.2 1h-1.1c0-.3-.2-.5-.3-.6l-.7-.2-.5.1-.4.2v.7l.2.2.3.1.4.1.5.1.7.3c.2 0 .4.2.5.3a1.5 1.5 0 0 1 .5 1.1c0 .4 0 .7-.3 1l-.7.6L9 17c-.5 0-1 0-1.3-.2l-.8-.7c-.2-.3-.3-.6-.3-1H8c0 .2 0 .3.2.5l.4.3h1.1l.3-.3.2-.4-.1-.3-.4-.2a3 3 0 0 0-.4-.2l-.7-.2c-.5 0-1-.3-1.2-.5-.3-.3-.4-.6-.4-1s0-.7.3-1l.7-.6 1.2-.2Zm-5.6 0 1 .1.7.5.5.6c.2.3.3.6.3 1H4.8c0-.2 0-.4-.2-.5a1.1 1.1 0 0 0-.6-.5l-.5-.1c-.3 0-.5 0-.8.2l-.5.7-.2 1c0 .4 0 .8.2 1l.5.7.8.2H4l.3-.3c.2 0 .3-.2.3-.3l.2-.4H6a2.3 2.3 0 0 1-.7 1.5l-.8.4-1 .2c-.5 0-1-.1-1.4-.4-.4-.2-.7-.5-1-1-.2-.4-.3-1-.3-1.6 0-.6.1-1.2.3-1.6.3-.5.6-.8 1-1 .4-.3.9-.4 1.4-.4Zm9.7 0 1.4 4.5 1.5-4.4h1.3l-2 5.8h-1.6l-2-5.8h1.4Zm.3-6.5V8c0 .3.2.5.5.5h3.4l-3.9-3.9Z",
|
|
22
23
|
"lake-document-jpg": "M12.2 2h.1c.2 0 .4 0 .6.2H13.2v.1l.2.1.1.1 6 6c.3.3.5.8.5 1.3V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-1h1.5v1c0 .3.2.5.5.5h12c.3 0 .5-.2.5-.5V10H14a2 2 0 0 1-2-2V3.5H6c-.3 0-.5.2-.5.5v5H4V4c0-1.1.9-2 2-2h6.2Zm-7 9.2v4c0 .4-.1.7-.3 1l-.7.7-1 .2c-.4 0-.7 0-1-.2-.3-.1-.5-.3-.7-.6l-.2-1h1.2v.5c.2 0 .2.1.3.2h.8l.2-.3.1-.5v-4h1.2ZM14 11l.9.1.7.5a2.2 2.2 0 0 1 .8 1.4h-1.2l-.2-.4a1 1 0 0 0-.6-.4l-.4-.1c-.3 0-.6 0-.8.2l-.5.7c-.2.2-.2.6-.2 1s0 .7.2 1c0 .3.3.5.5.7l.8.2c.3 0 .5 0 .7-.2.2 0 .3-.2.5-.4l.1-.5h-1.2v-1h2.4v.7a2.2 2.2 0 0 1-1.2 2.2c-.4.2-.8.3-1.3.3-.6 0-1-.1-1.5-.4-.4-.2-.7-.6-1-1-.2-.5-.3-1-.3-1.6l.2-1.3.6-1 .9-.5 1-.2Zm-5.6 0c.5 0 .9.2 1.2.3l.7.7c.2.3.2.7.2 1 0 .4 0 .8-.2 1-.2.4-.4.6-.7.8l-1.2.2h-1V17H6.2v-5.8h2.2Zm-.2 1h-.8v2h.8l.6-.1c.2 0 .3-.2.4-.3v-1.1l-.4-.3-.6-.1Zm5.3-7.5V8c0 .3.2.5.5.5h3.4l-3.9-3.9Z",
|
|
23
24
|
"lake-document-pdf": "M12.2 2h.1c.2 0 .4 0 .6.2H13.2v.1l.2.1.1.1 6 6c.3.3.5.8.5 1.3V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-1h1.5v1c0 .3.2.5.5.5h12c.3 0 .5-.2.5-.5V10H14a2 2 0 0 1-2-2V3.5H6c-.3 0-.5.2-.5.5v5H4V4c0-1.1.9-2 2-2h6.2ZM4 11.2c.4 0 .8 0 1 .2.4.2.6.4.8.7.2.3.2.7.2 1 0 .4 0 .8-.2 1-.2.4-.4.6-.7.8l-1.2.2H3V17H1.7v-5.8H4Zm5 0c.5 0 1 .1 1.4.3.5.3.8.6 1 1 .2.5.4 1 .4 1.6 0 .6-.2 1.1-.4 1.5-.2.5-.5.8-1 1-.4.3-.9.4-1.5.4H7v-5.8h2Zm7.5 0v1H14v1.4h2.4v1h-2.4V17h-1.2v-5.8h3.8Zm-7.6 1H8V16h.8l.9-.1.5-.7c.2-.2.2-.6.2-1s0-.8-.2-1c0-.3-.3-.5-.5-.7a2 2 0 0 0-1-.2Zm-5.2 0H3v2h.8l.6-.2c.2 0 .3-.2.4-.3v-1.1l-.4-.3-.6-.1Zm9.8-7.6V8c0 .3.2.5.5.5h3.4l-3.9-3.9Z",
|