@weni/unnnic-system 3.35.1-alpha.5 → 3.35.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +16 -16
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +11061 -16892
- package/dist/unnnic.umd.js +23 -58
- package/package.json +5 -10
- package/src/components/Checkbox/Checkbox.vue +1 -1
- package/src/components/DataTable/index.vue +1 -1
- package/src/components/DateFilter/DateFilter.vue +3 -3
- package/src/components/DatePicker/DatePicker.vue +1 -1
- package/src/components/DatePicker/__tests__/DatePicker.spec.js +22 -0
- package/src/components/EmojiPicker/EmojiPicker.vue +1 -1
- package/src/components/InputDatePicker/InputDatePicker.vue +9 -9
- package/src/components/Radio/Radio.vue +1 -1
- package/src/components/Switch/Switch.vue +1 -1
- package/src/mixins/i18n.js +1 -1
- package/src/stories/DatePicker.stories.js +9 -9
- package/src/stories/InputDatePicker.stories.js +7 -7
- package/src/utils/date.ts +6 -0
- package/src/utils/objectPath.ts +35 -0
- package/dist/scss/colors-hsl.scss +0 -179
- package/dist/scss/colors.scss +0 -134
- package/dist/scss/deprecated/colors.scss +0 -436
- package/dist/scss/deprecated/fonts.scss +0 -140
- package/dist/scss/deprecated/grid.scss +0 -52
- package/dist/scss/deprecated/spacing.scss +0 -103
- package/dist/scss/fonts.scss +0 -73
- package/dist/scss/icon-sizes.scss +0 -9
- package/dist/scss/radii.scss +0 -9
- package/dist/scss/scheme-colors.scss +0 -418
- package/dist/scss/semantic-colors.scss +0 -48
- package/dist/scss/semantic-text-utilities.scss +0 -26
- package/dist/scss/shadows.scss +0 -5
- package/dist/scss/spaces.scss +0 -17
- package/dist/scss/tailwind.scss +0 -104
- package/dist/scss/theme.scss +0 -98
- package/dist/scss/unnnic.scss +0 -20
package/dist/index.d.ts
CHANGED
|
@@ -880,7 +880,6 @@ default: boolean;
|
|
|
880
880
|
onStatus?: ((...args: any[]) => any) | undefined;
|
|
881
881
|
}>, {
|
|
882
882
|
locale: string;
|
|
883
|
-
src: string;
|
|
884
883
|
saveText: string;
|
|
885
884
|
hideRecordingIndicator: boolean;
|
|
886
885
|
enableGenerateTranscription: boolean;
|
|
@@ -890,6 +889,7 @@ isLoadingTranscription: boolean;
|
|
|
890
889
|
showTranscriptionText: boolean;
|
|
891
890
|
transcriptionText: string;
|
|
892
891
|
fluidBar: boolean;
|
|
892
|
+
src: string;
|
|
893
893
|
canDiscard: boolean;
|
|
894
894
|
playbackAudioBars: boolean;
|
|
895
895
|
discardText: string;
|
|
@@ -931,7 +931,7 @@ type: ObjectConstructor;
|
|
|
931
931
|
};
|
|
932
932
|
};
|
|
933
933
|
methods: {
|
|
934
|
-
i18n(...args: any[]):
|
|
934
|
+
i18n(...args: any[]): undefined;
|
|
935
935
|
};
|
|
936
936
|
}, ComponentOptionsMixin, "save"[], "save", PublicProps, Readonly<ExtractPropTypes< {
|
|
937
937
|
isRecording: {
|
|
@@ -1112,7 +1112,7 @@ es: string;
|
|
|
1112
1112
|
}, {
|
|
1113
1113
|
showProgressBar(): boolean;
|
|
1114
1114
|
playbackIcon(): any;
|
|
1115
|
-
transcriptionTooltipText():
|
|
1115
|
+
transcriptionTooltipText(): undefined;
|
|
1116
1116
|
progressBarStyle(): {
|
|
1117
1117
|
'--progressBarPercentualValue': string;
|
|
1118
1118
|
};
|
|
@@ -1134,7 +1134,7 @@ type: ObjectConstructor;
|
|
|
1134
1134
|
};
|
|
1135
1135
|
};
|
|
1136
1136
|
methods: {
|
|
1137
|
-
i18n(...args: any[]):
|
|
1137
|
+
i18n(...args: any[]): undefined;
|
|
1138
1138
|
};
|
|
1139
1139
|
}, ComponentOptionsMixin, ("pause" | "play" | "progress-bar-update" | "failed-click" | "update:showTranscriptionText")[], "pause" | "play" | "progress-bar-update" | "failed-click" | "update:showTranscriptionText", PublicProps, Readonly<ExtractPropTypes< {
|
|
1140
1140
|
time: {
|
|
@@ -1478,7 +1478,6 @@ default: boolean;
|
|
|
1478
1478
|
onStatus?: ((...args: any[]) => any) | undefined;
|
|
1479
1479
|
}>, {
|
|
1480
1480
|
locale: string;
|
|
1481
|
-
src: string;
|
|
1482
1481
|
saveText: string;
|
|
1483
1482
|
hideRecordingIndicator: boolean;
|
|
1484
1483
|
enableGenerateTranscription: boolean;
|
|
@@ -1488,6 +1487,7 @@ isLoadingTranscription: boolean;
|
|
|
1488
1487
|
showTranscriptionText: boolean;
|
|
1489
1488
|
transcriptionText: string;
|
|
1490
1489
|
fluidBar: boolean;
|
|
1490
|
+
src: string;
|
|
1491
1491
|
canDiscard: boolean;
|
|
1492
1492
|
playbackAudioBars: boolean;
|
|
1493
1493
|
discardText: string;
|
|
@@ -1529,7 +1529,7 @@ type: ObjectConstructor;
|
|
|
1529
1529
|
};
|
|
1530
1530
|
};
|
|
1531
1531
|
methods: {
|
|
1532
|
-
i18n(...args: any[]):
|
|
1532
|
+
i18n(...args: any[]): undefined;
|
|
1533
1533
|
};
|
|
1534
1534
|
}, ComponentOptionsMixin, "save"[], "save", PublicProps, Readonly<ExtractPropTypes< {
|
|
1535
1535
|
isRecording: {
|
|
@@ -1710,7 +1710,7 @@ es: string;
|
|
|
1710
1710
|
}, {
|
|
1711
1711
|
showProgressBar(): boolean;
|
|
1712
1712
|
playbackIcon(): any;
|
|
1713
|
-
transcriptionTooltipText():
|
|
1713
|
+
transcriptionTooltipText(): undefined;
|
|
1714
1714
|
progressBarStyle(): {
|
|
1715
1715
|
'--progressBarPercentualValue': string;
|
|
1716
1716
|
};
|
|
@@ -1732,7 +1732,7 @@ type: ObjectConstructor;
|
|
|
1732
1732
|
};
|
|
1733
1733
|
};
|
|
1734
1734
|
methods: {
|
|
1735
|
-
i18n(...args: any[]):
|
|
1735
|
+
i18n(...args: any[]): undefined;
|
|
1736
1736
|
};
|
|
1737
1737
|
}, ComponentOptionsMixin, ("pause" | "play" | "progress-bar-update" | "failed-click" | "update:showTranscriptionText")[], "pause" | "play" | "progress-bar-update" | "failed-click" | "update:showTranscriptionText", PublicProps, Readonly<ExtractPropTypes< {
|
|
1738
1738
|
time: {
|
|
@@ -3979,7 +3979,7 @@ type: ObjectConstructor;
|
|
|
3979
3979
|
};
|
|
3980
3980
|
};
|
|
3981
3981
|
methods: {
|
|
3982
|
-
i18n(...args: any[]):
|
|
3982
|
+
i18n(...args: any[]): undefined;
|
|
3983
3983
|
};
|
|
3984
3984
|
}, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
3985
3985
|
oldVersion: BooleanConstructor;
|
|
@@ -4025,7 +4025,7 @@ type: ObjectConstructor;
|
|
|
4025
4025
|
};
|
|
4026
4026
|
};
|
|
4027
4027
|
methods: {
|
|
4028
|
-
i18n(...args: any[]):
|
|
4028
|
+
i18n(...args: any[]): undefined;
|
|
4029
4029
|
};
|
|
4030
4030
|
}, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
4031
4031
|
oldVersion: BooleanConstructor;
|
|
@@ -8816,7 +8816,7 @@ type: ObjectConstructor;
|
|
|
8816
8816
|
};
|
|
8817
8817
|
};
|
|
8818
8818
|
methods: {
|
|
8819
|
-
i18n(...args: any[]):
|
|
8819
|
+
i18n(...args: any[]): undefined;
|
|
8820
8820
|
};
|
|
8821
8821
|
}, ComponentOptionsMixin, ("update:modelValue" | "primaryButtonClick" | "secondaryButtonClick")[], "update:modelValue" | "primaryButtonClick" | "secondaryButtonClick", PublicProps, Readonly<ExtractPropTypes< {
|
|
8822
8822
|
modelValue: {
|
|
@@ -9238,7 +9238,7 @@ type: ObjectConstructor;
|
|
|
9238
9238
|
};
|
|
9239
9239
|
};
|
|
9240
9240
|
methods: {
|
|
9241
|
-
i18n(...args: any[]):
|
|
9241
|
+
i18n(...args: any[]): undefined;
|
|
9242
9242
|
};
|
|
9243
9243
|
}, ComponentOptionsMixin, ("update:modelValue" | "primaryButtonClick" | "secondaryButtonClick")[], "update:modelValue" | "primaryButtonClick" | "secondaryButtonClick", PublicProps, Readonly<ExtractPropTypes< {
|
|
9244
9244
|
modelValue: {
|
|
@@ -11430,8 +11430,8 @@ width: string | number;
|
|
|
11430
11430
|
height: string | number;
|
|
11431
11431
|
loading: boolean;
|
|
11432
11432
|
count: number;
|
|
11433
|
-
prefix: string;
|
|
11434
11433
|
duration: number;
|
|
11434
|
+
prefix: string;
|
|
11435
11435
|
tag: string;
|
|
11436
11436
|
direct: boolean;
|
|
11437
11437
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -11442,8 +11442,8 @@ width: string | number;
|
|
|
11442
11442
|
height: string | number;
|
|
11443
11443
|
loading: boolean;
|
|
11444
11444
|
count: number;
|
|
11445
|
-
prefix: string;
|
|
11446
11445
|
duration: number;
|
|
11446
|
+
prefix: string;
|
|
11447
11447
|
tag: string;
|
|
11448
11448
|
direct: boolean;
|
|
11449
11449
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -12947,7 +12947,7 @@ type: ObjectConstructor;
|
|
|
12947
12947
|
};
|
|
12948
12948
|
};
|
|
12949
12949
|
methods: {
|
|
12950
|
-
i18n(...args: any[]):
|
|
12950
|
+
i18n(...args: any[]): undefined;
|
|
12951
12951
|
};
|
|
12952
12952
|
}, ComponentOptionsMixin, ("close" | "end" | "nextStep")[], "close" | "end" | "nextStep", PublicProps, Readonly<ExtractPropTypes< {
|
|
12953
12953
|
step: {
|
|
@@ -13165,7 +13165,7 @@ type: ObjectConstructor;
|
|
|
13165
13165
|
};
|
|
13166
13166
|
};
|
|
13167
13167
|
methods: {
|
|
13168
|
-
i18n(...args: any[]):
|
|
13168
|
+
i18n(...args: any[]): undefined;
|
|
13169
13169
|
};
|
|
13170
13170
|
}, ComponentOptionsMixin, ("close" | "end" | "nextStep")[], "close" | "end" | "nextStep", PublicProps, Readonly<ExtractPropTypes< {
|
|
13171
13171
|
step: {
|